From 79ac060c4deb29c03de670ef2eedb9040238f69d Mon Sep 17 00:00:00 2001 From: Luke Street Date: Tue, 10 Sep 2024 00:53:29 -0600 Subject: [PATCH] Migrate to dtk-template --- .flake8 | 4 + .gitattributes | 3 + .github/workflows/build.yml | 66 +- .gitignore | 51 +- .vscode/settings.json | 6 +- Makefile | 230 - README.MD | 126 +- config/DPIJ01/build.sha1 | 1 + config/DPIJ01/config.yml | 10 + config/DPIJ01/splits.txt | 3135 ++ config/DPIJ01/symbols.txt | 30105 ++++++++++++++++ config/GPIE01_00/build.sha1 | 1 + config/GPIE01_00/config.yml | 10 + config/GPIE01_00/splits.txt | 3110 ++ config/GPIE01_00/symbols.txt | 29569 +++++++++++++++ config/GPIE01_01/build.sha1 | 1 + config/GPIE01_01/config.yml | 10 + config/GPIE01_01/splits.txt | 3110 ++ config/GPIE01_01/symbols.txt | 29571 +++++++++++++++ config/GPIJ01_01/build.sha1 | 1 + config/GPIJ01_01/config.yml | 10 + config/GPIJ01_01/splits.txt | 3122 ++ config/GPIJ01_01/symbols.txt | 29948 +++++++++++++++ config/GPIJ01_02/build.sha1 | 1 + config/GPIJ01_02/config.yml | 10 + config/GPIJ01_02/splits.txt | 3122 ++ config/GPIJ01_02/symbols.txt | 29951 +++++++++++++++ config/GPIP01_00/build.sha1 | 1 + config/GPIP01_00/config.yml | 10 + config/GPIP01_00/splits.txt | 3136 ++ config/GPIP01_00/symbols.txt | 29710 +++++++++++++++ configure.py | 2275 +- include/.gitignore | 1 - include/Generator.h | 10 +- include/Stream.h | 2 + include/macros.inc | 217 - include_link.mk | 31 - ldscript.lcf | 33 - obj_files.mk | 44 - sha1/pikmin.usa.1.sha1 | 1 - src/MSL_C/PPCEABI/bare/H/Makefile | 50 - src/OdemuExi2/Makefile | 13 - src/Runtime/PPCEABI/H/Makefile | 21 - src/TRK_MINNOW_DOLPHIN/Makefile | 33 - src/ai/Makefile | 13 - src/amcExi2/Makefile | 14 - src/amcnotstub/Makefile | 13 - src/ar/Makefile | 14 - src/base/Makefile | 13 - src/card/Makefile | 26 - src/db/Makefile | 13 - src/dsp/Makefile | 13 - src/dvd/Makefile | 18 - src/gx/Makefile | 26 - src/hio/Makefile | 13 - src/hvqm4dec/Makefile | 13 - src/jaudio/Makefile | 72 - src/jaudio/dummyprobe.c | 7 +- src/mtx/Makefile | 15 - src/odenotstub/Makefile | 13 - src/os/Makefile | 37 - src/os/__start.c | 21 + src/pad/Makefile | 14 - src/plugPikiColin/Makefile | 37 - src/plugPikiKando/Makefile | 143 - src/plugPikiNakata/Makefile | 66 - src/plugPikiNishimura/Makefile | 45 - src/plugPikiOgawa/Makefile | 35 - src/plugPikiYamashita/Makefile | 92 - src/sysCommon/Makefile | 32 - src/sysCommon/stream.cpp | 8 +- src/sysDolphin/Makefile | 17 - src/vi/Makefile | 13 - tools/.gitignore | 3 - tools/{mwcc_compiler/.gitkeep => __init__.py} | 0 tools/asmsplit.py | 73 - tools/calcprogress.py | 343 - tools/decompctx.py | 120 + tools/doldisasm.py | 686 - tools/download_dtk.py | 50 - tools/download_mwcc.py | 45 - tools/download_ppc.py | 49 - tools/download_tool.py | 124 + tools/dtk_version | 1 - tools/ninja_syntax.py | 229 +- tools/project.py | 1498 + tools/ptr_checker.py | 206 - tools/resolveLinkerErrors.py | 53 - tools/transform-dep.py | 77 - tools/transform-win.py | 45 - tools/transform_dep.py | 84 + tools/upload-progress.py | 60 - tools/upload_progress.py | 79 + 93 files changed, 200843 insertions(+), 4710 deletions(-) create mode 100644 .flake8 mode change 100755 => 100644 .gitattributes delete mode 100644 Makefile create mode 100644 config/DPIJ01/build.sha1 create mode 100644 config/DPIJ01/config.yml create mode 100644 config/DPIJ01/splits.txt create mode 100644 config/DPIJ01/symbols.txt create mode 100644 config/GPIE01_00/build.sha1 create mode 100644 config/GPIE01_00/config.yml create mode 100644 config/GPIE01_00/splits.txt create mode 100644 config/GPIE01_00/symbols.txt create mode 100644 config/GPIE01_01/build.sha1 create mode 100644 config/GPIE01_01/config.yml create mode 100644 config/GPIE01_01/splits.txt create mode 100644 config/GPIE01_01/symbols.txt create mode 100644 config/GPIJ01_01/build.sha1 create mode 100644 config/GPIJ01_01/config.yml create mode 100644 config/GPIJ01_01/splits.txt create mode 100644 config/GPIJ01_01/symbols.txt create mode 100644 config/GPIJ01_02/build.sha1 create mode 100644 config/GPIJ01_02/config.yml create mode 100644 config/GPIJ01_02/splits.txt create mode 100644 config/GPIJ01_02/symbols.txt create mode 100644 config/GPIP01_00/build.sha1 create mode 100644 config/GPIP01_00/config.yml create mode 100644 config/GPIP01_00/splits.txt create mode 100644 config/GPIP01_00/symbols.txt mode change 100644 => 100755 configure.py delete mode 100644 include/.gitignore delete mode 100644 include/macros.inc delete mode 100644 include_link.mk delete mode 100644 ldscript.lcf delete mode 100644 obj_files.mk delete mode 100644 sha1/pikmin.usa.1.sha1 delete mode 100644 src/MSL_C/PPCEABI/bare/H/Makefile delete mode 100644 src/OdemuExi2/Makefile delete mode 100644 src/Runtime/PPCEABI/H/Makefile delete mode 100644 src/TRK_MINNOW_DOLPHIN/Makefile delete mode 100644 src/ai/Makefile delete mode 100644 src/amcExi2/Makefile delete mode 100644 src/amcnotstub/Makefile delete mode 100644 src/ar/Makefile delete mode 100644 src/base/Makefile delete mode 100644 src/card/Makefile delete mode 100644 src/db/Makefile delete mode 100644 src/dsp/Makefile delete mode 100644 src/dvd/Makefile delete mode 100644 src/gx/Makefile delete mode 100644 src/hio/Makefile delete mode 100644 src/hvqm4dec/Makefile delete mode 100644 src/jaudio/Makefile delete mode 100644 src/mtx/Makefile delete mode 100644 src/odenotstub/Makefile delete mode 100644 src/os/Makefile delete mode 100644 src/pad/Makefile delete mode 100644 src/plugPikiColin/Makefile delete mode 100644 src/plugPikiKando/Makefile delete mode 100644 src/plugPikiNakata/Makefile delete mode 100644 src/plugPikiNishimura/Makefile delete mode 100644 src/plugPikiOgawa/Makefile delete mode 100644 src/plugPikiYamashita/Makefile delete mode 100644 src/sysCommon/Makefile delete mode 100644 src/sysDolphin/Makefile delete mode 100644 src/vi/Makefile delete mode 100644 tools/.gitignore rename tools/{mwcc_compiler/.gitkeep => __init__.py} (100%) delete mode 100644 tools/asmsplit.py delete mode 100644 tools/calcprogress.py create mode 100644 tools/decompctx.py delete mode 100644 tools/doldisasm.py delete mode 100644 tools/download_dtk.py delete mode 100644 tools/download_mwcc.py delete mode 100644 tools/download_ppc.py create mode 100644 tools/download_tool.py delete mode 100644 tools/dtk_version create mode 100644 tools/project.py delete mode 100644 tools/ptr_checker.py delete mode 100644 tools/resolveLinkerErrors.py delete mode 100644 tools/transform-dep.py delete mode 100644 tools/transform-win.py create mode 100755 tools/transform_dep.py delete mode 100644 tools/upload-progress.py create mode 100755 tools/upload_progress.py diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000..3dd31e6e --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +# E203: whitespace before ':' +# E501: line too long +extend-ignore = E203,E501 diff --git a/.gitattributes b/.gitattributes old mode 100755 new mode 100644 index 0bfeaccb..47d43017 --- a/.gitattributes +++ b/.gitattributes @@ -8,3 +8,6 @@ *.bat text eol=crlf *.sh text eol=lf *.sha1 text eol=lf + +# decomp-toolkit writes files with LF +config/**/*.txt text eol=lf diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1fcd41fb..f3afad6a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,50 +6,62 @@ on: jobs: build: - name: Build - runs-on: ubuntu-latest container: ghcr.io/projectpiki/build:main + + runs-on: ubuntu-latest strategy: fail-fast: false matrix: - version: [usa.1] + version: [GPIE01_01] # TODO: other versions + steps: + # Checkout the repository (shallow clone) - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + submodules: recursive + + # Set Git config - name: Git config run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + + # Copy the original files to the workspace + - name: Prepare + run: cp -R /orig . + + # Build the project - name: Build run: | - python configure.py -m -v ${{matrix.version}} --compilers /compilers/GC - ninja + python configure.py --map --version ${{ matrix.version }} \ + --binutils /binutils --compilers /compilers + ninja build/${{ matrix.version }}/progress.json + # TODO: Enable all_source and report.json + # ninja all_source build/${{ matrix.version }}/progress.json \ + # build/${{ matrix.version }}/report.json + + # Upload progress if we're on the main branch - name: Upload progress if: github.ref == 'refs/heads/main' continue-on-error: true env: - PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}} + PROGRESS_SLUG: pikmin + PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }} run: | - python tools/upload-progress.py -b https://progress.decomp.club/ -p pikmin -v ${{matrix.version}} \ - build/pikmin.${{matrix.version}}/main.dol.progress + python tools/upload_progress.py -b https://progress.decomp.club/ \ + -p $PROGRESS_SLUG -v ${{ matrix.version }} \ + build/${{ matrix.version }}/progress.json + + # Upload map files - name: Upload map uses: actions/upload-artifact@v4 with: - name: build-${{matrix.version}}.map - path: build/*/build.map + name: ${{ matrix.version }}_maps + path: build/${{ matrix.version }}/**/*.MAP - build_make: - name: Build (legacy) - runs-on: ubuntu-latest - container: ghcr.io/projectpiki/build:main - strategy: - fail-fast: false - matrix: - version: [usa.1] - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Git config - run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - - name: Build - run: | - python configure.py --map --compilers /compilers/GC - make -j$(nproc) MAPGENFLAG=1 VERSION=${{matrix.version}} COMPILERS=/compilers/GC + # Upload progress report + - name: Upload report + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.version }}_report + path: build/${{ matrix.version }}/report.json diff --git a/.gitignore b/.gitignore index 9cf8a00d..e29b65a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,39 +1,16 @@ -.vscode/*.log -*.dat -*.exe -*.dll -*.idb -*.id0 -*.id1 -*.id2 -*.nam -*.til -*.o -*.out -*.elf -*.dol -*.a -*.d -*.map -*.exe -*.dump -*.7z -*.bat -build -tools/mwcc_compiler/* -!tools/mwcc_compiler/.gitkeep -*.sln -*.vcxproj -*.user -*.filters -Debug -.vs -ctx.c -tools/dtk -tools/powerpc/ -.ninja_deps -.ninja_log -objdiff.json __pycache__ +.idea +.vscode/*.log +.ninja_* +.mypy_cache +*.exe +build build.ninja -newlines.py +objdiff.json +orig/*/* +!orig/*/.gitkeep +/*.txt +ctx.c +tools/mwcc_compiler +tools/dtk +tools/powerpc diff --git a/.vscode/settings.json b/.vscode/settings.json index b9e50eee..1b1c93e4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,10 @@ { "[c]": { - "files.encoding": "shiftjis", + "files.encoding": "utf8", "editor.defaultFormatter": "ms-vscode.cpptools" }, "[cpp]": { - "files.encoding": "shiftjis", + "files.encoding": "utf8", "editor.defaultFormatter": "ms-vscode.cpptools" }, "editor.tabSize": 4, @@ -17,4 +17,4 @@ "source_location": "cpp", "*.cp": "cpp", } -} \ No newline at end of file +} diff --git a/Makefile b/Makefile deleted file mode 100644 index faba0eb5..00000000 --- a/Makefile +++ /dev/null @@ -1,230 +0,0 @@ -ifneq ($(findstring MINGW,$(shell uname)),) - WINDOWS := 1 -endif -ifneq ($(findstring MSYS,$(shell uname)),) - WINDOWS := 1 -endif - -# If 0, tells the console to chill out. (Quiets the make process.) -VERBOSE ?= 0 - -# If MAPGENFLAG set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes. -MAPGENFLAG ?= 0 - -# Use the all-in-one updater after successful build? (Fails on non-windows platforms) -USE_AOI ?= 0 - -ifeq ($(VERBOSE),0) - QUIET := @ -endif - -#------------------------------------------------------------------------------- -# Files -#------------------------------------------------------------------------------- - -NAME := pikmin -VERSION ?= usa.1 -#VERSION := usa.0 - -ifeq ($(VERSION), usa.1) - VERNUM = 2 -else ifeq ($(VERSION), usa.0) - VERNUM = 1 -else - VERNUM = 0 -endif - -# Use the all-in-one updater after successful build? (Fails on non-windows platforms) -ifeq ($(USE_AOI), 1) - ifeq ($(WINDOWS), 1) - USE_AOI = 1 - else - @echo "aoi.exe fails on non-windows platforms." - USE_AOI = 0 - endif -else -USE_AOI = 0 -endif - -BUILD_DIR := build/$(NAME).$(VERSION) - -# Inputs -S_FILES := $(wildcard asm/*.s) -C_FILES := $(wildcard src/*.c) -CPP_FILES := $(wildcard src/*.cpp) -CPP_FILES += $(wildcard src/*.cp) -LDSCRIPT := $(BUILD_DIR)/ldscript.lcf -AOI := aoi.exe - -# Outputs -DOL := $(BUILD_DIR)/main.dol -ELF := $(DOL:.dol=.elf) -MAP := $(BUILD_DIR)/build.map - -ifeq ($(MAPGENFLAG),1) - MAPGEN := -map $(MAP) -endif - -include obj_files.mk - -O_FILES := $(SYSBOOTUP) $(JAUDIO) $(HVQM4DEC) $(SYS) $(PLUGPIKI) $(DOLPHIN) -DEPENDS := $($(filter *.o,O_FILES):.o=.d) -DEPENDS += $($(filter *.o,E_FILES):.o=.d) -# If a specific .o file is passed as a target, also process its deps -DEPENDS += $(MAKECMDGOALS:.o=.d) - -#------------------------------------------------------------------------------- -# Tools -#------------------------------------------------------------------------------- - -MWCC_VERSION := 1.2.5 -MWLD_VERSION := 1.2.5 - -# Programs -POWERPC ?= tools/powerpc -ifeq ($(WINDOWS),1) - WINE := - AS := $(POWERPC)/powerpc-eabi-as.exe - PYTHON := python -else - WIBO := $(shell command -v wibo 2> /dev/null) - ifdef WIBO - WINE ?= wibo - else - WINE ?= wine - endif - # Disable wine debug output for cleanliness - export WINEDEBUG ?= -all - AS := $(POWERPC)/powerpc-eabi-as - PYTHON := python3 -endif -COMPILERS ?= tools/mwcc_compiler -CC = $(WINE) $(COMPILERS)/$(MWCC_VERSION)/mwcceppc.exe -LD := $(WINE) $(COMPILERS)/$(MWLD_VERSION)/mwldeppc.exe -DTK := tools/dtk -ELF2DOL := $(DTK) elf2dol -SHASUM := $(DTK) shasum - -ifneq ($(WINDOWS),1) -TRANSFORM_DEP := tools/transform-dep.py -else -TRANSFORM_DEP := tools/transform-win.py -endif - -# Options -INCLUDES := -i include/ -i include/stl/ -ASM_INCLUDES := -I include/ - -ASFLAGS := -mgekko $(ASM_INCLUDES) --defsym version=$(VERNUM) -ifeq ($(VERBOSE),1) -# this set of LDFLAGS outputs warnings. -LDFLAGS := $(MAPGEN) -fp hard -nodefaults -endif -ifeq ($(VERBOSE),0) -# this set of LDFLAGS generates no warnings. -LDFLAGS := $(MAPGEN) -fp hard -nodefaults -w off -endif -LIBRARY_LDFLAGS := -nodefaults -fp hard -proc gekko -CFLAGS := -Cpp_exceptions off -O4,p -fp hard -proc gekko -nodefaults -RTTI on -enum int -common on -inline auto -str noreadonly $(INCLUDES) - -ifeq ($(VERBOSE),0) -# this set of ASFLAGS generates no warnings. -ASFLAGS += -W -# this set of CFLAGS generates no warnings. -CFLAGS += -w off -endif - -#------------------------------------------------------------------------------- -# Recipes -#------------------------------------------------------------------------------- - -### Default target ### - -default: all - -all: $(DOL) - -ALL_DIRS := $(sort $(dir $(O_FILES))) - -# Make sure build directory exists before compiling anything -DUMMY != mkdir -p $(ALL_DIRS) - -LDSCRIPT := ldscript.lcf - -$(DOL): $(ELF) | $(DTK) - $(QUIET) $(ELF2DOL) $< $@ - $(QUIET) $(SHASUM) -c sha1/$(NAME).$(VERSION).sha1 -ifneq ($(findstring -map,$(LDFLAGS)),) - $(QUIET) $(PYTHON) tools/calcprogress.py $(DOL) $(MAP) -endif -ifeq ($(USE_AOI),1) - $(WINE) ./aoi.exe -endif - -clean: - rm -f -d -r build - -$(DTK): tools/dtk_version - @echo "Downloading $@" - $(QUIET) $(PYTHON) tools/download_dtk.py $< $@ - -# ELF creation makefile instructions -$(ELF): $(O_FILES) $(LDSCRIPT) - @echo Linking ELF $@ - $(QUIET) @echo $(O_FILES) > build/o_files - $(QUIET) $(LD) $(LDFLAGS) -o $@ -lcf $(LDSCRIPT) @build/o_files - -%.d.unix: %.d $(TRANSFORM_DEP) - @echo Processing $< - $(QUIET) $(PYTHON) $(TRANSFORM_DEP) $< $@ - --include include_link.mk - -DEPENDS := $(DEPENDS:.d=.d.unix) -ifneq ($(MAKECMDGOALS), clean) --include $(DEPENDS) -endif - -$(BUILD_DIR)/%.o: %.s - @echo Assembling $< - $(QUIET) mkdir -p $(dir $@) - $(QUIET) $(AS) $(ASFLAGS) -o $@ $< - -# for files with capitalized .C extension -$(BUILD_DIR)/%.o: %.C - @echo "Compiling " $< - $(QUIET) mkdir -p $(dir $@) - $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< - -$(BUILD_DIR)/%.o: %.c - @echo "Compiling " $< - $(QUIET) mkdir -p $(dir $@) - $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< - -$(BUILD_DIR)/%.o: %.cp - @echo "Compiling " $< - $(QUIET) mkdir -p $(dir $@) - $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< - -$(BUILD_DIR)/%.o: %.cpp - @echo "Compiling " $< - $(QUIET) mkdir -p $(dir $@) - $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< - -### Extremely lazy recipes for generating context ### -# Example usage: make build/pikmin2.usa/src/plugProjectYamashitaU/farmMgr.h -$(BUILD_DIR)/%.h: %.c - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - -$(BUILD_DIR)/%.h: %.cp - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - -$(BUILD_DIR)/%.h: %.cpp - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - -### Debug Print ### - -print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true diff --git a/README.MD b/README.MD index 38109c28..1e90a267 100644 --- a/README.MD +++ b/README.MD @@ -1,42 +1,108 @@ -# Pikmin 1 -Pikmin 1 (USA Revision 1) disassembly/decompilation to C++/C +Pikmin +[![Build Status]][actions] ![Code Progress] ![Data Progress] [![Discord Badge]][discord] +============= -```diff -- INFORMATION! - +[Build Status]: https://github.com/projectPiki/pikmin/actions/workflows/build.yml/badge.svg +[actions]: https://github.com/projectPiki/pikmin/actions/workflows/build.yml +[Code Progress]: https://img.shields.io/endpoint?label=Code&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin%2FGPVE01%2Fdol%2F%3Fmode%3Dshield%26measure%3Dcode +[Data Progress]: https://img.shields.io/endpoint?label=Data&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin%2FGPVE01%2Fdol%2F%3Fmode%3Dshield%26measure%3Ddata +[Discord Badge]: https://img.shields.io/discord/933849697485983765?color=%237289DA&logo=discord&logoColor=%23FFFFFF +[discord]: https://discord.gg/CWKqYMePX8 -The ROM this repository builds can be shifted! Meaning you are able to now -add and remove code as you see fit, for modding or research purposes. +A work-in-progress decompilation of Pikmin. -- DISCLAIMER - +Supported versions: -Shiftability is tentative and not fully verified. Use at your own discretion. +- `DPIJ01`: PikiDemo / Jitsuen-you Sample +- `GPIJ01_01`: Japan (Rev 1) +- `GPIJ01_02`: Japan (Rev 2) +- `GPIE01_00`: USA (Rev 0) +- `GPIE01_01`: USA (Rev 1) +- `GPIP01_00`: Europe (Rev 0) + +Index +----- + +- [Dependencies](#dependencies) + - [Windows](#windows) + - [macOS](#macos) + - [Linux](#linux) +- [Building](#building) +- [Diffing](#diffing) + +Dependencies +------------ + +### Windows + +On Windows, it's **highly recommended** to use native tooling. WSL or msys2 are **not** required. +When running under WSL, [objdiff](#diffing) is unable to get filesystem notifications for automatic rebuilds. + +- Install [Python](https://www.python.org/downloads/) and add it to `%PATH%`. + - Also available from the [Windows Store](https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K). +- Download [ninja](https://github.com/ninja-build/ninja/releases) and add it to `%PATH%`. + - Quick install via pip: `pip install ninja` + +### macOS + +- Install [ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages): + + ```sh + brew install ninja + ``` + +- Install [wine-crossover](https://github.com/Gcenx/homebrew-wine): + + ```sh + brew install --cask --no-quarantine gcenx/wine/wine-crossover + ``` + +After OS upgrades, if macOS complains about `Wine Crossover.app` being unverified, you can unquarantine it using: + +```sh +sudo xattr -rd com.apple.quarantine '/Applications/Wine Crossover.app' ``` -It builds the following DOL: -pikmin.usa.1.dol: `sha1: 02204260B7EFE8742D34572E58BA3DFECD92E4E9` +### Linux -## Building +- Install [ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages). +- For non-x86(_64) platforms: Install wine from your package manager. + - For x86(_64), [wibo](https://github.com/decompals/wibo), a minimal 32-bit Windows binary wrapper, will be automatically downloaded and used. -### Required Tools -* [devkitPro](https://devkitpro.org/wiki/Getting_Started) -* python +Building +-------- -### Instructions +- Clone the repository: -* WINDOWS ONLY STEP: - - Launch msys2 (provided by devkitPro) and run the following commands: - - ``` - pacman -S msys2-keyring - pacman -S git python - ``` + ```sh + git clone https://github.com/projectPiki/pikmin.git + ``` -* OPTIONAL: - - Obtain a clean DOL of Pikmin 1 USA 1.01 and place it in the base working directory and rename it to `baserom.dol`. - -1. Download GC_WII_COMPILERS.zip from (https://files.decomp.dev/compilers_20230715.zip) and extract it to tools/mwcc_compiler/. -2. Run the `make` command. +- Using [Dolphin Emulator](https://dolphin-emu.org/), extract your game's system data to `orig/GPIE01_01`. (Or the appropriate version folder.) + - Right-click the game in Dolphin's game list and select `Properties`. + - Go to the `Filesystem` tab and right-click `Disc` -> `Extract System Data`. +![Dolphin filesystem extract](assets/dolphin-extract.png) + - After extraction, the following file should exist: `orig/GPIE01_01/sys/main.dol`. +- Configure: -## Project Organisation -- For each namespace that types and functions are contained within, create a folder. E.g. the structure `Game::GameSystem` will go in include/Game/GameSystem.h. -- The exception is only when adding extra folders becomes useless, for example having to add multiple folders that are empty, you can instead opt for creating a header file with the namespace's definitions inside. + ```sh + python configure.py + ``` + + To use version other than `GPIE01_01`, add `--version`. Add `--help` to see all available options. +- Build: + + ```sh + ninja + ``` + +Diffing +------- + +Once the initial build succeeds, an `objdiff.json` should exist in the project root. + +Download the latest release from [encounter/objdiff](https://github.com/encounter/objdiff). Under project settings, set `Project directory`. The configuration should be loaded automatically. + +Select an object from the left sidebar to begin diffing. Changes to the project will rebuild automatically: changes to source files, headers, `configure.py`, `splits.txt` or `symbols.txt`. + +![objdiff project configuration](assets/objdiff.png) diff --git a/config/DPIJ01/build.sha1 b/config/DPIJ01/build.sha1 new file mode 100644 index 00000000..c735dbda --- /dev/null +++ b/config/DPIJ01/build.sha1 @@ -0,0 +1 @@ +16aa58df2658f79b1dbb0f8500afd65399253267 build/DPIJ01/main.dol diff --git a/config/DPIJ01/config.yml b/config/DPIJ01/config.yml new file mode 100644 index 00000000..b1457392 --- /dev/null +++ b/config/DPIJ01/config.yml @@ -0,0 +1,10 @@ +object: orig/DPIJ01/sys/main.dol +hash: 16aa58df2658f79b1dbb0f8500afd65399253267 + +# Generated from dataDir/build.map +symbols: config/DPIJ01/symbols.txt +splits: config/DPIJ01/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/DPIJ01/splits.txt b/config/DPIJ01/splits.txt new file mode 100644 index 00000000..1a522474 --- /dev/null +++ b/config/DPIJ01/splits.txt @@ -0,0 +1,3135 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:32 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:32 + .bss type:bss align:16 + .sdata type:data align:32 + .sbss type:bss align:32 + .sdata2 type:rodata align:32 + +sysBootup.cpp: + .text start:0x800055C0 end:0x80005660 + .data start:0x8022AEC0 end:0x8022AEE0 + +jaudio/dummyprobe.c: + .text start:0x80005660 end:0x80005700 + +jaudio/memory.c: + .text start:0x80005700 end:0x800057E0 + +jaudio/aictrl.c: + .text start:0x800057E0 end:0x80005FA0 + .rodata start:0x8022A080 end:0x8022A098 + .bss start:0x802F2DA0 end:0x802F2DC0 + .sbss start:0x803F0920 end:0x803F0950 + .sdata2 start:0x803F1320 end:0x803F1330 + +jaudio/sample.c: + .text start:0x80005FA0 end:0x80006240 + +jaudio/dummyrom.c: + .text start:0x80006240 end:0x80006360 + .bss start:0x803DF278 end:0x803DF2A0 align:4 common + .sbss start:0x803F0950 end:0x803F0960 + +jaudio/audiothread.c: + .text start:0x80006360 end:0x80006880 + .rodata start:0x8022A098 end:0x8022A0A8 + .bss start:0x802F2DC0 end:0x802F2E20 + .bss start:0x803DF2A0 end:0x803E3F00 align:4 common + .sbss start:0x803F0960 end:0x803F0980 + .sdata2 start:0x803F1330 end:0x803F1338 + +jaudio/streamctrl.c: + .text start:0x80006880 end:0x80006C20 + .data start:0x8022AEE0 end:0x8022AFB0 + .bss start:0x802F2E20 end:0x802F2E90 + .sdata2 start:0x803F1338 end:0x803F1348 + +jaudio/dspbuf.c: + .text start:0x80006C20 end:0x80006F80 + .rodata start:0x8022A0A8 end:0x8022A0C0 + .bss start:0x802F2E90 end:0x802F2EA0 + .sbss start:0x803F0980 end:0x803F0990 + +jaudio/cpubuf.c: + .text start:0x80006F80 end:0x800071C0 + .bss start:0x802F2EA0 end:0x802F2EB0 + .sbss start:0x803F0990 end:0x803F0998 + +jaudio/playercall.c: + .text start:0x800071C0 end:0x80007480 + .bss start:0x802F2EB0 end:0x802F2F70 + +jaudio/dvdthread.c: + .text start:0x80007480 end:0x800081C0 + .data start:0x8022AFB0 end:0x8022AFE0 + .bss start:0x802F2F70 end:0x802FBC40 + .sbss start:0x803F0998 end:0x803F09E0 + +jaudio/rate.c: + .sdata start:0x803E5CC0 end:0x803E5CD0 + .sbss start:0x803F09E0 end:0x803F09E8 + +jaudio/audiomesg.c: + .text start:0x800081C0 end:0x80008380 + +jaudio/stackchecker.c: + .text start:0x80008380 end:0x800083C0 + +jaudio/dspboot.c: + .text start:0x800083C0 end:0x80008780 + .rodata start:0x8022A0C0 end:0x8022A0E0 + .data start:0x8022AFE0 end:0x8022C9E0 + .sdata2 start:0x803F1348 end:0x803F1350 + +jaudio/dspproc.c: + .text start:0x80008780 end:0x80008AC0 + .rodata start:0x8022A0E0 end:0x8022A168 + .sdata start:0x803E5CD0 end:0x803E5CD8 + .sdata2 start:0x803F1350 end:0x803F1358 + +jaudio/ipldec.c: + .text start:0x80008AC0 end:0x80008CA0 + .bss start:0x803E3F00 end:0x803E3F40 align:4 common + .sbss start:0x803F09E8 end:0x803F09F0 + +jaudio/dsp_cardunlock.c: + .text start:0x80008CA0 end:0x800094C0 + .rodata start:0x8022A168 end:0x8022A1A8 + +jaudio/driverinterface.c: + .text start:0x800094C0 end:0x8000ADA0 + .data start:0x8022C9E0 end:0x8022CA78 + .bss start:0x802FBC40 end:0x8030FDC0 + .sdata start:0x803E5CD8 end:0x803E5CE0 + .sbss start:0x803F09F0 end:0x803F0A00 + .sdata2 start:0x803F1358 end:0x803F1378 + +jaudio/dspdriver.c: + .text start:0x8000ADA0 end:0x8000B600 + .data start:0x8022CA78 end:0x8022CAA0 + .bss start:0x8030FDC0 end:0x803101C0 + .sbss start:0x803F0A00 end:0x803F0A08 + .sdata2 start:0x803F1378 end:0x803F1388 + +jaudio/dspinterface.c: + .text start:0x8000B600 end:0x8000BD60 + .data start:0x8022CAA0 end:0x8022CF00 + .bss start:0x803101C0 end:0x80316240 + .sdata start:0x803E5CE0 end:0x803E5CF0 + +jaudio/fxinterface.c: + .text start:0x8000BD60 end:0x8000BEA0 + .data start:0x8022CF00 end:0x8022CF18 + +jaudio/tables.c: + .data start:0x8022CF18 end:0x8022D118 + +jaudio/bankread.c: + .text start:0x8000BEA0 end:0x8000C2A0 + .bss start:0x80316240 end:0x80316640 + +jaudio/waveread.c: + .text start:0x8000C2A0 end:0x8000C900 + .bss start:0x80316640 end:0x80316E40 + .bss start:0x803E3F40 end:0x803E3F80 align:4 common + +jaudio/connect.c: + .text start:0x8000C900 end:0x8000D060 + .bss start:0x80316E40 end:0x80317240 + +jaudio/bankdrv.c: + .text start:0x8000D060 end:0x8000D7E0 + .data start:0x8022D118 end:0x8022D128 + .sdata2 start:0x803F1388 end:0x803F13B0 + +jaudio/random.c: + .text start:0x8000D7E0 end:0x8000D940 + .sdata start:0x803E5CF0 end:0x803E5CF8 + .sdata2 start:0x803F13B0 end:0x803F13C0 + +jaudio/aramcall.c: + .text start:0x8000D940 end:0x8000DCC0 + .data start:0x8022D128 end:0x8022D168 + .bss start:0x803E3F80 end:0x803E3FAC align:4 common + .sdata start:0x803E5CF8 end:0x803E5D00 + .sbss start:0x803F0A08 end:0x803F0A10 + +jaudio/ja_calc.c: + .text start:0x8000DCC0 end:0x8000DE80 + .bss start:0x80317240 end:0x80317648 + .sdata2 start:0x803F13C0 end:0x803F13F0 + +jaudio/fat.c: + .text start:0x8000DE80 end:0x8000E3A0 + .bss start:0x80317648 end:0x80318248 + .sbss start:0x803F0A10 end:0x803F0A20 + +jaudio/cmdstack.c: + .text start:0x8000E3A0 end:0x8000E620 + .sbss start:0x803F0A20 end:0x803F0A30 + +jaudio/virload.c: + .text start:0x8000E620 end:0x8000EA60 + .bss start:0x80318248 end:0x803188E0 + .sbss start:0x803F0A30 end:0x803F0A40 + .sdata2 start:0x803F13F0 end:0x803F13F8 + +jaudio/heapctrl.c: + .text start:0x8000EA60 end:0x8000F4A0 + .rodata start:0x8022A1A8 end:0x8022A1B8 + .bss start:0x803188E0 end:0x803288E0 + .sbss start:0x803F0A40 end:0x803F0A48 + +jaudio/jammain_2.c: + .text start:0x8000F4A0 end:0x80013940 + .data start:0x8022D168 end:0x8022D428 + .bss start:0x803288E0 end:0x80328A00 + .sdata start:0x803E5D00 end:0x803E5D08 + .sbss start:0x803F0A48 end:0x803F0A58 + .sdata2 start:0x803F13F8 end:0x803F1440 + +jaudio/midplay.c: + .data start:0x8022D428 end:0x8022D828 + +jaudio/noteon.c: + .text start:0x80013940 end:0x80013EA0 + .sdata2 start:0x803F1440 end:0x803F1448 + +jaudio/seqsetup.c: + .text start:0x80013EA0 end:0x80014CC0 + .bss start:0x80328A00 end:0x8036C640 + .sbss start:0x803F0A58 end:0x803F0A68 + .sdata2 start:0x803F1448 end:0x803F1458 + +jaudio/centcalc.c: + .text start:0x80014CC0 end:0x80014DA0 + .data start:0x8022D828 end:0x8022D928 + .sdata2 start:0x803F1458 end:0x803F1470 + +jaudio/jamosc.c: + .text start:0x80014DA0 end:0x80015240 + .data start:0x8022D928 end:0x8022DA10 + .sdata2 start:0x803F1470 end:0x803F1478 + +jaudio/oneshot.c: + .text start:0x80015240 end:0x80016A00 + .data start:0x8022DA10 end:0x8022DA50 + .sdata start:0x803E5D08 end:0x803E5D10 + .sdata2 start:0x803F1478 end:0x803F14A8 + +jaudio/interface.c: + .text start:0x80016A00 end:0x80016B60 + .bss start:0x8036C640 end:0x8036C650 + .sdata start:0x803E5D10 end:0x803E5D18 + .sbss start:0x803F0A68 end:0x803F0A70 + +jaudio/verysimple.c: + .text start:0x80016B60 end:0x80017560 + .rodata start:0x8022A1B8 end:0x8022A318 + .data start:0x8022DA50 end:0x8022DB68 + .bss start:0x8036C650 end:0x8036C728 + .sbss start:0x803F0A70 end:0x803F0A98 + .sdata2 start:0x803F14A8 end:0x803F14B8 + +jaudio/app_inter.c: + .text start:0x80017560 end:0x800176E0 + .sbss start:0x803F0A98 end:0x803F0AA0 + +jaudio/pikiinter.c: + .text start:0x800176E0 end:0x80018160 + .data start:0x8022DB68 end:0x8022E230 + .bss start:0x803E3FAC end:0x803E5AD0 align:4 common + .sbss start:0x803F0AA0 end:0x803F0AB0 + .sdata2 start:0x803F14B8 end:0x803F14D8 + +jaudio/piki_player.c: + .text start:0x80018160 end:0x800189C0 + .bss start:0x8036C728 end:0x8036C840 + .sbss start:0x803F0AB0 end:0x803F0B18 + .sdata2 start:0x803F14D8 end:0x803F14F0 + +jaudio/piki_bgm.c: + .text start:0x800189C0 end:0x800197A0 + .rodata start:0x8022A318 end:0x8022A340 + .data start:0x8022E230 end:0x8022E348 + .bss start:0x8036C840 end:0x8036D578 + .sdata start:0x803E5D18 end:0x803E5DA0 + .sbss start:0x803F0B18 end:0x803F0B28 + .sdata2 start:0x803F14F0 end:0x803F1500 + +jaudio/piki_scene.c: + .text start:0x800197A0 end:0x8001A120 + .data start:0x8022E348 end:0x8022E5B0 + .sdata start:0x803E5DA0 end:0x803E5DB0 + .sbss start:0x803F0B28 end:0x803F0B50 + .sdata2 start:0x803F1500 end:0x803F1508 + +jaudio/pikidemo.c: + .text start:0x8001A120 end:0x8001B3C0 + .data start:0x8022E5B0 end:0x8022F070 + .bss start:0x8036D578 end:0x8036D5E8 + .sdata start:0x803E5DB0 end:0x803E5DE8 + .sbss start:0x803F0B50 end:0x803F0B78 + .sdata2 start:0x803F1508 end:0x803F1520 + +jaudio/file_seq.c: + .text start:0x8001B3C0 end:0x8001B940 + .bss start:0x8036D5E8 end:0x80371E00 + .sdata start:0x803E5DE8 end:0x803E5DF0 + .sbss start:0x803F0B78 end:0x803F0B80 + +jaudio/cmdqueue.c: + .text start:0x8001B940 end:0x8001BB40 + +jaudio/filter3d.c: + .text start:0x8001BB40 end:0x8001BBC0 + .sdata2 start:0x803F1520 end:0x803F1528 + +jaudio/syncstream.c: + .text start:0x8001BBC0 end:0x8001D880 + .rodata start:0x8022A340 end:0x8022A390 + .data start:0x8022F070 end:0x8022F0E0 + .bss start:0x80371E00 end:0x80393868 + .sdata start:0x803E5DF0 end:0x803E5DF8 + .sbss start:0x803F0B80 end:0x803F0B88 + .sdata2 start:0x803F1528 end:0x803F1540 + +jaudio/pikiseq.c: + .data start:0x8022F0E0 end:0x8022F3C0 + +jaudio/bankloader.c: + .text start:0x8001D880 end:0x8001D960 + +jaudio/interleave.c: + .text start:0x8001D960 end:0x8001DB60 + .bss start:0x80393868 end:0x803938A0 + .sdata start:0x803E5DF8 end:0x803E5E00 + +jaudio/hvqm_play.c: + .text start:0x8001DB60 end:0x8001EB1C + .bss start:0x803938A0 end:0x80394C60 + .bss start:0x803E5AD0 end:0x803E5CB0 align:4 common + .sdata start:0x803E5E00 end:0x803E5E10 + .sbss start:0x803F0B88 end:0x803F0BE0 + .sdata2 start:0x803F1540 end:0x803F1548 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001EB1C end:0x800245C4 + .rodata start:0x8022A390 end:0x8022A3A8 + .data start:0x8022F3C0 end:0x8022F3D0 + .bss start:0x80394C60 end:0x803956A0 + .sbss start:0x803F0BE0 end:0x803F0BE8 + +sysCommon/ayuStack.cpp: + .text start:0x800245C4 end:0x80024DB0 + .data start:0x8022F3D0 end:0x8022F400 + +sysCommon/baseApp.cpp: + .text start:0x80024DB0 end:0x80025064 + .data start:0x8022F400 end:0x8022F4C8 + .sdata start:0x803E5E10 end:0x803E5E50 + +sysCommon/stream.cpp: + .text start:0x80025064 end:0x80025578 + .data start:0x8022F4C8 end:0x8022F520 + .sdata start:0x803E5E50 end:0x803E5E60 + +sysCommon/streamBufferedInput.cpp: + .text start:0x80025578 end:0x80025968 + .data start:0x8022F520 end:0x8022F660 + .sdata start:0x803E5E60 end:0x803E5E80 + +sysCommon/string.cpp: + .text start:0x80025968 end:0x8002598C + +sysCommon/graphics.cpp: + .text start:0x8002598C end:0x80029BB0 + .data start:0x8022F660 end:0x80230460 + .sdata start:0x803E5E80 end:0x803E5F80 + .sdata2 start:0x803F1548 end:0x803F15B0 + +sysCommon/grLight.cpp: + .text start:0x80029BB0 end:0x8002A100 + .data start:0x80230460 end:0x802304E0 + .sdata start:0x803E5F80 end:0x803E5FD8 + .sdata2 start:0x803F15B0 end:0x803F1600 + +sysCommon/shapeBase.cpp: + .text start:0x8002A100 end:0x80035E70 + .ctors start:0x8022A004 end:0x8022A008 + .rodata start:0x8022A3A8 end:0x8022A408 + .data start:0x802304E0 end:0x80230C88 + .bss start:0x803956A0 end:0x803997A0 + .sdata start:0x803E5FD8 end:0x803E6178 + .sbss start:0x803F0BE8 end:0x803F0BF8 + .sdata2 start:0x803F1600 end:0x803F1670 + +sysCommon/shpLightFlares.cpp: + .text start:0x80035E70 end:0x8003645C + .data start:0x80230C88 end:0x80230CA0 + .sdata start:0x803E6178 end:0x803E61C0 + .sdata2 start:0x803F1670 end:0x803F1690 + +sysCommon/shpObjColl.cpp: + .text start:0x8003645C end:0x800367AC + .data start:0x80230CA0 end:0x80230CB0 + .sdata start:0x803E61C0 end:0x803E61F8 + .sdata2 start:0x803F1690 end:0x803F1698 + +sysCommon/shpRoutes.cpp: + .text start:0x800367AC end:0x800378A4 + .data start:0x80230CB0 end:0x80230EA0 + .sdata start:0x803E61F8 end:0x803E6298 + .sdata2 start:0x803F1698 end:0x803F16C0 + +sysCommon/sysMath.cpp: + .text start:0x800378A4 end:0x8003E0F4 + .sdata start:0x803E6298 end:0x803E62B0 + .sdata2 start:0x803F16C0 end:0x803F1700 + +sysCommon/matMath.cpp: + .text start:0x8003E0F4 end:0x8003F104 + .ctors start:0x8022A008 end:0x8022A00C + .bss start:0x803997A0 end:0x803A17E0 + .sdata start:0x803E62B0 end:0x803E62B8 + .sdata2 start:0x803F1700 end:0x803F1710 + +sysCommon/stdSystem.cpp: + .text start:0x8003F104 end:0x80040984 + .data start:0x80230EA0 end:0x802310B0 + .sdata start:0x803E62B8 end:0x803E6320 + .sdata2 start:0x803F1710 end:0x803F1718 + +sysCommon/node.cpp: + .text start:0x80040984 end:0x80040D30 + .data start:0x802310B0 end:0x80231180 + .sdata start:0x803E6320 end:0x803E6360 + .sbss start:0x803F0BF8 end:0x803F0C00 + +sysCommon/timers.cpp: + .text start:0x80040D30 end:0x80041630 + .data start:0x80231180 end:0x80231190 + .sdata start:0x803E6360 end:0x803E6370 + .sdata2 start:0x803F1718 end:0x803F1760 + +sysCommon/controller.cpp: + .text start:0x80041630 end:0x800417FC + .data start:0x80231190 end:0x80231228 + .sdata start:0x803E6370 end:0x803E63A0 + .sdata2 start:0x803F1760 end:0x803F1770 + +sysCommon/cmdStream.cpp: + .text start:0x800417FC end:0x80042204 + .sbss start:0x803F0C00 end:0x803F0C08 + +sysCommon/camera.cpp: + .text start:0x80042204 end:0x8004456C + .data start:0x80231228 end:0x80231240 + .sdata start:0x803E63A0 end:0x803E6420 + .sdata2 start:0x803F1770 end:0x803F17C8 + +sysCommon/atx.cpp: + .text start:0x8004456C end:0x80044ADC + .data start:0x80231240 end:0x80231360 + .sdata start:0x803E6420 end:0x803E6448 + +sysCommon/id32.cpp: + .text start:0x80044ADC end:0x80044E14 + +sysDolphin/texture.cpp: + .text start:0x80044E14 end:0x800455EC + .data start:0x80231360 end:0x80231440 + .sdata start:0x803E6448 end:0x803E6480 + .sdata2 start:0x803F17C8 end:0x803F17E0 + +sysDolphin/system.cpp: + .text start:0x800455EC end:0x800481EC + .ctors start:0x8022A00C end:0x8022A010 + .data start:0x80231440 end:0x802ADB78 + .bss start:0x803A17E0 end:0x803A6360 + .sdata start:0x803E6480 end:0x803E6560 + .sbss start:0x803F0C08 end:0x803F0C30 + .sdata2 start:0x803F17E0 end:0x803F1800 + +sysDolphin/sysNew.cpp: + .text start:0x800481EC end:0x800484A0 + .data start:0x802ADB78 end:0x802ADBE8 + +sysDolphin/controllerMgr.cpp: + .text start:0x800484A0 end:0x800487A4 + .data start:0x802ADBE8 end:0x802ADC28 + .bss start:0x803A6360 end:0x803A6390 + .sdata start:0x803E6560 end:0x803E6568 + +sysDolphin/dgxGraphics.cpp: + .text start:0x800487A4 end:0x8004E2A8 + .ctors start:0x8022A010 end:0x8022A014 + .data start:0x802ADC28 end:0x802AE440 + .bss start:0x803A6390 end:0x803A6398 + .sdata start:0x803E6568 end:0x803E6600 + .sbss start:0x803F0C30 end:0x803F0C58 + .sdata2 start:0x803F1800 end:0x803F1830 + +sysDolphin/gameApp.cpp: + .text start:0x8004E2A8 end:0x8004E2DC + +plugPikiColin/cardutil.cpp: + .text start:0x8004E2DC end:0x8004F5A0 + .data start:0x802AE440 end:0x802AE468 + .bss start:0x803A6398 end:0x803A6718 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004F5A0 end:0x800519C4 + .rodata start:0x8022A408 end:0x8022A468 + .data start:0x802AE468 end:0x802AE550 + .sdata start:0x803E6600 end:0x803E66B8 + .sdata2 start:0x803F1830 end:0x803F1848 + +plugPikiColin/animMgr.cpp: + .text start:0x800519C4 end:0x80052EF8 + .data start:0x802AE550 end:0x802AE740 + .sdata start:0x803E66B8 end:0x803E6738 + .sdata2 start:0x803F1848 end:0x803F1860 + +plugPikiColin/gameflow.cpp: + .text start:0x80052EF8 end:0x80054D38 + .ctors start:0x8022A014 end:0x8022A018 + .data start:0x802AE740 end:0x802AEDA8 + .bss start:0x803A6718 end:0x803A6A80 + .sdata start:0x803E6738 end:0x803E6868 + .sbss start:0x803F0C58 end:0x803F0C60 + .sdata2 start:0x803F1860 end:0x803F18C8 + +plugPikiColin/game.cpp: + .text start:0x80054D38 end:0x80055810 + .ctors start:0x8022A018 end:0x8022A01C + .data start:0x802AEDA8 end:0x802AF010 + .bss start:0x803A6A80 end:0x803A6CE0 + .sdata start:0x803E6868 end:0x803E6900 + .sdata2 start:0x803F18C8 end:0x803F18D0 + +plugPikiColin/gamePrefs.cpp: + .text start:0x80055810 end:0x800566B0 + .data start:0x802AF010 end:0x802AF108 + .sdata start:0x803E6900 end:0x803E6940 + +plugPikiColin/gameSetup.cpp: + .text start:0x800566B0 end:0x80056E38 + .data start:0x802AF108 end:0x802AFE20 + .sdata start:0x803E6940 end:0x803E69C0 + +plugPikiColin/cardSelect.cpp: + .text start:0x80056E38 end:0x80057508 + .data start:0x802AFE20 end:0x802AFFE0 + .sdata start:0x803E69C0 end:0x803E6A18 + .sbss start:0x803F0C60 end:0x803F0C68 + .sdata2 start:0x803F18D0 end:0x803F18E0 + +plugPikiColin/mapSelect.cpp: + .text start:0x80057508 end:0x80058A00 + .data start:0x802AFFE0 end:0x802B02C0 + .sdata start:0x803E6A18 end:0x803E6A98 + .sbss start:0x803F0C68 end:0x803F0C70 + .sdata2 start:0x803F18E0 end:0x803F18F0 + +plugPikiColin/newPikiGame.cpp: + .text start:0x80058A00 end:0x8005CA80 + .rodata start:0x8022A468 end:0x8022A490 + .data start:0x802B02C0 end:0x802B0798 + .sdata start:0x803E6A98 end:0x803E6C08 + .sbss start:0x803F0C70 end:0x803F0CA8 + .sdata2 start:0x803F18F0 end:0x803F1958 + +plugPikiColin/introGame.cpp: + .text start:0x8005CA80 end:0x8005D378 + .data start:0x802B0798 end:0x802B0A10 + .sdata start:0x803E6C08 end:0x803E6CC8 + .sbss start:0x803F0CA8 end:0x803F0CB0 + .sdata2 start:0x803F1958 end:0x803F1978 + +plugPikiColin/gameExit.cpp: + .text start:0x8005D378 end:0x8005D468 + .data start:0x802B0A10 end:0x802B0B30 + .sdata start:0x803E6CC8 end:0x803E6D18 + +plugPikiColin/gauges.cpp: + .text start:0x8005D468 end:0x8005EDC4 + .ctors start:0x8022A01C end:0x8022A020 + .data start:0x802B0B30 end:0x802B0B48 + .sdata start:0x803E6D18 end:0x803E6D68 + .sbss start:0x803F0CB0 end:0x803F0CC8 + .sdata2 start:0x803F1978 end:0x803F19F8 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005EDC4 end:0x8005F3D4 + .data start:0x802B0B48 end:0x802B0D90 + .sdata start:0x803E6D68 end:0x803E6DE8 + .sbss start:0x803F0CC8 end:0x803F0CD0 + .sdata2 start:0x803F19F8 end:0x803F1A08 + +plugPikiColin/gui.cpp: + .text start:0x8005F3D4 end:0x8006075C + .data start:0x802B0D90 end:0x802B0ED0 + .sdata start:0x803E6DE8 end:0x803E6E38 + .sdata2 start:0x803F1A08 end:0x803F1A38 + +plugPikiColin/parameters.cpp: + .text start:0x8006075C end:0x80060ACC + .data start:0x802B0ED0 end:0x802B0F00 + .sdata start:0x803E6E38 end:0x803E6E40 + +plugPikiColin/plugPiki.cpp: + .text start:0x80060ACC end:0x80061530 + .data start:0x802B0F00 end:0x802B1180 + .sdata start:0x803E6E40 end:0x803E6ED8 + .sdata2 start:0x803F1A38 end:0x803F1A48 + +plugPikiColin/titles.cpp: + .text start:0x80061530 end:0x80062E88 + .data start:0x802B1180 end:0x802B1458 + .sdata start:0x803E6ED8 end:0x803E6FC8 + .sbss start:0x803F0CD0 end:0x803F0D10 + .sdata2 start:0x803F1A48 end:0x803F1AB8 + +plugPikiColin/ninLogo.cpp: + .text start:0x80062E88 end:0x800633F8 + .data start:0x802B1458 end:0x802B15C8 + .sdata start:0x803E6FC8 end:0x803E7018 + .sbss start:0x803F0D10 end:0x803F0D18 + .sdata2 start:0x803F1AB8 end:0x803F1AD0 + +plugPikiColin/mapMgr.cpp: + .text start:0x800633F8 end:0x8006B568 + .ctors start:0x8022A020 end:0x8022A024 + .data start:0x802B15C8 end:0x802B1D28 + .bss start:0x803A6CE0 end:0x803A6CF8 + .sdata start:0x803E7018 end:0x803E7260 + .sbss start:0x803F0D18 end:0x803F0D30 + .sdata2 start:0x803F1AD0 end:0x803F1B78 + +plugPikiColin/dayMgr.cpp: + .text start:0x8006B568 end:0x80071788 + .data start:0x802B1D28 end:0x802B25A8 + .sdata start:0x803E7260 end:0x803E74F0 + .sdata2 start:0x803F1B78 end:0x803F1BD0 + +plugPikiColin/cinePlayer.cpp: + .text start:0x80071788 end:0x80074ED0 + .data start:0x802B25A8 end:0x802B2808 + .bss start:0x803A6CF8 end:0x803A7100 + .sdata start:0x803E74F0 end:0x803E7788 + .sdata2 start:0x803F1BD0 end:0x803F1BF8 + +plugPikiColin/lightPool.cpp: + .text start:0x80074ED0 end:0x80075634 + .data start:0x802B2808 end:0x802B28C0 + .sdata start:0x803E7788 end:0x803E77E8 + .sdata2 start:0x803F1BF8 end:0x803F1C28 + +plugPikiColin/memoryCard.cpp: + .text start:0x80075634 end:0x80078AC0 + .data start:0x802B28C0 end:0x802B45B8 + .bss start:0x803A7100 end:0x803D9180 + .sdata start:0x803E77E8 end:0x803E7830 + +plugPikiColin/moviePlayer.cpp: + .text start:0x80078AC0 end:0x80079C10 + .data start:0x802B45B8 end:0x802B51B8 + .sdata start:0x803E7830 end:0x803E7870 + .sdata2 start:0x803F1C28 end:0x803F1C48 + +plugPikiColin/movSample.cpp: + .text start:0x80079C10 end:0x8007AAC4 + .data start:0x802B51B8 end:0x802B53E8 + .bss start:0x803D9180 end:0x803DA4D0 + .sdata start:0x803E7870 end:0x803E78C0 + .sbss start:0x803F0D30 end:0x803F0D38 + .sdata2 start:0x803F1C48 end:0x803F1C70 + +plugPikiKando/omake.cpp: + .text start:0x8007AAC4 end:0x8007D278 + .data start:0x802B53E8 end:0x802B54E8 + .sdata start:0x803E78C0 end:0x803E7900 + .sbss start:0x803F0D38 end:0x803F0D40 + .sdata2 start:0x803F1C70 end:0x803F1CC8 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007D278 end:0x8007D4DC + .data start:0x802B54E8 end:0x802B5578 + .sdata start:0x803E7900 end:0x803E7940 + .sbss start:0x803F0D40 end:0x803F0D48 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007D4DC end:0x8007E68C + .data start:0x802B5578 end:0x802B5A58 + .sdata start:0x803E7940 end:0x803E79E0 + .sdata2 start:0x803F1CC8 end:0x803F1CD8 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007E68C end:0x8007E8A0 + .data start:0x802B5A58 end:0x802B5B30 + .sdata start:0x803E79E0 end:0x803E7A10 + .sdata2 start:0x803F1CD8 end:0x803F1CE0 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007E8A0 end:0x8007E9E0 + .data start:0x802B5B30 end:0x802B5BE8 + .sdata start:0x803E7A10 end:0x803E7A28 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007E9E0 end:0x8007ECA4 + .data start:0x802B5BE8 end:0x802B5C60 + .sdata start:0x803E7A28 end:0x803E7A48 + .sdata2 start:0x803F1CE0 end:0x803F1CF0 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007ECA4 end:0x8007F114 + .data start:0x802B5C60 end:0x802B6048 + .sdata start:0x803E7A48 end:0x803E7A98 + .sbss start:0x803F0D48 end:0x803F0D68 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007F114 end:0x8007FF3C + .data start:0x802B6048 end:0x802B6508 + .sdata start:0x803E7A98 end:0x803E7B40 + .sdata2 start:0x803F1CF0 end:0x803F1D08 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007FF3C end:0x80081348 + .data start:0x802B6508 end:0x802B6670 + .sdata start:0x803E7B40 end:0x803E7C00 + .sdata2 start:0x803F1D08 end:0x803F1D60 + +plugPikiKando/globalShapes.cpp: + .text start:0x80081348 end:0x8008144C + .data start:0x802B6670 end:0x802B6710 + .sbss start:0x803F0D68 end:0x803F0D80 + +plugPikiKando/playerState.cpp: + .text start:0x8008144C end:0x80083F40 + .rodata start:0x8022A490 end:0x8022A4C0 + .data start:0x802B6710 end:0x802B67F0 + .sdata start:0x803E7C00 end:0x803E7CA0 + .sbss start:0x803F0D80 end:0x803F0D88 + .sdata2 start:0x803F1D60 end:0x803F1D68 + +plugPikiKando/gameDemo.cpp: + .text start:0x80083F40 end:0x80084C18 + .data start:0x802B67F0 end:0x802B6B90 + .sdata start:0x803E7CA0 end:0x803E7D18 + .sbss start:0x803F0D88 end:0x803F0D90 + .sdata2 start:0x803F1D68 end:0x803F1D88 + +plugPikiKando/demoInvoker.cpp: + .text start:0x80084C18 end:0x800855F4 + .data start:0x802B6B90 end:0x802B6BC0 + .sdata2 start:0x803F1D88 end:0x803F1DA0 + +plugPikiKando/demoEvent.cpp: + .text start:0x800855F4 end:0x80085A4C + .data start:0x802B6BC0 end:0x802B6C00 + .sbss start:0x803F0D90 end:0x803F0D98 + +plugPikiKando/resultFlag.cpp: + .text start:0x80085A4C end:0x800861A0 + .rodata start:0x8022A4C0 end:0x8022A4D0 + .data start:0x802B6C00 end:0x802B70F0 + .sdata start:0x803E7D18 end:0x803E7D28 + +plugPikiKando/aiConstants.cpp: + .text start:0x800861A0 end:0x80086680 + .data start:0x802B70F0 end:0x802B7210 + .sdata start:0x803E7D28 end:0x803E7DD0 + .sbss start:0x803F0D98 end:0x803F0DA0 + .sdata2 start:0x803F1DA0 end:0x803F1DB0 + +plugPikiKando/kio.cpp: + .text start:0x80086680 end:0x80086A00 + .sdata start:0x803E7DD0 end:0x803E7DE0 + .sbss start:0x803F0DA0 end:0x803F0DB0 + +plugPikiKando/keyConfig.cpp: + .text start:0x80086A00 end:0x80086D28 + .data start:0x802B7210 end:0x802B7350 + .sdata start:0x803E7DE0 end:0x803E7E48 + .sbss start:0x803F0DB0 end:0x803F0DB8 + +plugPikiKando/aiPerf.cpp: + .text start:0x80086D28 end:0x800887E8 + .rodata start:0x8022A4D0 end:0x8022A4E8 + .data start:0x802B7350 end:0x802B7868 + .sdata start:0x803E7E48 end:0x803E7E90 + .sbss start:0x803F0DB8 end:0x803F0DF0 + .sdata2 start:0x803F1DB0 end:0x803F1DC0 + +plugPikiKando/courseDebug.cpp: + .text start:0x800887E8 end:0x800889D0 + .data start:0x802B7868 end:0x802B7978 + .sdata start:0x803E7E90 end:0x803E7ED0 + .sbss start:0x803F0DF0 end:0x803F0E00 + +plugPikiKando/memStat.cpp: + .text start:0x800889D0 end:0x800893B0 + .data start:0x802B7978 end:0x802B7A78 + .sdata start:0x803E7ED0 end:0x803E7F18 + .sbss start:0x803F0E00 end:0x803F0E08 + .sdata2 start:0x803F1DC0 end:0x803F1DD0 + +plugPikiKando/collInfo.cpp: + .text start:0x800893B0 end:0x8008C838 + .ctors start:0x8022A024 end:0x8022A028 + .data start:0x802B7A78 end:0x802B7B48 + .bss start:0x803DA4D0 end:0x803DA510 + .sdata start:0x803E7F18 end:0x803E7F30 + .sdata2 start:0x803F1DD0 end:0x803F1E08 + +plugPikiKando/complexCreature.cpp: + .text start:0x8008C838 end:0x8008C84C + +plugPikiKando/creature.cpp: + .text start:0x8008C84C end:0x80090260 + .data start:0x802B7B48 end:0x802B7CD0 + .bss start:0x803DA510 end:0x803DAD10 + .sdata start:0x803E7F30 end:0x803E80B8 + .sbss start:0x803F0E08 end:0x803F0E18 + .sdata2 start:0x803F1E08 end:0x803F1E68 + +plugPikiKando/creatureCollision.cpp: + .text start:0x80090260 end:0x800909C8 + .sdata start:0x803E80B8 end:0x803E80C0 + .sdata2 start:0x803F1E68 end:0x803F1E80 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x800909C8 end:0x80090BD8 + .data start:0x802B7CD0 end:0x802B7E10 + .sdata start:0x803E80C0 end:0x803E8100 + +plugPikiKando/creatureMove.cpp: + .text start:0x80090BD8 end:0x800922D0 + .sdata start:0x803E8100 end:0x803E8150 + .sdata2 start:0x803F1E80 end:0x803F1EC8 + +plugPikiKando/creatureStick.cpp: + .text start:0x800922D0 end:0x800949CC + .data start:0x802B7E10 end:0x802B7FA8 + .sdata start:0x803E8150 end:0x803E81D0 + .sdata2 start:0x803F1EC8 end:0x803F1EF0 + +plugPikiKando/dualCreature.cpp: + .text start:0x800949CC end:0x800952F8 + .data start:0x802B7FA8 end:0x802B82D0 + .sdata start:0x803E81D0 end:0x803E8258 + .sdata2 start:0x803F1EF0 end:0x803F1F20 + +plugPikiKando/dynCreature.cpp: + .text start:0x800952F8 end:0x80096AEC + .data start:0x802B82D0 end:0x802B8558 + .sdata start:0x803E8258 end:0x803E8360 + .sbss start:0x803F0E18 end:0x803F0E20 + .sdata2 start:0x803F1F20 end:0x803F1F78 + +plugPikiKando/eventListener.cpp: + .text start:0x80096AEC end:0x80096BDC + .data start:0x802B8558 end:0x802B85F8 + .sdata start:0x803E8360 end:0x803E8380 + +plugPikiKando/fastGrid.cpp: + .text start:0x80096BDC end:0x800971E8 + .sdata start:0x803E8380 end:0x803E8390 + .sbss start:0x803F0E20 end:0x803F0E28 + +plugPikiKando/ropeCreature.cpp: + .text start:0x800971E8 end:0x8009757C + .data start:0x802B85F8 end:0x802B8798 + .sdata start:0x803E8390 end:0x803E83B0 + .sdata2 start:0x803F1F78 end:0x803F1F98 + +plugPikiKando/objectTypes.cpp: + .text start:0x8009757C end:0x80097658 + .data start:0x802B8798 end:0x802B8AC0 + .sdata start:0x803E83B0 end:0x803E8488 + +plugPikiKando/pelletMgr.cpp: + .text start:0x80097658 end:0x8009C1E0 + .rodata start:0x8022A4E8 end:0x8022A508 + .data start:0x802B8AC0 end:0x802B93D0 + .sdata start:0x803E8488 end:0x803E86E0 + .sbss start:0x803F0E28 end:0x803F0E38 + .sdata2 start:0x803F1F98 end:0x803F2020 + +plugPikiKando/animPellet.cpp: + .text start:0x8009C1E0 end:0x8009C9B4 + .data start:0x802B93D0 end:0x802B9570 + .sdata start:0x803E86E0 end:0x803E8770 + .sdata2 start:0x803F2020 end:0x803F2028 + +plugPikiKando/genPellet.cpp: + .text start:0x8009C9B4 end:0x8009CCC4 + .data start:0x802B9570 end:0x802B9648 + .sdata start:0x803E8770 end:0x803E8798 + +plugPikiKando/pelletState.cpp: + .text start:0x8009CCC4 end:0x8009DD9C + .data start:0x802B9648 end:0x802B9B10 + .sdata start:0x803E8798 end:0x803E8828 + .sdata2 start:0x803F2028 end:0x803F2060 + +plugPikiKando/workObject.cpp: + .text start:0x8009DD9C end:0x800A2450 + .data start:0x802B9B10 end:0x802BA790 + .sdata start:0x803E8828 end:0x803E89C8 + .sbss start:0x803F0E38 end:0x803F0E40 + .sdata2 start:0x803F2060 end:0x803F20C0 + +plugPikiKando/routeMgr.cpp: + .text start:0x800A2450 end:0x800A6464 + .data start:0x802BA790 end:0x802BA8E0 + .sdata start:0x803E89C8 end:0x803E8A10 + .sbss start:0x803F0E40 end:0x803F0E48 + .sdata2 start:0x803F20C0 end:0x803F2100 + +plugPikiKando/seMgr.cpp: + .text start:0x800A6464 end:0x800A6C38 + .data start:0x802BA8E0 end:0x802BAA90 + .sdata start:0x803E8A10 end:0x803E8A98 + .sbss start:0x803F0E48 end:0x803F0E50 + .sdata2 start:0x803F2100 end:0x803F2118 + +plugPikiKando/seConstants.cpp: + .text start:0x800A6C38 end:0x800A6D90 + .data start:0x802BAA90 end:0x802BAB90 + .sdata start:0x803E8A98 end:0x803E8AF0 + .sdata2 start:0x803F2118 end:0x803F2128 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A6D90 end:0x800A87E4 + .rodata start:0x8022A508 end:0x8022A530 + .data start:0x802BAB90 end:0x802BDC18 + .sdata start:0x803E8AF0 end:0x803E8BC8 + .sbss start:0x803F0E50 end:0x803F0E58 + .sdata2 start:0x803F2128 end:0x803F2150 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A87E4 end:0x800A8B94 + .data start:0x802BDC18 end:0x802BDC38 + .sbss start:0x803F0E58 end:0x803F0E70 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803F0E70 end:0x803F0E78 + +plugPikiKando/cPlate.cpp: + .text start:0x800A8B94 end:0x800AA2CC + .data start:0x802BDC38 end:0x802BDD78 + .sdata start:0x803E8BC8 end:0x803E8CA8 + .sdata2 start:0x803F2150 end:0x803F21A0 + +plugPikiKando/aiStone.cpp: + .text start:0x800AA2CC end:0x800AAF30 + .data start:0x802BDD78 end:0x802BDE80 + .sdata start:0x803E8CA8 end:0x803E8D08 + .sdata2 start:0x803F21A0 end:0x803F21F0 + +plugPikiKando/aiActions.cpp: + .text start:0x800AAF30 end:0x800AB820 + .data start:0x802BDE80 end:0x802BE168 + .sdata start:0x803E8D08 end:0x803E8D90 + .sdata2 start:0x803F21F0 end:0x803F2228 + +plugPikiKando/aiAttack.cpp: + .text start:0x800AB820 end:0x800ADA54 + .data start:0x802BE168 end:0x802BE3A8 + .sdata start:0x803E8D90 end:0x803E8E48 + .sdata2 start:0x803F2228 end:0x803F2288 + +plugPikiKando/aiBore.cpp: + .text start:0x800ADA54 end:0x800AF844 + .rodata start:0x8022A530 end:0x8022A590 + .data start:0x802BE3A8 end:0x802BE7D0 + .sdata start:0x803E8E48 end:0x803E8EB8 + .sdata2 start:0x803F2288 end:0x803F22C0 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AF844 end:0x800AFCD4 + .data start:0x802BE7D0 end:0x802BE920 + .sdata start:0x803E8EB8 end:0x803E8ED8 + .sdata2 start:0x803F22C0 end:0x803F22D0 + +plugPikiKando/aiBou.cpp: + .text start:0x800AFCD4 end:0x800B0488 + .data start:0x802BE920 end:0x802BEA08 + .sdata start:0x803E8ED8 end:0x803E8F20 + .sdata2 start:0x803F22D0 end:0x803F22F8 + +plugPikiKando/aiBridge.cpp: + .text start:0x800B0488 end:0x800B1724 + .rodata start:0x8022A590 end:0x8022A5A0 + .data start:0x802BEA08 end:0x802BEB70 + .sdata start:0x803E8F20 end:0x803E8F70 + .sdata2 start:0x803F22F8 end:0x803F2340 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800B1724 end:0x800B2218 + .data start:0x802BEB70 end:0x802BECD8 + .sdata start:0x803E8F70 end:0x803E8FB0 + .sdata2 start:0x803F2340 end:0x803F2378 + +plugPikiKando/aiTransport.cpp: + .text start:0x800B2218 end:0x800B7CA0 + .rodata start:0x8022A5A0 end:0x8022A5C8 + .data start:0x802BECD8 end:0x802BEE88 + .sdata start:0x803E8FB0 end:0x803E91A8 + .sdata2 start:0x803F2378 end:0x803F2418 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B7CA0 end:0x800B8E78 + .data start:0x802BEE88 end:0x802BEFF8 + .sdata start:0x803E91A8 end:0x803E9218 + .sdata2 start:0x803F2418 end:0x803F2468 + +plugPikiKando/aiChase.cpp: + .text start:0x800B8E78 end:0x800B929C + .data start:0x802BEFF8 end:0x802BF128 + .sdata start:0x803E9218 end:0x803E9258 + .sdata2 start:0x803F2468 end:0x803F24A0 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B929C end:0x800BB084 + .data start:0x802BF128 end:0x802BF270 + .sdata start:0x803E9258 end:0x803E92F0 + .sdata2 start:0x803F24A0 end:0x803F2510 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800BB084 end:0x800BB83C + .data start:0x802BF270 end:0x802BF380 + .sdata start:0x803E92F0 end:0x803E9338 + .sdata2 start:0x803F2510 end:0x803F2548 + +plugPikiKando/aiEnter.cpp: + .text start:0x800BB83C end:0x800BC1D0 + .data start:0x802BF380 end:0x802BF4A8 + .sdata start:0x803E9338 end:0x803E9388 + .sdata2 start:0x803F2548 end:0x803F25A0 + +plugPikiKando/aiEscape.cpp: + .text start:0x800BC1D0 end:0x800BC710 + .data start:0x802BF4A8 end:0x802BF5E8 + .sdata start:0x803E9388 end:0x803E93E0 + .sdata2 start:0x803F25A0 end:0x803F25E0 + +plugPikiKando/aiExit.cpp: + .text start:0x800BC710 end:0x800BCC68 + .data start:0x802BF5E8 end:0x802BF6B8 + .sdata start:0x803E93E0 end:0x803E9458 + .sdata2 start:0x803F25E0 end:0x803F2618 + +plugPikiKando/aiMine.cpp: + .text start:0x800BCC68 end:0x800BD330 + .data start:0x802BF6B8 end:0x802BF810 + .sdata start:0x803E9458 end:0x803E94A0 + .sdata2 start:0x803F2618 end:0x803F2628 + +plugPikiKando/aiFormation.cpp: + .text start:0x800BD330 end:0x800BE10C + .data start:0x802BF810 end:0x802BF948 + .sdata start:0x803E94A0 end:0x803E94F8 + .sdata2 start:0x803F2628 end:0x803F2690 + +plugPikiKando/aiFree.cpp: + .text start:0x800BE10C end:0x800BEB38 + .data start:0x802BF948 end:0x802BFA70 + .sdata start:0x803E94F8 end:0x803E9550 + .sdata2 start:0x803F2690 end:0x803F26B8 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BEB38 end:0x800BF104 + .data start:0x802BFA70 end:0x802BFB80 + .sdata start:0x803E9550 end:0x803E9598 + .sdata2 start:0x803F26B8 end:0x803F26F0 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BF104 end:0x800C06CC + .data start:0x802BFB80 end:0x802BFC58 + .sdata start:0x803E9598 end:0x803E95E8 + .sdata2 start:0x803F26F0 end:0x803F2738 + +plugPikiKando/aiPick.cpp: + .text start:0x800C06CC end:0x800C0F34 + .data start:0x802BFC58 end:0x802BFE68 + .sdata start:0x803E95E8 end:0x803E9638 + .sdata2 start:0x803F2738 end:0x803F2748 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800C0F34 end:0x800C1310 + .data start:0x802BFE68 end:0x802C0078 + .sdata start:0x803E9638 end:0x803E9678 + +plugPikiKando/aiPullout.cpp: + .text start:0x800C1310 end:0x800C1C90 + .data start:0x802C0078 end:0x802C0280 + .sdata start:0x803E9678 end:0x803E96D8 + .sdata2 start:0x803F2748 end:0x803F2770 + +plugPikiKando/aiPush.cpp: + .text start:0x800C1C90 end:0x800C2694 + .data start:0x802C0280 end:0x802C03F0 + .sdata start:0x803E96D8 end:0x803E9710 + .sdata2 start:0x803F2770 end:0x803F27A0 + +plugPikiKando/aiPut.cpp: + .text start:0x800C2694 end:0x800C468C + .data start:0x802C03F0 end:0x802C05C8 + .sdata start:0x803E9710 end:0x803E97A0 + .sdata2 start:0x803F27A0 end:0x803F27E8 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C468C end:0x800C4F64 + .data start:0x802C05C8 end:0x802C0770 + .sdata start:0x803E97A0 end:0x803E9848 + .sdata2 start:0x803F27E8 end:0x803F2828 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C4F64 end:0x800C5AA0 + .data start:0x802C0770 end:0x802C0890 + .sdata start:0x803E9848 end:0x803E98A8 + .sdata2 start:0x803F2828 end:0x803F2868 + +plugPikiKando/aiRope.cpp: + .text start:0x800C5AA0 end:0x800C5DE8 + .data start:0x802C0890 end:0x802C0960 + .sdata start:0x803E98A8 end:0x803E98E8 + .sdata2 start:0x803F2868 end:0x803F2888 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C5DE8 end:0x800C68D0 + .data start:0x802C0960 end:0x802C0B48 + .sdata start:0x803E98E8 end:0x803E9940 + .sdata2 start:0x803F2888 end:0x803F28B8 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C68D0 end:0x800C6D24 + .data start:0x802C0B48 end:0x802C0CC0 + .sdata start:0x803E9940 end:0x803E9998 + .sdata2 start:0x803F28B8 end:0x803F28E0 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C6D24 end:0x800C7760 + .data start:0x802C0CC0 end:0x802C0DC0 + .sdata start:0x803E9998 end:0x803E9A00 + .sdata2 start:0x803F28E0 end:0x803F2930 + +plugPikiKando/aiAction.cpp: + .text start:0x800C7760 end:0x800C9350 + .data start:0x802C0DC0 end:0x802C1140 + .sdata start:0x803E9A00 end:0x803E9A80 + .sdata2 start:0x803F2930 end:0x803F2938 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C9350 end:0x800CA450 + .ctors start:0x8022A028 end:0x8022A02C + .data start:0x802C1140 end:0x802C1388 + .bss start:0x803DAD10 end:0x803DAD38 + .sdata start:0x803E9A80 end:0x803E9B10 + .sdata2 start:0x803F2938 end:0x803F2948 + +plugPikiKando/piki.cpp: + .text start:0x800CA450 end:0x800D18CC + .ctors start:0x8022A02C end:0x8022A030 + .data start:0x802C1388 end:0x802C1A58 + .bss start:0x803DAD38 end:0x803DAD68 + .sdata start:0x803E9B10 end:0x803E9C28 + .sbss start:0x803F0E78 end:0x803F0E80 + .sdata2 start:0x803F2948 end:0x803F29D8 + +plugPikiKando/odoMeter.cpp: + .text start:0x800D18CC end:0x800D1A18 + .sdata2 start:0x803F29D8 end:0x803F29F0 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800D1A18 end:0x800D1D98 + .sdata2 start:0x803F29F0 end:0x803F2A00 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800D1D98 end:0x800D31B0 + .data start:0x802C1A58 end:0x802C1CC8 + .sdata start:0x803E9C28 end:0x803E9DE8 + .sbss start:0x803F0E80 end:0x803F0E88 + .sdata2 start:0x803F2A00 end:0x803F2AA8 + +plugPikiKando/pikiState.cpp: + .text start:0x800D31B0 end:0x800DCA2C + .rodata start:0x8022A5C8 end:0x8022A670 + .data start:0x802C1CC8 end:0x802C3360 + .sdata start:0x803E9DE8 end:0x803EA238 + .sdata2 start:0x803F2AA8 end:0x803F2B78 + +plugPikiKando/viewPiki.cpp: + .text start:0x800DCA2C end:0x800DEE68 + .rodata start:0x8022A670 end:0x8022A688 + .data start:0x802C3360 end:0x802C3608 + .bss start:0x803DAD68 end:0x803DAD78 + .sdata start:0x803EA238 end:0x803EA338 + .sdata2 start:0x803F2B78 end:0x803F2C00 + +plugPikiKando/conditions.cpp: + .text start:0x800DEE68 end:0x800DEEF4 + .data start:0x802C3608 end:0x802C3688 + .sdata start:0x803EA338 end:0x803EA358 + +plugPikiKando/generator.cpp: + .text start:0x800DEEF4 end:0x800E3058 + .data start:0x802C3688 end:0x802C3C78 + .sdata start:0x803EA358 end:0x803EA4B0 + .sbss start:0x803F0E88 end:0x803F0EB0 + .sdata2 start:0x803F2C00 end:0x803F2C30 + +plugPikiKando/generatorCache.cpp: + .text start:0x800E3058 end:0x800E474C + .data start:0x802C3C78 end:0x802C3F50 + .sdata start:0x803EA4B0 end:0x803EA4F8 + .sbss start:0x803F0EB0 end:0x803F0EB8 + .sdata2 start:0x803F2C30 end:0x803F2C40 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E474C end:0x800E75BC + .data start:0x802C3F50 end:0x802C42C8 + .sdata start:0x803EA4F8 end:0x803EA550 + .sdata2 start:0x803F2C40 end:0x803F2C60 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E75BC end:0x800E8940 + .data start:0x802C42C8 end:0x802C4340 + .sdata start:0x803EA550 end:0x803EA560 + .sdata2 start:0x803F2C60 end:0x803F2C70 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E8940 end:0x800E8998 + .data start:0x802C4340 end:0x802C4380 + .sdata start:0x803EA560 end:0x803EA568 + +plugPikiKando/itemGem.cpp: + .text start:0x800E8998 end:0x800E8C84 + .data start:0x802C4380 end:0x802C4410 + .sdata2 start:0x803F2C70 end:0x803F2CA0 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E8C84 end:0x800EA494 + .data start:0x802C4410 end:0x802C4B38 + .sdata start:0x803EA568 end:0x803EA620 + .sdata2 start:0x803F2CA0 end:0x803F2D08 + +plugPikiKando/kusaItem.cpp: + .text start:0x800EA494 end:0x800EAD24 + .data start:0x802C4B38 end:0x802C4F40 + .sdata start:0x803EA620 end:0x803EA698 + .sdata2 start:0x803F2D08 end:0x803F2D20 + +plugPikiKando/fishItem.cpp: + .text start:0x800EAD24 end:0x800EB6D4 + .data start:0x802C4F40 end:0x802C51B0 + .sdata start:0x803EA698 end:0x803EA730 + .sdata2 start:0x803F2D20 end:0x803F2D50 + +plugPikiKando/ufoItem.cpp: + .text start:0x800EB6D4 end:0x800EDE68 + .rodata start:0x8022A688 end:0x8022A730 + .data start:0x802C51B0 end:0x802C5678 + .sdata start:0x803EA730 end:0x803EA878 + .sdata2 start:0x803F2D50 end:0x803F2DA0 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800EDE68 end:0x800EE84C + .data start:0x802C5678 end:0x802C57A8 + .sdata start:0x803EA878 end:0x803EA8E0 + .sdata2 start:0x803F2DA0 end:0x803F2DB8 + +plugPikiKando/bombItem.cpp: + .text start:0x800EE84C end:0x800EEDD0 + .data start:0x802C57A8 end:0x802C5A28 + .sdata start:0x803EA8E0 end:0x803EA928 + .sdata2 start:0x803F2DB8 end:0x803F2DC8 + +plugPikiKando/goalItem.cpp: + .text start:0x800EEDD0 end:0x800F0CE4 + .rodata start:0x8022A730 end:0x8022A758 + .data start:0x802C5A28 end:0x802C5F28 + .sdata start:0x803EA928 end:0x803EA9D8 + .sbss start:0x803F0EB8 end:0x803F0EC0 + .sdata2 start:0x803F2DC8 end:0x803F2E28 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800F0CE4 end:0x800F1AE0 + .data start:0x802C5F28 end:0x802C62D8 + .sdata start:0x803EA9D8 end:0x803EAA60 + .sdata2 start:0x803F2E28 end:0x803F2E68 + +plugPikiKando/keyItem.cpp: + .text start:0x800F1AE0 end:0x800F22B8 + .data start:0x802C62D8 end:0x802C6670 + .sdata start:0x803EAA60 end:0x803EAAC0 + .sdata2 start:0x803F2E68 end:0x803F2EB8 + +plugPikiKando/ropeItem.cpp: + .text start:0x800F22B8 end:0x800F26AC + .data start:0x802C6670 end:0x802C6838 + .sdata start:0x803EAAC0 end:0x803EAAE8 + .sdata2 start:0x803F2EB8 end:0x803F2EC8 + +plugPikiKando/seedItem.cpp: + .text start:0x800F26AC end:0x800F2BFC + .data start:0x802C6838 end:0x802C69D0 + .sdata start:0x803EAAE8 end:0x803EAB10 + .sdata2 start:0x803F2EC8 end:0x803F2F20 + +plugPikiKando/genItem.cpp: + .text start:0x800F2BFC end:0x800F35C4 + .data start:0x802C69D0 end:0x802C6B38 + .sdata start:0x803EAB10 end:0x803EAB58 + .sdata2 start:0x803F2F20 end:0x803F2F38 + +plugPikiKando/itemAI.cpp: + .text start:0x800F35C4 end:0x800F73B8 + .rodata start:0x8022A758 end:0x8022A770 + .data start:0x802C6B38 end:0x802C7788 + .sdata start:0x803EAB58 end:0x803EADB0 + .sdata2 start:0x803F2F38 end:0x803F2F98 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F73B8 end:0x800FC45C + .data start:0x802C7788 end:0x802C8468 + .sdata start:0x803EADB0 end:0x803EAF48 + .sbss start:0x803F0EC0 end:0x803F0EC8 + .sdata2 start:0x803F2F98 end:0x803F2FE0 + +plugPikiKando/itemObject.cpp: + .text start:0x800FC45C end:0x800FC7B4 + .data start:0x802C8468 end:0x802C8F10 + .sdata start:0x803EAF48 end:0x803EAFB0 + +plugPikiKando/mizuItem.cpp: + .text start:0x800FC7B4 end:0x800FC990 + .data start:0x802C8F10 end:0x802C9188 + .sdata start:0x803EAFB0 end:0x803EAFE8 + .sdata2 start:0x803F2FE0 end:0x803F2FE8 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800FC990 end:0x800FCC34 + .data start:0x802C9188 end:0x802C9260 + .sdata start:0x803EAFE8 end:0x803EB040 + +plugPikiKando/genNavi.cpp: + .text start:0x800FCC34 end:0x800FCDEC + .data start:0x802C9260 end:0x802C9340 + .sdata start:0x803EB040 end:0x803EB068 + +plugPikiKando/navi.cpp: + .text start:0x800FCDEC end:0x80105D9C + .data start:0x802C9340 end:0x802C99A0 + .sdata start:0x803EB068 end:0x803EB368 + .sbss start:0x803F0EC8 end:0x803F0ED8 + .sdata2 start:0x803F2FE8 end:0x803F3128 + +plugPikiKando/naviState.cpp: + .text start:0x80105D9C end:0x8010FE08 + .rodata start:0x8022A770 end:0x8022A790 + .data start:0x802C99A0 end:0x802CADC8 + .sdata start:0x803EB368 end:0x803EB760 + .sdata2 start:0x803F3128 end:0x803F3208 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010FE08 end:0x80111C4C + .data start:0x802CADC8 end:0x802CB4B0 + .sdata start:0x803EB760 end:0x803EB810 + .sdata2 start:0x803F3208 end:0x803F3260 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x80111C4C end:0x80116C68 + .data start:0x802CB4B0 end:0x802CB848 + .sdata start:0x803EB810 end:0x803EB940 + .sbss start:0x803F0ED8 end:0x803F0F08 + .sdata2 start:0x803F3260 end:0x803F3288 + +plugPikiKando/gmWin.cpp: + .text start:0x80116C68 end:0x8011730C + .sbss start:0x803F0F08 end:0x803F0F10 + +plugPikiKando/gameStat.cpp: + .text start:0x8011730C end:0x80117518 + .ctors start:0x8022A030 end:0x8022A034 + .bss start:0x803DAD78 end:0x803DAE00 + .sbss start:0x803F0F10 end:0x803F0F28 + +plugPikiKando/kmath.cpp: + .text start:0x80117518 end:0x80117FB8 + .sdata start:0x803EB940 end:0x803EB948 + .sdata2 start:0x803F3288 end:0x803F32E0 + +plugPikiKando/uteffect.cpp: + .text start:0x80117FB8 end:0x8011AB34 + .data start:0x802CB848 end:0x802CC100 + .sdata start:0x803EB948 end:0x803EBA60 + .sbss start:0x803F0F28 end:0x803F0F30 + .sdata2 start:0x803F32E0 end:0x803F3310 + +plugPikiKando/kontroller.cpp: + .text start:0x8011AB34 end:0x8011B028 + .data start:0x802CC100 end:0x802CC1F0 + .sdata start:0x803EBA60 end:0x803EBA98 + .sbss start:0x803F0F30 end:0x803F0F38 + +plugPikiKando/mapcode.cpp: + .text start:0x8011B028 end:0x8011B0B8 + .sdata2 start:0x803F3310 end:0x803F3318 + +plugPikiKando/utkando.cpp: + .text start:0x8011B0B8 end:0x8011C234 + .data start:0x802CC1F0 end:0x802CC208 + .sdata start:0x803EBA98 end:0x803EBAB8 + .sdata2 start:0x803F3318 end:0x803F3338 + +plugPikiKando/naviMgr.cpp: + .text start:0x8011C234 end:0x8011C8CC + .data start:0x802CC208 end:0x802CC3F8 + .sdata start:0x803EBAB8 end:0x803EBB10 + .sbss start:0x803F0F38 end:0x803F0F40 + +plugPikiKando/genMapParts.cpp: + .text start:0x8011C8CC end:0x8011D5C0 + .data start:0x802CC3F8 end:0x802CC570 + .sdata start:0x803EBB10 end:0x803EBBF0 + .sbss start:0x803F0F40 end:0x803F0F48 + .sdata2 start:0x803F3338 end:0x803F3348 + +plugPikiKando/mapParts.cpp: + .text start:0x8011D5C0 end:0x8011DE1C + .data start:0x802CC570 end:0x802CC880 + .sdata start:0x803EBBF0 end:0x803EBC78 + .sdata2 start:0x803F3348 end:0x803F3358 + +plugPikiKando/panipikianimator.cpp: + .text start:0x8011DE1C end:0x8011EB28 + .data start:0x802CC880 end:0x802CCB58 + .sdata start:0x803EBC78 end:0x803EBEC0 + +plugPikiKando/actor.cpp: + .text start:0x8011EB28 end:0x8011EBCC + +plugPikiKando/actorMgr.cpp: + .text start:0x8011EBCC end:0x8011EC48 + .sbss start:0x803F0F48 end:0x803F0F50 + +plugPikiKando/genActor.cpp: + .text start:0x8011EC48 end:0x8011EDFC + .data start:0x802CCB58 end:0x802CCC40 + .sdata start:0x803EBEC0 end:0x803EBEE8 + +plugPikiKando/pikiInfo.cpp: + .text start:0x8011EDFC end:0x8011EE54 + .sbss start:0x803F0F50 end:0x803F0F58 + +plugPikiKando/plantMgr.cpp: + .text start:0x8011EE54 end:0x80120260 + .data start:0x802CCC40 end:0x802CD368 + .sdata start:0x803EBEE8 end:0x803EC050 + .sbss start:0x803F0F58 end:0x803F0F60 + .sdata2 start:0x803F3358 end:0x803F3390 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x80120260 end:0x801203E4 + .data start:0x802CD368 end:0x802CD420 + .sdata start:0x803EC050 end:0x803EC088 + +plugPikiNakata/genteki.cpp: + .text start:0x801203E4 end:0x8012089C + .data start:0x802CD420 end:0x802CD530 + .sdata start:0x803EC088 end:0x803EC0B0 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8012089C end:0x801208D4 + .sbss start:0x803F0F60 end:0x803F0F68 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x801208D4 end:0x80120E70 + .data start:0x802CD530 end:0x802CD640 + .sdata start:0x803EC0B0 end:0x803EC0D8 + .sdata2 start:0x803F3390 end:0x803F33A0 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x80120E70 end:0x801225EC + .data start:0x802CD640 end:0x802CD730 + .sdata start:0x803EC0D8 end:0x803EC128 + .sdata2 start:0x803F33A0 end:0x803F33C8 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x801225EC end:0x80122B4C + .data start:0x802CD730 end:0x802CD750 + .sdata start:0x803EC128 end:0x803EC148 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x80122B4C end:0x80122D38 + .sdata start:0x803EC148 end:0x803EC160 + .sdata2 start:0x803F33C8 end:0x803F33D0 + +plugPikiNakata/nlibmath.cpp: + .text start:0x80122D38 end:0x80123050 + .data start:0x802CD750 end:0x802CDF70 + .sdata start:0x803EC160 end:0x803EC170 + .sdata2 start:0x803F33D0 end:0x803F33F0 + +plugPikiNakata/nlibspline.cpp: + .text start:0x80123050 end:0x801232E8 + +plugPikiNakata/nlibsystem.cpp: + .text start:0x801232E8 end:0x80124148 + .data start:0x802CDF70 end:0x802CE060 + .sdata start:0x803EC170 end:0x803EC1A0 + .sbss start:0x803F0F68 end:0x803F0F70 + .sdata2 start:0x803F33F0 end:0x803F3400 + +plugPikiNakata/panianimator.cpp: + .text start:0x80124148 end:0x80124B5C + .data start:0x802CE060 end:0x802CE1A8 + .sdata start:0x803EC1A0 end:0x803EC1B0 + .sdata2 start:0x803F3400 end:0x803F3410 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x80124B5C end:0x80124F10 + .sbss start:0x803F0F70 end:0x803F0F78 + .sdata2 start:0x803F3410 end:0x803F3418 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x80124F10 end:0x801251B4 + .data start:0x802CE1A8 end:0x802CE2A0 + .sdata start:0x803EC1B0 end:0x803EC230 + +plugPikiNakata/panitestsection.cpp: + .text start:0x801251B4 end:0x80126860 + .data start:0x802CE2A0 end:0x802CE4D0 + .sdata start:0x803EC230 end:0x803EC2F8 + .sdata2 start:0x803F3418 end:0x803F3448 + +plugPikiNakata/paraparameters.cpp: + .text start:0x80126860 end:0x80126E74 + .data start:0x802CE4D0 end:0x802CE5D0 + .sdata start:0x803EC2F8 end:0x803EC320 + .sdata2 start:0x803F3448 end:0x803F3450 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x80126E74 end:0x80128ECC + .data start:0x802CE5D0 end:0x802CE6A0 + .sdata start:0x803EC320 end:0x803EC348 + .sdata2 start:0x803F3450 end:0x803F3490 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x80128ECC end:0x80129420 + .data start:0x802CE6A0 end:0x802CE778 + .sdata start:0x803EC348 end:0x803EC378 + .sdata2 start:0x803F3490 end:0x803F34B0 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x80129420 end:0x80129C3C + .data start:0x802CE778 end:0x802CEA30 + .sdata start:0x803EC378 end:0x803EC3C8 + .sdata2 start:0x803F34B0 end:0x803F34E0 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x80129C3C end:0x8012A7B8 + .data start:0x802CEA30 end:0x802CEFD8 + .sdata start:0x803EC3C8 end:0x803EC400 + .sdata2 start:0x803F34E0 end:0x803F3578 + +plugPikiNakata/peve.cpp: + .text start:0x8012A7B8 end:0x8012AEE0 + .data start:0x802CEFD8 end:0x802CF290 + .sdata start:0x803EC400 end:0x803EC470 + .sdata2 start:0x803F3578 end:0x803F3590 + +plugPikiNakata/peveconditions.cpp: + .text start:0x8012AEE0 end:0x8012B17C + .data start:0x802CF290 end:0x802CF3F0 + .sdata start:0x803EC470 end:0x803EC4A0 + .sdata2 start:0x803F3590 end:0x803F3598 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x8012B17C end:0x8012C07C + .data start:0x802CF3F0 end:0x802CF9C0 + .sdata start:0x803EC4A0 end:0x803EC528 + .sdata2 start:0x803F3598 end:0x803F35A0 + +plugPikiNakata/tai.cpp: + .text start:0x8012C07C end:0x8012C87C + .data start:0x802CF9C0 end:0x802CFA98 + .sdata start:0x803EC528 end:0x803EC550 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x8012C87C end:0x8012D620 + .data start:0x802CFA98 end:0x802CFE18 + .sdata start:0x803EC550 end:0x803EC5C8 + .sdata2 start:0x803F35A0 end:0x803F35B0 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x8012D620 end:0x8012D798 + .data start:0x802CFE18 end:0x802CFFC8 + .sdata start:0x803EC5C8 end:0x803EC600 + +plugPikiNakata/taichappy.cpp: + .text start:0x8012D798 end:0x8012FD38 + .data start:0x802CFFC8 end:0x802D04B8 + .sdata start:0x803EC600 end:0x803EC6C0 + .sdata2 start:0x803F35B0 end:0x803F3630 + +plugPikiNakata/taicollec.cpp: + .text start:0x8012FD38 end:0x80133704 + .data start:0x802D04B8 end:0x802D10A8 + .sdata start:0x803EC6C0 end:0x803EC868 + .sdata2 start:0x803F3630 end:0x803F36A0 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x80133704 end:0x80133820 + .data start:0x802D10A8 end:0x802D12C0 + .sdata start:0x803EC868 end:0x803EC8A8 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x80133820 end:0x80133940 + .data start:0x802D12C0 end:0x802D1450 + .sdata start:0x803EC8A8 end:0x803EC8D8 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x80133940 end:0x801347F4 + .data start:0x802D1450 end:0x802D1778 + .sdata start:0x803EC8D8 end:0x803EC990 + .sdata2 start:0x803F36A0 end:0x803F36D8 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x801347F4 end:0x80134EC0 + .data start:0x802D1778 end:0x802D1AC0 + .sdata start:0x803EC990 end:0x803EC9F8 + .sdata2 start:0x803F36D8 end:0x803F36E0 + +plugPikiNakata/taikinoko.cpp: + .text start:0x80134EC0 end:0x80137220 + .data start:0x802D1AC0 end:0x802D2018 + .sdata start:0x803EC9F8 end:0x803ECAC0 + .sdata2 start:0x803F36E0 end:0x803F3778 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x80137220 end:0x8013728C + .data start:0x802D2018 end:0x802D20D0 + .sdata start:0x803ECAC0 end:0x803ECAD8 + +plugPikiNakata/taimizinko.cpp: + .text start:0x8013728C end:0x80139340 + .data start:0x802D20D0 end:0x802D2708 + .sdata start:0x803ECAD8 end:0x803ECBD8 + .sdata2 start:0x803F3778 end:0x803F37D0 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80139340 end:0x80139888 + .data start:0x802D2708 end:0x802D2A28 + .sdata start:0x803ECBD8 end:0x803ECC50 + .sdata2 start:0x803F37D0 end:0x803F37E0 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x80139888 end:0x8013AF48 + .data start:0x802D2A28 end:0x802D3398 + .sdata start:0x803ECC50 end:0x803ECD88 + .sdata2 start:0x803F37E0 end:0x803F37F8 + +plugPikiNakata/tainapkid.cpp: + .text start:0x8013AF48 end:0x8013F828 + .data start:0x802D3398 end:0x802D3E80 + .sdata start:0x803ECD88 end:0x803ECEE8 + .sdata2 start:0x803F37F8 end:0x803F38B0 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x8013F828 end:0x80142DDC + .data start:0x802D3E80 end:0x802D4610 + .sdata start:0x803ECEE8 end:0x803ED000 + .sdata2 start:0x803F38B0 end:0x803F3968 + +plugPikiNakata/taipalm.cpp: + .text start:0x80142DDC end:0x80143F00 + .data start:0x802D4610 end:0x802D4B40 + .sdata start:0x803ED000 end:0x803ED0D8 + .sdata2 start:0x803F3968 end:0x803F39B0 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x80143F00 end:0x8014462C + .data start:0x802D4B40 end:0x802D51C0 + .sdata start:0x803ED0D8 end:0x803ED1B0 + .sdata2 start:0x803F39B0 end:0x803F39C0 + +plugPikiNakata/taiswallow.cpp: + .text start:0x8014462C end:0x801472F8 + .data start:0x802D51C0 end:0x802D5860 + .sdata start:0x803ED1B0 end:0x803ED290 + .sdata2 start:0x803F39C0 end:0x803F3A50 + +plugPikiNakata/taishell.cpp: + .text start:0x801472F8 end:0x801489F8 + .data start:0x802D5860 end:0x802D5D90 + .sdata start:0x803ED290 end:0x803ED348 + .sdata2 start:0x803F3A50 end:0x803F3A98 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x801489F8 end:0x80148DC4 + .data start:0x802D5D90 end:0x802D5EC0 + .sdata start:0x803ED348 end:0x803ED370 + .sdata2 start:0x803F3A98 end:0x803F3AB8 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x80148DC4 end:0x80148F18 + .data start:0x802D5EC0 end:0x802D5F58 + .sdata start:0x803ED370 end:0x803ED388 + .sdata2 start:0x803F3AB8 end:0x803F3AD8 + +plugPikiNakata/teki.cpp: + .text start:0x80148F18 end:0x80149170 + .data start:0x802D5F58 end:0x802D62B0 + .sdata start:0x803ED388 end:0x803ED3F0 + .sdata2 start:0x803F3AD8 end:0x803F3AE0 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80149170 end:0x80149284 + .data start:0x802D62B0 end:0x802D6390 + .sdata start:0x803ED3F0 end:0x803ED420 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80149284 end:0x8014EF9C + .data start:0x802D6390 end:0x802D6810 + .sdata start:0x803ED420 end:0x803ED568 + .sdata2 start:0x803F3AE0 end:0x803F3B28 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x8014EF9C end:0x8014F774 + .data start:0x802D6810 end:0x802D6DC8 + .sdata start:0x803ED568 end:0x803ED628 + .sdata2 start:0x803F3B28 end:0x803F3B30 + +plugPikiNakata/tekievent.cpp: + .text start:0x8014F774 end:0x8014F7E8 + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x8014F7E8 end:0x8014F968 + .data start:0x802D6DC8 end:0x802D6EB8 + .sdata start:0x803ED628 end:0x803ED640 + +plugPikiNakata/tekimgr.cpp: + .text start:0x8014F968 end:0x8015057C + .data start:0x802D6EB8 end:0x802D71D8 + .sdata start:0x803ED640 end:0x803ED7A0 + .sbss start:0x803F0F78 end:0x803F0F80 + +plugPikiNakata/tekinakata.cpp: + .text start:0x8015057C end:0x80150E50 + +plugPikiNakata/tekinteki.cpp: + .text start:0x80150E50 end:0x801511A0 + .data start:0x802D71D8 end:0x802D74C0 + .sdata start:0x803ED7A0 end:0x803ED7E8 + .sdata2 start:0x803F3B30 end:0x803F3B38 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x801511A0 end:0x80151EB8 + .data start:0x802D74C0 end:0x802D7A70 + .sdata start:0x803ED7E8 end:0x803ED838 + .sdata2 start:0x803F3B38 end:0x803F3B78 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x80151EB8 end:0x801526AC + .data start:0x802D7A70 end:0x802D7B90 + .sdata start:0x803ED838 end:0x803ED860 + .sdata2 start:0x803F3B78 end:0x803F3B90 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x801526AC end:0x801527D8 + .data start:0x802D7B90 end:0x802D7BF0 + .sdata start:0x803ED860 end:0x803ED868 + +plugPikiNishimura/genBoss.cpp: + .text start:0x801527D8 end:0x80152DD4 + .data start:0x802D7BF0 end:0x802D7CC0 + .sdata start:0x803ED868 end:0x803ED890 + +plugPikiNishimura/Boss.cpp: + .text start:0x80152DD4 end:0x80154F70 + .data start:0x802D7CC0 end:0x802D7F60 + .sdata start:0x803ED890 end:0x803ED970 + .sdata2 start:0x803F3B90 end:0x803F3BF0 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x80154F70 end:0x80155004 + .data start:0x802D7F60 end:0x802D8028 + .sdata start:0x803ED970 end:0x803ED9A0 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x80155004 end:0x80155290 + .data start:0x802D8028 end:0x802D8110 + .sdata start:0x803ED9A0 end:0x803ED9D0 + .sdata2 start:0x803F3BF0 end:0x803F3C08 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x80155290 end:0x80157BF0 + .data start:0x802D8110 end:0x802D8650 + .sdata start:0x803ED9D0 end:0x803EDA70 + .sbss start:0x803F0F80 end:0x803F0F88 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x80157BF0 end:0x80157D00 + .data start:0x802D8650 end:0x802D8668 + .sdata2 start:0x803F3C08 end:0x803F3C10 + +plugPikiNishimura/Spider.cpp: + .text start:0x80157D00 end:0x80158DA8 + .data start:0x802D8668 end:0x802D8990 + .sdata start:0x803EDA70 end:0x803EDBD0 + .sdata2 start:0x803F3C10 end:0x803F3CB0 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80158DA8 end:0x8015AE48 + .data start:0x802D8990 end:0x802D8A20 + .sdata start:0x803EDBD0 end:0x803EDBE0 + .sdata2 start:0x803F3CB0 end:0x803F3D00 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x8015AE48 end:0x8015F704 + .rodata start:0x8022A790 end:0x8022A7E0 + .data start:0x802D8A20 end:0x802D8B98 + .sdata start:0x803EDBE0 end:0x803EDC58 + .sbss start:0x803F0F88 end:0x803F0F90 + .sdata2 start:0x803F3D00 end:0x803F3D88 + +plugPikiNishimura/Snake.cpp: + .text start:0x8015F704 end:0x80160630 + .data start:0x802D8B98 end:0x802D8EA8 + .sdata start:0x803EDC58 end:0x803EDD98 + .sdata2 start:0x803F3D88 end:0x803F3E00 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x80160630 end:0x801650E8 + .rodata start:0x8022A7E0 end:0x8022A7F8 + .data start:0x802D8EA8 end:0x802D8F70 + .sdata start:0x803EDD98 end:0x803EDDC8 + .sdata2 start:0x803F3E00 end:0x803F3E40 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x801650E8 end:0x80168B54 + .rodata start:0x8022A7F8 end:0x8022A838 + .data start:0x802D8F70 end:0x802D9030 + .sdata start:0x803EDDC8 end:0x803EDE20 + .sdata2 start:0x803F3E40 end:0x803F3E78 + +plugPikiNishimura/Slime.cpp: + .text start:0x80168B54 end:0x80169FC0 + .data start:0x802D9030 end:0x802D93E8 + .sdata start:0x803EDE20 end:0x803EDF38 + .sdata2 start:0x803F3E78 end:0x803F3EE8 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x80169FC0 end:0x8016F9C8 + .data start:0x802D93E8 end:0x802D9410 + .sdata start:0x803EDF38 end:0x803EDF88 + .sdata2 start:0x803F3EE8 end:0x803F3F68 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x8016F9C8 end:0x80170610 + .sdata start:0x803EDF88 end:0x803EDFA8 + .sdata2 start:0x803F3F68 end:0x803F3F88 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x80170610 end:0x8017083C + .data start:0x802D9410 end:0x802D95A0 + .sdata start:0x803EDFA8 end:0x803EDFC8 + .sdata2 start:0x803F3F88 end:0x803F3F98 + +plugPikiNishimura/King.cpp: + .text start:0x8017083C end:0x80171648 + .data start:0x802D95A0 end:0x802D98C8 + .sdata start:0x803EDFC8 end:0x803EE100 + .sdata2 start:0x803F3F98 end:0x803F4000 + +plugPikiNishimura/KingAi.cpp: + .text start:0x80171648 end:0x80178114 + .data start:0x802D98C8 end:0x802D9A20 + .sdata start:0x803EE100 end:0x803EE128 + .sdata2 start:0x803F4000 end:0x803F4068 + +plugPikiNishimura/KingBody.cpp: + .text start:0x80178114 end:0x8017ADB4 + .data start:0x802D9A20 end:0x802D9C00 + .sdata start:0x803EE128 end:0x803EE258 + .sdata2 start:0x803F4068 end:0x803F40B0 + +plugPikiNishimura/Kogane.cpp: + .text start:0x8017ADB4 end:0x8017B488 + .data start:0x802D9C00 end:0x802D9E90 + .sdata start:0x803EE258 end:0x803EE308 + .sdata2 start:0x803F40B0 end:0x803F40F0 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x8017B488 end:0x8017D164 + .rodata start:0x8022A838 end:0x8022A848 + .data start:0x802D9E90 end:0x802D9F68 + .sdata start:0x803EE308 end:0x803EE3B8 + .sdata2 start:0x803F40F0 end:0x803F4140 + +plugPikiNishimura/Pom.cpp: + .text start:0x8017D164 end:0x8017D8DC + .data start:0x802D9F68 end:0x802DA208 + .sdata start:0x803EE3B8 end:0x803EE460 + .sdata2 start:0x803F4140 end:0x803F4178 + +plugPikiNishimura/PomAi.cpp: + .text start:0x8017D8DC end:0x8017F18C + .data start:0x802DA208 end:0x802DA308 + .sdata start:0x803EE460 end:0x803EE490 + .sdata2 start:0x803F4178 end:0x803F41C8 + +plugPikiNishimura/KingBack.cpp: + .text start:0x8017F18C end:0x8017F530 + .data start:0x802DA308 end:0x802DA570 + .sdata start:0x803EE490 end:0x803EE4F0 + .sdata2 start:0x803F41C8 end:0x803F41D8 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x8017F530 end:0x8017F8C8 + .data start:0x802DA570 end:0x802DA7C8 + .sdata start:0x803EE4F0 end:0x803EE568 + .sdata2 start:0x803F41D8 end:0x803F41F0 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x8017F8C8 end:0x8017FCD8 + .data start:0x802DA7C8 end:0x802DA820 + .sdata start:0x803EE568 end:0x803EE578 + .sdata2 start:0x803F41F0 end:0x803F41F8 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x8017FCD8 end:0x801800C8 + .data start:0x802DA820 end:0x802DAA88 + .sdata start:0x803EE578 end:0x803EE5E8 + .sdata2 start:0x803F41F8 end:0x803F4210 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x801800C8 end:0x80180758 + .data start:0x802DAA88 end:0x802DAAE8 + .sdata start:0x803EE5E8 end:0x803EE600 + .sdata2 start:0x803F4210 end:0x803F4218 + +plugPikiNishimura/Mizu.cpp: + .text start:0x80180758 end:0x80180BDC + .data start:0x802DAAE8 end:0x802DAD40 + .sdata start:0x803EE600 end:0x803EE668 + .sdata2 start:0x803F4218 end:0x803F4230 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x80180BDC end:0x80181600 + .data start:0x802DAD40 end:0x802DAE28 + .sdata start:0x803EE668 end:0x803EE6A0 + .sdata2 start:0x803F4230 end:0x803F4248 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802DAE28 end:0x802DB958 + .sdata start:0x803EE6A0 end:0x803EE6F0 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x80181600 end:0x80181BA0 + .sdata2 start:0x803F4248 end:0x803F4270 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x80181BA0 end:0x801829B8 + .sbss start:0x803F0F90 end:0x803F0F98 + .sdata2 start:0x803F4270 end:0x803F4280 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x801829B8 end:0x80182A7C + .sdata2 start:0x803F4280 end:0x803F4288 + +plugPikiOgawa/ogTest.cpp: + .text start:0x80182A7C end:0x80183B48 + .data start:0x802DB958 end:0x802DBC40 + .sdata start:0x803EE6F0 end:0x803EE768 + .sdata2 start:0x803F4288 end:0x803F42A0 + +plugPikiOgawa/ogSub.cpp: + .text start:0x80183B48 end:0x801862DC + .data start:0x802DBC40 end:0x802DC500 + .bss start:0x803DAE00 end:0x803DB200 + .sdata start:0x803EE768 end:0x803EE818 + .sdata2 start:0x803F42A0 end:0x803F42E0 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x801862DC end:0x8018749C + .data start:0x802DC500 end:0x802DC5B0 + .sdata start:0x803EE818 end:0x803EE820 + .sdata2 start:0x803F42E0 end:0x803F42F0 + +plugPikiOgawa/ogPause.cpp: + .text start:0x8018749C end:0x80187D18 + .data start:0x802DC5B0 end:0x802DC618 + .sdata2 start:0x803F42F0 end:0x803F4308 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x80187D18 end:0x80187F60 + .data start:0x802DC618 end:0x802DC630 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802DC630 end:0x802DD548 + .sdata start:0x803EE820 end:0x803EEAE0 + +plugPikiOgawa/ogMap.cpp: + .text start:0x80187F60 end:0x80188588 + .data start:0x802DD548 end:0x802DD578 + .sdata2 start:0x803F4308 end:0x803F4328 + +plugPikiOgawa/ogResult.cpp: + .text start:0x80188588 end:0x8018A090 + .data start:0x802DD578 end:0x802DE5A8 + .sdata start:0x803EEAE0 end:0x803EEAE8 + .sdata2 start:0x803F4328 end:0x803F4358 + +plugPikiOgawa/ogRader.cpp: + .text start:0x8018A090 end:0x8018C588 + .data start:0x802DE5A8 end:0x802DE678 + .sdata start:0x803EEAE8 end:0x803EEB18 + .sdata2 start:0x803F4358 end:0x803F43D8 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x8018C588 end:0x80190780 + .data start:0x802DE678 end:0x802DE7C8 + .sdata start:0x803EEB18 end:0x803EEB60 + .sdata2 start:0x803F43D8 end:0x803F4430 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x80190780 end:0x801918B0 + .data start:0x802DE7C8 end:0x802DE7D8 + .sdata start:0x803EEB60 end:0x803EEB70 + .sdata2 start:0x803F4430 end:0x803F4470 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x801918B0 end:0x80193600 + .data start:0x802DE7D8 end:0x802DE8F8 + .sdata start:0x803EEB70 end:0x803EEB80 + .sdata2 start:0x803F4470 end:0x803F4498 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x80193600 end:0x80195698 + .data start:0x802DE8F8 end:0x802DE978 + .bss start:0x803DB200 end:0x803DB228 + .sdata start:0x803EEB80 end:0x803EEBC0 + .sdata2 start:0x803F4498 end:0x803F44E8 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x80195698 end:0x80197990 + .data start:0x802DE978 end:0x802DEB20 + .sdata start:0x803EEBC0 end:0x803EEBF0 + .sdata2 start:0x803F44E8 end:0x803F4558 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x80197990 end:0x80197D98 + .data start:0x802DEB20 end:0x802DEB38 + .sdata2 start:0x803F4558 end:0x803F4568 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x80197D98 end:0x801985CC + .data start:0x802DEB38 end:0x802DEB68 + .sdata2 start:0x803F4568 end:0x803F4588 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x801985CC end:0x80199B08 + .data start:0x802DEB68 end:0x802DEB80 + .sdata start:0x803EEBF0 end:0x803EEC10 + .sdata2 start:0x803F4588 end:0x803F45A8 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80199B08 end:0x8019AC24 + .data start:0x802DEB80 end:0x802DEC20 + .sdata2 start:0x803F45A8 end:0x803F45C8 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x8019AC24 end:0x8019B554 + .sdata2 start:0x803F45C8 end:0x803F45E8 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x8019B554 end:0x8019BE9C + .sdata start:0x803EEC10 end:0x803EEC28 + .sdata2 start:0x803F45E8 end:0x803F4628 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x8019BE9C end:0x8019C1D0 + .sdata start:0x803EEC28 end:0x803EEC38 + .sdata2 start:0x803F4628 end:0x803F4650 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x8019C1D0 end:0x8019CC30 + .data start:0x802DEC20 end:0x802DED30 + .sdata2 start:0x803F4650 end:0x803F4660 + +plugPikiOgawa/ogStart.cpp: + .text start:0x8019CC30 end:0x8019CFAC + .data start:0x802DED30 end:0x802DED48 + .sdata2 start:0x803F4660 end:0x803F4680 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x8019CFAC end:0x8019D694 + .data start:0x802DED48 end:0x802DEE20 + .sdata start:0x803EEC38 end:0x803EEC58 + .sdata2 start:0x803F4680 end:0x803F4698 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x8019D694 end:0x8019FC38 + .data start:0x802DEE20 end:0x802DF578 + .sdata start:0x803EEC58 end:0x803EED88 + .sdata2 start:0x803F4698 end:0x803F46C8 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x8019FC38 end:0x8019FCBC + .data start:0x802DF578 end:0x802DF6B0 + .sdata start:0x803EED88 end:0x803EEDD0 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x8019FCBC end:0x8019FD54 + .data start:0x802DF6B0 end:0x802DF7E0 + .sdata start:0x803EEDD0 end:0x803EEE18 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019FD54 end:0x801A0094 + .sdata start:0x803EEE18 end:0x803EEE30 + .sdata2 start:0x803F46C8 end:0x803F46E0 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x801A0094 end:0x801A1254 + .data start:0x802DF7E0 end:0x802E31A0 + .sdata start:0x803EEE30 end:0x803EEEE0 + .sbss start:0x803F0F98 end:0x803F0FA0 + .sdata2 start:0x803F46E0 end:0x803F4700 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x801A1254 end:0x801A5518 + .data start:0x802E31A0 end:0x802E32B8 + .sdata start:0x803EEEE0 end:0x803EEF00 + .sdata2 start:0x803F4700 end:0x803F4750 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x801A5518 end:0x801A57A8 + .data start:0x802E32B8 end:0x802E3340 + .sdata start:0x803EEF00 end:0x803EEF10 + +plugPikiYamashita/solidField.cpp: + .data start:0x802E3340 end:0x802E6358 + +plugPikiYamashita/particleManager.cpp: + .text start:0x801A57A8 end:0x801A5FD4 + .data start:0x802E6358 end:0x802E6458 + .sdata start:0x803EEF10 end:0x803EEF20 + .sdata2 start:0x803F4750 end:0x803F4758 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x801A5FD4 end:0x801A6610 + .data start:0x802E6458 end:0x802E6550 + .sdata start:0x803EEF20 end:0x803EEF70 + .sdata2 start:0x803F4758 end:0x803F4760 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A6610 end:0x801A6A6C + .sdata2 start:0x803F4760 end:0x803F4778 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A6A6C end:0x801A6F54 + .sdata2 start:0x803F4778 end:0x803F47A0 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A6F54 end:0x801A78F8 + .data start:0x802E6550 end:0x802E6928 + .sdata start:0x803EEF70 end:0x803EF008 + .sdata2 start:0x803F47A0 end:0x803F47C8 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A78F8 end:0x801A7D94 + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A7D94 end:0x801A7E88 + .data start:0x802E6928 end:0x802E6950 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A7E88 end:0x801AA02C + .ctors start:0x8022A034 end:0x8022A038 + .data start:0x802E6950 end:0x802E71C0 + .sdata start:0x803EF008 end:0x803EF160 + .sbss start:0x803F0FA0 end:0x803F0FA8 + .sdata2 start:0x803F47C8 end:0x803F4850 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801AA02C end:0x801ACE10 + .ctors start:0x8022A038 end:0x8022A03C + .data start:0x802E71C0 end:0x802E7E50 + .sdata start:0x803EF160 end:0x803EF308 + .sbss start:0x803F0FA8 end:0x803F0FB8 + .sdata2 start:0x803F4850 end:0x803F48F8 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801ACE10 end:0x801AD5AC + .data start:0x802E7E50 end:0x802E80C8 + .sdata start:0x803EF308 end:0x803EF368 + .sdata2 start:0x803F48F8 end:0x803F4908 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801AD5AC end:0x801B16A8 + .data start:0x802E80C8 end:0x802E89B0 + .sdata start:0x803EF368 end:0x803EF508 + .sdata2 start:0x803F4908 end:0x803F4980 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801B16A8 end:0x801B1AE8 + .data start:0x802E89B0 end:0x802E8AA0 + .sdata start:0x803EF508 end:0x803EF528 + .sdata2 start:0x803F4980 end:0x803F4990 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801B1AE8 end:0x801B2BF0 + .data start:0x802E8AA0 end:0x802E8F68 + .sdata start:0x803EF528 end:0x803EF5C0 + .sdata2 start:0x803F4990 end:0x803F49A0 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801B2BF0 end:0x801B42B0 + .data start:0x802E8F68 end:0x802E9348 + .sdata start:0x803EF5C0 end:0x803EF668 + .sdata2 start:0x803F49A0 end:0x803F49D0 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801B42B0 end:0x801B47F4 + .data start:0x802E9348 end:0x802E9390 + .sdata start:0x803EF668 end:0x803EF670 + .sdata2 start:0x803F49D0 end:0x803F49E0 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801B47F4 end:0x801B4C94 + .data start:0x802E9390 end:0x802E93E0 + .sdata start:0x803EF670 end:0x803EF680 + .sdata2 start:0x803F49E0 end:0x803F49F0 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801B4C94 end:0x801B51A0 + .data start:0x802E93E0 end:0x802E9458 + .sdata start:0x803EF680 end:0x803EF6D8 + .sdata2 start:0x803F49F0 end:0x803F4A18 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801B51A0 end:0x801B64B4 + .data start:0x802E9458 end:0x802E94E8 + .sdata start:0x803EF6D8 end:0x803EF710 + .sdata2 start:0x803F4A18 end:0x803F4A28 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B64B4 end:0x801B77F4 + .data start:0x802E94E8 end:0x802E9568 + .sdata start:0x803EF710 end:0x803EF728 + .sdata2 start:0x803F4A28 end:0x803F4A50 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B77F4 end:0x801B7FF4 + .data start:0x802E9568 end:0x802E9668 + .sdata start:0x803EF728 end:0x803EF740 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B7FF4 end:0x801B8244 + .data start:0x802E9668 end:0x802E96A0 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B8244 end:0x801B84A4 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B84A4 end:0x801B866C + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B866C end:0x801B9328 + .data start:0x802E96A0 end:0x802E9708 + .sdata start:0x803EF740 end:0x803EF758 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B9328 end:0x801B98E0 + .data start:0x802E9708 end:0x802E9790 + .sdata start:0x803EF758 end:0x803EF770 + .sdata2 start:0x803F4A50 end:0x803F4A58 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B98E0 end:0x801BAC4C + .data start:0x802E9790 end:0x802E9810 + .sdata2 start:0x803F4A58 end:0x803F4A80 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801BAC4C end:0x801BB320 + .data start:0x802E9810 end:0x802E9870 + .sdata start:0x803EF770 end:0x803EF788 + .sdata2 start:0x803F4A80 end:0x803F4AA8 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801BB320 end:0x801BF1E8 + .data start:0x802E9870 end:0x802EA018 + .sdata start:0x803EF788 end:0x803EF830 + .sbss start:0x803F0FB8 end:0x803F0FC0 + .sdata2 start:0x803F4AA8 end:0x803F4B60 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801BF1E8 end:0x801BF6AC + .sdata start:0x803EF830 end:0x803EF838 + .sdata2 start:0x803F4B60 end:0x803F4B98 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801BF6AC end:0x801C46E0 + .data start:0x802EA018 end:0x802EA3A0 + .bss start:0x803DB228 end:0x803DB280 + .sdata start:0x803EF838 end:0x803EF8E8 + .sbss start:0x803F0FC0 end:0x803F0FC8 + .sdata2 start:0x803F4B98 end:0x803F4C10 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801C46E0 end:0x801C5540 + .data start:0x802EA3A0 end:0x802EA4C8 + .bss start:0x803DB280 end:0x803DB2D0 + .sdata start:0x803EF8E8 end:0x803EF928 + .sdata2 start:0x803F4C10 end:0x803F4C60 + +plugPikiYamashita/zenController.cpp: + .text start:0x801C5540 end:0x801C56CC + .sbss start:0x803F0FC8 end:0x803F0FD0 + .sdata2 start:0x803F4C60 end:0x803F4C70 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801C56CC end:0x801C62D0 + .data start:0x802EA4C8 end:0x802EA4E0 + .sdata start:0x803EF928 end:0x803EF938 + .sdata2 start:0x803F4C70 end:0x803F4CC0 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801C62D0 end:0x801C643C + .data start:0x802EA4E0 end:0x802EA508 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801C643C end:0x801C7A78 + .data start:0x802EA508 end:0x802EA680 + .sdata start:0x803EF938 end:0x803EF970 + .sdata2 start:0x803F4CC0 end:0x803F4CE0 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C7A78 end:0x801C9E08 + .data start:0x802EA680 end:0x802EA790 + .sdata start:0x803EF970 end:0x803EF9B8 + .sdata2 start:0x803F4CE0 end:0x803F4D28 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C9E08 end:0x801CAF8C + .data start:0x802EA790 end:0x802EA888 + .sdata start:0x803EF9B8 end:0x803EFA18 + .sdata2 start:0x803F4D28 end:0x803F4D50 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801CAF8C end:0x801CEB60 + .data start:0x802EA888 end:0x802EB058 + .sdata start:0x803EFA18 end:0x803EFB50 + .sdata2 start:0x803F4D50 end:0x803F4E08 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801CEB60 end:0x801CF93C + .data start:0x802EB058 end:0x802EB128 + .sdata start:0x803EFB50 end:0x803EFB90 + .sdata2 start:0x803F4E08 end:0x803F4E68 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801CF93C end:0x801D11FC + .data start:0x802EB128 end:0x802EB770 + .sdata start:0x803EFB90 end:0x803EFC68 + .sdata2 start:0x803F4E68 end:0x803F4EC8 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801D11FC end:0x801D2DB4 + .data start:0x802EB770 end:0x802EBE60 + .sdata start:0x803EFC68 end:0x803EFD30 + .sdata2 start:0x803F4EC8 end:0x803F4F28 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801D2DB4 end:0x801D54A0 + .data start:0x802EBE60 end:0x802EC910 + .sdata start:0x803EFD30 end:0x803EFE78 + .sdata2 start:0x803F4F28 end:0x803F4FA8 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801D54A0 end:0x801D6650 + .data start:0x802EC910 end:0x802ECDC0 + .sdata start:0x803EFE78 end:0x803EFF10 + .sdata2 start:0x803F4FA8 end:0x803F5010 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801D6650 end:0x801DA0AC + .data start:0x802ECDC0 end:0x802ED6F8 + .sdata start:0x803EFF10 end:0x803F0050 + .sdata2 start:0x803F5010 end:0x803F5090 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801DA0AC end:0x801DB6FC + .ctors start:0x8022A03C end:0x8022A040 + .data start:0x802ED6F8 end:0x802EDC28 + .sdata start:0x803F0050 end:0x803F00F8 + .sbss start:0x803F0FD0 end:0x803F0FD8 + .sdata2 start:0x803F5090 end:0x803F5108 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801DB6FC end:0x801DBBCC + .data start:0x802EDC28 end:0x802EDCB8 + .sdata start:0x803F00F8 end:0x803F0110 + .sdata2 start:0x803F5108 end:0x803F5110 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801DBBCC end:0x801DFACC + .data start:0x802EDCB8 end:0x802EE890 + .sdata start:0x803F0110 end:0x803F0270 + .sdata2 start:0x803F5110 end:0x803F51A8 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801DFACC end:0x801DFD60 + .data start:0x802EE890 end:0x802EE8C0 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801DFD60 end:0x801E0324 + .data start:0x802EE8C0 end:0x802EE8E8 + .sdata2 start:0x803F51A8 end:0x803F51B8 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801E0324 end:0x801E0D2C + .data start:0x802EE8E8 end:0x802EE928 + .sdata start:0x803F0270 end:0x803F0278 + .sdata2 start:0x803F51B8 end:0x803F51E8 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801E0D2C end:0x801ED8FC + .data start:0x802EE928 end:0x802EEC68 + .sdata start:0x803F0278 end:0x803F0488 + .sbss start:0x803F0FD8 end:0x803F0FE0 + .sdata2 start:0x803F51E8 end:0x803F52D0 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801ED8FC end:0x801EE880 + .data start:0x802EEC68 end:0x802EECD0 + .sdata start:0x803F0488 end:0x803F0490 + .sdata2 start:0x803F52D0 end:0x803F5318 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801EE880 end:0x801EF6B4 + .data start:0x802EECD0 end:0x802EED60 + .sdata start:0x803F0490 end:0x803F0498 + .sdata2 start:0x803F5318 end:0x803F5388 + +plugPikiYamashita/yai.cpp: + .text start:0x801EF6B4 end:0x801EF920 + .data start:0x802EED60 end:0x802EEDB0 + .sdata start:0x803F0498 end:0x803F04A8 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801EF920 end:0x801EFD58 + .data start:0x802EEDB0 end:0x802EF6B8 + .sdata start:0x803F04A8 end:0x803F04C0 + .sdata2 start:0x803F5388 end:0x803F53A8 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801EFD58 end:0x801F0000 + .data start:0x802EF6B8 end:0x802EF6D0 + .sdata2 start:0x803F53A8 end:0x803F53B8 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801F0000 end:0x801F0AD0 + .data start:0x802EF6D0 end:0x802EFA40 + .sdata start:0x803F04C0 end:0x803F0550 + .sdata2 start:0x803F53B8 end:0x803F5418 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801F0AD0 end:0x801F23CC + .data start:0x802EFA40 end:0x802EFF88 + .sdata start:0x803F0550 end:0x803F05F8 + .sdata2 start:0x803F5418 end:0x803F5488 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801F23CC end:0x801F33D4 + .data start:0x802EFF88 end:0x802F00A8 + .sdata start:0x803F05F8 end:0x803F06A8 + .sdata2 start:0x803F5488 end:0x803F54B0 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801F33D4 end:0x801F3800 + .data start:0x802F00A8 end:0x802F00D0 + .sdata start:0x803F06A8 end:0x803F06B0 + .sdata2 start:0x803F54B0 end:0x803F54E0 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801F3800 end:0x801F4304 + .data start:0x802F00D0 end:0x802F0158 + .sdata start:0x803F06B0 end:0x803F06D8 + .sdata2 start:0x803F54E0 end:0x803F5500 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801F4304 end:0x801F4B84 + .data start:0x802F0158 end:0x802F01C8 + .sdata start:0x803F06D8 end:0x803F06E0 + .sdata2 start:0x803F5500 end:0x803F5530 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801F4B84 end:0x801F6220 + .data start:0x802F01C8 end:0x802F03E0 + .sdata start:0x803F06E0 end:0x803F0740 + .sdata2 start:0x803F5530 end:0x803F5550 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801F6220 end:0x801F6C58 + .data start:0x802F03E0 end:0x802F04F8 + .sdata start:0x803F0740 end:0x803F0778 + .sdata2 start:0x803F5550 end:0x803F5578 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801F6C58 end:0x801F778C + .data start:0x802F04F8 end:0x802F0548 + .sdata start:0x803F0778 end:0x803F07A8 + .sdata2 start:0x803F5578 end:0x803F5580 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801F778C end:0x801F7C70 + .sdata2 start:0x803F5580 end:0x803F55A0 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F7C70 end:0x801F7FF8 + .sdata2 start:0x803F55A0 end:0x803F55B0 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F7FF8 end:0x801F86BC + .data start:0x802F0548 end:0x802F0560 + .sdata start:0x803F07A8 end:0x803F07B8 + .sdata2 start:0x803F55B0 end:0x803F55C0 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F86BC end:0x801F88F4 + .sdata start:0x803F07B8 end:0x803F07C0 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F88F4 end:0x801F98A8 + .data start:0x802F0560 end:0x802F0608 + .sdata2 start:0x803F55C0 end:0x803F55F8 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F98A8 end:0x801F9D80 + .data start:0x802F0608 end:0x802F0618 + .sdata2 start:0x803F55F8 end:0x803F5610 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F9D80 end:0x801FB8F4 + .data start:0x802F0618 end:0x802F06A8 + .sdata start:0x803F07C0 end:0x803F07E8 + .sdata2 start:0x803F5610 end:0x803F5640 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801FB8F4 end:0x801FBE3C + .data start:0x802F06A8 end:0x802F0748 + +base/PPCArch.c: + .text start:0x801FBE3C end:0x801FBEA0 + +os/OS.c: + .text start:0x801FBEA0 end:0x801FC72C + .data start:0x802F0748 end:0x802F0908 + .sbss start:0x803F0FE0 end:0x803F1000 + +os/OSAlarm.c: + .text start:0x801FC72C end:0x801FCDD4 + .sbss start:0x803F1000 end:0x803F1008 + +os/OSAlloc.c: + .text start:0x801FCDD4 end:0x801FCF40 + .sdata start:0x803F07E8 end:0x803F07F0 + .sbss start:0x803F1008 end:0x803F1018 + +os/OSArena.c: + .text start:0x801FCF40 end:0x801FCF60 + .sdata start:0x803F07F0 end:0x803F07F8 + .sbss start:0x803F1018 end:0x803F1020 + +os/OSAudioSystem.c: + .text start:0x801FCF60 end:0x801FD1F4 + .data start:0x802F0908 end:0x802F0988 + +os/OSCache.c: + .text start:0x801FD1F4 end:0x801FD6A0 + .data start:0x802F0988 end:0x802F0BB8 + +os/OSContext.c: + .text start:0x801FD6A0 end:0x801FDF08 + .data start:0x802F0BB8 end:0x802F0D90 + +os/OSError.c: + .text start:0x801FDF08 end:0x801FE244 + .data start:0x802F0D90 end:0x802F0FC8 + .bss start:0x803DB2D0 end:0x803DB310 + .sdata start:0x803F07F8 end:0x803F0800 + +os/OSExi.c: + .text start:0x801FE244 end:0x801FF59C + .bss start:0x803DB310 end:0x803DB3C0 + +os/OSFont.c: + .text start:0x801FF59C end:0x801FF5F4 + .sdata start:0x803F0800 end:0x803F0808 + +os/OSInterrupt.c: + .text start:0x801FF5F4 end:0x801FFE3C + .data start:0x802F0FC8 end:0x802F0FF8 + .sbss start:0x803F1020 end:0x803F1028 + +os/OSLink.c: + .text start:0x801FFE3C end:0x801FFE54 + +os/OSMessage.c: + .text start:0x801FFE54 end:0x80200058 + +os/OSMemory.c: + .text start:0x80200058 end:0x802001A4 + .data start:0x802F0FF8 end:0x802F1008 + +os/OSMutex.c: + .text start:0x802001A4 end:0x802006B0 + +os/OSReboot.c: + .text start:0x802006B0 end:0x802008C8 + .bss start:0x803DB3C0 end:0x803DB3E0 + .sbss start:0x803F1028 end:0x803F1038 + +os/OSReset.c: + .text start:0x802008C8 end:0x80200C80 + .sbss start:0x803F1038 end:0x803F1040 + +os/OSResetSW.c: + .text start:0x80200C80 end:0x80201018 + .sbss start:0x803F1040 end:0x803F1060 + +os/OSRtc.c: + .text start:0x80201018 end:0x80201A54 + .bss start:0x803DB3E0 end:0x803DB438 + +os/OSSerial.c: + .text start:0x80201A54 end:0x80203228 + .data start:0x802F1008 end:0x802F10C0 + .bss start:0x803DB438 end:0x803DB638 + .sbss start:0x803F1060 end:0x803F1070 + +os/OSSync.c: + .text start:0x80203228 end:0x802032AC + +os/OSThread.c: + .text start:0x802032AC end:0x80204B60 + .data start:0x802F10C0 end:0x802F18D0 + .bss start:0x803DB638 end:0x803DC020 + .sdata start:0x803F0808 end:0x803F0810 + .sbss start:0x803F1070 end:0x803F1080 + +os/OSTime.c: + .text start:0x80204B60 end:0x80204F84 + .data start:0x802F18D0 end:0x802F1930 + +os/OSUartExi.c: + .text start:0x80204F84 end:0x802051D4 + .sbss start:0x803F1080 end:0x803F1088 + +os/__start.c: + .init start:0x80003100 end:0x80003330 + .text start:0x802051D4 end:0x802051D4 + +os/__ppc_eabi_init.cpp: + .init start:0x80003330 end:0x80003384 + .text start:0x802051D4 end:0x80205268 + +db/db.c: + .text start:0x80205268 end:0x80205354 + .data start:0x802F1930 end:0x802F1948 + .sbss start:0x803F1088 end:0x803F1090 + +mtx/mtx.c: + .text start:0x80205354 end:0x802056BC + .sdata start:0x803F0810 end:0x803F0818 + .sdata2 start:0x803F5640 end:0x803F5658 + +mtx/mtx44.c: + .text start:0x802056BC end:0x80205824 + .sdata2 start:0x803F5658 end:0x803F5670 + +mtx/vec.c: + .text start:0x80205824 end:0x80205860 + .sdata2 start:0x803F5670 end:0x803F5678 + +dvd/dvdlow.c: + .text start:0x80205860 end:0x802066B4 + .bss start:0x803DC020 end:0x803DC100 + .sdata start:0x803F0818 end:0x803F0820 + .sbss start:0x803F1090 end:0x803F10D8 + +dvd/dvdfs.c: + .text start:0x802066B4 end:0x802070AC + .data start:0x802F1948 end:0x802F1D38 + .sdata start:0x803F0820 end:0x803F0828 + .sbss start:0x803F10D8 end:0x803F10F8 + +dvd/dvd.c: + .text start:0x802070AC end:0x8020965C + .data start:0x802F1D38 end:0x802F1E50 + .bss start:0x803DC100 end:0x803DC1D8 + .sdata start:0x803F0828 end:0x803F0830 + .sbss start:0x803F10F8 end:0x803F1140 + +dvd/dvdqueue.c: + .text start:0x8020965C end:0x80209854 + .bss start:0x803DC1D8 end:0x803DC1F8 + +dvd/dvderror.c: + .text start:0x80209854 end:0x802099AC + .data start:0x802F1E50 end:0x802F1E90 + +dvd/fstload.c: + .text start:0x802099AC end:0x80209BEC + .data start:0x802F1E90 end:0x802F1F00 + .bss start:0x803DC1F8 end:0x803DC268 + .sdata start:0x803F0830 end:0x803F0840 + .sbss start:0x803F1140 end:0x803F1150 + +vi/vi.c: + .text start:0x80209BEC end:0x8020B47C + .data start:0x802F1F00 end:0x802F2190 + .bss start:0x803DC268 end:0x803DC3B0 + .sbss start:0x803F1150 end:0x803F11A0 + +pad/Padclamp.c: + .text start:0x8020B47C end:0x8020B6B4 + .sdata start:0x803F0840 end:0x803F0848 + +pad/Pad.c: + .text start:0x8020B6B4 end:0x8020D1FC + .data start:0x802F2190 end:0x802F2228 + .bss start:0x803DC3B0 end:0x803DC400 + .sdata start:0x803F0848 end:0x803F0870 + .sbss start:0x803F11A0 end:0x803F11D0 + +ai/ai.c: + .text start:0x8020D1FC end:0x8020DB04 + .sbss start:0x803F11D0 end:0x803F1210 + +ar/ar.c: + .text start:0x8020DB04 end:0x8020EC78 + .sbss start:0x803F1210 end:0x803F1228 + .sdata2 start:0x803F5678 end:0x803F5688 + +ar/arq.c: + .text start:0x8020EC78 end:0x8020F00C + .sbss start:0x803F1228 end:0x803F1250 + +dsp/dsp.c: + .text start:0x8020F00C end:0x8020F058 + +card/CARDBios.c: + .text start:0x8020F058 end:0x80210484 + .data start:0x802F2228 end:0x802F2238 + .bss start:0x803DC400 end:0x803DC630 + .sbss start:0x803F1250 end:0x803F1258 + +card/CARDRdwr.c: + .text start:0x80210484 end:0x8021071C + +card/CARDBlock.c: + .text start:0x8021071C end:0x80210B20 + +card/CARDDir.c: + .text start:0x80210B20 end:0x80210D84 + +card/CARDCheck.c: + .text start:0x80210D84 end:0x80211D14 + +card/CARDMount.c: + .text start:0x80211D14 end:0x8021253C + .data start:0x802F2238 end:0x802F2278 + +card/CARDFormat.c: + .text start:0x8021253C end:0x80212D20 + +card/CARDOpen.c: + .text start:0x80212D20 end:0x80213188 + +card/CARDCreate.c: + .text start:0x80213188 end:0x80213518 + +card/CARDRead.c: + .text start:0x80213518 end:0x8021398C + +card/CARDWrite.c: + .text start:0x8021398C end:0x80213D04 + +card/CARDDelete.c: + .text start:0x80213D04 end:0x80213F18 + +card/CARDStat.c: + .text start:0x80213F18 end:0x802143F0 + +card/CARDRename.c: + .text start:0x802143F0 end:0x80214628 + +hio/hio.c: + .text start:0x80214628 end:0x80214E00 + .sdata start:0x803F0870 end:0x803F0878 + .sbss start:0x803F1258 end:0x803F1268 + +gx/GXInit.c: + .text start:0x80214E00 end:0x80215EA8 + .bss start:0x803DC630 end:0x803DCBA8 + .sdata start:0x803F0878 end:0x803F0880 + .sbss start:0x803F1268 end:0x803F1278 + .sdata2 start:0x803F5688 end:0x803F56A8 + +gx/GXFifo.c: + .text start:0x80215EA8 end:0x8021671C + .sbss start:0x803F1278 end:0x803F1298 + +gx/GXAttr.c: + .text start:0x8021671C end:0x80217C34 + .data start:0x802F2278 end:0x802F2440 + .sdata start:0x803F0880 end:0x803F0890 + +gx/GXMisc.c: + .text start:0x80217C34 end:0x802180CC + .sbss start:0x803F1298 end:0x803F12B0 + +gx/GXGeometry.c: + .text start:0x802180CC end:0x80218484 + +gx/GXFrameBuf.c: + .text start:0x80218484 end:0x80218F00 + .data start:0x802F2440 end:0x802F24F8 + .sdata2 start:0x803F56A8 end:0x803F56B8 + +gx/GXLight.c: + .text start:0x80218F00 end:0x8021968C + .sdata2 start:0x803F56B8 end:0x803F56D8 + +gx/GXTexture.c: + .text start:0x8021968C end:0x8021A3B0 + .data start:0x802F24F8 end:0x802F2628 + .sdata start:0x803F0890 end:0x803F08D0 + .sdata2 start:0x803F56D8 end:0x803F5700 + +gx/GXBump.c: + .text start:0x8021A3B0 end:0x8021A784 + +gx/GXTev.c: + .text start:0x8021A784 end:0x8021B180 + .data start:0x802F2628 end:0x802F2650 + +gx/GXPixel.c: + .text start:0x8021B180 end:0x8021B8C8 + .data start:0x802F2650 end:0x802F2670 + .sdata2 start:0x803F5700 end:0x803F5730 + +gx/GXStubs.c: + .text start:0x8021B8C8 end:0x8021B8CC + +gx/GXDisplayList.c: + .text start:0x8021B8CC end:0x8021BAD8 + .bss start:0x803DCBA8 end:0x803DD0C0 + .sbss start:0x803F12B0 end:0x803F12B8 + +gx/GXTransform.c: + .text start:0x8021BAD8 end:0x8021C054 + .sdata2 start:0x803F5730 end:0x803F5740 + +gx/GXPerf.c: + .text start:0x8021C054 end:0x8021C8FC + .data start:0x802F2670 end:0x802F2760 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x8021C8FC end:0x8021C9F0 + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x8021C9F0 end:0x8021CA50 + .dtors start:0x8022A068 end:0x8022A06C + .sbss start:0x803F12B8 end:0x803F12C0 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x8021CA50 end:0x8021CA80 + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x80005520 end:0x80005560 + extabindex start:0x80005560 end:0x80005590 + .text start:0x8021CA80 end:0x8021CDBC + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x8021CDBC end:0x8021CDE4 + .rodata start:0x8022A848 end:0x8022A858 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x8021CDE4 end:0x8021CE54 + .bss start:0x803DD0C0 end:0x803DD0D0 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x8021CE54 end:0x8021D54C + .rodata start:0x8022A858 end:0x8022A870 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x8021D54C end:0x8021D5C8 + .ctors start:0x8022A000 end:0x8022A004 + .dtors start:0x8022A060 end:0x8022A068 + .sdata start:0x803F08D0 end:0x803F08D8 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802F2760 end:0x802F2838 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x8021D5C8 end:0x8021D6D4 + .bss start:0x803DD0D0 end:0x803DD2D0 + .sbss start:0x803F12C0 end:0x803F12D8 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803F12D8 end:0x803F12E0 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x8021D6D4 end:0x8021DD2C + .rodata start:0x8022A870 end:0x8022A8F8 + .sdata start:0x803F08D8 end:0x803F08E0 + .sdata2 start:0x803F5740 end:0x803F5770 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x8021DD2C end:0x8021DD3C + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x8021DD3C end:0x8021DE3C + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x8021DE3C end:0x8021DE40 + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x8021DE40 end:0x8021DE90 + .rodata start:0x8022A8F8 end:0x8022ABF8 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x8022ABF8 end:0x8022AC00 + .data start:0x802F2838 end:0x802F2868 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x8021DE90 end:0x8021E16C + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x8021E16C end:0x8021E1F8 + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003384 end:0x800034C8 + .text start:0x8021E1F8 end:0x8021E344 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x8021E344 end:0x8021E620 + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x8021E620 end:0x8021E624 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x8021E624 end:0x802200F4 + .rodata start:0x8022AC00 end:0x8022AC10 + .data start:0x802F2868 end:0x802F2A88 + .sdata start:0x803F08E0 end:0x803F08E8 + .sdata2 start:0x803F5770 end:0x803F5778 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x802200F4 end:0x80220120 + .sdata start:0x803F08E8 end:0x803F08F0 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x80220120 end:0x80221174 + .rodata start:0x8022AC10 end:0x8022AC38 + .data start:0x802F2A88 end:0x802F2B58 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x80221174 end:0x802214B8 + .sdata start:0x803F08F0 end:0x803F08F8 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x802214B8 end:0x80221C28 + .rodata start:0x8022AC38 end:0x8022AC68 + .sdata2 start:0x803F5778 end:0x803F5788 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x80221C28 end:0x8022259C + .data start:0x802F2B58 end:0x802F2BE0 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802F2BE0 end:0x802F2C18 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8022259C end:0x8022271C + .sbss start:0x803F12E0 end:0x803F12E8 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8022271C end:0x8022279C + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8022279C end:0x802227A4 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x802227A4 end:0x80222A3C + .sdata2 start:0x803F5788 end:0x803F57E0 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x80222A3C end:0x80223274 + .rodata start:0x8022AC68 end:0x8022AC98 + .sdata2 start:0x803F57E0 end:0x803F58F0 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x80223274 end:0x802232F4 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x802232F4 end:0x80223534 + .rodata start:0x8022AC98 end:0x8022AD30 + .sdata2 start:0x803F58F0 end:0x803F5918 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x80223534 end:0x80223560 + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x80223560 end:0x802235FC + .sdata2 start:0x803F5918 end:0x803F5920 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x802235FC end:0x80223774 + .sdata2 start:0x803F5920 end:0x803F5948 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x80223774 end:0x80223794 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x80223794 end:0x802237B4 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x802237B4 end:0x802237BC + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x802237BC end:0x80223B5C + .rodata start:0x8022AD30 end:0x8022ADE8 + .sdata2 start:0x803F5948 end:0x803F5968 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x80223B5C end:0x80223F48 + .ctors start:0x8022A040 end:0x8022A044 + .rodata start:0x8022ADE8 end:0x8022ADF8 + .data start:0x802F2C18 end:0x802F2C28 + .sdata2 start:0x803F5968 end:0x803F5980 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x8022ADF8 end:0x8022AE40 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x80223F48 end:0x80223FD8 + .sdata2 start:0x803F5980 end:0x803F5998 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x80223FD8 end:0x80224140 + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x80224140 end:0x8022439C + .bss start:0x803DD2D0 end:0x803DD2F8 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x8022439C end:0x80224530 + .rodata start:0x8022AE40 end:0x8022AE60 + .bss start:0x803DD2F8 end:0x803DD300 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x80224530 end:0x80224558 + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x80224558 end:0x80224DA0 + .bss start:0x803DD300 end:0x803DECB0 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x80224DA0 end:0x80224F68 + .bss start:0x803DECB0 end:0x803DECC8 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x80224F68 end:0x80224F6C + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x80224F6C end:0x80225004 + .data start:0x802F2C28 end:0x802F2CB0 + .bss start:0x803DECC8 end:0x803DECD0 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x80225004 end:0x802262A8 + .data start:0x802F2CB0 end:0x802F2CE8 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x802262A8 end:0x80226724 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x80226724 end:0x8022673C + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x8022673C end:0x80226814 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x80226814 end:0x8022684C + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x800034C8 end:0x8000351C + .text start:0x8022684C end:0x80226910 + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x80226910 end:0x80227EEC + .rodata start:0x8022AE60 end:0x8022AEAC + .data start:0x802F2CE8 end:0x802F2D18 + .bss start:0x803DECD0 end:0x803DF250 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x8000351C end:0x80005450 + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x80005450 end:0x80005470 + .text start:0x80227EEC end:0x8022812C + .data start:0x802F2D18 end:0x802F2D58 + .bss start:0x803DF250 end:0x803DF258 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x8022812C end:0x802284A4 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x802284A4 end:0x802284EC + .bss start:0x803DF258 end:0x803DF260 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x802284EC end:0x80228844 + .data start:0x802F2D58 end:0x802F2D78 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x80228844 end:0x80228878 + +amcExi2/AmcExi.c: + .text start:0x80228878 end:0x80228EB8 + .bss start:0x803DF260 end:0x803DF278 + .sdata start:0x803F08F8 end:0x803F0900 + +amcExi2/AmcExi2Comm.c: + .text start:0x80228EB8 end:0x8022955C + .data start:0x802F2D78 end:0x802F2D91 + .sdata start:0x803F0900 end:0x803F0908 + .sbss start:0x803F12E8 end:0x803F12F8 + +amcnotstub/amcnotstub.c: + .text start:0x8022955C end:0x80229564 + +OdemuExi2/DebuggerDriver.c: + .text start:0x80229564 end:0x80229FE4 + .sdata start:0x803F0908 end:0x803F0909 + .sbss start:0x803F12F8 end:0x803F130D + +odenotstub/odenotstub.c: + .text start:0x80229FE4 end:0x80229FEC diff --git a/config/DPIJ01/symbols.txt b/config/DPIJ01/symbols.txt new file mode 100644 index 00000000..84f81791 --- /dev/null +++ b/config/DPIJ01/symbols.txt @@ -0,0 +1,30105 @@ +__check_pad3 = .init:0x80003100; // type:function size:0x40 scope:local align:4 +__start = .init:0x80003140; // type:function size:0x114 scope:weak align:4 +__init_registers = .init:0x80003254; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x80003270; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x80003330; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x80003350; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003384; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x800033B4; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003478; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x800034C8; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x800034EC; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x8000351C; // type:label scope:global +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x80005450; // type:label scope:global +__TRK_reset = .init:0x80005450; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x80005470; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x800054F4; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x80005520; // type:object size:0x8 scope:local align:4 +@174 = extab:0x80005528; // type:object size:0x18 scope:local align:4 +@182 = extab:0x80005540; // type:object size:0x8 scope:local align:4 +@201 = extab:0x80005548; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005560; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000556C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005578; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005584; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005590; // type:object size:0x20 scope:global +main = .text:0x800055C0; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005660; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005680; // type:function size:0x4 scope:global align:32 +Console_printf = .text:0x800056A0; // type:function size:0x50 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005700; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x80005780; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x800057E0; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005840; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x800058C0; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x80005980; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x80005A60; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005B40; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005C40; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005CE0; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005E80; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005F40; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005F60; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005FA0; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80005FE0; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80006020; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006120; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x80006160; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x80006240; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x80006260; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x800062C0; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x80006360; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x80006380; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x800063A0; // type:function size:0x44 scope:local align:32 +StopAudioThread = .text:0x80006400; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x80006460; // type:function size:0x80 scope:local align:32 +__DspSync__FsP9OSContext = .text:0x800064E0; // type:function size:0x68 scope:local align:32 +__DspReg__Fv = .text:0x80006560; // type:function size:0x44 scope:local align:32 +audioproc__FPv = .text:0x800065C0; // type:function size:0x130 scope:local align:32 +OSInitFastCast = .text:0x80006700; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x80006740; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x80006880; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006C20; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006C40; // type:function size:0x250 scope:global align:32 +UpdateDSP__Fv = .text:0x80006EA0; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006F00; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006F40; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006F80; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x80007180; // type:function size:0x24 scope:global align:32 +ResetPlayerCallback = .text:0x800071C0; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80007200; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x80007260; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x800072C0; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x80007380; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x80007400; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x80007480; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x800074E0; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x80007580; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x800075E0; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x80007660; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x800076E0; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x80007720; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x800077C0; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x80007820; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x80007880; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x800078C0; // type:function size:0xC0 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007980; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x80007A20; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x80007A60; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x80007AA0; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007AE0; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007B40; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007C00; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007C20; // type:function size:0x21C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007E40; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007EE0; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007F60; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80007FE0; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80008020; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80008060; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x80008160; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x800081C0; // type:function size:0x18 scope:global align:32 +Jac_SendMessageBlock__FP16Jac_MessageQueuePv = .text:0x800081E0; // type:function size:0x44 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008240; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x800082C0; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x80008320; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x80008380; // type:function size:0x3C scope:global align:32 +__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x800083C0; // type:function size:0x280 scope:global align:32 +DSPInit = .text:0x80008640; // type:function size:0x4 scope:global align:32 +DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x80008660; // type:function size:0x98 scope:global align:32 +DspBoot__Fv = .text:0x80008700; // type:function size:0x74 scope:global align:32 +DSPSendCommands__FPUlUl = .text:0x80008780; // type:function size:0xA8 scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008840; // type:function size:0x48 scope:global align:32 +DSPWaitFinish__Fv = .text:0x800088A0; // type:function size:0x58 scope:global align:32 +DsetupTable__FUlUlUlUlUl = .text:0x80008900; // type:function size:0x48 scope:global align:32 +DsetMixerLevel__Ff = .text:0x80008960; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800089A0; // type:function size:0x48 scope:global align:32 +DwaitFrame__Fv = .text:0x80008A00; // type:function size:0x34 scope:global align:32 +DiplSec__FUl = .text:0x80008A40; // type:function size:0x3C scope:global align:32 +DagbSec__FUl = .text:0x80008A80; // type:function size:0x3C scope:global align:32 +WriteTask__FUcUlPvPFPv_v = .text:0x80008AC0; // type:function size:0x70 scope:local align:32 +DoTask__Fv = .text:0x80008B40; // type:function size:0xC0 scope:local align:32 +DspExtraTaskCheck__Fv = .text:0x80008C00; // type:function size:0x24 scope:global align:32 +Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x80008C40; // type:function size:0x4C scope:global align:32 +exnor_1st__FUlUl = .text:0x80008CA0; // type:function size:0x38 scope:local align:32 +exnor__FUlUl = .text:0x80008CE0; // type:function size:0x38 scope:local align:32 +bitrev__FUl = .text:0x80008D20; // type:function size:0x7C scope:local align:32 +ReadArrayUnlock__FlUlPvli = .text:0x80008DA0; // type:function size:0x17C scope:local align:32 +GetInitVal__Fv = .text:0x80008F20; // type:function size:0x44 scope:local align:32 +DummyLen__Fv = .text:0x80008F80; // type:function size:0x8C scope:local align:32 +__CARDUnlock = .text:0x80009020; // type:function size:0x2B0 scope:global align:32 +DoneCallback__FPv = .text:0x800092E0; // type:function size:0x1E0 scope:local align:32 +Channel_SetMixerLevel__Ff = .text:0x800094C0; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x80009500; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80009520; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80009540; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x800095C0; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x80009600; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x80009660; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x80009680; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80009720; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x80009780; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x80009880; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x80009980; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x80009A00; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x80009B20; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009C60; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009CA0; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x80009D20; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x80009E00; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x80009EE0; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x80009F20; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x8000A280; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x8000A300; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8000A3A0; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A740; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A7C0; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A800; // type:function size:0x144 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A960; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A9E0; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000AAA0; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000AB20; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000AC20; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000AD00; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000AD60; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000ADA0; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000AE00; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000AF20; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000B000; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000B120; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000B200; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000B280; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000B340; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000B400; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000B600; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000B620; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000B640; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000B680; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000B6A0; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000B700; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B760; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B7A0; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B7C0; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B880; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B8C0; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B8E0; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B940; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B9C0; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B9E0; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000BA20; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000BA60; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000BAA0; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000BB00; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000BB80; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000BBC0; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000BC00; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000BC40; // type:function size:0x50 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000BCA0; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000BD00; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000BD60; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BEA0; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000BEE0; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000C160; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000C1E0; // type:function size:0x24 scope:global align:32 +Bank_Init__Fv = .text:0x8000C220; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000C260; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000C2A0; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000C2E0; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000C580; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000C620; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000C660; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C6E0; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C780; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C7C0; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C800; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C880; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C8C0; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C900; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C9A0; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CB20; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CBC0; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000CD20; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000CD80; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000CEA0; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000CF20; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000CF40; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000CF60; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000CFC0; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000D020; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000D060; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000D0A0; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000D0E0; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000D140; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000D1E0; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000D260; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000D380; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000D3E0; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D7E0; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D860; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D8A0; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D8E0; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D940; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D9C0; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000DA40; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000DA80; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000DAC0; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000DB40; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000DC40; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000DC80; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000DCC0; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000DCE0; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000DD60; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000DDA0; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000DE40; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000DE80; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000DEE0; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000DFA0; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000E080; // type:function size:0x198 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000E220; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000E280; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000E2C0; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000E3A0; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000E3E0; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000E400; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000E480; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000E4C0; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000E520; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000E580; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000E5C0; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000E5E0; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000E620; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E760; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E7E0; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E860; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E8A0; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E980; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000EA60; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000EAA0; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000EBA0; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000ECA0; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000ED00; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000ED40; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000EE40; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000EE80; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000EEE0; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000F0A0; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000F260; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000F2E0; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000F3C0; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000F4A0; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000F500; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000F560; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000F5C0; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000F640; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F6A0; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F720; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F780; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F7E0; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F8C0; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F960; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F980; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000FB40; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000FC00; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000FCA0; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x80010140; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x800102C0; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x80010320; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x80010380; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x800103E0; // type:function size:0x4C scope:global align:32 +Jam_CheckPortIndirect = .text:0x80010440; // type:function size:0xA4 scope:global align:32 +Jam_WritePortAppDirect = .text:0x80010500; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x80010580; // type:function size:0x30 scope:global align:32 +Jam_InitRegistTrack = .text:0x800105C0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x80010600; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x800106C0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010760; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800107C0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800107E0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010820; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010880; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800108E0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x800109A0; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800109E0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010A20; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010A60; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x80010AA0; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x80010AE0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010B20; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010B60; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010B80; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x80010BE0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010F00; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010F20; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x800113E0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x80011500; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x800115E0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011720; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011820; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011860; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x80011900; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011940; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x800119A0; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800119E0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x80011AE0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011B20; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011B80; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x80011BA0; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x80011BC0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011C20; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x80011CA0; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011D00; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011D40; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x80011DA0; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011E00; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011E40; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011E80; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x80011EC0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011F20; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011F60; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011F80; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x80011FC0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80012000; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80012080; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x800120E0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80012160; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x800121A0; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x800121E0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80012220; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80012240; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x800122A0; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x800122E0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x80012300; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80012320; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80012360; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x800123A0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x800123E0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80012420; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80012480; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x800124C0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x80012500; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80012540; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x800125A0; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x80012600; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x800126E0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x80012700; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800127C0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012860; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800128C0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012920; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x80012A00; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012A40; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x80012AE0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012B20; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x80012BA0; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x80012DC0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012F00; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x80012FC0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013880; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013940; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x80013CE0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013D80; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x80013DC0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013E20; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x80013EA0; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013F40; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x80013FE0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80014060; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x800140C0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80014120; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80014140; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x800144C0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80014560; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x800145C0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x80014600; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014780; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800147C0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014880; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800149E0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x80014AA0; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x80014BC0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x80014CC0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x80014DA0; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014E40; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014E80; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x80014EC0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014F40; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014F60; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x80014FC0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80015060; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80015120; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80015240; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80015280; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x800152C0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80015320; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x800153A0; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x800154E0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x800155C0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80015640; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x800156C0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800157E0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015940; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x800159A0; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x80015A00; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015A40; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015A60; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80015BC0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x80015CC0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015D40; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015D80; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x80015DC0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015E40; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80015EC0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015F00; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x80015FA0; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80016080; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x800160A0; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x800160E0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x800161A0; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80016380; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80016420; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x800166A0; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800168C0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x80016A00; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016A20; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016A40; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016A60; // type:function size:0x44 scope:global align:32 +Jac_SetProcessStatus = .text:0x80016AC0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016B60; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x80016BE0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016C00; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016C20; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x80016CA0; // type:function size:0x390 scope:global align:32 +Jac_StopSystemSe = .text:0x80017040; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x800170C0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80017120; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80017140; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x80017200; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80017280; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x800172A0; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x800172C0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80017420; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80017480; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x800174C0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x800174E0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80017520; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80017560; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x800175E0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80017640; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80017660; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x800176E0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017740; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x800177A0; // type:function size:0xEC scope:global align:32 +Jac_UpdateCamera = .text:0x800178A0; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x800179E0; // type:function size:0x110 scope:global align:32 +Jac_UpdateEventPosition = .text:0x80017B00; // type:function size:0x54 scope:global align:32 +Jac_PlayEventAction = .text:0x80017B60; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017E40; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x80017F00; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017F80; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x80017FE0; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80018080; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x800180C0; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x80018100; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80018160; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x80018240; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x800183E0; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x80018640; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018680; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x800186C0; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018780; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x80018800; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x800189C0; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x80018A00; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018B80; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018BC0; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x80018C20; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018CC0; // type:function size:0x244 scope:global align:32 +Jac_ChangeBgmMode = .text:0x80018F20; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018F80; // type:function size:0xA8 scope:global align:32 +Jac_BgmFrameWork = .text:0x80019040; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80019180; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x80019240; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x800193C0; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80019460; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x80019540; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x80019640; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x80019720; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019760; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x800197A0; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x800197E0; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019880; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x800198A0; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x800198C0; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019D20; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019E20; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019E40; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x80019EC0; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019F40; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019F80; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x80019FC0; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x8001A060; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x8001A120; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x8001A140; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x8001A160; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x8001A1C0; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x8001A220; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x8001A2A0; // type:function size:0x9C scope:global align:32 +DoSequence__FUlUl = .text:0x8001A340; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x8001A4C0; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x8001A520; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x8001A580; // type:function size:0x484 scope:global align:32 +Jac_DemoSound = .text:0x8001AA20; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001AA60; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001AAC0; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001AB40; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001ABA0; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001AC80; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001ADA0; // type:function size:0xA8 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001AE60; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001AE80; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001AEA0; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001B060; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001B120; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001B200; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001B260; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001B300; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001B380; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001B3A0; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001B3C0; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001B4A0; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001B4E0; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B580; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B5A0; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B5C0; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B660; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B6A0; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B6E0; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B760; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B780; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B7C0; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B900; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B940; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B980; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue = .text:0x8001B9E0; // type:function size:0x24 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001BA20; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001BA80; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001BB00; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001BB40; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001BB80; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001BBC0; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001BC00; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001BCE0; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001BD00; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001BD20; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001BD60; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001BDC0; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001BF20; // type:function size:0x1A8 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001C0E0; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001C100; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001C140; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001C460; // type:function size:0x860 scope:local align:32 +RegisterStreamCallback = .text:0x8001CCC0; // type:function size:0x8 scope:global align:32 +Jac_Decode_ADPCM = .text:0x8001CCE0; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001CE80; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CF60; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001CFA0; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001D140; // type:function size:0x54 scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001D1A0; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001D2E0; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001D320; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001D380; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001D3E0; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001D440; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D4A0; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D560; // type:function size:0x80 scope:local align:32 +StreamChgVolume = .text:0x8001D5E0; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D620; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D660; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D800; // type:function size:0x3C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D840; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D880; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001D960; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001DA00; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001DA20; // type:function size:0x20 scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001DA40; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001DB00; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001DB60; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001DC80; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001DD00; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DEA0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001DF00; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001E2C0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001E320; // type:function size:0x394 scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E6C0; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E740; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001E980; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001E9C0; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001EA20; // type:function size:0xFC scope:local align:32 +init_global_constants = .text:0x8001EB1C; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001EE7C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001EF98; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001F264; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001F2C8; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F58C; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F6C8; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F708; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F778; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001FB1C; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001FCB4; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001FCFC; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x800200CC; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x80020548; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x8002068C; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020760; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x8002083C; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x800208C8; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020964; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x80020B10; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x80020CAC; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80020F58; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x80021958; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021D74; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x800225E0; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022AA4; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x80022C08; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022D60; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x80023190; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x800235CC; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x800235EC; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x80023610; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x80023684; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x80023AE8; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x80023FF8; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x8002401C; // type:function size:0x5A8 scope:global align:4 +_Error__FPce = .text:0x800245C4; // type:function size:0x9C scope:local align:4 +reset__8AyuStackFi = .text:0x80024660; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x8002471C; // type:function size:0x14C scope:global align:4 +pop__8AyuStackFv = .text:0x80024868; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x800248BC; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x80024930; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x80024998; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x80024B30; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x80024C50; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024D64; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024D7C; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x80024DB0; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024E88; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024E90; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024ED8; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x80024F7C; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80024F80; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80024F84; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x80024F8C; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80024F94; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x80024FC4; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x80024FC8; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x80024FF4; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x80025020; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x8002504C; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x80025050; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x80025058; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x8002505C; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x80025064; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x8002509C; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x800250D4; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x8002510C; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80025144; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x800251C0; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x800251F8; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x8002529C; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x800252D4; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x8002530C; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x80025344; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x8002537C; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x800253B8; // type:function size:0xD4 scope:global align:4 +print__6StreamFPce = .text:0x8002548C; // type:function size:0xC4 scope:global align:4 +read__6StreamFPvi = .text:0x80025550; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x80025554; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x80025558; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x80025560; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x80025568; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x8002556C; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x80025570; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x80025578; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x80025610; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x800256D0; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x80025758; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x8002579C; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x800258A0; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x800258D0; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x800258D8; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x80025904; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x8002590C; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x80025968; // type:function size:0x24 scope:global align:4 +_Error__FPce = .text:0x8002598C; // type:function size:0x9C scope:local align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x80025A28; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x80025B48; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x80025FE0; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x800261D8; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x80026678; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x80026880; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x80026C30; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x80026F28; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x800274CC; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x800276B4; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x800276CC; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x800277EC; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x80027840; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x80027844; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x8002784C; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027A84; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027BA4; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027DCC; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x8002809C; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x800280C8; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x800280D4; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x8002816C; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80028248; // type:function size:0xE0 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x80028328; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x80028380; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x80028394; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x800283C8; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x800283F8; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x800285C0; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x800285CC; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x8002861C; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x80028628; // type:function size:0x70 scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x80028698; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x800286B0; // type:function size:0x1A4 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x80028854; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x800288F4; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x80028990; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x80028AC0; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x80028B18; // type:function size:0x3B0 scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028EC8; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x80029070; // type:function size:0x200 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x80029270; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x8002931C; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x800295D8; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x800297D4; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x80029944; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x80029A58; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x80029A5C; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x80029AD8; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x80029ADC; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x80029AE0; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x80029AE4; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x80029AEC; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x80029AF4; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x80029AFC; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x80029B00; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x80029B7C; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029BAC; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x80029BB0; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x80029DB0; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029DC4; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029EA8; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x8002A030; // type:function size:0xD0 scope:global align:4 +_Error__FPce = .text:0x8002A100; // type:function size:0x9C scope:local align:4 +read__8DispListFR18RandomAccessStream = .text:0x8002A19C; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x8002A29C; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x8002A3D8; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x8002A46C; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x8002A57C; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x8002A590; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x8002A634; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A910; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A95C; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002AB20; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002AB9C; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002AED0; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002B134; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002BE80; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002BF20; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002C114; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002C150; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002C4C0; // type:function size:0x188 scope:global align:4 +detach__8AnimDataFv = .text:0x8002C648; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C684; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C694; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C8F0; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002CCC4; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002CCF8; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D784; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D8D8; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002D9E4; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002DE00; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002EAE4; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002EC38; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002EE58; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002EF24; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002F288; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002F2D8; // type:function size:0x128 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002F400; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002F5E8; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F8F4; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002FA60; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002FB24; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002FB9C; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002FEA8; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002FEAC; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002FEB8; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002FF64; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x800306DC; // type:function size:0x1D4 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x800308B0; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x80030CBC; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030D18; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030DE4; // type:function size:0x25BC scope:global align:4 +__ct__9CollGroupFv = .text:0x800333A0; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x800333B8; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x8003349C; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x800334F0; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x80033504; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033830; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033928; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x80033AD8; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x80033B38; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x80033B84; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x80033B88; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x80033DD0; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x80034028; // type:function size:0xBA0 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x80034BC8; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034D18; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x80034E00; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x80034FE0; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x800350BC; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80035280; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x800352B0; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x800352C0; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x800352F8; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x8003532C; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x800353C0; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x80035434; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x800355DC; // type:function size:0x350 scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x8003592C; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x80035ABC; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035BFC; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035CF4; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x80035D54; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035D84; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035D88; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035D8C; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x80035D90; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035D94; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035D98; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035D9C; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x80035DA0; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035DA4; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035DD4; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x80035E5C; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x80035E70; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80036290; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x8003645C; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x800367AC; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x80036930; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x80036AB4; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x80037454; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x80037470; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x800374D0; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x8003789C; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x800378A0; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x800378A4; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x80037944; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x800379F0; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x80037A84; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037B48; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x80037BF4; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x800380D8; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x8003817C; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80038268; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x8003833C; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x800383BC; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x8003843C; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x800384BC; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x80038620; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x800388C0; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x800388EC; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x80038960; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x800389B0; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x80038B6C; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x80038C30; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80039274; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x8003935C; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x800395BC; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x80039764; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x800397D4; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x80039800; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x800398C4; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003B188; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B9B0; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003D74C; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003DBB4; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003E0F4; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003E140; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003E200; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003E26C; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003E40C; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E42C; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003E5C8; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E774; // type:function size:0x318 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003EA8C; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003EB50; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003EE50; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003EF50; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003EFD4; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003F100; // type:function size:0x4 scope:local align:4 +_Error__FPce = .text:0x8003F104; // type:function size:0x9C scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003F1A0; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003F1D0; // type:function size:0x144 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003F314; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003F320; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003F388; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003F38C; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003F3A0; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003F3D4; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003F3E4; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003F474; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003F568; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003F570; // type:function size:0x1C0 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003F730; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F7D0; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F874; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F930; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F9E8; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003FA10; // type:function size:0xB4 scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003FAC4; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003FB4C; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003FB94; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003FC68; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003FC78; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003FD80; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003FDE8; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003FE04; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003FE10; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003FE48; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003FF24; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x80040170; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x800406D0; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x800406D4; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x800406DC; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x80040738; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x80040780; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x800407C4; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x80040814; // type:function size:0xEC scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x80040900; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x80040904; // type:function size:0x4 scope:weak align:4 +forceHardReset__9StdSystemFv = .text:0x80040908; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x8004090C; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x80040910; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x80040914; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x80040918; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x8004091C; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x8004094C; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x80040950; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x80040980; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x80040984; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x800409BC; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x80040A2C; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x80040A4C; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x80040AE8; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x80040B10; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x80040B7C; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x80040BD8; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040C04; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x80040C80; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040CE4; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x80040D20; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040D24; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x80040D28; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x80040D30; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x80040D40; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x80040D50; // type:function size:0x148 scope:global align:4 +_stop__6TimersFPc = .text:0x80040E98; // type:function size:0x78 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x80040F10; // type:function size:0x720 scope:global align:4 +reset__10ControllerFUl = .text:0x80041630; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x80041654; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x800416F0; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x8004171C; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x80041754; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x8004178C; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x800417C4; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x800417FC; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x800418AC; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x80041998; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x800419D8; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80041B4C; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80041B9C; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x80041D30; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x80042054; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x80042108; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x80042204; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x80042270; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x8004322C; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x80043698; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x800438D4; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x80043A24; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x80043C8C; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x80043CC8; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x80043E44; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x80043F94; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x80044064; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x8004456C; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x800445A4; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x8004467C; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80044710; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x800447A4; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x80044824; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x80044898; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x800448F4; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x8004498C; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80044A38; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x80044AB4; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x80044AC4; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x80044ACC; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x80044AD4; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x80044ADC; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80044B14; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80044B44; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80044B68; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x80044C10; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x80044C34; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x80044C60; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x80044C74; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80044C88; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x80044D1C; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x80044DD8; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x80044DDC; // type:function size:0x38 scope:global align:4 +_Error__FPce = .text:0x80044E14; // type:function size:0x9C scope:local align:4 +__ct__7TextureFv = .text:0x80044EB0; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x80044F20; // type:function size:0xD4 scope:global align:4 +getRed__7TextureFii = .text:0x80044FF4; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x800450C8; // type:function size:0x188 scope:global align:4 +detach__7TextureFv = .text:0x80045250; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x8004525C; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x80045374; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x80045458; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x80045568; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x800455E8; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x800455EC; // type:function size:0x9C scope:local align:4 +_Print__FPce = .text:0x80045688; // type:function size:0xF0 scope:local align:4 +openFile__6SystemFPcbb = .text:0x80045778; // type:function size:0x28C scope:global align:4 +initSoftReset__6SystemFv = .text:0x80045A04; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80045A4C; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80045B40; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80045B64; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x80045B88; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x80045BE8; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80045C40; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x80045D7C; // type:function size:0x3AC scope:global align:4 +read__9DVDStreamFPvi = .text:0x80046128; // type:function size:0xAC scope:weak align:4 +getPending__9DVDStreamFv = .text:0x800461D4; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x800461DC; // type:function size:0x648 scope:local align:4 +findAddress__6SystemFUl = .text:0x80046824; // type:function size:0x40 scope:global align:4 +hardReset__6SystemFv = .text:0x80046864; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x80046978; // type:function size:0xFC scope:global align:4 +initBigFont__Fv = .text:0x80046A74; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x80046BE4; // type:function size:0x180 scope:global align:4 +Initialise__6SystemFv = .text:0x80046D64; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x800471FC; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x80047200; // type:function size:0x4C scope:global align:4 +halt__6SystemFPciPc = .text:0x8004724C; // type:function size:0xB8 scope:global align:4 +loadFunc__FPv = .text:0x80047304; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x8004764C; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80047650; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80047654; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x800476E8; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x8004771C; // type:function size:0x8C scope:global align:4 +doneDMA__FUl = .text:0x800477A8; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x800477F4; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x80047804; // type:function size:0x144 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x80047948; // type:function size:0xEC scope:global align:4 +freeBuffer__FUl = .text:0x80047A34; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x80047AF4; // type:function size:0x110 scope:global align:4 +dvdFunc__FPv = .text:0x80047C04; // type:function size:0x240 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x80047E44; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80047E78; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x80047ED0; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x80047F30; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x8004804C; // type:function size:0x3C scope:weak align:4 +forceHardReset__6SystemFv = .text:0x80048088; // type:function size:0xC scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x80048094; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x800480C4; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80048168; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80048170; // type:function size:0x7C scope:weak align:4 +_Error__FPce = .text:0x800481EC; // type:function size:0x9C scope:local align:4 +alloc__6SystemFUl = .text:0x80048288; // type:function size:0x1CC scope:global align:4 +__nwa__FUli = .text:0x80048454; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x80048498; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x8004849C; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x800484A0; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80048564; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80048584; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x800485AC; // type:function size:0x1F8 scope:global align:4 +_Error__FPce = .text:0x800487A4; // type:function size:0x9C scope:local align:4 +__ct__11DGXGraphicsFb = .text:0x80048840; // type:function size:0x2C0 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x80048B00; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x80048B94; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x80048C28; // type:function size:0x68 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x80048C90; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x80048CD0; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x80048D10; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x80048D18; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x80048D20; // type:function size:0x78 scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x80048D98; // type:function size:0x4E4 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x8004927C; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x80049428; // type:function size:0x50 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x80049478; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x800494A8; // type:function size:0xCC scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80049574; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x800495E4; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x80049668; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80049670; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x8004969C; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x800496EC; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x80049748; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x800497C0; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80049860; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x80049A30; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x80049D74; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x80049E0C; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x80049FA8; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x80049FE4; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x8004A07C; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x8004A0AC; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x8004A0B0; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x8004A180; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x8004A2E8; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x8004A33C; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x8004A434; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x8004A57C; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x8004ADE0; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x8004AFB4; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x8004B214; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x8004B458; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x8004B508; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x8004B5A4; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x8004B5B0; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x8004B610; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x8004B61C; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x8004B650; // type:function size:0x80 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x8004B6D0; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x8004B710; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004B874; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004BCAC; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004BD64; // type:function size:0x354 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004C0B8; // type:function size:0x29C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004C354; // type:function size:0x140 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004C494; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004C588; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004C7AC; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004CB84; // type:function size:0x238 scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004CDBC; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004CF84; // type:function size:0x488 scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004D40C; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004D5E8; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004D794; // type:function size:0x404 scope:global align:4 +showError__11DGXGraphicsFPcPci = .text:0x8004DB98; // type:function size:0x184 scope:global align:4 +directDrawChar__11DGXGraphicsFR8RectAreaR8RectArea = .text:0x8004DD1C; // type:function size:0xF8 scope:global align:4 +directPrint__11DGXGraphicsFiiPce = .text:0x8004DE14; // type:function size:0x1D8 scope:global align:4 +directErase__11DGXGraphicsFR8RectAreab = .text:0x8004DFEC; // type:function size:0x108 scope:global align:4 +__ct__5ShapeFv = .text:0x8004E0F4; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004E130; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004E26C; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004E270; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004E274; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004E278; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004E27C; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004E2A8; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004E2DC; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004E3E0; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004E4DC; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004EAA8; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004F054; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004F104; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004F114; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004F148; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004F17C; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004F198; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004F1D8; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004F20C; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004F240; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004F274; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004F2B0; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004F50C; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004F5A0; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004F8AC; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004F8B0; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004FA6C; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004FABC; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8005084C; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x800508B8; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x80050C04; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x80050F9C; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x80051154; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x80051234; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x80051238; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x80051420; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x8005155C; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x80051564; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x8005161C; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x800517D0; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x80051850; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x80051938; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x800519A4; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x800519B4; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x800519B8; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x800519C0; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x800519C4; // type:function size:0x9C scope:local align:4 +checkAnimData__8AnimInfoFv = .text:0x80051A60; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x80051B3C; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x80051DB8; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x80051E00; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x80051E24; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x80051E48; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x80051E6C; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80051E90; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x80051EC8; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x80051F00; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x80051F38; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x80052230; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x80052250; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x80052260; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x800522E0; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x80052514; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x80052520; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x80052540; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x80052728; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x800527B4; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x800527D4; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x800529AC; // type:function size:0x22C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x80052BD8; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80052BDC; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x80052C0C; // type:function size:0x80 scope:global align:4 +animate__8AnimatorFf = .text:0x80052C8C; // type:function size:0x24C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80052ED8; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x80052EE0; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80052EE8; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80052EF0; // type:function size:0x8 scope:weak align:4 +_Print__FPce = .text:0x80052EF8; // type:function size:0xF4 scope:local align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80052FEC; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x8005313C; // type:function size:0x258 scope:global align:4 +setTime__10WorldClockFf = .text:0x80053394; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x8005343C; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x80053534; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x800535C4; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x80053624; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x80053684; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x800536E4; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x80053744; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x800537A4; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x80053804; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x800538A4; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x80053950; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x800539FC; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x80053A20; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x80053B64; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80053C00; // type:function size:0x61C scope:global align:4 +Initialise__12GameHiscoresFv = .text:0x8005421C; // type:function size:0xC8 scope:weak align:4 +softReset__8GameFlowFv = .text:0x800542E4; // type:function size:0x59C scope:global align:4 +__ct__4NodeFPc = .text:0x80054880; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x800548EC; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x80054910; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x8005493C; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80054A0C; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x80054A6C; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x80054A70; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80054AA0; // type:function size:0x1CC scope:local align:4 +Initialise__9GamePrefsFv = .text:0x80054C6C; // type:function size:0x84 scope:weak align:4 +__ct__17GameRecChalCourseFv = .text:0x80054CF0; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80054D0C; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x80054D18; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80054D24; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x80054D38; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80054D3C; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x80054EA4; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x8005521C; // type:function size:0x504 scope:global align:4 +__sinit_game_cpp = .text:0x80055720; // type:function size:0xF0 scope:local align:4 +_Print__FPce = .text:0x80055810; // type:function size:0xF4 scope:local align:4 +openStage__9PlayStateFi = .text:0x80055904; // type:function size:0x40 scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x80055944; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x80055984; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x800559C4; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x80055A60; // type:function size:0xB8 scope:global align:4 +setChildMode__9GamePrefsFb = .text:0x80055B18; // type:function size:0x54 scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x80055B6C; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x80055BD4; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x80055F20; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x80056098; // type:function size:0xDC scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x80056174; // type:function size:0x354 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x800564C8; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x800565BC; // type:function size:0xF4 scope:global align:4 +_Print__FPce = .text:0x800566B0; // type:function size:0xF4 scope:local align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x800567A4; // type:function size:0x20C scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x800569B0; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80056C34; // type:function size:0x12C scope:global align:4 +init__16GameSetupSectionFv = .text:0x80056D60; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x80056D64; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x80056D74; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x80056D7C; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x80056D84; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x80056D8C; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x80056D94; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x80056DE8; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x80056E38; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80057074; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x8005730C; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80057504; // type:function size:0x4 scope:weak align:4 +_Print__FPce = .text:0x80057508; // type:function size:0xF4 scope:local align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x800575FC; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x80057964; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80057C34; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x80057D40; // type:function size:0x47C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x800581BC; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80058450; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x80058778; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x8005899C; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x800589A0; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x800589D0; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x80058A00; // type:function size:0x9C scope:local align:4 +createMenuWindow__Fv = .text:0x80058A9C; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x80058BB4; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x80058D64; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80058E20; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80058F38; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x8005917C; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x80059180; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x800592A8; // type:function size:0x5E4 scope:global align:4 +message__13GameInterfaceFii = .text:0x8005988C; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x80059890; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x80059908; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x80059B9C; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80059EFC; // type:function size:0x364 scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x8005A260; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x8005A4B0; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x8005A818; // type:function size:0x4C scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x8005A864; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x8005AABC; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x8005ABF8; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x8005ACB8; // type:function size:0x45C scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x8005B114; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x8005B160; // type:function size:0x724 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x8005B884; // type:function size:0x15C scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x8005B9E0; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x8005BB94; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005BBB4; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x8005BBB8; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x8005BBBC; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x8005BBC0; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005BC14; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005BD4C; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005BD58; // type:function size:0xA04 scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005C75C; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005C760; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005C764; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005C7A0; // type:function size:0x11C scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005C8BC; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005C8C8; // type:function size:0x74 scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005C93C; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005CA04; // type:function size:0x78 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005CA7C; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005CA80; // type:function size:0x298 scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005CD18; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005CD98; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005CD9C; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005CDA8; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005CE04; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005CE34; // type:function size:0x540 scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005D374; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005D378; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005D414; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005D464; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005D468; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005D5B8; // type:function size:0x204 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005D7BC; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005DA2C; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005DB1C; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005DB70; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005DBB0; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005DC18; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005DC78; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005DD50; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005DD80; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005EC48; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005ED90; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005EDC0; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005EDC4; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005EE04; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005EE6C; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005EEFC; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005EF3C; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005EF40; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005EF48; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005F1F0; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005F204; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005F354; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005F368; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005F384; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005F388; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005F3BC; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005F3C0; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005F3C4; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005F3C8; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005F3CC; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005F3D0; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005F3D4; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005F59C; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005F630; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005F6F8; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005F6FC; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005F744; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005F788; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005F7B4; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005F7D8; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005F7F8; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005F98C; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005FB10; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005FC60; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005FC7C; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005FC98; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005FEF0; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x800600EC; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x800606F8; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8006075C; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x800607C8; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x80060870; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x80060874; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x80060948; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8006094C; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8006098C; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x800609C4; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x80060A04; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x80060A3C; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x80060A94; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x80060ACC; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x80060C2C; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x80060C6C; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x80060CB8; // type:function size:0x4E8 scope:global align:4 +idle__11PlugPikiAppFv = .text:0x800611A0; // type:function size:0x168 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x80061308; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x80061450; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x800614B4; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x800614BC; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x80061530; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x800615BC; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x800615F4; // type:function size:0x848 scope:global align:4 +update__17TitleSetupSectionFv = .text:0x80061E3C; // type:function size:0x674 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x800624B0; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x80062D6C; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80062E58; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80062E88; // type:function size:0x180 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x80063008; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x800630F8; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x8006330C; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x800633F8; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x80063660; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80063A2C; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x80063A70; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x80063B04; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x80063B4C; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x80063B88; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80063BEC; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80063C20; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x80063DDC; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80063E00; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x80063E3C; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x80063FE4; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x80064010; // type:function size:0x1B0 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800641C0; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800641F0; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80064220; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800643D8; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x80064590; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x80064DF8; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x800656A0; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x80065798; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x80065B80; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x80065D2C; // type:function size:0x20C scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x80065F38; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x800661A0; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x80066544; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x80066A7C; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x8006712C; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x80067144; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x80067174; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x80067538; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x80067558; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x8006755C; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x80067658; // type:function size:0x200 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x80067858; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x80067860; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x80067954; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x80067AF0; // type:function size:0x468 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x80067F58; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80067FEC; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x8006804C; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x800687D8; // type:function size:0x184 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x8006895C; // type:function size:0xF04 scope:global align:4 +updatePos__6MapMgrFff = .text:0x80069860; // type:function size:0x2A4 scope:global align:4 +getLight__6MapMgrFff = .text:0x80069B04; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x80069B0C; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x80069C70; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80069DD4; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x80069F44; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x8006A0A0; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x8006A38C; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x8006ABB8; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x8006ABBC; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x8006ABC0; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x8006B190; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x8006B200; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x8006B29C; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x8006B3D0; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x8006B3FC; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x8006B438; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x8006B470; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x8006B4AC; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x8006B4B0; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x8006B4B4; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x8006B4B8; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x8006B4C0; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x8006B4C4; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x8006B4C8; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8006B4CC; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x8006B504; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x8006B508; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x8006B510; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x8006B568; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x8006B5C0; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x8006B618; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x8006B66C; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x8006B710; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x8006B7B4; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x8006B804; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x8006B854; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x8006B8A4; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x8006B8F0; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x8006B944; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x8006B998; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x8006B9EC; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x8006BA40; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x8006BA98; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x8006BAF0; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006BF24; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006C37C; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006C3D0; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006C428; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006C480; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006CBAC; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006D168; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006D1C4; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006D220; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006EDA0; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006F2CC; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006FDFC; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x80070110; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x80070168; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x800701C0; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x80070244; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x800702C8; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x80070D00; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x80070D54; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x80070DD8; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x80071698; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x800716C8; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x800716F8; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x80071728; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x80071758; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x80071788; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x80071944; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x80071AF4; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x80071C24; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x80072344; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x800723F8; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x80072488; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x80072528; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x80072660; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x800726E4; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x80072C58; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80072D1C; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x80072DC4; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x80072F54; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x80073018; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x800731D4; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x80073FA0; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x80074EB0; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80074ECC; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80074ED0; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x8007503C; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x80075634; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x80075640; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x8007564C; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x800757C8; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x80075838; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x8007596C; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x800759A4; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80075B60; // type:function size:0xFC scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80075C5C; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80075DD0; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x80075E80; // type:function size:0x1DC scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x8007605C; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80076130; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x800761DC; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x80076600; // type:function size:0x10C scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x8007670C; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x8007677C; // type:function size:0x3B4 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x80076B30; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80076D40; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x80077154; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x80077164; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x80077478; // type:function size:0x430 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x800778A8; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x80077914; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x80077948; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80077B74; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x800780E8; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x80078188; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x800786B4; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x800786F4; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x80078A8C; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x80078AC0; // type:function size:0x9C scope:local align:4 +__ct__11MoviePlayerFv = .text:0x80078B5C; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x80078C18; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x80078CF8; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x80078D88; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80078E88; // type:function size:0x4B0 scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x80079338; // type:function size:0xF4 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x8007942C; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x80079550; // type:function size:0x58 scope:global align:4 +update__11MoviePlayerFv = .text:0x800795A8; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80079974; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x80079A20; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x80079A3C; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x80079B3C; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x80079B9C; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80079C10; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x8007A000; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x8007A034; // type:function size:0x250 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x8007A284; // type:function size:0x148 scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x8007A3CC; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x8007AAC4; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x8007ACAC; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x8007B148; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x8007B174; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x8007B178; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x8007B1C8; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x8007B2B8; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x8007B2C0; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x8007B2C4; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x8007B2CC; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x8007B328; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x8007B32C; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x8007B330; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x8007B5B8; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x8007B980; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x8007BC08; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007C018; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007C428; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007C760; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007CA98; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007CAAC; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007CAC0; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007CAFC; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007CB38; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007CCC0; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007CE40; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007CE54; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007CE90; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007D060; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007D074; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007D0B0; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007D278; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007D340; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007D428; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007D498; // type:function size:0x44 scope:global align:4 +_Error__FPce = .text:0x8007D4DC; // type:function size:0x9C scope:local align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007D578; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007D718; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007D7D8; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007D844; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007D8C4; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007D8C8; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007D93C; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007D940; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007DA60; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007DB14; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007DB90; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007DB98; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007DCA0; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007DCFC; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007DDE8; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007DDF0; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007DF7C; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007DFC0; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007DFC8; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007E150; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007E158; // type:function size:0x330 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007E488; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007E490; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007E4D8; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007E504; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007E63C; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007E644; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007E64C; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007E654; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007E65C; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007E664; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007E66C; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007E674; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007E67C; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007E684; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007E68C; // type:function size:0x9C scope:local align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007E728; // type:function size:0x58 scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007E780; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007E8A0; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007E8DC; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007E9E0; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007E9E8; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007ECA4; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007EE00; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007EE40; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007EE80; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007EEC0; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007EF00; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007EF30; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007EF60; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007EF90; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007EFD0; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007EFD4; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007EFD8; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007EFDC; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007EFE0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007EFE4; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007EFE8; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007EFEC; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007EFF0; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007EFF4; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007EFF8; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007EFFC; // type:function size:0x118 scope:weak align:4 +_Error__FPce = .text:0x8007F114; // type:function size:0x9C scope:local align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007F1B0; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007F254; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007F2C0; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007F320; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007F3D4; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007F3D8; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007F3DC; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007F40C; // type:function size:0x9C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007F4A8; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007F4CC; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007F534; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007F53C; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007F624; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007F71C; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007F748; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007F820; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007F824; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007F82C; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007F830; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007F8AC; // type:function size:0x114 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007F9C0; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007F9C8; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007FAD4; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007FB78; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007FB7C; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007FBF0; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007FC90; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007FCC8; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007FCCC; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007FCD0; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007FCD4; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007FCDC; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007FCE4; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007FCEC; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007FCF0; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007FCF4; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007FCFC; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007FD04; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007FD0C; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007FD10; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007FD14; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007FD18; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007FD20; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007FD28; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007FD30; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007FD38; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007FD3C; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007FD40; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007FD44; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007FD48; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007FD64; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007FD80; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007FD88; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007FD90; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007FD98; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007FDB0; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007FDB8; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007FDC0; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007FDC8; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007FDE0; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007FDE4; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007FDE8; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007FDEC; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007FDF0; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007FDF4; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007FDF8; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007FDFC; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007FE00; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007FE04; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007FE0C; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007FE14; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007FE1C; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007FE20; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007FE24; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007FE28; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007FE2C; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007FE30; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007FE34; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007FE38; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007FE3C; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007FE40; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007FE70; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007FE74; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007FECC; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007FF34; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007FF3C; // type:function size:0x9C scope:local align:4 +getCreature__12FormationMgrFi = .text:0x8007FFD8; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007FFE8; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007FFF0; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007FFF8; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x80080014; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x800800F4; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8008019C; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x800801A4; // type:function size:0x1FC scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x800803A0; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x80080594; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x80080734; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x80080A34; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x80080CEC; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x80080DD8; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x80081044; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x80081340; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x80081348; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x80081368; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x8008144C; // type:function size:0x9C scope:local align:4 +isEnding__11PlayerStateFv = .text:0x800814E8; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x80081540; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x800816DC; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x800818A8; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x80081BD8; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x80081C04; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x80081C74; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x80081CB4; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x80081CD0; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x80081D44; // type:function size:0x58 scope:global align:4 +getCardPikiCount__11PlayerStateFi = .text:0x80081D9C; // type:function size:0x70 scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x80081E0C; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x80081E14; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x80081E98; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x80082294; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x80082660; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x800826A4; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x800826D0; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x80082738; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x800827B8; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x800827D8; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x800827F0; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x8008284C; // type:function size:0x15C scope:global align:4 +initCourse__11PlayerStateFv = .text:0x800829A8; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x80082B58; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x80082C28; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x80082CBC; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80082CC4; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x80082E14; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x80082E28; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x80082E30; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80082E58; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80082E80; // type:function size:0xAC scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80082F2C; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80082F34; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80082F3C; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80082F8C; // type:function size:0xD0 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x8008305C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x800830D0; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x800832C0; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x80083390; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80083414; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x800834DC; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x800835E8; // type:function size:0x4AC scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x80083A94; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x80083AEC; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x80083BEC; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x80083C38; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x80083F40; // type:function size:0x9C scope:local align:4 +__ct__9DemoFlagsFv = .text:0x80083FDC; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x800845D0; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x80084628; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x8008463C; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x80084734; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x800847A4; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x80084814; // type:function size:0xB0 scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x800848C4; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x800848F4; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x8008491C; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80084B50; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x80084B80; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x80084BC8; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x80084BE4; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x80084BF4; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x80084C18; // type:function size:0x9C scope:local align:4 +demoCheck__4NaviFv = .text:0x80084CB4; // type:function size:0x6F4 scope:global align:4 +demoCheck__4PikiFv = .text:0x800853A8; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x800855F4; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x800855F8; // type:function size:0x454 scope:global align:4 +__ct__11ResultFlagsFv = .text:0x80085A4C; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x80085C08; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x80085D80; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x80085E24; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x80085EC0; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80085F10; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x80085F34; // type:function size:0xA0 scope:global align:4 +dump__11ResultFlagsFv = .text:0x80085FD4; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x800860E0; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80086110; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x800861A0; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x800861EC; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x8008665C; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x80086680; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x80086690; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x800866B4; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x80086710; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x80086784; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x80086860; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x80086898; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x800868FC; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x80086918; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x80086A00; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x80086A4C; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x80086C28; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x80086CE8; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x80086D28; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x80086D54; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x80087974; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x800879FC; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x80087A74; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x80087AEC; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x80087B64; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x80087BDC; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x80087C54; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x80087CCC; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x80087D44; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80087DBC; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x80087E34; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80087EAC; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80087EF8; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80087F44; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x800880A4; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x800880DC; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x8008824C; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x80088304; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x80088418; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x800887B0; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x800887B8; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x800887E8; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x80088914; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x800889A0; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x800889A4; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x800889CC; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x800889D0; // type:function size:0x9C scope:local align:4 +_Print__FPce = .text:0x80088A6C; // type:function size:0xF0 scope:local align:4 +__ct__7MemStatFv = .text:0x80088B5C; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x80088BDC; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x80088C04; // type:function size:0x130 scope:global align:4 +end__7MemStatFPc = .text:0x80088D34; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x80088DAC; // type:function size:0x54 scope:global align:4 +getInfo__7MemStatFPc = .text:0x80088E00; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x80088E24; // type:function size:0x418 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x8008923C; // type:function size:0x174 scope:global align:4 +_Error__FPce = .text:0x800893B0; // type:function size:0x9C scope:local align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x8008944C; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80089728; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x80089AE8; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x80089B14; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x80089E50; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x80089F34; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x8008A018; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x8008A250; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x8008A348; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x8008A46C; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x8008A4C8; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x8008A518; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x8008A54C; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x8008A574; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x8008A5D0; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x8008A60C; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x8008A628; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x8008A664; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x8008A6A0; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x8008A804; // type:function size:0x4D0 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x8008ACD4; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x8008B340; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x8008B3E4; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x8008B484; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x8008B4B8; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x8008B4EC; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x8008B6AC; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x8008B6B4; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x8008B6DC; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x8008BD00; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x8008BD28; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x8008BD5C; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x8008BEBC; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x8008BEC4; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x8008BF24; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x8008C0A0; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x8008C1D0; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x8008C2A0; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x8008C304; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x8008C318; // type:function size:0xC0 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x8008C3D8; // type:function size:0xD8 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x8008C4B0; // type:function size:0x8C scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x8008C53C; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x8008C6F8; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x8008C73C; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x8008C834; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x8008C838; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x8008C844; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x8008C848; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8008C84C; // type:function size:0x9C scope:local align:4 +finishFixPosition__8CreatureFv = .text:0x8008C8E8; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x8008C8F8; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x8008C940; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008CA18; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008CAF0; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008CB0C; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008CB50; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008CB74; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008CBBC; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008CC04; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008CC74; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008CCD4; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008CDAC; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008CE5C; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008CE94; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008CECC; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008CFC0; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008D034; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008D0A0; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008D0FC; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008D11C; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008D144; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008D27C; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008D2E4; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008D32C; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008D4AC; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008D510; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008D544; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008D588; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008D780; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008DA40; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008DAB0; // type:function size:0x5C0 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008E070; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008E264; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008E318; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008E408; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008E524; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008EC0C; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008ECAC; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008ECB4; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008ECF4; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008EFA8; // type:function size:0x7E0 scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008F788; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008F81C; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008F908; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008FE48; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008FE50; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8009019C; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x800901F0; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x80090260; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x800909C8; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x800909CC; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x80090A6C; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x80090AD4; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x80090BD0; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x80090BD4; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x80090BD8; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x80090DD8; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x80090EE8; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x80091C48; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x80091D48; // type:function size:0x588 scope:global align:4 +_Error__FPce = .text:0x800922D0; // type:function size:0x9C scope:local align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x8009236C; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x800924CC; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x80092640; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x80092764; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x80092880; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x800928E8; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x800928F8; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x80092940; // type:function size:0xB4 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x800929F4; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x80092A34; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x80092D44; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x80093090; // type:function size:0x1D4 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80093264; // type:function size:0x8C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x800932F0; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x800933E8; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x800934D4; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x800935F8; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80093690; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x800936E8; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80093718; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x800937E4; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x800937EC; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x800937F4; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80093810; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x80093A64; // type:function size:0xE4 scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x80093B48; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x80093D34; // type:function size:0x3A4 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x800940D8; // type:function size:0x3E0 scope:global align:4 +updateStickRope__8CreatureFv = .text:0x800944B8; // type:function size:0x514 scope:global align:4 +__ct__12DualCreatureFv = .text:0x800949CC; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x80094A60; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80094A94; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x80094AF4; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x80094B44; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x80094B98; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x80094BE8; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x80094C2C; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x80094CF0; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x80094D24; // type:function size:0x200 scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x80094F24; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x80094F74; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x80094F7C; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x80094F84; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x80094FE4; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x800951AC; // type:function size:0x14C scope:global align:4 +_Error__FPce = .text:0x800952F8; // type:function size:0x9C scope:local align:4 +__ct__11DynParticleFv = .text:0x80095394; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x8009546C; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x8009547C; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x80095480; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x80095484; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x80095678; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x8009576C; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x80095788; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x800957A0; // type:function size:0x11C scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x800958BC; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80095924; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80095AB0; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x80095AEC; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x80096650; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80096800; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80096AB4; // type:function size:0x4 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80096AB8; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80096AD8; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x80096AEC; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x80096B7C; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80096BD8; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x80096BDC; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x80096C00; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x80096C78; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x80096CA4; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x80096CD4; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x80096E7C; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x80096F34; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x80097064; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x80097100; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x800971E8; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x80097240; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x800973E8; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x800974BC; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x80097570; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x80097574; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x8009757C; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x800975C4; // type:function size:0x94 scope:global align:4 +_Error__FPce = .text:0x80097658; // type:function size:0x9C scope:local align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x800976F4; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x80097738; // type:function size:0x58 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80097790; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x80097B20; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x80097B94; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x80097D5C; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x80097FCC; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x80098008; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80098098; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x800980C8; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x80098158; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x80098174; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x800981AC; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x800981B4; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x800981FC; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x8009824C; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x800982CC; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x8009866C; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x800986EC; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x800987A4; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x80098854; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x80098858; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x8009885C; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x800989C8; // type:function size:0x144 scope:global align:4 +getCentre__6PelletFv = .text:0x80098B0C; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x80098B28; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x80098B70; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x80098BE8; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x80098C04; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x80098C0C; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x80098CF0; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x80098D84; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x80098EF8; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x80098F60; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80098FBC; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x80099028; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x80099188; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x80099260; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x80099400; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x80099478; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x800994AC; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x800994E0; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x80099524; // type:function size:0xFC scope:global align:4 +startCarryMotion__6PelletFf = .text:0x80099620; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x80099664; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x80099668; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x8009966C; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x800996D0; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x800996D4; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x8009976C; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x800997A0; // type:function size:0x1FC scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x8009999C; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x80099A14; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80099AA8; // type:function size:0x3CC scope:global align:4 +doAnimation__6PelletFv = .text:0x80099E74; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x80099ED4; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x80099ED8; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x80099F60; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x80099FE8; // type:function size:0x9A0 scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x8009A988; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x8009A9C4; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x8009A9C8; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x8009AA18; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x8009AA38; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x8009AAAC; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x8009ADA4; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x8009AF60; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x8009AFC4; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x8009B10C; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x8009B164; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x8009B1CC; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x8009B244; // type:function size:0x158 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x8009B39C; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x8009B430; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x8009B484; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x8009B6D8; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x8009B730; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x8009B79C; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x8009B88C; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x8009B8E0; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x8009B920; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x8009B9BC; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x8009B9F4; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x8009BA38; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x8009BAF4; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x8009BBB0; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x8009BC84; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x8009BD60; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x8009BF70; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x8009BF74; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x8009BFF8; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x8009C000; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x8009C008; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x8009C010; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x8009C014; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x8009C018; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009C01C; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009C024; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x8009C02C; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x8009C030; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x8009C06C; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x8009C184; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x8009C188; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x8009C18C; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x8009C190; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x8009C194; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x8009C198; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x8009C19C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x8009C1A0; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x8009C1A4; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x8009C1A8; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x8009C1AC; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x8009C1B0; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009C1B8; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009C1C0; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x8009C1C8; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x8009C1D0; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x8009C1D8; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x8009C1E0; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x8009C360; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009C434; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x8009C4C4; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x8009C604; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8009C63C; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8009C6A8; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8009C700; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x8009C758; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x8009C780; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x8009C7DC; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x8009C828; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x8009C970; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009C9AC; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x8009C9B4; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x8009CA34; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x8009CAC0; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x8009CB14; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x8009CB84; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x8009CBC4; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x8009CCC4; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009D0C4; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009D110; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009D11C; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009D18C; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009D1BC; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009D1D8; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009D224; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009D228; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009D22C; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009D230; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009D278; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009D27C; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009D280; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009D284; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009D2D4; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009D2D8; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009D314; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009D338; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009D384; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009D3B4; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009D3E4; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009D4B0; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009D4B4; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009D510; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009DA8C; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009DD60; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009DD64; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009DD94; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009DD98; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8009DD9C; // type:function size:0x9C scope:local align:4 +beginPush__10HinderRockFv = .text:0x8009DE38; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009DE48; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009DE60; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009DF6C; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009DF70; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009DF94; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009E0A4; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009E0F8; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009E18C; // type:function size:0x154 scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009E2E0; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009E368; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009E370; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009E378; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009E3BC; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009E3E0; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009E480; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009E520; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009E68C; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009E718; // type:function size:0x244 scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009E95C; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009EB10; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009EB30; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009ECB0; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009EE28; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009EE9C; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009F000; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009F040; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009F048; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009F05C; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009F124; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009F1EC; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009F2E4; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009F68C; // type:function size:0xD0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009F75C; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009F7D0; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009F7E8; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009F8A8; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009F9C4; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x800A01F4; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x800A038C; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x800A04E0; // type:function size:0x2E0 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x800A07C0; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x800A0834; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x800A0918; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x800A09F8; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x800A0CF8; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x800A0E84; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x800A0F04; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x800A0FB4; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x800A101C; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x800A1084; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x800A10EC; // type:function size:0x80 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x800A116C; // type:function size:0xDC scope:global align:4 +flatten__6BridgeFv = .text:0x800A1248; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x800A12EC; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x800A1414; // type:function size:0x3A0 scope:global align:4 +getStagePos__6BridgeFi = .text:0x800A17B4; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x800A187C; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x800A18E0; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x800A19C8; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x800A1A28; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x800A1A88; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x800A1B84; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x800A1B8C; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x800A1B94; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x800A1FB8; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x800A2058; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x800A2340; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x800A236C; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x800A2374; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x800A2388; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x800A2394; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x800A239C; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x800A23A4; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x800A23AC; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x800A23B4; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x800A23BC; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x800A23C0; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x800A23C4; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x800A2430; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x800A2438; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x800A2440; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x800A2448; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800A2450; // type:function size:0x9C scope:local align:4 +__ct__Q210PathFinder6BufferFv = .text:0x800A24EC; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A2500; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x800A25B4; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x800A263C; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x800A2714; // type:function size:0x36C scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x800A2A80; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A2B04; // type:function size:0x26C scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x800A2D70; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A2D84; // type:function size:0x24C scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x800A2FD0; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x800A3018; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x800A30C8; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A3114; // type:function size:0x3DC scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A34F0; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A3964; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A40CC; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A4238; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A43A4; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A4520; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A465C; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A46B8; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A4754; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A4768; // type:function size:0x290 scope:global align:4 +__ct__8WayPointFv = .text:0x800A49F8; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A4A0C; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A4B40; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A4B88; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A4BB4; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A4C44; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A5000; // type:function size:0x5BC scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A55BC; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A5820; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A5D4C; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A5E80; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A60A4; // type:function size:0x3C0 scope:global align:4 +_Error__FPce = .text:0x800A6464; // type:function size:0x9C scope:local align:4 +__ct__5SeMgrFv = .text:0x800A6500; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A6680; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A66A8; // type:function size:0x90 scope:global align:4 +update__5SeMgrFv = .text:0x800A6738; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A673C; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A674C; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A6770; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A67A8; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A688C; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A6B70; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A6BEC; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A6C38; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A6D6C; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x800A6D90; // type:function size:0x9C scope:local align:4 +__ct__9SeContextFv = .text:0x800A6E2C; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A6E9C; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A6F04; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A6FA0; // type:function size:0x128 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A70C8; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A7110; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A71A4; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A71FC; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A731C; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A7330; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A73A8; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A7420; // type:function size:0x22C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A764C; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A7678; // type:function size:0x44C scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A7AC4; // type:function size:0x140 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A7C04; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A7C4C; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A7E04; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A80D4; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A818C; // type:function size:0x390 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A851C; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A8524; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A8620; // type:function size:0x5C scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A867C; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A8714; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A8748; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A877C; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A87B0; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x800A87E4; // type:function size:0x9C scope:local align:4 +__ct__13UpdateContextFv = .text:0x800A8880; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A8894; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A88E0; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A8910; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A895C; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A8978; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A899C; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A89CC; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A8A60; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A8AF0; // type:function size:0xA4 scope:global align:4 +_Error__FPce = .text:0x800A8B94; // type:function size:0x9C scope:local align:4 +getCreature__6CPlateFi = .text:0x800A8C30; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A8C44; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A8E70; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A8EA0; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A8EA8; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A8EAC; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A906C; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A9228; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A92D8; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A9328; // type:function size:0x15C scope:global align:4 +validSlot__6CPlateFi = .text:0x800A9484; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A94A8; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A98CC; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A9BA8; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A9D30; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A9F64; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A9F9C; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800AA268; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800AA270; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800AA278; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800AA290; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800AA2B4; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800AA2BC; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800AA2C4; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800AA2CC; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800AA320; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800AA378; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800AA3EC; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800AA438; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800AA4BC; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800AA64C; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800AA658; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800AA81C; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800AA8B0; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800AAA24; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800AAD30; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800AAD9C; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800AADA0; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800AADA4; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800AADA8; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800AADAC; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800AADB0; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800AADB8; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800AADE4; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800AADE8; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800AADEC; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800AADF0; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800AADF4; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800AADF8; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800AADFC; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800AAE00; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800AAE04; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800AAE08; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800AAE0C; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800AAE10; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800AAF28; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800AAF30; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800AAFB0; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800AAFB4; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800AB088; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800AB140; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800AB180; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800AB234; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800AB238; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800AB244; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800AB248; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800AB320; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800AB38C; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800AB3A0; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800AB5A0; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800AB5B4; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800AB6D0; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800AB734; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800AB748; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800AB7AC; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800AB818; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800AB820; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800AB8E8; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800AB94C; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800ABA9C; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800ABB98; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800ABBA4; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800ABBF8; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800ABC00; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800ABC08; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800ABF44; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800ABFA8; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800AC008; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800AC1D4; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800AC270; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800AC28C; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800AC4F4; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800AD360; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800AD3AC; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AD3D8; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800AD504; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AD95C; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AD9C8; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800ADA44; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800ADA4C; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800ADA54; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800ADB5C; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800ADC50; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800ADCD4; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800ADDDC; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800ADDE0; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800ADE58; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800AE130; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800AE234; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800AE328; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800AE334; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800AE4B8; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800AE4BC; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800AE534; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800AE5F0; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AE8C8; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AE948; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AEA30; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AEC44; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AED6C; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AED70; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AED94; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AED98; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AEDA0; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AEDA4; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AEDA8; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AEE28; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AEE60; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800AEF40; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800AEF5C; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AEF60; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800AEF78; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800AEFF8; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800AF084; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800AF16C; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800AF454; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AF458; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800AF55C; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800AF5DC; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800AF65C; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800AF6C0; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AF740; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AF7A4; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AF808; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AF81C; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AF830; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AF844; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AF898; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AF8D8; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AF978; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AF9DC; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AFB08; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AFBBC; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AFBC4; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AFBE8; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AFC60; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AFCCC; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800AFCD4; // type:function size:0x9C scope:local align:4 +__ct__6ActBouFP4Piki = .text:0x800AFD70; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AFDDC; // type:function size:0xBC scope:global align:4 +exec__6ActBouFv = .text:0x800AFE98; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AFEE4; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800B00F4; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800B0274; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800B037C; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800B0424; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800B0488; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800B0534; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800B0610; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800B067C; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800B0710; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800B0738; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800B07E8; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800B080C; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800B0B6C; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800B0C4C; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800B0F58; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800B1028; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800B1690; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800B1710; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800B1724; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800B1794; // type:function size:0x104 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800B1898; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B195C; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800B1AEC; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800B1C34; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800B1C54; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800B1D1C; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800B1DAC; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800B1EA0; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800B2184; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800B21A0; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800B21A4; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B2210; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800B2218; // type:function size:0x9C scope:local align:4 +turnOver__12ActTransportFv = .text:0x800B22B4; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800B2544; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800B2694; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800B2824; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800B2918; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800B2A78; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800B2BD8; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B2C24; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800B2DB8; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800B32A8; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B39E8; // type:function size:0x694 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B407C; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B41E4; // type:function size:0x8DC scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B4AC0; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B5368; // type:function size:0x34C scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B56B4; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B586C; // type:function size:0x1E8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B5A54; // type:function size:0xA0 scope:global align:4 +crInit__12ActTransportFv = .text:0x800B5AF4; // type:function size:0x524 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B6018; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B6098; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B63C4; // type:function size:0x988 scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B6D4C; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B7510; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B7C0C; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B7C8C; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800B7CA0; // type:function size:0x9C scope:local align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B7D3C; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B7DE0; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B7E60; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B7ECC; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B7F4C; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B8074; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B8080; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B8240; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B84C8; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B8D24; // type:function size:0xBC scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B8DE0; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B8DE4; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B8E64; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B8E78; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B8EE4; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B8EE8; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B8FBC; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B8FFC; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B9238; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800B929C; // type:function size:0x9C scope:local align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B9338; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B9434; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B943C; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B9468; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B95C4; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B96A8; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B96DC; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B97F8; // type:function size:0x110 scope:global align:4 +exec__8ActCrowdFv = .text:0x800B9908; // type:function size:0x1684 scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800BAF8C; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800BAFE4; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800BAFE8; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800BB068; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800BB070; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800BB084; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800BB0D8; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800BB250; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800BB2AC; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800BB2B0; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800BB2B4; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800BB7C8; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800BB834; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BB83C; // type:function size:0x9C scope:local align:4 +__ct__8ActEnterFP4Piki = .text:0x800BB8D8; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800BB938; // type:function size:0x204 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800BBB3C; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800BBC08; // type:function size:0x108 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800BBD10; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800BBD68; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800BBF14; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800BC148; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800BC16C; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800BC1D0; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800BC24C; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800BC250; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800BC348; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800BC388; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800BC654; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800BC6AC; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800BC710; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800BC770; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800BC830; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800BC85C; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800BCB44; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800BCC04; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800BCC68; // type:function size:0x9C scope:local align:4 +__ct__7ActMineFP4Piki = .text:0x800BCD04; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800BCD84; // type:function size:0x78 scope:global align:4 +initWatch__7ActMineFv = .text:0x800BCDFC; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800BCE8C; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800BCFD8; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800BD1D8; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BD1DC; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800BD29C; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BD31C; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800BD330; // type:function size:0x9C scope:local align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BD3CC; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800BD6F8; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800BD754; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800BD89C; // type:function size:0x10C scope:global align:4 +cleanup__12ActFormationFv = .text:0x800BD9A8; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800BD9F4; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BE098; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BE104; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BE10C; // type:function size:0x9C scope:local align:4 +__ct__7ActFreeFP4Piki = .text:0x800BE1A8; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BE274; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BE344; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BE508; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BE7FC; // type:function size:0xD4 scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BE8D0; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BE8D4; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BE9C4; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BEA9C; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BEB1C; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BEB24; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BEB38; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BEB84; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BEC00; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BECD4; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BED14; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BF08C; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BF0F0; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BF104; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BF188; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BF24C; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BF368; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BF374; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BFA90; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BFC84; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BFD80; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BFFD8; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800C01D0; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800C0258; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800C02E0; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800C04A4; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800C0668; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800C06CC; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800C07AC; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800C092C; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800C09DC; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800C0AC4; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800C0B04; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800C0C60; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800C0D80; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800C0DB8; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800C0E2C; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800C0EAC; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800C0F20; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800C0F34; // type:function size:0x9C scope:local align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800C0FD0; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800C109C; // type:function size:0x54 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800C10F0; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800C1154; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800C11D8; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800C124C; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800C1258; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800C1298; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800C129C; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800C1310; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800C1410; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800C1660; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800C173C; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800C178C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C1800; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800C1878; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800C18D4; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800C1968; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800C1BA8; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800C1C14; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C1C88; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800C1C90; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800C1D30; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800C1DC8; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800C1E94; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800C1FA4; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800C20E0; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C22F4; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800C25C8; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800C2600; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C2680; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800C2694; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800C2734; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800C27BC; // type:function size:0x478 scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800C2C34; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800C2DF4; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800C2E00; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800C2FD8; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800C313C; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800C32A8; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800C3574; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800C3580; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800C3604; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800C3750; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800C398C; // type:function size:0x200 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C3B8C; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800C3BC4; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800C3BC8; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800C3C24; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C4030; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C4370; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C43DC; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C4554; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C4594; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C45F8; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C4678; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C468C; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C4984; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C4A10; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C4A14; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C4AFC; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C4B00; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C4EBC; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C4F00; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C4F64; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C4FFC; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C5040; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C518C; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C51F8; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C525C; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C5340; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C53CC; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C5444; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C55C8; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C5734; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C5754; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C5A08; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C5A0C; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C5A8C; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C5AA0; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C5B00; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C5C78; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C5CE8; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C5D84; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C5DE8; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C5F08; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C5FB8; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C6130; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C62FC; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C633C; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C637C; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C6428; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C6484; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C650C; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C67E8; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C6854; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C68C8; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C68D0; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C68D4; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C6998; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C699C; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C6AE4; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C6B2C; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C6B64; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C6CC0; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C6D24; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C6D78; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C6DD0; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C6E30; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C6E5C; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C6ECC; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C70AC; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C70B8; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C72CC; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C7358; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C7438; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C76EC; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C7758; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C7760; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C79A0; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C7A4C; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C7A84; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C7AFC; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C7B7C; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C7B88; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C7B90; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C7C70; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C7DBC; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C7E9C; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C7FEC; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C8110; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C8120; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C8190; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C826C; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C88B8; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C8940; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C8A28; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C8FC0; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C9044; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C9090; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C90DC; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C9128; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C91B8; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C9244; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C9280; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C92C8; // type:function size:0x88 scope:weak align:4 +_Error__FPce = .text:0x800C9350; // type:function size:0x9C scope:local align:4 +initGame__10PikiInfMgrFv = .text:0x800C93EC; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C9414; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C948C; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C94FC; // type:function size:0x94 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C9590; // type:function size:0x9C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C962C; // type:function size:0x94 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C96C0; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C96EC; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C9748; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C974C; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C97A8; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C97AC; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C984C; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C9940; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C9A04; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C9B1C; // type:function size:0x60 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C9B7C; // type:function size:0x60 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C9BDC; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C9D4C; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C9E1C; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C9E74; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C9EBC; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C9EE0; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C9F04; // type:function size:0xCC scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C9FD0; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800CA09C; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800CA0C8; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800CA19C; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800CA27C; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800CA2DC; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800CA30C; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800CA370; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800CA3F8; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800CA418; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800CA41C; // type:function size:0x34 scope:local align:4 +_Error__FPce = .text:0x800CA450; // type:function size:0x9C scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800CA4EC; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800CA7EC; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800CA898; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800CA89C; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800CA93C; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800CA940; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800CAA14; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800CAA1C; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800CAA4C; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800CAA50; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800CAA94; // type:function size:0x380 scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800CAE14; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800CAFE0; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800CB4A0; // type:function size:0x71C scope:global align:4 +crGetPoint__4PikiFi = .text:0x800CBBBC; // type:function size:0xD0 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800CBC8C; // type:function size:0x80 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800CBD0C; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800CBD6C; // type:function size:0x100 scope:global align:4 +hasBomb__4PikiFv = .text:0x800CBE6C; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800CBE88; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800CBF18; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800CBF7C; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800CC0B8; // type:function size:0x418 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800CC4D0; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800CC4D8; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800CC524; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800CC548; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800CC564; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800CC570; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800CC588; // type:function size:0x1324 scope:global align:4 +initColor__4PikiFi = .text:0x800CD8AC; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800CD984; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800CD9B4; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800CDA04; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800CDA9C; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800CDB38; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800CDBD0; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800CDD78; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800CDDF0; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800CDE18; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800CDEB0; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800CDEEC; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800CDF60; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800CDFD4; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800CE060; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800CE064; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800CE140; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CE144; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CE220; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CE284; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CE33C; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CE344; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CE454; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CE518; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CE55C; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CE5B4; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CE5B8; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CE638; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CE718; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CE750; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CEA0C; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CEC40; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CEC88; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CEE18; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CF990; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CF998; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CFD98; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CFE0C; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CFED0; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CFFAC; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CFFCC; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800D0010; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800D0078; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800D0364; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800D0368; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800D03A0; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800D03B4; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800D0700; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800D0708; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800D0758; // type:function size:0x484 scope:global align:4 +realAI__4PikiFv = .text:0x800D0BDC; // type:function size:0x560 scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800D113C; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800D1178; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800D117C; // type:function size:0x118 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800D1294; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800D14E0; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800D1730; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800D174C; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800D1750; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800D1754; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800D1804; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800D1808; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800D180C; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800D18C4; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800D18CC; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800D18DC; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800D18F4; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800D1A18; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800D1D98; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800D1E54; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800D20AC; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800D2E3C; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800D2E54; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800D2ED0; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800D2EF0; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800D2F10; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800D2F40; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800D2F84; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800D311C; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800D31A0; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800D31A8; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800D31B0; // type:function size:0x9C scope:local align:4 +init__16PikiStateMachineFP4Piki = .text:0x800D324C; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D4674; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D46A0; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D46A4; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D4784; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D47B4; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D4800; // type:function size:0xA0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D48A0; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D4AAC; // type:function size:0x2C scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D4AD8; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D4B8C; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D4BD4; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D4C5C; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D4C88; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D4CF4; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D4CF8; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D4CFC; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D4D10; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D4E04; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D4E50; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D4EF4; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D4FDC; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D50EC; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D50F0; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D514C; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D5354; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D5730; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D5734; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D58E0; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D593C; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D59E0; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D5C48; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D5C8C; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D5C90; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D6448; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D646C; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D64B8; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D65E4; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D6738; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D67B8; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D6804; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D68E8; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D6A3C; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D6A40; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D6A90; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D6AA0; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D6BA4; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D6BBC; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D6C08; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D6C78; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D7068; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D70C8; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D70CC; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D7118; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D7280; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D7420; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D76B4; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D77AC; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D77F8; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D791C; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D79B4; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D7B24; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D7D54; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D7DF4; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D7E44; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D7EC8; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D7ECC; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D8154; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D8158; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D81A4; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D822C; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D8230; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D82AC; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D8380; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D8384; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D83E0; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D8518; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D8554; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D86F8; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D8B9C; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D8BA0; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D8BEC; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D8C48; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D8DBC; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D8DC0; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D8E0C; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D8E44; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D8EF8; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D8F3C; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D8F60; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D8FB0; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D8FE8; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D909C; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D90E0; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D9104; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D9150; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D91F4; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D9234; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D9244; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D92D0; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D9384; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D9410; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D9434; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D9458; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D9508; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D98C8; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D990C; // type:function size:0x6EC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D9FF8; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D9FFC; // type:function size:0xFC scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800DA0F8; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800DA144; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800DA1C0; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800DA1C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800DA1C8; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800DA20C; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800DA25C; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800DA308; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800DA334; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800DA3AC; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800DA3B0; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800DA444; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800DA490; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800DA558; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800DA5F0; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800DA5F4; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800DA728; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800DA774; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800DA778; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800DA77C; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800DA780; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800DA7B0; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800DA7B4; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800DA7FC; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800DA848; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800DA8D0; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800DAA20; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800DAA2C; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800DAA5C; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800DAA60; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800DAA98; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800DAB10; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800DAB60; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800DABF0; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800DACE4; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800DACF0; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800DAD20; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800DAD24; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800DADC8; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800DADCC; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800DAE4C; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800DAE98; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800DAE9C; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800DB09C; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800DB0A0; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800DB0F0; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800DB23C; // type:function size:0x88 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800DB2C4; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800DB2C8; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800DB314; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800DB3C0; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800DB3C4; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800DB628; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800DB7B8; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800DB808; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800DB8E4; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800DB95C; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800DB960; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800DB9FC; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800DBA48; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800DBA6C; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800DBAA0; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800DBBE0; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800DBBE4; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800DBC30; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800DBD4C; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800DBD80; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800DBD84; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800DBE14; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800DBE60; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800DBE94; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800DBF30; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800DBF4C; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800DBFAC; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800DC730; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800DC734; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800DC8EC; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800DC920; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800DC9A4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800DC9AC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800DC9B4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800DC9BC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800DC9C4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800DC9CC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800DC9D4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800DC9DC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800DC9E4; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800DC9EC; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800DC9F4; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800DC9FC; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x800DCA2C; // type:function size:0x9C scope:local align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800DCAC8; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800DCAF0; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800DCB18; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800DCB54; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800DCD08; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800DCDA4; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800DCDC4; // type:function size:0x150 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800DCF14; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800DCF74; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800DD028; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800DD294; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800DD2F8; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800DD2FC; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800DD478; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800DD880; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800DD920; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800DD938; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800DD94C; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800DDCC4; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800DE33C; // type:function size:0xB2C scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DEE68; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DEE98; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DEEC8; // type:function size:0x2C scope:global align:4 +_Error__FPce = .text:0x800DEEF4; // type:function size:0x9C scope:local align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DEF90; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DEFC0; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DEFCC; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DEFEC; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DF00C; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DF010; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DF10C; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DF15C; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DF2D8; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DF408; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DF564; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DF5B4; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DF620; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DF68C; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DF74C; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DF80C; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DF894; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DF91C; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DF9C0; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DFA64; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DFAE0; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DFB5C; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DFC34; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DFCCC; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DFD1C; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DFD5C; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DFDBC; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DFF2C; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800E0080; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800E00B8; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800E01BC; // type:function size:0x8C scope:global align:4 +init__9GeneratorFv = .text:0x800E0248; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800E0484; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800E0488; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800E048C; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800E0514; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800E0518; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800E06C4; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800E06C8; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800E06CC; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800E0E00; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800E0E6C; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800E0ED8; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800E0F44; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800E16A4; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800E1BB8; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800E1BF8; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800E1C14; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800E1CB4; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800E1D00; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800E1D5C; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E1FD0; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E203C; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800E20A8; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800E22BC; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800E2360; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800E2518; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800E2680; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800E2688; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800E276C; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800E28A4; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800E28AC; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800E29F0; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800E2B28; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800E2BB0; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800E2BB4; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800E2D58; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800E2E88; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800E2EE0; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800E2F18; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800E2F88; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800E3038; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800E3040; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800E3044; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800E304C; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800E3050; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800E3058; // type:function size:0x9C scope:local align:4 +__ct__14GeneratorCacheFv = .text:0x800E30F4; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800E3224; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800E323C; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800E32F4; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E33E8; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E351C; // type:function size:0x254 scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E3770; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E387C; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800E3988; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800E39B0; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800E3B10; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800E3C38; // type:function size:0x1BC scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800E3DF4; // type:function size:0xFC scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800E3EF0; // type:function size:0x94 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800E3F84; // type:function size:0x190 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E4114; // type:function size:0x134 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E4248; // type:function size:0x140 scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800E4388; // type:function size:0x150 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800E44D8; // type:function size:0x190 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E4668; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E46C4; // type:function size:0x88 scope:global align:4 +_Error__FPce = .text:0x800E474C; // type:function size:0x9C scope:local align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E47E8; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E48F4; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E4A18; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E4B24; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E4B28; // type:function size:0x280 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E4DA8; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E4F14; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E5030; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E528C; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E5500; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E5628; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E56CC; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E5780; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E5838; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E58D4; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E5964; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E5A50; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E5AFC; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E5B80; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E5BBC; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E5C14; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E5C70; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E5C8C; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E6014; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E6320; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E6580; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E65FC; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E6704; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E67B0; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E684C; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E68F4; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E68F8; // type:function size:0xB4 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E69AC; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E6A14; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E6A28; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E6B44; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E6BC4; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E6C08; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E6C60; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E6CBC; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E6CD8; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E6D00; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E6FC0; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E73C4; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E744C; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E7454; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E745C; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E74A0; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E74C4; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E7530; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E7538; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E75A4; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E75AC; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E75B4; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E75BC; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E75C0; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E7A2C; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E8218; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E8288; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E8460; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E849C; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E84FC; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E86E4; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E88E8; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E8914; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E891C; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E8924; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E8940; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E8958; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E8964; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E8974; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E8998; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E8A7C; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E8C78; // type:function size:0xC scope:weak align:4 +_Error__FPce = .text:0x800E8C84; // type:function size:0x9C scope:local align:4 +workable__7RockGenFv = .text:0x800E8D20; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E8D40; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E8D58; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E8D70; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E8D90; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E8DA8; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E8DC0; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E901C; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E9278; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E9318; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E959C; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E95B0; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E95C0; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E961C; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E962C; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E9668; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E96E8; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E9714; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E98A4; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E98AC; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E998C; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E9A2C; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E9C70; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E9C84; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E9C94; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E9CF0; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E9D1C; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E9EAC; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E9EB4; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E9F94; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E9F98; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E9F9C; // type:function size:0x1E4 scope:global align:4 +startAI__4WeedFi = .text:0x800EA180; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800EA1A4; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800EA270; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800EA30C; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800EA414; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800EA428; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800EA430; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800EA444; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800EA44C; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800EA460; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800EA468; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800EA470; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800EA484; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800EA48C; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800EA494; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800EA538; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800EA650; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800EA6B0; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800EA6E8; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800EA704; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800EA70C; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800EA714; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800EA74C; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800EA890; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800EA968; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800EAA14; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800EAA44; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800EAA4C; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800EAA54; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800EAB08; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800EABF4; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800EAD04; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800EAD0C; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800EAD14; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800EAD1C; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800EAD24; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800EADD4; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800EADF4; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800EAFA8; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800EB0E8; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800EB63C; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800EB6D4; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800EB788; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800EB8AC; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800EB9F8; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800EBAB0; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800EBB84; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800EBDD0; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800EBEFC; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800EBF20; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800EC078; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800EC0F0; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800EC480; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800EC49C; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800EC4F4; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800EC558; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800EC59C; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800EC620; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800EC6DC; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800EC788; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800EC834; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800EC964; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800ECDB8; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800ECDC0; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800ECFB4; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800ECFC8; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800ECFD0; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800ED090; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800ED34C; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800ED354; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800ED35C; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800ED40C; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800ED57C; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800ED5C4; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800ED630; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800ED748; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800ED860; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800ED944; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800EDE48; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800EDE50; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800EDE58; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800EDE60; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800EDE68; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800EDFC0; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800EDFE8; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800EE298; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800EE2D4; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800EE330; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800EE3D4; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800EE40C; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800EE41C; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800EE430; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800EE478; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800EE598; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800EE6DC; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800EE764; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800EE7E4; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800EE84C; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800EE8F4; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800EE94C; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800EE954; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EE9AC; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800EEA58; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800EEB40; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800EEB48; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800EEB50; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800EEC28; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800EEC2C; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800EECC4; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800EED6C; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800EED70; // type:function size:0x60 scope:global align:4 +_Error__FPce = .text:0x800EEDD0; // type:function size:0x9C scope:local align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800EEE6C; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800EEEAC; // type:function size:0x778 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EF624; // type:function size:0xC8 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EF6EC; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EF864; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EF8BC; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EF8C4; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EF8E8; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EF9DC; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EFAA0; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EFAC0; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EFD3C; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EFD44; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EFE54; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EFE70; // type:function size:0x78 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EFEE8; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EFF64; // type:function size:0x118 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800F007C; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800F00AC; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800F00C0; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800F0554; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800F05C8; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800F05F4; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800F05FC; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800F0604; // type:function size:0x324 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800F0928; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800F0CA0; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800F0CBC; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800F0CC4; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800F0CCC; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800F0CD4; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800F0CDC; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800F0CE4; // type:function size:0x9C scope:local align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800F0D80; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800F0DE0; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800F0E10; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800F0E84; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800F0EDC; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800F0EE4; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800F0F4C; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F0F54; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800F10E0; // type:function size:0x174 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800F1254; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800F12E0; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800F136C; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800F1374; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800F137C; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800F1384; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800F18D0; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800F19D8; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800F1AD8; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800F1AE0; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800F1B88; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800F1B90; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800F1BE4; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800F1BF0; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800F1C10; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800F1C4C; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800F1D58; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800F1D5C; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800F1D64; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800F1EB0; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800F1F10; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800F1F30; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800F1F4C; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800F1FA0; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800F1FAC; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800F2054; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800F2074; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800F207C; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800F209C; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800F22A0; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800F22A8; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800F22B0; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800F22B8; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800F2368; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800F2370; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800F2378; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800F23C4; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800F2654; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800F2658; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800F268C; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800F2694; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800F269C; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800F26A4; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800F26AC; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800F2788; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800F2790; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800F27D4; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800F27E8; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800F27F0; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800F282C; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800F2A68; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800F2A78; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800F2BB0; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800F2BEC; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800F2BF4; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F2BFC; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F2CA4; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800F2D4C; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800F2EA4; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800F2F30; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800F304C; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800F314C; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800F317C; // type:function size:0x448 scope:global align:4 +_Error__FPce = .text:0x800F35C4; // type:function size:0x9C scope:local align:4 +__ct__8SluiceAIFv = .text:0x800F3660; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800F399C; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800F39D8; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800F3A44; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800F3A54; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800F3AE0; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800F3B6C; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800F3BD8; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800F40E4; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800F41F8; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800F423C; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800F4264; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800F4288; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800F4294; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800F42C8; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800F4350; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800F43D0; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800F4444; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800F449C; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800F4574; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800F46A4; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800F47EC; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800F4820; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800F489C; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800F48F4; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800F491C; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F4CAC; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F4D4C; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F4DEC; // type:function size:0xE60 scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F5C4C; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F5C80; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F5C8C; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F5D0C; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F5D30; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F5DAC; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F618C; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F61B4; // type:function size:0xCC scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F6280; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F62B8; // type:function size:0x474 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F672C; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F6730; // type:function size:0x338 scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F6A68; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F6A6C; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F6AE4; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F6BA4; // type:function size:0x198 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F6D3C; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F6DD4; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F7028; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F7068; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F7090; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F7268; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F72BC; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F733C; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F7364; // type:function size:0x54 scope:weak align:4 +_Error__FPce = .text:0x800F73B8; // type:function size:0x9C scope:local align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F7454; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F7494; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F75D0; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F7714; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F7828; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F7BE8; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F7D48; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F80BC; // type:function size:0x2D4 scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F8390; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F8484; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F8E5C; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F8E64; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800FA3A0; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800FA468; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800FA4D8; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800FA4E0; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800FA4E8; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800FA4F4; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800FA4FC; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800FA528; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800FA570; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800FA5BC; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800FA614; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800FA670; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800FA6A4; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800FA6E8; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800FA724; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800FA76C; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800FA98C; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800FAA00; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800FAA40; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800FAA80; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800FAAB4; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800FAAF4; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800FAB34; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800FAE08; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800FAE68; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800FB0D8; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800FB21C; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800FB280; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800FB448; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800FB4D8; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800FB538; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800FB58C; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800FB730; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800FB734; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800FB77C; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800FB828; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800FB9A4; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800FB9C8; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800FBAE8; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800FBB50; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800FBBB8; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800FBDBC; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800FBE20; // type:function size:0x74 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800FBE94; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800FC06C; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800FC10C; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800FC16C; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800FC2B8; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800FC33C; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800FC3C0; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800FC444; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800FC44C; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800FC454; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800FC45C; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800FC498; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800FC4A0; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800FC4A8; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800FC4AC; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800FC528; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800FC558; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800FC5C4; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800FC630; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800FC69C; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800FC708; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800FC710; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800FC714; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800FC71C; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800FC74C; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800FC754; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800FC784; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800FC7B4; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800FC81C; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800FC88C; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800FC894; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800FC924; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800FC990; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800FCBF8; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800FCC34; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800FCCA4; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800FCD30; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800FCD34; // type:function size:0xB8 scope:global align:4 +_Error__FPce = .text:0x800FCDEC; // type:function size:0x9C scope:local align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800FCE88; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800FCF24; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800FCF80; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800FCFA8; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800FCFB0; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800FCFB8; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800FCFE0; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800FD090; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800FD094; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800FD098; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800FD0D0; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800FD0E4; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800FD0F8; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800FD104; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800FD110; // type:function size:0x44C scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800FD55C; // type:function size:0x234 scope:global align:4 +__ct__8NaviPropFv = .text:0x800FD790; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800FE3B0; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800FE3D0; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800FE3F0; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800FE410; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800FE414; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800FE41C; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800FE650; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800FE770; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800FE774; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FEDDC; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FEE30; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FEE70; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FF278; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FF284; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FF2CC; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FF458; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FF490; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FF4E0; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FF89C; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FF8D0; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FFDD0; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FFFC4; // type:function size:0x7EC scope:global align:4 +callDebugs__4NaviFf = .text:0x801007B0; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x80100B2C; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x80101308; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x801013CC; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x80101408; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x8010140C; // type:function size:0xA58 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x80101E64; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x80101EA0; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x80101EF8; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x80101EFC; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x80101F48; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x80101F94; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x80101FE4; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x801021BC; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x8010252C; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x80102530; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x80102718; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x80103014; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x8010386C; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x80103E14; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x80103EFC; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x801041D4; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x801043D0; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x801043D4; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x80104410; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x8010444C; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x80104564; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x80104568; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x8010456C; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x80104570; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x80104574; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x80104578; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x8010457C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x80104580; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x80104584; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x80104588; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x8010458C; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x80104590; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x80104604; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x801046C8; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x801047C4; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x80104858; // type:function size:0x148 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x801049A0; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x80104B44; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x80104C54; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x80104E0C; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x80104F24; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x80104FA4; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x801050E8; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x801051D8; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x801052C8; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x80105388; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x801055BC; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x80105618; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x8010562C; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x8010596C; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x80105CE8; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x80105D0C; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x80105D10; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x80105D14; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x80105D58; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x80105D60; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x80105D68; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x80105D6C; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x80105D74; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x80105D7C; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x80105D84; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x80105D8C; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x80105D94; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x80105D9C; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x80105DA4; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x80107378; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x801073BC; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x80107428; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x80107628; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x80107678; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x801076A8; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x801076EC; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x80107740; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x80107808; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x801078F4; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x80107978; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x801079BC; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x801079C0; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x801079DC; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x801079E0; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x80107A34; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80107AC4; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x80107E04; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x80107E08; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x80107E5C; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x80107F68; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x80108278; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x8010864C; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x80108650; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x80108690; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x80108714; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x80108740; // type:function size:0xEB4 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x801095F4; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x80109618; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x80109678; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x8010968C; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x80109698; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x801096EC; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80109774; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x8010982C; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80109C94; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x80109CDC; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x80109D0C; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x80109DB8; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x80109FBC; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x80109FEC; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x8010A004; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x8010A0EC; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x8010A2D4; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x8010A2FC; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x8010A334; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x8010A378; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x8010A37C; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x8010A3EC; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x8010A438; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x8010A45C; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x8010A4A0; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x8010A514; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x8010A770; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x8010A774; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x8010A7B8; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x8010A894; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x8010A898; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x8010A89C; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x8010A8CC; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x8010A910; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x8010A9A4; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x8010A9C0; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x8010AA04; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x8010AA08; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x8010AA4C; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x8010AB18; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x8010AC54; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x8010ACB8; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x8010ACC4; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x8010AD08; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x8010AE2C; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x8010AFA4; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x8010B0F4; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x8010B128; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x8010B17C; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x8010B2BC; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x8010B4D0; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x8010B5F0; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x8010B684; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x8010B6B8; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x8010B6FC; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x8010B728; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x8010B758; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x8010B890; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x8010BE7C; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x8010BEE4; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x8010BF50; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x8010BF94; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x8010C034; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x8010C0C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x8010C0C8; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x8010C158; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x8010C19C; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x8010C1C8; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x8010C1F8; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x8010C5C4; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x8010C650; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x8010CBEC; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x8010CD58; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x8010CD5C; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x8010CDA0; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x8010CE44; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x8010CE50; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x8010CF98; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x8010D090; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x8010D094; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x8010D0D8; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x8010D168; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x8010D3B0; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x8010D3C4; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x8010D4B8; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x8010D4BC; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x8010D500; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x8010D590; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x8010D738; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x8010D73C; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x8010D820; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x8010D82C; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x8010D870; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x8010D9F4; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x8010DB04; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x8010DB3C; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x8010DC68; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x8010DCC8; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x8010DCF4; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x8010DD24; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x8010DF08; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x8010E364; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x8010E374; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x8010E3B8; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x8010E3C8; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x8010E4BC; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x8010E4C0; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x8010E504; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x8010E578; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x8010E57C; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x8010E580; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x8010E5C4; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x8010E668; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x8010E66C; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x8010E670; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x8010E6B4; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x8010E6E0; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x8010E710; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x8010E7DC; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x8010EC00; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x8010EC04; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x8010EC84; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x8010ECC8; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x8010ECCC; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x8010ECD0; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x8010ECD4; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x8010ED18; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x8010EDBC; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x8010EDC0; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x8010EE10; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x8010EE14; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x8010EE58; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x8010EE5C; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010EE78; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010EE7C; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010EEC0; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010EEC4; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010F018; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010F034; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010F038; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010F08C; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010F0D0; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010F168; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010F1BC; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010F1C0; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010F1C4; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010F230; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010F4A4; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010F580; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010F824; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010F858; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010F8DC; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010F920; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010FA24; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010FA74; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010FAC0; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010FB68; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010FBAC; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010FC7C; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010FCCC; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010FCF4; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010FD6C; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010FD74; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010FD7C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010FD84; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010FD8C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010FD94; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010FD9C; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010FDA4; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010FDAC; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010FDB4; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010FDB8; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010FDC0; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010FDC8; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010FDD0; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010FDD8; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010FDE0; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010FDF4; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x8010FE08; // type:function size:0x9C scope:local align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010FEA4; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8011031C; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x801103AC; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x801106F8; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x80110728; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801107D8; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801107DC; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x801107E0; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8011090C; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x80110910; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x80110994; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x80110998; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8011099C; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x80110A18; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x80110AB4; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x80110AB8; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x80110B78; // type:function size:0x2E4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x80110E5C; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x80110E60; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x80110ED8; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x80110EDC; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x80110EE0; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x80110F58; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x80110F5C; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x80110F60; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x80111034; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x80111234; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x801116D4; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80111834; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80111870; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x80111874; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x80111A8C; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x80111AC0; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x80111AFC; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x80111C14; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x80111C18; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x80111C1C; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x80111C20; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x80111C24; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x80111C28; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x80111C2C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x80111C30; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x80111C34; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x80111C38; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x80111C3C; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80111C40; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80111C44; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80111C48; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x80111C4C; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x80111C8C; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x80111D78; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFv = .text:0x801121DC; // type:function size:0x1D8 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x801123B4; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x80112504; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x8011268C; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x80112808; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x80112B28; // type:function size:0xD5C scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x80113884; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x801139B4; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x80113A44; // type:function size:0xCE4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x80114728; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x80114B88; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x8011552C; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x801157DC; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x801157E8; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x80115820; // type:function size:0x624 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x80115E44; // type:function size:0x600 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x80116444; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x801166A4; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x80116C68; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x80116C74; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80116CC0; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x80116E5C; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x80116E80; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x80116ED0; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x80116F50; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x80116FD0; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x80117028; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x80117090; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80117128; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x801171D0; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80117268; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x8011730C; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x801173B4; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x80117478; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x8011747C; // type:function size:0x9C scope:local align:4 +isNan__Ff = .text:0x80117518; // type:function size:0x5C scope:global align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x80117574; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x80117610; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x801177C0; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x80117980; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x80117B38; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x80117D64; // type:function size:0x254 scope:global align:4 +_Error__FPce = .text:0x80117FB8; // type:function size:0x9C scope:local align:4 +__ct__11SlimeEffectFv = .text:0x80118054; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x801180BC; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x801180D8; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x801180F4; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80118184; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x80118220; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x8011826C; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x801191C0; // type:function size:0x60 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x80119220; // type:function size:0x80 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x801192A0; // type:function size:0x70 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x80119310; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x80119344; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x801193D0; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x80119404; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x80119484; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x801194A0; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x801194BC; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x80119508; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x80119588; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x801195A4; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x801195C0; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x801195DC; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x80119628; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x8011975C; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x801197F0; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x80119824; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x80119858; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x80119874; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x80119890; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x801199DC; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x80119A4C; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x80119A54; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x80119C18; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x80119C34; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x80119C80; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x80119D60; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119DD0; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x8011A11C; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x8011A1F4; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x8011A1F8; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x8011A2E8; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x8011A2EC; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x8011A330; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x8011A368; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x8011A370; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x8011A430; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x8011A4E4; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x8011A518; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x8011A54C; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x8011A580; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x8011A5B4; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x8011A6B0; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011A744; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x8011AAA8; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x8011AAE0; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011AB1C; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011AB24; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011AB2C; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x8011AB34; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x8011AC00; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x8011AC50; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x8011ACA0; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x8011AE08; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x8011AE10; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x8011AF1C; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x8011B028; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x8011B034; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x8011B050; // type:function size:0x68 scope:global align:4 +_Error__FPce = .text:0x8011B0B8; // type:function size:0x9C scope:local align:4 +selectRandomly__FP6Choicei = .text:0x8011B154; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x8011B204; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x8011B214; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x8011B26C; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x8011B2DC; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x8011B34C; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x8011B3A0; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x8011B3C8; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x8011B3F8; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x8011B430; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x8011B43C; // type:function size:0x54 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x8011B490; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x8011B5FC; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x8011BA20; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x8011BC8C; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x8011BE74; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x8011C234; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x8011C3B4; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x8011C414; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x8011C434; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x8011C4A8; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x8011C4C0; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x8011C5DC; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x8011C6EC; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x8011C808; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x8011C838; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x8011C8BC; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x8011C8C4; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8011C8CC; // type:function size:0x9C scope:local align:4 +makeObjectMapParts__Fv = .text:0x8011C968; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x8011CB28; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x8011CBB8; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x8011CCD0; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x8011D334; // type:function size:0x288 scope:global align:4 +init__8MapPartsFv = .text:0x8011D5BC; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x8011D5C0; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x8011D5D8; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x8011D634; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x8011D6AC; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x8011D7AC; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x8011D87C; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x8011D8BC; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x8011DC28; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x8011DE14; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x8011DE18; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x8011DE1C; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x8011EAEC; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x8011EB28; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x8011EBCC; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x8011EC48; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x8011ECC0; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x8011ED4C; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x8011ED8C; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x8011EDFC; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x8011EE20; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x8011EE44; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x8011EE54; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x8011EF1C; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x8011EF64; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x8011F01C; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x8011F054; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x8011F0F8; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011F4B8; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011F4BC; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011F568; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011F5FC; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011F660; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011FAD8; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011FBC4; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011FC9C; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011FCCC; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011FDE4; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011FE5C; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011FEE8; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011FF28; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011FFF4; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x80120184; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x801201B0; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x80120234; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8012023C; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8012024C; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x80120254; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x80120260; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x801203A8; // type:function size:0x3C scope:global align:4 +_Error__FPce = .text:0x801203E4; // type:function size:0x9C scope:local align:4 +makeObjectTeki__Fv = .text:0x80120480; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x801204C0; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x80120548; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x801205D4; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x80120668; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x801206D0; // type:function size:0xAC scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8012077C; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8012089C; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x801208D4; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x801208FC; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x80120A10; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x80120A68; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x80120AE4; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x80120B0C; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x80120B9C; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x80120CD0; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x80120D28; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x80120D64; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x80120D84; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x80120DC8; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x80120E70; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x80120EC8; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x80120EE8; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x80120F68; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x80120F88; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x80120FF8; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x80121088; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x801210F4; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x80121118; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8012113C; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8012118C; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x80121204; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x801212D8; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x80121324; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x80121578; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x80121594; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x801215D0; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x80121600; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x80121620; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x80121630; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x801216D8; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x8012177C; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x80121810; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x801218B0; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x80121920; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x80121954; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x80121A28; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x80121A5C; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x80121AC0; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x80121B84; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x80121BE8; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x80121BF0; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x80121C70; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x80121CF8; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x80121E94; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x80121EC0; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x80121EE4; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x80121FB0; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x80121FC0; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x80121FE8; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x80122018; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x80122044; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x80122070; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x801220B0; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x801220CC; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x8012210C; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8012211C; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8012215C; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x80122190; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x80122204; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x80122208; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x801222F0; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x801223CC; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x801223D8; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x80122570; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x801225EC; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x8012265C; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x80122690; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x80122750; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x801227B4; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x80122850; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x8012289C; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x801228D4; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8012293C; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x8012298C; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x80122A68; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x80122B28; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x80122B4C; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x80122BD0; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x80122CA0; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x80122D38; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x80122FF8; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x80123050; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x8012305C; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x8012313C; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x8012322C; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x801232E8; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x801233B4; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x801233EC; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x80123428; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x80123460; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x80123498; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x801234D0; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x80123520; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x80123634; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x80123674; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x801236A4; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x801236DC; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x8012372C; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x8012377C; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x801237AC; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x80123800; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x80123838; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x80123870; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x801238A4; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x801239E0; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x80123A5C; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x80123A8C; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x80123A94; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x80123B28; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x80123B5C; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x80123B8C; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x80123BC4; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x80123C08; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x80123C5C; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x80123C98; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x80123DD4; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x80123E24; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x80123F38; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x80123F68; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x80123F9C; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x80123FCC; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x80124000; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x80124050; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x80124084; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x801240D4; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x80124104; // type:function size:0x44 scope:weak align:4 +_Error__FPce = .text:0x80124148; // type:function size:0x9C scope:local align:4 +__ct__14PaniMotionInfoFi = .text:0x801241E4; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x80124218; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x80124248; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x80124254; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x80124288; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x80124294; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x80124300; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x8012436C; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x801243B0; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x8012441C; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x80124424; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8012444C; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x801244BC; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x8012456C; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x80124678; // type:function size:0x100 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x80124778; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x80124938; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x80124A5C; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x80124AB0; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x80124B5C; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x80124B98; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x80124C14; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x80124C74; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x80124CCC; // type:function size:0x58 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80124D24; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x80124D7C; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x80124E00; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x80124EC0; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x80124F10; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x80125178; // type:function size:0x3C scope:global align:4 +__ct__12PaniTestNodeFv = .text:0x801251B4; // type:function size:0x554 scope:global align:4 +setTestMode__12PaniTestNodeFi = .text:0x80125708; // type:function size:0x84 scope:global align:4 +update__12PaniTestNodeFv = .text:0x8012578C; // type:function size:0x48C scope:global align:4 +updatePikis__12PaniTestNodeFv = .text:0x80125C18; // type:function size:0x2B4 scope:global align:4 +updateTekis__12PaniTestNodeFv = .text:0x80125ECC; // type:function size:0x1BC scope:global align:4 +animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80126088; // type:function size:0x6C scope:global align:4 +draw__12PaniTestNodeFR8Graphics = .text:0x801260F4; // type:function size:0x684 scope:global align:4 +drawPiki__12PaniTestNodeFP8ViewPikiR8Graphics = .text:0x80126778; // type:function size:0x34 scope:global align:4 +drawTeki__12PaniTestNodeFP4TekiR8Graphics = .text:0x801267AC; // type:function size:0x34 scope:global align:4 +init__15PaniTestSectionFv = .text:0x801267E0; // type:function size:0x78 scope:global align:4 +@32@animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80126858; // type:function size:0x8 scope:weak align:4 +read__15ParaParametersIFR6Stream = .text:0x80126860; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x801268E0; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x80126960; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x801269B8; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x80126A38; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x80126AB8; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x80126B10; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x80126BB8; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x80126C48; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x80126CD8; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x80126D4C; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x80126DAC; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x80126E0C; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x80126E5C; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80126E60; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80126E64; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x80126E68; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80126E6C; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80126E70; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x80126E74; // type:function size:0x4 scope:global align:4 +__ct__15PcamControlInfoFv = .text:0x80126E78; // type:function size:0x24 scope:global align:4 +init__15PcamControlInfoFbbbbbbbfff = .text:0x80126E9C; // type:function size:0x2C scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x80126EC8; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x80126FFC; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x80127024; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x801271B0; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x801271E8; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x801272C4; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x80127790; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x801277A0; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x801278F4; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x80127A70; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x80127A9C; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x80127BAC; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x80127F4C; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x80127F94; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x801281BC; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x801281EC; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80128270; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x801282EC; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x801283BC; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x80128428; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x80128488; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x8012849C; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x80128500; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x80128518; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80128578; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x801285D4; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x80128668; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x80128688; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x801286D0; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x8012893C; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x801289F0; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x80128A44; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x80128A80; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x80128BBC; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x80128C0C; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x80128D20; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x80128D50; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x80128D84; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x80128DD4; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x80128E08; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x80128E58; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x80128E88; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x80128ECC; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x801290C4; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x801290E8; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x80129138; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x801291D0; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x80129208; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x8012920C; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x80129210; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x80129250; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x80129398; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x801293D0; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x801293D4; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x80129420; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x801294EC; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x801295C4; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x8012963C; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x801296C0; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x80129738; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x801297A8; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x80129A38; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x80129AFC; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x80129B6C; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x80129C04; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x80129C14; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x80129C24; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x80129C34; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x80129C3C; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x8012A6B4; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x8012A6CC; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x8012A6E0; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x8012A7B8; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x8012A7C8; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x8012A810; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x8012A894; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x8012A918; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x8012A994; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x8012A9E8; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x8012AA50; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x8012AB1C; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x8012AB90; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x8012ABE0; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x8012ABE8; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x8012AC48; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x8012AC54; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x8012AD30; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x8012AD4C; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x8012AD68; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x8012AD88; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x8012ADA8; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x8012AE04; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x8012AE60; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x8012AE80; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x8012AEA0; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x8012AEC0; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x8012AEE0; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x8012AF28; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x8012AF38; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x8012B044; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x8012B0E4; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x8012B0F0; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x8012B0F8; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x8012B104; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x8012B120; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x8012B12C; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x8012B144; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x8012B174; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x8012B178; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x8012B17C; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x8012B1BC; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x8012B1D0; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x8012B34C; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x8012B3C0; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x8012B470; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x8012B4A4; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x8012B4F0; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x8012B608; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x8012B664; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x8012B68C; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x8012B6DC; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x8012B810; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x8012B8BC; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x8012B940; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x8012B94C; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x8012BA0C; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x8012BB30; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x8012BC1C; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x8012BD98; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x8012BDF4; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x8012BE90; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x8012BF18; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x8012C018; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x8012C03C; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x8012C044; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x8012C04C; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x8012C054; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x8012C05C; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x8012C064; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x8012C06C; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x8012C07C; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x8012C0D8; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x8012C11C; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x8012C120; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x8012C1A0; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x8012C1A4; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x8012C24C; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x8012C254; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x8012C308; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x8012C310; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x8012C35C; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x8012C3DC; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x8012C45C; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x8012C548; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x8012C568; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x8012C65C; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x8012C6C0; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x8012C70C; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x8012C720; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x8012C7EC; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x8012C87C; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x8012C928; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x8012C9B4; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012CA6C; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x8012CAAC; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012CABC; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x8012D11C; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x8012D12C; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x8012D144; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012D15C; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x8012D288; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x8012D310; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x8012D3E4; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x8012D40C; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x8012D450; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x8012D484; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x8012D500; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x8012D558; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x8012D5DC; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x8012D618; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x8012D620; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x8012D62C; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x8012D64C; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x8012D6AC; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x8012D6E4; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x8012D71C; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x8012D760; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x8012D798; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x8012D81C; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x8012DBC0; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x8012DF60; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x8012DFE4; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x8012E380; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x8012F8EC; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x8012FA34; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x8012FA7C; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x8012FAD4; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x8012FB64; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012FBE8; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x8012FBF0; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x8012FC50; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x8012FCB0; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x8012FD38; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x8012FDBC; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x80130240; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x801319DC; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x80131B44; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x80131C54; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x80131E44; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x80131E84; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x80131F30; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x80131F60; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x80131FD0; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x80132044; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x8013219C; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x8013227C; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x801322E0; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x801323DC; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x80132498; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x801325A8; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x801325F8; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x8013262C; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x80132660; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x80132694; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8013274C; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x80132774; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x8013279C; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x8013283C; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x801328DC; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80132A38; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80132B18; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80132B58; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x80132C14; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x80132C58; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x80132E6C; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x80132EC0; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x80132F60; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x80132F74; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x8013305C; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x801330C0; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x80133118; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x80133190; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x801331E0; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x8013324C; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x801332A4; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x80133334; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x801333BC; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x80133480; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x801334D8; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x80133564; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x801335C4; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x80133624; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x80133694; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x80133704; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x80133718; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x8013372C; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x80133740; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x80133754; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x80133790; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x801337CC; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x80133820; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x80133858; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x80133884; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x801338B0; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x8013393C; // type:function size:0x4 scope:global align:4 +_Error__FPce = .text:0x80133940; // type:function size:0x9C scope:local align:4 +__ct__19TaiIwagonParametersFv = .text:0x801339DC; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x80133AE4; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x80133B68; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x80134028; // type:function size:0x128 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x80134150; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x801341C0; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x801341DC; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x801341FC; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x80134314; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x80134524; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x801345A0; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x801345E4; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x8013465C; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x801347F4; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x80134844; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x80134894; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x801348E4; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x80134958; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x80134A14; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x80134AD4; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x80134B80; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x80134C70; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x80134D98; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x80134EC0; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x80134F44; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x8013545C; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x801366F4; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x801367A4; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x80136958; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x80136A7C; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x80136AF4; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80136B48; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80136B4C; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x80136CAC; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x8013707C; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x801370D4; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80137184; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x801371B4; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x801371E4; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x80137220; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x8013724C; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x8013728C; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x8013733C; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x801374B8; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x80137544; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x801376A8; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x801376B0; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x80137768; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x80137AE8; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x80137B6C; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x80138420; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x801384C8; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x801385D4; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x801385E8; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x80138664; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x801386B4; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x8013873C; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x80138B00; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x8013901C; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x80139120; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x801391C8; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80139340; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x80139378; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x80139398; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x80139494; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x80139508; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x8013952C; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x80139578; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x80139598; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x801395A4; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x801395E0; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x8013963C; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x80139710; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x80139714; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x80139778; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x8013977C; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x801397A0; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x801397DC; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x80139888; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x801398B0; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x80139928; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x80139944; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x80139960; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x801399E0; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x80139A60; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x80139B30; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x80139C00; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x80139C34; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x80139C68; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x80139C9C; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x80139CD0; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x80139D78; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x80139E20; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x80139EAC; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x80139ECC; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x80139F78; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80139FA8; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80139FEC; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80139FF0; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x8013A12C; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x8013A19C; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x8013A224; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x8013A228; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x8013A2A0; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x8013A2E4; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x8013A430; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x8013A58C; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x8013A720; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x8013A7F0; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x8013A920; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x8013A94C; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x8013A9F8; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x8013AD64; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x8013ADA8; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x8013ADC8; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x8013AF48; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x8013AFCC; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x8013B530; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x8013D7F4; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013D878; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013D934; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x8013DB84; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x8013DC40; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013DCE0; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013DD34; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013DDE0; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x8013DE88; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x8013DF40; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x8013DFE8; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013E070; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013E118; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x8013E1B0; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x8013E44C; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x8013E464; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x8013E588; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x8013E5E8; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x8013E60C; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x8013E678; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x8013E9DC; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x8013EB58; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x8013EE24; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x8013EF08; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x8013EFEC; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x8013F184; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x8013F2B0; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x8013F484; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013F548; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x8013F6F0; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x8013F6F8; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x8013F70C; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x8013F7E4; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x8013F828; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x8013F8AC; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x8013FDEC; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x8013FE70; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x801403AC; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x801419C8; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x80141A90; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x80141BAC; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x80141D70; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x80141DC4; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x80141EEC; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x80142034; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x8014244C; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x801424D0; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x801425FC; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x80142760; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x801427E4; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x80142840; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x801428A0; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x801428D4; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x80142930; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x80142B4C; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x80142B54; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x80142B5C; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x80142B60; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x80142C10; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x80142C18; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x80142D08; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x80142D60; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x80142DDC; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x80142E60; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x80143054; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x80143544; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x801437F8; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x80143830; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x80143978; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x80143A78; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x80143ADC; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x80143B60; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x80143BC0; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x80143C38; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x80143C8C; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x80143CF4; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x80143D2C; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x80143D60; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x80143DC4; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x80143DC8; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x80143E58; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x80143F00; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x80143F1C; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x80143F28; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x80143F3C; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x80143F6C; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x80143FC4; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x80143FE8; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x8014400C; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x80144058; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x801440A4; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x801440B0; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x801440F0; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x80144108; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x8014412C; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x801441B4; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x8014428C; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x801442CC; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x801442EC; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x80144384; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x801444C0; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x80144500; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x80144550; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x801445C0; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x801445DC; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x801445F8; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x8014462C; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x801446B0; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x80144AF8; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x80144F34; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x80146620; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801466A4; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x801467A0; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x801468C8; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801468EC; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x80146920; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x8014693C; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x80146B18; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x80146B5C; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x80146B90; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x80146C0C; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x80146DE8; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x80146FD8; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x80147000; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x80147028; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x801470EC; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80147144; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x80147208; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x8014725C; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x801472F8; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x8014737C; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x80147508; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x801479FC; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x80147A88; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x80147C7C; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x80147D4C; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x80147D84; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x80147DFC; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x80147FA4; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x8014801C; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x80148120; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x801482F0; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x80148374; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x801484BC; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x80148608; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x80148974; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x80148994; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x801489F8; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x80148A18; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80148A40; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x80148AE8; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x80148B08; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x80148BB0; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x80148BD8; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x80148C5C; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x80148CB0; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x80148DC4; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x80148E34; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x80148F18; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x80148F9C; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x80149028; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x80149030; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x8014903C; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x8014904C; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x8014905C; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80149064; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80149070; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x80149088; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x801490A4; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x801490C0; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x801490DC; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x801490F8; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80149114; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x80149128; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x80149130; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x80149138; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80149140; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x80149148; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80149150; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x80149158; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80149160; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x80149168; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80149170; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x80149204; // type:function size:0x80 scope:global align:4 +_Error__FPce = .text:0x80149284; // type:function size:0x9C scope:local align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80149320; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x80149384; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x8014938C; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x801493B8; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x80149404; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x80149420; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80149438; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80149450; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x801494F4; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x80149518; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x80149524; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x80149530; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x801495E0; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x801495F0; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x80149640; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80149654; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x801496FC; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x80149934; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x8014995C; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x80149CF4; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x80149D58; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x8014A0D0; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x8014A1EC; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x8014A26C; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x8014A30C; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x8014A3D4; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x8014A438; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x8014A4D0; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x8014A500; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014A5A4; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x8014A624; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x8014A804; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x8014A810; // type:function size:0x270 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x8014AA80; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x8014AB14; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x8014AC64; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x8014ACE4; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x8014AD90; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x8014AE64; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x8014AED8; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x8014AF74; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x8014AFA0; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x8014AFD0; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x8014B01C; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x8014B040; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x8014B190; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x8014B244; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x8014B3E0; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x8014B688; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x8014B874; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x8014B8B4; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x8014B98C; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x8014BB1C; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x8014BD6C; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x8014BD88; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x8014BDA4; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x8014BDC4; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x8014BDE4; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x8014BDEC; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x8014BDF0; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x8014BEA4; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x8014BF8C; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x8014BFAC; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x8014C034; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x8014C0F0; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x8014C280; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x8014C3D4; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x8014C528; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x8014C6DC; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x8014C7CC; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x8014C9A8; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x8014CA70; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x8014CABC; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x8014CD10; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x8014CDEC; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x8014CEF4; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x8014CF70; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x8014D000; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x8014D150; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x8014D184; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x8014D1C8; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x8014D230; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x8014D3DC; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x8014D444; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x8014D6C8; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x8014D83C; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x8014D984; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x8014D9D8; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x8014DA18; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x8014DAB0; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x8014DACC; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x8014DB1C; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x8014DB6C; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x8014DBBC; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x8014DD04; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x8014DD10; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x8014DD3C; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x8014DD70; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x8014DDB4; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x8014DE28; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x8014DEC0; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x8014DEF4; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x8014DF28; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x8014DF58; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x8014DF84; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x8014DFC4; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x8014E030; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x8014E1A4; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x8014E3E0; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x8014E490; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x8014E750; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x8014E848; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x8014E93C; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x8014E9C4; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x8014EB04; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x8014EB84; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x8014EBA8; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x8014EBCC; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x8014EC24; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x8014ECCC; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x8014ED10; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x8014ED58; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x8014EDB4; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x8014EDD4; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x8014EDF8; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x8014EE1C; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x8014EE4C; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x8014EE7C; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x8014EF5C; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014EF88; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x8014EF9C; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x8014EFF0; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x8014F01C; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x8014F048; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x8014F078; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x8014F08C; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x8014F0AC; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x8014F0D0; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x8014F178; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x8014F1E8; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x8014F258; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x8014F26C; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x8014F314; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x8014F328; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x8014F40C; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x8014F47C; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x8014F494; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x8014F5D8; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014F5FC; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x8014F620; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014F65C; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x8014F718; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x8014F774; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x8014F7A8; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x8014F7D8; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x8014F7E8; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x8014F82C; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x8014F8BC; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x8014F900; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x8014F908; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x8014F960; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x8014F968; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x8014F974; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x8014FC74; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x8014FE64; // type:function size:0x68 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x8014FECC; // type:function size:0xD8 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x8014FFA4; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x80150020; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x8015012C; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x80150170; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x80150184; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x80150194; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x801501A4; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x801501B4; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x801502D0; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x80150378; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x80150420; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x8015042C; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x8015049C; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x801504F0; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x80150574; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x8015057C; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x801507C0; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x80150E50; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x80150F64; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x80151138; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8015118C; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x801511A0; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x80151AF4; // type:function size:0x3C4 scope:global align:4 +_Error__FPce = .text:0x80151EB8; // type:function size:0x9C scope:local align:4 +__ct__15TekiPersonalityFv = .text:0x80151F54; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x8015214C; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x80152278; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x80152318; // type:function size:0x304 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x8015261C; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x801526AC; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x801526BC; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x801526C0; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x801526C4; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x801526C8; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x801526CC; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x80152700; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x80152734; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x80152768; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x8015276C; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x801527D8; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x80152864; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x801528EC; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x801529D8; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x801529F8; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x80152A18; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x80152A38; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x80152AB8; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x80152B48; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x80152C98; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x80152DD4; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x80153380; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x8015346C; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x80153580; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x80153618; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x801538B8; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x80153A1C; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x80153A50; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x80153AA0; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x80153AD0; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x80153C14; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x80153EE4; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x801541C0; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x80154318; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x80154378; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x801543D8; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x8015449C; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x80154554; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x80154580; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x801546D8; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x80154830; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x80154878; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x801548C8; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x80154934; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x80154A34; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x80154AC0; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x80154AC4; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x80154B30; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x80154B60; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x80154C74; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x80154C7C; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x80154CB8; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x80154D3C; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x80154D40; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x80154E50; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x80154EBC; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x80154EC4; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x80154ECC; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x80154ED4; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x80154EDC; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x80154EE4; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x80154EEC; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x80154F08; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x80154F10; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x80154F18; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x80154F1C; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x80154F20; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x80154F24; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x80154F28; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x80154F2C; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x80154F70; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x80155004; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x80155044; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x8015510C; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x8015517C; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x801551F8; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x80155290; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x801553FC; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x80155404; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x8015540C; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x80155458; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x801554D8; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x80155558; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x8015584C; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x80155890; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x801558A8; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x80156274; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x8015642C; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x801568EC; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x801576A0; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x80157760; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x80157810; // type:function size:0x140 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x80157950; // type:function size:0x18C scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x80157ADC; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x80157B60; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x80157B6C; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x80157B7C; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x80157BE8; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x80157BF0; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x80157D00; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x801586C8; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x80158808; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x80158810; // type:function size:0xC0 scope:global align:4 +doKill__6SpiderFv = .text:0x801588D0; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x80158928; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x80158950; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x801589BC; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x80158B08; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x80158B80; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x80158BA4; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x80158BE8; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x80158D48; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x80158D50; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x80158DA0; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80158DA8; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x80158DC8; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x80158E70; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x80158EEC; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80158F94; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x80158FB4; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x80158FC8; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x80158FD8; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x8015901C; // type:function size:0x1DC scope:global align:4 +dieState__8SpiderAiFv = .text:0x801591F8; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x80159458; // type:function size:0x19F0 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x8015AE48; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x8015AFCC; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x8015B1A8; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x8015B3D0; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x8015B490; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x8015B814; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x8015BACC; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x8015BC18; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x8015BCF8; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x8015BF30; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x8015C084; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x8015C0A0; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x8015C0BC; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x8015C0D8; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x8015C268; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x8015C2F8; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x8015C460; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x8015C4B4; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x8015C5EC; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x8015C7A0; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x8015CB44; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x8015CE2C; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x8015CF94; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x8015D0FC; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x8015D2CC; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x8015D58C; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x8015D798; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x8015D90C; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x8015DA3C; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x8015DC84; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x8015DEB4; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x8015E178; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x8015E2B8; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015E528; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x8015EBAC; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015EE98; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x8015F53C; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x8015F578; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8015F6E0; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x8015F704; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x8015FFF4; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x801600F8; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x80160100; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x8016010C; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x80160114; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x801601CC; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x80160218; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x80160240; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x801602A4; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x8016034C; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x801603C4; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x80160438; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x8016045C; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x801604B0; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x80160524; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x801605D8; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x80160628; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x80160630; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x80160700; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x8016079C; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x80160818; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x80160920; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x80160998; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x80160A44; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x80160A54; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x80160A98; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x80160B9C; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x80161424; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x80161554; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x801615C4; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x80161728; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x80161758; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x801619F0; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x80161C88; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x80161EE4; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x80162140; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x80162554; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x80162A2C; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x80162DA4; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x8016312C; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x80163334; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x80163380; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x801633A0; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x8016352C; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x80163AF4; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x80163AFC; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x80163CAC; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x801650E8; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x80165308; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x80165370; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x801654C8; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x80165564; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x8016558C; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x801658A4; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x80165B98; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x80165F00; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x80166154; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x80166398; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x80166528; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x80166978; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x80166B70; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x80166D08; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x80166FFC; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x801673B4; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x801678D8; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x80167E18; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x80167F24; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x80168104; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x80168ABC; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x80168B20; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x80168B54; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x801690CC; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x801692A0; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x801692F4; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80169348; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80169354; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x8016935C; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x801695D8; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x8016960C; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x80169610; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x801696B4; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x8016975C; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x801697FC; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x80169820; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x80169844; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x801699AC; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x801699CC; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x80169E0C; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x80169E2C; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x80169E38; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x80169E58; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80169F68; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80169FB8; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x80169FC0; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x80169FC8; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x8016A070; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x8016A084; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x8016A394; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x8016A458; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x8016A5BC; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x8016A8F8; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x8016A9E0; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x8016AAF8; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x8016AC3C; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x8016AD60; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x8016AE48; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x8016AF4C; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x8016B1CC; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x8016B44C; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x8016B6E8; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x8016B854; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x8016BB5C; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x8016BE68; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x8016C000; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x8016C2E4; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x8016C820; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x8016CCB4; // type:function size:0x2CE0 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x8016F994; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x8016F9C8; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x8016FB04; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016FDA8; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x80170094; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x801704F8; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x80170610; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x80170688; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x80170708; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x80170710; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x80170718; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x80170734; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x80170758; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x80170788; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x801707B8; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x801707D8; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x801707DC; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x801707E0; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x8017082C; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x80170830; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x80170834; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x8017083C; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x80170FF8; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x80171140; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x80171148; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x80171168; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x801711EC; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8017124C; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x80171274; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x801712D8; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x80171450; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x801714A4; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x8017151C; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x80171540; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x80171594; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x801715E8; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x801715F0; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x80171640; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x80171648; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x80171690; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x8017179C; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x80171818; // type:function size:0x190 scope:global align:4 +keyAction1__6KingAiFv = .text:0x801719A8; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x80171A8C; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x80171ADC; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x80171AF0; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x80171B80; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x80171BC4; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x80171C04; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x80171D58; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x80171D6C; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x80171D80; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x80172200; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x80172660; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x80172908; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x80172934; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x80172BC4; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x8017307C; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x8017319C; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x80173420; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x80173538; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x80173604; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x8017364C; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x80173718; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x80173A18; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x80173D24; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x80174104; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x8017454C; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x80174804; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x80174994; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x80174DA0; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x80174EEC; // type:function size:0x1A4 scope:global align:4 +update__6KingAiFv = .text:0x80175090; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x80178114; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x801781F0; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x8017843C; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x8017864C; // type:function size:0x244 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x80178890; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x8017896C; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x80178BA8; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x80178BC4; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x80178BE0; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x80178E1C; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x80178E44; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x80179024; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x80179164; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x801792FC; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x80179874; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80179AA4; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x8017A710; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8017A8AC; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017A92C; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x8017AAD8; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x8017AAF4; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x8017AB10; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017AB3C; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x8017AD3C; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x8017ADB4; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x8017B0E4; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x8017B168; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x8017B170; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x8017B1C4; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x8017B210; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x8017B238; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x8017B258; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x8017B2F0; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x8017B35C; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x8017B394; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x8017B3D8; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x8017B430; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x8017B480; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x8017B488; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x8017B634; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x8017B66C; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x8017B6E0; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x8017B7F0; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x8017B86C; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x8017B8C8; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x8017B970; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x8017B984; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x8017B9AC; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x8017B9E8; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x8017BAC4; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x8017BCAC; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x8017BED8; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x8017C080; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x8017C260; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x8017C324; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x8017C6C4; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x8017C898; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8017D13C; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x8017D164; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x8017D418; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x8017D4B0; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x8017D4B8; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x8017D508; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x8017D5A4; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x8017D5F0; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x8017D618; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x8017D664; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x8017D744; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x8017D7C8; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x8017D7EC; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x8017D830; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x8017D884; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x8017D8D4; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x8017D8DC; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x8017D950; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x8017DAE4; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x8017DB60; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x8017DBA4; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x8017DBC0; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x8017DBD4; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x8017DC9C; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x8017DCE0; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x8017DD18; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x8017DECC; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x8017DF2C; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x8017E100; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x8017E328; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x8017E504; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x8017E704; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x8017E8D0; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x8017F168; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x8017F18C; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x8017F21C; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x8017F288; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x8017F290; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x8017F2DC; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x8017F318; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x8017F31C; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x8017F368; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x8017F40C; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x8017F478; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017F494; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x8017F4D8; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x8017F528; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x8017F530; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x8017F5C0; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x8017F644; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x8017F64C; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x8017F6AC; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x8017F6E0; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x8017F6E4; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x8017F704; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x8017F79C; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x8017F808; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x8017F82C; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x8017F870; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x8017F8C0; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x8017F8C8; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x8017F8E8; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x8017F95C; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x8017F9D8; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x8017F9DC; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x8017F9E0; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x8017F9F4; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x8017FA04; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x8017FA08; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x8017FCD8; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x8017FD68; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x8017FDEC; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017FDF4; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x8017FE58; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x8017FE8C; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x8017FE90; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x8017FEB0; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x8017FF48; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017FFB4; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x8017FFD8; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x8018001C; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x80180070; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x801800C0; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x801800C8; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x801800E8; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x8018015C; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x801801D8; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x801801DC; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x801801E0; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x801801F4; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x80180204; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x80180208; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x80180214; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x80180758; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x801807E8; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x8018086C; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x801808C8; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x801808D0; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x80180910; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x80180950; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x8018099C; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x801809C4; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x80180A10; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x80180AA8; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x80180B14; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x80180B38; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x80180B7C; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x80180B84; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x80180BD4; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x80180BDC; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x80180C5C; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x80180D14; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x80180DCC; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x80180DD0; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x80180E4C; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x80180F08; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x80180FD8; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x80181244; // type:function size:0x30C scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x80181550; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x80181600; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x801816C0; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x8018185C; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x80181B54; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x80181BA0; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x80181BC8; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x80181C28; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x80181D24; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x80181DC0; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x80181EE0; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x80182080; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x8018210C; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x8018222C; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x801823F0; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x80182530; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x8018269C; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x801829B8; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x801829CC; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x801829F4; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x80182A7C; // type:function size:0x2C4 scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x80182D40; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x8018321C; // type:function size:0x174 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x80183390; // type:function size:0x6A4 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x80183A34; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x80183AC8; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x80183B48; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x80183B74; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x80183BDC; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x80183D50; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x80183D8C; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x80183DF0; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x80183E78; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x801841A0; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x8018420C; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x80184290; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x80184314; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x8018442C; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x8018451C; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x8018460C; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x80184974; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x80184998; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x801849F8; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x80184A40; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x80184D98; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x80184E18; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x80184E80; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x80184EF8; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x80185038; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x8018505C; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x801851D4; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x801852C8; // type:function size:0x14C scope:global align:4 +setSpecialNumber__3zenFii = .text:0x80185414; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x80185440; // type:function size:0x200 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x80185640; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x801856D0; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x80185744; // type:function size:0x128 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x8018586C; // type:function size:0x37C scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x80185BE8; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x80185CEC; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x801860A0; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801860A8; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x801862A0; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x801862DC; // type:function size:0x498 scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x80186774; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x80186858; // type:function size:0x940 scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x80187198; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x80187230; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x801872F4; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x801873C8; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x8018749C; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x801877C0; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x8018784C; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x80187C0C; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x80187CBC; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x80187D18; // type:function size:0x7C scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x80187D94; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x80187E50; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x80187E80; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x80187F60; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x80188034; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80188200; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x8018849C; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x801884FC; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x80188588; // type:function size:0xDDC scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x80189364; // type:function size:0x17C scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x801894E0; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x80189C24; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x80189FA8; // type:function size:0xE8 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x8018A090; // type:function size:0x9CC scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x8018AA5C; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x8018AAE8; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x8018AB80; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x8018ADA0; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x8018B284; // type:function size:0x504 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x8018B788; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x8018B7D0; // type:function size:0x128 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x8018B8F8; // type:function size:0x168 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x8018BA60; // type:function size:0x344 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x8018BDA4; // type:function size:0x678 scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x8018C41C; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C588; // type:function size:0x140 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x8018C6C8; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C6E8; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C7C8; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C87C; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x8018C890; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C980; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x8018CE60; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x8018D18C; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x8018D2F0; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x8018D810; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x8018D9C8; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x8018DCB8; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x8018DFF8; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E2C0; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x8018EBB8; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x8018EBC4; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x8018ED7C; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x8018EF34; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x8018EFEC; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x8018F074; // type:function size:0x430 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8018F4A4; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018F810; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018FA0C; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x8018FBE0; // type:function size:0xA20 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x80190600; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x80190624; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x80190780; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x801907C8; // type:function size:0x118 scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x801908E0; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x80190960; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x801909BC; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x80190A14; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x80190A68; // type:function size:0x1DC scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x80190C44; // type:function size:0x20C scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x80190E50; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x80190E98; // type:function size:0x230 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x801910C8; // type:function size:0x168 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x80191230; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x80191244; // type:function size:0x568 scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x801917AC; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x801918B0; // type:function size:0x914 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x801921C4; // type:function size:0x168 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x8019232C; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x80192370; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x801923A8; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x801923E0; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x80192604; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x80192794; // type:function size:0xC18 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x801933AC; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x801934BC; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x80193600; // type:function size:0x14C scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x8019374C; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x80193848; // type:function size:0x174 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x801939BC; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x80193C50; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x80193CEC; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x80193DB4; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x80193E54; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x80193E78; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x80193FD0; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x80194268; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x80194520; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x80194950; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x80194B18; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x80194C24; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x80194D28; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x801955A8; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x80195698; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x80195758; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x80195AA8; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x80195AE8; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x80195D60; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x8019617C; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x801966D0; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x801969D0; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x80196DCC; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x80197038; // type:function size:0x590 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x801975C8; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x80197990; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x80197AA0; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x80197AF0; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x80197B44; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x80197CDC; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80197D98; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x801980F8; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x801981E4; // type:function size:0x340 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x80198524; // type:function size:0xA8 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x801985CC; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80198FD8; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80199014; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x801991A4; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x80199248; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x80199934; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80199B08; // type:function size:0x738 scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x8019A240; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x8019A300; // type:function size:0x818 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x8019AB18; // type:function size:0x10C scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x8019AC24; // type:function size:0x3DC scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x8019B000; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x8019B168; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x8019B1BC; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x8019B210; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x8019B554; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8019B660; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019BA08; // type:function size:0x494 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x8019BE9C; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019BF00; // type:function size:0x2D0 scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x8019C1D0; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x8019C294; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x8019C598; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x8019C8B8; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x8019CB54; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x8019CC30; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x8019CD28; // type:function size:0x38 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x8019CD60; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x8019CF20; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019CFAC; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x8019D098; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019D15C; // type:function size:0x538 scope:global align:4 +_Error__FPce = .text:0x8019D694; // type:function size:0x9C scope:local align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x8019D730; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x8019D790; // type:function size:0xE28 scope:global align:4 +__ct__12CMresultModeFv = .text:0x8019E5B8; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x8019E664; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x8019E6DC; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x8019E864; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x8019E894; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x8019E8D4; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x8019E958; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x8019E97C; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x8019E9FC; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x8019EA20; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x8019EAE0; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x8019EB04; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x8019EB84; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x8019EBA8; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x8019EC8C; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x8019ECB0; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x8019ED84; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x8019EDA8; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x8019EED8; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x8019EEFC; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x8019EF7C; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x8019EFA0; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x8019F028; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x8019F04C; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x8019F0DC; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019F100; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x8019F180; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x8019F1A4; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x8019F224; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x8019F248; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x8019F2F8; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x8019F31C; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x8019F39C; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x8019F3C0; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019F440; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x8019F464; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x8019F4A4; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x8019F4A8; // type:function size:0x168 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x8019F610; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x8019F6B8; // type:function size:0x36C scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x8019FA24; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x8019FBE0; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x8019FC04; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x8019FC08; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x8019FC38; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x8019FCB8; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x8019FCBC; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019FD50; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019FD54; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019FF14; // type:function size:0x180 scope:global align:4 +_Error__FPce = .text:0x801A0094; // type:function size:0x9C scope:local align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x801A0130; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x801A044C; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x801A0580; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x801A067C; // type:function size:0x6A0 scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x801A0D1C; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x801A0E5C; // type:function size:0xA0 scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x801A0EFC; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x801A0F38; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x801A1050; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A1080; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A10C4; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x801A1104; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x801A1148; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x801A11F0; // type:function size:0x64 scope:global align:4 +_Error__FPce = .text:0x801A1254; // type:function size:0x9C scope:local align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A12F0; // type:function size:0x25C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x801A154C; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x801A16A0; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x801A1818; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x801A2370; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A2668; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A3568; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x801A3CBC; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x801A4304; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x801A44C8; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x801A46A4; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4D4C; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4D88; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4DC4; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4E00; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4E54; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4EB0; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A4F0C; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x801A4F98; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x801A50A8; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x801A51F0; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A52BC; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A52F0; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x801A53E0; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x801A5450; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x801A54A4; // type:function size:0x74 scope:global align:4 +_Error__FPce = .text:0x801A5518; // type:function size:0x9C scope:local align:4 +load__Q23zen14particleLoaderFPcb = .text:0x801A55B4; // type:function size:0x170 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x801A5724; // type:function size:0x84 scope:global align:4 +_Error__FPce = .text:0x801A57A8; // type:function size:0x9C scope:local align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x801A5844; // type:function size:0x178 scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x801A59BC; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A5A08; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x801A5A7C; // type:function size:0x110 scope:global align:4 +calcActiveList__Q23zen15particleManagerFv = .text:0x801A5B8C; // type:function size:0x80 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x801A5C0C; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x801A5C80; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x801A5D28; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x801A5DC4; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x801A5E5C; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x801A5F10; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x801A5F40; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x801A5FD4; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A6104; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A6160; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A6208; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A6264; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A63E4; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A642C; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A6540; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A65A8; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A6610; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A66AC; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A6A6C; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A6C4C; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A6ED8; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A6F54; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A704C; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A70D0; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A71F0; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A7248; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A72C8; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A72FC; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A744C; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A7548; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A765C; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A7800; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A78C8; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A78D0; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A78D8; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A78E0; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A78E8; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A78EC; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A78F0; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A78F8; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A7A78; // type:function size:0x31C scope:global align:4 +_Error__FPce = .text:0x801A7D94; // type:function size:0x9C scope:local align:4 +addAnimation__12TAIanimationFPc = .text:0x801A7E30; // type:function size:0x58 scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A7E88; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A7F0C; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A8270; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A8E84; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A8FA4; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A9068; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A9764; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A976C; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A9778; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A9780; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A9848; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A9858; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A98A4; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A98BC; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A98D4; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A9B5C; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A9B7C; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A9B94; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A9BB4; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A9BCC; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A9BEC; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A9C0C; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A9C24; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A9C3C; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A9C4C; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A9CB8; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A9E0C; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A9E54; // type:function size:0x1D8 scope:weak align:4 +_Error__FPce = .text:0x801AA02C; // type:function size:0x9C scope:local align:4 +__ct__16TAImarSoundTableFv = .text:0x801AA0C8; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801AA14C; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801AA58C; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801AB374; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801AB540; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801AB604; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801AB930; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801AB93C; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801AB944; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801AB9B4; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AB9BC; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AB9D4; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801AB9EC; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801ABA38; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801ABA58; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801ABA60; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801ABA78; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801ABCEC; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801ABF24; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801ABF2C; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801ABF44; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801ABF4C; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801ABF64; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801ABF70; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801ABFCC; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801ABFD4; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801AC0A0; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801AC0B8; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801AC0BC; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801AC0D4; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801AC208; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801AC220; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801AC25C; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801AC2F0; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AC2F8; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AC304; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801AC3F4; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801AC40C; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801AC454; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801AC724; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801AC734; // type:function size:0x234 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801AC968; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801AC9A8; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801ACE00; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801ACE08; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801ACE10; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801ACE60; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801ACE7C; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801ACEAC; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801ACFA4; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801AD050; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801AD094; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801AD1D8; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801AD21C; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801AD2FC; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801AD304; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801AD34C; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801AD3B4; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801AD4B4; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801AD55C; // type:function size:0x50 scope:global align:4 +_Error__FPce = .text:0x801AD5AC; // type:function size:0x9C scope:local align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801AD648; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801AD6DC; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801AD880; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801AD9C0; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801AD9C8; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801ADB78; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801ADBC4; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801ADCDC; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801ADDC8; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801ADEC8; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ADED0; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ADEF0; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ADF14; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801AE024; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801AE05C; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801AE164; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AE17C; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AE1B4; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AE250; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AE308; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AE320; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AE358; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AE3E0; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801AE3F8; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801AE4D4; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801AE7F0; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801AE8BC; // type:function size:0x1FC scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801AEAB8; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801AEB30; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801AEB8C; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801AEC74; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801AED74; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801AED94; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801AEE48; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801AEF60; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801AEFD8; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801AF05C; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801AF0F4; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801AF0FC; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801AF178; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801AF428; // type:function size:0x368 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801AF790; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801AF798; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801AF7D0; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801AF934; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801AF94C; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801AFA5C; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801AFB20; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801AFB58; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AFC48; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AFC80; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801AFD70; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801AFD9C; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801AFE14; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801AFE50; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801B0000; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801B0430; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801B0480; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801B07B0; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801B07B8; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801B07D0; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801B0850; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801B0898; // type:function size:0x358 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801B0BF0; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801B0C2C; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801B0FCC; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801B0FEC; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801B106C; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801B1328; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801B1340; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801B1348; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801B13D8; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801B14E8; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801B14EC; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801B157C; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801B1694; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801B16A8; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801B16CC; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801B1718; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801B1734; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801B1758; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801B190C; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801B1994; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801B19C8; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801B1AE0; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801B1AE8; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801B1AEC; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801B1CEC; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801B1D70; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B1DF4; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B1E60; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801B1EC8; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801B1F98; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B2068; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B2240; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B2248; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801B2250; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801B2384; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801B2480; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801B250C; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801B2670; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801B26F0; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801B283C; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801B28D4; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801B2920; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801B29C0; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801B29C8; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801B2A20; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801B2B08; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801B2B1C; // type:function size:0xD4 scope:global align:4 +_Error__FPce = .text:0x801B2BF0; // type:function size:0x9C scope:local align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801B2C8C; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801B2CC8; // type:function size:0x268 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801B2F30; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801B2F38; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801B305C; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801B3060; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801B3068; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801B3280; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B32E8; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B332C; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B3348; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801B33E8; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801B3474; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801B35CC; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B3644; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801B364C; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B3724; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801B372C; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801B3854; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801B385C; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801B38F0; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801B3970; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801B3A08; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801B3A9C; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801B3B38; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801B3BD0; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801B3BD8; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801B3C4C; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801B3D1C; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B41D0; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B41D8; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801B41E0; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801B4200; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801B4280; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B42A8; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801B42B0; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801B4364; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801B4430; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801B45A4; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801B4644; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801B4658; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801B467C; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801B4728; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801B4754; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801B47A0; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801B47F0; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801B47F4; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801B48B8; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801B4990; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801B49CC; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801B4C38; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801B4C94; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801B4D18; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801B4D78; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801B4DA4; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801B4F10; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801B4FA4; // type:function size:0x1FC scope:global align:4 +_Error__FPce = .text:0x801B51A0; // type:function size:0x9C scope:local align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801B523C; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801B5244; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801B5258; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B52A0; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B52D0; // type:function size:0x40 scope:global align:4 +update__7P2DPaneFv = .text:0x801B5310; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801B5444; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801B544C; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801B5598; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B5700; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801B5990; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801B5A70; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801B5F14; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801B5F60; // type:function size:0xC8 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801B6028; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801B6284; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801B6390; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801B6394; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801B6398; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801B63FC; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801B6404; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801B6428; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801B644C; // type:function size:0x68 scope:weak align:4 +_Error__FPce = .text:0x801B64B4; // type:function size:0x9C scope:local align:4 +makeResident__10P2DPictureFv = .text:0x801B6550; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B65C4; // type:function size:0x70 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B6634; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B66E8; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B681C; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B68C8; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B6964; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B69B8; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B6A20; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B6A98; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B70FC; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B7330; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B77E0; // type:function size:0x14 scope:global align:4 +_Error__FPce = .text:0x801B77F4; // type:function size:0x9C scope:local align:4 +update__9P2DScreenFv = .text:0x801B7890; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B78DC; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B7940; // type:function size:0x144 scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B7A84; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B7C24; // type:function size:0x30 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B7C54; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B7F7C; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B7FAC; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B7FCC; // type:function size:0x28 scope:global align:4 +_Error__FPce = .text:0x801B7FF4; // type:function size:0x9C scope:local align:4 +getResource__9P2DStreamFi = .text:0x801B8090; // type:function size:0x124 scope:global align:4 +align__9P2DStreamFi = .text:0x801B81B4; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B8244; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B825C; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B82BC; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B8324; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B8338; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B83F4; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B84A4; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B84C8; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B84EC; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B8520; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B85A0; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B85E4; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B8600; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B863C; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B866C; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B86F4; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B8854; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B8AAC; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B8B14; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B8BAC; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B8F40; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B90CC; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B91CC; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B926C; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B92C4; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B9328; // type:function size:0x9C scope:local align:4 +makeResident__10P2DTextBoxFv = .text:0x801B93C4; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B93FC; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B944C; // type:function size:0x220 scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B966C; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B96D4; // type:function size:0x1A8 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B987C; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B98E0; // type:function size:0x9C scope:local align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B997C; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B99C4; // type:function size:0x110 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B9AD4; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B9B28; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B9B50; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B9B94; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B9DE4; // type:function size:0x5C8 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801BA3AC; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801BA9D0; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801BAB44; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801BAC4C; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801BAD9C; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801BAE58; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801BAF30; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801BAF54; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801BB018; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x801BB320; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801BB3BC; // type:function size:0x1FF4 scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801BD3B0; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801BD5D0; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801BD5E0; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801BD5F0; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801BD62C; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801BDA80; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BDB70; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BDBEC; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BDC6C; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BDD1C; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801BDDD0; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801BDFF4; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BE228; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BE230; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801BE258; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801BE2C4; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801BE3CC; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801BE6A0; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801BE984; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801BEB3C; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BEBB4; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801BED00; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801BEE94; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801BEFAC; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801BF1A4; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BF1E0; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801BF1E8; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801BF640; // type:function size:0x6C scope:global align:4 +_Error__FPce = .text:0x801BF6AC; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801BF748; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801C23F4; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801C2408; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801C24D0; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801C2538; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801C25CC; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801C271C; // type:function size:0x4DC scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801C2BF8; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801C2D5C; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801C2D94; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801C39B4; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801C3EE0; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801C42A4; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801C4300; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801C4408; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801C4580; // type:function size:0x160 scope:weak align:4 +_Error__FPce = .text:0x801C46E0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801C477C; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801C4884; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801C48A8; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801C48F8; // type:function size:0xDC scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C49D4; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801C4AEC; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801C4AF4; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C4B08; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C4BF4; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801C4C24; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C4D44; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801C4D60; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801C4DD0; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801C4EF4; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801C505C; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801C53F8; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801C54D4; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801C5540; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801C55D4; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801C56CC; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801C59D4; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801C5AE4; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801C5C10; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801C5DBC; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801C5FB4; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801C6274; // type:function size:0x5C scope:global align:4 +_Error__FPce = .text:0x801C62D0; // type:function size:0x9C scope:local align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801C636C; // type:function size:0x54 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801C63C0; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801C643C; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C78B0; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C79D4; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C7A00; // type:function size:0x78 scope:global align:4 +_Error__FPce = .text:0x801C7A78; // type:function size:0x9C scope:local align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C7B14; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C7BC0; // type:function size:0x144 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C7D04; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C82C8; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C8350; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C835C; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C8368; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C8374; // type:function size:0x184 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C84F8; // type:function size:0xB4C scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C9044; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C9098; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C9104; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C94A0; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C982C; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C9920; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C9D2C; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C9D58; // type:function size:0x5C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C9DB4; // type:function size:0x54 scope:global align:4 +_Error__FPce = .text:0x801C9E08; // type:function size:0x9C scope:local align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C9EA4; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C9EDC; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801CA0BC; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801CA258; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801CA5DC; // type:function size:0x240 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801CA81C; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801CAB3C; // type:function size:0x450 scope:global align:4 +_Error__FPce = .text:0x801CAF8C; // type:function size:0x9C scope:local align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801CB028; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801CB0AC; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801CB4C4; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801CC3B8; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801CC4F8; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801CC914; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801CC938; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801CC950; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801CC974; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801CCA90; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CCAC4; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CCB58; // type:function size:0x8EC scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CD444; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CD460; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801CD478; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801CD518; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CE5C8; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CE5E8; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801CE600; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801CE7F0; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801CE814; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801CE974; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801CE9D0; // type:function size:0x188 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801CEB58; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801CEB60; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801CF10C; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801CF4C0; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801CF534; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801CF584; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801CF93C; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801CF9C0; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801CFD2C; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801D07B0; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801D0EAC; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801D0F04; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801D0F5C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801D0F74; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D0F8C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D0FAC; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D0FCC; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D0FE4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D0FFC; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801D1168; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801D119C; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801D11FC; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801D1280; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801D1640; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801D247C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801D2B78; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801D2B90; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D2BA8; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D2BC8; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D2BE8; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D2C00; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D2C18; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D2D84; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D2D9C; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801D2DB4; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801D2E38; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801D32B0; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801D454C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801D4C48; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801D4C60; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D4C78; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D4C98; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D4CB8; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D4CD0; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D4CE8; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801D4E54; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801D4EBC; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801D50A0; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801D50B8; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801D50C0; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801D50FC; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801D5138; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D5160; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D5228; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801D5458; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D5470; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D5488; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801D54A0; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801D5524; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801D5818; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801D5AF4; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801D61F0; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801D6214; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801D6260; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801D63D4; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D63E4; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D64A0; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D64FC; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801D6504; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801D6568; // type:function size:0xE8 scope:weak align:4 +_Error__FPce = .text:0x801D6650; // type:function size:0x9C scope:local align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801D66EC; // type:function size:0x274 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801D6960; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801D69E4; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801D6DA4; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D7874; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D7C3C; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D7C5C; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D7D0C; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D7E54; // type:function size:0xF8 scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D7F4C; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D8648; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D8660; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D86C0; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D8894; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D88B4; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D8C44; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D8CB0; // type:function size:0x2BC scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D8F6C; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D8FB8; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D9088; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D91B0; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D91B8; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D924C; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D9254; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D92A0; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D92FC; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D93B4; // type:function size:0x8D8 scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D9C8C; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D9E1C; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801DA048; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801DA0A4; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801DA0AC; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801DA130; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801DA428; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801DA610; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801DA798; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801DA7D4; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801DAED0; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801DAF0C; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801DB1F0; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801DB208; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801DB26C; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801DB274; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801DB284; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801DB2EC; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801DB440; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801DB61C; // type:function size:0xE0 scope:weak align:4 +_Error__FPce = .text:0x801DB6FC; // type:function size:0x9C scope:local align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801DB798; // type:function size:0xD0 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801DB868; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801DB908; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801DB970; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DB9B0; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DBB5C; // type:function size:0x70 scope:global align:4 +_Error__FPce = .text:0x801DBBCC; // type:function size:0x9C scope:local align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801DBC68; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801DBCEC; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801DC0F0; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801DDABC; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801DDB80; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801DE27C; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801DE2B4; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801DE360; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801DE394; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801DE44C; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801DE59C; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801DE5AC; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801DE654; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801DE828; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801DE860; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801DE988; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801DEA70; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801DEAD4; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801DEB98; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801DED0C; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801DED1C; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801DED3C; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801DED54; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801DED6C; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801DEDBC; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801DEEE4; // type:function size:0x928 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801DF80C; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801DF868; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DF8C4; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DF910; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DF928; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DF974; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801DF98C; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801DF9C0; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801DFAB0; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801DFAC4; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x801DFACC; // type:function size:0x9C scope:local align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801DFB68; // type:function size:0x4C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801DFBB4; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801DFBE8; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801DFC24; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801DFC60; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801DFCA4; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801DFD1C; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801DFD60; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801DFF14; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801DFFEC; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801E003C; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801E02DC; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801E0324; // type:function size:0x9C scope:local align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801E03C0; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801E0754; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801E07C4; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801E07E8; // type:function size:0x3A8 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801E0B90; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801E0C98; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801E0CE4; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801E0D2C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801E0DC8; // type:function size:0x24D4 scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801E329C; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801E3410; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E3424; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801E3450; // type:function size:0x6C0 scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801E3B10; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801E3BBC; // type:function size:0x130 scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801E3CEC; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801E3DF0; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801E3EDC; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801E4040; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801E40F8; // type:function size:0x178 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801E4270; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801E42A4; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E442C; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801E4464; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E5078; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801E52D4; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801E53C0; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801E54A0; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801E57F8; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801E5E20; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801E6170; // type:function size:0xE4 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E6254; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E66E8; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801E6A9C; // type:function size:0x184 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801E6C20; // type:function size:0x1BA0 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E87C0; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E8888; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E8BA0; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E8BE8; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E9064; // type:function size:0x275C scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801EB7C0; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801EB9D4; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801EBF78; // type:function size:0x87C scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801EC7F4; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801ECE08; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801ECFD0; // type:function size:0x198 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801ED168; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801ED244; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801ED368; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801ED574; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801ED794; // type:function size:0x168 scope:weak align:4 +_Error__FPce = .text:0x801ED8FC; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801ED998; // type:function size:0x224 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801EDBBC; // type:function size:0x7C scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801EDC38; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801EDDE0; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801EE850; // type:function size:0x30 scope:global align:4 +_Error__FPce = .text:0x801EE880; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801EE91C; // type:function size:0x34C scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801EEC68; // type:function size:0x170 scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801EEDD8; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801EEE14; // type:function size:0x100 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801EEF14; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801EF048; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801EF160; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801EF674; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801EF6B4; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801EF718; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801EF764; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801EF7A8; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801EF854; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801EF900; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801EF920; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801EFB9C; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801EFBE8; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801EFC0C; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801EFD34; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801EFD58; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801EFE00; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801EFE60; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801EFFDC; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801F0000; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801F0294; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801F0990; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801F0A20; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801F0AD0; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801F0B54; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801F0E90; // type:function size:0x548 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801F13D8; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801F1AD4; // type:function size:0x364 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801F1E38; // type:function size:0x3BC scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801F21F4; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801F2284; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801F2318; // type:function size:0xAC scope:weak align:4 +getWaitCounterMax__13TAIAwaitOtamaFR4Teki = .text:0x801F23C4; // type:function size:0x8 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F23CC; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801F2584; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801F282C; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801F2BD0; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801F2C58; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801F2EEC; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F2F6C; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801F3088; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801F30CC; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801F315C; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F3164; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F3264; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F33CC; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801F33D4; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801F352C; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801F355C; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801F35A8; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801F35F4; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801F35FC; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801F371C; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x801F3800; // type:function size:0x9C scope:local align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801F389C; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801F39EC; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801F39F4; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801F3ED8; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801F3F74; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801F3FE8; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801F4064; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F40A0; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801F4104; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F4218; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801F4220; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801F429C; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801F42B0; // type:function size:0x54 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801F4304; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801F4434; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801F4528; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801F4530; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801F4754; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801F4794; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801F47B8; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801F4834; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801F4858; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801F487C; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801F4884; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801F488C; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801F48E8; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801F4ABC; // type:function size:0xC8 scope:weak align:4 +_Error__FPce = .text:0x801F4B84; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801F4C20; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801F5674; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801F5740; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801F5790; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801F5828; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801F5998; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801F5A54; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801F5BC0; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F5BC8; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F5C14; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801F5CEC; // type:function size:0x104 scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801F5DF0; // type:function size:0xB8 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801F5EA8; // type:function size:0x378 scope:global align:4 +_Error__FPce = .text:0x801F6220; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801F62BC; // type:function size:0x4A0 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F675C; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801F67CC; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801F67EC; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801F698C; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F69C0; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F69C8; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801F6BDC; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F6C58; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801F6CF4; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801F70CC; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801F71F8; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801F73A8; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801F742C; // type:function size:0x360 scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801F778C; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801F7798; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801F7840; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F7C70; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F7CB8; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F7EC4; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F7FA8; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F7FF8; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F80E4; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F8214; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F83C8; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F83FC; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F8464; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F84B0; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F86BC; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F8878; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F88F4; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F8990; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F8CD8; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F8CFC; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F8D4C; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F8D94; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F8DB8; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F965C; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F96C4; // type:function size:0x1E4 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F98A8; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F999C; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F9B8C; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F9BC8; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F9C1C; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F9CB4; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F9CE8; // type:function size:0x98 scope:global align:4 +_Error__FPce = .text:0x801F9D80; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F9E1C; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801FA8DC; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801FAAB0; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801FABE8; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801FABEC; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801FB2D8; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801FB4AC; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801FB51C; // type:function size:0x1B4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801FB6D0; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801FB808; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801FB82C; // type:function size:0xC8 scope:global align:4 +_Error__FPce = .text:0x801FB8F4; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801FB990; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FB9DC; // type:function size:0x1C8 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801FBBA4; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FBC10; // type:function size:0xA8 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801FBCB8; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801FBCE0; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801FBD08; // type:function size:0x134 scope:global align:4 +PPCMfmsr = .text:0x801FBE3C; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801FBE44; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801FBE4C; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801FBE54; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801FBE5C; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801FBE64; // type:function size:0x8 scope:global align:4 +PPCSync = .text:0x801FBE6C; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801FBE74; // type:function size:0x14 scope:global align:4 +PPCMfhid2 = .text:0x801FBE88; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801FBE90; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801FBE98; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801FBEA0; // type:function size:0x28 scope:global align:4 +ClearArena = .text:0x801FBEC8; // type:function size:0x10C scope:local align:4 +OSInit = .text:0x801FBFD4; // type:function size:0x344 scope:global align:4 +OSExceptionInit = .text:0x801FC318; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801FC598; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801FC598; // type:label scope:global +__OSDBJump = .text:0x801FC5BC; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801FC5BC; // type:label scope:global +__OSDBJUMPEND = .text:0x801FC5C0; // type:label scope:global +__OSSetExceptionHandler = .text:0x801FC5C0; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801FC5DC; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801FC5F0; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801FC5F0; // type:label scope:global +__DBVECTOR = .text:0x801FC648; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801FC658; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801FC688; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801FC68C; // type:function size:0x54 scope:local align:4 +__OSPSInit = .text:0x801FC6E0; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801FC718; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801FC72C; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801FC778; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801FC784; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801FC9D4; // type:function size:0x68 scope:global align:4 +OSCancelAlarm = .text:0x801FCA3C; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801FCB58; // type:function size:0x230 scope:local align:4 +DecrementerExceptionHandler = .text:0x801FCD88; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801FCDD4; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801FCED0; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801FCF40; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801FCF48; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801FCF50; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801FCF58; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801FCF60; // type:function size:0x1BC scope:global align:4 +__OSStopAudioSystem = .text:0x801FD11C; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801FD1F4; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801FD208; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801FD238; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801FD26C; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801FD2A0; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801FD2D0; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801FD300; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801FD330; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801FD368; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801FD378; // type:function size:0x14 scope:global align:4 +LCDisable = .text:0x801FD38C; // type:function size:0x28 scope:global align:4 +L2GlobalInvalidate = .text:0x801FD3B4; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801FD44C; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801FD5AC; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801FD6A0; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801FD7C4; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801FD8EC; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801FD948; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801FD954; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801FD9D4; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801FDAAC; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801FDAB4; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801FDAD8; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801FDB94; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801FDE3C; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801FDEC0; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801FDF08; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801FDF88; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801FE0B4; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801FE0D0; // type:function size:0x174 scope:global align:4 +SetExiInterruptMask = .text:0x801FE244; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x801FE338; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x801FE594; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x801FE634; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x801FE720; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x801FE928; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x801FE970; // type:function size:0x7C scope:global align:4 +EXIProbe = .text:0x801FE9EC; // type:function size:0x168 scope:global align:4 +EXIProbeEx = .text:0x801FEB54; // type:function size:0x60 scope:global align:4 +EXIAttach = .text:0x801FEBB4; // type:function size:0xE4 scope:global align:4 +EXIDetach = .text:0x801FEC98; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x801FED54; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x801FEE80; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x801FEF90; // type:function size:0x80 scope:local align:4 +TCIntrruptHandler = .text:0x801FF010; // type:function size:0x1F4 scope:local align:4 +EXTIntrruptHandler = .text:0x801FF204; // type:function size:0xAC scope:local align:4 +EXIInit = .text:0x801FF2B0; // type:function size:0x104 scope:global align:4 +EXILock = .text:0x801FF3B4; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x801FF4A8; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x801FF584; // type:function size:0x18 scope:global align:4 +OSGetFontEncode = .text:0x801FF59C; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801FF5F4; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801FF5F4; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801FF604; // type:label scope:global +OSEnableInterrupts = .text:0x801FF608; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801FF61C; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801FF640; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801FF65C; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801FF670; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801FF6E4; // type:function size:0x2D8 scope:local align:4 +__OSMaskInterrupts = .text:0x801FF9BC; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801FFA44; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801FFACC; // type:function size:0x324 scope:global align:4 +ExternalInterruptHandler = .text:0x801FFDF0; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801FFE3C; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801FFE54; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801FFEB4; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801FFF7C; // type:function size:0xDC scope:global align:4 +OnReset = .text:0x80200058; // type:function size:0x3C scope:local align:4 +MEMIntrruptHandler = .text:0x80200094; // type:function size:0x44 scope:local align:4 +__OSInitMemoryProtection = .text:0x802000D8; // type:function size:0xCC scope:global align:4 +OSInitMutex = .text:0x802001A4; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x802001DC; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x802002B8; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x80200380; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x802003F0; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x80200410; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x802004E4; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x80200504; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x80200604; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x8020063C; // type:function size:0x74 scope:global align:4 +Run = .text:0x802006B0; // type:function size:0x40 scope:local align:4 +Callback = .text:0x802006F0; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x802006FC; // type:function size:0x1CC scope:global align:4 +OSRegisterResetFunction = .text:0x802008C8; // type:function size:0x84 scope:global align:4 +Reset = .text:0x8020094C; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x802009BC; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x80200A04; // type:function size:0x24C scope:global align:4 +OSGetResetCode = .text:0x80200C50; // type:function size:0x30 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x80200C80; // type:function size:0xF4 scope:global align:4 +OSGetResetButtonState = .text:0x80200D74; // type:function size:0x2A4 scope:global align:4 +WriteSramCallback = .text:0x80201018; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x80201078; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x80201190; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x802012C4; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x80201320; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x8020137C; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x80201684; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x802016A8; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x802016CC; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x802016DC; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x8020175C; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x80201800; // type:function size:0x80 scope:global align:4 +OSSetProgressiveMode = .text:0x80201880; // type:function size:0xA4 scope:global align:4 +OSGetWirelessID = .text:0x80201924; // type:function size:0x84 scope:global align:4 +OSSetWirelessID = .text:0x802019A8; // type:function size:0xAC scope:global align:4 +SIBusy = .text:0x80201A54; // type:function size:0x20 scope:global align:4 +SIIsChanBusy = .text:0x80201A74; // type:function size:0x3C scope:global align:4 +CompleteTransfer = .text:0x80201AB0; // type:function size:0x2FC scope:local align:4 +SIInterruptHandler = .text:0x80201DAC; // type:function size:0x344 scope:local align:4 +SIEnablePollingInterrupt = .text:0x802020F0; // type:function size:0x98 scope:local align:4 +SIRegisterPollingHandler = .text:0x80202188; // type:function size:0xCC scope:global align:4 +SIUnregisterPollingHandler = .text:0x80202254; // type:function size:0xF4 scope:global align:4 +SIInit = .text:0x80202348; // type:function size:0x94 scope:global align:4 +__SITransfer = .text:0x802023DC; // type:function size:0x20C scope:local align:4 +SIGetStatus = .text:0x802025E8; // type:function size:0xF0 scope:global align:4 +SISetCommand = .text:0x802026D8; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x802026EC; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x802026FC; // type:function size:0x60 scope:global align:4 +SIEnablePolling = .text:0x8020275C; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x802027F8; // type:function size:0x6C scope:global align:4 +SIGetResponseRaw = .text:0x80202864; // type:function size:0x164 scope:local align:4 +SIGetResponse = .text:0x802029C8; // type:function size:0xD0 scope:global align:4 +AlarmHandler = .text:0x80202A98; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x80202B24; // type:function size:0x16C scope:global align:4 +GetTypeCallback = .text:0x80202C90; // type:function size:0x298 scope:local align:4 +SIGetType = .text:0x80202F28; // type:function size:0x1C4 scope:global align:4 +SIGetTypeAsync = .text:0x802030EC; // type:function size:0x13C scope:global align:4 +SystemCallVector = .text:0x80203228; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x80203228; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x80203244; // type:label scope:global +__OSInitSystemCall = .text:0x80203248; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x802032AC; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x802033D4; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x802033E4; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x802033F0; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x80203424; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x80203464; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x802034A4; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x8020350C; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x80203548; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x80203708; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x80203758; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x80203958; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x80203988; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x802039C4; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x80203AE4; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x80203BC8; // type:function size:0x1BC scope:global align:4 +OSResumeThread = .text:0x80203D84; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x8020400C; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x8020417C; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x80204268; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x8020436C; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x80204374; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x80204410; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x80204B60; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x80204B78; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x80204B80; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x80204BE4; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x80204D80; // type:function size:0x204 scope:global align:4 +InitializeUART = .text:0x80204F84; // type:function size:0x48 scope:global align:4 +ReadUARTN = .text:0x80204FCC; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x80204FD4; // type:function size:0x200 scope:global align:4 +__init_user = .text:0x802051D4; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x802051F4; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x80205248; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x80205268; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x80205290; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x802052D8; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x802052E8; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x80205304; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x80205354; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x80205380; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x8020544C; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x8020549C; // type:function size:0xF8 scope:global align:4 +PSMTXTrans = .text:0x80205594; // type:function size:0x34 scope:global align:4 +PSMTXScale = .text:0x802055C8; // type:function size:0x28 scope:global align:4 +C_MTXLightPerspective = .text:0x802055F0; // type:function size:0xCC scope:global align:4 +C_MTXPerspective = .text:0x802056BC; // type:function size:0xD0 scope:global align:4 +C_MTXOrtho = .text:0x8020578C; // type:function size:0x98 scope:global align:4 +PSVECMag = .text:0x80205824; // type:function size:0x3C scope:global align:4 +__DVDInitWA = .text:0x80205860; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x802058A0; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x80205B94; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x80205C18; // type:function size:0x70 scope:local align:4 +Read = .text:0x80205C88; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x80205D98; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x80205E18; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x802060B0; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x80206144; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x80206170; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x80206214; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x802062A0; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x8020632C; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x802063C8; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x80206460; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x802064EC; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x80206588; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x80206644; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x80206658; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x80206670; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x802066B4; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x802066EC; // type:function size:0x2F4 scope:global align:4 +DVDFastOpen = .text:0x802069E0; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x80206A54; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x80206B1C; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x80206B40; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x80206CA0; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x80206D64; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x80206E24; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x80206E54; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x80206F6C; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x80206F90; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x8020707C; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x802070AC; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x802071A8; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x802071FC; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x8020727C; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x80207324; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x802073C0; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x802073E8; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x8020749C; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x80207730; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x80207798; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x80207830; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x80207858; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x802079B0; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x80207A94; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x80207AC8; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x80207B00; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x80207C14; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x80207CB8; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x80207DB4; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x80207DF8; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x80207EC4; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x80207EF4; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x80207F64; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x80207F8C; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x80208070; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x802082B8; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x80208578; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x80208B4C; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x80208C08; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x80208CE4; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x80208DB4; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x80208E88; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x80208F4C; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x80208FEC; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x80209014; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x80209058; // type:function size:0xAC scope:global align:4 +DVDSetAutoInvalidation = .text:0x80209104; // type:function size:0x10 scope:global align:4 +DVDCancelAsync = .text:0x80209114; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x80209384; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x80209430; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x80209454; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x8020945C; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x80209540; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x8020965C; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x80209694; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x802096FC; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x8020979C; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x802097F4; // type:function size:0x60 scope:global align:4 +__DVDStoreErrorCode = .text:0x80209854; // type:function size:0x158 scope:global align:4 +cb = .text:0x802099AC; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x80209A84; // type:function size:0x168 scope:global align:4 +__VIRetraceHandler = .text:0x80209BEC; // type:function size:0x224 scope:local align:4 +VISetPostRetraceCallback = .text:0x80209E10; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x80209E54; // type:function size:0x78 scope:local align:4 +__VIInit = .text:0x80209ECC; // type:function size:0x1E8 scope:global align:4 +VIInit = .text:0x8020A0B4; // type:function size:0x46C scope:global align:4 +VIWaitForRetrace = .text:0x8020A520; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x8020A574; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x8020A848; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x8020A9E8; // type:function size:0x740 scope:global align:4 +VIFlush = .text:0x8020B128; // type:function size:0x11C scope:global align:4 +VISetNextFrameBuffer = .text:0x8020B244; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x8020B2B0; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x8020B32C; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x8020B334; // type:function size:0x68 scope:local align:4 +VIGetCurrentLine = .text:0x8020B39C; // type:function size:0x98 scope:global align:4 +VIGetTvFormat = .text:0x8020B434; // type:function size:0xC scope:global align:4 +VIGetDTVStatus = .text:0x8020B440; // type:function size:0x3C scope:global align:4 +ClampStick = .text:0x8020B47C; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x8020B5AC; // type:function size:0x108 scope:global align:4 +UpdateOrigin = .text:0x8020B6B4; // type:function size:0x1A4 scope:local align:4 +PADOriginCallback = .text:0x8020B858; // type:function size:0xC4 scope:local align:4 +PADOriginUpdateCallback = .text:0x8020B91C; // type:function size:0xC0 scope:local align:4 +PADProbeCallback = .text:0x8020B9DC; // type:function size:0xD8 scope:local align:4 +PADTypeAndStatusCallback = .text:0x8020BAB4; // type:function size:0x32C scope:local align:4 +PADReceiveCheckCallback = .text:0x8020BDE0; // type:function size:0x134 scope:local align:4 +PADReset = .text:0x8020BF14; // type:function size:0xFC scope:global align:4 +PADRecalibrate = .text:0x8020C010; // type:function size:0x100 scope:global align:4 +PADInit = .text:0x8020C110; // type:function size:0x210 scope:global align:4 +PADRead = .text:0x8020C320; // type:function size:0x3B4 scope:global align:4 +PADSetSamplingRate = .text:0x8020C6D4; // type:function size:0xEC scope:global align:4 +__PADRefreshSamplingRate = .text:0x8020C7C0; // type:function size:0x24 scope:global align:4 +PADControlMotor = .text:0x8020C7E4; // type:function size:0xA4 scope:global align:4 +PADSetSpec = .text:0x8020C888; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x8020C8E8; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x8020CA5C; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x8020CBD0; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x8020CFC8; // type:function size:0x190 scope:local align:4 +SamplingHandler = .text:0x8020D158; // type:function size:0x60 scope:local align:4 +PADSetSamplingCallback = .text:0x8020D1B8; // type:function size:0x44 scope:global align:4 +AIRegisterDMACallback = .text:0x8020D1FC; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x8020D240; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x8020D2C8; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x8020D2E0; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x8020D2F0; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x8020D308; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x8020D318; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x8020D3F0; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x8020D400; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x8020D4E0; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x8020D4F4; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x8020D51C; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x8020D5F0; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x8020D600; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x8020D61C; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x8020D62C; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x8020D648; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x8020D658; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x8020D7BC; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x8020D838; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x8020D8C8; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x8020D920; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x8020DB04; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x8020DB48; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x8020DC38; // type:function size:0xF4 scope:global align:4 +ARGetBaseAddress = .text:0x8020DD2C; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x8020DD34; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x8020DDAC; // type:function size:0xECC scope:local align:4 +__ARQServiceQueueLo = .text:0x8020EC78; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x8020ED78; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x8020ED7C; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x8020EE48; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x8020EEB0; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x8020F00C; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x8020F01C; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x8020F02C; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x8020F044; // type:function size:0x14 scope:global align:4 +__CARDDefaultApiCallback = .text:0x8020F058; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x8020F05C; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x8020F090; // type:function size:0xD8 scope:global align:4 +__CARDExiHandler = .text:0x8020F168; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x8020F280; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x8020F328; // type:function size:0x84 scope:global align:4 +__CARDReadNintendoID = .text:0x8020F3AC; // type:function size:0x10C scope:global align:4 +__CARDEnableInterrupt = .text:0x8020F4B8; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x8020F578; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x8020F668; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x8020F714; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x8020F7B8; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x8020F9E4; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x8020FAF4; // type:function size:0x1B4 scope:local align:4 +__CARDReadSegment = .text:0x8020FCA8; // type:function size:0x134 scope:global align:4 +__CARDWritePage = .text:0x8020FDDC; // type:function size:0x11C scope:global align:4 +__CARDEraseSector = .text:0x8020FEF8; // type:function size:0xE0 scope:global align:4 +CARDInit = .text:0x8020FFD8; // type:function size:0x90 scope:global align:4 +__CARDSetDiskID = .text:0x80210068; // type:function size:0x1C scope:global align:4 +__CARDGetControlBlock = .text:0x80210084; // type:function size:0xB0 scope:global align:4 +__CARDPutControlBlock = .text:0x80210134; // type:function size:0x64 scope:global align:4 +CARDGetResultCode = .text:0x80210198; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x802101C8; // type:function size:0x150 scope:global align:4 +CARDGetSectorSize = .text:0x80210318; // type:function size:0x84 scope:global align:4 +__CARDSync = .text:0x8021039C; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x80210434; // type:function size:0x50 scope:local align:4 +BlockReadCallback = .text:0x80210484; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x80210560; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x802105C4; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x802106A0; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x80210704; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x8021071C; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80210724; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x802107F8; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x802108C0; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x802109D8; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x80210A74; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x80210B20; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80210B28; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x80210BF8; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x80210CC0; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x80210D84; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x80210F34; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x802111B8; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x802113F8; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8021167C; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x80211708; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x80211C98; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x80211CC0; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x80211D14; // type:function size:0x38 scope:global align:4 +DoMount = .text:0x80211D4C; // type:function size:0x3B8 scope:local align:4 +__CARDMountCallback = .text:0x80212104; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x8021220C; // type:function size:0x1A0 scope:global align:4 +CARDMount = .text:0x802123AC; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x802123F4; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x80212490; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x8021253C; // type:function size:0x144 scope:local align:4 +CARDFormatAsync = .text:0x80212680; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x80212CD8; // type:function size:0x48 scope:global align:4 +__CARDCompareFileName = .text:0x80212D20; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x80212D88; // type:function size:0x8C scope:global align:4 +__CARDIsPublic = .text:0x80212E14; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x80212E44; // type:function size:0x174 scope:global align:4 +CARDOpen = .text:0x80212FB8; // type:function size:0x174 scope:global align:4 +CARDClose = .text:0x8021312C; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x80213180; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x80213188; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x802132B8; // type:function size:0x218 scope:global align:4 +CARDCreate = .text:0x802134D0; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x80213518; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x802136D0; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x80213800; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x80213944; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x8021398C; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x80213AFC; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x80213BAC; // type:function size:0x110 scope:global align:4 +CARDWrite = .text:0x80213CBC; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x80213D04; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x80213DA8; // type:function size:0x128 scope:global align:4 +CARDFastDelete = .text:0x80213ED0; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x80213F18; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x80214110; // type:function size:0x128 scope:global align:4 +CARDSetStatusAsync = .text:0x80214238; // type:function size:0x170 scope:global align:4 +CARDSetStatus = .text:0x802143A8; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x802143F0; // type:function size:0x1F0 scope:global align:4 +CARDRename = .text:0x802145E0; // type:function size:0x48 scope:global align:4 +ExtHandler = .text:0x80214628; // type:function size:0xC scope:local align:4 +ExiHandler = .text:0x80214634; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x80214664; // type:function size:0x3C scope:local align:4 +HIOEnumDevices = .text:0x802146A0; // type:function size:0x1C4 scope:global align:4 +HIOInit = .text:0x80214864; // type:function size:0x234 scope:global align:4 +HIOReadMailbox = .text:0x80214A98; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x80214BC8; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x80214CBC; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x80214E00; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x80214E7C; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x80214EA0; // type:function size:0x7C0 scope:global align:4 +__GXInitGX = .text:0x80215660; // type:function size:0x848 scope:global align:4 +GXCPInterruptHandler = .text:0x80215EA8; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x80215FE4; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x80216050; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x802160C0; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x802160CC; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x802161DC; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x80216354; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x80216374; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x80216450; // type:function size:0x4C scope:global align:4 +__GXFifoReadEnable = .text:0x8021649C; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x802164C4; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x802164E8; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x8021652C; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x80216578; // type:function size:0x4C scope:local align:4 +__GXCleanGPFifo = .text:0x802165C4; // type:function size:0xFC scope:global align:4 +GXSetCurrentGXThread = .text:0x802166C0; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x8021670C; // type:function size:0x8 scope:global align:4 +GXGetGPFifo = .text:0x80216714; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x8021671C; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x80216874; // type:function size:0x360 scope:global align:4 +GXSetVtxDescv = .text:0x80216BD4; // type:function size:0x384 scope:global align:4 +__GXSetVCD = .text:0x80216F58; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x802170C0; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x8021710C; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x80217468; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x802177E4; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x80217880; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x8021790C; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x8021791C; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80217BEC; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x80217C34; // type:function size:0x5C scope:global align:4 +GXAbortFrame = .text:0x80217C90; // type:function size:0xCC scope:global align:4 +GXDrawDone = .text:0x80217D5C; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x80217DDC; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x80217E00; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x80217E14; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x80217E28; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x80217E44; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80217ECC; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x80217EE8; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x80217EFC; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x80217F18; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x80217F40; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80217FC8; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x8021804C; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x802180CC; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80218158; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x80218234; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x802182BC; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x80218314; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80218368; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x802183CC; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x8021841C; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x80218460; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x80218484; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x80218544; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x80218604; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x80218648; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x802187B8; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x802187E4; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x80218860; // type:function size:0xBC scope:global align:4 +GXSetCopyClear = .text:0x8021891C; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x80218984; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x80218BAC; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x80218BC8; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x80218D38; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80218EC8; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x80218F00; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x80218F1C; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x80218F2C; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x80218F48; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x8021901C; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x80219044; // type:function size:0x148 scope:global align:4 +GXSetChanAmbColor = .text:0x8021918C; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x802192F4; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x8021945C; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x802194A8; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x8021968C; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x80219754; // type:function size:0x274 scope:global align:4 +GXInitTexObjLOD = .text:0x802199C8; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x80219B5C; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x80219B64; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x80219D0C; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x80219D60; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x80219E80; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x80219EC8; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x80219F10; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x80219F24; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x80219F38; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x8021A004; // type:function size:0x16C scope:global align:4 +__GXSetTmemConfig = .text:0x8021A170; // type:function size:0x240 scope:global align:4 +GXSetTevIndirect = .text:0x8021A3B0; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x8021A44C; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x8021A620; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x8021A64C; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x8021A694; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x8021A760; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x8021A784; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x8021A928; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x8021A9A8; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x8021AA2C; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x8021AAEC; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x8021ABAC; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x8021AC20; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x8021AC94; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x8021AD08; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x8021AD74; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x8021ADE0; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x8021AE38; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x8021AED8; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x8021AF28; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x8021AFAC; // type:function size:0x1A0 scope:global align:4 +GXSetNumTevStages = .text:0x8021B14C; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x8021B180; // type:function size:0x1B0 scope:global align:4 +GXSetFogRangeAdj = .text:0x8021B330; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x8021B430; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x8021B534; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x8021B574; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x8021B5B4; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x8021B62C; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x8021B66C; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x8021B77C; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x8021B7BC; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x8021B810; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x8021B848; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x8021B8C8; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x8021B8CC; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x8021B994; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x8021BA68; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x8021BAD8; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x8021BBAC; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x8021BBE0; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x8021BC14; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x8021BC38; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x8021BC74; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x8021BCB4; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x8021BCF0; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x8021BD74; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x8021BE90; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x8021BEB4; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x8021BF64; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x8021BFA8; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x8021BFD0; // type:function size:0x84 scope:global align:4 +GXSetGPMetric = .text:0x8021C054; // type:function size:0x898 scope:global align:4 +GXClearGPMetric = .text:0x8021C8EC; // type:function size:0x10 scope:global align:4 +__va_arg = .text:0x8021C8FC; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x8021C9F0; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x8021CA38; // type:function size:0x18 scope:global align:4 +__copy = .text:0x8021CA50; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x8021CA80; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x8021CAFC; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x8021CBFC; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x8021CCB4; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x8021CDBC; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x8021CDE4; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x8021CE18; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x8021CE54; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x8021CEB0; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x8021CEB0; // type:label scope:global +_savefpr_15 = .text:0x8021CEB4; // type:label scope:global +_savefpr_16 = .text:0x8021CEB8; // type:label scope:global +_savefpr_17 = .text:0x8021CEBC; // type:label scope:global +_savefpr_18 = .text:0x8021CEC0; // type:label scope:global +_savefpr_19 = .text:0x8021CEC4; // type:label scope:global +_savefpr_20 = .text:0x8021CEC8; // type:label scope:global +_savefpr_21 = .text:0x8021CECC; // type:label scope:global +_savefpr_22 = .text:0x8021CED0; // type:label scope:global +_savefpr_23 = .text:0x8021CED4; // type:label scope:global +_savefpr_24 = .text:0x8021CED8; // type:label scope:global +_savefpr_25 = .text:0x8021CEDC; // type:label scope:global +_savefpr_26 = .text:0x8021CEE0; // type:label scope:global +_savefpr_27 = .text:0x8021CEE4; // type:label scope:global +_savefpr_28 = .text:0x8021CEE8; // type:label scope:global +_savefpr_29 = .text:0x8021CEEC; // type:label scope:global +_savefpr_30 = .text:0x8021CEF0; // type:label scope:global +_savefpr_31 = .text:0x8021CEF4; // type:label scope:global +__restore_fpr = .text:0x8021CEFC; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x8021CEFC; // type:label scope:global +_restfpr_15 = .text:0x8021CF00; // type:label scope:global +_restfpr_16 = .text:0x8021CF04; // type:label scope:global +_restfpr_17 = .text:0x8021CF08; // type:label scope:global +_restfpr_18 = .text:0x8021CF0C; // type:label scope:global +_restfpr_19 = .text:0x8021CF10; // type:label scope:global +_restfpr_20 = .text:0x8021CF14; // type:label scope:global +_restfpr_21 = .text:0x8021CF18; // type:label scope:global +_restfpr_22 = .text:0x8021CF1C; // type:label scope:global +_restfpr_23 = .text:0x8021CF20; // type:label scope:global +_restfpr_24 = .text:0x8021CF24; // type:label scope:global +_restfpr_25 = .text:0x8021CF28; // type:label scope:global +_restfpr_26 = .text:0x8021CF2C; // type:label scope:global +_restfpr_27 = .text:0x8021CF30; // type:label scope:global +_restfpr_28 = .text:0x8021CF34; // type:label scope:global +_restfpr_29 = .text:0x8021CF38; // type:label scope:global +_restfpr_30 = .text:0x8021CF3C; // type:label scope:global +_restfpr_31 = .text:0x8021CF40; // type:label scope:global +__div2u = .text:0x8021CF48; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x8021D034; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x8021D16C; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x8021D250; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x8021D35C; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x8021D380; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x8021D3A4; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x8021D3CC; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x8021D480; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x8021D54C; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x8021D554; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x8021D588; // type:function size:0x40 scope:global align:4 +exit = .text:0x8021D5C8; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x8021D6D4; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x8021D978; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x8021DD2C; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x8021DD3C; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x8021DE08; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x8021DE3C; // type:function size:0x4 scope:global align:4 +toupper = .text:0x8021DE40; // type:function size:0x28 scope:global align:4 +tolower = .text:0x8021DE68; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x8021DE90; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x8021E16C; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x8021E1A8; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x8021E1F8; // type:function size:0x44 scope:global align:4 +memchr = .text:0x8021E23C; // type:function size:0x2C scope:global align:4 +memmove = .text:0x8021E268; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x8021E344; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x8021E3F4; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x8021E4B8; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x8021E564; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x8021E620; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x8021E624; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x8021E6F8; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x8021E770; // type:function size:0x7C scope:global align:4 +printf = .text:0x8021E7EC; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x8021E8B8; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x8021E924; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x8021E97C; // type:function size:0x630 scope:local align:4 +float2str = .text:0x8021EFAC; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x8021F5E4; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x8021F718; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x8021F9F8; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x8021FC1C; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x802200F4; // type:function size:0x8 scope:global align:4 +rand = .text:0x802200FC; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x80220120; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x802201DC; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x8022026C; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x80220C10; // type:function size:0x564 scope:local align:4 +strstr = .text:0x80221174; // type:function size:0x6C scope:global align:4 +strchr = .text:0x802211E0; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x80221210; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x80221250; // type:function size:0x124 scope:global align:4 +strcat = .text:0x80221374; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x802213A0; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x802213E4; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x80221498; // type:function size:0x20 scope:global align:4 +atof = .text:0x802214B8; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x80221544; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x80221C28; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x80221CEC; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x80221DDC; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x80221E88; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x80222254; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8022259C; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x802225A4; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8022263C; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8022271C; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8022279C; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x802227A4; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x80222A3C; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x80223254; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x80223274; // type:function size:0x80 scope:weak align:4 +atan = .text:0x802232F4; // type:function size:0x240 scope:global align:4 +copysign = .text:0x80223534; // type:function size:0x2C scope:global align:4 +frexp = .text:0x80223560; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x802235FC; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x80223774; // type:function size:0x20 scope:global align:4 +pow = .text:0x80223794; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x802237B4; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x802237BC; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x802239B0; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x802239D0; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x80223A40; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x80223A84; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x80223B5C; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x80223BA0; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x80223BC0; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x80223BE0; // type:function size:0x194 scope:global align:4 +sinf = .text:0x80223D74; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x80223F18; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x80223F48; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x80223FD8; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x80224000; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x80224020; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x8022404C; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x80224140; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x8022419C; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x802241C0; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x80224280; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x80224360; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x80224378; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x8022439C; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x80224470; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x80224494; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x802244BC; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x80224530; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x80224558; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x80224560; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x802245D8; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x80224674; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x802246A0; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x80224708; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x80224748; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x80224778; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x8022481C; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x802248A8; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x802248FC; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x80224960; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x802249E8; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x80224A50; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x80224ACC; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x80224AF0; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x80224B70; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x80224C00; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x80224CB0; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x80224D24; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x80224DA0; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x80224E70; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x80224EEC; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x80224F3C; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x80224F60; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x80224F68; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x80224F6C; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x80224F80; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x80225004; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x8022509C; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x802250EC; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x80225120; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x80225148; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x80225170; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x802251C0; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x802251F0; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x80225374; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x80225450; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x80225694; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x8022587C; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x80225A78; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x80225C7C; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x80225E84; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x80225FBC; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x80226020; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x80226224; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x802262A8; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x80226580; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x80226724; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x8022672C; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x80226734; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x8022673C; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x80226814; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x8022684C; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x80226910; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x80226918; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x80226920; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x80226A58; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x80226A94; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x80226BF8; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x80226C44; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x80226D40; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x80226E88; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x80227000; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x8022717C; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x802271A4; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x80227248; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x802272B0; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x80227444; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x802274E0; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x80227590; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x80227654; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x802276A8; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x8022770C; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x8022779C; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x80227824; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x80227860; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x802278E4; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x80227954; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x802279BC; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x80227A00; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x80227A48; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x80227A58; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x80227B48; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x80227B84; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x80227B94; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x80227BA4; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x80227BCC; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x80227C7C; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x80227CF4; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x80227E74; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x80227EDC; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x80227EEC; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x80227F80; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x80227FA0; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x80227FE8; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x80228048; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x802280DC; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x8022812C; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x802282E4; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x8022849C; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x802284A4; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x802284EC; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x80228574; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x802285AC; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x80228694; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x80228698; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x802286D8; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x80228708; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x80228738; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x8022877C; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x802287C0; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x802287F0; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x80228820; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x80228844; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x80228878; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x80228ABC; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80228C54; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x80228C94; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x80228D00; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x80228D80; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80228DE8; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80228E38; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80228E78; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x80228EB8; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80228EF8; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x80228FB4; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x80228FE0; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x802290E8; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x802293A4; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x80229554; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x80229558; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x8022955C; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x80229564; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x802297FC; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x802298A8; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x80229984; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x80229A60; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x80229B0C; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80229B48; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x80229B88; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x80229C00; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80229C54; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x80229CF0; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x80229D7C; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x80229FDC; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x80229FE0; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80229FE4; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x8022A000; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x8022A000; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x8022A060; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x8022A060; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x8022A064; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x8022A068; // type:object size:0x4 scope:local align:4 +@191 = .rodata:0x8022A080; // type:object size:0x9 scope:local align:4 data:string +@208 = .rodata:0x8022A08C; // type:object size:0xC scope:local align:4 data:string +@80 = .rodata:0x8022A098; // type:object size:0xB scope:local align:4 data:string +@191 = .rodata:0x8022A0A8; // type:object size:0x9 scope:local align:4 data:string +@193 = .rodata:0x8022A0B4; // type:object size:0xB scope:local align:4 data:string +@178 = .rodata:0x8022A0C0; // type:object size:0x1D scope:local align:4 data:string +@38 = .rodata:0x8022A0E0; // type:object size:0x31 scope:local align:4 data:string +@39 = .rodata:0x8022A114; // type:object size:0x33 scope:local align:4 data:string +@60 = .rodata:0x8022A148; // type:object size:0x1D scope:local align:4 data:string +@61 = .rodata:0x8022A168; // type:object size:0x11 scope:local align:4 data:string +@62 = .rodata:0x8022A17C; // type:object size:0x27 scope:local align:4 data:string +@254 = .rodata:0x8022A1A8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8022A1B8; // type:label scope:local +@161 = .rodata:0x8022A1B8; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x8022A1CC; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x8022A1E0; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x8022A1F4; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x8022A208; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x8022A21C; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x8022A230; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x8022A244; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x8022A258; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x8022A26C; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x8022A280; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x8022A294; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x8022A2A8; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x8022A2BC; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x8022A2D0; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x8022A2DC; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x8022A2E8; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x8022A2F4; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x8022A304; // type:object size:0xD scope:local align:4 data:string +@81 = .rodata:0x8022A318; // type:object size:0x14 scope:local align:4 data:4byte +@82 = .rodata:0x8022A32C; // type:object size:0x14 scope:local align:4 data:4byte +@137 = .rodata:0x8022A340; // type:object size:0x21 scope:local align:4 data:string +@313 = .rodata:0x8022A364; // type:object size:0x14 scope:local align:4 data:string +@314 = .rodata:0x8022A378; // type:object size:0x18 scope:local align:4 data:string +mcbtypetrans$1481 = .rodata:0x8022A390; // type:object size:0x18 scope:local align:4 +@3842 = .rodata:0x8022A3A8; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x8022A408; // type:object size:0x60 scope:local align:4 data:4byte +@2524 = .rodata:0x8022A468; // type:object size:0xC scope:local align:4 data:4byte +@2540 = .rodata:0x8022A474; // type:object size:0xC scope:local align:4 data:4byte +@2613 = .rodata:0x8022A480; // type:object size:0xC scope:local align:4 data:4byte +@2531 = .rodata:0x8022A490; // type:object size:0x14 scope:local align:4 data:4byte +@2578 = .rodata:0x8022A4A4; // type:object size:0x18 scope:local align:4 data:4byte +@1089 = .rodata:0x8022A4C0; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x8022A4D0; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x8022A4DC; // type:object size:0xC scope:local align:4 data:4byte +@2255 = .rodata:0x8022A4E8; // type:object size:0x10 scope:local align:4 data:4byte +@2256 = .rodata:0x8022A4F8; // type:object size:0x10 scope:local align:4 data:4byte +@2087 = .rodata:0x8022A508; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x8022A530; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x8022A550; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x8022A570; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x8022A590; // type:object size:0x10 scope:local align:4 data:4byte +@4085 = .rodata:0x8022A5A0; // type:object size:0x1C scope:local align:4 data:4byte +@4089 = .rodata:0x8022A5BC; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8022A5C8; // type:label scope:local +@5142 = .rodata:0x8022A5C8; // type:object size:0x18 scope:local align:4 data:4byte +@5213 = .rodata:0x8022A5E0; // type:object size:0x10 scope:local align:4 +@5218 = .rodata:0x8022A5F0; // type:object size:0x18 scope:local align:4 +@5219 = .rodata:0x8022A608; // type:object size:0xC scope:local align:4 +@5223 = .rodata:0x8022A614; // type:object size:0x10 scope:local align:4 +@5227 = .rodata:0x8022A624; // type:object size:0x10 scope:local align:4 +@5243 = .rodata:0x8022A634; // type:object size:0x28 scope:local align:4 +@5244 = .rodata:0x8022A65C; // type:object size:0x14 scope:local align:4 +@1994 = .rodata:0x8022A670; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8022A688; // type:label scope:local +@1620 = .rodata:0x8022A688; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x8022A694; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x8022A6AC; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x8022A6C4; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x8022A6D4; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x8022A6EC; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x8022A704; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x8022A71C; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x8022A730; // type:object size:0xC scope:local align:4 data:4byte +@1694 = .rodata:0x8022A73C; // type:object size:0xC scope:local align:4 data:4byte +@1704 = .rodata:0x8022A748; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x8022A758; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x8022A764; // type:object size:0xC scope:local align:4 data:4byte +@3951 = .rodata:0x8022A770; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x8022A790; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x8022A7C0; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x8022A7D0; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x8022A7E0; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x8022A7F8; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x8022A838; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x8022A848; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x8022A858; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x8022A870; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x8022A8B8; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x8022A8F8; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x8022A9F8; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x8022AAF8; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x8022ABF8; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x8022AC00; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x8022AC10; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x8022AC38; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x8022AC68; // type:label scope:local +bp = .rodata:0x8022AC68; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x8022AC78; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x8022AC88; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x8022AC98; // type:label scope:local +atanhi = .rodata:0x8022AC98; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x8022ACB8; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x8022ACD8; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x8022AD30; // type:label scope:local +atan_coeff$96 = .rodata:0x8022AD30; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x8022AD4C; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x8022AD64; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x8022AD7C; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x8022AD98; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x8022ADB4; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x8022ADCC; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x8022ADE8; // type:label scope:local +tmp_float = .rodata:0x8022ADE8; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x8022ADF8; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x8022AE18; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x8022AE40; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x8022AE60; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x8022AE70; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x8022AE84; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x8022AE98; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x8022AEC0; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x8022AED0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x8022AEE0; // type:label scope:local +J_STREAMNAME = .data:0x8022AEE0; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x8022AF60; // type:object size:0x2C scope:global align:4 +@102 = .data:0x8022AF8C; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x8022AFB0; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x8022AFE0; // type:object size:0x1A00 scope:global align:32 +calc_sw_table = .data:0x8022C9E0; // type:object size:0x51 scope:local align:4 +@345 = .data:0x8022CA34; // type:object size:0x20 scope:local align:4 +@344 = .data:0x8022CA54; // type:object size:0x20 scope:local align:4 +history = .data:0x8022CA78; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$94 = .data:0x8022CAA0; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x8022CAC0; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x8022CB00; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x8022CF00; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x8022CF18; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x8022D118; // type:object size:0xC scope:local align:4 +extdir = .data:0x8022D128; // type:object size:0x40 scope:local align:4 +@149 = .data:0x8022D168; // type:object size:0x34 scope:local align:4 +@239 = .data:0x8022D19C; // type:object size:0x44 scope:local align:4 +@276 = .data:0x8022D1E0; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x8022D224; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x8022D324; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x8022D428; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x8022D828; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x8022D928; // type:label scope:local +VIB_TABLE = .data:0x8022D928; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x8022D94C; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x8022D970; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x8022D97C; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x8022D994; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x8022D9AC; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x8022D9C4; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x8022D9DC; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x8022D9F4; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x8022DA10; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x8022DA28; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x8022DA40; // type:object size:0x10 scope:global align:4 +@151 = .data:0x8022DA50; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x8022DAE8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x8022DB68; // type:label scope:local +EVENT_OFFSET = .data:0x8022DB68; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x8022DB88; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x8022E20C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022E230; // type:label scope:local +bgm_mute_set = .data:0x8022E230; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x8022E280; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x8022E2D0; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x8022E2FC; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x8022E314; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022E32C; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x8022E348; // type:label scope:local +tbl_scene_to_bgm = .data:0x8022E348; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x8022E380; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x8022E3B8; // type:object size:0x14 scope:local align:4 +filelist = .data:0x8022E3CC; // type:object size:0x1C0 scope:global align:4 +header = .data:0x8022E58C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022E5B0; // type:label scope:local +parts_bright_table = .data:0x8022E5B0; // type:object size:0x1F scope:local align:4 +demo4 = .data:0x8022E5D0; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x8022E5FC; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x8022E624; // type:object size:0xC scope:local align:4 +demo16 = .data:0x8022E630; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x8022E654; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x8022E6A8; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x8022E6B8; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x8022E6E4; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022E70C; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x8022E734; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x8022E75C; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x8022E77C; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x8022E7B0; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022E82C; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x8022E8A8; // type:object size:0xC scope:local align:4 +demo40 = .data:0x8022E8B4; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x8022E8C8; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x8022E8F4; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x8022E928; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x8022E968; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x8022E97C; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x8022E9B0; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x8022E9E8; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x8022EA10; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x8022EA24; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022EA3C; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x8022EA5C; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x8022EAA4; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x8022EAB0; // type:object size:0x564 scope:local align:4 +@362 = .data:0x8022F014; // type:object size:0x2C scope:local align:4 +@460 = .data:0x8022F040; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x8022F070; // type:label scope:local +filter_table = .data:0x8022F070; // type:object size:0x40 scope:local align:4 +table4 = .data:0x8022F0B0; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x8022F0E0; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x8022F3C0; // type:object size:0x10 scope:local align:4 +@388 = .data:0x8022F3D0; // type:object size:0xD scope:local align:4 data:string +@409 = .data:0x8022F3E0; // type:object size:0x1B scope:local align:4 data:string +...data.0 = .data:0x8022F400; // type:label scope:local +@388 = .data:0x8022F400; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x8022F40C; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x8022F418; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x8022F424; // type:object size:0xC scope:local align:4 +@435 = .data:0x8022F430; // type:object size:0x14 scope:local align:4 +@430 = .data:0x8022F444; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x8022F460; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x8022F4AC; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x8022F4BC; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x8022F4C8; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022F520; // type:label scope:local +@388 = .data:0x8022F520; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x8022F538; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022F54C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x8022F560; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x8022F574; // type:object size:0xC scope:local align:4 +@431 = .data:0x8022F580; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x8022F594; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x8022F5F8; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x8022F660; // type:label scope:local +@577 = .data:0x8022F660; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x8022F670; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x8022F67C; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x8022F688; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x8022F694; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x8022FB60; // type:object size:0x499 scope:local align:32 data:byte +@1671 = .data:0x8022FFFC; // type:object size:0x1B scope:local align:4 data:string +@1705 = .data:0x80230018; // type:object size:0x19 scope:local align:4 data:string +convFmts = .data:0x80230034; // type:object size:0x3C scope:local align:4 +@1720 = .data:0x80230070; // type:object size:0xF scope:local align:4 data:string +@1721 = .data:0x80230080; // type:object size:0xD scope:local align:4 data:string +@1722 = .data:0x80230090; // type:object size:0xF scope:local align:4 data:string +@1723 = .data:0x802300A0; // type:object size:0xB scope:local align:4 data:string +@1724 = .data:0x802300AC; // type:object size:0xB scope:local align:4 data:string +@1725 = .data:0x802300B8; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x802300C4; // type:object size:0xC scope:local align:4 data:string +@1727 = .data:0x802300D0; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x802300E0; // type:object size:0x20 scope:local align:4 +@1742 = .data:0x80230100; // type:object size:0x28 scope:local align:4 +@1772 = .data:0x80230128; // type:object size:0x9 scope:local align:4 data:string +@1773 = .data:0x80230134; // type:object size:0x9 scope:local align:4 data:string +@1774 = .data:0x80230140; // type:object size:0xA scope:local align:4 data:string +@1775 = .data:0x8023014C; // type:object size:0xA scope:local align:4 data:string +@1776 = .data:0x80230158; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x80230168; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x80230178; // type:object size:0xC scope:local align:4 data:string +@1780 = .data:0x80230184; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x80230190; // type:object size:0x3C scope:local align:4 +@1781 = .data:0x802301CC; // type:object size:0x9 scope:local align:4 data:string +@1782 = .data:0x802301D8; // type:object size:0x9 scope:local align:4 data:string +@1783 = .data:0x802301E4; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x802301F0; // type:object size:0xC scope:local align:4 +@1835 = .data:0x802301FC; // type:object size:0x28 scope:local align:4 data:string +@1836 = .data:0x80230224; // type:object size:0x28 scope:local align:4 data:string +@1879 = .data:0x8023024C; // type:object size:0x1A scope:local align:4 data:string +@2186 = .data:0x80230268; // type:object size:0xD scope:local align:4 data:string +@2188 = .data:0x80230278; // type:object size:0xA scope:local align:4 data:string +@2190 = .data:0x80230284; // type:object size:0xC scope:local align:4 +@2187 = .data:0x80230290; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x802302A4; // type:object size:0x14 scope:global align:4 +@2194 = .data:0x802302B8; // type:object size:0x9 scope:local align:4 data:string +@2195 = .data:0x802302C4; // type:object size:0xC scope:local align:4 +@2192 = .data:0x802302D0; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x802302E4; // type:object size:0x10 scope:global align:4 +@2198 = .data:0x802302F4; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x80230308; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x80230318; // type:object size:0xF4 scope:global align:4 +@2214 = .data:0x8023040C; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x8023041C; // type:object size:0x10 scope:global align:4 +@2215 = .data:0x8023042C; // type:object size:0x9 scope:local align:4 data:string +@2216 = .data:0x80230438; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x8023044C; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x80230460; // type:label scope:local +@570 = .data:0x80230460; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x8023046C; // type:object size:0x1C scope:local align:4 +@733 = .data:0x80230488; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x80230494; // type:object size:0xC scope:local align:4 +@731 = .data:0x802304A0; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x802304B4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802304E0; // type:label scope:local +@577 = .data:0x802304E0; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x802304F0; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x802304FC; // type:object size:0x14 scope:local align:4 +@653 = .data:0x80230510; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x8023051C; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x80230534; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x80230548; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x8023055C; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x80230568; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x80230574; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x80230580; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x8023058C; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x80230598; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x802305A4; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x802305B0; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x802305BC; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x802305C8; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802305E0; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x802305FC; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x80230608; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x80230614; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x80230620; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x80230630; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x80230640; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x80230650; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x80230660; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x8023066C; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x8023067C; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x80230688; // type:object size:0x31 scope:local align:4 data:string +@1678 = .data:0x802306BC; // type:object size:0xB scope:local align:4 data:string +@1679 = .data:0x802306C8; // type:object size:0xA scope:local align:4 data:string +@1680 = .data:0x802306D4; // type:object size:0xB scope:local align:4 data:string +@1683 = .data:0x802306E0; // type:object size:0xE scope:local align:4 data:string +@1688 = .data:0x802306F0; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x80230700; // type:object size:0xD scope:local align:4 data:string +@1690 = .data:0x80230710; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x8023071C; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x80230728; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x80230734; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x80230740; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x8023074C; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x80230758; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x80230764; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x80230770; // type:object size:0x9 scope:local align:4 data:string +@1725 = .data:0x8023077C; // type:object size:0xA scope:local align:4 data:string +@2046 = .data:0x80230788; // type:object size:0xF scope:local align:4 data:string +@2047 = .data:0x80230798; // type:object size:0xE scope:local align:4 data:string +@2048 = .data:0x802307A8; // type:object size:0xF scope:local align:4 data:string +@2049 = .data:0x802307B8; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x802307CC; // type:object size:0x1A scope:local align:4 data:string +@2165 = .data:0x802307E8; // type:object size:0x20 scope:local align:4 data:string +@2166 = .data:0x80230808; // type:object size:0x1E scope:local align:4 data:string +@2216 = .data:0x80230828; // type:object size:0x9 scope:local align:4 data:string +@2218 = .data:0x80230834; // type:object size:0xB scope:local align:4 data:string +@2259 = .data:0x80230840; // type:object size:0xB scope:local align:4 data:string +@2410 = .data:0x8023084C; // type:object size:0xC scope:local align:4 data:4byte +@2480 = .data:0x80230858; // type:object size:0x9 scope:local align:4 data:string +@2686 = .data:0x80230864; // type:object size:0xA scope:local align:4 data:string +@3582 = .data:0x80230870; // type:object size:0x23 scope:local align:4 data:string +@4105 = .data:0x80230894; // type:object size:0x2F scope:local align:4 data:string +@4186 = .data:0x802308C4; // type:object size:0xA scope:local align:4 data:string +@4417 = .data:0x802308D0; // type:object size:0xB scope:local align:4 data:string +@4418 = .data:0x802308DC; // type:object size:0x11 scope:local align:4 data:string +@4419 = .data:0x802308F0; // type:object size:0x34 scope:local align:4 data:string +@4566 = .data:0x80230924; // type:object size:0xB scope:local align:4 data:string +@4568 = .data:0x80230930; // type:object size:0xB scope:local align:4 data:string +@4567 = .data:0x8023093C; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x80230948; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x80230958; // type:object size:0x10 scope:weak align:4 +@4573 = .data:0x80230968; // type:object size:0xA scope:local align:4 data:string +@4576 = .data:0x80230974; // type:object size:0xC scope:local align:4 +@4574 = .data:0x80230980; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x80230994; // type:object size:0x24 scope:global align:4 +@4582 = .data:0x802309B8; // type:object size:0x2D scope:local align:4 data:string +@4584 = .data:0x802309E8; // type:object size:0x23 scope:local align:4 data:string +@4583 = .data:0x80230A0C; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x80230A18; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x80230A24; // type:object size:0xC scope:weak align:4 +@4585 = .data:0x80230A30; // type:object size:0xB scope:local align:4 data:string +@4586 = .data:0x80230A3C; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x80230A50; // type:object size:0x10 scope:weak align:4 +@4588 = .data:0x80230A60; // type:object size:0xB scope:local align:4 data:string +@4589 = .data:0x80230A6C; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x80230A80; // type:object size:0x10 scope:weak align:4 +@4590 = .data:0x80230A90; // type:object size:0xC scope:local align:4 data:string +@4591 = .data:0x80230A9C; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x80230AB0; // type:object size:0x10 scope:weak align:4 +@4594 = .data:0x80230AC0; // type:object size:0x9 scope:local align:4 data:string +@4595 = .data:0x80230ACC; // type:object size:0x14 scope:local align:4 +@4593 = .data:0x80230AE0; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x80230AFC; // type:object size:0x20 scope:global align:4 +@4598 = .data:0x80230B1C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x80230B38; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x80230B58; // type:object size:0x20 scope:global align:4 +@4599 = .data:0x80230B78; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x80230B84; // type:object size:0xC scope:global align:4 +@4600 = .data:0x80230B90; // type:object size:0xF scope:local align:4 data:string +@4601 = .data:0x80230BA0; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x80230BB4; // type:object size:0x10 scope:weak align:4 +@4603 = .data:0x80230BC4; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x80230BD8; // type:object size:0x10 scope:global align:4 +@4605 = .data:0x80230BE8; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x80230BFC; // type:object size:0x10 scope:global align:4 +@4606 = .data:0x80230C0C; // type:object size:0x9 scope:local align:4 data:string +@4607 = .data:0x80230C18; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x80230C2C; // type:object size:0x10 scope:weak align:4 +@4608 = .data:0x80230C58; // type:object size:0x9 scope:local align:4 data:string +@4609 = .data:0x80230C64; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x80230C78; // type:object size:0x10 scope:global align:4 +@690 = .data:0x80230C88; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x80230C94; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x80230CA0; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x80230CB0; // type:label scope:local +@571 = .data:0x80230CB0; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x80230CC0; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x80230CCC; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x80230CDC; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x80230CEC; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x80230CF8; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x80230D04; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x80230D14; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x80230D2C; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x80230D3C; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x80230D4C; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x80230D5C; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x80230D70; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x80230D80; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x80230D94; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x80230DA0; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x80230DAC; // type:object size:0xC scope:local align:4 +@1109 = .data:0x80230DB8; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x80230DC4; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x80230DD8; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x80230DF4; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x80230E0C; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x80230E24; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x80230E30; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x80230E44; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x80230E54; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x80230E60; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x80230E74; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80230EA0; // type:label scope:local +@570 = .data:0x80230EA0; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x80230EB0; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x80230EBC; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x80230EC8; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x80230ED4; // type:object size:0xE scope:local align:4 data:string +@691 = .data:0x80230EE4; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x80230F00; // type:object size:0x36 scope:local align:4 data:string +@1000 = .data:0x80230F38; // type:object size:0x2A scope:local align:4 data:string +@1001 = .data:0x80230F64; // type:object size:0xB scope:local align:4 data:string +@1003 = .data:0x80230F70; // type:object size:0xB scope:local align:4 data:string +@1002 = .data:0x80230F7C; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x80230F88; // type:object size:0x10 scope:weak align:4 +@1004 = .data:0x80230F98; // type:object size:0xC scope:local align:4 data:string +@1007 = .data:0x80230FA4; // type:object size:0xC scope:local align:4 +@1005 = .data:0x80230FB0; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x80230FC4; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x80230FD4; // type:object size:0x38 scope:global align:4 +@1017 = .data:0x8023100C; // type:object size:0xB scope:local align:4 data:string +@1018 = .data:0x80231018; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x80231024; // type:object size:0x10 scope:weak align:4 +@1023 = .data:0x80231034; // type:object size:0xB scope:local align:4 data:string +@1024 = .data:0x80231040; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x8023104C; // type:object size:0x10 scope:weak align:4 +@1025 = .data:0x80231088; // type:object size:0xB scope:local align:4 data:string +@1026 = .data:0x80231094; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x802310A0; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802310B0; // type:label scope:local +@570 = .data:0x802310B0; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x802310BC; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802310C8; // type:object size:0xC scope:local align:4 +@755 = .data:0x802310D4; // type:object size:0x14 scope:local align:4 +@752 = .data:0x802310E8; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x80231104; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x80231150; // type:object size:0x30 scope:global align:4 +@726 = .data:0x80231180; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x80231190; // type:label scope:local +@388 = .data:0x80231190; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x802311A0; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x802311AC; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802311B8; // type:object size:0xC scope:local align:4 +@428 = .data:0x802311C4; // type:object size:0x14 scope:local align:4 +@423 = .data:0x802311D8; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x802311F4; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x80231228; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x80231240; // type:label scope:local +@466 = .data:0x80231240; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x80231250; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x80231264; // type:object size:0xC scope:local align:4 +@467 = .data:0x80231270; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x80231284; // type:object size:0x68 scope:global align:4 +@476 = .data:0x802312EC; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x802312F8; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x80231304; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x80231360; // type:label scope:local +@570 = .data:0x80231360; // type:object size:0xC scope:local align:4 data:string +@663 = .data:0x8023136C; // type:object size:0x22 scope:local align:4 data:string +gxTexFmts = .data:0x80231390; // type:object size:0x24 scope:local align:4 +@711 = .data:0x802313B4; // type:object size:0xA scope:local align:4 data:string +@710 = .data:0x802313C0; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x802313CC; // type:object size:0x14 scope:global align:4 +@713 = .data:0x802313E0; // type:object size:0x9 scope:local align:4 data:string +@714 = .data:0x802313EC; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x80231414; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80231440; // type:label scope:local +bigFont_data = .data:0x80231440; // type:object size:0x7C080 scope:local align:32 noreloc +@577 = .data:0x802AD4C0; // type:object size:0xB scope:local align:4 data:string +@687 = .data:0x802AD4CC; // type:object size:0x27 scope:local align:4 data:string +@688 = .data:0x802AD4F4; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802AD504; // type:object size:0x1F scope:local align:4 data:string +@799 = .data:0x802AD524; // type:object size:0x39 scope:local align:4 data:string +@909 = .data:0x802AD560; // type:object size:0xA scope:local align:4 data:string +@953 = .data:0x802AD56C; // type:object size:0x9 scope:local align:4 data:string +@984 = .data:0x802AD578; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802AD584; // type:object size:0x1D scope:local align:4 +@988 = .data:0x802AD5A4; // type:object size:0x17 scope:local align:4 +@989 = .data:0x802AD5BC; // type:object size:0x19 scope:local align:4 +@990 = .data:0x802AD5D8; // type:object size:0xE scope:local align:4 +@991 = .data:0x802AD5E8; // type:object size:0x17 scope:local align:4 +@992 = .data:0x802AD600; // type:object size:0x15 scope:local align:4 +@993 = .data:0x802AD618; // type:object size:0x21 scope:local align:4 +@994 = .data:0x802AD63C; // type:object size:0x1B scope:local align:4 +@995 = .data:0x802AD658; // type:object size:0x19 scope:local align:4 +@996 = .data:0x802AD674; // type:object size:0x19 scope:local align:4 +@997 = .data:0x802AD690; // type:object size:0x15 scope:local align:4 +@998 = .data:0x802AD6A8; // type:object size:0x11 scope:local align:4 +@999 = .data:0x802AD6BC; // type:object size:0x11 scope:local align:4 +@1000 = .data:0x802AD6D0; // type:object size:0x1D scope:local align:4 +@1001 = .data:0x802AD6F0; // type:object size:0x19 scope:local align:4 +errorMessages = .data:0x802AD70C; // type:object size:0x5C scope:local align:4 +errorList = .data:0x802AD768; // type:object size:0x18 scope:local align:4 +@1036 = .data:0x802AD780; // type:object size:0xC scope:local align:4 +@1090 = .data:0x802AD78C; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802AD7A0; // type:object size:0xD scope:local align:4 data:string +@1203 = .data:0x802AD7B0; // type:object size:0x1C scope:local align:4 data:string +@1204 = .data:0x802AD7CC; // type:object size:0x1F scope:local align:4 data:string +@1229 = .data:0x802AD7EC; // type:object size:0x26 scope:local align:4 data:string +@1230 = .data:0x802AD814; // type:object size:0x21 scope:local align:4 data:string +@1286 = .data:0x802AD838; // type:object size:0x1E scope:local align:4 data:string +@1288 = .data:0x802AD858; // type:object size:0x17 scope:local align:4 data:string +@1287 = .data:0x802AD870; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802AD87C; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802AD888; // type:object size:0xC scope:weak align:4 +@1289 = .data:0x802AD894; // type:object size:0xA scope:local align:4 data:string +@1290 = .data:0x802AD8A0; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802AD8AC; // type:object size:0x58 scope:weak align:4 +@1311 = .data:0x802AD904; // type:object size:0xC scope:local align:4 data:string +@1314 = .data:0x802AD910; // type:object size:0x9 scope:local align:4 data:string +@1315 = .data:0x802AD91C; // type:object size:0xC scope:local align:4 +@1312 = .data:0x802AD928; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802AD93C; // type:object size:0x10 scope:weak align:4 +@1318 = .data:0x802AD94C; // type:object size:0x9 scope:local align:4 data:string +@1319 = .data:0x802AD958; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802AD96C; // type:object size:0x10 scope:weak align:4 +@1320 = .data:0x802AD998; // type:object size:0xA scope:local align:4 data:string +@1322 = .data:0x802AD9A4; // type:object size:0x13 scope:local align:4 data:string +@1323 = .data:0x802AD9B8; // type:object size:0xC scope:local align:4 +@1321 = .data:0x802AD9C4; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802AD9D8; // type:object size:0x64 scope:weak align:4 +@1332 = .data:0x802ADAA0; // type:object size:0xA scope:local align:4 data:string +@1331 = .data:0x802ADAAC; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802ADAB8; // type:object size:0x38 scope:global align:4 +@1349 = .data:0x802ADAF0; // type:object size:0xB scope:local align:4 data:string +@1350 = .data:0x802ADAFC; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802ADB10; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802ADB78; // type:label scope:local +@388 = .data:0x802ADB78; // type:object size:0xB scope:local align:4 data:string +@434 = .data:0x802ADB84; // type:object size:0x1D scope:local align:4 data:string +@435 = .data:0x802ADBA4; // type:object size:0x29 scope:local align:4 data:string +@436 = .data:0x802ADBD0; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802ADBE8; // type:label scope:local +@388 = .data:0x802ADBE8; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802ADBFC; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802ADC0C; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802ADC1C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802ADC28; // type:label scope:local +@577 = .data:0x802ADC28; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802ADC38; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802ADC44; // type:object size:0x3C scope:global align:4 +localNtsc480IntDf = .data:0x802ADC80; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802ADCBC; // type:object size:0x20 scope:local align:4 +@655 = .data:0x802ADCDC; // type:object size:0x21 scope:local align:4 data:string +@723 = .data:0x802ADD00; // type:object size:0x27 scope:local align:4 data:string +@738 = .data:0x802ADD28; // type:object size:0x15 scope:local align:4 data:string +@951 = .data:0x802ADD40; // type:object size:0xB scope:local align:4 data:string +@952 = .data:0x802ADD4C; // type:object size:0xB scope:local align:4 data:string +@953 = .data:0x802ADD58; // type:object size:0xB scope:local align:4 data:string +@954 = .data:0x802ADD64; // type:object size:0xB scope:local align:4 data:string +@955 = .data:0x802ADD70; // type:object size:0xB scope:local align:4 data:string +@956 = .data:0x802ADD7C; // type:object size:0xB scope:local align:4 data:string +@957 = .data:0x802ADD88; // type:object size:0xB scope:local align:4 data:string +@958 = .data:0x802ADD94; // type:object size:0xB scope:local align:4 data:string +@959 = .data:0x802ADDA0; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802ADDAC; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802ADDB8; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802ADDC4; // type:object size:0x2C scope:local align:4 +@962 = .data:0x802ADDF0; // type:object size:0xA scope:local align:4 data:string +@963 = .data:0x802ADDFC; // type:object size:0xA scope:local align:4 data:string +@964 = .data:0x802ADE08; // type:object size:0xC scope:local align:4 data:string +@965 = .data:0x802ADE14; // type:object size:0xE scope:local align:4 data:string +@966 = .data:0x802ADE24; // type:object size:0xB scope:local align:4 data:string +@967 = .data:0x802ADE30; // type:object size:0xB scope:local align:4 data:string +@968 = .data:0x802ADE3C; // type:object size:0xB scope:local align:4 data:string +@969 = .data:0x802ADE48; // type:object size:0xB scope:local align:4 data:string +@970 = .data:0x802ADE54; // type:object size:0xB scope:local align:4 data:string +@971 = .data:0x802ADE60; // type:object size:0xB scope:local align:4 data:string +@972 = .data:0x802ADE6C; // type:object size:0xB scope:local align:4 data:string +@973 = .data:0x802ADE78; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802ADE84; // type:object size:0x10 scope:local align:4 data:string +@975 = .data:0x802ADE94; // type:object size:0x10 scope:local align:4 data:string +@976 = .data:0x802ADEA4; // type:object size:0x10 scope:local align:4 data:string +@977 = .data:0x802ADEB4; // type:object size:0x10 scope:local align:4 data:string +@978 = .data:0x802ADEC4; // type:object size:0x10 scope:local align:4 data:string +@979 = .data:0x802ADED4; // type:object size:0x10 scope:local align:4 data:string +@980 = .data:0x802ADEE4; // type:object size:0x10 scope:local align:4 data:string +@981 = .data:0x802ADEF4; // type:object size:0xD scope:local align:4 data:string +@982 = .data:0x802ADF04; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802ADF14; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802ADF68; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802AE020; // type:object size:0xB0 scope:local align:4 +@1333 = .data:0x802AE0D0; // type:object size:0x1C scope:local align:4 +@1425 = .data:0x802AE0EC; // type:object size:0x11 scope:local align:4 data:string +@1946 = .data:0x802AE100; // type:object size:0x10 scope:local align:4 data:string +@1967 = .data:0x802AE110; // type:object size:0xA scope:local align:4 data:string +@1968 = .data:0x802AE11C; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802AE134; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802AE1B4; // type:object size:0x100 scope:local align:4 +@2084 = .data:0x802AE2B4; // type:object size:0x9 scope:local align:4 data:string +@2085 = .data:0x802AE2C0; // type:object size:0xC scope:local align:4 +@2086 = .data:0x802AE2CC; // type:object size:0xA scope:local align:4 data:string +@2087 = .data:0x802AE2D8; // type:object size:0x14 scope:local align:4 +@2082 = .data:0x802AE2EC; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802AE308; // type:object size:0x24 scope:global align:4 +@2096 = .data:0x802AE32C; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802AE338; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802AE344; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802AE440; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802AE468; // type:label scope:local +@713 = .data:0x802AE468; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802AE47C; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802AE48C; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802AE498; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802AE4A4; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802AE4B0; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802AE4C4; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802AE4E0; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802AE550; // type:label scope:local +@697 = .data:0x802AE550; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802AE55C; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802AE568; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802AE574; // type:object size:0xA scope:local align:4 data:string +@1156 = .data:0x802AE580; // type:object size:0x3B scope:local align:4 data:string +@1165 = .data:0x802AE5BC; // type:object size:0x28 scope:local align:4 data:string +@1263 = .data:0x802AE5E4; // type:object size:0x22 scope:local align:4 data:string +@1266 = .data:0x802AE608; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802AE614; // type:object size:0x18 scope:global align:4 +@1270 = .data:0x802AE62C; // type:object size:0xC scope:local align:4 +@1268 = .data:0x802AE638; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802AE64C; // type:object size:0x10 scope:global align:4 +@1272 = .data:0x802AE65C; // type:object size:0xD scope:local align:4 data:string +@1274 = .data:0x802AE66C; // type:object size:0x9 scope:local align:4 data:string +@1273 = .data:0x802AE678; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802AE684; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802AE698; // type:object size:0xC scope:local align:4 data:string +@1276 = .data:0x802AE6A4; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802AE6B0; // type:object size:0x14 scope:weak align:4 +@1277 = .data:0x802AE6C4; // type:object size:0xA scope:local align:4 data:string +@1278 = .data:0x802AE6D0; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802AE6DC; // type:object size:0x14 scope:weak align:4 +@1279 = .data:0x802AE6F0; // type:object size:0x9 scope:local align:4 data:string +@1280 = .data:0x802AE6FC; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802AE710; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AE740; // type:label scope:local +@1799 = .data:0x802AE740; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802AE750; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802AE75C; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802AE768; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802AE77C; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802AE78C; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802AE79C; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802AE7B0; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802AE7C0; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802AE7D4; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802AE7E4; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802AE7F0; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802AE7FC; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802AE808; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802AE814; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802AE820; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802AE82C; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802AE838; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802AE844; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802AE858; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802AE864; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802AE870; // type:object size:0xC scope:local align:4 +@2263 = .data:0x802AE87C; // type:object size:0x17 scope:local align:4 data:string +@2264 = .data:0x802AE894; // type:object size:0x1F scope:local align:4 data:string +@2265 = .data:0x802AE8B4; // type:object size:0x1C scope:local align:4 data:string +@2266 = .data:0x802AE8D0; // type:object size:0x12 scope:local align:4 data:string +@2267 = .data:0x802AE8E4; // type:object size:0x12 scope:local align:4 data:string +@2268 = .data:0x802AE8F8; // type:object size:0x18 scope:local align:4 data:string +@2269 = .data:0x802AE910; // type:object size:0x20 scope:local align:4 data:string +@2270 = .data:0x802AE930; // type:object size:0x1D scope:local align:4 data:string +@2271 = .data:0x802AE950; // type:object size:0x13 scope:local align:4 data:string +@2272 = .data:0x802AE964; // type:object size:0x13 scope:local align:4 data:string +@2273 = .data:0x802AE978; // type:object size:0x10 scope:local align:4 data:string +@2298 = .data:0x802AE988; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802AE99C; // type:object size:0xD scope:local align:4 data:string +@2301 = .data:0x802AE9AC; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802AE9B8; // type:object size:0x18 scope:local align:4 data:string +@2303 = .data:0x802AE9D0; // type:object size:0x18 scope:local align:4 data:string +@2470 = .data:0x802AE9E8; // type:object size:0x4C scope:local align:4 data:string +@2500 = .data:0x802AEA34; // type:object size:0xC scope:local align:4 data:string +@2503 = .data:0x802AEA40; // type:object size:0x9 scope:local align:4 data:string +@2504 = .data:0x802AEA4C; // type:object size:0xC scope:local align:4 +@2506 = .data:0x802AEA58; // type:object size:0x14 scope:local align:4 +@2501 = .data:0x802AEA6C; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802AEA88; // type:object size:0x30 scope:weak align:4 +@2514 = .data:0x802AEAB8; // type:object size:0xC scope:local align:4 data:string +@2515 = .data:0x802AEAC4; // type:object size:0x14 scope:local align:4 +@2517 = .data:0x802AEAE8; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802AEB04; // type:object size:0x34 scope:weak align:4 +@2518 = .data:0x802AEB38; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802AEB54; // type:object size:0x30 scope:weak align:4 +@2526 = .data:0x802AEBA0; // type:object size:0xD scope:local align:4 data:string +@2528 = .data:0x802AEBB0; // type:object size:0x9 scope:local align:4 data:string +@2527 = .data:0x802AEBBC; // type:object size:0xC scope:local align:4 +@2529 = .data:0x802AEBDC; // type:object size:0xA scope:local align:4 data:string +@2530 = .data:0x802AEBE8; // type:object size:0xC scope:local align:4 +@2531 = .data:0x802AEC08; // type:object size:0xC scope:local align:4 data:string +@2532 = .data:0x802AEC14; // type:object size:0xC scope:local align:4 +@2533 = .data:0x802AEC34; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802AEC50; // type:object size:0x30 scope:global align:4 +@2534 = .data:0x802AEC80; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802AEC9C; // type:object size:0x13 scope:local align:4 data:string +@2535 = .data:0x802AECB0; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802AECBC; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802AECC8; // type:object size:0xC scope:weak align:4 +@2537 = .data:0x802AECD4; // type:object size:0xE scope:local align:4 data:string +@2539 = .data:0x802AECE4; // type:object size:0xA scope:local align:4 data:string +@2540 = .data:0x802AECF0; // type:object size:0x14 scope:local align:4 +@2538 = .data:0x802AED04; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802AED20; // type:object size:0x18 scope:global align:4 +@2569 = .data:0x802AED38; // type:object size:0xB scope:local align:4 data:string +@2570 = .data:0x802AED44; // type:object size:0xA scope:local align:4 data:string +@2571 = .data:0x802AED50; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802AED5C; // type:object size:0x18 scope:weak align:4 +@2619 = .data:0x802AED74; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802AED80; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802AED94; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AEDA8; // type:label scope:local +@681 = .data:0x802AEDA8; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802AEDB4; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802AEDC4; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802AEDD0; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802AEDDC; // type:object size:0xF scope:local align:4 data:string +@794 = .data:0x802AEDEC; // type:object size:0x11 scope:local align:4 data:string +@795 = .data:0x802AEE00; // type:object size:0xF scope:local align:4 data:string +@796 = .data:0x802AEE10; // type:object size:0xF scope:local align:4 data:string +@797 = .data:0x802AEE20; // type:object size:0xF scope:local align:4 data:string +@798 = .data:0x802AEE30; // type:object size:0x12 scope:local align:4 data:string +levNames = .data:0x802AEE44; // type:object size:0x18 scope:local align:4 +@936 = .data:0x802AEE5C; // type:object size:0x13 scope:local align:4 data:string +@938 = .data:0x802AEE70; // type:object size:0x14 scope:local align:4 data:string +@939 = .data:0x802AEE84; // type:object size:0x12 scope:local align:4 data:string +@940 = .data:0x802AEE98; // type:object size:0x12 scope:local align:4 data:string +@941 = .data:0x802AEEAC; // type:object size:0x30 scope:local align:4 +@942 = .data:0x802AEEDC; // type:object size:0x11 scope:local align:4 data:string +@945 = .data:0x802AEEF0; // type:object size:0x9 scope:local align:4 data:string +@946 = .data:0x802AEEFC; // type:object size:0xC scope:local align:4 +@948 = .data:0x802AEF08; // type:object size:0x14 scope:local align:4 +@950 = .data:0x802AEF1C; // type:object size:0x1C scope:local align:4 +@943 = .data:0x802AEF38; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802AEF5C; // type:object size:0x34 scope:global align:4 +@958 = .data:0x802AEF90; // type:object size:0xC scope:local align:4 data:string +@959 = .data:0x802AEF9C; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802AEFB0; // type:object size:0x10 scope:weak align:4 +@960 = .data:0x802AEFDC; // type:object size:0xA scope:local align:4 data:string +@961 = .data:0x802AEFE8; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802AEFFC; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802AF010; // type:label scope:local +@683 = .data:0x802AF010; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802AF020; // type:object size:0xA scope:local align:4 data:string +@786 = .data:0x802AF02C; // type:object size:0x3A scope:local align:4 data:string +@787 = .data:0x802AF068; // type:object size:0xE scope:local align:4 data:string +@895 = .data:0x802AF078; // type:object size:0x1A scope:local align:4 data:string +@971 = .data:0x802AF094; // type:object size:0xA scope:local align:4 data:string +@974 = .data:0x802AF0A0; // type:object size:0x9 scope:local align:4 data:string +@975 = .data:0x802AF0AC; // type:object size:0xC scope:local align:4 +@972 = .data:0x802AF0B8; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802AF0CC; // type:object size:0x14 scope:global align:4 +@977 = .data:0x802AF0E0; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802AF0F4; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802AF108; // type:label scope:local +@1013 = .data:0x802AF108; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802AF118; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802AF124; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802AF140; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802AF15C; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802AF178; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802AF194; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802AF1B0; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802AF1CC; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802AF1E8; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802AF204; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802AF218; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802AF22C; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802AF240; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802AF254; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802AF268; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802AF27C; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802AF2CC; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802AF2E4; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802AF2FC; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802AF318; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802AF334; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802AF350; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802AF36C; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802AF388; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802AF3A4; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802AF3C0; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802AF3DC; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802AF3F8; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802AF414; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802AF434; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802AF454; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802AF474; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802AF494; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802AF4B4; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802AF4D4; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802AF4F4; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802AF514; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802AF534; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802AF554; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802AF574; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802AF594; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802AF5B4; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802AF5D4; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802AF5F4; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802AF614; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802AF634; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802AF654; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802AF674; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802AF694; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802AF6B4; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802AF6D4; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802AF764; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802AF778; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802AF794; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802AF7A8; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802AF7C4; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802AF7DC; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802AF7FC; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802AF814; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802AF834; // type:object size:0x14 scope:local align:4 data:string +@1081 = .data:0x802AF848; // type:object size:0x1C scope:local align:4 data:string +@1082 = .data:0x802AF864; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802AF880; // type:object size:0x21 scope:local align:4 data:string +@1084 = .data:0x802AF8A4; // type:object size:0x15 scope:local align:4 data:string +@1085 = .data:0x802AF8BC; // type:object size:0x1D scope:local align:4 data:string +@1086 = .data:0x802AF8DC; // type:object size:0x13 scope:local align:4 data:string +@1087 = .data:0x802AF8F0; // type:object size:0x1B scope:local align:4 data:string +@1088 = .data:0x802AF90C; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802AF920; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802AF93C; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802AF950; // type:object size:0x1A scope:local align:4 data:string +@1092 = .data:0x802AF96C; // type:object size:0x13 scope:local align:4 data:string +@1093 = .data:0x802AF980; // type:object size:0x1B scope:local align:4 data:string +@1094 = .data:0x802AF99C; // type:object size:0x16 scope:local align:4 data:string +@1095 = .data:0x802AF9B4; // type:object size:0x1E scope:local align:4 data:string +@1096 = .data:0x802AF9D4; // type:object size:0x18 scope:local align:4 data:string +@1097 = .data:0x802AF9EC; // type:object size:0x20 scope:local align:4 data:string +@1098 = .data:0x802AFA0C; // type:object size:0x16 scope:local align:4 data:string +@1099 = .data:0x802AFA24; // type:object size:0x1E scope:local align:4 data:string +@1100 = .data:0x802AFA44; // type:object size:0x17 scope:local align:4 data:string +@1101 = .data:0x802AFA5C; // type:object size:0x1F scope:local align:4 data:string +@1102 = .data:0x802AFA7C; // type:object size:0x13 scope:local align:4 data:string +@1103 = .data:0x802AFA90; // type:object size:0x1B scope:local align:4 data:string +@1104 = .data:0x802AFAAC; // type:object size:0x12 scope:local align:4 data:string +@1105 = .data:0x802AFAC0; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802AFADC; // type:object size:0x90 scope:local align:4 +@1147 = .data:0x802AFB6C; // type:object size:0x2E scope:local align:4 data:string +@1148 = .data:0x802AFB9C; // type:object size:0x2E scope:local align:4 data:string +@1191 = .data:0x802AFBCC; // type:object size:0x13 scope:local align:4 data:string +@1193 = .data:0x802AFBE0; // type:object size:0x12 scope:local align:4 data:string +@1194 = .data:0x802AFBF4; // type:object size:0x9 scope:local align:4 data:string +@1195 = .data:0x802AFC00; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802AFC0C; // type:object size:0x11 scope:local align:4 data:string +@1227 = .data:0x802AFC20; // type:object size:0x9 scope:local align:4 data:string +@1228 = .data:0x802AFC2C; // type:object size:0xC scope:local align:4 +@1230 = .data:0x802AFC38; // type:object size:0x14 scope:local align:4 +@1232 = .data:0x802AFC4C; // type:object size:0x1C scope:local align:4 +@1225 = .data:0x802AFC68; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802AFC8C; // type:object size:0x34 scope:global align:4 +@1241 = .data:0x802AFCDC; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802AFCE8; // type:object size:0x13 scope:local align:4 data:string +@1245 = .data:0x802AFCFC; // type:object size:0xC scope:local align:4 +@1242 = .data:0x802AFD08; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802AFD1C; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802AFE20; // type:label scope:local +@1108 = .data:0x802AFE20; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802AFE30; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802AFE3C; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802AFE50; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802AFE64; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802AFE74; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802AFE80; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802AFEA8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802AFEC0; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802AFED4; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802AFEF0; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802AFF20; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802AFF34; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802AFF50; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802AFF74; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802AFFE0; // type:label scope:local +@1109 = .data:0x802AFFE0; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802AFFF0; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802AFFFC; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802B0008; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802B0014; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802B0020; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802B002C; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802B0040; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802B0054; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802B0064; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802B0074; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802B0080; // type:object size:0xE scope:local align:4 data:string +@1429 = .data:0x802B0090; // type:object size:0x21 scope:local align:4 data:string +@1432 = .data:0x802B00B4; // type:object size:0xF scope:local align:4 data:string +@1464 = .data:0x802B00C4; // type:object size:0x9 scope:local align:4 data:string +@1465 = .data:0x802B00D0; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802B00F8; // type:object size:0x16 scope:local align:4 data:string +@1472 = .data:0x802B0110; // type:object size:0x14 scope:local align:4 +@1470 = .data:0x802B0124; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802B0140; // type:object size:0x30 scope:weak align:4 +@1570 = .data:0x802B0170; // type:object size:0x11 scope:local align:4 data:string +@1573 = .data:0x802B0184; // type:object size:0x1C scope:local align:4 +@1571 = .data:0x802B01A0; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802B01C4; // type:object size:0x34 scope:weak align:4 +@1575 = .data:0x802B022C; // type:object size:0x18 scope:local align:4 data:string +@1577 = .data:0x802B0244; // type:object size:0x13 scope:local align:4 data:string +@1576 = .data:0x802B0258; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802B0264; // type:object size:0xC scope:weak align:4 +@1578 = .data:0x802B0270; // type:object size:0x29 scope:local align:4 data:string +@1579 = .data:0x802B029C; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802B02A8; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B02C0; // type:label scope:local +@1892 = .data:0x802B02C0; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802B02D0; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802B02DC; // type:object size:0xD scope:local align:4 data:string +@2940 = .data:0x802B02EC; // type:object size:0x20 scope:local align:4 data:string +@2943 = .data:0x802B030C; // type:object size:0x4C scope:local align:4 +@3039 = .data:0x802B0358; // type:object size:0x15 scope:local align:4 data:string +@3043 = .data:0x802B0370; // type:object size:0xB scope:local align:4 data:string +@3047 = .data:0x802B037C; // type:object size:0xC scope:local align:4 data:string +@3069 = .data:0x802B0388; // type:object size:0xC scope:local align:4 data:string +@3072 = .data:0x802B0394; // type:object size:0x9 scope:local align:4 data:string +@3073 = .data:0x802B03A0; // type:object size:0xA scope:local align:4 data:string +@3096 = .data:0x802B03AC; // type:object size:0x9 scope:local align:4 data:string +@3098 = .data:0x802B03B8; // type:object size:0xD scope:local align:4 data:string +@3117 = .data:0x802B03C8; // type:object size:0x9 scope:local align:4 data:string +@3124 = .data:0x802B03D4; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802B03E4; // type:object size:0x18 scope:weak align:4 +@3128 = .data:0x802B03FC; // type:object size:0xA scope:local align:4 data:string +@3131 = .data:0x802B0408; // type:object size:0x9 scope:local align:4 data:string +@3132 = .data:0x802B0414; // type:object size:0xC scope:local align:4 +@3129 = .data:0x802B0420; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802B0434; // type:object size:0x10 scope:weak align:4 +@3135 = .data:0x802B0444; // type:object size:0x18 scope:local align:4 data:string +@3138 = .data:0x802B045C; // type:object size:0x14 scope:local align:4 +@3139 = .data:0x802B0470; // type:object size:0x10 scope:local align:4 data:string +@3140 = .data:0x802B0480; // type:object size:0x1C scope:local align:4 +@3136 = .data:0x802B049C; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802B04C0; // type:object size:0x34 scope:weak align:4 +@3319 = .data:0x802B04F4; // type:object size:0xA scope:local align:4 data:string +@3320 = .data:0x802B0500; // type:object size:0xB scope:local align:4 data:string +@3324 = .data:0x802B050C; // type:object size:0x9 scope:local align:4 data:string +@3325 = .data:0x802B0518; // type:object size:0xB scope:local align:4 data:string +@3335 = .data:0x802B0524; // type:object size:0x13 scope:local align:4 data:string +@3338 = .data:0x802B0538; // type:object size:0x1C scope:local align:4 +@3336 = .data:0x802B0554; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802B0578; // type:object size:0x34 scope:weak align:4 +@3340 = .data:0x802B05E0; // type:object size:0x13 scope:local align:4 data:string +@3341 = .data:0x802B05F4; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802B0600; // type:object size:0x20 scope:global align:4 +@3356 = .data:0x802B0620; // type:object size:0x16 scope:local align:4 data:string +@3358 = .data:0x802B0638; // type:object size:0xA scope:local align:4 data:string +@3357 = .data:0x802B0644; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802B0650; // type:object size:0x14 scope:weak align:4 +@3364 = .data:0x802B0664; // type:object size:0x11 scope:local align:4 data:string +@3365 = .data:0x802B0678; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802B0684; // type:object size:0x14 scope:global align:4 +@3376 = .data:0x802B0698; // type:object size:0x11 scope:local align:4 data:string +@3377 = .data:0x802B06AC; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802B06B8; // type:object size:0x14 scope:global align:4 +@3384 = .data:0x802B06CC; // type:object size:0x11 scope:local align:4 data:string +@3385 = .data:0x802B06E0; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802B06EC; // type:object size:0x14 scope:global align:4 +__vt__9ModeState = .data:0x802B0700; // type:object size:0x14 scope:weak align:4 +@3386 = .data:0x802B0714; // type:object size:0x13 scope:local align:4 data:string +@3387 = .data:0x802B0728; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802B0734; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802B0748; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802B0798; // type:label scope:local +@1181 = .data:0x802B0798; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802B07A8; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802B07B4; // type:object size:0x13 scope:local align:4 data:string +@1308 = .data:0x802B07C8; // type:object size:0x9 scope:local align:4 data:string +@1309 = .data:0x802B07D4; // type:object size:0xC scope:local align:4 +@1313 = .data:0x802B07FC; // type:object size:0xF scope:local align:4 data:string +@1315 = .data:0x802B080C; // type:object size:0xA scope:local align:4 data:string +@1314 = .data:0x802B0818; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802B0824; // type:object size:0x14 scope:weak align:4 +@1325 = .data:0x802B0838; // type:object size:0x12 scope:local align:4 data:string +@1326 = .data:0x802B084C; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802B0858; // type:object size:0x14 scope:weak align:4 +@1334 = .data:0x802B0880; // type:object size:0x16 scope:local align:4 data:string +@1337 = .data:0x802B0898; // type:object size:0x14 scope:local align:4 +@1338 = .data:0x802B08AC; // type:object size:0x10 scope:local align:4 data:string +@1339 = .data:0x802B08BC; // type:object size:0x1C scope:local align:4 +@1335 = .data:0x802B08D8; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802B08FC; // type:object size:0x34 scope:weak align:4 +@1412 = .data:0x802B0930; // type:object size:0xB scope:local align:4 data:string +@1415 = .data:0x802B093C; // type:object size:0x9 scope:local align:4 data:string +@1416 = .data:0x802B0948; // type:object size:0xB scope:local align:4 data:string +@1426 = .data:0x802B0954; // type:object size:0x11 scope:local align:4 data:string +@1429 = .data:0x802B0968; // type:object size:0x1C scope:local align:4 +@1427 = .data:0x802B0984; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802B09A8; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802B0A10; // type:label scope:local +@684 = .data:0x802B0A10; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802B0A20; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802B0A2C; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802B0A3C; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802B0A48; // type:object size:0xC scope:local align:4 +@721 = .data:0x802B0A54; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802B0A68; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802B0A84; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802B0AA8; // type:object size:0x34 scope:global align:4 +@829 = .data:0x802B0B30; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802B0B48; // type:label scope:local +@810 = .data:0x802B0B48; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802B0B5C; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802B0B6C; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802B0B78; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802B0B8C; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802B0B98; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802B0BA4; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802B0BCC; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802B0BDC; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802B0BF0; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802B0BFC; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802B0C18; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802B0C24; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802B0C48; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802B0C74; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802B0CEC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802B0D00; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802B0D0C; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802B0D18; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802B0D24; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802B0D38; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802B0D54; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B0D90; // type:label scope:local +@841 = .data:0x802B0D90; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802B0E14; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802B0E20; // type:object size:0xC scope:local align:4 +@956 = .data:0x802B0E2C; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802B0E40; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802B0E5C; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802B0ED0; // type:label scope:local +@570 = .data:0x802B0ED0; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802B0EE0; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802B0EEC; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802B0F00; // type:label scope:local +@677 = .data:0x802B0F00; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802B0F10; // type:object size:0x9 scope:local align:4 data:string +@804 = .data:0x802B0F1C; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802B0F28; // type:object size:0x12 scope:local align:4 data:string +@806 = .data:0x802B0F3C; // type:object size:0x9 scope:local align:4 data:string +@808 = .data:0x802B0F48; // type:object size:0x9 scope:local align:4 data:string +@810 = .data:0x802B0F54; // type:object size:0x1E scope:local align:4 data:string +@811 = .data:0x802B0F74; // type:object size:0xE scope:local align:4 data:string +@814 = .data:0x802B0F84; // type:object size:0x14 scope:local align:4 data:string +@870 = .data:0x802B0F98; // type:object size:0xE scope:local align:4 data:string +@876 = .data:0x802B0FA8; // type:object size:0x11 scope:local align:4 data:string +@879 = .data:0x802B0FBC; // type:object size:0xA scope:local align:4 data:string +@880 = .data:0x802B0FC8; // type:object size:0xC scope:local align:4 +@877 = .data:0x802B0FD4; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802B0FE8; // type:object size:0x58 scope:weak align:4 +@885 = .data:0x802B1040; // type:object size:0x9 scope:local align:4 data:string +@886 = .data:0x802B104C; // type:object size:0xC scope:local align:4 +@888 = .data:0x802B1058; // type:object size:0x14 scope:local align:4 +@890 = .data:0x802B106C; // type:object size:0x1C scope:local align:4 +@883 = .data:0x802B1088; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802B10AC; // type:object size:0x4C scope:weak align:4 +@902 = .data:0x802B10F8; // type:object size:0xC scope:local align:4 data:string +@903 = .data:0x802B1104; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802B1130; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802B1180; // type:label scope:local +@982 = .data:0x802B1180; // type:object size:0xB scope:local align:4 data:string +@1311 = .data:0x802B118C; // type:object size:0xC scope:local align:4 +@1315 = .data:0x802B1198; // type:object size:0xC scope:local align:4 +@1474 = .data:0x802B11A4; // type:object size:0x10 scope:local align:4 data:string +@1475 = .data:0x802B11B4; // type:object size:0x9 scope:local align:4 data:string +@1478 = .data:0x802B11C0; // type:object size:0xF scope:local align:4 data:string +@1480 = .data:0x802B11D0; // type:object size:0xD scope:local align:4 data:string +@1481 = .data:0x802B11E0; // type:object size:0x14 scope:local align:4 data:string +@1482 = .data:0x802B11F4; // type:object size:0x14 scope:local align:4 data:string +@1485 = .data:0x802B1208; // type:object size:0xB scope:local align:4 data:string +@1486 = .data:0x802B1214; // type:object size:0x15 scope:local align:4 data:string +@1492 = .data:0x802B122C; // type:object size:0xA scope:local align:4 data:string +@1506 = .data:0x802B1238; // type:object size:0x9 scope:local align:4 data:string +@1507 = .data:0x802B1244; // type:object size:0xC scope:local align:4 +@1511 = .data:0x802B126C; // type:object size:0x18 scope:local align:4 data:string +@1513 = .data:0x802B1284; // type:object size:0x13 scope:local align:4 data:string +@1512 = .data:0x802B1298; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802B12B0; // type:object size:0x25 scope:local align:4 data:string +@1515 = .data:0x802B12D8; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802B12E4; // type:object size:0xC scope:weak align:4 +@1516 = .data:0x802B12FC; // type:object size:0xE scope:local align:4 data:string +@1521 = .data:0x802B1324; // type:object size:0x12 scope:local align:4 data:string +@1524 = .data:0x802B1338; // type:object size:0x14 scope:local align:4 +@1522 = .data:0x802B134C; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802B1368; // type:object size:0x30 scope:weak align:4 +@1791 = .data:0x802B1398; // type:object size:0xE scope:local align:4 data:string +@1794 = .data:0x802B13A8; // type:object size:0x1C scope:local align:4 +@1792 = .data:0x802B13C4; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802B13E8; // type:object size:0x34 scope:global align:4 +@1795 = .data:0x802B141C; // type:object size:0x15 scope:local align:4 data:string +@1796 = .data:0x802B1434; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802B1440; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802B1458; // type:label scope:local +@853 = .data:0x802B1458; // type:object size:0xC scope:local align:4 data:string +@940 = .data:0x802B1464; // type:object size:0x11 scope:local align:4 data:string +@942 = .data:0x802B1478; // type:object size:0x10 scope:local align:4 data:string +@943 = .data:0x802B1488; // type:object size:0xD scope:local align:4 data:string +@950 = .data:0x802B1498; // type:object size:0x9 scope:local align:4 data:string +@951 = .data:0x802B14A4; // type:object size:0xC scope:local align:4 +@955 = .data:0x802B14CC; // type:object size:0x14 scope:local align:4 data:string +@958 = .data:0x802B14E0; // type:object size:0x14 scope:local align:4 +@956 = .data:0x802B14F4; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802B1510; // type:object size:0x30 scope:weak align:4 +@1022 = .data:0x802B1540; // type:object size:0xF scope:local align:4 data:string +@1025 = .data:0x802B1550; // type:object size:0x1C scope:local align:4 +@1023 = .data:0x802B156C; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802B1590; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802B15C8; // type:label scope:local +@1269 = .data:0x802B15C8; // type:object size:0xB scope:local align:4 data:string +@1664 = .data:0x802B15D4; // type:object size:0xA scope:local align:4 data:string +@2437 = .data:0x802B15E0; // type:object size:0xC scope:local align:4 data:string +@2563 = .data:0x802B15EC; // type:object size:0xB scope:local align:4 data:string +@2564 = .data:0x802B15F8; // type:object size:0x9 scope:local align:4 data:string +@2566 = .data:0x802B1604; // type:object size:0xB scope:local align:4 data:string +@2568 = .data:0x802B1610; // type:object size:0xA scope:local align:4 data:string +@2569 = .data:0x802B161C; // type:object size:0x9 scope:local align:4 data:string +@2570 = .data:0x802B1628; // type:object size:0x9 scope:local align:4 data:string +@2895 = .data:0x802B1634; // type:object size:0xB scope:local align:4 data:string +@2896 = .data:0x802B1640; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802B164C; // type:object size:0xC scope:local align:4 data:string +@2899 = .data:0x802B1658; // type:object size:0x9 scope:local align:4 data:string +@2900 = .data:0x802B1664; // type:object size:0xD scope:local align:4 data:string +@2903 = .data:0x802B1674; // type:object size:0x11 scope:local align:4 data:string +@2917 = .data:0x802B1688; // type:object size:0x9 scope:local align:4 data:string +@3008 = .data:0x802B1694; // type:object size:0xA scope:local align:4 data:string +@3012 = .data:0x802B16A0; // type:object size:0x14 scope:local align:4 data:string +@3048 = .data:0x802B16B4; // type:object size:0xA scope:local align:4 data:string +@3180 = .data:0x802B16C0; // type:object size:0xB scope:local align:4 data:string +@3287 = .data:0x802B16CC; // type:object size:0xB scope:local align:4 data:string +@3819 = .data:0x802B16D8; // type:object size:0x9 scope:local align:4 data:string +@3909 = .data:0x802B16E4; // type:object size:0xC scope:local align:4 data:string +@4630 = .data:0x802B16F0; // type:object size:0xD scope:local align:4 data:string +@4633 = .data:0x802B1700; // type:object size:0x9 scope:local align:4 data:string +@4634 = .data:0x802B170C; // type:object size:0xC scope:local align:4 +@4631 = .data:0x802B1718; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802B172C; // type:object size:0x10 scope:weak align:4 +@4637 = .data:0x802B173C; // type:object size:0xD scope:local align:4 data:string +@4640 = .data:0x802B174C; // type:object size:0x14 scope:local align:4 +@4638 = .data:0x802B1760; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802B177C; // type:object size:0x30 scope:weak align:4 +@4646 = .data:0x802B17AC; // type:object size:0x12 scope:local align:4 data:string +@4648 = .data:0x802B17C0; // type:object size:0x10 scope:local align:4 data:string +@4647 = .data:0x802B17D0; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802B17DC; // type:object size:0x10 scope:weak align:4 +@4651 = .data:0x802B17EC; // type:object size:0x12 scope:local align:4 data:string +@4652 = .data:0x802B1800; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802B180C; // type:object size:0x10 scope:weak align:4 +@4654 = .data:0x802B181C; // type:object size:0xF scope:local align:4 data:string +@4656 = .data:0x802B182C; // type:object size:0xA scope:local align:4 data:string +@4657 = .data:0x802B1838; // type:object size:0x1C scope:local align:4 +@4658 = .data:0x802B1854; // type:object size:0xB scope:local align:4 data:string +@4659 = .data:0x802B1860; // type:object size:0x24 scope:local align:4 +@4655 = .data:0x802B1884; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802B18B0; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802B1928; // type:object size:0x78 scope:global align:4 +@4730 = .data:0x802B19A0; // type:object size:0xD scope:local align:4 data:string +@4731 = .data:0x802B19B0; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802B19DC; // type:object size:0x78 scope:global align:4 +@4732 = .data:0x802B1A54; // type:object size:0xF scope:local align:4 data:string +@4734 = .data:0x802B1A64; // type:object size:0xE scope:local align:4 data:string +@4735 = .data:0x802B1A74; // type:object size:0x1C scope:local align:4 +@4736 = .data:0x802B1A90; // type:object size:0xD scope:local align:4 data:string +@4737 = .data:0x802B1AA0; // type:object size:0x24 scope:local align:4 +@4733 = .data:0x802B1AC4; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802B1AF0; // type:object size:0x48 scope:global align:4 +@4741 = .data:0x802B1B38; // type:object size:0xD scope:local align:4 data:string +@4742 = .data:0x802B1B48; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802B1B74; // type:object size:0x48 scope:global align:4 +@4744 = .data:0x802B1BD8; // type:object size:0xE scope:local align:4 data:string +@4745 = .data:0x802B1BE8; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802B1C14; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802B1C5C; // type:object size:0x40 scope:weak align:4 +@4753 = .data:0x802B1C9C; // type:object size:0xF scope:local align:4 data:string +@4755 = .data:0x802B1CAC; // type:object size:0x9 scope:local align:4 data:string +@4754 = .data:0x802B1CB8; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802B1CC4; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802B1CDC; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802B1D28; // type:label scope:local +@1229 = .data:0x802B1D28; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802B1D34; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802B1D40; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802B1D4C; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802B1D58; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802B1D64; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802B1D70; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802B1D7C; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802B1D88; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802B1D94; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802B1DA0; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802B1DAC; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802B1DB8; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802B1DC4; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802B1DD0; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802B1DDC; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802B1DE8; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802B1DF4; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802B1E00; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802B1E0C; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802B1E18; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802B1E24; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802B1E30; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802B1E3C; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802B1E48; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802B1E54; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802B1E60; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802B1E6C; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802B1E78; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802B1E84; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802B1E90; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802B1E9C; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802B1EA8; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802B1EB4; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802B1EC4; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802B1ED4; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802B1EE4; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802B1EF0; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802B1EFC; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802B1F08; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802B1F14; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802B1F20; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802B1F2C; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802B1F38; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802B1F44; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802B1F50; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802B1F5C; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802B1F68; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802B1F74; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802B1F80; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802B1F8C; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802B1F98; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802B1FA4; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802B1FB0; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802B1FBC; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802B1FC8; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802B1FD4; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802B1FE0; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802B1FF0; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802B2000; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802B2010; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802B2024; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802B2034; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802B2040; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802B204C; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802B2058; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802B2064; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802B2070; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802B207C; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802B2088; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802B20A4; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802B20B8; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802B20D4; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802B20F0; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802B20FC; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802B2108; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802B2114; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802B2120; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802B2134; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802B2150; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802B215C; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802B2168; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802B2174; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802B2190; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802B21A4; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802B21B0; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802B21BC; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802B21C8; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802B21D4; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802B21E8; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802B2204; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802B2228; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802B227C; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802B2288; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802B22AC; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802B2300; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802B230C; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802B2330; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802B2384; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802B23A0; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802B23AC; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802B23B8; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802B23D8; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802B23E4; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802B23F0; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802B2400; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802B2424; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802B2478; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802B2498; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802B24A4; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802B24B0; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802B24C8; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802B24E0; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802B24EC; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802B2510; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802B2564; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802B2584; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802B2590; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B25A8; // type:label scope:local +@1343 = .data:0x802B25A8; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802B25B8; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802B25C4; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802B25D0; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802B25DC; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802B25F4; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802B262C; // type:object size:0x80 scope:local align:4 +@2538 = .data:0x802B26AC; // type:object size:0x13 scope:local align:4 data:string +@2539 = .data:0x802B26C0; // type:object size:0x13 scope:local align:4 data:string +@2540 = .data:0x802B26D4; // type:object size:0x13 scope:local align:4 data:string +@2541 = .data:0x802B26E8; // type:object size:0x1E scope:local align:4 data:string +@2554 = .data:0x802B2708; // type:object size:0xE scope:local align:4 data:string +@2557 = .data:0x802B2718; // type:object size:0x9 scope:local align:4 data:string +@2558 = .data:0x802B2724; // type:object size:0xC scope:local align:4 +@2555 = .data:0x802B2730; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802B2744; // type:object size:0x10 scope:weak align:4 +@2561 = .data:0x802B2754; // type:object size:0x9 scope:local align:4 data:string +@2562 = .data:0x802B2760; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802B2774; // type:object size:0x10 scope:weak align:4 +@2563 = .data:0x802B2784; // type:object size:0x10 scope:local align:4 data:string +@2564 = .data:0x802B2794; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802B27A8; // type:object size:0x10 scope:weak align:4 +@2565 = .data:0x802B27B8; // type:object size:0xA scope:local align:4 data:string +@2566 = .data:0x802B27C4; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802B27D8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B2808; // type:label scope:local +@571 = .data:0x802B2808; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802B2818; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802B2824; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802B2830; // type:object size:0xC scope:local align:4 +@819 = .data:0x802B283C; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802B2850; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802B286C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B28C0; // type:label scope:local +@1027 = .data:0x802B28C0; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802B28D0; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802B28DC; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802B2900; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802B2B00; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802B2F00; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802B3100; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802B3500; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802B3700; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802B4300; // type:object size:0x20 scope:local align:4 +@1206 = .data:0x802B4320; // type:object size:0x9 scope:local align:4 data:string +@1207 = .data:0x802B432C; // type:object size:0xD scope:local align:4 data:string +@1208 = .data:0x802B433C; // type:object size:0x10 scope:local align:4 data:string +@1209 = .data:0x802B434C; // type:object size:0x11 scope:local align:4 data:string +@1210 = .data:0x802B4360; // type:object size:0x11 scope:local align:4 data:string +@1211 = .data:0x802B4374; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802B438C; // type:object size:0xE scope:local align:4 data:string +@1213 = .data:0x802B439C; // type:object size:0xD scope:local align:4 data:string +@1214 = .data:0x802B43AC; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802B43C0; // type:object size:0x24 scope:local align:4 +@1496 = .data:0x802B43E4; // type:object size:0x9 scope:local align:4 +@1573 = .data:0x802B43F0; // type:object size:0xA scope:local align:4 data:string +@1694 = .data:0x802B43FC; // type:object size:0x14 scope:local align:4 data:string +@2015 = .data:0x802B4410; // type:object size:0xA scope:local align:4 data:string +@2016 = .data:0x802B441C; // type:object size:0xA scope:local align:4 data:string +@2017 = .data:0x802B4428; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802B4434; // type:object size:0xB scope:local align:4 data:string +@2019 = .data:0x802B4440; // type:object size:0xB scope:local align:4 data:string +@2020 = .data:0x802B444C; // type:object size:0xB scope:local align:4 data:string +sectionNames$2013 = .data:0x802B4458; // type:object size:0x1C scope:local align:4 +@2247 = .data:0x802B4474; // type:object size:0x9 scope:local align:4 data:string +@2248 = .data:0x802B4480; // type:object size:0xC scope:local align:4 +@2252 = .data:0x802B44A8; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802B44B4; // type:object size:0x13 scope:local align:4 data:string +@2256 = .data:0x802B44C8; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802B44D4; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802B45B8; // type:label scope:local +@1345 = .data:0x802B45B8; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802B45C8; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802B45D4; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802B45E8; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802B45FC; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802B4610; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802B4624; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802B4638; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802B464C; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802B4660; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802B4674; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802B4688; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802B469C; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802B46B0; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802B46C4; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802B46D8; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802B46EC; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802B4700; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802B4714; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802B4728; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802B473C; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802B4750; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802B4764; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802B4778; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802B478C; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802B47A0; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802B47B4; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802B47C8; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802B47DC; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802B47F0; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802B4804; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802B4818; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802B482C; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802B4840; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802B4854; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802B4868; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802B487C; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802B4890; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802B48A4; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802B48B8; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802B48CC; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802B48E0; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802B48F4; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802B4908; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802B491C; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802B4930; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802B4944; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802B4958; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802B496C; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802B4980; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802B4994; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802B49A8; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802B49BC; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802B49D0; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802B49E4; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802B49F8; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802B4A0C; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802B4A20; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802B4A34; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802B4A48; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802B4A5C; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802B4A70; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802B4A84; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802B4A98; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802B4AAC; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B4AC0; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B4AD4; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802B4AE8; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802B4AFC; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802B4B10; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802B4B24; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802B4B38; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802B4B4C; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802B4B60; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802B4B74; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802B4B88; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802B4B9C; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802B4BB0; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802B4BC4; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802B4BD8; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802B4BEC; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802B4C00; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802B4C14; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802B4C28; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802B4C3C; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802B4C50; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802B4C64; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802B4C78; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802B4C8C; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802B4F44; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802B4F50; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802B4F5C; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802B4F68; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802B4F7C; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802B4F90; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802B4FA4; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802B4FB8; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802B4FCC; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802B4FE0; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802B4FF4; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802B5008; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802B501C; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802B5030; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802B5044; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802B5058; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802B506C; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802B5080; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802B5094; // type:object size:0x90 scope:local align:4 data:4byte +@1671 = .data:0x802B5124; // type:object size:0x30 scope:local align:4 data:string +@1833 = .data:0x802B5154; // type:object size:0xA scope:local align:4 data:string +@1836 = .data:0x802B5160; // type:object size:0x9 scope:local align:4 data:string +@1837 = .data:0x802B516C; // type:object size:0xC scope:local align:4 +@1834 = .data:0x802B5178; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802B518C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B51B8; // type:label scope:local +@685 = .data:0x802B51B8; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802B51C8; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802B51D4; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802B51EC; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802B5204; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802B521C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802B5234; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802B524C; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802B5264; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802B527C; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802B5290; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802B52A4; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802B52B4; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802B52C0; // type:object size:0xC scope:local align:4 +@872 = .data:0x802B52E8; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802B5300; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802B5314; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802B5330; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802B5360; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802B5374; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802B5390; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802B53B4; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802B53E8; // type:label scope:local +@1227 = .data:0x802B53E8; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802B53F4; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802B5404; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802B5410; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802B5428; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802B5434; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802B5454; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802B5460; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802B546C; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802B548C; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802B549C; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802B54A8; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802B54C8; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802B54E8; // type:label scope:local +@625 = .data:0x802B54E8; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802B54F8; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802B5504; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802B5510; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802B5528; // type:object size:0xC scope:local align:4 +@700 = .data:0x802B5534; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802B5548; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B5578; // type:label scope:local +@1578 = .data:0x802B5578; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802B558C; // type:object size:0xF scope:local align:4 data:string +@1855 = .data:0x802B559C; // type:object size:0x1B scope:local align:4 data:string +@1857 = .data:0x802B55B8; // type:object size:0x19 scope:local align:4 data:string +@2080 = .data:0x802B55D4; // type:object size:0xE scope:local align:4 data:string +@2082 = .data:0x802B55E4; // type:object size:0xC scope:local align:4 data:string +@2081 = .data:0x802B55F0; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802B55FC; // type:object size:0x2C scope:global align:4 +@2091 = .data:0x802B5628; // type:object size:0xE scope:local align:4 data:string +@2092 = .data:0x802B5638; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802B5644; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802B5670; // type:object size:0xD scope:local align:4 data:string +@2094 = .data:0x802B5680; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802B568C; // type:object size:0x2C scope:global align:4 +@2096 = .data:0x802B56B8; // type:object size:0x10 scope:local align:4 data:string +@2097 = .data:0x802B56C8; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802B56D4; // type:object size:0x2C scope:global align:4 +@2098 = .data:0x802B5700; // type:object size:0xF scope:local align:4 data:string +@2099 = .data:0x802B5710; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802B571C; // type:object size:0x2C scope:global align:4 +@2100 = .data:0x802B5748; // type:object size:0x14 scope:local align:4 data:string +@2101 = .data:0x802B575C; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802B5768; // type:object size:0x2C scope:global align:4 +@2102 = .data:0x802B5794; // type:object size:0xE scope:local align:4 data:string +@2103 = .data:0x802B57A4; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802B57B0; // type:object size:0x2C scope:global align:4 +@2104 = .data:0x802B57DC; // type:object size:0xD scope:local align:4 data:string +@2105 = .data:0x802B57EC; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802B57F8; // type:object size:0x2C scope:global align:4 +@2106 = .data:0x802B5824; // type:object size:0xD scope:local align:4 data:string +@2107 = .data:0x802B5834; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802B5840; // type:object size:0x2C scope:global align:4 +@2108 = .data:0x802B586C; // type:object size:0xF scope:local align:4 data:string +@2109 = .data:0x802B587C; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802B5888; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802B58B4; // type:object size:0x2C scope:weak align:4 +@2110 = .data:0x802B58E0; // type:object size:0xE scope:local align:4 data:string +@2111 = .data:0x802B58F0; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802B58FC; // type:object size:0x2C scope:global align:4 +@2112 = .data:0x802B5928; // type:object size:0x14 scope:local align:4 data:string +@2113 = .data:0x802B593C; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802B5948; // type:object size:0x2C scope:global align:4 +@2114 = .data:0x802B5974; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802B5988; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802B5994; // type:object size:0x2C scope:global align:4 +@2116 = .data:0x802B59C0; // type:object size:0x12 scope:local align:4 data:string +@2117 = .data:0x802B59D4; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802B59E0; // type:object size:0x2C scope:global align:4 +@2118 = .data:0x802B5A0C; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802B5A1C; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802B5A28; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B5A58; // type:label scope:local +@625 = .data:0x802B5A58; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B5A6C; // type:object size:0xD scope:local align:4 data:string +@642 = .data:0x802B5A7C; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802B5A94; // type:object size:0x10 scope:local align:4 data:string +@680 = .data:0x802B5AA4; // type:object size:0xC scope:local align:4 data:string +@679 = .data:0x802B5AB0; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802B5ABC; // type:object size:0x2C scope:global align:4 +@689 = .data:0x802B5AE8; // type:object size:0xD scope:local align:4 data:string +@690 = .data:0x802B5AF8; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802B5B04; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B5B30; // type:label scope:local +@1133 = .data:0x802B5B30; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802B5B40; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802B5B4C; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802B5B5C; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802B5B68; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802B5B74; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802B5BA0; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802B5BB0; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802B5BBC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B5BE8; // type:label scope:local +@1358 = .data:0x802B5BE8; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B5BFC; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802B5C0C; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802B5C1C; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802B5C28; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802B5C34; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B5C60; // type:label scope:local +@716 = .data:0x802B5C60; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802B5C70; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802B5C7C; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802B5C8C; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802B5CA4; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802B5CB0; // type:object size:0xC scope:local align:4 +@790 = .data:0x802B5CBC; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802B5CD0; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802B5D08; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802B5D18; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802B5D2C; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802B5D64; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802B5D74; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802B5D88; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802B5DC0; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802B5DD0; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802B5DE4; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802B5E1C; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802B5E34; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802B5E48; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802B5E80; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802B5E98; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802B5EAC; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802B5EE4; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802B5EFC; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802B5F10; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802B5F48; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802B5F5C; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802B5F70; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802B5FA8; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802B5FE0; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802B6018; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6048; // type:label scope:local +@868 = .data:0x802B6048; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802B6058; // type:object size:0x9 scope:local align:4 data:string +@936 = .data:0x802B6064; // type:object size:0x10 scope:local align:4 data:string +@939 = .data:0x802B6074; // type:object size:0x14 scope:local align:4 data:string +@943 = .data:0x802B6088; // type:object size:0x11 scope:local align:4 data:string +@993 = .data:0x802B609C; // type:object size:0x9 scope:local align:4 data:string +@994 = .data:0x802B60A8; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802B60B4; // type:object size:0xD scope:local align:4 data:string +@1073 = .data:0x802B60C4; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802B60D4; // type:object size:0xA scope:local align:4 data:string +@1138 = .data:0x802B60E0; // type:object size:0x2C scope:local align:4 +@1154 = .data:0x802B610C; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802B6118; // type:object size:0x15 scope:local align:4 data:string +@1157 = .data:0x802B6130; // type:object size:0x13 scope:local align:4 data:string +@1158 = .data:0x802B6144; // type:object size:0xC scope:local align:4 +@1155 = .data:0x802B6150; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802B6164; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802B61B4; // type:object size:0x50 scope:weak align:4 +@1159 = .data:0x802B623C; // type:object size:0xD scope:local align:4 data:string +@1162 = .data:0x802B624C; // type:object size:0xC scope:local align:4 +@1160 = .data:0x802B6258; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802B626C; // type:object size:0x14 scope:weak align:4 +@1165 = .data:0x802B6280; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802B6294; // type:object size:0x10 scope:weak align:4 +@1166 = .data:0x802B62C0; // type:object size:0x9 scope:local align:4 data:string +@1168 = .data:0x802B62CC; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802B62E8; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802B62F4; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802B630C; // type:object size:0x18 scope:weak align:4 +@1169 = .data:0x802B6324; // type:object size:0xB scope:local align:4 data:string +@1171 = .data:0x802B6330; // type:object size:0x14 scope:local align:4 data:string +@1172 = .data:0x802B6344; // type:object size:0xC scope:local align:4 data:string +@1173 = .data:0x802B6350; // type:object size:0xD scope:local align:4 data:string +@1174 = .data:0x802B6360; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B636C; // type:object size:0x14 scope:local align:4 +@1170 = .data:0x802B6380; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802B63A4; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802B64FC; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B6508; // type:label scope:local +@1064 = .data:0x802B6508; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802B651C; // type:object size:0xA scope:local align:4 data:string +@1224 = .data:0x802B6528; // type:object size:0x2E scope:local align:4 data:string +@2865 = .data:0x802B6558; // type:object size:0xD scope:local align:4 data:string +@2867 = .data:0x802B6568; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802B6578; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802B6584; // type:object size:0x10 scope:global align:4 +@2868 = .data:0x802B6594; // type:object size:0xD scope:local align:4 data:string +@2869 = .data:0x802B65A4; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802B65B0; // type:object size:0x10 scope:global align:4 +@2870 = .data:0x802B65C0; // type:object size:0x10 scope:local align:4 data:string +@2871 = .data:0x802B65D0; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802B65DC; // type:object size:0x10 scope:global align:4 +@2872 = .data:0x802B65EC; // type:object size:0xF scope:local align:4 data:string +@2873 = .data:0x802B65FC; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802B6608; // type:object size:0x10 scope:global align:4 +@2874 = .data:0x802B6618; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802B6624; // type:object size:0x18 scope:weak align:4 +@2875 = .data:0x802B663C; // type:object size:0xD scope:local align:4 data:string +@2876 = .data:0x802B664C; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802B6658; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802B6670; // type:label scope:local +@676 = .data:0x802B6670; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802B6684; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802B6690; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802B66AC; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802B66C8; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802B66E0; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802B66F8; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802B6710; // type:label scope:local +@1581 = .data:0x802B6710; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802B6720; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802B672C; // type:object size:0x28 scope:global align:4 +@1618 = .data:0x802B6754; // type:object size:0x15 scope:local align:4 data:string +@1861 = .data:0x802B676C; // type:object size:0xA scope:local align:4 data:string +@1866 = .data:0x802B6778; // type:object size:0x14 scope:local align:4 data:string +@2026 = .data:0x802B678C; // type:object size:0x13 scope:local align:4 +@2618 = .data:0x802B67A0; // type:object size:0x16 scope:local align:4 data:string +@2620 = .data:0x802B67B8; // type:object size:0x14 scope:local align:4 data:string +@2619 = .data:0x802B67CC; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802B67D8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802B67F0; // type:label scope:local +@1085 = .data:0x802B67F0; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802B6800; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802B680C; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802B6818; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802B6830; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802B6848; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802B6860; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802B6874; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802B6884; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802B6894; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802B68A4; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802B68BC; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802B68C8; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802B68E8; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802B68FC; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802B6910; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802B6928; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802B693C; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802B694C; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802B695C; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802B6974; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802B698C; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802B699C; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802B69AC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802B69C0; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802B69DC; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802B69F4; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802B6A0C; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802B6A28; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802B6A40; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802B6A50; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802B6A60; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802B6A6C; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802B6A7C; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802B6A88; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802B6A94; // type:object size:0x11 scope:local align:4 +@1300 = .data:0x802B6AA8; // type:object size:0x9 scope:local align:4 +@1357 = .data:0x802B6AB4; // type:object size:0xC scope:local align:4 data:string +@1359 = .data:0x802B6AC0; // type:object size:0x9 scope:local align:4 data:string +@1358 = .data:0x802B6ACC; // type:object size:0xC scope:local align:4 +@1360 = .data:0x802B6AEC; // type:object size:0xA scope:local align:4 data:string +@1363 = .data:0x802B6AF8; // type:object size:0x9 scope:local align:4 data:string +@1364 = .data:0x802B6B04; // type:object size:0xC scope:local align:4 +@1366 = .data:0x802B6B10; // type:object size:0x14 scope:local align:4 +@1361 = .data:0x802B6B24; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802B6B40; // type:object size:0x30 scope:weak align:4 +@1478 = .data:0x802B6B90; // type:object size:0x10 scope:local align:4 data:string +@1762 = .data:0x802B6BA0; // type:object size:0x20 scope:local align:4 data:string +@1711 = .data:0x802B6BC0; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802B6BDC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802B6C00; // type:label scope:local +@903 = .data:0x802B6C00; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802B6C10; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802B6C1C; // type:object size:0x4C0 scope:global align:4 data:4byte +@1064 = .data:0x802B70DC; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x802B70F0; // type:label scope:local +@461 = .data:0x802B70F0; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802B7100; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802B710C; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802B7118; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802B7124; // type:object size:0xC scope:local align:4 +@658 = .data:0x802B7144; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802B7150; // type:object size:0xC scope:local align:4 +@660 = .data:0x802B7170; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802B717C; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802B7188; // type:object size:0xC scope:local align:4 +@666 = .data:0x802B7194; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802B71A8; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802B71C4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B7210; // type:label scope:local +@388 = .data:0x802B7210; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802B7220; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802B722C; // type:object size:0xD scope:local align:4 +@445 = .data:0x802B723C; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802B7248; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802B7254; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802B7264; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802B7270; // type:object size:0xC scope:local align:4 +@463 = .data:0x802B727C; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802B7290; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802B72AC; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802B72DC; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802B72E8; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802B7304; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B7350; // type:label scope:local +@1533 = .data:0x802B7350; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802B735C; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802B7368; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802B7374; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802B7380; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802B738C; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802B7398; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802B73A4; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802B73B0; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802B73BC; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802B73C8; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802B73D4; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802B73E0; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802B73EC; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802B73F8; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802B7404; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802B7410; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802B741C; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802B7428; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802B7434; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802B7440; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802B744C; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802B7458; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802B7464; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802B7470; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802B747C; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802B748C; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802B74A0; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802B74B4; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802B74C8; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B74D8; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802B74E8; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802B74FC; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802B7510; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802B7524; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802B7538; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802B754C; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802B755C; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802B7568; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802B7574; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802B7580; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802B758C; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802B7598; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802B75A4; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802B75B0; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802B75BC; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802B75C8; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802B75D8; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802B75E8; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802B75F8; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802B7608; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802B7618; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802B762C; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802B763C; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802B764C; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802B7660; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802B7670; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802B7680; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802B7690; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802B76A4; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802B76B4; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802B76C8; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802B76D8; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802B76E8; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802B76F8; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802B7770; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802B7780; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802B7790; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802B77A8; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802B77E0; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802B77FC; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802B7810; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802B781C; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802B7828; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802B7840; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B7868; // type:label scope:local +@731 = .data:0x802B7868; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802B7878; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802B7884; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802B7890; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802B78A0; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802B78B0; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802B78BC; // type:object size:0xC scope:local align:4 +@826 = .data:0x802B78C8; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802B78D4; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802B78E8; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802B7904; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802B793C; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802B7948; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802B7954; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B7978; // type:label scope:local +@388 = .data:0x802B7978; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802B7984; // type:object size:0x9 scope:local align:4 data:string +@430 = .data:0x802B7990; // type:object size:0x9 scope:local align:4 data:string +@448 = .data:0x802B799C; // type:object size:0x1B scope:local align:4 data:string +@516 = .data:0x802B79B8; // type:object size:0x15 scope:local align:4 data:string +@518 = .data:0x802B79D0; // type:object size:0x15 scope:local align:4 data:string +@561 = .data:0x802B79E8; // type:object size:0x9 scope:local align:4 data:string +@562 = .data:0x802B79F4; // type:object size:0xC scope:local align:4 +@563 = .data:0x802B7A00; // type:object size:0xC scope:local align:4 data:string +@564 = .data:0x802B7A0C; // type:object size:0x14 scope:local align:4 +@559 = .data:0x802B7A20; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802B7A3C; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802B7A4C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B7A78; // type:label scope:local +@625 = .data:0x802B7A78; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802B7A88; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B7A94; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802B7AA0; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802B7AAC; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802B7AB8; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802B7AC4; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802B7AD0; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802B7ADC; // type:object size:0x1C scope:local align:4 +@1584 = .data:0x802B7AF8; // type:object size:0x9 scope:local align:4 data:string +@1860 = .data:0x802B7B04; // type:object size:0xE scope:local align:4 data:string +@2396 = .data:0x802B7B14; // type:object size:0x13 scope:local align:4 data:string +@2397 = .data:0x802B7B28; // type:object size:0xE scope:local align:4 data:string +@2426 = .data:0x802B7B38; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B7B48; // type:label scope:local +@1470 = .data:0x802B7B48; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802B7B58; // type:object size:0x9 scope:local align:4 data:string +@2122 = .data:0x802B7B64; // type:object size:0xD scope:local align:4 data:string +@3304 = .data:0x802B7B74; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802B7B80; // type:object size:0xC scope:weak align:4 +@3306 = .data:0x802B7B8C; // type:object size:0xC scope:local align:4 data:string +@3307 = .data:0x802B7B98; // type:object size:0xD scope:local align:4 data:string +@3305 = .data:0x802B7BA8; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802B7BBC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B7CD0; // type:label scope:local +@655 = .data:0x802B7CD0; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802B7CE8; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802B7CFC; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802B7D10; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802B7D1C; // type:object size:0xC scope:local align:4 +@753 = .data:0x802B7D28; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802B7D3C; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802B7D4C; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802B7D68; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802B7D78; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802B7D9C; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802B7DC8; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802B7E10; // type:label scope:local +@1007 = .data:0x802B7E10; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802B7E24; // type:object size:0xE scope:local align:4 data:string +@1270 = .data:0x802B7E34; // type:object size:0x12 scope:local align:4 data:string +@1271 = .data:0x802B7E48; // type:object size:0xD scope:local align:4 data:string +@1495 = .data:0x802B7E58; // type:object size:0xD scope:local align:4 data:string +@1504 = .data:0x802B7E68; // type:object size:0x16 scope:local align:4 data:string +@1785 = .data:0x802B7E80; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802B7E8C; // type:object size:0x10 scope:global align:4 +@2012 = .data:0x802B7E9C; // type:object size:0x1E scope:local align:4 data:string +@2013 = .data:0x802B7EBC; // type:object size:0xB scope:local align:4 data:string +@2169 = .data:0x802B7EC8; // type:object size:0x1E scope:local align:4 data:string +@2454 = .data:0x802B7EE8; // type:object size:0x11 scope:local align:4 data:string +@2455 = .data:0x802B7EFC; // type:object size:0xE scope:local align:4 data:string +@2456 = .data:0x802B7F0C; // type:object size:0x10 scope:local align:4 data:string +@2457 = .data:0x802B7F1C; // type:object size:0x9 scope:local align:4 data:string +@2459 = .data:0x802B7F28; // type:object size:0xC scope:local align:4 data:string +@2458 = .data:0x802B7F34; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802B7F40; // type:object size:0x18 scope:global align:4 +@2460 = .data:0x802B7F70; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802B7FA8; // type:label scope:local +@939 = .data:0x802B7FA8; // type:object size:0x11 scope:local align:4 data:string +@1329 = .data:0x802B7FBC; // type:object size:0xC scope:local align:4 data:string +@1331 = .data:0x802B7FC8; // type:object size:0xC scope:local align:4 data:string +@1332 = .data:0x802B7FD4; // type:object size:0xD scope:local align:4 data:string +@1333 = .data:0x802B7FE4; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802B7FF0; // type:object size:0x14 scope:local align:4 +@1335 = .data:0x802B8004; // type:object size:0xC scope:local align:4 data:string +@1336 = .data:0x802B8010; // type:object size:0x1C scope:local align:4 +@1337 = .data:0x802B802C; // type:object size:0xD scope:local align:4 data:string +@1338 = .data:0x802B803C; // type:object size:0x24 scope:local align:4 +@1330 = .data:0x802B8060; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802B808C; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802B81AC; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802B82D0; // type:label scope:local +@863 = .data:0x802B82D0; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802B82E0; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802B82EC; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802B82F8; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802B8308; // type:object size:0xD scope:local align:4 data:string +@1034 = .data:0x802B8318; // type:object size:0xA scope:local align:4 data:string +@1893 = .data:0x802B8324; // type:object size:0xC scope:local align:4 data:string +@1895 = .data:0x802B8330; // type:object size:0xC scope:local align:4 data:string +@1896 = .data:0x802B833C; // type:object size:0xD scope:local align:4 data:string +@1897 = .data:0x802B834C; // type:object size:0x9 scope:local align:4 data:string +@1898 = .data:0x802B8358; // type:object size:0x14 scope:local align:4 +@1894 = .data:0x802B836C; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802B8388; // type:object size:0x114 scope:global align:4 +@1949 = .data:0x802B849C; // type:object size:0xC scope:local align:4 data:string +@1951 = .data:0x802B84A8; // type:object size:0x9 scope:local align:4 data:string +@1950 = .data:0x802B84B4; // type:object size:0xC scope:local align:4 +@1952 = .data:0x802B84D4; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802B84E4; // type:object size:0xC scope:weak align:4 +@1954 = .data:0x802B84F0; // type:object size:0xC scope:local align:4 data:string +@1957 = .data:0x802B84FC; // type:object size:0xC scope:local align:4 +@1955 = .data:0x802B8508; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802B851C; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B8558; // type:label scope:local +@389 = .data:0x802B8558; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802B856C; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802B857C; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802B8588; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802B8598; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802B85A8; // type:object size:0xC scope:local align:4 +@421 = .data:0x802B85B4; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802B85C8; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802B85F8; // type:label scope:local +@625 = .data:0x802B85F8; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B860C; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802B861C; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802B862C; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802B8638; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802B8648; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802B8654; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802B8668; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802B8684; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B8798; // type:label scope:local +@396 = .data:0x802B8798; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802B87A4; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802B87B4; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802B87C0; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802B87CC; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802B87DC; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802B87E8; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802B87F4; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802B8800; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802B8810; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802B881C; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802B8830; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802B8844; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802B8850; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802B885C; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802B8868; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802B8874; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802B8880; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802B888C; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802B889C; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802B88A8; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802B88B4; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802B88C0; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802B88CC; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802B88DC; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802B88E8; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802B88F4; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802B8AAC; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B8AC0; // type:label scope:local +@1331 = .data:0x802B8AC0; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802B8AD0; // type:object size:0x7C scope:local align:4 data:4byte +@1359 = .data:0x802B8B4C; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802B8B58; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B8B64; // type:object size:0xD scope:local align:4 data:string +@1871 = .data:0x802B8B74; // type:object size:0x9 scope:local align:4 data:string +@1872 = .data:0x802B8B80; // type:object size:0x11 scope:local align:4 data:string +@1873 = .data:0x802B8B94; // type:object size:0x13 scope:local align:4 data:string +@2124 = .data:0x802B8BA8; // type:object size:0xF scope:local align:4 data:string +@2314 = .data:0x802B8BB8; // type:object size:0x10 scope:local align:4 data:string +bounceSounds = .data:0x802B8BC8; // type:object size:0x30 scope:local align:4 +@2781 = .data:0x802B8BF8; // type:object size:0x17 scope:local align:4 data:string +@2782 = .data:0x802B8C10; // type:object size:0x18 scope:local align:4 data:string +@2783 = .data:0x802B8C28; // type:object size:0x17 scope:local align:4 data:string +numberPellets = .data:0x802B8C40; // type:object size:0x9C scope:global align:4 data:4byte +@3098 = .data:0x802B8CDC; // type:object size:0xB scope:local align:4 data:string +@3135 = .data:0x802B8CE8; // type:object size:0x9 scope:local align:4 data:string +@3136 = .data:0x802B8CF4; // type:object size:0xC scope:local align:4 data:string +@3207 = .data:0x802B8D00; // type:object size:0x13 scope:local align:4 data:string +@3274 = .data:0x802B8D14; // type:object size:0x23 scope:local align:4 data:string +@3414 = .data:0x802B8D38; // type:object size:0xA scope:local align:4 data:string +@3417 = .data:0x802B8D44; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802B8D50; // type:object size:0x14 scope:local align:4 +@3420 = .data:0x802B8D64; // type:object size:0xC scope:local align:4 data:string +@3421 = .data:0x802B8D70; // type:object size:0xA scope:local align:4 data:string +@3422 = .data:0x802B8D7C; // type:object size:0x24 scope:local align:4 +@3423 = .data:0x802B8DA0; // type:object size:0xE scope:local align:4 data:string +@3424 = .data:0x802B8DB0; // type:object size:0x2C scope:local align:4 +@3415 = .data:0x802B8DDC; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B8E10; // type:object size:0x88 scope:global align:4 +@3440 = .data:0x802B8E98; // type:object size:0xB scope:local align:4 data:string +@3442 = .data:0x802B8EA4; // type:object size:0xD scope:local align:4 data:string +@3441 = .data:0x802B8EB4; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B8EC0; // type:object size:0xC scope:weak align:4 +@3444 = .data:0x802B8ED8; // type:object size:0x13 scope:local align:4 data:string +@3445 = .data:0x802B8EEC; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B8F00; // type:object size:0x10 scope:weak align:4 +@3447 = .data:0x802B8F10; // type:object size:0xC scope:local align:4 data:string +@3457 = .data:0x802B8F48; // type:object size:0x14 scope:local align:4 data:string +@3458 = .data:0x802B8F5C; // type:object size:0xC scope:local align:4 data:string +@3459 = .data:0x802B8F68; // type:object size:0xD scope:local align:4 data:string +@3460 = .data:0x802B8F78; // type:object size:0x9 scope:local align:4 data:string +@3461 = .data:0x802B8F84; // type:object size:0x14 scope:local align:4 +@3462 = .data:0x802B8F98; // type:object size:0xC scope:local align:4 data:string +@3463 = .data:0x802B8FA4; // type:object size:0x1C scope:local align:4 +@3464 = .data:0x802B8FC0; // type:object size:0xD scope:local align:4 data:string +@3465 = .data:0x802B8FD0; // type:object size:0x24 scope:local align:4 +@3456 = .data:0x802B8FF4; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B9028; // type:object size:0x130 scope:global align:4 +@3499 = .data:0x802B9158; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B9170; // type:object size:0x18 scope:weak align:4 +@3502 = .data:0x802B9188; // type:object size:0x23 scope:local align:4 data:string +@3503 = .data:0x802B91AC; // type:object size:0x3D scope:local align:4 data:string +@3504 = .data:0x802B91EC; // type:object size:0x29 scope:local align:4 data:string +@3501 = .data:0x802B9218; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B9234; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B9270; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B927C; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B9288; // type:object size:0xC scope:weak align:4 +@3511 = .data:0x802B92A0; // type:object size:0xD scope:local align:4 data:string +@3513 = .data:0x802B92B0; // type:object size:0xB scope:local align:4 data:string +@3512 = .data:0x802B92BC; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B92D8; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802B92F4; // type:object size:0xC scope:local align:4 data:string +@3516 = .data:0x802B9300; // type:object size:0x9 scope:local align:4 data:string +@3515 = .data:0x802B930C; // type:object size:0xC scope:local align:4 +@3517 = .data:0x802B932C; // type:object size:0xA scope:local align:4 data:string +@3518 = .data:0x802B9338; // type:object size:0xC scope:local align:4 +@3519 = .data:0x802B9358; // type:object size:0xD scope:local align:4 data:string +@3520 = .data:0x802B9368; // type:object size:0xC scope:local align:4 +@3555 = .data:0x802B93A4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B93D0; // type:label scope:local +@1008 = .data:0x802B93D0; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B93E0; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B93EC; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B93F8; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B9408; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B941C; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B942C; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B9448; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B945C; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B9468; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B9478; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B9484; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B9498; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B94B4; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B94C4; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B94D0; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B94DC; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B94F8; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B9514; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B9524; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B9530; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B9570; // type:label scope:local +@1040 = .data:0x802B9570; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B9580; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B958C; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B9598; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B95A8; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B95B8; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B95C4; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B95D0; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B95DC; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B95F0; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B960C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B9648; // type:label scope:local +@1325 = .data:0x802B9648; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B9658; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B9664; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B9670; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B9680; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B9694; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B96A4; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B96B0; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B96BC; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B96D0; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B96EC; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B973C; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B9750; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B976C; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B97BC; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B97D4; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B97F0; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B9840; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B9854; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B9870; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B98C0; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B98D0; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B98EC; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B993C; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B9950; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B996C; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B99BC; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B9A0C; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B9A5C; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B9A94; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B9AA8; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B9AC0; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B9ACC; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B9AE4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9B10; // type:label scope:local +@1312 = .data:0x802B9B10; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B9B20; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B9B2C; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B9B40; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B9B54; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B9B68; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B9B74; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B9B80; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B9B98; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B9BA4; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B9BB0; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B9BC0; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B9BCC; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B9BD8; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B9C08; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B9C24; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B9C40; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B9C5C; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B9C7C; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B9C98; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B9CAC; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802B9CB8; // type:object size:0x9 scope:local align:4 data:string +@1558 = .data:0x802B9CC4; // type:object size:0xC scope:local align:4 data:string +@1559 = .data:0x802B9CD0; // type:object size:0x11 scope:local align:4 +@1615 = .data:0x802B9CE4; // type:object size:0x17 scope:local align:4 +@1645 = .data:0x802B9CFC; // type:object size:0x9 scope:local align:4 data:string +@2036 = .data:0x802B9D08; // type:object size:0x15 scope:local align:4 data:string +@2423 = .data:0x802B9D20; // type:object size:0x10 scope:local align:4 data:string +@2574 = .data:0x802B9D30; // type:object size:0x13 scope:local align:4 data:string +@2994 = .data:0x802B9D44; // type:object size:0xE scope:local align:4 data:string +@2996 = .data:0x802B9D54; // type:object size:0xC scope:local align:4 data:string +@2995 = .data:0x802B9D60; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B9D6C; // type:object size:0x2C scope:global align:4 +@3003 = .data:0x802B9D98; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802B9DA8; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B9DB4; // type:object size:0x2C scope:global align:4 +@3007 = .data:0x802B9DE0; // type:object size:0x14 scope:local align:4 data:string +@3008 = .data:0x802B9DF4; // type:object size:0xC scope:local align:4 data:string +@3009 = .data:0x802B9E00; // type:object size:0xD scope:local align:4 data:string +@3010 = .data:0x802B9E10; // type:object size:0x9 scope:local align:4 data:string +@3011 = .data:0x802B9E1C; // type:object size:0x14 scope:local align:4 +@3012 = .data:0x802B9E30; // type:object size:0xB scope:local align:4 data:string +@3013 = .data:0x802B9E3C; // type:object size:0x24 scope:local align:4 +@3014 = .data:0x802B9E60; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802B9E70; // type:object size:0x2C scope:local align:4 +@3016 = .data:0x802B9E9C; // type:object size:0xB scope:local align:4 data:string +@3017 = .data:0x802B9EA8; // type:object size:0x34 scope:local align:4 +@3006 = .data:0x802B9EDC; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B9F18; // type:object size:0x16C scope:global align:4 +@3067 = .data:0x802BA084; // type:object size:0xD scope:local align:4 data:string +@3068 = .data:0x802BA094; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802BA0A0; // type:object size:0x2C scope:global align:4 +@3069 = .data:0x802BA0CC; // type:object size:0xB scope:local align:4 data:string +@3070 = .data:0x802BA0D8; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802BA114; // type:object size:0x16C scope:global align:4 +@3075 = .data:0x802BA280; // type:object size:0xE scope:local align:4 data:string +@3078 = .data:0x802BA290; // type:object size:0xC scope:local align:4 +@3080 = .data:0x802BA29C; // type:object size:0x14 scope:local align:4 +@3076 = .data:0x802BA2B0; // type:object size:0x1C scope:local align:4 +@3092 = .data:0x802BA30C; // type:object size:0xE scope:local align:4 data:string +@3094 = .data:0x802BA31C; // type:object size:0xD scope:local align:4 data:string +@3095 = .data:0x802BA32C; // type:object size:0x24 scope:local align:4 +@3093 = .data:0x802BA350; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802BA37C; // type:object size:0x48 scope:weak align:4 +@3099 = .data:0x802BA3C4; // type:object size:0x14 scope:local align:4 data:string +@3101 = .data:0x802BA3D8; // type:object size:0xB scope:local align:4 data:string +@3103 = .data:0x802BA3E4; // type:object size:0xC scope:local align:4 +@3104 = .data:0x802BA3F0; // type:object size:0xA scope:local align:4 data:string +@3105 = .data:0x802BA3FC; // type:object size:0x14 scope:local align:4 +@3100 = .data:0x802BA410; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802BA42C; // type:object size:0x38 scope:global align:4 +@3111 = .data:0x802BA464; // type:object size:0xC scope:local align:4 data:string +@3113 = .data:0x802BA470; // type:object size:0x9 scope:local align:4 data:string +@3112 = .data:0x802BA47C; // type:object size:0xC scope:local align:4 +@3114 = .data:0x802BA49C; // type:object size:0xA scope:local align:4 data:string +@3115 = .data:0x802BA4A8; // type:object size:0xC scope:local align:4 +@3116 = .data:0x802BA4C8; // type:object size:0xE scope:local align:4 data:string +@3118 = .data:0x802BA4D8; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802BA4E4; // type:object size:0xA scope:local align:4 data:string +@3120 = .data:0x802BA4F0; // type:object size:0x24 scope:local align:4 +@3117 = .data:0x802BA514; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802BA540; // type:object size:0x78 scope:global align:4 +@3127 = .data:0x802BA5B8; // type:object size:0xF scope:local align:4 data:string +@3128 = .data:0x802BA5C8; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802BA5DC; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802BA620; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802BA790; // type:label scope:local +@882 = .data:0x802BA790; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802BA7A0; // type:object size:0x9 scope:local align:4 data:string +@1013 = .data:0x802BA7AC; // type:object size:0xD scope:local align:4 data:string +@1014 = .data:0x802BA7BC; // type:object size:0xC scope:local align:4 data:string +@1074 = .data:0x802BA7C8; // type:object size:0xE scope:local align:4 data:string +@1176 = .data:0x802BA7D8; // type:object size:0xC scope:local align:4 data:string +@1177 = .data:0x802BA7E4; // type:object size:0x10 scope:local align:4 data:string +@1178 = .data:0x802BA7F4; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802BA800; // type:object size:0x1C scope:local align:4 data:string +@2001 = .data:0x802BA81C; // type:object size:0x1E scope:local align:4 data:string +@3241 = .data:0x802BA83C; // type:object size:0x9 scope:local align:4 data:string +@3242 = .data:0x802BA848; // type:object size:0xC scope:local align:4 +@3246 = .data:0x802BA870; // type:object size:0x9 scope:local align:4 data:string +@3249 = .data:0x802BA87C; // type:object size:0x14 scope:local align:4 +@3247 = .data:0x802BA890; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802BA8AC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802BA8E0; // type:label scope:local +@573 = .data:0x802BA8E0; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802BA8EC; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802BA8F8; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802BA904; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802BA914; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802BA920; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802BA934; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802BA940; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802BA94C; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802BA95C; // type:object size:0xC scope:local align:4 data:string +@622 = .data:0x802BA968; // type:object size:0xC scope:local align:4 data:string +@644 = .data:0x802BA974; // type:object size:0xA scope:local align:4 +@755 = .data:0x802BA980; // type:object size:0x9 scope:local align:4 data:string +@756 = .data:0x802BA98C; // type:object size:0xC scope:local align:4 +@758 = .data:0x802BA998; // type:object size:0x14 scope:local align:4 +@753 = .data:0x802BA9AC; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802BA9C8; // type:object size:0x48 scope:global align:4 +@764 = .data:0x802BAA10; // type:object size:0x14 scope:local align:4 +@762 = .data:0x802BAA24; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802BAA40; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802BAA90; // type:label scope:local +@399 = .data:0x802BAA90; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802BAAA0; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802BAAAC; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802BAAB8; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802BAAC4; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802BAAD0; // type:object size:0xC scope:local align:4 +@449 = .data:0x802BAAF0; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802BAAFC; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802BAB08; // type:object size:0xC scope:local align:4 +@455 = .data:0x802BAB14; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802BAB28; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802BAB44; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802BAB90; // type:label scope:local +@1321 = .data:0x802BAB90; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802BABA0; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802BABAC; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802BABBC; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802BABCC; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802BABDC; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802BABEC; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802BABFC; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802BAC0C; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802BAC1C; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802BAC2C; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802BAC44; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802BAC54; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802BAC64; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802BAC70; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802BAC80; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802BAC90; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802BACA0; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802BACB0; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802BACC0; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802BACD0; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802BACE0; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802BACEC; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802BAD00; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802BAD14; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802BAD24; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802BAD3C; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802BAD48; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802BAD5C; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802BAD6C; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802BAD7C; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802BAD88; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802BAD98; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802BADA8; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802BADB8; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802BADCC; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802BADDC; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802BADEC; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802BADFC; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802BAE0C; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802BAE1C; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802BAE2C; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802BAE3C; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802BAE4C; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802BAE5C; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802BAE6C; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802BAE7C; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802BAE8C; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802BAE9C; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802BAEB4; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802BAEC4; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802BAED4; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802BAEE4; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802BAEF4; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802BAF04; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802BAF14; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802BAF24; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802BAF34; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802BAF44; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802BAF54; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802BAF64; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802BAF74; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802BAF84; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802BAF94; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802BAFA4; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802BAFB4; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802BAFC4; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802BAFD4; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802BAFE4; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802BAFF4; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802BB004; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802BB014; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802BB024; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802BB034; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802BB044; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802BB054; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802BB064; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802BB074; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802BB084; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802BB094; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802BB0A4; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802BB0B4; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802BB0C4; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802BB0D4; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802BB0E4; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802BB0F0; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802BB100; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802BB110; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802BB11C; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802BB12C; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802BB13C; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802BB14C; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802BB15C; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802BB170; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802BB184; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802BB194; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802BB1A4; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802BB1B4; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802BB1C4; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802BB1D8; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802BB1EC; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802BB1FC; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802BB20C; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802BB21C; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802BB230; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802BB240; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802BB250; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802BB264; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802BB274; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802BB284; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802BB298; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802BB2AC; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802BB2C0; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802BB2D0; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802BB2E0; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802BB2F0; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802BB300; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802BB310; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802BB320; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802BB334; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802BB344; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802BB358; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802BB368; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802BB378; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802BB388; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802BB398; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802BB3A8; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802BB3B8; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802BB3C8; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802BB3DC; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802BB3E8; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802BB3F8; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802BB404; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802BB410; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802BB420; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802BB430; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802BB440; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802BB450; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802BB460; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802BB470; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802BB484; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802BB498; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802BB4AC; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802BB4BC; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802BB4D0; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802BB4E4; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802BB4F8; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802BB508; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802BB518; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802BB528; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802BB538; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802BB54C; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802BB55C; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802BB56C; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802BB57C; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802BB58C; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802BB5A0; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802BB5B0; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802BB5C4; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802BB5D8; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802BB5E8; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802BB5FC; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802BB610; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802BB624; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802BB634; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802BB644; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802BB654; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802BB664; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802BB674; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802BB688; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802BB69C; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802BB6AC; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802BB6C0; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802BB6D0; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802BB6E4; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802BB6F8; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802BB704; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802BB718; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802BB728; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802BB738; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802BB748; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802BB75C; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802BB770; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802BB780; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802BB790; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802BB7A0; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802BB7AC; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802BB7BC; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802BB7CC; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802BB7DC; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802BB7EC; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802BB800; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802BB814; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802BB828; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802BB83C; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802BB850; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802BB864; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802BB878; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802BB88C; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802BB8A4; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802BB8BC; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802BB8D4; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802BB8E4; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802BB8F4; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802BB904; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802BB914; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802BB924; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802BB934; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802BB944; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802BB954; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802BB968; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802BB980; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802BB994; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802BB9A8; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802BB9BC; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802BB9CC; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802BB9E0; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802BB9F4; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802BBA08; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802BBA18; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802BBA28; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802BBA38; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802BBA4C; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802BBA5C; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802BBA6C; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802BBA7C; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802BBA8C; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802BBA9C; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802BBAB0; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802BBAC0; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802BBAD4; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802BBAE4; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802BBAF4; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802BBB04; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802BBB14; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802BBB24; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802BBB38; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802BBB48; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802BBB58; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802BBB68; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802BBB78; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802BBB88; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802BBB98; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802BBBA8; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802BBBB8; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802BBBC8; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802BBBDC; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802BBBEC; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802BBBFC; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802BBC0C; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802BBC1C; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802BBC2C; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802BBC40; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802BBC50; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802BBC60; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802BBC70; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802BBC80; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802BBC94; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802BBCAC; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802BBCC0; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802BBCD4; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802BBCE8; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802BBCF8; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802BBD08; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802BBD18; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802BBD28; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802BBD38; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802BBD48; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802BBD60; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802BBD70; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802BBD80; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802BBD8C; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802BBD98; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802BBDAC; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802BBDBC; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802BBDCC; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802BBDDC; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802BBDF0; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802BBE04; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802BBE18; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802BBE2C; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802BBE40; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802BBE50; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802BBE64; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802BBE74; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802BBE88; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802BBE98; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802BBEAC; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802BBEC0; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802BBED4; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802BBEE8; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802BBF00; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802BBF14; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802BBF28; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802BBF38; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802BBF48; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802BBF60; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802BBF74; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802BBF80; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802BBF8C; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802BBF9C; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802BBFB0; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802BBFC4; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802BBFD8; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802BBFE8; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802BC000; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802BC010; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802BC020; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802BC030; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802BC03C; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802BC048; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802BC054; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802BC060; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802BC06C; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802BC078; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802BC088; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802BC0A0; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802BC0AC; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802BC0B8; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802BC0D0; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802BC0E4; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802BC0F4; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802BC104; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802BC114; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802BC128; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802BC13C; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802BC154; // type:object size:0x19DC scope:local align:4 +@1745 = .data:0x802BDB30; // type:object size:0xC scope:local align:4 data:string +@1792 = .data:0x802BDB3C; // type:object size:0xD scope:local align:4 data:string +@1876 = .data:0x802BDB4C; // type:object size:0x11 scope:local align:4 data:string +@1877 = .data:0x802BDB60; // type:object size:0x1E scope:local align:4 data:string +@2028 = .data:0x802BDB80; // type:object size:0x12 scope:local align:4 +@2111 = .data:0x802BDB94; // type:object size:0x31 scope:local align:4 data:string +@2113 = .data:0x802BDBC8; // type:object size:0x15 scope:local align:4 data:string +@2114 = .data:0x802BDBE0; // type:object size:0x22 scope:local align:4 data:string +@2261 = .data:0x802BDC04; // type:object size:0xD scope:local align:4 data:string +@570 = .data:0x802BDC18; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802BDC28; // type:object size:0xD scope:local align:4 data:string +...data.0 = .data:0x802BDC38; // type:label scope:local +@1358 = .data:0x802BDC38; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802BDC44; // type:object size:0xA scope:local align:4 data:string +@1636 = .data:0x802BDC50; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802BDC5C; // type:object size:0x9 scope:local align:4 data:string +@2108 = .data:0x802BDC68; // type:object size:0xC scope:local align:4 +@2110 = .data:0x802BDC74; // type:object size:0x14 scope:local align:4 +@2111 = .data:0x802BDC88; // type:object size:0xC scope:local align:4 data:string +@2105 = .data:0x802BDC94; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802BDCB8; // type:object size:0x54 scope:global align:4 +@2122 = .data:0x802BDD0C; // type:object size:0xC scope:local align:4 data:string +@2124 = .data:0x802BDD18; // type:object size:0x9 scope:local align:4 data:string +@2123 = .data:0x802BDD24; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802BDD78; // type:label scope:local +@1426 = .data:0x802BDD78; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802BDD84; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802BDD90; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802BDDA0; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802BDDAC; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802BDDC0; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802BDE34; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802BDE54; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDE80; // type:label scope:local +@1167 = .data:0x802BDE80; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802BDE90; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802BDE9C; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802BDEA8; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802BDEB8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802BDEC4; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802BDED8; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802BDF3C; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802BDF54; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802BDF68; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802BDF74; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802BDF80; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802BDF94; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802BDFF8; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802BE00C; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802BE018; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802BE024; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802BE05C; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BE070; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802BE08C; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802BE100; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802BE118; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802BE124; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802BE13C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE168; // type:label scope:local +@1794 = .data:0x802BE168; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802BE178; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802BE184; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802BE1A0; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802BE1D8; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802BE1E8; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802BE1FC; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802BE20C; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802BE218; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802BE234; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802BE2A8; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802BE2B4; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802BE2C0; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802BE2D4; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802BE2F8; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802BE378; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE3A8; // type:label scope:local +@1651 = .data:0x802BE3A8; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802BE3B4; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802BE3C0; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802BE3CC; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802BE3E0; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802BE3F0; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802BE3FC; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802BE418; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802BE48C; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802BE49C; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802BE4B8; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802BE52C; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802BE53C; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802BE550; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802BE5B4; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802BE5EC; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802BE5F8; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802BE614; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802BE694; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802BE6A4; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802BE6B8; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802BE71C; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802BE72C; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802BE740; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802BE7A4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE7D0; // type:label scope:local +@1418 = .data:0x802BE7D0; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802BE7E0; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802BE7EC; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802BE824; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802BE830; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802BE840; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802BE84C; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802BE860; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802BE8D4; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802BE8F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE920; // type:label scope:local +@1372 = .data:0x802BE920; // type:object size:0xA scope:local align:4 data:string +@1404 = .data:0x802BE92C; // type:object size:0x16 scope:local align:4 data:string +@1525 = .data:0x802BE944; // type:object size:0xF scope:local align:4 data:string +@1527 = .data:0x802BE954; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802BE960; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802BE974; // type:object size:0x64 scope:global align:4 +@1574 = .data:0x802BE9D8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BEA08; // type:label scope:local +@1793 = .data:0x802BEA08; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BEA18; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802BEA24; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802BEA30; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802BEA68; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802BEA74; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802BEA88; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802BEA98; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802BEAA4; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802BEAC0; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802BEB40; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BEB70; // type:label scope:local +@1255 = .data:0x802BEB70; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802BEB80; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802BEB8C; // type:object size:0xA scope:local align:4 data:string +@1493 = .data:0x802BEB98; // type:object size:0xC scope:local align:4 data:string +@1503 = .data:0x802BEBD0; // type:object size:0xD scope:local align:4 data:string +@1505 = .data:0x802BEBE0; // type:object size:0x14 scope:local align:4 data:string +@1506 = .data:0x802BEBF4; // type:object size:0xF scope:local align:4 data:string +@1508 = .data:0x802BEC04; // type:object size:0xC scope:local align:4 +@1504 = .data:0x802BEC10; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802BEC2C; // type:object size:0x74 scope:global align:4 +@1555 = .data:0x802BECAC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BECD8; // type:label scope:local +@1671 = .data:0x802BECD8; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802BECE8; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802BECF4; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802BED04; // type:object size:0xF scope:local align:4 data:string +@3061 = .data:0x802BED14; // type:object size:0xF scope:local align:4 data:string +@3063 = .data:0x802BED24; // type:object size:0x20 scope:local align:4 +@3397 = .data:0x802BED44; // type:object size:0x9 scope:local align:4 data:string +@4252 = .data:0x802BED50; // type:object size:0xB scope:local align:4 data:string +@4253 = .data:0x802BED5C; // type:object size:0xD scope:local align:4 data:string +@4254 = .data:0x802BED6C; // type:object size:0xE scope:local align:4 data:string +@4445 = .data:0x802BED7C; // type:object size:0xD scope:local align:4 data:string +@4447 = .data:0x802BED8C; // type:object size:0x14 scope:local align:4 data:string +@4448 = .data:0x802BEDA0; // type:object size:0xF scope:local align:4 data:string +@4450 = .data:0x802BEDB0; // type:object size:0xC scope:local align:4 +@4446 = .data:0x802BEDBC; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802BEDD8; // type:object size:0x74 scope:global align:4 +@4499 = .data:0x802BEE58; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BEE88; // type:label scope:local +@1793 = .data:0x802BEE88; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BEE98; // type:object size:0x9 scope:local align:4 data:string +@2363 = .data:0x802BEEA4; // type:object size:0x11 scope:local align:4 data:string +@2365 = .data:0x802BEEB8; // type:object size:0xC scope:local align:4 data:string +@2375 = .data:0x802BEEF0; // type:object size:0xA scope:local align:4 data:string +@2377 = .data:0x802BEEFC; // type:object size:0x14 scope:local align:4 data:string +@2378 = .data:0x802BEF10; // type:object size:0xF scope:local align:4 data:string +@2380 = .data:0x802BEF20; // type:object size:0xC scope:local align:4 +@2376 = .data:0x802BEF2C; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802BEF48; // type:object size:0x74 scope:global align:4 +@2430 = .data:0x802BEFC8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BEFF8; // type:label scope:local +@1050 = .data:0x802BEFF8; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802BF004; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802BF014; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BF020; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802BF030; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802BF03C; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802BF050; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802BF0B4; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802BF0CC; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802BF0E0; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802BF0EC; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802BF0F8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF128; // type:label scope:local +@1507 = .data:0x802BF128; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802BF134; // type:object size:0x12 scope:local align:4 data:string +@2353 = .data:0x802BF148; // type:object size:0xF scope:local align:4 data:string +@2354 = .data:0x802BF158; // type:object size:0x11 scope:local align:4 data:string +@2431 = .data:0x802BF16C; // type:object size:0x9 scope:local align:4 data:string +@2433 = .data:0x802BF178; // type:object size:0x12 scope:local align:4 data:string +@2434 = .data:0x802BF18C; // type:object size:0xF scope:local align:4 data:string +@2436 = .data:0x802BF19C; // type:object size:0xC scope:local align:4 +@2432 = .data:0x802BF1A8; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802BF1C4; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802BF238; // type:object size:0xC scope:weak align:4 +@2483 = .data:0x802BF244; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF270; // type:label scope:local +@1475 = .data:0x802BF270; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802BF27C; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802BF288; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BF29C; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BF2AC; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BF2B8; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802BF2D4; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BF354; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF380; // type:label scope:local +@1372 = .data:0x802BF380; // type:object size:0xC scope:local align:4 data:string +@1432 = .data:0x802BF38C; // type:object size:0x16 scope:local align:4 data:string +@1619 = .data:0x802BF3A4; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802BF3DC; // type:object size:0x9 scope:local align:4 data:string +@1631 = .data:0x802BF3E8; // type:object size:0xF scope:local align:4 data:string +@1633 = .data:0x802BF3F8; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802BF404; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802BF418; // type:object size:0x64 scope:global align:4 +@1680 = .data:0x802BF47C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF4A8; // type:label scope:local +@1051 = .data:0x802BF4A8; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802BF4B8; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802BF4C4; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802BF4D8; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802BF4E4; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802BF4F4; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802BF500; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802BF514; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802BF578; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802BF590; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802BF5A4; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802BF5B0; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802BF5BC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF5E8; // type:label scope:local +@1370 = .data:0x802BF5E8; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802BF5F4; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802BF604; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802BF610; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802BF624; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802BF688; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF6B8; // type:label scope:local +@1169 = .data:0x802BF6B8; // type:object size:0xB scope:local align:4 data:string +@1188 = .data:0x802BF6C4; // type:object size:0x1C scope:local align:4 data:string +@1342 = .data:0x802BF6E0; // type:object size:0x14 scope:local align:4 data:string +@1343 = .data:0x802BF6F4; // type:object size:0xF scope:local align:4 data:string +@1345 = .data:0x802BF704; // type:object size:0xC scope:local align:4 +@1341 = .data:0x802BF710; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802BF72C; // type:object size:0x74 scope:global align:4 +@1359 = .data:0x802BF7A0; // type:object size:0xC scope:local align:4 data:string +@1405 = .data:0x802BF7E4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF810; // type:label scope:local +@1357 = .data:0x802BF810; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802BF820; // type:object size:0xC scope:local align:4 data:string +@1531 = .data:0x802BF82C; // type:object size:0x12 scope:local align:4 data:string +@1775 = .data:0x802BF840; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x802BF850; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BF864; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BF874; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BF880; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802BF89C; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BF91C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BF948; // type:label scope:local +@1610 = .data:0x802BF948; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802BF954; // type:object size:0x10 scope:local align:4 +@1801 = .data:0x802BF964; // type:object size:0x12 scope:local align:4 data:string +@1900 = .data:0x802BF978; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BF98C; // type:object size:0xF scope:local align:4 data:string +@1903 = .data:0x802BF99C; // type:object size:0xC scope:local align:4 +@1899 = .data:0x802BF9A8; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802BF9C4; // type:object size:0x74 scope:global align:4 +@1952 = .data:0x802BFA44; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BFA70; // type:label scope:local +@1050 = .data:0x802BFA70; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802BFA7C; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802BFA8C; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802BFA98; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802BFAAC; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802BFB10; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802BFB28; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802BFB3C; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802BFB48; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802BFB54; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BFB80; // type:label scope:local +@1476 = .data:0x802BFB80; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802BFB8C; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802BFB98; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802BFBA8; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802BFBB4; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802BFBC8; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802BFC2C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BFC58; // type:label scope:local +@1147 = .data:0x802BFC58; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802BFC64; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BFC70; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802BFC7C; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802BFCB4; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802BFCC0; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BFCD4; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802BFCE4; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802BFCF0; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802BFD0C; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802BFD8C; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802BFD98; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802BFDA4; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802BFDB8; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802BFDD4; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802BFE38; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BFE68; // type:label scope:local +@1050 = .data:0x802BFE68; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802BFE7C; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802BFE8C; // type:object size:0x11 scope:local align:4 data:string +@1139 = .data:0x802BFEA0; // type:object size:0xB scope:local align:4 data:string +@1141 = .data:0x802BFEAC; // type:object size:0xF scope:local align:4 data:string +@1143 = .data:0x802BFEBC; // type:object size:0xC scope:local align:4 +@1144 = .data:0x802BFEC8; // type:object size:0xA scope:local align:4 data:string +@1145 = .data:0x802BFED4; // type:object size:0x14 scope:local align:4 +@1140 = .data:0x802BFEE8; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802BFF04; // type:object size:0x64 scope:global align:4 +@1164 = .data:0x802BFF68; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802BFF80; // type:object size:0x14 scope:local align:4 data:string +@1165 = .data:0x802BFF94; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802BFFA0; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802BFFAC; // type:object size:0xC scope:weak align:4 +@1168 = .data:0x802BFFB8; // type:object size:0x10 scope:local align:4 data:string +@1169 = .data:0x802BFFC8; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802BFFE4; // type:object size:0x64 scope:global align:4 +@1212 = .data:0x802C0048; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0078; // type:label scope:local +@1375 = .data:0x802C0078; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802C0088; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802C0094; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802C00CC; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802C00E0; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802C00F0; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802C00FC; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802C0110; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802C0184; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802C01A4; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802C01B0; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802C01BC; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802C01D0; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802C01EC; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802C0250; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0280; // type:label scope:local +@1795 = .data:0x802C0280; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802C028C; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802C02C0; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802C02F8; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802C030C; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802C031C; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802C0328; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802C0344; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802C03C4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C03F0; // type:label scope:local +@1701 = .data:0x802C03F0; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802C03FC; // type:object size:0x9 scope:local align:4 data:string +@2645 = .data:0x802C0408; // type:object size:0xB scope:local align:4 data:string +@2647 = .data:0x802C0414; // type:object size:0xF scope:local align:4 data:string +@2649 = .data:0x802C0424; // type:object size:0xC scope:local align:4 +@2646 = .data:0x802C0430; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802C0444; // type:object size:0x64 scope:global align:4 +@2661 = .data:0x802C04A8; // type:object size:0xB scope:local align:4 data:string +@2663 = .data:0x802C04B4; // type:object size:0x14 scope:local align:4 data:string +@2662 = .data:0x802C04C8; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802C04E4; // type:object size:0x74 scope:global align:4 +@2669 = .data:0x802C0558; // type:object size:0xC scope:local align:4 data:string +@2715 = .data:0x802C059C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C05C8; // type:label scope:local +@1052 = .data:0x802C05C8; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802C05DC; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802C05EC; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802C05F8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802C0604; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802C0614; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802C0624; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802C0630; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802C0644; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802C06A8; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802C06C4; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802C06D8; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802C06E4; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802C06F0; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802C0710; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802C072C; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802C0738; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802C0744; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0770; // type:label scope:local +@1793 = .data:0x802C0770; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802C0780; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802C078C; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802C0798; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802C07AC; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802C07BC; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802C07C8; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802C07E4; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802C0864; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0890; // type:label scope:local +@1370 = .data:0x802C0890; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802C089C; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802C08AC; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802C08B8; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802C08CC; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802C0930; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0960; // type:label scope:local +@1477 = .data:0x802C0960; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802C096C; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802C0980; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802C0994; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802C09A4; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802C09B0; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802C09CC; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802C0A4C; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802C0A58; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802C0A64; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802C0A78; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802C0A94; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802C0AF8; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802C0B18; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0B48; // type:label scope:local +@1050 = .data:0x802C0B48; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802C0B54; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802C0B60; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802C0B6C; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802C0B7C; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802C0B88; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802C0B9C; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802C0C00; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802C0C18; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802C0C2C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802C0C38; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802C0C44; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802C0C64; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802C0C7C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802C0C88; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802C0C94; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0CC0; // type:label scope:local +@1426 = .data:0x802C0CC0; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802C0CCC; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802C0CDC; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802C0CE8; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802C0CFC; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802C0D70; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802C0D90; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0DC0; // type:label scope:local +@1216 = .data:0x802C0DC0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802C0DD0; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802C0DDC; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802C0DE8; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802C0E0C; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802C0E38; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802C0E64; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802C0E70; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802C0E7C; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802C0E90; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802C0EA8; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802C0EB4; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802C0EC4; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802C0ED0; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802C0EE4; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802C0F48; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802C0F68; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802C0F84; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802C0F90; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802C0F9C; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802C0FA8; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802C0FBC; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802C1020; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802C102C; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802C1040; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802C10A4; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802C1108; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802C1140; // type:label scope:local +@1468 = .data:0x802C1140; // type:object size:0xC scope:local align:4 data:string +@1533 = .data:0x802C114C; // type:object size:0x10 scope:local align:4 data:string +@1534 = .data:0x802C115C; // type:object size:0x12 scope:local align:4 data:string +@1597 = .data:0x802C1170; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802C117C; // type:object size:0xF scope:local align:4 data:string +@1649 = .data:0x802C118C; // type:object size:0x10 scope:local align:4 data:string +@1688 = .data:0x802C119C; // type:object size:0xB scope:local align:4 data:string +@1689 = .data:0x802C11A8; // type:object size:0x9 scope:local align:4 data:string +@1716 = .data:0x802C11B4; // type:object size:0xF scope:local align:4 data:string +@1872 = .data:0x802C11C4; // type:object size:0xC scope:local align:4 data:string +@1875 = .data:0x802C11D0; // type:object size:0xC scope:local align:4 +@1877 = .data:0x802C11DC; // type:object size:0x14 scope:local align:4 +@1873 = .data:0x802C11F0; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802C120C; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802C122C; // type:object size:0xF scope:local align:4 data:string +@1883 = .data:0x802C123C; // type:object size:0xB scope:local align:4 data:string +@1884 = .data:0x802C1248; // type:object size:0xC scope:local align:4 +@1881 = .data:0x802C1254; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802C1268; // type:object size:0x20 scope:global align:4 +@1885 = .data:0x802C1288; // type:object size:0xC scope:local align:4 data:string +@1886 = .data:0x802C1294; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802C12A8; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802C12C8; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802C12E8; // type:object size:0x1C scope:weak align:4 +@1888 = .data:0x802C1304; // type:object size:0x9 scope:local align:4 data:string +@1889 = .data:0x802C1310; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802C132C; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802C134C; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802C1388; // type:label scope:local +@1919 = .data:0x802C1388; // type:object size:0x9 scope:local align:4 data:string +@2194 = .data:0x802C1394; // type:object size:0x12 scope:local align:4 data:string +@2539 = .data:0x802C13A8; // type:object size:0xB scope:local align:4 data:string +@2656 = .data:0x802C13B4; // type:object size:0x17 scope:local align:4 data:string +@2657 = .data:0x802C13CC; // type:object size:0x3C scope:local align:4 +@2670 = .data:0x802C1408; // type:object size:0x58 scope:local align:4 +@3265 = .data:0x802C1460; // type:object size:0xE scope:local align:4 data:string +@3268 = .data:0x802C1470; // type:object size:0xB scope:local align:4 data:string +@3416 = .data:0x802C147C; // type:object size:0x2C scope:local align:4 +@3886 = .data:0x802C14A8; // type:object size:0x11 scope:local align:4 data:string +@4822 = .data:0x802C14BC; // type:object size:0xA scope:local align:4 data:string +@5040 = .data:0x802C14C8; // type:object size:0x11 scope:local align:4 data:string +@5085 = .data:0x802C14DC; // type:object size:0x26 scope:local align:4 data:string +@5119 = .data:0x802C1504; // type:object size:0x4C scope:local align:4 +@5126 = .data:0x802C1550; // type:object size:0x9 scope:local align:4 data:string +@5127 = .data:0x802C155C; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802C1568; // type:object size:0x38 scope:global align:4 +@5132 = .data:0x802C15A0; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802C15AC; // type:object size:0x10 scope:global align:4 +@5135 = .data:0x802C15BC; // type:object size:0xA scope:local align:4 data:string +@5136 = .data:0x802C15C8; // type:object size:0xF scope:local align:4 data:string +@5137 = .data:0x802C15D8; // type:object size:0xC scope:local align:4 data:string +@5138 = .data:0x802C15E4; // type:object size:0xA scope:local align:4 data:string +@5139 = .data:0x802C15F0; // type:object size:0xB scope:local align:4 data:string +@5140 = .data:0x802C15FC; // type:object size:0xA scope:local align:4 data:string +@5141 = .data:0x802C1608; // type:object size:0xB scope:local align:4 data:string +@5142 = .data:0x802C1614; // type:object size:0xB scope:local align:4 data:string +@5143 = .data:0x802C1620; // type:object size:0xB scope:local align:4 data:string +@5144 = .data:0x802C162C; // type:object size:0xF scope:local align:4 data:string +@5145 = .data:0x802C163C; // type:object size:0xA scope:local align:4 data:string +@5146 = .data:0x802C1648; // type:object size:0xB scope:local align:4 data:string +@5147 = .data:0x802C1654; // type:object size:0xA scope:local align:4 data:string +@5148 = .data:0x802C1660; // type:object size:0xF scope:local align:4 data:string +@5149 = .data:0x802C1670; // type:object size:0xA scope:local align:4 data:string +@5150 = .data:0x802C167C; // type:object size:0xC scope:local align:4 data:string +@5151 = .data:0x802C1688; // type:object size:0xC scope:local align:4 data:string +@5152 = .data:0x802C1694; // type:object size:0xF scope:local align:4 data:string +@5153 = .data:0x802C16A4; // type:object size:0xD scope:local align:4 data:string +@5154 = .data:0x802C16B4; // type:object size:0xC scope:local align:4 data:string +@5155 = .data:0x802C16C0; // type:object size:0xA scope:local align:4 data:string +@5156 = .data:0x802C16CC; // type:object size:0xC scope:local align:4 data:string +@5157 = .data:0x802C16D8; // type:object size:0xC scope:local align:4 data:string +@5159 = .data:0x802C16E4; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802C16F4; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802C1758; // type:object size:0xC scope:local align:4 +@5403 = .data:0x802C1764; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802C1778; // type:object size:0x18 scope:weak align:4 +@5406 = .data:0x802C1790; // type:object size:0x23 scope:local align:4 data:string +@5407 = .data:0x802C17B4; // type:object size:0x3D scope:local align:4 data:string +@5408 = .data:0x802C17F4; // type:object size:0x29 scope:local align:4 data:string +@5405 = .data:0x802C1820; // type:object size:0x1C scope:local align:4 +@5415 = .data:0x802C189C; // type:object size:0x14 scope:local align:4 data:string +@5418 = .data:0x802C18BC; // type:object size:0xC scope:local align:4 data:string +@5419 = .data:0x802C18C8; // type:object size:0xD scope:local align:4 data:string +@5420 = .data:0x802C18D8; // type:object size:0x9 scope:local align:4 data:string +@5421 = .data:0x802C18E4; // type:object size:0x14 scope:local align:4 +@5417 = .data:0x802C18F8; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802C191C; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802C1A58; // type:label scope:local +@1306 = .data:0x802C1A58; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802C1A64; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802C1A7C; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802C1A94; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802C1AAC; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802C1AB8; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802C1AC4; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802C1AD0; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802C1ADC; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802C1AF0; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802C1AFC; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802C1B08; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802C1B2C; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802C1B3C; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802C1B68; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802C1B9C; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802C1C24; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802C1C30; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802C1C3C; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802C1C5C; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802C1C68; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802C1C88; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802C1C94; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802C1CA4; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802C1CB0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802C1CC8; // type:label scope:local +@1927 = .data:0x802C1CC8; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802C1CD8; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802C1CE4; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802C1CF0; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802C1CFC; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802C1D08; // type:object size:0xD scope:local align:4 data:string +@4586 = .data:0x802C1D18; // type:object size:0x16 scope:local align:4 data:string +@4621 = .data:0x802C1D30; // type:object size:0xF scope:local align:4 data:string +@4645 = .data:0x802C1D40; // type:object size:0xE scope:local align:4 data:string +@4829 = .data:0x802C1D50; // type:object size:0x9 scope:local align:4 data:string +@4925 = .data:0x802C1D5C; // type:object size:0xC scope:local align:4 data:string +@4966 = .data:0x802C1D68; // type:object size:0xA scope:local align:4 data:string +@5045 = .data:0x802C1D74; // type:object size:0x9 scope:local align:4 data:string +@5327 = .data:0x802C1D80; // type:object size:0x28 scope:local align:4 +@5372 = .data:0x802C1DA8; // type:object size:0x11 scope:local align:4 data:string +@5374 = .data:0x802C1DBC; // type:object size:0xF scope:local align:4 data:string +@5375 = .data:0x802C1DCC; // type:object size:0xD scope:local align:4 data:string +@5376 = .data:0x802C1DDC; // type:object size:0xC scope:local align:4 +@5377 = .data:0x802C1DE8; // type:object size:0xA scope:local align:4 data:string +@5378 = .data:0x802C1DF4; // type:object size:0x14 scope:local align:4 +@5373 = .data:0x802C1E08; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802C1E24; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802C1E90; // type:object size:0xE scope:local align:4 data:string +@5385 = .data:0x802C1EA0; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802C1EBC; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802C1F28; // type:object size:0xF scope:local align:4 data:string +@5388 = .data:0x802C1F38; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802C1F54; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802C1FC0; // type:object size:0x11 scope:local align:4 data:string +@5391 = .data:0x802C1FD4; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802C1FF0; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802C205C; // type:object size:0x12 scope:local align:4 data:string +@5394 = .data:0x802C2070; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802C208C; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802C20F8; // type:object size:0x10 scope:local align:4 data:string +@5397 = .data:0x802C2108; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802C2124; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802C2190; // type:object size:0x14 scope:local align:4 data:string +@5400 = .data:0x802C21A4; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802C21C0; // type:object size:0x6C scope:global align:4 +@5402 = .data:0x802C222C; // type:object size:0xE scope:local align:4 data:string +@5403 = .data:0x802C223C; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802C2258; // type:object size:0x6C scope:global align:4 +@5404 = .data:0x802C22C4; // type:object size:0x12 scope:local align:4 data:string +@5405 = .data:0x802C22D8; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802C22F4; // type:object size:0x6C scope:global align:4 +@5406 = .data:0x802C2360; // type:object size:0xE scope:local align:4 data:string +@5407 = .data:0x802C2370; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802C238C; // type:object size:0x6C scope:global align:4 +@5408 = .data:0x802C23F8; // type:object size:0xE scope:local align:4 data:string +@5409 = .data:0x802C2408; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802C2424; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802C2490; // type:object size:0x10 scope:local align:4 data:string +@5411 = .data:0x802C24A0; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802C24BC; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802C2528; // type:object size:0x16 scope:local align:4 data:string +@5414 = .data:0x802C2540; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802C255C; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802C25C8; // type:object size:0xE scope:local align:4 data:string +@5417 = .data:0x802C25D8; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802C25F4; // type:object size:0x6C scope:global align:4 +@5419 = .data:0x802C2660; // type:object size:0x10 scope:local align:4 data:string +@5420 = .data:0x802C2670; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802C268C; // type:object size:0x6C scope:global align:4 +@5421 = .data:0x802C26F8; // type:object size:0xE scope:local align:4 data:string +@5422 = .data:0x802C2708; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802C2724; // type:object size:0x6C scope:global align:4 +@5423 = .data:0x802C2790; // type:object size:0x15 scope:local align:4 data:string +@5424 = .data:0x802C27A8; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802C27C4; // type:object size:0x6C scope:global align:4 +@5425 = .data:0x802C2830; // type:object size:0x10 scope:local align:4 data:string +@5426 = .data:0x802C2840; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802C285C; // type:object size:0x6C scope:global align:4 +@5427 = .data:0x802C28C8; // type:object size:0x10 scope:local align:4 data:string +@5428 = .data:0x802C28D8; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802C28F4; // type:object size:0x6C scope:global align:4 +@5429 = .data:0x802C2960; // type:object size:0xF scope:local align:4 data:string +@5430 = .data:0x802C2970; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802C298C; // type:object size:0x6C scope:global align:4 +@5431 = .data:0x802C29F8; // type:object size:0xE scope:local align:4 data:string +@5432 = .data:0x802C2A08; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802C2A24; // type:object size:0x6C scope:global align:4 +@5433 = .data:0x802C2A90; // type:object size:0x12 scope:local align:4 data:string +@5434 = .data:0x802C2AA4; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802C2AC0; // type:object size:0x6C scope:global align:4 +@5435 = .data:0x802C2B2C; // type:object size:0xF scope:local align:4 data:string +@5436 = .data:0x802C2B3C; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802C2B58; // type:object size:0x6C scope:global align:4 +@5437 = .data:0x802C2BC4; // type:object size:0xF scope:local align:4 data:string +@5438 = .data:0x802C2BD4; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802C2BF0; // type:object size:0x6C scope:global align:4 +@5439 = .data:0x802C2C5C; // type:object size:0x10 scope:local align:4 data:string +@5440 = .data:0x802C2C6C; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802C2C88; // type:object size:0x6C scope:global align:4 +@5441 = .data:0x802C2CF4; // type:object size:0x13 scope:local align:4 data:string +@5442 = .data:0x802C2D08; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802C2D24; // type:object size:0x6C scope:global align:4 +@5443 = .data:0x802C2D90; // type:object size:0xF scope:local align:4 data:string +@5444 = .data:0x802C2DA0; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802C2DBC; // type:object size:0x6C scope:global align:4 +@5445 = .data:0x802C2E28; // type:object size:0x10 scope:local align:4 data:string +@5446 = .data:0x802C2E38; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802C2E54; // type:object size:0x6C scope:global align:4 +@5447 = .data:0x802C2EC0; // type:object size:0x10 scope:local align:4 data:string +@5448 = .data:0x802C2ED0; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802C2EEC; // type:object size:0x6C scope:global align:4 +@5449 = .data:0x802C2F58; // type:object size:0xC scope:local align:4 data:string +@5459 = .data:0x802C2F90; // type:object size:0xF scope:local align:4 data:string +@5460 = .data:0x802C2FA0; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802C2FBC; // type:object size:0x6C scope:global align:4 +@5461 = .data:0x802C3028; // type:object size:0x10 scope:local align:4 data:string +@5462 = .data:0x802C3038; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802C3054; // type:object size:0x6C scope:global align:4 +@5463 = .data:0x802C30C0; // type:object size:0x10 scope:local align:4 data:string +@5464 = .data:0x802C30D0; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802C30EC; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802C3158; // type:object size:0x10 scope:local align:4 data:string +@5468 = .data:0x802C3168; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802C3184; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802C31F0; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802C3278; // type:object size:0x6C scope:global align:4 +@5470 = .data:0x802C32E4; // type:object size:0x11 scope:local align:4 data:string +@5472 = .data:0x802C32F8; // type:object size:0x13 scope:local align:4 data:string +@5471 = .data:0x802C330C; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802C3318; // type:object size:0x18 scope:global align:4 +@5518 = .data:0x802C3330; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C3360; // type:label scope:local +@1525 = .data:0x802C3360; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802C3370; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802C337C; // type:object size:0xD scope:local align:4 data:string +@1545 = .data:0x802C338C; // type:object size:0x12 scope:local align:4 data:string +@1568 = .data:0x802C33A0; // type:object size:0x13 scope:local align:4 data:string +@1569 = .data:0x802C33B4; // type:object size:0x12 scope:local align:4 data:string +@1570 = .data:0x802C33C8; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802C33D4; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802C33E8; // type:object size:0x13 scope:local align:4 data:string +@1573 = .data:0x802C33FC; // type:object size:0x13 scope:local align:4 data:string +@2296 = .data:0x802C3410; // type:object size:0xE scope:local align:4 data:string +@2299 = .data:0x802C3420; // type:object size:0x9 scope:local align:4 data:string +@2301 = .data:0x802C342C; // type:object size:0x14 scope:local align:4 data:string +@2302 = .data:0x802C3440; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802C344C; // type:object size:0xD scope:local align:4 data:string +@2304 = .data:0x802C345C; // type:object size:0x9 scope:local align:4 data:string +@2305 = .data:0x802C3468; // type:object size:0x14 scope:local align:4 +@2307 = .data:0x802C347C; // type:object size:0x24 scope:local align:4 +@2300 = .data:0x802C34A0; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802C34CC; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802C3608; // type:label scope:local +@634 = .data:0x802C3608; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802C3618; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802C3624; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802C3630; // type:object size:0xC scope:global align:4 +@637 = .data:0x802C363C; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802C3648; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802C3654; // type:object size:0xC scope:global align:4 +@639 = .data:0x802C3660; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802C3670; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802C367C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802C3688; // type:label scope:local +@1616 = .data:0x802C3688; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802C3698; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802C36A4; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802C36B0; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802C36BC; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802C36C8; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802C36D8; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802C36EC; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802C3708; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802C3714; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802C3724; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802C3738; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802C3744; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802C3754; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802C3760; // type:object size:0x17 scope:local align:4 data:string +@2137 = .data:0x802C3778; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802C3790; // type:object size:0x8 scope:global align:4 +@2551 = .data:0x802C3798; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802C37A8; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802C37B8; // type:object size:0xB scope:local align:4 data:string +@3006 = .data:0x802C37C4; // type:object size:0xC scope:local align:4 +@3008 = .data:0x802C37D0; // type:object size:0x14 scope:local align:4 +@3003 = .data:0x802C37E4; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802C3800; // type:object size:0x38 scope:global align:4 +@3014 = .data:0x802C3838; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802C3848; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802C3864; // type:object size:0x38 scope:global align:4 +@3017 = .data:0x802C389C; // type:object size:0x10 scope:local align:4 data:string +@3020 = .data:0x802C38AC; // type:object size:0x14 scope:local align:4 +@3018 = .data:0x802C38C0; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802C38DC; // type:object size:0x38 scope:global align:4 +@3022 = .data:0x802C3914; // type:object size:0xE scope:local align:4 data:string +@3023 = .data:0x802C3924; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802C3940; // type:object size:0x38 scope:global align:4 +@3024 = .data:0x802C3978; // type:object size:0xB scope:local align:4 data:string +@3025 = .data:0x802C3984; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802C39A0; // type:object size:0x38 scope:global align:4 +@3027 = .data:0x802C39D8; // type:object size:0xE scope:local align:4 data:string +@3029 = .data:0x802C39E8; // type:object size:0xA scope:local align:4 data:string +@3030 = .data:0x802C39F4; // type:object size:0x14 scope:local align:4 +@3028 = .data:0x802C3A08; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802C3A24; // type:object size:0x38 scope:global align:4 +@3034 = .data:0x802C3A5C; // type:object size:0x9 scope:local align:4 data:string +@3035 = .data:0x802C3A68; // type:object size:0xC scope:local align:4 +@3037 = .data:0x802C3A74; // type:object size:0x14 scope:local align:4 +@3032 = .data:0x802C3A88; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802C3AA4; // type:object size:0x30 scope:global align:4 +@3045 = .data:0x802C3AD4; // type:object size:0xA scope:local align:4 data:string +@3046 = .data:0x802C3AE0; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802C3AFC; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802C3B48; // type:object size:0x38 scope:global align:4 +@3047 = .data:0x802C3B80; // type:object size:0xC scope:local align:4 data:string +@3049 = .data:0x802C3B8C; // type:object size:0x9 scope:local align:4 data:string +@3048 = .data:0x802C3B98; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802C3BB8; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802C3BF0; // type:object size:0x38 scope:global align:4 +@3050 = .data:0x802C3C28; // type:object size:0xA scope:local align:4 data:string +@3051 = .data:0x802C3C34; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802C3C54; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802C3C78; // type:label scope:local +@1070 = .data:0x802C3C78; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802C3C8C; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802C3C9C; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802C3CA8; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802C3CC0; // type:object size:0xB scope:local align:4 data:string +@1352 = .data:0x802C3CCC; // type:object size:0x1D scope:local align:4 data:string +@1353 = .data:0x802C3CEC; // type:object size:0x1A scope:local align:4 data:string +@1366 = .data:0x802C3D08; // type:object size:0x24 scope:local align:4 data:string +@1397 = .data:0x802C3D2C; // type:object size:0x18 scope:local align:4 data:string +@1399 = .data:0x802C3D44; // type:object size:0x14 scope:local align:4 data:string +@1415 = .data:0x802C3D58; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802C3D74; // type:object size:0x24 scope:local align:4 data:string +@1490 = .data:0x802C3D98; // type:object size:0x19 scope:local align:4 data:string +@1523 = .data:0x802C3DB4; // type:object size:0x13 scope:local align:4 data:string +@1554 = .data:0x802C3DC8; // type:object size:0x11 scope:local align:4 data:string +@1555 = .data:0x802C3DDC; // type:object size:0xA scope:local align:4 data:string +@1558 = .data:0x802C3DE8; // type:object size:0x13 scope:local align:4 data:string +@1559 = .data:0x802C3DFC; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802C3E08; // type:object size:0x14 scope:local align:4 +@1572 = .data:0x802C3EE8; // type:object size:0x16 scope:local align:4 data:string +@1575 = .data:0x802C3F00; // type:object size:0xC scope:local align:4 +@1573 = .data:0x802C3F0C; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802C3F20; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802C3F50; // type:label scope:local +@737 = .data:0x802C3F50; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802C3F60; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C3F6C; // type:object size:0x9 scope:local align:4 data:string +@1654 = .data:0x802C3F78; // type:object size:0xB scope:local align:4 data:string +@1987 = .data:0x802C3F84; // type:object size:0x10 scope:local align:4 data:string +@1990 = .data:0x802C3F94; // type:object size:0x9 scope:local align:4 data:string +@1991 = .data:0x802C3FA0; // type:object size:0xC scope:local align:4 +@1993 = .data:0x802C3FAC; // type:object size:0x14 scope:local align:4 +@1994 = .data:0x802C3FC0; // type:object size:0xC scope:local align:4 data:string +@1995 = .data:0x802C3FCC; // type:object size:0xA scope:local align:4 data:string +@1996 = .data:0x802C3FD8; // type:object size:0x24 scope:local align:4 +@1988 = .data:0x802C3FFC; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802C4028; // type:object size:0x78 scope:global align:4 +@2010 = .data:0x802C40A0; // type:object size:0xE scope:local align:4 data:string +@2011 = .data:0x802C40B0; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802C40DC; // type:object size:0x80 scope:global align:4 +@2019 = .data:0x802C415C; // type:object size:0xE scope:local align:4 data:string +@2020 = .data:0x802C416C; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802C4198; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802C4250; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802C42C8; // type:label scope:local +@1700 = .data:0x802C42C8; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802C42DC; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802C42E8; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802C42F8; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802C4304; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802C4310; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802C4340; // type:label scope:local +@388 = .data:0x802C4340; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802C4350; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802C435C; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802C436C; // type:object size:0x10 scope:weak align:4 +table = .data:0x802C4380; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802C4410; // type:label scope:local +@886 = .data:0x802C4410; // type:object size:0xE scope:local align:4 data:string +@1382 = .data:0x802C4420; // type:object size:0x14 scope:local align:4 data:string +@1383 = .data:0x802C4434; // type:object size:0xC scope:local align:4 data:string +@1384 = .data:0x802C4440; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802C4450; // type:object size:0x9 scope:local align:4 data:string +@1386 = .data:0x802C445C; // type:object size:0x14 scope:local align:4 +@1387 = .data:0x802C4470; // type:object size:0xB scope:local align:4 data:string +@1388 = .data:0x802C447C; // type:object size:0x24 scope:local align:4 +@1389 = .data:0x802C44A0; // type:object size:0xD scope:local align:4 data:string +@1390 = .data:0x802C44B0; // type:object size:0x2C scope:local align:4 +@1381 = .data:0x802C44DC; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802C4510; // type:object size:0x15C scope:global align:4 +@1441 = .data:0x802C466C; // type:object size:0x9 scope:local align:4 data:string +@1442 = .data:0x802C4678; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802C46AC; // type:object size:0x15C scope:global align:4 +@1447 = .data:0x802C4808; // type:object size:0x9 scope:local align:4 data:string +@1448 = .data:0x802C4814; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802C4848; // type:object size:0x15C scope:global align:4 +@1453 = .data:0x802C49A4; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802C49D8; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C4B38; // type:label scope:local +@908 = .data:0x802C4B38; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802C4B48; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802C4B54; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802C4B68; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802C4B74; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802C4B84; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802C4B90; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802C4BA4; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802C4BB0; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802C4BD4; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802C4BE4; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802C4C10; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802C4C44; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802C4DA0; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802C4DAC; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802C4DE0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C4F40; // type:label scope:local +@868 = .data:0x802C4F40; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802C4F50; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802C4F60; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802C4F74; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802C4F80; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802C4F90; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802C4F9C; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802C4FB0; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802C4FBC; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802C4FE0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802C4FF0; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802C501C; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802C5050; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C51B0; // type:label scope:local +@1538 = .data:0x802C51B0; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802C51BC; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802C51C8; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802C51D4; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802C5254; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802C5260; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802C5274; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802C5280; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802C5290; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802C529C; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802C52B0; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802C52BC; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802C52E0; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802C52F0; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802C531C; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802C5350; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802C54C4; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802C5500; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802C5678; // type:label scope:local +@909 = .data:0x802C5678; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802C5684; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802C569C; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802C56A8; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802C56B4; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C56C0; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802C56CC; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802C56D8; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802C56E4; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802C56F0; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802C56FC; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802C5740; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802C5750; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802C575C; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802C576C; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802C5778; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802C578C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C57A8; // type:label scope:local +@1257 = .data:0x802C57A8; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802C57B8; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802C57C4; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802C57D0; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802C57E4; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802C57F0; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802C5800; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C580C; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802C5820; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802C582C; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802C5850; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802C5860; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802C588C; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802C58C0; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802C5A28; // type:label scope:local +@1532 = .data:0x802C5A28; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802C5A38; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802C5A44; // type:object size:0xC scope:local align:4 data:4byte +@1666 = .data:0x802C5A50; // type:object size:0xA scope:local align:4 data:string +@1691 = .data:0x802C5A5C; // type:object size:0xF scope:local align:4 data:string +@1826 = .data:0x802C5A6C; // type:object size:0x16 scope:local align:4 data:string +@2027 = .data:0x802C5A84; // type:object size:0x10 scope:local align:4 data:string +@2111 = .data:0x802C5A94; // type:object size:0x3D scope:local align:4 data:string +@2112 = .data:0x802C5AE0; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802C5AEC; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802C5B00; // type:object size:0xC scope:local align:4 data:string +@2116 = .data:0x802C5B0C; // type:object size:0xD scope:local align:4 data:string +@2117 = .data:0x802C5B1C; // type:object size:0x9 scope:local align:4 data:string +@2118 = .data:0x802C5B28; // type:object size:0x14 scope:local align:4 +@2119 = .data:0x802C5B3C; // type:object size:0xB scope:local align:4 data:string +@2120 = .data:0x802C5B48; // type:object size:0x24 scope:local align:4 +@2121 = .data:0x802C5B6C; // type:object size:0xD scope:local align:4 data:string +@2122 = .data:0x802C5B7C; // type:object size:0x2C scope:local align:4 +@2113 = .data:0x802C5BA8; // type:object size:0x34 scope:local align:4 +@2176 = .data:0x802C5D50; // type:object size:0x9 scope:local align:4 data:string +@2177 = .data:0x802C5D5C; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802C5DA0; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802C5F28; // type:label scope:local +@1376 = .data:0x802C5F28; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802C5F3C; // type:object size:0xD scope:local align:4 data:string +@1474 = .data:0x802C5F4C; // type:object size:0x23 scope:local align:4 data:string +@1631 = .data:0x802C5F70; // type:object size:0xD scope:local align:4 data:string +@1633 = .data:0x802C5F80; // type:object size:0x14 scope:local align:4 data:string +@1634 = .data:0x802C5F94; // type:object size:0xC scope:local align:4 data:string +@1635 = .data:0x802C5FA0; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802C5FB0; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802C5FBC; // type:object size:0x14 scope:local align:4 +@1638 = .data:0x802C5FD0; // type:object size:0xB scope:local align:4 data:string +@1639 = .data:0x802C5FDC; // type:object size:0x24 scope:local align:4 +@1640 = .data:0x802C6000; // type:object size:0xD scope:local align:4 data:string +@1641 = .data:0x802C6010; // type:object size:0x2C scope:local align:4 +@1632 = .data:0x802C603C; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802C6070; // type:object size:0x15C scope:global align:4 +@1686 = .data:0x802C61CC; // type:object size:0x23 scope:local align:4 data:string +@1687 = .data:0x802C61F0; // type:object size:0x3D scope:local align:4 data:string +@1688 = .data:0x802C6230; // type:object size:0x29 scope:local align:4 data:string +@1685 = .data:0x802C625C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802C62D8; // type:label scope:local +@870 = .data:0x802C62D8; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C62E4; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802C62F0; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802C6304; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802C6310; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802C6320; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802C632C; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802C6340; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802C634C; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802C6370; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802C6380; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802C63AC; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802C63E0; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802C653C; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802C6558; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C6670; // type:label scope:local +@868 = .data:0x802C6670; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802C6680; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802C668C; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802C6698; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802C66A4; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802C66B4; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802C66C0; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802C66D4; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802C66E4; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802C6700; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802C6724; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C6838; // type:label scope:local +@1458 = .data:0x802C6838; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802C6848; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802C6854; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802C6860; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802C686C; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802C687C; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802C6888; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802C689C; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802C68B8; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C69D0; // type:label scope:local +@1071 = .data:0x802C69D0; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802C69DC; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802C69E8; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802C69F8; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802C6A08; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802C6A64; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802C6A74; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802C6A80; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802C6A8C; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802C6A98; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802C6AAC; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802C6AC8; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802C6B00; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802C6B0C; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802C6B18; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C6B38; // type:label scope:local +@1775 = .data:0x802C6B38; // type:object size:0xB scope:local align:4 data:string +@2223 = .data:0x802C6B44; // type:object size:0x15 scope:local align:4 data:string +@2766 = .data:0x802C6B5C; // type:object size:0x9 scope:local align:4 data:string +@2868 = .data:0x802C6B68; // type:object size:0x9 scope:local align:4 data:string +@2887 = .data:0x802C6B74; // type:object size:0x12 scope:local align:4 data:string +@3001 = .data:0x802C6B88; // type:object size:0x9 scope:local align:4 data:string +@3044 = .data:0x802C6B94; // type:object size:0xE scope:local align:4 data:string +@3150 = .data:0x802C6BA4; // type:object size:0x16 scope:local align:4 data:string +@3249 = .data:0x802C6BBC; // type:object size:0x1B scope:local align:4 data:string +@3251 = .data:0x802C6BD8; // type:object size:0xA scope:local align:4 data:string +@3250 = .data:0x802C6BE4; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802C6BF0; // type:object size:0xC scope:global align:4 +@3252 = .data:0x802C6BFC; // type:object size:0x16 scope:local align:4 data:string +@3253 = .data:0x802C6C14; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802C6C20; // type:object size:0xC scope:global align:4 +@3254 = .data:0x802C6C2C; // type:object size:0x19 scope:local align:4 data:string +@3255 = .data:0x802C6C48; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802C6C54; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802C6C60; // type:object size:0xC scope:local align:4 data:string +@3258 = .data:0x802C6C6C; // type:object size:0x19 scope:local align:4 data:string +@3259 = .data:0x802C6C88; // type:object size:0x9 scope:local align:4 data:string +@3260 = .data:0x802C6C94; // type:object size:0xC scope:local align:4 +@3257 = .data:0x802C6CA0; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802C6CB4; // type:object size:0x18 scope:weak align:4 +@3261 = .data:0x802C6CCC; // type:object size:0xD scope:local align:4 data:string +@3262 = .data:0x802C6CDC; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802C6CE8; // type:object size:0xC scope:global align:4 +@3263 = .data:0x802C6CF4; // type:object size:0x15 scope:local align:4 data:string +@3266 = .data:0x802C6D0C; // type:object size:0xC scope:local align:4 +@3267 = .data:0x802C6D18; // type:object size:0xD scope:local align:4 data:string +@3268 = .data:0x802C6D28; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802C6D3C; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802C6D58; // type:object size:0x14 scope:global align:4 +@3272 = .data:0x802C6D6C; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802C6D80; // type:object size:0x18 scope:weak align:4 +@3273 = .data:0x802C6D98; // type:object size:0xB scope:local align:4 data:string +@3274 = .data:0x802C6DA4; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802C6DB0; // type:object size:0xC scope:global align:4 +@3275 = .data:0x802C6DBC; // type:object size:0x10 scope:local align:4 data:string +@3276 = .data:0x802C6DCC; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802C6DD8; // type:object size:0xC scope:global align:4 +@3277 = .data:0x802C6DE4; // type:object size:0x10 scope:local align:4 data:string +@3278 = .data:0x802C6DF4; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802C6E00; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802C6E0C; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802C6E20; // type:object size:0x18 scope:weak align:4 +@3281 = .data:0x802C6E38; // type:object size:0xF scope:local align:4 data:string +@3282 = .data:0x802C6E48; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802C6E54; // type:object size:0xC scope:global align:4 +@3283 = .data:0x802C6E60; // type:object size:0x11 scope:local align:4 data:string +@3284 = .data:0x802C6E74; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802C6E80; // type:object size:0xC scope:global align:4 +@3285 = .data:0x802C6E8C; // type:object size:0x11 scope:local align:4 data:string +@3286 = .data:0x802C6EA0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802C6EAC; // type:object size:0xC scope:global align:4 +@3287 = .data:0x802C6EB8; // type:object size:0x11 scope:local align:4 data:string +@3288 = .data:0x802C6ECC; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802C6ED8; // type:object size:0xC scope:global align:4 +@3289 = .data:0x802C6EE4; // type:object size:0x11 scope:local align:4 data:string +@3290 = .data:0x802C6EF8; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802C6F04; // type:object size:0xC scope:global align:4 +@3291 = .data:0x802C6F10; // type:object size:0x11 scope:local align:4 data:string +@3292 = .data:0x802C6F24; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802C6F30; // type:object size:0xC scope:global align:4 +@3293 = .data:0x802C6F3C; // type:object size:0x11 scope:local align:4 data:string +@3294 = .data:0x802C6F50; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802C6F5C; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802C6F68; // type:object size:0x14 scope:local align:4 data:string +@3296 = .data:0x802C6F7C; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802C6F98; // type:object size:0x14 scope:global align:4 +@3299 = .data:0x802C6FDC; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802C6FF0; // type:object size:0x18 scope:weak align:4 +@3300 = .data:0x802C7008; // type:object size:0x10 scope:local align:4 data:string +@3301 = .data:0x802C7018; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802C7024; // type:object size:0xC scope:global align:4 +@3302 = .data:0x802C7030; // type:object size:0x10 scope:local align:4 data:string +@3303 = .data:0x802C7040; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802C704C; // type:object size:0xC scope:global align:4 +@3304 = .data:0x802C7058; // type:object size:0x11 scope:local align:4 data:string +@3305 = .data:0x802C706C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802C7078; // type:object size:0xC scope:global align:4 +@3306 = .data:0x802C7084; // type:object size:0x11 scope:local align:4 data:string +@3307 = .data:0x802C7098; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802C70A4; // type:object size:0xC scope:global align:4 +@3308 = .data:0x802C70B0; // type:object size:0x11 scope:local align:4 data:string +@3309 = .data:0x802C70C4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802C70D0; // type:object size:0xC scope:global align:4 +@3310 = .data:0x802C70DC; // type:object size:0xC scope:local align:4 data:string +@3320 = .data:0x802C7114; // type:object size:0xC scope:local align:4 data:string +@3322 = .data:0x802C7120; // type:object size:0xC scope:local align:4 data:string +@3321 = .data:0x802C712C; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802C7138; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802C7144; // type:object size:0xC scope:weak align:4 +@3327 = .data:0x802C7150; // type:object size:0x11 scope:local align:4 data:string +@3328 = .data:0x802C7164; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802C7170; // type:object size:0xC scope:global align:4 +@3329 = .data:0x802C717C; // type:object size:0x10 scope:local align:4 data:string +@3330 = .data:0x802C718C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802C7198; // type:object size:0xC scope:global align:4 +@3331 = .data:0x802C71A4; // type:object size:0x10 scope:local align:4 data:string +@3332 = .data:0x802C71B4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802C71C0; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802C71CC; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802C71E0; // type:object size:0x18 scope:weak align:4 +@3335 = .data:0x802C71F8; // type:object size:0x11 scope:local align:4 data:string +@3336 = .data:0x802C720C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802C7218; // type:object size:0xC scope:global align:4 +@3337 = .data:0x802C7224; // type:object size:0x17 scope:local align:4 data:string +@3338 = .data:0x802C723C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802C7248; // type:object size:0xC scope:global align:4 +@3339 = .data:0x802C7254; // type:object size:0x17 scope:local align:4 data:string +@3340 = .data:0x802C726C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802C7278; // type:object size:0xC scope:global align:4 +@3341 = .data:0x802C7284; // type:object size:0x17 scope:local align:4 data:string +@3342 = .data:0x802C729C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802C72A8; // type:object size:0xC scope:global align:4 +@3343 = .data:0x802C72B4; // type:object size:0x19 scope:local align:4 data:string +@3344 = .data:0x802C72D0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802C72DC; // type:object size:0xC scope:global align:4 +@3345 = .data:0x802C72E8; // type:object size:0x15 scope:local align:4 data:string +@3346 = .data:0x802C7300; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802C730C; // type:object size:0xC scope:global align:4 +@3347 = .data:0x802C7318; // type:object size:0x15 scope:local align:4 data:string +@3348 = .data:0x802C7330; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802C733C; // type:object size:0xC scope:global align:4 +@3349 = .data:0x802C7348; // type:object size:0x15 scope:local align:4 data:string +@3350 = .data:0x802C7360; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802C736C; // type:object size:0xC scope:global align:4 +@3351 = .data:0x802C7378; // type:object size:0x15 scope:local align:4 data:string +@3352 = .data:0x802C7390; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802C739C; // type:object size:0xC scope:global align:4 +@3353 = .data:0x802C73A8; // type:object size:0x15 scope:local align:4 data:string +@3354 = .data:0x802C73C0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802C73CC; // type:object size:0xC scope:global align:4 +@3355 = .data:0x802C73D8; // type:object size:0x15 scope:local align:4 data:string +@3356 = .data:0x802C73F0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802C73FC; // type:object size:0xC scope:global align:4 +@3357 = .data:0x802C7408; // type:object size:0x16 scope:local align:4 data:string +@3358 = .data:0x802C7420; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802C742C; // type:object size:0xC scope:global align:4 +@3359 = .data:0x802C7438; // type:object size:0x16 scope:local align:4 data:string +@3360 = .data:0x802C7450; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802C745C; // type:object size:0xC scope:global align:4 +@3361 = .data:0x802C7468; // type:object size:0x1A scope:local align:4 data:string +@3362 = .data:0x802C7484; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802C7490; // type:object size:0xC scope:global align:4 +@3363 = .data:0x802C749C; // type:object size:0x17 scope:local align:4 data:string +@3364 = .data:0x802C74B4; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802C74C0; // type:object size:0xC scope:global align:4 +@3365 = .data:0x802C74CC; // type:object size:0x19 scope:local align:4 data:string +@3366 = .data:0x802C74E8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802C74F4; // type:object size:0xC scope:global align:4 +@3367 = .data:0x802C7500; // type:object size:0x18 scope:local align:4 data:string +@3368 = .data:0x802C7518; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802C7524; // type:object size:0xC scope:global align:4 +@3369 = .data:0x802C7530; // type:object size:0xB scope:local align:4 data:string +@3370 = .data:0x802C753C; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802C7550; // type:object size:0x18 scope:weak align:4 +@3371 = .data:0x802C7568; // type:object size:0x15 scope:local align:4 data:string +@3372 = .data:0x802C7580; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802C758C; // type:object size:0xC scope:global align:4 +@3373 = .data:0x802C7598; // type:object size:0x15 scope:local align:4 data:string +@3374 = .data:0x802C75B0; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802C75BC; // type:object size:0xC scope:global align:4 +@3375 = .data:0x802C75C8; // type:object size:0x13 scope:local align:4 data:string +@3376 = .data:0x802C75DC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802C75E8; // type:object size:0xC scope:global align:4 +@3377 = .data:0x802C75F4; // type:object size:0x13 scope:local align:4 data:string +@3378 = .data:0x802C7608; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802C7614; // type:object size:0xC scope:global align:4 +@3379 = .data:0x802C7620; // type:object size:0x15 scope:local align:4 data:string +@3380 = .data:0x802C7638; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802C7644; // type:object size:0xC scope:global align:4 +@3381 = .data:0x802C7650; // type:object size:0xF scope:local align:4 data:string +@3382 = .data:0x802C7660; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802C766C; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802C7678; // type:object size:0xC scope:weak align:4 +@3383 = .data:0x802C7684; // type:object size:0x9 scope:local align:4 data:string +@3385 = .data:0x802C7690; // type:object size:0x15 scope:local align:4 data:string +@3384 = .data:0x802C76A8; // type:object size:0xC scope:local align:4 +@3386 = .data:0x802C7724; // type:object size:0x9 scope:local align:4 data:string +@3387 = .data:0x802C7730; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802C7744; // type:object size:0x18 scope:weak align:4 +@3425 = .data:0x802C775C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C7788; // type:label scope:local +@1259 = .data:0x802C7788; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802C7794; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802C77A4; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802C77BC; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802C77D4; // type:object size:0xB scope:local align:4 data:string +@1723 = .data:0x802C77E0; // type:object size:0x58 scope:local align:4 +@1799 = .data:0x802C7838; // type:object size:0x9 scope:local align:4 data:string +@1800 = .data:0x802C7844; // type:object size:0xA scope:local align:4 data:string +@2063 = .data:0x802C7850; // type:object size:0x18 scope:local align:4 data:string +@2064 = .data:0x802C7868; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802C7884; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802C78A0; // type:object size:0x19 scope:local align:4 data:string +@2067 = .data:0x802C78BC; // type:object size:0x18 scope:local align:4 data:string +@2504 = .data:0x802C78D4; // type:object size:0x1E scope:local align:4 data:string +@2505 = .data:0x802C78F4; // type:object size:0x9 scope:local align:4 data:string +@2506 = .data:0x802C7900; // type:object size:0xA scope:local align:4 data:string +@2507 = .data:0x802C790C; // type:object size:0x16 scope:local align:4 data:string +@2509 = .data:0x802C7924; // type:object size:0x18 scope:local align:4 data:string +@2511 = .data:0x802C793C; // type:object size:0x1E scope:local align:4 data:string +@2512 = .data:0x802C795C; // type:object size:0x9 scope:local align:4 data:string +@2513 = .data:0x802C7968; // type:object size:0x16 scope:local align:4 data:string +@2514 = .data:0x802C7980; // type:object size:0xD scope:local align:4 data:string +@2515 = .data:0x802C7990; // type:object size:0x19 scope:local align:4 data:string +@2517 = .data:0x802C79AC; // type:object size:0x9 scope:local align:4 data:string +@2518 = .data:0x802C79B8; // type:object size:0x19 scope:local align:4 data:string +@2519 = .data:0x802C79D4; // type:object size:0xA scope:local align:4 data:string +@2520 = .data:0x802C79E0; // type:object size:0xB scope:local align:4 data:string +@2521 = .data:0x802C79EC; // type:object size:0x16 scope:local align:4 data:string +@2523 = .data:0x802C7A04; // type:object size:0x9 scope:local align:4 data:string +@2866 = .data:0x802C7A10; // type:object size:0x5C scope:local align:4 +@2952 = .data:0x802C7A6C; // type:object size:0x9 scope:local align:4 data:string +@3063 = .data:0x802C7A78; // type:object size:0xC scope:local align:4 data:string +@3066 = .data:0x802C7A84; // type:object size:0xC scope:local align:4 +@3068 = .data:0x802C7A90; // type:object size:0x14 scope:local align:4 +@3069 = .data:0x802C7AA4; // type:object size:0xC scope:local align:4 data:string +@3070 = .data:0x802C7AB0; // type:object size:0xA scope:local align:4 data:string +@3071 = .data:0x802C7ABC; // type:object size:0x24 scope:local align:4 +@3072 = .data:0x802C7AE0; // type:object size:0xE scope:local align:4 data:string +@3073 = .data:0x802C7AF0; // type:object size:0x2C scope:local align:4 +@3064 = .data:0x802C7B1C; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802C7B50; // type:object size:0x84 scope:global align:4 +@3090 = .data:0x802C7BD4; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802C7BE8; // type:object size:0xD scope:local align:4 data:string +@3091 = .data:0x802C7BF8; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802C7C04; // type:object size:0xC scope:weak align:4 +@3096 = .data:0x802C7C10; // type:object size:0xE scope:local align:4 data:string +@3097 = .data:0x802C7C20; // type:object size:0x2C scope:local align:4 +@3095 = .data:0x802C7C4C; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802C7C80; // type:object size:0x84 scope:global align:4 +@3107 = .data:0x802C7D04; // type:object size:0x10 scope:local align:4 data:string +@3109 = .data:0x802C7D14; // type:object size:0xC scope:local align:4 data:string +@3108 = .data:0x802C7D20; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802C7D2C; // type:object size:0x2C scope:global align:4 +@3117 = .data:0x802C7D58; // type:object size:0xD scope:local align:4 data:string +@3119 = .data:0x802C7D68; // type:object size:0x14 scope:local align:4 data:string +@3120 = .data:0x802C7D7C; // type:object size:0xC scope:local align:4 data:string +@3121 = .data:0x802C7D88; // type:object size:0xD scope:local align:4 data:string +@3122 = .data:0x802C7D98; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802C7DA4; // type:object size:0x14 scope:local align:4 +@3124 = .data:0x802C7DB8; // type:object size:0xB scope:local align:4 data:string +@3125 = .data:0x802C7DC4; // type:object size:0x24 scope:local align:4 +@3118 = .data:0x802C7DE8; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802C7E14; // type:object size:0x15C scope:global align:4 +@3176 = .data:0x802C7F70; // type:object size:0x9 scope:local align:4 data:string +@3177 = .data:0x802C7F7C; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802C7F88; // type:object size:0xC scope:weak align:4 +@3179 = .data:0x802C7F94; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802C7FA0; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802C7FAC; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802C7FB8; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802C7FC4; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802C7FD0; // type:object size:0x9 scope:local align:4 data:string +@3183 = .data:0x802C7FDC; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802C7FE8; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802C7FF4; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802C8004; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802C8010; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802C801C; // type:object size:0xD scope:local align:4 data:string +@3187 = .data:0x802C802C; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802C8038; // type:object size:0xC scope:weak align:4 +@3188 = .data:0x802C8044; // type:object size:0x11 scope:local align:4 data:string +@3189 = .data:0x802C8058; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802C806C; // type:object size:0x10 scope:weak align:4 +@3190 = .data:0x802C807C; // type:object size:0xD scope:local align:4 data:string +@3191 = .data:0x802C808C; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802C8098; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802C80A4; // type:object size:0x11 scope:local align:4 data:string +@3193 = .data:0x802C80B8; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802C80C4; // type:object size:0xC scope:weak align:4 +@3194 = .data:0x802C80D0; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802C80DC; // type:object size:0x9 scope:local align:4 data:string +@3195 = .data:0x802C80E8; // type:object size:0xC scope:local align:4 +@3197 = .data:0x802C8108; // type:object size:0xC scope:local align:4 data:string +@3198 = .data:0x802C8114; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802C8120; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802C812C; // type:object size:0xD scope:local align:4 data:string +@3200 = .data:0x802C813C; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802C8148; // type:object size:0xC scope:weak align:4 +@3201 = .data:0x802C8160; // type:object size:0xE scope:local align:4 data:string +@3203 = .data:0x802C8170; // type:object size:0x10 scope:local align:4 data:string +@3204 = .data:0x802C8180; // type:object size:0x2C scope:local align:4 +@3202 = .data:0x802C81AC; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802C81E0; // type:object size:0x78 scope:weak align:4 +@3213 = .data:0x802C8258; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802C8268; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802C827C; // type:object size:0x10 scope:weak align:4 +@3215 = .data:0x802C82C0; // type:object size:0xD scope:local align:4 data:string +@3216 = .data:0x802C82D0; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802C8304; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802C8468; // type:label scope:local +@868 = .data:0x802C8468; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802C8478; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802C8484; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802C8498; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802C84AC; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802C84B8; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802C84C8; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802C84D4; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802C84E8; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802C84F4; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802C8518; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802C8528; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802C8554; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802C8560; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802C8594; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802C85D0; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802C872C; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802C8740; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802C877C; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802C88D8; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802C8914; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802C8A70; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C8A7C; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802C8AB8; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802C8C14; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802C8D70; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802C8D7C; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802C8DB0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C8F10; // type:label scope:local +@882 = .data:0x802C8F10; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802C8F20; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802C8F2C; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802C8F38; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802C8F4C; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802C8F58; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802C8F68; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802C8F74; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802C8F88; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802C8F94; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802C8FB8; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802C8FC8; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802C8FF4; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802C9028; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C9188; // type:label scope:local +@661 = .data:0x802C9188; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C91A0; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802C91B4; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802C91F0; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802C9204; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802C9210; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802C9220; // type:object size:0xC scope:local align:4 +@753 = .data:0x802C922C; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802C9240; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C9260; // type:label scope:local +@1242 = .data:0x802C9260; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802C926C; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802C9278; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802C928C; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802C92A4; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802C92B4; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802C92C0; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802C92CC; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802C92D8; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802C92EC; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802C9308; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C9340; // type:label scope:local +@2026 = .data:0x802C9340; // type:object size:0x9 scope:local align:4 data:string +@2212 = .data:0x802C934C; // type:object size:0xC scope:local align:4 data:string +@2213 = .data:0x802C9358; // type:object size:0x13 scope:local align:4 data:string +@2291 = .data:0x802C936C; // type:object size:0xD scope:local align:4 data:string +@2292 = .data:0x802C937C; // type:object size:0xC scope:local align:4 data:string +@3020 = .data:0x802C9388; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802C9394; // type:object size:0xB scope:local align:4 data:string +@3851 = .data:0x802C93A0; // type:object size:0xE scope:local align:4 data:string +@4627 = .data:0x802C93B0; // type:object size:0x20 scope:local align:4 data:string +@6088 = .data:0x802C93D0; // type:object size:0x2C scope:local align:4 +@6149 = .data:0x802C93FC; // type:object size:0x13 scope:local align:4 data:string +@6150 = .data:0x802C9410; // type:object size:0x15 scope:local align:4 data:string +@6721 = .data:0x802C9428; // type:object size:0xD scope:local align:4 data:string +@6723 = .data:0x802C9438; // type:object size:0xC scope:local align:4 data:string +@6722 = .data:0x802C9444; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C9450; // type:object size:0x2C scope:global align:4 +@6731 = .data:0x802C947C; // type:object size:0xF scope:local align:4 data:string +@6732 = .data:0x802C948C; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C9498; // type:object size:0x2C scope:global align:4 +@6733 = .data:0x802C94F0; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C9504; // type:object size:0x18 scope:weak align:4 +@6736 = .data:0x802C951C; // type:object size:0x23 scope:local align:4 data:string +@6737 = .data:0x802C9540; // type:object size:0x3D scope:local align:4 data:string +@6738 = .data:0x802C9580; // type:object size:0x29 scope:local align:4 data:string +@6735 = .data:0x802C95AC; // type:object size:0x1C scope:local align:4 +@6745 = .data:0x802C9628; // type:object size:0xB scope:local align:4 data:string +@6748 = .data:0x802C9634; // type:object size:0x9 scope:local align:4 data:string +@6749 = .data:0x802C9640; // type:object size:0xC scope:local align:4 +@6751 = .data:0x802C964C; // type:object size:0x14 scope:local align:4 +@6746 = .data:0x802C9660; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C967C; // type:object size:0x30 scope:weak align:4 +@6760 = .data:0x802C96C8; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C96D4; // type:object size:0x34 scope:weak align:4 +@6768 = .data:0x802C9708; // type:object size:0x14 scope:local align:4 data:string +@6769 = .data:0x802C9728; // type:object size:0xA scope:local align:4 data:string +@6771 = .data:0x802C9734; // type:object size:0x9 scope:local align:4 data:string +@6770 = .data:0x802C9740; // type:object size:0xC scope:local align:4 +@6772 = .data:0x802C9760; // type:object size:0x9 scope:local align:4 data:string +@6774 = .data:0x802C976C; // type:object size:0xD scope:local align:4 data:string +@6773 = .data:0x802C977C; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C9788; // type:object size:0xC scope:weak align:4 +@6777 = .data:0x802C9794; // type:object size:0xC scope:local align:4 data:string +@6778 = .data:0x802C97A0; // type:object size:0xC scope:local align:4 +@6782 = .data:0x802C97CC; // type:object size:0xC scope:local align:4 data:string +@6783 = .data:0x802C97D8; // type:object size:0xD scope:local align:4 data:string +@6784 = .data:0x802C97E8; // type:object size:0x9 scope:local align:4 data:string +@6785 = .data:0x802C97F4; // type:object size:0x14 scope:local align:4 +@6781 = .data:0x802C9808; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C9834; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C99A0; // type:label scope:local +@1929 = .data:0x802C99A0; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C99B0; // type:object size:0xA scope:local align:4 data:string +@5857 = .data:0x802C99BC; // type:object size:0x13 scope:local align:4 data:string +@5859 = .data:0x802C99D0; // type:object size:0xF scope:local align:4 data:string +@5860 = .data:0x802C99E0; // type:object size:0xD scope:local align:4 data:string +@5861 = .data:0x802C99F0; // type:object size:0xC scope:local align:4 +@5862 = .data:0x802C99FC; // type:object size:0xA scope:local align:4 data:string +@5863 = .data:0x802C9A08; // type:object size:0x14 scope:local align:4 +@5858 = .data:0x802C9A1C; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C9A38; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C9A8C; // type:object size:0x15 scope:local align:4 data:string +@5866 = .data:0x802C9AA4; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C9AC0; // type:object size:0x54 scope:global align:4 +@5868 = .data:0x802C9B14; // type:object size:0x12 scope:local align:4 data:string +@5869 = .data:0x802C9B28; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C9B44; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C9B98; // type:object size:0x12 scope:local align:4 data:string +@5872 = .data:0x802C9BAC; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C9BC8; // type:object size:0x54 scope:global align:4 +@5874 = .data:0x802C9C1C; // type:object size:0xE scope:local align:4 data:string +@5875 = .data:0x802C9C2C; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C9C48; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C9C9C; // type:object size:0x10 scope:local align:4 data:string +@5878 = .data:0x802C9CAC; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C9CC8; // type:object size:0x54 scope:global align:4 +@5879 = .data:0x802C9D1C; // type:object size:0xF scope:local align:4 data:string +@5880 = .data:0x802C9D2C; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C9D48; // type:object size:0x54 scope:global align:4 +@5881 = .data:0x802C9D9C; // type:object size:0xE scope:local align:4 data:string +@5882 = .data:0x802C9DAC; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C9DC8; // type:object size:0x54 scope:global align:4 +@5883 = .data:0x802C9E1C; // type:object size:0x10 scope:local align:4 data:string +@5884 = .data:0x802C9E2C; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C9E48; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C9E9C; // type:object size:0xF scope:local align:4 data:string +@5886 = .data:0x802C9EAC; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C9EC8; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C9F1C; // type:object size:0xD scope:local align:4 data:string +@5888 = .data:0x802C9F2C; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C9F48; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C9F9C; // type:object size:0x11 scope:local align:4 data:string +@5890 = .data:0x802C9FB0; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C9FCC; // type:object size:0x54 scope:global align:4 +@5892 = .data:0x802CA020; // type:object size:0x14 scope:local align:4 data:string +@5893 = .data:0x802CA034; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802CA050; // type:object size:0x54 scope:global align:4 +@5894 = .data:0x802CA0A4; // type:object size:0xE scope:local align:4 data:string +@5895 = .data:0x802CA0B4; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802CA0D0; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802CA124; // type:object size:0x12 scope:local align:4 data:string +@5898 = .data:0x802CA138; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802CA154; // type:object size:0x54 scope:global align:4 +@5899 = .data:0x802CA1A8; // type:object size:0xE scope:local align:4 data:string +@5900 = .data:0x802CA1B8; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802CA1D4; // type:object size:0x54 scope:global align:4 +@5901 = .data:0x802CA228; // type:object size:0xF scope:local align:4 data:string +@5902 = .data:0x802CA238; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802CA254; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802CA2A8; // type:object size:0x13 scope:local align:4 data:string +@5904 = .data:0x802CA2BC; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802CA2D8; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802CA32C; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802CA340; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802CA35C; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802CA3B0; // type:object size:0x10 scope:local align:4 data:string +@5908 = .data:0x802CA3C0; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802CA3DC; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802CA430; // type:object size:0x10 scope:local align:4 data:string +@5910 = .data:0x802CA440; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802CA45C; // type:object size:0x54 scope:global align:4 +@5912 = .data:0x802CA4B0; // type:object size:0xF scope:local align:4 data:string +@5913 = .data:0x802CA4C0; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802CA4DC; // type:object size:0x54 scope:global align:4 +@5915 = .data:0x802CA530; // type:object size:0xE scope:local align:4 data:string +@5916 = .data:0x802CA540; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802CA55C; // type:object size:0x54 scope:global align:4 +@5917 = .data:0x802CA5B0; // type:object size:0x11 scope:local align:4 data:string +@5918 = .data:0x802CA5C4; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802CA5E0; // type:object size:0x54 scope:global align:4 +@5919 = .data:0x802CA634; // type:object size:0x12 scope:local align:4 data:string +@5920 = .data:0x802CA648; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802CA664; // type:object size:0x54 scope:global align:4 +@5921 = .data:0x802CA6B8; // type:object size:0xE scope:local align:4 data:string +@5922 = .data:0x802CA6C8; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802CA6E4; // type:object size:0x54 scope:global align:4 +@5923 = .data:0x802CA738; // type:object size:0xE scope:local align:4 data:string +@5924 = .data:0x802CA748; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802CA764; // type:object size:0x54 scope:global align:4 +@5925 = .data:0x802CA7B8; // type:object size:0x13 scope:local align:4 data:string +@5927 = .data:0x802CA7CC; // type:object size:0x15 scope:local align:4 data:string +@5928 = .data:0x802CA7E4; // type:object size:0x17 scope:local align:4 data:string +@5926 = .data:0x802CA7FC; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802CA828; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802CA89C; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802CA8A8; // type:object size:0xC scope:weak align:4 +@5931 = .data:0x802CA8B4; // type:object size:0xD scope:local align:4 data:string +@5932 = .data:0x802CA8C4; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802CA8E0; // type:object size:0x54 scope:global align:4 +@5934 = .data:0x802CA934; // type:object size:0xE scope:local align:4 data:string +@5935 = .data:0x802CA944; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802CA960; // type:object size:0x54 scope:global align:4 +@5936 = .data:0x802CA9B4; // type:object size:0xE scope:local align:4 data:string +@5937 = .data:0x802CA9C4; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802CA9E0; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802CAA34; // type:object size:0xC scope:local align:4 data:string +@5949 = .data:0x802CAA6C; // type:object size:0xF scope:local align:4 data:string +@5950 = .data:0x802CAA7C; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802CAA98; // type:object size:0x54 scope:global align:4 +@5951 = .data:0x802CAAEC; // type:object size:0x11 scope:local align:4 data:string +@5952 = .data:0x802CAB00; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802CAB1C; // type:object size:0x54 scope:global align:4 +@5954 = .data:0x802CAB70; // type:object size:0x12 scope:local align:4 data:string +@5955 = .data:0x802CAB84; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802CABA0; // type:object size:0x54 scope:global align:4 +@5957 = .data:0x802CABF4; // type:object size:0x10 scope:local align:4 data:string +@5958 = .data:0x802CAC04; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802CAC20; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802CAC74; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802CACC8; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802CAD18; // type:object size:0x38 scope:weak align:4 +@5960 = .data:0x802CAD50; // type:object size:0x11 scope:local align:4 data:string +@5962 = .data:0x802CAD64; // type:object size:0x13 scope:local align:4 data:string +@5961 = .data:0x802CAD78; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802CAD84; // type:object size:0x18 scope:global align:4 +@6008 = .data:0x802CAD9C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802CADC8; // type:label scope:local +@1884 = .data:0x802CADC8; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802CADDC; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802CADE8; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802CADF8; // type:object size:0xC scope:local align:4 data:string +@2347 = .data:0x802CAE04; // type:object size:0xB scope:local align:4 data:string +@2750 = .data:0x802CAE10; // type:object size:0x2C scope:local align:4 +@2762 = .data:0x802CAE3C; // type:object size:0x14 scope:local align:4 data:string +@2764 = .data:0x802CAE50; // type:object size:0xF scope:local align:4 data:string +@2765 = .data:0x802CAE60; // type:object size:0xD scope:local align:4 data:string +@2766 = .data:0x802CAE70; // type:object size:0xC scope:local align:4 +@2767 = .data:0x802CAE7C; // type:object size:0xA scope:local align:4 data:string +@2768 = .data:0x802CAE88; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802CAE9C; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802CAEB8; // type:object size:0x54 scope:global align:4 +@2770 = .data:0x802CAF0C; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802CAF30; // type:object size:0x18 scope:weak align:4 +@2771 = .data:0x802CB024; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802CB044; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802CB064; // type:object size:0x1C scope:local align:4 data:string +@2775 = .data:0x802CB080; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802CB08C; // type:object size:0x1F scope:local align:4 data:string +@2777 = .data:0x802CB0AC; // type:object size:0x14 scope:local align:4 +@2772 = .data:0x802CB0C0; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802CB0DC; // type:object size:0x50 scope:global align:4 +@2778 = .data:0x802CB12C; // type:object size:0x1F scope:local align:4 data:string +@2779 = .data:0x802CB14C; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802CB168; // type:object size:0x50 scope:global align:4 +@2780 = .data:0x802CB1B8; // type:object size:0x22 scope:local align:4 data:string +@2781 = .data:0x802CB1DC; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802CB1F8; // type:object size:0x50 scope:global align:4 +@2782 = .data:0x802CB248; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802CB268; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802CB284; // type:object size:0x50 scope:global align:4 +@2784 = .data:0x802CB2D4; // type:object size:0x1D scope:local align:4 data:string +@2785 = .data:0x802CB2F4; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802CB310; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802CB360; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802CB3B0; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802CB400; // type:object size:0x38 scope:weak align:4 +@2786 = .data:0x802CB438; // type:object size:0x26 scope:local align:4 data:string +@2787 = .data:0x802CB460; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802CB46C; // type:object size:0x18 scope:global align:4 +@2845 = .data:0x802CB484; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802CB4B0; // type:label scope:local +@2086 = .data:0x802CB4B0; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802CB4C4; // type:object size:0x10 scope:local align:4 data:string +@2599 = .data:0x802CB4D4; // type:object size:0x4C scope:local align:4 +@3485 = .data:0x802CB520; // type:object size:0x9 scope:local align:4 data:string +@3486 = .data:0x802CB52C; // type:object size:0xA scope:local align:4 data:string +@3487 = .data:0x802CB538; // type:object size:0x9 scope:local align:4 data:string +@3489 = .data:0x802CB544; // type:object size:0xB scope:local align:4 data:string +@3491 = .data:0x802CB550; // type:object size:0xE scope:local align:4 data:string +@3492 = .data:0x802CB560; // type:object size:0x9 scope:local align:4 data:string +@3493 = .data:0x802CB56C; // type:object size:0xB scope:local align:4 data:string +@3494 = .data:0x802CB578; // type:object size:0xD scope:local align:4 data:string +@3504 = .data:0x802CB588; // type:object size:0x11 scope:local align:4 data:string +@3759 = .data:0x802CB59C; // type:object size:0x9 scope:local align:4 data:string +@3762 = .data:0x802CB5A8; // type:object size:0x13 scope:local align:4 +@3763 = .data:0x802CB5BC; // type:object size:0x17 scope:local align:4 +@3764 = .data:0x802CB5D4; // type:object size:0x13 scope:local align:4 data:string +@3765 = .data:0x802CB5E8; // type:object size:0xC scope:local align:4 data:string +@3766 = .data:0x802CB5F4; // type:object size:0x9 scope:local align:4 data:string +@3768 = .data:0x802CB600; // type:object size:0xC scope:local align:4 data:string +@3771 = .data:0x802CB60C; // type:object size:0xA scope:local align:4 data:string +@3773 = .data:0x802CB618; // type:object size:0x16 scope:local align:4 +@3775 = .data:0x802CB630; // type:object size:0x13 scope:local align:4 +@3777 = .data:0x802CB644; // type:object size:0x14 scope:local align:4 +@3778 = .data:0x802CB658; // type:object size:0x15 scope:local align:4 +@3780 = .data:0x802CB670; // type:object size:0x14 scope:local align:4 +@3785 = .data:0x802CB684; // type:object size:0xA scope:local align:4 data:string +@3966 = .data:0x802CB690; // type:object size:0x9 scope:local align:4 data:string +@4041 = .data:0x802CB69C; // type:object size:0xA scope:local align:4 data:string +@4042 = .data:0x802CB6A8; // type:object size:0xC scope:local align:4 data:string +@4139 = .data:0x802CB6B4; // type:object size:0x2C scope:local align:4 data:string +@4142 = .data:0x802CB6E0; // type:object size:0xA scope:local align:4 data:string +@4143 = .data:0x802CB6EC; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802CB6F8; // type:object size:0xA scope:local align:4 data:string +@4145 = .data:0x802CB704; // type:object size:0xA scope:local align:4 data:string +@4146 = .data:0x802CB710; // type:object size:0xC scope:local align:4 data:string +@4147 = .data:0x802CB71C; // type:object size:0xA scope:local align:4 data:string +@4148 = .data:0x802CB728; // type:object size:0xC scope:local align:4 data:string +@4149 = .data:0x802CB734; // type:object size:0x9 scope:local align:4 data:string +triNames$4141 = .data:0x802CB740; // type:object size:0x28 scope:local align:4 +@4371 = .data:0x802CB768; // type:object size:0x10 scope:local align:4 data:string +@4374 = .data:0x802CB778; // type:object size:0x9 scope:local align:4 data:string +@4375 = .data:0x802CB784; // type:object size:0xC scope:local align:4 +@4377 = .data:0x802CB790; // type:object size:0x14 scope:local align:4 +@4372 = .data:0x802CB7A4; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802CB7C0; // type:object size:0x30 scope:global align:4 +@4385 = .data:0x802CB80C; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802CB848; // type:label scope:local +@1158 = .data:0x802CB848; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802CB858; // type:object size:0x9 scope:local align:4 data:string +@1617 = .data:0x802CB864; // type:object size:0x10 scope:local align:4 data:string +@1625 = .data:0x802CB874; // type:object size:0xE scope:local align:4 data:string +@1633 = .data:0x802CB884; // type:object size:0xE scope:local align:4 data:string +@1897 = .data:0x802CB894; // type:object size:0xB scope:local align:4 data:string +@1899 = .data:0x802CB8A0; // type:object size:0x23 scope:local align:4 data:string +@1900 = .data:0x802CB8C4; // type:object size:0x3D scope:local align:4 data:string +@1901 = .data:0x802CB904; // type:object size:0x29 scope:local align:4 data:string +@1903 = .data:0x802CB930; // type:object size:0x1C scope:local align:4 +@1898 = .data:0x802CB94C; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802CB970; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802CB9AC; // type:object size:0xD scope:local align:4 data:string +@1907 = .data:0x802CB9BC; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802CB9E0; // type:object size:0x3C scope:global align:4 +@1909 = .data:0x802CBA1C; // type:object size:0x10 scope:local align:4 data:string +@1910 = .data:0x802CBA2C; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802CBA50; // type:object size:0x3C scope:global align:4 +@1911 = .data:0x802CBA8C; // type:object size:0x11 scope:local align:4 data:string +@1912 = .data:0x802CBAA0; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802CBAC4; // type:object size:0x3C scope:weak align:4 +@1998 = .data:0x802CBB00; // type:object size:0xE scope:local align:4 data:string +@2000 = .data:0x802CBB10; // type:object size:0x10 scope:local align:4 data:string +@2001 = .data:0x802CBB20; // type:object size:0x24 scope:local align:4 +@1999 = .data:0x802CBB44; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802CBB70; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802CBBAC; // type:object size:0x3C scope:weak align:4 +@2104 = .data:0x802CBBE8; // type:object size:0x10 scope:local align:4 data:string +@2105 = .data:0x802CBBF8; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802CBC1C; // type:object size:0x3C scope:weak align:4 +@2111 = .data:0x802CBC58; // type:object size:0xB scope:local align:4 data:string +@2112 = .data:0x802CBC64; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802CBC88; // type:object size:0x3C scope:weak align:4 +@2118 = .data:0x802CBCC4; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802CBCD4; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802CBCF8; // type:object size:0x3C scope:weak align:4 +@2128 = .data:0x802CBD34; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802CBD58; // type:object size:0x3C scope:weak align:4 +@2153 = .data:0x802CBD94; // type:object size:0x10 scope:local align:4 data:string +@2154 = .data:0x802CBDA4; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802CBDC8; // type:object size:0x3C scope:weak align:4 +@2160 = .data:0x802CBE04; // type:object size:0x10 scope:local align:4 data:string +@2161 = .data:0x802CBE14; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802CBE38; // type:object size:0x3C scope:weak align:4 +@2167 = .data:0x802CBE74; // type:object size:0x11 scope:local align:4 data:string +@2168 = .data:0x802CBE88; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802CBEAC; // type:object size:0x3C scope:weak align:4 +@2174 = .data:0x802CBEE8; // type:object size:0x10 scope:local align:4 data:string +@2175 = .data:0x802CBEF8; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802CBF1C; // type:object size:0x3C scope:weak align:4 +@2181 = .data:0x802CBF58; // type:object size:0xC scope:local align:4 data:string +@2182 = .data:0x802CBF64; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802CBF88; // type:object size:0x3C scope:weak align:4 +@2300 = .data:0x802CBFC4; // type:object size:0xB scope:local align:4 data:string +@2301 = .data:0x802CBFD0; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802CBFF4; // type:object size:0x3C scope:weak align:4 +@2321 = .data:0x802CC030; // type:object size:0xC scope:local align:4 data:string +@2322 = .data:0x802CC03C; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802CC060; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802CC100; // type:label scope:local +@390 = .data:0x802CC100; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802CC110; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802CC11C; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802CC12C; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802CC138; // type:object size:0xC scope:local align:4 +@446 = .data:0x802CC144; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802CC158; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802CC164; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802CC180; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802CC1A4; // type:object size:0x30 scope:global align:4 +@655 = .data:0x802CC1F0; // type:object size:0xC scope:local align:4 data:string +@736 = .data:0x802CC1FC; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x802CC208; // type:label scope:local +@1462 = .data:0x802CC208; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802CC214; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802CC220; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802CC22C; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802CC238; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802CC248; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802CC254; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802CC260; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802CC274; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802CC288; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802CC298; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802CC2A4; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802CC2B0; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802CC2C4; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802CC2D0; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802CC2DC; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802CC300; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802CC310; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802CC33C; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802CC370; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802CC3F8; // type:label scope:local +@734 = .data:0x802CC3F8; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802CC408; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802CC414; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802CC428; // type:object size:0xC scope:local align:4 +@793 = .data:0x802CC434; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802CC440; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802CC454; // type:object size:0x13 scope:local align:4 +@1048 = .data:0x802CC468; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802CC47C; // type:object size:0xB scope:local align:4 data:string +@1052 = .data:0x802CC488; // type:object size:0xC scope:local align:4 +@1053 = .data:0x802CC494; // type:object size:0xA scope:local align:4 data:string +@1054 = .data:0x802CC4A0; // type:object size:0x14 scope:local align:4 +@1049 = .data:0x802CC4B4; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802CC4D0; // type:object size:0x38 scope:global align:4 +@1061 = .data:0x802CC508; // type:object size:0xC scope:local align:4 data:string +@1063 = .data:0x802CC514; // type:object size:0x9 scope:local align:4 data:string +@1062 = .data:0x802CC520; // type:object size:0xC scope:local align:4 +@1064 = .data:0x802CC540; // type:object size:0xA scope:local align:4 data:string +@1065 = .data:0x802CC54C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802CC570; // type:label scope:local +@657 = .data:0x802CC570; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802CC580; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802CC58C; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802CC5A0; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802CC5B8; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802CC5CC; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802CC5E0; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802CC5F0; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802CC5FC; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802CC608; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802CC614; // type:object size:0xC scope:local align:4 +@905 = .data:0x802CC620; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802CC634; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802CC644; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802CC660; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802CC670; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802CC694; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802CC6A0; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802CC6CC; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802CC700; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802CC74C; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802CC758; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802CC78C; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802CC834; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802CC880; // type:label scope:local +@661 = .data:0x802CC880; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802CC898; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802CC8AC; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802CC8B8; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802CC8C4; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802CC8D0; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802CC8DC; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802CC8E8; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802CC8F4; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802CC900; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802CC90C; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802CC918; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802CC924; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802CC930; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802CC93C; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802CC948; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802CC954; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802CC960; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802CC96C; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802CC978; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802CC984; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802CCAEC; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802CCB00; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802CCB0C; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802CCB1C; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802CCB28; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802CCB3C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CCB58; // type:label scope:local +@853 = .data:0x802CCB58; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802CCB68; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802CCB74; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802CCB80; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802CCB90; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802CCBA0; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802CCBB0; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802CCBBC; // type:object size:0xC scope:local align:4 +@887 = .data:0x802CCBC8; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802CCBD4; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802CCBE8; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802CCC04; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CCC40; // type:label scope:local +@1114 = .data:0x802CCC40; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802CCC50; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802CCC5C; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802CCC68; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802CCC74; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802CCC80; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802CCC8C; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802CCC98; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802CCCA4; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802CCCD4; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802CCCEC; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802CCD00; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802CCD0C; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802CCD1C; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802CCD2C; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802CCD3C; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802CCD48; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802CCD54; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802CCD60; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802CCD74; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802CCD90; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802CCDC8; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802CCDD4; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802CCDE0; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802CCDF4; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802CCE00; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802CCE0C; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802CCE30; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802CCE40; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802CCE6C; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802CCEA0; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802CCF1C; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802CCF28; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802CCF34; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802CCF54; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802CCF70; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802CCF84; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802CCF98; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802CCFA8; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802CCFB8; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802CCFF4; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802CD008; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802CD014; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802CD020; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802CD02C; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802CD040; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802CD04C; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802CD058; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802CD070; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802CD080; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802CD094; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802CD0B0; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802CD100; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802CD11C; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802CD128; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802CD134; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802CD148; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802CD160; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802CD174; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802CD180; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802CD190; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802CD19C; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802CD1B0; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802CD1BC; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802CD1E0; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802CD20C; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802CD368; // type:label scope:local +@661 = .data:0x802CD368; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802CD380; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802CD394; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802CD3B0; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802CD3C4; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802CD3D0; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802CD3E0; // type:object size:0xC scope:local align:4 +@713 = .data:0x802CD3EC; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802CD400; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CD420; // type:label scope:local +@1206 = .data:0x802CD420; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802CD42C; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802CD438; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802CD444; // type:object size:0x9 scope:local align:4 +@1265 = .data:0x802CD450; // type:object size:0x26 scope:local align:4 data:string +@1266 = .data:0x802CD478; // type:object size:0x19 scope:local align:4 data:string +@1290 = .data:0x802CD494; // type:object size:0xE scope:local align:4 data:string +@1292 = .data:0x802CD4A4; // type:object size:0xB scope:local align:4 data:string +@1294 = .data:0x802CD4B0; // type:object size:0xC scope:local align:4 +@1295 = .data:0x802CD4BC; // type:object size:0xA scope:local align:4 data:string +@1296 = .data:0x802CD4C8; // type:object size:0x14 scope:local align:4 +@1291 = .data:0x802CD4DC; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802CD4F8; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CD530; // type:label scope:local +@445 = .data:0x802CD530; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CD544; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802CD554; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802CD568; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802CD574; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802CD580; // type:object size:0xC scope:global align:4 +@667 = .data:0x802CD58C; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802CD5A4; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802CD5B8; // type:object size:0xC scope:local align:4 +@671 = .data:0x802CD5C4; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802CD5D4; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802CD5E8; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802CD604; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802CD614; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802CD624; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802CD634; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CD640; // type:label scope:local +@445 = .data:0x802CD640; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CD654; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802CD664; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802CD670; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802CD67C; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802CD68C; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802CD698; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802CD6A4; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802CD6B4; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802CD6C0; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802CD6CC; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802CD6DC; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802CD6E8; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802CD6F4; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802CD700; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802CD70C; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802CD718; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802CD724; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802CD730; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802CD740; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802CD750; // type:label scope:local +@441 = .data:0x802CD750; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802CD760; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802CD76C; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802CDF70; // type:label scope:local +@410 = .data:0x802CDF70; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802CDF80; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802CDF8C; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802CDF9C; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802CDFAC; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802CDFEC; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802CE00C; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802CE01C; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CE060; // type:label scope:local +@657 = .data:0x802CE060; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802CE074; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802CE084; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802CE090; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802CE09C; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802CE0A8; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802CE0B4; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802CE0C0; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802CE0CC; // type:object size:0x18 scope:global align:4 +@774 = .data:0x802CE0E4; // type:object size:0x2A scope:local align:4 data:string +@775 = .data:0x802CE110; // type:object size:0x2B scope:local align:4 data:string +@865 = .data:0x802CE13C; // type:object size:0x24 scope:local align:4 data:string +@867 = .data:0x802CE160; // type:object size:0xD scope:local align:4 data:string +@869 = .data:0x802CE170; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802CE17C; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802CE188; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE1A8; // type:label scope:local +@1106 = .data:0x802CE1A8; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802CE1C0; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802CE1D4; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802CE1E4; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802CE1F4; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802CE230; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802CE244; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802CE250; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802CE260; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802CE26C; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802CE280; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CE2A0; // type:label scope:local +@1783 = .data:0x802CE2A0; // type:object size:0x14 scope:local align:4 data:string +@1793 = .data:0x802CE2B4; // type:object size:0x10 scope:local align:4 data:string +@1931 = .data:0x802CE2C4; // type:object size:0xD scope:local align:4 data:string +@1932 = .data:0x802CE2D4; // type:object size:0xD scope:local align:4 data:string +@1933 = .data:0x802CE2E4; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802CE2F8; // type:object size:0x1A scope:local align:4 data:string +@1940 = .data:0x802CE314; // type:object size:0xD scope:local align:4 data:string +@2307 = .data:0x802CE324; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802CE338; // type:object size:0xC scope:local align:4 data:string +@2309 = .data:0x802CE344; // type:object size:0xD scope:local align:4 data:string +@2310 = .data:0x802CE354; // type:object size:0x11 scope:local align:4 data:string +@2323 = .data:0x802CE368; // type:object size:0x12 scope:local align:4 data:string +@2324 = .data:0x802CE37C; // type:object size:0x10 scope:local align:4 data:string +@2327 = .data:0x802CE38C; // type:object size:0x9 scope:local align:4 data:string +@2328 = .data:0x802CE398; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802CE3A4; // type:object size:0x14 scope:local align:4 +@2332 = .data:0x802CE3B8; // type:object size:0x1C scope:local align:4 +@2325 = .data:0x802CE3D4; // type:object size:0x24 scope:local align:4 +__vt__15PaniTestSection = .data:0x802CE3F8; // type:object size:0x34 scope:global align:4 +@2341 = .data:0x802CE42C; // type:object size:0x14 scope:local align:4 data:string +@2340 = .data:0x802CE440; // type:object size:0x24 scope:local align:4 +__vt__12PaniTestNode = .data:0x802CE464; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802CE4D0; // type:label scope:local +@410 = .data:0x802CE4D0; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802CE4E4; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802CE4F4; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802CE508; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802CE51C; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802CE52C; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802CE544; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802CE550; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CE564; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802CE578; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802CE588; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802CE59C; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802CE5A8; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CE5BC; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CE5D0; // type:label scope:local +@1481 = .data:0x802CE5D0; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802CE5E0; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802CE5EC; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802CE5FC; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802CE628; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802CE634; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802CE640; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802CE64C; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802CE660; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CE6A0; // type:label scope:local +@1122 = .data:0x802CE6A0; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802CE6B8; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802CE6CC; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802CE6E0; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802CE6EC; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802CE6F8; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802CE70C; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802CE728; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CE778; // type:label scope:local +@717 = .data:0x802CE778; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CE790; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802CE7A4; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802CE7BC; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802CE7C8; // type:object size:0xC scope:local align:4 +@855 = .data:0x802CE7D4; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802CE7E8; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802CE824; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802CE83C; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802CE850; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802CE864; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802CE8A0; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802CE8B0; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802CE8C4; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802CE8D8; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802CE8F4; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802CE930; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802CE944; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802CE960; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802CE99C; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802CE9B4; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802CE9C4; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802CE9D8; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802CE9F4; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CEA30; // type:label scope:local +@446 = .data:0x802CEA30; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802CEA4C; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802CEA64; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802CEA74; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802CEA88; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802CEA98; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802CEAA8; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802CEAC4; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802CEAE0; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802CEAF0; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802CEB04; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802CEB18; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802CEB28; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802CEB44; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802CEB64; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802CEB74; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802CEB88; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802CEB98; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802CEBA4; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802CEBC0; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802CEBDC; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802CEBEC; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802CEC00; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802CEC10; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802CEC20; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802CEC3C; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802CEC58; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802CEC68; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802CEC80; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802CEC94; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802CECA4; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802CECC4; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802CECE4; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802CECF8; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802CED0C; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802CED1C; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802CED2C; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802CED48; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802CED64; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802CED74; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802CED8C; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802CEDA4; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802CEDB8; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802CEDD8; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802CEDFC; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802CEE10; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802CEE20; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802CEE34; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802CEE44; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802CEE58; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802CEE70; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802CEE84; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802CEE9C; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802CEEB8; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802CEECC; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802CEEE0; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802CEEF8; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802CEF0C; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802CEF28; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802CEF40; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802CEF4C; // type:object size:0xC scope:local align:4 +@867 = .data:0x802CEF58; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802CEF6C; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802CEF88; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CEFD8; // type:label scope:local +@698 = .data:0x802CEFD8; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802CEFE4; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802CEFF8; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802CF004; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802CF018; // type:object size:0xC scope:local align:4 +@853 = .data:0x802CF024; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802CF038; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802CF048; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802CF058; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802CF070; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802CF07C; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802CF08C; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802CF0A0; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802CF0B0; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802CF0BC; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802CF0CC; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802CF0DC; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802CF0F4; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802CF100; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802CF110; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802CF128; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802CF134; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802CF144; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802CF154; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802CF164; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802CF170; // type:object size:0xC scope:local align:4 +@922 = .data:0x802CF17C; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802CF190; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802CF1CC; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802CF1E0; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802CF1F4; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802CF230; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802CF26C; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802CF27C; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CF290; // type:label scope:local +@698 = .data:0x802CF290; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802CF2A4; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802CF2B4; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802CF2D0; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802CF2E0; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802CF2F8; // type:object size:0xC scope:local align:4 +@762 = .data:0x802CF304; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802CF318; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802CF32C; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802CF344; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802CF358; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802CF36C; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802CF380; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802CF38C; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802CF3A0; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802CF3B8; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802CF3C4; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802CF3D8; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CF3F0; // type:label scope:local +@717 = .data:0x802CF3F0; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CF408; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802CF41C; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802CF430; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802CF43C; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802CF448; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802CF45C; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802CF498; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802CF4B0; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802CF4C0; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802CF4D4; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802CF510; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802CF528; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802CF53C; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802CF594; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802CF5AC; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802CF5C0; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802CF5D4; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802CF5F0; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802CF62C; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802CF644; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802CF658; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802CF694; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802CF6AC; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802CF6C0; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802CF6FC; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802CF718; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802CF734; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802CF770; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802CF784; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802CF798; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802CF7D4; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802CF7F0; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802CF804; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802CF840; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802CF854; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802CF860; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802CF88C; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802CF8A0; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802CF8B8; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802CF8CC; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802CF8E8; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802CF924; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802CF960; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802CF970; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802CF984; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CF9C0; // type:label scope:local +@1231 = .data:0x802CF9C0; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802CF9CC; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802CF9DC; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802CF9E8; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802CFA10; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802CFA1C; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802CFA34; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802CFA44; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802CFA50; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802CFA5C; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802CFA78; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CFA98; // type:label scope:local +@1686 = .data:0x802CFA98; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802CFAB0; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802CFAC4; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802CFADC; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802CFAE8; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802CFAF8; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802CFB04; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802CFB18; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802CFB34; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802CFB48; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802CFB5C; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802CFB78; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802CFB90; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802CFB9C; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802CFBB8; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802CFBC8; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802CFBD4; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802CFBF0; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802CFC04; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802CFC10; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802CFC2C; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802CFC64; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802CFC78; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802CFC84; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802CFC94; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802CFCA0; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802CFCB4; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802CFCC0; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802CFCD4; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802CFCE8; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802CFCF4; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802CFD14; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802CFD20; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802CFD3C; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802CFD54; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802CFD60; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802CFD7C; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802CFD94; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802CFDA0; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802CFDBC; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802CFDD4; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802CFDF0; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802CFDFC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CFE18; // type:label scope:local +@1211 = .data:0x802CFE18; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802CFE2C; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802CFE3C; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802CFE58; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802CFE64; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802CFE70; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802CFE8C; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802CFEAC; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802CFEB8; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802CFED4; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802CFEE8; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802CFEF4; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802CFF10; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802CFF24; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802CFF30; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802CFF4C; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802CFF60; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802CFF6C; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802CFF88; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802CFFA0; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802CFFAC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CFFC8; // type:label scope:local +@1730 = .data:0x802CFFC8; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802CFFD8; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802CFFE4; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802CFFF0; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802D0000; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802D0010; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802D0020; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802D003C; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802D0048; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802D005C; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802D0068; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802D0080; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802D0094; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802D00B0; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802D00D0; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802D00E8; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802D00FC; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802D0108; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802D011C; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802D0138; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802D014C; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802D0158; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802D0168; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802D0174; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802D0194; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802D01A4; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802D01B8; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802D01DC; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802D01F0; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802D01FC; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802D0218; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802D0228; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802D0234; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802D0250; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802D0260; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802D026C; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802D02A4; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802D02B8; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802D02C8; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802D02D4; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802D02E0; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802D02F4; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802D031C; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802D0334; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802D0340; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802D034C; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802D0360; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802D0370; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802D038C; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802D03B0; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802D03E0; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802D03FC; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802D0420; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802D0450; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802D0464; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802D0488; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D04B8; // type:label scope:local +@1729 = .data:0x802D04B8; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802D04C8; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802D04D4; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802D04E0; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802D04F0; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802D0500; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802D051C; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802D0530; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802D0550; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802D056C; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802D0578; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802D058C; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802D05A0; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802D05B4; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802D05C8; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802D05D8; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802D05E4; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802D05F0; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802D0604; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802D062C; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802D0640; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802D064C; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802D0658; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802D066C; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802D067C; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802D0698; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802D06BC; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802D06EC; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802D0708; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802D0714; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802D0728; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802D0734; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802D074C; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802D0760; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802D077C; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802D079C; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802D07B4; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802D07C0; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802D07DC; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802D07F4; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802D0800; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802D081C; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802D0838; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802D0844; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802D0860; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802D088C; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802D0898; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802D08B4; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802D08DC; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802D08E8; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802D0904; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802D0920; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802D092C; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802D0948; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802D0968; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802D0974; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802D0990; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802D09B0; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802D09C0; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802D09CC; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802D09E8; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802D09FC; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802D0A18; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802D0A38; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802D0A70; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802D0A90; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802D0A9C; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802D0AB8; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802D0ACC; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802D0AD8; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802D0AF4; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802D0B14; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802D0B20; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802D0B3C; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802D0B58; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802D0B64; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802D0B80; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802D0B9C; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802D0BA8; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802D0BC4; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802D0BDC; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802D0BE8; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802D0C04; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802D0C1C; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802D0C28; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802D0C44; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802D0C60; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802D0C6C; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802D0C88; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802D0CAC; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802D0CB8; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802D0CD4; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802D0CF0; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802D0CFC; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802D0D18; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802D0D44; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802D0D54; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802D0D60; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802D0D74; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802D0D90; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802D0DB8; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802D0DC4; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802D0DE0; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802D0DF4; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802D0E00; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802D0E10; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802D0E1C; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802D0E3C; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802D0E50; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802D0E88; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802D0EA4; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802D0EB0; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802D0ECC; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802D0EEC; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802D0EF8; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802D0F14; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802D0F30; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802D0F3C; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802D0F58; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802D0F78; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802D0F8C; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802D0F98; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802D0FAC; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802D0FC0; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802D0FE8; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802D0FFC; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802D1008; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802D1040; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802D1054; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802D1078; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D10A8; // type:label scope:local +@1111 = .data:0x802D10A8; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802D10C0; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802D10D4; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802D10F0; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802D10FC; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802D1118; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802D1124; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802D1138; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802D1154; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D116C; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802D1180; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802D119C; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D11B4; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802D11C8; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802D11E4; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802D1200; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D1218; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802D1224; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802D1240; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802D125C; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802D1268; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802D1284; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802D1294; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802D12A0; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D12C0; // type:label scope:local +@1716 = .data:0x802D12C0; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802D12D8; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802D12EC; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802D1304; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802D1310; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802D1324; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802D1330; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802D1344; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802D1380; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802D13A4; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802D13B0; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802D13CC; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802D13F0; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802D13FC; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802D1418; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802D1428; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802D1434; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D1450; // type:label scope:local +@1728 = .data:0x802D1450; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802D1460; // type:object size:0xA scope:local align:4 data:string +@1951 = .data:0x802D146C; // type:object size:0x1A scope:local align:4 data:string +@2003 = .data:0x802D1488; // type:object size:0xD scope:local align:4 data:string +@2152 = .data:0x802D1498; // type:object size:0x18 scope:local align:4 data:string +@2154 = .data:0x802D14B0; // type:object size:0xA scope:local align:4 data:string +@2153 = .data:0x802D14BC; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802D14C8; // type:object size:0x1C scope:global align:4 +@2161 = .data:0x802D14E4; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x802D14F8; // type:object size:0xD scope:local align:4 data:string +@2164 = .data:0x802D1508; // type:object size:0xC scope:local align:4 data:string +@2165 = .data:0x802D1514; // type:object size:0xC scope:local align:4 +@2162 = .data:0x802D1520; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802D1534; // type:object size:0x28 scope:global align:4 +@2166 = .data:0x802D155C; // type:object size:0x14 scope:local align:4 data:string +@2169 = .data:0x802D1570; // type:object size:0x9 scope:local align:4 data:string +@2170 = .data:0x802D157C; // type:object size:0xC scope:local align:4 +@2172 = .data:0x802D1588; // type:object size:0x14 scope:local align:4 +@2173 = .data:0x802D159C; // type:object size:0xF scope:local align:4 data:string +@2174 = .data:0x802D15AC; // type:object size:0x1C scope:local align:4 +@2167 = .data:0x802D15C8; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802D15EC; // type:object size:0x30 scope:weak align:4 +@2181 = .data:0x802D161C; // type:object size:0x17 scope:local align:4 data:string +@2182 = .data:0x802D1634; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802D1640; // type:object size:0x1C scope:global align:4 +@2183 = .data:0x802D165C; // type:object size:0x1A scope:local align:4 data:string +@2184 = .data:0x802D1678; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802D1684; // type:object size:0x1C scope:global align:4 +@2186 = .data:0x802D16A0; // type:object size:0x12 scope:local align:4 data:string +@2187 = .data:0x802D16B4; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802D16C8; // type:object size:0x28 scope:global align:4 +@2189 = .data:0x802D170C; // type:object size:0x14 scope:local align:4 data:string +@2190 = .data:0x802D1720; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802D1744; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D1778; // type:label scope:local +@1669 = .data:0x802D1778; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802D1790; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802D17A4; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802D17C0; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802D17CC; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802D17D8; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802D17F4; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802D1810; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802D181C; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802D1838; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802D184C; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802D1858; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802D1868; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802D1874; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802D1894; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802D18B0; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802D18BC; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802D18F0; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802D1910; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802D191C; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802D1938; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802D1954; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802D1960; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802D197C; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802D1998; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802D19A4; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802D19C0; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802D19D4; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802D19E0; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802D19FC; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802D1A14; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802D1A20; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802D1A3C; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802D1A54; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802D1A60; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802D1A7C; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802D1A94; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802D1AA0; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D1AC0; // type:label scope:local +@1793 = .data:0x802D1AC0; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802D1AD0; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802D1ADC; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802D1AF8; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802D1B0C; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802D1B20; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802D1B34; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802D1B44; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802D1B58; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802D1B70; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802D1B84; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802D1B94; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802D1BA4; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802D1BB8; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802D1BD4; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802D1BF0; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802D1BFC; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802D1C10; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802D1C1C; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802D1C34; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802D1C48; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802D1C64; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802D1C84; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802D1CA8; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802D1CB4; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802D1CD0; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802D1CE4; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802D1CF0; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802D1D00; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802D1D0C; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802D1D44; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802D1D7C; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802D1DA0; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802D1DAC; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802D1DC8; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802D1DE8; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802D1DF4; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802D1E10; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802D1E2C; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802D1E38; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802D1E54; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802D1E68; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802D1E78; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802D1E84; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802D1E90; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802D1EA4; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802D1ECC; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802D1EDC; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802D1EE8; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802D1F04; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802D1F14; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802D1F58; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802D1F6C; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802D1F78; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802D1F84; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802D1F98; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802D1FA8; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802D1FC4; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802D1FE8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2018; // type:label scope:local +@1211 = .data:0x802D2018; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802D2030; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802D2044; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802D205C; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802D2068; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802D2074; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802D2090; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802D20A8; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802D20B4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D20D0; // type:label scope:local +@1796 = .data:0x802D20D0; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802D20E0; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802D20EC; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802D20FC; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802D210C; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802D2124; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802D2140; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802D214C; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802D215C; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802D2178; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802D2194; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802D21A8; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802D21C8; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802D21DC; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802D21FC; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802D2208; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802D2220; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802D223C; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802D2248; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802D2254; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802D2270; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802D2288; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802D2294; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802D22B0; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802D22CC; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802D22D8; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802D22F4; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802D230C; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802D2318; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802D2334; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802D234C; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802D2358; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802D2374; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802D238C; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802D2398; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802D23B4; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802D23D0; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802D23E0; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802D23EC; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802D2400; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802D241C; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802D2438; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802D244C; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802D2468; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802D247C; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802D248C; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802D2498; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802D24A4; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802D24B8; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802D24E0; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802D24F8; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802D2504; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802D2510; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802D2524; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802D2534; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802D2550; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802D2574; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802D25A4; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802D25C4; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802D25D0; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802D25EC; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802D2608; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802D2614; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802D2630; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802D2644; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802D2658; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802D269C; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802D26B4; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802D26D8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2708; // type:label scope:local +@1111 = .data:0x802D2708; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802D2720; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802D2734; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802D2758; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802D2764; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802D2770; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802D278C; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802D27A4; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802D27B0; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802D27CC; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802D27E8; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802D27F4; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802D2810; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802D2828; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802D2834; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802D2850; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802D286C; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802D2878; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802D2894; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802D28AC; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802D28BC; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802D28C8; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802D28DC; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802D28F8; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802D290C; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802D2918; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802D2934; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802D294C; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802D2958; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802D2974; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802D298C; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802D29A0; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802D29BC; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802D29D8; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802D29EC; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802D2A0C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D2A28; // type:label scope:local +@1669 = .data:0x802D2A28; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802D2A3C; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802D2A4C; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802D2A70; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802D2A7C; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802D2A88; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802D2AA4; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802D2AB8; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802D2AC4; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802D2AE0; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802D2B04; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802D2B10; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802D2B2C; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802D2B44; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802D2B54; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802D2B60; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802D2B7C; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802D2B90; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802D2BAC; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802D2BCC; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802D2BF4; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802D2C10; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802D2C30; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802D2C44; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802D2C50; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802D2C6C; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802D2C90; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802D2CAC; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802D2CCC; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802D2CE8; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802D2CF4; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802D2D10; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802D2D28; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802D2D44; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802D2D64; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802D2D7C; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802D2D98; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802D2DB8; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802D2DC8; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802D2DD4; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802D2DF8; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802D2E0C; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802D2E28; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802D2E48; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802D2E5C; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802D2E68; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802D2E84; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802D2E98; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802D2EB4; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802D2ED4; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802D2EE8; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802D2F04; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802D2F24; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802D2F44; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802D2F60; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802D2F80; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802D2F94; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802D2FA0; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802D2FBC; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802D2FD8; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802D2FE4; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802D3000; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802D3018; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802D3024; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802D3040; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802D3058; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802D3064; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802D3080; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802D309C; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802D30A8; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802D30C4; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802D30D8; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802D30E4; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802D3100; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802D3114; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802D3120; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802D313C; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802D3154; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802D3160; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802D317C; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802D3198; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802D31A4; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802D31C0; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802D31DC; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802D31E8; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802D3204; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802D3228; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802D3234; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802D3250; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802D3270; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802D327C; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802D3298; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802D32B0; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802D32BC; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802D32D8; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802D32F0; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802D32FC; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802D3318; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802D332C; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802D3338; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802D3354; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802D3370; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802D337C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D3398; // type:label scope:local +@1736 = .data:0x802D3398; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802D33A8; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802D33B4; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802D33C8; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802D33DC; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802D33F4; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802D3410; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802D3428; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802D3444; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802D345C; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802D3478; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802D3490; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802D34AC; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802D34C4; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802D34E0; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802D34F0; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802D3500; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802D3524; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802D3530; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802D353C; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802D3558; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802D357C; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802D3588; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802D35A4; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802D35C0; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802D35CC; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802D35E8; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802D3600; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802D360C; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802D3628; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802D3640; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802D364C; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802D3668; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802D3684; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802D3690; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802D36AC; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802D36CC; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802D36D8; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802D36F4; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802D3718; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802D3724; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802D3740; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802D3760; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802D376C; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802D3788; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802D37A4; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802D37B0; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802D37CC; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802D37E8; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802D37F4; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802D3810; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802D3830; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802D383C; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802D3858; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802D3890; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802D38A4; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802D38B0; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802D38C0; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802D38CC; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802D38EC; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802D3900; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802D3920; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802D3938; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802D3944; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802D3960; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802D397C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802D3988; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802D39A4; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802D39C0; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802D39CC; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802D39E8; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802D3A00; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802D3A0C; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802D3A28; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802D3A40; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802D3A4C; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802D3A68; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802D3A88; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802D3A94; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802D3AB0; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802D3ACC; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802D3AD8; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802D3AF4; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802D3B0C; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802D3B18; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802D3B34; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802D3B50; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802D3B5C; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802D3B78; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802D3B98; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802D3BA8; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802D3BB4; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802D3BD0; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802D3BE4; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802D3C00; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802D3C20; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802D3C40; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802D3C54; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802D3C78; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802D3C98; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802D3CAC; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802D3CB8; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802D3CCC; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802D3CDC; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802D3CE8; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802D3CF4; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802D3D08; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802D3D30; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802D3D40; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802D3D68; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802D3D78; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802D3DBC; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802D3DD0; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802D3DDC; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802D3DE8; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802D3DFC; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802D3E0C; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802D3E28; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802D3E4C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D3E80; // type:label scope:local +@1794 = .data:0x802D3E80; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802D3E90; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802D3E9C; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802D3EB8; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802D3EC8; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802D3EDC; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802D3EF0; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802D3F0C; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802D3F20; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802D3F3C; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802D3F50; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802D3F64; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802D3F7C; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802D3F94; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802D3FB4; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802D3FD4; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802D3FF0; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802D3FFC; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802D4010; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802D401C; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802D4034; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802D4048; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802D4064; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802D4084; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802D40A4; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802D40B0; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802D40CC; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802D40E8; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802D40F4; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802D4110; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802D412C; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802D4138; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802D4154; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802D4168; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802D4174; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802D4184; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802D4190; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802D41B0; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802D41E8; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802D4204; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802D4210; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802D422C; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802D4248; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802D4254; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802D4270; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802D428C; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802D4298; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802D42B4; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802D42CC; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802D42D8; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802D42F4; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802D4310; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802D431C; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802D4338; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802D434C; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802D4384; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802D439C; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802D43A8; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802D43C4; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802D43E8; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802D43F4; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802D4410; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802D4424; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802D4434; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802D4440; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802D444C; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802D4460; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802D4488; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802D4498; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802D44DC; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802D44F4; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802D4500; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802D450C; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802D4520; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802D4530; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802D454C; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802D4570; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802D45A0; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802D45B8; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802D45DC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D4610; // type:label scope:local +@1765 = .data:0x802D4610; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802D461C; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802D4634; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802D4658; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802D4668; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802D4684; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802D4690; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802D469C; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802D46B8; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802D46D4; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802D46E0; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802D46FC; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802D4714; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802D4720; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802D473C; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802D4758; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802D4764; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802D4780; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802D4794; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802D47A0; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802D47BC; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802D47D4; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802D47E0; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802D47FC; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802D4814; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802D4824; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802D4830; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802D4844; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802D4858; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802D4874; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802D4890; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802D48A4; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802D48B4; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802D48C8; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802D48E4; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802D4900; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802D4914; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802D4928; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802D4944; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802D4958; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802D4964; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802D4974; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802D4980; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802D49A0; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802D49B4; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802D49EC; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802D49FC; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802D4A0C; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802D4A18; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802D4A24; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802D4A38; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802D4A7C; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802D4A90; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802D4A9C; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802D4AA8; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802D4ABC; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802D4ACC; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802D4AE8; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802D4B0C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D4B40; // type:label scope:local +@1680 = .data:0x802D4B40; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802D4B58; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802D4B6C; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802D4B80; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802D4B8C; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802D4B98; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802D4BB4; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802D4BC4; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802D4BD0; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802D4BEC; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802D4C00; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802D4C0C; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802D4C28; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802D4C40; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802D4C4C; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802D4C68; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802D4C7C; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802D4C88; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802D4CA4; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802D4CB8; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802D4CC4; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802D4CE0; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802D4CF4; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802D4D00; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802D4D10; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802D4D1C; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802D4D54; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802D4D74; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802D4D80; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802D4D9C; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802D4DBC; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802D4DC8; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802D4DE4; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802D4DF8; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802D4E08; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802D4E14; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802D4E28; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802D4E44; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802D4E70; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802D4E7C; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802D4E98; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802D4EB4; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802D4EC0; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802D4EDC; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802D4EEC; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802D4EF8; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802D4F14; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802D4F2C; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802D4F38; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802D4F54; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802D4F6C; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802D4F78; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802D4F94; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802D4FB0; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802D4FBC; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802D4FD8; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802D4FE8; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802D4FFC; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802D5018; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802D5034; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802D5040; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802D505C; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802D5070; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802D507C; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802D5098; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802D50AC; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802D50B8; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802D50D4; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802D50E4; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802D50F0; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802D510C; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802D5120; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802D512C; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802D5148; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802D515C; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802D5168; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802D5184; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802D5194; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802D51A0; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D51C0; // type:label scope:local +@1727 = .data:0x802D51C0; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802D51D0; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802D51DC; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802D51EC; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802D5200; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802D5218; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802D523C; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802D525C; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802D5270; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802D5294; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802D52A0; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802D52B4; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802D52C0; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802D52D8; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802D52EC; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802D5308; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802D5328; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802D5344; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802D5360; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802D5380; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802D5398; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802D53A4; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802D53C0; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802D53D8; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802D53E4; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802D5400; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802D5420; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802D542C; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802D5448; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802D545C; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802D5468; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802D5478; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802D5484; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802D54A4; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802D54DC; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802D54F8; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802D5508; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802D5514; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802D5528; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802D5544; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802D5558; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802D5590; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802D55A8; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802D55C4; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802D55D8; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802D55F4; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802D5614; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802D5634; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802D5640; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802D565C; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802D5670; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802D5680; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802D568C; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802D5698; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802D56AC; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802D56D4; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802D56E4; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802D5728; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802D5744; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802D5750; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802D575C; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802D5770; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802D5780; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802D579C; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802D57C0; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802D57F0; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802D5808; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802D582C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D5860; // type:label scope:local +@1769 = .data:0x802D5860; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802D5870; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802D587C; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802D5890; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802D58A0; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802D58BC; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802D58C8; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802D58D4; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802D58F0; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802D5904; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802D5914; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802D5920; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802D592C; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802D5940; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802D5968; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802D5980; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802D598C; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802D5998; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802D59AC; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802D59BC; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802D59D8; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802D59FC; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802D5A2C; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802D5A40; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802D5A64; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802D5A94; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802D5ACC; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802D5AE0; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802D5AEC; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802D5AFC; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802D5B08; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802D5B28; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802D5B3C; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802D5B5C; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802D5B70; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802D5B7C; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802D5BB0; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802D5BD0; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802D5BDC; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802D5BF8; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802D5C18; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802D5C24; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802D5C40; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802D5C5C; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802D5C68; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802D5C84; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802D5C98; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802D5CAC; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802D5CD4; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802D5CE4; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802D5D28; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802D5D3C; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802D5D60; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D5D90; // type:label scope:local +@1669 = .data:0x802D5D90; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802D5DA4; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802D5DB4; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802D5DCC; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802D5DD8; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802D5DE8; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D5DF4; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802D5E08; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802D5E24; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802D5E3C; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802D5E48; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802D5E64; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802D5E78; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802D5E84; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802D5EA0; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D5EC0; // type:label scope:local +@1669 = .data:0x802D5EC0; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802D5ED4; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802D5EE4; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802D5EFC; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802D5F08; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802D5F18; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802D5F24; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802D5F38; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D5F58; // type:label scope:local +@1106 = .data:0x802D5F58; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802D5F64; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802D5F70; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802D5F84; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802D5F90; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802D5FA0; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802D5FAC; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802D5FC0; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802D5FEC; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802D6020; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802D605C; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802D60A0; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D62B0; // type:label scope:local +@1206 = .data:0x802D62B0; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802D62CC; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802D62E4; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802D62FC; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802D6308; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802D6314; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802D6328; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802D6344; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D6390; // type:label scope:local +@1787 = .data:0x802D6390; // type:object size:0xE scope:local align:4 data:string +@2477 = .data:0x802D63A0; // type:object size:0x23 scope:local align:4 data:string +@4670 = .data:0x802D63C4; // type:object size:0x11 scope:local align:4 data:string +@4672 = .data:0x802D63D8; // type:object size:0xA scope:local align:4 data:string +@4673 = .data:0x802D63E4; // type:object size:0xE scope:local align:4 data:string +@4674 = .data:0x802D63F4; // type:object size:0xC scope:local align:4 +@4671 = .data:0x802D6400; // type:object size:0x14 scope:local align:4 +@4676 = .data:0x802D6420; // type:object size:0x11 scope:local align:4 data:string +@4677 = .data:0x802D6434; // type:object size:0x14 scope:local align:4 +@4681 = .data:0x802D6454; // type:object size:0xC scope:local align:4 data:string +@4690 = .data:0x802D64A4; // type:object size:0xC scope:local align:4 data:string +@4692 = .data:0x802D64B0; // type:object size:0x9 scope:local align:4 data:string +@4691 = .data:0x802D64BC; // type:object size:0xC scope:local align:4 +@4693 = .data:0x802D64DC; // type:object size:0xD scope:local align:4 data:string +@4695 = .data:0x802D64F8; // type:object size:0x11 scope:local align:4 data:string +@4697 = .data:0x802D650C; // type:object size:0xC scope:local align:4 data:string +@4696 = .data:0x802D6518; // type:object size:0xC scope:local align:4 +@4704 = .data:0x802D6544; // type:object size:0xB scope:local align:4 data:string +@4712 = .data:0x802D6584; // type:object size:0x14 scope:local align:4 data:string +@4715 = .data:0x802D65A4; // type:object size:0xC scope:local align:4 data:string +@4716 = .data:0x802D65B0; // type:object size:0xD scope:local align:4 data:string +@4717 = .data:0x802D65C0; // type:object size:0x9 scope:local align:4 data:string +@4718 = .data:0x802D65CC; // type:object size:0x14 scope:local align:4 +@4714 = .data:0x802D65E0; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802D660C; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802D6810; // type:label scope:local +@1379 = .data:0x802D6810; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802D6824; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802D6834; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802D6848; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802D6854; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802D6864; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802D6870; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802D6884; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802D6890; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802D68A4; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802D68C4; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802D68D8; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802D6910; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802D6924; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802D6938; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802D6944; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802D6960; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802D6974; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802D6980; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802D6998; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802D69AC; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802D69B8; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802D69D0; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802D69E4; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802D69F0; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802D6A08; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802D6A1C; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802D6A28; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802D6A40; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802D6A54; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802D6A60; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802D6A7C; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802D6A90; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802D6A9C; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802D6AB4; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802D6AC8; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802D6AD4; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802D6AF4; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802D6B08; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802D6B14; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802D6B30; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802D6B44; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802D6B50; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802D6B68; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802D6B7C; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802D6B88; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802D6BAC; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802D6BC0; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802D6BCC; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802D6BF0; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802D6C04; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802D6C10; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802D6C30; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802D6C44; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802D6C50; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802D6C64; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802D6C78; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802D6C84; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802D6C9C; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802D6CB0; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802D6CBC; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802D6CD0; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802D6CE4; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802D6CF0; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802D6D04; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802D6D18; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802D6D24; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802D6D38; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802D6D4C; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802D6D58; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802D6D6C; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802D6D80; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802D6D8C; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802D6DA4; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802D6DB8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D6DC8; // type:label scope:local +@1411 = .data:0x802D6DC8; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802D6DDC; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802D6DEC; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802D6E00; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802D6E0C; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802D6E18; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802D6E70; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802D6E80; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802D6E8C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802D6EB8; // type:label scope:local +@1206 = .data:0x802D6EB8; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802D6EC4; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802D6ED0; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802D6EDC; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802D6EE8; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802D6F74; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802D7000; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802D7010; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802D701C; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802D702C; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802D703C; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802D7050; // type:object size:0x10 scope:local align:4 data:string +@1351 = .data:0x802D7060; // type:object size:0xA scope:local align:4 data:string +@1369 = .data:0x802D706C; // type:object size:0xA scope:local align:4 data:string +@1528 = .data:0x802D7078; // type:object size:0x9 scope:local align:4 data:string +@1529 = .data:0x802D7084; // type:object size:0xC scope:local align:4 +@1531 = .data:0x802D7090; // type:object size:0x14 scope:local align:4 +@1532 = .data:0x802D70A4; // type:object size:0xC scope:local align:4 data:string +@1533 = .data:0x802D70B0; // type:object size:0xA scope:local align:4 data:string +@1534 = .data:0x802D70BC; // type:object size:0x24 scope:local align:4 +@1535 = .data:0x802D70E0; // type:object size:0xE scope:local align:4 data:string +@1536 = .data:0x802D70F0; // type:object size:0x2C scope:local align:4 +@1526 = .data:0x802D711C; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802D7150; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802D71D8; // type:label scope:local +@1206 = .data:0x802D71D8; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802D71E8; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802D71F4; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802D7200; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802D7214; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802D7220; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802D7230; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802D723C; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802D7250; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802D727C; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802D72B0; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D74C0; // type:label scope:local +@991 = .data:0x802D74C0; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802D74D4; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802D74E4; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802D74F0; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802D74FC; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802D750C; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802D7518; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802D7524; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802D7534; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802D7548; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802D7554; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802D7560; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802D7570; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802D7584; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802D7598; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802D75AC; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802D75C4; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802D75DC; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802D75F4; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802D760C; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D7624; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802D763C; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802D7650; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802D7660; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802D7670; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802D7680; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802D7690; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802D76A0; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802D76B4; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802D76C8; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802D76D8; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802D76EC; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802D76FC; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802D7710; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802D7724; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D773C; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D7754; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802D7768; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802D7774; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802D7784; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802D7790; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802D77A0; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802D77B0; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802D77C0; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802D77D0; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802D77DC; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802D77EC; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802D77F8; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802D7808; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802D7818; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802D7830; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802D7848; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802D785C; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802D7870; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802D7884; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802D7898; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802D78AC; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802D78C0; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802D78CC; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802D78F0; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802D7910; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802D792C; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802D7948; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802D795C; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802D7970; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802D797C; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802D7990; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802D79A4; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802D79B8; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802D79CC; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802D79DC; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802D79E8; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802D79F4; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802D7A08; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802D7A24; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D7A70; // type:label scope:local +@991 = .data:0x802D7A70; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802D7A84; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802D7A94; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802D7AA8; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802D7ABC; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802D7ACC; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802D7ADC; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802D7AE8; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802D7AF4; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802D7B04; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802D7B24; // type:object size:0x1D scope:local align:4 data:string +@1199 = .data:0x802D7B44; // type:object size:0x2A scope:local align:4 data:string +@1201 = .data:0x802D7B70; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802D7B80; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D7B90; // type:label scope:local +@1106 = .data:0x802D7B90; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802D7BA4; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802D7BB4; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802D7BC4; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802D7BF0; // type:label scope:local +@1022 = .data:0x802D7BF0; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802D7BFC; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802D7C08; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802D7C14; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802D7C20; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802D7C30; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802D7C3C; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802D7C48; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802D7C54; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802D7C68; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802D7C84; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802D7CC0; // type:label scope:local +@1543 = .data:0x802D7CC0; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802D7CCC; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802D7CEC; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802D7CF8; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802D7D08; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802D7D14; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802D7D28; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802D7D44; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802D7E68; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802D7E80; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802D7EB8; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802D7EC4; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802D7ED0; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802D7EF0; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802D7EFC; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802D7F0C; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802D7F18; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802D7F24; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802D7F30; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802D7F60; // type:label scope:local +@388 = .data:0x802D7F60; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802D7F70; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802D7F7C; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802D7F94; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802D7FA0; // type:object size:0xC scope:local align:4 +@411 = .data:0x802D7FAC; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802D7FC0; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802D7FDC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D8028; // type:label scope:local +@856 = .data:0x802D8028; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802D8034; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802D8044; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802D8050; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802D805C; // type:object size:0xC scope:global align:4 +@927 = .data:0x802D8068; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802D807C; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802D8088; // type:object size:0xC scope:global align:4 +@929 = .data:0x802D8094; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802D80A8; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802D80B4; // type:object size:0xC scope:global align:4 +@931 = .data:0x802D80C0; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802D80D0; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802D80DC; // type:object size:0xC scope:global align:4 +@933 = .data:0x802D80E8; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802D80F4; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802D8100; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D8110; // type:label scope:local +@1828 = .data:0x802D8110; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802D811C; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802D8128; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802D8138; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802D8150; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802D815C; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802D8168; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802D8178; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802D8184; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802D8190; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802D81A8; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802D81B4; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802D81C0; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802D81D0; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802D81DC; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802D81F4; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802D8200; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802D820C; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802D821C; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802D822C; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802D8248; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802D8258; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802D8268; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802D8278; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802D828C; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802D82A4; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802D82B8; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802D82CC; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802D82DC; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802D82E8; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802D8300; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802D830C; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802D8318; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802D8328; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802D8338; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802D8354; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802D8360; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802D836C; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802D837C; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802D8388; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802D839C; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802D83A8; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802D83B4; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802D83C0; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802D83D0; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802D83F0; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802D8400; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802D840C; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802D841C; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802D8430; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802D843C; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802D8454; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802D8460; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802D846C; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802D847C; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802D84AC; // type:object size:0x28 scope:local align:4 +@2830 = .data:0x802D84D4; // type:object size:0xA scope:local align:4 data:string +@2877 = .data:0x802D84E0; // type:object size:0xA scope:local align:4 data:string +@2897 = .data:0x802D84EC; // type:object size:0x9 scope:local align:4 data:string +@2900 = .data:0x802D84F8; // type:object size:0xC scope:local align:4 +@2898 = .data:0x802D8504; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802D8518; // type:object size:0x10 scope:weak align:4 +@2903 = .data:0x802D8544; // type:object size:0xC scope:local align:4 data:string +@2906 = .data:0x802D8568; // type:object size:0x14 scope:local align:4 +@2907 = .data:0x802D857C; // type:object size:0xA scope:local align:4 data:string +@2908 = .data:0x802D8588; // type:object size:0x24 scope:local align:4 +@2904 = .data:0x802D85AC; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802D85D8; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802D8650; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802D8668; // type:label scope:local +@1113 = .data:0x802D8668; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802D8674; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x802D8680; // type:object size:0xD scope:local align:4 data:string +@1700 = .data:0x802D8690; // type:object size:0xC scope:local align:4 +@1702 = .data:0x802D869C; // type:object size:0x14 scope:local align:4 +@1698 = .data:0x802D86B0; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802D86CC; // type:object size:0x30 scope:global align:4 +@1711 = .data:0x802D86FC; // type:object size:0xC scope:local align:4 data:string +@1712 = .data:0x802D8708; // type:object size:0xD scope:local align:4 data:string +@1713 = .data:0x802D8718; // type:object size:0x9 scope:local align:4 data:string +@1714 = .data:0x802D8724; // type:object size:0x14 scope:local align:4 +@1716 = .data:0x802D8738; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802D8754; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802D8778; // type:object size:0x124 scope:global align:4 +@1769 = .data:0x802D889C; // type:object size:0xA scope:local align:4 data:string +@1771 = .data:0x802D88A8; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802D88B4; // type:object size:0xC scope:local align:4 +@1772 = .data:0x802D88D4; // type:object size:0xC scope:local align:4 data:string +@1773 = .data:0x802D88E0; // type:object size:0xC scope:local align:4 +@1774 = .data:0x802D8900; // type:object size:0xB scope:local align:4 data:string +@1776 = .data:0x802D890C; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x802D891C; // type:object size:0x9 scope:local align:4 data:string +@1778 = .data:0x802D8928; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802D8934; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802D8958; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D8990; // type:label scope:local +spiderSE = .data:0x802D8990; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802D89A4; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802D89B4; // type:object size:0x9 scope:local align:4 data:string +@3113 = .data:0x802D89C0; // type:object size:0x24 scope:local align:4 +@3118 = .data:0x802D89E4; // type:object size:0x14 scope:local align:4 data:string +@3117 = .data:0x802D89F8; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802D8A04; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D8A20; // type:label scope:local +leg_index__4Kumo = .data:0x802D8A20; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802D8A50; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802D8A74; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802D8A84; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802D8A90; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802D8AC8; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802D8AE8; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802D8B14; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802D8B20; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802D8B2C; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802D8B44; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802D8B50; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802D8B5C; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802D8B74; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802D8B80; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D8B98; // type:label scope:local +@1109 = .data:0x802D8B98; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802D8BA4; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802D8BB0; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802D8BBC; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802D8BCC; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802D8BD8; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802D8BEC; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802D8C08; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802D8C2C; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802D8D50; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802D8D6C; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802D8D7C; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802D8D88; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802D8D98; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802D8DA8; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802D8DB4; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802D8DC0; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802D8DE0; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802D8DEC; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802D8E0C; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802D8E18; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802D8E24; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802D8E34; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802D8E40; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802D8E4C; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802D8E70; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D8EA8; // type:label scope:local +snakeSE = .data:0x802D8EA8; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802D8ECC; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802D8ED8; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802D8F00; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802D8F38; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802D8F4C; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802D8F58; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D8F70; // type:label scope:local +@1221 = .data:0x802D8F70; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802D8F80; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802D8F8C; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802D8FA8; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802D8FD4; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802D8FE0; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802D8FEC; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802D900C; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802D9018; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D9030; // type:label scope:local +@1171 = .data:0x802D9030; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802D903C; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802D9048; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802D9080; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802D908C; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802D909C; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802D90A8; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802D90BC; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802D90D8; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802D90FC; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802D9220; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802D923C; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802D924C; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802D9258; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802D9268; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802D9284; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802D9290; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802D92A0; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802D92BC; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802D92C8; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802D92E8; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802D92F4; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802D9300; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802D9320; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802D932C; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D934C; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802D9358; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D9364; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802D9374; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802D9380; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802D938C; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802D93B0; // type:object size:0x1C scope:weak align:4 +@6081 = .data:0x802D93E8; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802D9410; // type:label scope:local +@979 = .data:0x802D9410; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802D9424; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802D9434; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D9440; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D9450; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D945C; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802D9470; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802D948C; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D95A0; // type:label scope:local +@1080 = .data:0x802D95A0; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D95AC; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D95B8; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D95C4; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D95D0; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D95E4; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D9600; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D9630; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D963C; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D964C; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D9658; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D966C; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D9688; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D96AC; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D97D0; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D97DC; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D97E8; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D9808; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D9814; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D9834; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D9840; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D9850; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D985C; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D9868; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D988C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D98C8; // type:label scope:local +kingSE = .data:0x802D98C8; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D9900; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D990C; // type:object size:0x24 scope:local align:4 +@1778 = .data:0x802D9930; // type:object size:0x38 scope:local align:4 +@6168 = .data:0x802D9968; // type:object size:0x44 scope:local align:4 +@6169 = .data:0x802D99AC; // type:object size:0xC scope:local align:4 data:string +@6180 = .data:0x802D99E4; // type:object size:0x14 scope:local align:4 data:string +@6179 = .data:0x802D99F8; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D9A04; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D9A20; // type:label scope:local +@1229 = .data:0x802D9A20; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D9A30; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D9A3C; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D9A54; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D9A80; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D9A8C; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D9A98; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D9AB0; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D9ABC; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D9AC8; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D9AEC; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D9B2C; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D9B38; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D9B44; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D9B60; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D9B6C; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D9B78; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D9B98; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D9BA4; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D9BBC; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D9BD8; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D9BE4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D9C00; // type:label scope:local +@1251 = .data:0x802D9C00; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D9C0C; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D9C18; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D9C24; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D9C34; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D9C40; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D9C54; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D9C70; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D9C94; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D9DB8; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D9DC4; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D9DD0; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D9DF0; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D9DFC; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D9E08; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D9E18; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D9E24; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D9E30; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D9E54; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D9E90; // type:label scope:local +@1603 = .data:0x802D9E90; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D9EA0; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D9EAC; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D9EC8; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D9EDC; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D9EE8; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D9EF4; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D9F0C; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D9F38; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D9F44; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D9F68; // type:label scope:local +@995 = .data:0x802D9F68; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D9F74; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D9F80; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D9F90; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D9F9C; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D9FB0; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D9FCC; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D9FF0; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802DA114; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802DA120; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802DA12C; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802DA14C; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802DA158; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802DA178; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802DA184; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802DA194; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802DA1A0; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802DA1AC; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802DA1D0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802DA208; // type:label scope:local +pomSE = .data:0x802DA208; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802DA220; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802DA22C; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802DA264; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802DA278; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802DA284; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802DA290; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802DA2A8; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802DA2D4; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802DA2E0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802DA308; // type:label scope:local +@910 = .data:0x802DA308; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802DA318; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802DA324; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802DA330; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802DA33C; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802DA34C; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802DA358; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802DA36C; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802DA388; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802DA3AC; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802DA4D0; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802DA4E0; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802DA4EC; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802DA4FC; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802DA508; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802DA514; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802DA538; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802DA570; // type:label scope:local +@1053 = .data:0x802DA570; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802DA57C; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802DA588; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802DA594; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802DA5A4; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802DA5B0; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802DA5C4; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802DA5E0; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802DA604; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802DA728; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802DA734; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802DA740; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802DA750; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802DA75C; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802DA768; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802DA78C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802DA7C8; // type:label scope:local +@1668 = .data:0x802DA7C8; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802DA7D8; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802DA7E4; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802DA7F8; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802DA804; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802DA820; // type:label scope:local +@1334 = .data:0x802DA820; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802DA830; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802DA83C; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802DA848; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802DA854; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802DA864; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802DA870; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802DA884; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802DA8A0; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802DA8C4; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802DA9E8; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802DA9F8; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802DAA04; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802DAA14; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802DAA20; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802DAA2C; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802DAA50; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802DAA88; // type:label scope:local +@1668 = .data:0x802DAA88; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802DAA9C; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802DAAAC; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802DAAC0; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802DAACC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802DAAE8; // type:label scope:local +@964 = .data:0x802DAAE8; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802DAAF4; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802DAB00; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802DAB0C; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802DAB1C; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802DAB28; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802DAB3C; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802DAB58; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802DAB7C; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802DACA0; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802DACAC; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802DACB8; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802DACC8; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802DACD4; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802DACE0; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802DAD04; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802DAD40; // type:label scope:local +@1288 = .data:0x802DAD40; // type:object size:0xB scope:local align:4 data:string +@1694 = .data:0x802DAD4C; // type:object size:0xC scope:local align:4 data:string +@1705 = .data:0x802DAD84; // type:object size:0x14 scope:local align:4 data:string +@1704 = .data:0x802DAD98; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802DADA4; // type:object size:0xC scope:global align:4 +@1706 = .data:0x802DADB0; // type:object size:0x1A scope:local align:4 data:string +@1708 = .data:0x802DADCC; // type:object size:0x29 scope:local align:4 data:string +@1707 = .data:0x802DADF8; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802DAE04; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802DAE28; // type:label scope:local +patternTable = .data:0x802DAE28; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802DAEA8; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802DAED4; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802DAF00; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802DAF60; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802DAFC0; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802DAFD4; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802DAFE8; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802DB058; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802DB0C8; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802DB0E0; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802DB0F8; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802DB14C; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802DB1A0; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802DB1F0; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802DB240; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802DB290; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802DB2E0; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802DB308; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802DB330; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802DB35C; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802DB388; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802DB3A0; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802DB3B8; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802DB3F0; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802DB428; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802DB48C; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802DB4F0; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802DB528; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802DB560; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802DB580; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802DB5A0; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802DB5B8; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802DB5D0; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802DB63C; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802DB6A8; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802DB740; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802DB7D8; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802DB814; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802DB850; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802DB85C; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802DB868; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802DB958; // type:label scope:local +@877 = .data:0x802DB958; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802DB964; // type:object size:0xE scope:local align:4 data:string +@970 = .data:0x802DB974; // type:object size:0xD scope:local align:4 data:string +@971 = .data:0x802DB984; // type:object size:0xD scope:local align:4 data:string +@972 = .data:0x802DB994; // type:object size:0xC scope:local align:4 data:string +@1088 = .data:0x802DB9A0; // type:object size:0x30 scope:local align:4 +@1177 = .data:0x802DB9D0; // type:object size:0x1B scope:local align:4 +@1178 = .data:0x802DB9EC; // type:object size:0xE scope:local align:4 +@1179 = .data:0x802DB9FC; // type:object size:0x14 scope:local align:4 +@1180 = .data:0x802DBA10; // type:object size:0x14 scope:local align:4 +@1181 = .data:0x802DBA24; // type:object size:0xC scope:local align:4 +@1182 = .data:0x802DBA30; // type:object size:0x15 scope:local align:4 +@1183 = .data:0x802DBA48; // type:object size:0x17 scope:local align:4 +@1184 = .data:0x802DBA60; // type:object size:0xA scope:local align:4 +@1185 = .data:0x802DBA6C; // type:object size:0x9 scope:local align:4 +@1186 = .data:0x802DBA78; // type:object size:0xC scope:local align:4 +@1187 = .data:0x802DBA84; // type:object size:0xD scope:local align:4 +@1188 = .data:0x802DBA94; // type:object size:0x9 scope:local align:4 +@1190 = .data:0x802DBAA0; // type:object size:0x26 scope:local align:4 +@1200 = .data:0x802DBAC8; // type:object size:0x10 scope:local align:4 data:string +@1211 = .data:0x802DBAD8; // type:object size:0x13 scope:local align:4 data:string +@1214 = .data:0x802DBAEC; // type:object size:0x9 scope:local align:4 data:string +@1215 = .data:0x802DBAF8; // type:object size:0xC scope:local align:4 +@1217 = .data:0x802DBB04; // type:object size:0x14 scope:local align:4 +@1219 = .data:0x802DBB18; // type:object size:0x1C scope:local align:4 +@1212 = .data:0x802DBB34; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802DBB58; // type:object size:0x34 scope:global align:4 +@1227 = .data:0x802DBBC0; // type:object size:0x12 scope:local align:4 data:string +@1228 = .data:0x802DBBD4; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802DBBF0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802DBC40; // type:label scope:local +@890 = .data:0x802DBC40; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802DBC4C; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802DBC5C; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802DC05C; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802DC15C; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802DC25C; // type:object size:0x190 scope:local align:4 +@1549 = .data:0x802DC3EC; // type:object size:0x19 scope:local align:4 data:string +@1721 = .data:0x802DC408; // type:object size:0x1C scope:local align:4 data:string +@1723 = .data:0x802DC424; // type:object size:0xF scope:local align:4 data:string +@1724 = .data:0x802DC434; // type:object size:0x14 scope:local align:4 data:string +@1725 = .data:0x802DC448; // type:object size:0xC scope:local align:4 +@1726 = .data:0x802DC454; // type:object size:0x14 scope:local align:4 data:string +@1727 = .data:0x802DC468; // type:object size:0x1A scope:local align:4 data:string +@1728 = .data:0x802DC484; // type:object size:0x10 scope:local align:4 data:string +@1729 = .data:0x802DC494; // type:object size:0x14 scope:local align:4 +@1722 = .data:0x802DC4A8; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802DC4D4; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802DC4E4; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802DC4F4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802DC500; // type:label scope:local +@890 = .data:0x802DC500; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802DC50C; // type:object size:0xF scope:local align:4 data:string +@1015 = .data:0x802DC51C; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802DC534; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802DC54C; // type:object size:0x16 scope:local align:4 data:string +@1018 = .data:0x802DC564; // type:object size:0x18 scope:local align:4 data:string +@1019 = .data:0x802DC57C; // type:object size:0x18 scope:local align:4 data:string +@1020 = .data:0x802DC594; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802DC5B0; // type:label scope:local +@1133 = .data:0x802DC5B0; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802DC5BC; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802DC5CC; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802DC5E4; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802DC5FC; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802DC618; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DC630; // type:label scope:local +@1133 = .data:0x802DC630; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802DC644; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802DC658; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802DC670; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802DC688; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802DC694; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802DC6AC; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802DC6C4; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802DC6DC; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802DC6F4; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802DC70C; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802DC724; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802DC734; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802DC74C; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802DC764; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802DC77C; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802DC794; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802DC7A0; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802DC7B8; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802DC7D0; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802DC7E8; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802DC800; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802DC818; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802DC830; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802DC848; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802DC860; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802DC878; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802DC890; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802DC8A8; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802DC8C4; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802DC8E0; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802DC8EC; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802DC904; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802DC91C; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802DC934; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802DC94C; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802DC964; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802DC97C; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802DC994; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802DC9AC; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802DC9C4; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802DC9E0; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802DC9FC; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802DCA08; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802DCA24; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802DCA40; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802DCA5C; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802DCA6C; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802DCA84; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802DCA9C; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802DCAB4; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802DCACC; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802DCAE4; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802DCAFC; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802DCB14; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802DCB2C; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802DCB44; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802DCB5C; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802DCB74; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802DCB8C; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802DCBA4; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802DCBBC; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802DCBD4; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802DCBEC; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802DCC04; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802DCC1C; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802DCC34; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802DCC4C; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802DCC64; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802DCC7C; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802DCC94; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802DCCAC; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802DCCC4; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802DCCDC; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802DCCF4; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802DCD0C; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802DCD24; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802DCD3C; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802DCD54; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802DCD6C; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802DCD84; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802DCD9C; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802DCDB4; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802DCDCC; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802DCDE4; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802DCDFC; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802DCE14; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802DCE2C; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802DCE44; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802DCE5C; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802DCE74; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802DCE8C; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802DCEA4; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802DCEBC; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802DCED4; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802DCEEC; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802DCF04; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802DCF1C; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802DCF34; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802DCF4C; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802DCF64; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802DCF7C; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802DCF94; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802DCFAC; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802DCFC4; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802DCFDC; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802DCFF4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802DD000; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802DD00C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802DD018; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802DD024; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802DD030; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802DD03C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802DD048; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802DD054; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802DD060; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802DD06C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802DD078; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802DD084; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802DD090; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802DD09C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802DD0A8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802DD0B4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802DD0C0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802DD0CC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802DD0D8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802DD0E4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802DD0F0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802DD0FC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802DD108; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802DD114; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802DD120; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802DD12C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802DD138; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802DD144; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802DD150; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802DD15C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802DD168; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802DD174; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802DD180; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802DD18C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802DD198; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802DD1A4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802DD1B0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802DD1BC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802DD1C8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802DD1D4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802DD1E0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802DD1EC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802DD1F8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802DD204; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802DD210; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802DD21C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802DD228; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802DD234; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802DD240; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802DD24C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802DD258; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802DD264; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802DD270; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802DD27C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802DD288; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802DD294; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802DD2A0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802DD2AC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802DD2B8; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802DD2C4; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802DD2DC; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802DD548; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802DD55C; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DD578; // type:label scope:local +@1133 = .data:0x802DD578; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802DD588; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802DD598; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802DD5B0; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802DD5C8; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802DD5E0; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802DD5F8; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802DD610; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802DD628; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802DD640; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DD658; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802DD670; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802DD688; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802DD6A0; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802DD6B8; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802DD6D0; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802DD6E8; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802DD700; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802DD718; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802DD730; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802DD748; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802DD760; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802DD778; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802DD790; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802DD7A8; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802DD7C0; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802DD7D8; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802DD7F0; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DD808; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802DD820; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802DD838; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802DD850; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802DD868; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802DD880; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802DD898; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802DD8B0; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802DD8C8; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802DD8E0; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802DD8F8; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802DD910; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802DD928; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802DD940; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802DD958; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802DD970; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802DD988; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802DD9A0; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802DD9B8; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802DD9D0; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802DD9E8; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802DDA00; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802DDA18; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802DDA30; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802DDA48; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802DDA60; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802DDA78; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802DDA90; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802DDAA8; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802DDAC0; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802DDAD8; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802DDAF0; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802DDB08; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802DDB20; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802DDB38; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802DDB50; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802DDB68; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802DDB80; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802DDB98; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802DDBB0; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802DDBC8; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802DDBE0; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802DDBF8; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802DDC10; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802DDC28; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802DDC40; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802DDC58; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802DDC70; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802DDC88; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802DDCA0; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802DDCB8; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802DDCD0; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802DDCE8; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802DDD00; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802DDD18; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802DDD30; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802DDD48; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802DDD60; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802DDD78; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802DDD90; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802DDDA8; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802DDDC0; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802DDDD8; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802DDDF0; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802DDE08; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802DDE20; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802DDE38; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802DDE50; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802DDE68; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802DDE80; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802DDE98; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802DDEB0; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802DDEC8; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802DDEE0; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802DDEF8; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802DDF10; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802DDF28; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802DDF40; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802DDF58; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802DDF70; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802DDF88; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802DDFA0; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802DDFB8; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802DDFD0; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802DDFE8; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802DE000; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802DE018; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802DE030; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802DE048; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802DE060; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802DE078; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802DE090; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802DE0A8; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802DE0C0; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802DE0D8; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802DE0F0; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802DE108; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802DE120; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802DE138; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802DE150; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802DE168; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802DE180; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802DE198; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802DE1B0; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DE1C8; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802DE1E0; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802DE1F8; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802DE210; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802DE228; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802DE240; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802DE258; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802DE270; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802DE288; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802DE2A0; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802DE2B8; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802DE2D0; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802DE2E8; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802DE300; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802DE554; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802DE55C; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802DE574; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802DE58C; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DE5A8; // type:label scope:local +@1767 = .data:0x802DE5A8; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802DE5B4; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802DE5C4; // type:object size:0x3C scope:local align:4 +@2048 = .data:0x802DE600; // type:object size:0x17 scope:local align:4 data:string +@2049 = .data:0x802DE618; // type:object size:0x17 scope:local align:4 data:string +@2050 = .data:0x802DE630; // type:object size:0x17 scope:local align:4 data:string +@2051 = .data:0x802DE648; // type:object size:0x17 scope:local align:4 data:string +@2052 = .data:0x802DE660; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DE678; // type:label scope:local +@890 = .data:0x802DE678; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802DE68C; // type:object size:0x14 scope:local align:4 data:string +@1456 = .data:0x802DE6A0; // type:object size:0x38 scope:local align:4 +@1696 = .data:0x802DE6D8; // type:object size:0x15 scope:local align:4 data:string +@1697 = .data:0x802DE6F0; // type:object size:0x15 scope:local align:4 data:string +@1698 = .data:0x802DE708; // type:object size:0x15 scope:local align:4 data:string +@1699 = .data:0x802DE720; // type:object size:0x17 scope:local align:4 data:string +@1700 = .data:0x802DE738; // type:object size:0x17 scope:local align:4 data:string +@1701 = .data:0x802DE750; // type:object size:0x17 scope:local align:4 data:string +@1702 = .data:0x802DE768; // type:object size:0x17 scope:local align:4 data:string +@1703 = .data:0x802DE780; // type:object size:0x17 scope:local align:4 data:string +@1704 = .data:0x802DE798; // type:object size:0x16 scope:local align:4 data:string +@1705 = .data:0x802DE7B0; // type:object size:0x15 scope:local align:4 data:string +@1995 = .data:0x802DE7C8; // type:object size:0xC scope:local align:4 data:string +@1015 = .data:0x802DE7D8; // type:object size:0x15 scope:local align:4 data:string +@1016 = .data:0x802DE7F0; // type:object size:0x16 scope:local align:4 data:string +@1068 = .data:0x802DE808; // type:object size:0x4C scope:local align:4 +@1840 = .data:0x802DE854; // type:object size:0x4C scope:local align:4 +@1873 = .data:0x802DE8A0; // type:object size:0x38 scope:local align:4 +@1916 = .data:0x802DE8D8; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802DE8F8; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802DE904; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802DE91C; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802DE92C; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802DE944; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802DE95C; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DE978; // type:label scope:local +@1810 = .data:0x802DE978; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802DE984; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802DE994; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802DEA14; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802DEA38; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802DEA5C; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802DEA80; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802DEAA4; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802DEABC; // type:object size:0x18 scope:local align:4 data:string +@2274 = .data:0x802DEAD4; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802DEAEC; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802DEB04; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802DEB20; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802DEB38; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802DEB50; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802DEB68; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802DEB80; // type:label scope:local +@1133 = .data:0x802DEB80; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802DEB8C; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802DEB9C; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DEBB4; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802DEBCC; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802DEBE4; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802DEC20; // type:label scope:local +@1133 = .data:0x802DEC20; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802DEC2C; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802DEC40; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802DEC80; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802DECC0; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802DED00; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802DED20; // type:object size:0xC scope:local align:32 +@871 = .data:0x802DED30; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DED48; // type:label scope:local +@749 = .data:0x802DED48; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802DED58; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802DED6C; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802DED84; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802DED98; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802DEDB4; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802DEDC4; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802DEDD8; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802DEDF4; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802DEE20; // type:label scope:local +@885 = .data:0x802DEE20; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802DEE34; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DEE4C; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802DEE58; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802DEE64; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802DEE80; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802DEE98; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802DEEA8; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802DEEB4; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802DEEC8; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802DEED8; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802DEEEC; // type:object size:0x11 scope:local align:4 +@1472 = .data:0x802DEF00; // type:object size:0xD scope:local align:4 +@1473 = .data:0x802DEF10; // type:object size:0xB scope:local align:4 +@1474 = .data:0x802DEF1C; // type:object size:0x21 scope:local align:4 +@1475 = .data:0x802DEF40; // type:object size:0xF scope:local align:4 +@1476 = .data:0x802DEF50; // type:object size:0x1D scope:local align:4 +@1477 = .data:0x802DEF70; // type:object size:0x11 scope:local align:4 +@1478 = .data:0x802DEF84; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802DEF94; // type:object size:0xF scope:local align:4 +@1481 = .data:0x802DEFA4; // type:object size:0x15 scope:local align:4 +@1482 = .data:0x802DEFBC; // type:object size:0xB scope:local align:4 +@1484 = .data:0x802DEFC8; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802DEFD4; // type:object size:0x18 scope:local align:4 data:string +@1487 = .data:0x802DEFEC; // type:object size:0x17 scope:local align:4 data:string +@1488 = .data:0x802DF004; // type:object size:0x16 scope:local align:4 data:string +@1495 = .data:0x802DF01C; // type:object size:0x1B scope:local align:4 +@1596 = .data:0x802DF038; // type:object size:0x9 scope:local align:4 data:string +@1597 = .data:0x802DF044; // type:object size:0xC scope:local align:4 +@1601 = .data:0x802DF06C; // type:object size:0x17 scope:local align:4 data:string +@1603 = .data:0x802DF084; // type:object size:0xD scope:local align:4 data:string +@1602 = .data:0x802DF094; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802DF0A0; // type:object size:0x10 scope:weak align:4 +@1607 = .data:0x802DF0B0; // type:object size:0xD scope:local align:4 data:string +@1609 = .data:0x802DF0C0; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802DF0D0; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802DF0DC; // type:object size:0x10 scope:weak align:4 +@1619 = .data:0x802DF0EC; // type:object size:0xC scope:local align:4 data:string +@1620 = .data:0x802DF0F8; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802DF104; // type:object size:0x10 scope:weak align:4 +@1629 = .data:0x802DF114; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802DF124; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802DF130; // type:object size:0x10 scope:weak align:4 +@1640 = .data:0x802DF140; // type:object size:0x10 scope:local align:4 data:string +@1641 = .data:0x802DF150; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802DF15C; // type:object size:0x10 scope:weak align:4 +@1650 = .data:0x802DF16C; // type:object size:0xE scope:local align:4 data:string +@1651 = .data:0x802DF17C; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802DF188; // type:object size:0x10 scope:weak align:4 +@1665 = .data:0x802DF198; // type:object size:0xD scope:local align:4 data:string +@1666 = .data:0x802DF1A8; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802DF1B4; // type:object size:0x10 scope:weak align:4 +@1679 = .data:0x802DF1C4; // type:object size:0xE scope:local align:4 data:string +@1680 = .data:0x802DF1D4; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802DF1E0; // type:object size:0x10 scope:weak align:4 +@1694 = .data:0x802DF1F0; // type:object size:0xC scope:local align:4 data:string +@1695 = .data:0x802DF1FC; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802DF208; // type:object size:0x10 scope:weak align:4 +@1704 = .data:0x802DF218; // type:object size:0xD scope:local align:4 data:string +@1705 = .data:0x802DF228; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802DF234; // type:object size:0x10 scope:weak align:4 +@1714 = .data:0x802DF244; // type:object size:0x13 scope:local align:4 data:string +@1715 = .data:0x802DF258; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802DF264; // type:object size:0x10 scope:weak align:4 +@1725 = .data:0x802DF274; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x802DF280; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802DF28C; // type:object size:0x10 scope:weak align:4 +@1735 = .data:0x802DF29C; // type:object size:0xD scope:local align:4 data:string +@1736 = .data:0x802DF2AC; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802DF2B8; // type:object size:0x10 scope:weak align:4 +@1745 = .data:0x802DF2C8; // type:object size:0xC scope:local align:4 data:string +@1746 = .data:0x802DF2D4; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802DF2E0; // type:object size:0x10 scope:weak align:4 +@1759 = .data:0x802DF2F0; // type:object size:0x10 scope:local align:4 data:string +@1760 = .data:0x802DF300; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802DF30C; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802DF31C; // type:object size:0x10 scope:local align:4 data:string +@1770 = .data:0x802DF32C; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802DF338; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802DF348; // type:object size:0x10 scope:weak align:4 +@1784 = .data:0x802DF358; // type:object size:0x29 scope:local align:4 data:string +@1786 = .data:0x802DF384; // type:object size:0x13 scope:local align:4 data:string +@1785 = .data:0x802DF398; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802DF3A4; // type:object size:0xC scope:weak align:4 +@1787 = .data:0x802DF3B0; // type:object size:0x18 scope:local align:4 data:string +@1788 = .data:0x802DF3C8; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802DF3EC; // type:object size:0x10 scope:weak align:4 +@1790 = .data:0x802DF3FC; // type:object size:0xA scope:local align:4 data:string +@1792 = .data:0x802DF408; // type:object size:0x9 scope:local align:4 data:string +@1791 = .data:0x802DF414; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802DF434; // type:object size:0xC scope:local align:4 data:string +@1794 = .data:0x802DF440; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802DF460; // type:object size:0x14 scope:local align:4 +@1795 = .data:0x802DF474; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802DF490; // type:object size:0x30 scope:weak align:4 +@1821 = .data:0x802DF4C0; // type:object size:0xC scope:local align:4 data:string +@1890 = .data:0x802DF4CC; // type:object size:0x1C scope:local align:4 +@1888 = .data:0x802DF4E8; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802DF50C; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DF578; // type:label scope:local +@1486 = .data:0x802DF578; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802DF58C; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802DF5A4; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802DF5BC; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802DF5C8; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802DF5F0; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802DF604; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802DF620; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802DF644; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DF6B0; // type:label scope:local +@749 = .data:0x802DF6B0; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802DF6C0; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802DF6D4; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802DF6EC; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802DF6F8; // type:object size:0xC scope:local align:4 +@779 = .data:0x802DF720; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802DF734; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802DF750; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802DF774; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DF7E0; // type:label scope:local +@787 = .data:0x802DF7E0; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802DF7F0; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802DF7FC; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802DF814; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802DF82C; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802DF844; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802DF860; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802DF878; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802DF894; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802DF8AC; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802DF8C8; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802DF8E0; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802DF8FC; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802DF918; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802DF930; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802DF94C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802DF964; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802DF980; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802DF99C; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802DF9B4; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802DF9D0; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802DF9EC; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802DFA08; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802DFA24; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802DFA3C; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802DFA54; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802DFA70; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802DFA8C; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802DFAA8; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802DFAC0; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802DFADC; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802DFAF8; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802DFB14; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802DFB30; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802DFB4C; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802DFB64; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802DFB7C; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802DFB98; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802DFBB4; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802DFBD0; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802DFBEC; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802DFC08; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802DFC24; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802DFC3C; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802DFC58; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802DFC70; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802DFC8C; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802DFCA4; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802DFCC0; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802DFCDC; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802DFCF8; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802DFD10; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802DFD2C; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802DFD44; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802DFD60; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802DFD7C; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802DFD98; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802DFDB0; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802DFDCC; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802DFDE4; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802DFE00; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802DFE1C; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802DFE34; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802DFE4C; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802DFE64; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802DFE78; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802DFE8C; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802DFEA4; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802DFEC0; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802DFEDC; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802DFEF8; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802DFF14; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802DFF30; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802DFF4C; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802DFF64; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802DFF7C; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802DFF98; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802DFFB4; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802DFFD0; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802DFFE8; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802E0004; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802E0020; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802E0038; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802E0054; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802E006C; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802E0084; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802E009C; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802E00B4; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802E00CC; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802E00E4; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802E00FC; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802E0114; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802E012C; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802E0144; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802E015C; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802E0174; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802E018C; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802E01A8; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802E01C4; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802E01DC; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802E01F4; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802E0210; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802E022C; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802E0244; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802E025C; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802E0278; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802E0290; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802E02AC; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802E02C4; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802E02E0; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802E02FC; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802E0318; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802E0334; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802E0350; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802E036C; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802E0388; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802E03A4; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802E03C0; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802E03DC; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802E03F4; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802E040C; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802E0424; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802E043C; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802E0454; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802E046C; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802E0484; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802E04A0; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802E04BC; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802E04D4; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802E04EC; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802E0508; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802E0524; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802E0540; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802E055C; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802E0578; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802E0594; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802E05AC; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802E05C8; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802E05E4; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802E05FC; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802E0618; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802E0634; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802E0650; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802E0668; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802E0684; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802E06A0; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802E06BC; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802E06D8; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802E06F4; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802E0710; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802E072C; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802E0748; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802E0764; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802E0780; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802E079C; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802E07B8; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802E07D0; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802E07EC; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802E0804; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802E0820; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802E083C; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802E0858; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802E0874; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802E0890; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802E08AC; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802E08C8; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802E08E4; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802E0900; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802E091C; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802E0938; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802E0954; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802E0970; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802E0988; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802E09A4; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802E09C0; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802E09DC; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802E09F8; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802E0A10; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802E0A28; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802E0A40; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802E0A58; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802E0A74; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802E0A90; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802E0AA8; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802E0AC0; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802E0AD8; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802E0AF0; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802E0B0C; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802E0B28; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802E0B44; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802E0B5C; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802E0B78; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802E0B90; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802E0BA8; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802E0BC0; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802E0BDC; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802E0BF8; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802E0C14; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802E0C30; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802E0C4C; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802E0C64; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802E0C7C; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802E0C94; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802E0CB0; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802E0CC8; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802E0CE4; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802E0D00; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802E0D1C; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802E0D38; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802E0D54; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802E0D6C; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802E0D88; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802E0DA4; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802E0DBC; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802E0DD4; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802E0DEC; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802E0E04; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802E0E1C; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802E0E38; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802E0E54; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802E0E70; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802E0E8C; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802E0EA8; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802E0EC4; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802E0EE0; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802E0EFC; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802E0F10; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802E0F28; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802E0F40; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802E0F58; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802E0F70; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802E0F8C; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802E0FA4; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802E0FBC; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802E0FD4; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802E0FF0; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802E100C; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802E1024; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802E103C; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802E1054; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802E106C; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802E1088; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802E10A4; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802E10BC; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802E10D4; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802E10EC; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802E1108; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802E1120; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802E113C; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802E1158; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802E1174; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802E118C; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802E11A4; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802E11BC; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802E11D4; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802E11F0; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802E120C; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802E1228; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802E1244; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802E125C; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802E1278; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802E1294; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802E12AC; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802E12C4; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802E12DC; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802E12F4; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802E1310; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802E1328; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802E1340; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802E1358; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802E1370; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802E138C; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802E13A4; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802E13C0; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802E13DC; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802E13F8; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802E1414; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802E142C; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802E1444; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802E145C; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802E1478; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802E1494; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802E14AC; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802E14C8; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802E14E4; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802E1500; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802E1518; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802E1530; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802E154C; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802E1564; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802E1580; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802E159C; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802E15B8; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802E15D4; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802E15F0; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802E1608; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802E1620; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802E163C; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802E1658; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802E1674; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802E1690; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802E16AC; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802E16C8; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802E16E0; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802E16F8; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802E1710; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802E1728; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802E1740; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802E1758; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802E1770; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802E1788; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802E17A0; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802E17B8; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802E17D0; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802E17E8; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802E1800; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802E181C; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802E1838; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802E1850; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802E186C; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802E1888; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802E18A4; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802E18C0; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802E18D8; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802E18F0; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802E1908; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802E1920; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802E193C; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802E1958; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802E1974; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802E1990; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802E19AC; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802E19C4; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802E19E0; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802E19F8; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802E1A10; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802E1A28; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802E1A40; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802E1A5C; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802E1A78; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802E1A94; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802E1AAC; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802E1AC4; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802E1ADC; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802E1AF4; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802E1B0C; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802E1B28; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802E1B44; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802E1B5C; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802E1B74; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802E1B8C; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802E1BA8; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802E1BC4; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802E1BDC; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802E1BF4; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802E1C0C; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802E1C24; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802E1C3C; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802E1C54; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802E1C6C; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802E1C88; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802E1CA4; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802E1CC0; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802E1CDC; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802E1CF8; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802E1D14; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802E1D30; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802E1D4C; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802E1D68; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802E1D84; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802E1DA0; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802E1DBC; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802E1DD4; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802E1DEC; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802E1E04; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802E1E1C; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802E1E34; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802E1E4C; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802E1E64; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802E1E7C; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802E1E98; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802E1EB4; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802E1ECC; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802E1EE4; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802E1EFC; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802E1F18; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802E1F34; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802E1F50; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802E2EE0; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802E2EFC; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802E2F18; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802E2F34; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802E2F64; // type:object size:0xC scope:global align:4 +@1340 = .data:0x802E2F70; // type:object size:0x18 scope:local align:4 data:string +@1427 = .data:0x802E2F88; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802E2F9C; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802E2FA8; // type:object size:0x20 scope:local align:4 data:string +@1632 = .data:0x802E2FC8; // type:object size:0xB scope:local align:4 data:string +@1633 = .data:0x802E2FD4; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802E2FE0; // type:object size:0xD scope:local align:4 data:string +@1762 = .data:0x802E2FF0; // type:object size:0xB scope:local align:4 data:string +@1765 = .data:0x802E2FFC; // type:object size:0x9 scope:local align:4 data:string +@1766 = .data:0x802E3008; // type:object size:0xC scope:local align:4 +@1763 = .data:0x802E3014; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802E3028; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802E3038; // type:object size:0xD scope:local align:4 data:string +@1772 = .data:0x802E3058; // type:object size:0xA scope:local align:4 data:string +@1773 = .data:0x802E3064; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802E3078; // type:object size:0x10 scope:weak align:4 +@1774 = .data:0x802E3088; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802E30A4; // type:object size:0xC scope:global align:4 +@1775 = .data:0x802E30B0; // type:object size:0xC scope:local align:4 data:string +@1776 = .data:0x802E30BC; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802E30D0; // type:object size:0x10 scope:weak align:4 +@1777 = .data:0x802E30E0; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802E30FC; // type:object size:0xC scope:weak align:4 +@1778 = .data:0x802E3108; // type:object size:0xD scope:local align:4 data:string +@1781 = .data:0x802E3118; // type:object size:0x14 scope:local align:4 +@1779 = .data:0x802E312C; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802E3148; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802E31A0; // type:label scope:local +@671 = .data:0x802E31A0; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802E31B8; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802E31E0; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802E3210; // type:object size:0xC scope:local align:4 +@705 = .data:0x802E321C; // type:object size:0xC scope:local align:4 +@708 = .data:0x802E3228; // type:object size:0xC scope:local align:4 +@710 = .data:0x802E3234; // type:object size:0xC scope:local align:4 +@712 = .data:0x802E3240; // type:object size:0xC scope:local align:4 +@714 = .data:0x802E324C; // type:object size:0xC scope:local align:4 +@716 = .data:0x802E3258; // type:object size:0xC scope:local align:4 +@718 = .data:0x802E3264; // type:object size:0xC scope:local align:4 +@720 = .data:0x802E3270; // type:object size:0xC scope:local align:4 +@736 = .data:0x802E327C; // type:object size:0x1A scope:local align:4 data:string +@737 = .data:0x802E3298; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802E32B8; // type:label scope:local +@409 = .data:0x802E32B8; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802E32CC; // type:object size:0xF scope:local align:4 data:string +@443 = .data:0x802E32DC; // type:object size:0x18 scope:local align:4 data:string +@461 = .data:0x802E32F4; // type:object size:0xD scope:local align:4 data:string +@463 = .data:0x802E3304; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802E3314; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802E3320; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E3340; // type:label scope:local +ami = .data:0x802E3340; // type:object size:0x800 scope:local align:4 +check = .data:0x802E3B40; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802E4340; // type:object size:0x800 scope:local align:4 +marble = .data:0x802E4B40; // type:object size:0x800 scope:local align:4 +noise = .data:0x802E5340; // type:object size:0x800 scope:local align:4 +yura = .data:0x802E5B40; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802E6340; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802E6358; // type:label scope:local +@649 = .data:0x802E6358; // type:object size:0x14 scope:local align:4 data:string +@659 = .data:0x802E636C; // type:object size:0x10 scope:local align:4 data:string +@688 = .data:0x802E637C; // type:object size:0x30 scope:local align:4 +@689 = .data:0x802E63AC; // type:object size:0x26 scope:local align:4 +@690 = .data:0x802E63D4; // type:object size:0x30 scope:local align:4 +@913 = .data:0x802E6404; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802E6424; // type:object size:0x17 scope:local align:4 data:string +@915 = .data:0x802E643C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E6458; // type:label scope:local +@618 = .data:0x802E6458; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802E6470; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802E6484; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802E6498; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802E64A8; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802E64C0; // type:object size:0xC scope:local align:4 +@715 = .data:0x802E64CC; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802E64E0; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802E6500; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802E6510; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802E6528; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802E653C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E6550; // type:label scope:local +@1344 = .data:0x802E6550; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802E6560; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802E656C; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802E65A4; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802E65B0; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802E65C4; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802E65D0; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802E65E0; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802E65EC; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802E6600; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802E662C; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802E6660; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802E669C; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802E689C; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802E68D4; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802E68F4; // type:object size:0x24 scope:weak align:4 +@1211 = .data:0x802E6928; // type:object size:0x11 scope:local align:4 data:string +@1225 = .data:0x802E693C; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802E6950; // type:label scope:local +@1737 = .data:0x802E6950; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802E695C; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802E6970; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802E6984; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802E6990; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802E69A8; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802E69C4; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802E69E4; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802E6A00; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802E6A1C; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802E6A3C; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802E6A5C; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802E6A78; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802E6A94; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802E6AB4; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802E6AD0; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802E6AEC; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802E6B00; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802E6B10; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802E6B1C; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802E6B28; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802E6B38; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802E6B48; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802E6B54; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802E6B60; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802E6B74; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802E6B9C; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802E6BAC; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802E6BB8; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802E6BC4; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802E6BE0; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802E6BF0; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802E6BFC; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802E6C18; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802E6C30; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802E6C3C; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802E6C58; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802E6C6C; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802E6C78; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802E6C84; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802E6C94; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802E6CA8; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802E6CC4; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802E6CE8; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802E6CFC; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802E6D10; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802E6D1C; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E6D2C; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802E6D40; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802E6D5C; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802E6D80; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802E6D8C; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802E6DA4; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802E6DB0; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802E6DBC; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802E6DC8; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802E6DDC; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802E6DEC; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802E6E00; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802E6E1C; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802E6E3C; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802E6E5C; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802E6E74; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802E6E80; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802E6E9C; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802E6EB0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802E6ECC; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802E6EF4; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802E6F10; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802E6F28; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802E6F34; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802E6F48; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802E6F68; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802E6F78; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802E6F8C; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802E6FA0; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802E6FAC; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802E6FC8; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802E6FEC; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802E702C; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802E7040; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802E704C; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802E7058; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802E706C; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802E707C; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802E7098; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802E70BC; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802E70EC; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E7110; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802E7130; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802E713C; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802E7160; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E71C0; // type:label scope:local +@1737 = .data:0x802E71C0; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802E71CC; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802E71E8; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802E7200; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802E7218; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802E722C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E7244; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802E725C; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802E727C; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802E7294; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802E72B0; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802E72C0; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802E72DC; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802E72F8; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802E7314; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802E7330; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802E7350; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802E7370; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802E738C; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802E73A8; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802E73C4; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802E73E0; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802E73FC; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802E740C; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802E741C; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802E7428; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802E7434; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802E7444; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802E7454; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802E7460; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802E746C; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802E7480; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802E74A8; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802E74B4; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802E74C0; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802E74CC; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802E74E8; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802E74F8; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802E7504; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802E7520; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802E7544; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E7554; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802E7568; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802E7574; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802E7588; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802E759C; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802E75BC; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802E75E0; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802E760C; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802E7640; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802E7658; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802E7680; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802E7694; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802E76A4; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802E76B8; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802E76D4; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802E76F8; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802E7708; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802E7720; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802E772C; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802E7744; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802E775C; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802E7770; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802E7784; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802E77A0; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802E77D0; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802E77DC; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802E77F0; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802E7804; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802E7810; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802E7824; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802E7844; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802E7864; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802E7874; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802E7880; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802E7894; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802E78B0; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802E78D0; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802E78E0; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802E7908; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802E791C; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802E7930; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802E793C; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802E7950; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802E7970; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802E7984; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E7994; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802E79A0; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802E79B4; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802E79D4; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802E79E4; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802E79F0; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802E7A04; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802E7A20; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802E7A40; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802E7A58; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802E7A6C; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802E7A8C; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802E7A9C; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802E7AA8; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802E7AB4; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802E7AC4; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802E7AD8; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802E7AF4; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802E7B18; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802E7B50; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802E7B68; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802E7B74; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802E7B90; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802E7BA0; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802E7BAC; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802E7BD0; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802E7BE4; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802E7BF4; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802E7C00; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802E7C14; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802E7C34; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802E7C44; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802E7C50; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802E7C64; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802E7C80; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802E7CB8; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802E7CCC; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802E7CD8; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802E7CE4; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802E7CF8; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802E7D08; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802E7D24; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802E7D48; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802E7D78; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802E7D98; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802E7DB8; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802E7DC4; // type:object size:0x24 scope:weak align:4 +@3146 = .data:0x802E7DE8; // type:object size:0x1F scope:local align:4 data:string +@3147 = .data:0x802E7E08; // type:object size:0x1E scope:local align:4 data:string +...data.0 = .data:0x802E7E50; // type:label scope:local +@1728 = .data:0x802E7E50; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802E7E64; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802E7E74; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802E7E88; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802E7E94; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802E7EA0; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802E7EAC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802E7EC0; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802E7EDC; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802E7EF8; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802E7F04; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802E7F10; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802E7F30; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802E7F48; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802E7F54; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802E7F60; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802E7F6C; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802E7F80; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802E7F94; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802E7FB0; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802E7FD4; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802E7FF0; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802E800C; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802E8028; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802E8034; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802E8050; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802E8060; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802E806C; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802E8088; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802E80A0; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802E80AC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E80C8; // type:label scope:local +@1788 = .data:0x802E80C8; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802E80D8; // type:object size:0x9 scope:local align:4 data:string +@2397 = .data:0x802E80E4; // type:object size:0x3A scope:local align:4 data:string +@2866 = .data:0x802E8120; // type:object size:0x14 scope:local align:4 data:string +@3596 = .data:0x802E8134; // type:object size:0xC scope:local align:4 data:string +@3942 = .data:0x802E8140; // type:object size:0xC scope:local align:4 data:string +@3944 = .data:0x802E814C; // type:object size:0xA scope:local align:4 data:string +@3945 = .data:0x802E8158; // type:object size:0x12 scope:local align:4 data:string +@3946 = .data:0x802E816C; // type:object size:0xC scope:local align:4 +@3943 = .data:0x802E8178; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802E818C; // type:object size:0x20 scope:global align:4 +@3953 = .data:0x802E81AC; // type:object size:0xC scope:local align:4 data:string +@3954 = .data:0x802E81B8; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802E81CC; // type:object size:0x20 scope:global align:4 +@3955 = .data:0x802E81EC; // type:object size:0xC scope:local align:4 data:string +@3956 = .data:0x802E81F8; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802E820C; // type:object size:0x24 scope:global align:4 +@3957 = .data:0x802E8230; // type:object size:0x13 scope:local align:4 data:string +@3959 = .data:0x802E8244; // type:object size:0xF scope:local align:4 data:string +@3958 = .data:0x802E8254; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802E8268; // type:object size:0x2C scope:global align:4 +@3960 = .data:0x802E8294; // type:object size:0x1E scope:local align:4 data:string +@3962 = .data:0x802E82B4; // type:object size:0x11 scope:local align:4 data:string +@3963 = .data:0x802E82C8; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802E82DC; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802E8300; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802E8330; // type:object size:0x24 scope:global align:4 +@3964 = .data:0x802E8354; // type:object size:0x16 scope:local align:4 data:string +@3965 = .data:0x802E836C; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802E8378; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802E8394; // type:object size:0xF scope:local align:4 data:string +@3967 = .data:0x802E83A4; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802E83B0; // type:object size:0x20 scope:global align:4 +@3968 = .data:0x802E83D0; // type:object size:0x1D scope:local align:4 data:string +@3969 = .data:0x802E83F0; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802E8404; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802E8420; // type:object size:0xE scope:local align:4 data:string +@3971 = .data:0x802E8430; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802E8444; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802E8460; // type:object size:0xD scope:local align:4 data:string +@3974 = .data:0x802E8470; // type:object size:0x11 scope:local align:4 data:string +@3975 = .data:0x802E8484; // type:object size:0x14 scope:local align:4 +@3973 = .data:0x802E8498; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802E84B4; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802E84D0; // type:object size:0xD scope:local align:4 data:string +@3977 = .data:0x802E84E0; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802E84F4; // type:object size:0x20 scope:global align:4 +@3978 = .data:0x802E8514; // type:object size:0xB scope:local align:4 data:string +@3980 = .data:0x802E8520; // type:object size:0x11 scope:local align:4 data:string +@3981 = .data:0x802E8534; // type:object size:0x14 scope:local align:4 +@3979 = .data:0x802E8548; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802E8564; // type:object size:0x24 scope:global align:4 +@3982 = .data:0x802E8588; // type:object size:0x9 scope:local align:4 data:string +@3983 = .data:0x802E8594; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802E85A8; // type:object size:0x20 scope:global align:4 +@3984 = .data:0x802E85C8; // type:object size:0x16 scope:local align:4 data:string +@3985 = .data:0x802E85E0; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802E85FC; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802E861C; // type:object size:0x1C scope:global align:4 +@3986 = .data:0x802E8638; // type:object size:0xF scope:local align:4 data:string +@3987 = .data:0x802E8648; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802E865C; // type:object size:0x1C scope:global align:4 +@3988 = .data:0x802E8678; // type:object size:0x9 scope:local align:4 data:string +@3989 = .data:0x802E8684; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802E8690; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802E86AC; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802E86CC; // type:object size:0xF scope:local align:4 data:string +@3992 = .data:0x802E86DC; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802E86F0; // type:object size:0x1C scope:global align:4 +@3993 = .data:0x802E870C; // type:object size:0x22 scope:local align:4 data:string +@3994 = .data:0x802E8730; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802E8744; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802E8764; // type:object size:0x1C scope:local align:4 data:string +@3996 = .data:0x802E8780; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802E8794; // type:object size:0x24 scope:global align:4 +@3997 = .data:0x802E87B8; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802E87C8; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802E87DC; // type:object size:0x20 scope:global align:4 +@3999 = .data:0x802E87FC; // type:object size:0x19 scope:local align:4 data:string +@4000 = .data:0x802E8818; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802E8824; // type:object size:0x1C scope:global align:4 +@4001 = .data:0x802E8840; // type:object size:0x1F scope:local align:4 data:string +@4002 = .data:0x802E8860; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802E886C; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802E8888; // type:object size:0xF scope:local align:4 data:string +@4004 = .data:0x802E8898; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802E88B4; // type:object size:0x24 scope:global align:4 +@4005 = .data:0x802E88D8; // type:object size:0x1D scope:local align:4 data:string +@4006 = .data:0x802E88F8; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802E8904; // type:object size:0x1C scope:global align:4 +@4007 = .data:0x802E8920; // type:object size:0x12 scope:local align:4 data:string +@4009 = .data:0x802E8934; // type:object size:0xB scope:local align:4 data:string +@4010 = .data:0x802E8940; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802E894C; // type:object size:0x13 scope:local align:4 data:string +@4012 = .data:0x802E8960; // type:object size:0x14 scope:local align:4 +@4008 = .data:0x802E8974; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802E8990; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E89B0; // type:label scope:local +@1116 = .data:0x802E89B0; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802E89C0; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802E89CC; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802E89DC; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802E89E8; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802E89FC; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802E8A08; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802E8A1C; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802E8A3C; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802E8A58; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802E8A64; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E8AA0; // type:label scope:local +@1569 = .data:0x802E8AA0; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802E8AB0; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802E8ABC; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802E8AD0; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802E8ADC; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802E8AE8; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802E8B04; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802E8B18; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802E8B24; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802E8B40; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802E8B50; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802E8B5C; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802E8B80; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802E8B94; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802E8BA0; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802E8BC0; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802E8BD4; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802E8BE0; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802E8BFC; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802E8C14; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802E8C20; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802E8C40; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802E8C50; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802E8C5C; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802E8C78; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802E8C88; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802E8C94; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802E8CB0; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802E8CD0; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802E8CDC; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802E8CF8; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802E8D18; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802E8D24; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802E8D40; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802E8D5C; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802E8D68; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802E8D8C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802E8DA8; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802E8DC0; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802E8DCC; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802E8DE0; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802E8E08; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E8E20; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E8E34; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E8E5C; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E8E84; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E8E94; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E8EA4; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E8EB0; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E8EC4; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E8EE4; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E8EF4; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E8F08; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E8F28; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E8F40; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E8F4C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E8F68; // type:label scope:local +@1718 = .data:0x802E8F68; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E8F78; // type:object size:0xB scope:local align:4 data:string +@1806 = .data:0x802E8F84; // type:object size:0x14 scope:local align:4 data:string +@2314 = .data:0x802E8F98; // type:object size:0xC scope:local align:4 data:string +@2316 = .data:0x802E8FA4; // type:object size:0xA scope:local align:4 data:string +@2317 = .data:0x802E8FB0; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E8FC4; // type:object size:0xC scope:local align:4 +@2315 = .data:0x802E8FD0; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E8FE4; // type:object size:0x20 scope:global align:4 +@2325 = .data:0x802E9004; // type:object size:0x13 scope:local align:4 data:string +@2326 = .data:0x802E9018; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E902C; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E9050; // type:object size:0x1A scope:local align:4 data:string +@2328 = .data:0x802E906C; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E9080; // type:object size:0x24 scope:global align:4 +@2329 = .data:0x802E90A4; // type:object size:0xD scope:local align:4 data:string +@2331 = .data:0x802E90B4; // type:object size:0xB scope:local align:4 data:string +@2332 = .data:0x802E90C0; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802E90CC; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E90E0; // type:object size:0x24 scope:global align:4 +@2333 = .data:0x802E9104; // type:object size:0xE scope:local align:4 data:string +@2335 = .data:0x802E9114; // type:object size:0xA scope:local align:4 data:string +@2334 = .data:0x802E9120; // type:object size:0xC scope:local align:4 +@2337 = .data:0x802E9144; // type:object size:0xF scope:local align:4 data:string +@2338 = .data:0x802E9154; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E9160; // type:object size:0x20 scope:global align:4 +@2340 = .data:0x802E9180; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E9190; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E91A4; // type:object size:0x24 scope:global align:4 +@2342 = .data:0x802E91C8; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E91D8; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E91E4; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E9200; // type:object size:0xF scope:local align:4 data:string +@2345 = .data:0x802E9210; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E921C; // type:object size:0x1C scope:global align:4 +@2346 = .data:0x802E9238; // type:object size:0x1C scope:local align:4 data:string +@2348 = .data:0x802E9254; // type:object size:0xF scope:local align:4 data:string +@2349 = .data:0x802E9264; // type:object size:0x14 scope:local align:4 +@2347 = .data:0x802E9278; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E9294; // type:object size:0x24 scope:global align:4 +@2351 = .data:0x802E92B8; // type:object size:0xC scope:local align:4 data:string +@2361 = .data:0x802E92F0; // type:object size:0x15 scope:local align:4 data:string +@2362 = .data:0x802E9308; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E931C; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E9348; // type:label scope:local +@579 = .data:0x802E9348; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E935C; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E936C; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E9390; // type:label scope:local +@658 = .data:0x802E9390; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E93A0; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E93B0; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E93BC; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E93E0; // type:label scope:local +@581 = .data:0x802E93E0; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E93F4; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E9404; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E9414; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E9424; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E9430; // type:object size:0x24 scope:global align:4 +@637 = .data:0x802E9458; // type:object size:0xC scope:local align:4 data:string +@667 = .data:0x802E9464; // type:object size:0x1B scope:local align:4 data:string +@1091 = .data:0x802E9480; // type:object size:0x29 scope:local align:4 +__vt__7P2DPane = .data:0x802E94AC; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E94E8; // type:label scope:local +@655 = .data:0x802E94E8; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E94F8; // type:object size:0xB scope:local align:4 data:string +@685 = .data:0x802E9504; // type:object size:0x1A scope:local align:4 data:string +@1153 = .data:0x802E9520; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E952C; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E9568; // type:label scope:local +@765 = .data:0x802E9568; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E9578; // type:object size:0xA scope:local align:4 data:string +@802 = .data:0x802E9584; // type:object size:0x18 scope:local align:4 data:string +@841 = .data:0x802E959C; // type:object size:0x50 scope:local align:4 +@843 = .data:0x802E95EC; // type:object size:0x2A scope:local align:4 data:string +@881 = .data:0x802E9618; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E9624; // type:object size:0x40 scope:global align:4 +@572 = .data:0x802E9668; // type:object size:0xE scope:local align:4 data:string +@597 = .data:0x802E9678; // type:object size:0xC scope:local align:4 data:string +@598 = .data:0x802E9684; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E96A0; // type:label scope:local +@641 = .data:0x802E96A0; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E96B0; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E96BC; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E96C8; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E9708; // type:label scope:local +@636 = .data:0x802E9708; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E9718; // type:object size:0xB scope:local align:4 data:string +@682 = .data:0x802E9724; // type:object size:0x10 scope:local align:4 data:string +@726 = .data:0x802E9734; // type:object size:0xE scope:local align:4 +@730 = .data:0x802E9744; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E9750; // type:object size:0x3C scope:global align:4 +@570 = .data:0x802E9790; // type:object size:0xD scope:local align:4 data:string +@612 = .data:0x802E97A0; // type:object size:0xE scope:local align:4 data:string +@879 = .data:0x802E97B0; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E9810; // type:label scope:local +@570 = .data:0x802E9810; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E981C; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E9828; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E9834; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E9840; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E984C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E9870; // type:label scope:local +@1273 = .data:0x802E9870; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E9884; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E9894; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E98AC; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E98C4; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E98DC; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E98F4; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E990C; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E9924; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E993C; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E9954; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E996C; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E9984; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E999C; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E99B4; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E99CC; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E99E4; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E99FC; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E9A14; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E9A2C; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E9A44; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E9A5C; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E9AA8; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E9AC0; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E9AD8; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E9AF0; // type:object size:0x17 scope:local align:4 data:string +@2238 = .data:0x802E9B08; // type:object size:0x1E scope:local align:4 data:string +@2239 = .data:0x802E9B28; // type:object size:0x1A scope:local align:4 data:string +@2589 = .data:0x802E9B44; // type:object size:0x18 scope:local align:4 data:string +@2591 = .data:0x802E9B5C; // type:object size:0xF scope:local align:4 data:string +@2592 = .data:0x802E9B6C; // type:object size:0x14 scope:local align:4 data:string +@2593 = .data:0x802E9B80; // type:object size:0x1A scope:local align:4 data:string +@2594 = .data:0x802E9B9C; // type:object size:0x10 scope:local align:4 data:string +@2595 = .data:0x802E9BAC; // type:object size:0x14 scope:local align:4 +@2590 = .data:0x802E9BC0; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E9BE4; // type:object size:0x10 scope:weak align:4 +@2660 = .data:0x802E9BF4; // type:object size:0x1D scope:local align:4 data:string +@2661 = .data:0x802E9C14; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E9C30; // type:object size:0x10 scope:weak align:4 +@2705 = .data:0x802E9C40; // type:object size:0x1C scope:local align:4 data:string +@2706 = .data:0x802E9C5C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E9C78; // type:object size:0x10 scope:weak align:4 +@2709 = .data:0x802E9C88; // type:object size:0x1B scope:local align:4 data:string +@2710 = .data:0x802E9CA4; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E9CC0; // type:object size:0x10 scope:weak align:4 +@2719 = .data:0x802E9CD0; // type:object size:0x1C scope:local align:4 data:string +@2720 = .data:0x802E9CEC; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E9D08; // type:object size:0x10 scope:weak align:4 +@2743 = .data:0x802E9D18; // type:object size:0x1C scope:local align:4 data:string +@2745 = .data:0x802E9D34; // type:object size:0x13 scope:local align:4 data:string +@2744 = .data:0x802E9D48; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E9D6C; // type:object size:0x10 scope:weak align:4 +@2816 = .data:0x802E9D7C; // type:object size:0x1C scope:local align:4 data:string +@2818 = .data:0x802E9D98; // type:object size:0x13 scope:local align:4 data:string +@2817 = .data:0x802E9DAC; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E9DD8; // type:object size:0x10 scope:weak align:4 +@2900 = .data:0x802E9DE8; // type:object size:0x1C scope:local align:4 data:string +@2901 = .data:0x802E9E04; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E9E28; // type:object size:0x10 scope:weak align:4 +@2947 = .data:0x802E9E38; // type:object size:0x1E scope:local align:4 data:string +@2948 = .data:0x802E9E58; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E9E74; // type:object size:0x10 scope:weak align:4 +@2965 = .data:0x802E9E84; // type:object size:0x1B scope:local align:4 data:string +@2966 = .data:0x802E9EA0; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E9EC4; // type:object size:0x1C scope:weak align:4 +@2999 = .data:0x802E9EE0; // type:object size:0x1E scope:local align:4 data:string +@3001 = .data:0x802E9F00; // type:object size:0x16 scope:local align:4 data:string +@3002 = .data:0x802E9F18; // type:object size:0xC scope:local align:4 +@3000 = .data:0x802E9F24; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E9F50; // type:object size:0x10 scope:weak align:4 +@3003 = .data:0x802E9F60; // type:object size:0x23 scope:local align:4 data:string +@3004 = .data:0x802E9F84; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E9FA0; // type:object size:0x10 scope:weak align:4 +@3040 = .data:0x802E9FB0; // type:object size:0x1C scope:local align:4 data:string +@3041 = .data:0x802E9FCC; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E9FE8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EA018; // type:label scope:local +@708 = .data:0x802EA018; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802EA02C; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802EA03C; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802EA04C; // type:object size:0x15 scope:local align:4 data:string +@1769 = .data:0x802EA064; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802EA070; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802EA07C; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802EA08C; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802EA0A4; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802EA0BC; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802EA0D4; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802EA0EC; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802EA104; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802EA11C; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802EA134; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802EA14C; // type:object size:0x17 scope:local align:4 data:string +@2032 = .data:0x802EA164; // type:object size:0x1C scope:local align:4 data:string +@2885 = .data:0x802EA180; // type:object size:0x13 scope:local align:4 data:string +@2887 = .data:0x802EA194; // type:object size:0x14 scope:local align:4 data:string +@2888 = .data:0x802EA1A8; // type:object size:0x1A scope:local align:4 data:string +@2889 = .data:0x802EA1C4; // type:object size:0x10 scope:local align:4 data:string +@2890 = .data:0x802EA1D4; // type:object size:0x14 scope:local align:4 +@2886 = .data:0x802EA1E8; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802EA204; // type:object size:0x10 scope:weak align:4 +@2916 = .data:0x802EA214; // type:object size:0x15 scope:local align:4 data:string +@2918 = .data:0x802EA22C; // type:object size:0x18 scope:local align:4 data:string +@2917 = .data:0x802EA244; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802EA268; // type:object size:0x10 scope:weak align:4 +@2962 = .data:0x802EA278; // type:object size:0x19 scope:local align:4 data:string +@2963 = .data:0x802EA294; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802EA2B8; // type:object size:0x10 scope:weak align:4 +@2997 = .data:0x802EA2C8; // type:object size:0x1C scope:local align:4 data:string +@2999 = .data:0x802EA2E4; // type:object size:0xF scope:local align:4 data:string +@3000 = .data:0x802EA2F4; // type:object size:0x14 scope:local align:4 data:string +@3001 = .data:0x802EA308; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802EA314; // type:object size:0x2C scope:local align:4 +@3002 = .data:0x802EA36C; // type:object size:0x9 scope:local align:4 data:string +@3003 = .data:0x802EA378; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802EA3A0; // type:label scope:local +@637 = .data:0x802EA3A0; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802EA3B0; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802EA3BC; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802EA3C8; // type:object size:0x1A scope:local align:4 data:string +@678 = .data:0x802EA3E4; // type:object size:0xD scope:local align:4 data:string +@1536 = .data:0x802EA3F4; // type:object size:0x11 scope:local align:4 data:string +@1538 = .data:0x802EA408; // type:object size:0x14 scope:local align:4 data:string +@1539 = .data:0x802EA41C; // type:object size:0x1A scope:local align:4 data:string +@1540 = .data:0x802EA438; // type:object size:0x10 scope:local align:4 data:string +@1541 = .data:0x802EA448; // type:object size:0x14 scope:local align:4 +@1537 = .data:0x802EA45C; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802EA478; // type:object size:0x10 scope:global align:4 +@1543 = .data:0x802EA4A4; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802EA4B4; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802EA4C8; // type:object size:0x14 scope:local align:4 data:string +@391 = .data:0x802EA4E0; // type:object size:0xC scope:local align:4 data:string +@409 = .data:0x802EA4EC; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802EA508; // type:label scope:local +@635 = .data:0x802EA508; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802EA518; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802EA524; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802EA53C; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802EA550; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802EA560; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802EA56C; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802EA57C; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802EA59C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802EA5AC; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802EA5C4; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802EA5D0; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802EA5E4; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802EA600; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802EA610; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802EA624; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802EA680; // type:label scope:local +@659 = .data:0x802EA680; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802EA690; // type:object size:0x9 scope:local align:4 data:string +@766 = .data:0x802EA69C; // type:object size:0x1C scope:local align:4 data:string +@968 = .data:0x802EA6B8; // type:object size:0x14 scope:local align:4 data:string +@1301 = .data:0x802EA6CC; // type:object size:0x21 scope:local align:4 data:string +@1305 = .data:0x802EA6F0; // type:object size:0x1B scope:local align:4 data:string +@1823 = .data:0x802EA70C; // type:object size:0x21 scope:local align:4 data:string +@1832 = .data:0x802EA730; // type:object size:0x24 scope:local align:4 data:string +@1833 = .data:0x802EA754; // type:object size:0xE scope:local align:4 data:string +@1835 = .data:0x802EA764; // type:object size:0x10 scope:local align:4 data:string +@1834 = .data:0x802EA774; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802EA780; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EA790; // type:label scope:local +@1607 = .data:0x802EA790; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802EA7A4; // type:object size:0x10 scope:local align:4 data:string +@1991 = .data:0x802EA7B4; // type:object size:0x10 scope:local align:4 data:string +@2303 = .data:0x802EA7C4; // type:object size:0xD scope:local align:4 data:string +@2304 = .data:0x802EA7D4; // type:object size:0x11 scope:local align:4 data:string +@2306 = .data:0x802EA7E8; // type:object size:0x29 scope:local align:4 data:string +@2305 = .data:0x802EA814; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802EA820; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802EA82C; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802EA844; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802EA850; // type:object size:0xC scope:global align:4 +@2309 = .data:0x802EA85C; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802EA870; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802EA87C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802EA888; // type:label scope:local +@1756 = .data:0x802EA888; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802EA898; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802EA8A4; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802EA8B0; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802EA8C8; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802EA8DC; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802EA8EC; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802EA8FC; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802EA910; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802EA920; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802EA92C; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802EA938; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802EA94C; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802EA95C; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802EA968; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802EA974; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802EA988; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802EA9B0; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802EA9D0; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802EA9DC; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802EA9F8; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802EAA04; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802EAA18; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802EAA3C; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802EAA50; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802EAA5C; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802EAA78; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802EAA88; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802EAAB0; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802EAAC4; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802EAAD0; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802EAADC; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802EAAEC; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802EAB00; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802EAB1C; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802EAB40; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802EAB78; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802EAB8C; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802EAB98; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802EABB4; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802EABD8; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802EABEC; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802EABF8; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802EAC08; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802EAC1C; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802EAC38; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802EAC54; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802EAC78; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802EAC9C; // type:object size:0xE scope:local align:4 data:string +@3153 = .data:0x802EACAC; // type:object size:0x15 scope:local align:4 data:string +@3154 = .data:0x802EACC4; // type:object size:0xC scope:local align:4 +@3187 = .data:0x802EACEC; // type:object size:0xF scope:local align:4 data:string +@3188 = .data:0x802EACFC; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802EAD10; // type:object size:0x1C scope:weak align:4 +@3742 = .data:0x802EAD2C; // type:object size:0x1E scope:local align:4 data:string +@3744 = .data:0x802EAD4C; // type:object size:0x17 scope:local align:4 data:string +@3745 = .data:0x802EAD64; // type:object size:0xC scope:local align:4 +@3746 = .data:0x802EAD70; // type:object size:0x18 scope:local align:4 data:string +@3747 = .data:0x802EAD88; // type:object size:0x14 scope:local align:4 +@3743 = .data:0x802EAD9C; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802EADB8; // type:object size:0x28 scope:weak align:4 +@3753 = .data:0x802EADE0; // type:object size:0x16 scope:local align:4 data:string +@3754 = .data:0x802EADF8; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802EAE04; // type:object size:0x1C scope:weak align:4 +@3821 = .data:0x802EAE20; // type:object size:0x12 scope:local align:4 data:string +@3822 = .data:0x802EAE34; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802EAE60; // type:object size:0x11 scope:local align:4 data:string +@3837 = .data:0x802EAE74; // type:object size:0xB scope:local align:4 data:string +@3838 = .data:0x802EAE80; // type:object size:0xC scope:local align:4 +@3836 = .data:0x802EAE8C; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802EAEA0; // type:object size:0x20 scope:weak align:4 +@3842 = .data:0x802EAEC0; // type:object size:0x10 scope:local align:4 data:string +@3844 = .data:0x802EAED0; // type:object size:0xA scope:local align:4 data:string +@3845 = .data:0x802EAEDC; // type:object size:0x14 scope:local align:4 +@3843 = .data:0x802EAEF0; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802EAF0C; // type:object size:0x1C scope:weak align:4 +@3856 = .data:0x802EAF28; // type:object size:0xF scope:local align:4 data:string +@3857 = .data:0x802EAF38; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802EAF44; // type:object size:0x1C scope:weak align:4 +@3880 = .data:0x802EAF60; // type:object size:0xC scope:local align:4 data:string +@3881 = .data:0x802EAF6C; // type:object size:0xD scope:local align:4 data:string +@3884 = .data:0x802EAF98; // type:object size:0x14 scope:local align:4 data:string +@3887 = .data:0x802EAFAC; // type:object size:0x9 scope:local align:4 data:string +@3888 = .data:0x802EAFB8; // type:object size:0xC scope:local align:4 +@3890 = .data:0x802EAFC4; // type:object size:0x14 scope:local align:4 +@3891 = .data:0x802EAFD8; // type:object size:0xF scope:local align:4 data:string +@3892 = .data:0x802EAFE8; // type:object size:0x1C scope:local align:4 +@3885 = .data:0x802EB004; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802EB028; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EB058; // type:label scope:local +@635 = .data:0x802EB058; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802EB06C; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802EB07C; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802EB08C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802EB0A0; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802EB0BC; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802EB0CC; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802EB0E0; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802EB0FC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EB128; // type:label scope:local +@1737 = .data:0x802EB128; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802EB138; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802EB144; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802EB15C; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802EB16C; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802EB184; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802EB198; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802EB1B8; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802EB1DC; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802EB1FC; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802EB21C; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802EB240; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802EB264; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802EB284; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802EB2A4; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802EB2C8; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802EB2E8; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802EB308; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802EB320; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802EB330; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802EB33C; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802EB348; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802EB358; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802EB364; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802EB370; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802EB38C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802EB39C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802EB3A8; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802EB3C4; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802EB3D8; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802EB3EC; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802EB3F8; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802EB40C; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802EB42C; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802EB440; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802EB454; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802EB494; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802EB4B4; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802EB4C8; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802EB4D4; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802EB4EC; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802EB500; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802EB51C; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802EB544; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802EB558; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802EB580; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802EB594; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802EB5A0; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802EB5BC; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802EB5D0; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802EB5DC; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802EB5E8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802EB5FC; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802EB634; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802EB648; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802EB658; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802EB664; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802EB670; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802EB684; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802EB6AC; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802EB6C4; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802EB6D0; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802EB6DC; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802EB6F0; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802EB700; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802EB71C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802EB740; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EB770; // type:label scope:local +@1737 = .data:0x802EB770; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802EB780; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802EB78C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802EB7A4; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802EB7B4; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802EB7CC; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802EB7E0; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802EB7F4; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802EB808; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802EB828; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802EB84C; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802EB86C; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802EB88C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802EB8B0; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802EB8D4; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802EB8F4; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802EB914; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802EB938; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802EB958; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802EB978; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802EB990; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802EB9A0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802EB9AC; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802EB9B8; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802EB9C8; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802EB9D4; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802EB9FC; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802EBA0C; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802EBA34; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802EBA48; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802EBA5C; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802EBA68; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802EBA7C; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802EBA9C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802EBAB0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802EBAC4; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802EBB04; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802EBB24; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802EBB38; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802EBB44; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802EBB5C; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802EBB70; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802EBB8C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802EBBB4; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802EBBC8; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802EBBF0; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802EBC04; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802EBC2C; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802EBC40; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802EBC54; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802EBC68; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802EBC84; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802EBCA8; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802EBCBC; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802EBCC8; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802EBCD4; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802EBD20; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802EBD34; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802EBD44; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802EBD50; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802EBD5C; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802EBD70; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802EBD98; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802EBDB0; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802EBDBC; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802EBDC8; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802EBDDC; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802EBDEC; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802EBE08; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802EBE2C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EBE60; // type:label scope:local +@1737 = .data:0x802EBE60; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802EBE70; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802EBE7C; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802EBE94; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802EBEA4; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802EBECC; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802EBEF4; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802EBF0C; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802EBF28; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802EBF40; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802EBF54; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802EBF68; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802EBF7C; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802EBF9C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802EBFC0; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802EBFE0; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802EC000; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802EC024; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802EC048; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802EC068; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802EC088; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802EC0AC; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802EC0CC; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802EC0EC; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802EC104; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802EC114; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802EC120; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802EC12C; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802EC13C; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802EC148; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802EC170; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802EC180; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802EC1A8; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802EC1BC; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802EC1D0; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802EC1DC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802EC1F0; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802EC210; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802EC224; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802EC238; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802EC278; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802EC298; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802EC2AC; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802EC2B8; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802EC2D0; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802EC2E4; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802EC300; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802EC328; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802EC33C; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802EC364; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802EC378; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802EC3A0; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802EC3B4; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802EC3C8; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802EC3E4; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802EC3FC; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802EC40C; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802EC418; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802EC428; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802EC43C; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802EC458; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802EC478; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802EC494; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802EC4AC; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802EC4B8; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802EC4CC; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802EC4E8; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802EC504; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802EC518; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802EC534; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802EC54C; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802EC55C; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802EC568; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802EC57C; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802EC59C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802EC5B4; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802EC5E0; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802EC5EC; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802EC604; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802EC618; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802EC62C; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802EC648; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802EC660; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802EC670; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802EC684; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802EC6A0; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802EC6C0; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802EC6E0; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802EC6F4; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802EC708; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802EC71C; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802EC738; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802EC75C; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802EC770; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802EC77C; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802EC788; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802EC7D4; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802EC7E8; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802EC7F8; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802EC804; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802EC810; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802EC824; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802EC84C; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802EC864; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802EC870; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802EC87C; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802EC890; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802EC8A0; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802EC8BC; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802EC8E0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EC910; // type:label scope:local +@1737 = .data:0x802EC910; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802EC920; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802EC92C; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802EC944; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802EC95C; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802EC97C; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802EC99C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802EC9BC; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802EC9DC; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802ECA00; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802ECA24; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802ECA44; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802ECA64; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802ECA84; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802ECAA4; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802ECAC4; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802ECAD8; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802ECAE8; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802ECAF4; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802ECB00; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802ECB18; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802ECB24; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802ECB30; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802ECB4C; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802ECB58; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802ECB64; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802ECB70; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802ECB84; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802ECBA0; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802ECBB8; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802ECBCC; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802ECBD8; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802ECBEC; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802ECC2C; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802ECC3C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802ECC50; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802ECC88; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802ECC9C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802ECCAC; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802ECCB8; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802ECCC4; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802ECCD8; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802ECD00; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802ECD14; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802ECD20; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802ECD2C; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802ECD40; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802ECD50; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802ECD6C; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802ECD90; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802ECDC0; // type:label scope:local +@1737 = .data:0x802ECDC0; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802ECDD0; // type:object size:0xA scope:local align:4 data:string +@1752 = .data:0x802ECDDC; // type:object size:0x23 scope:local align:4 data:string +@2115 = .data:0x802ECE00; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802ECE10; // type:object size:0xF scope:local align:4 +@2119 = .data:0x802ECE20; // type:object size:0x1D scope:local align:4 +@2121 = .data:0x802ECE40; // type:object size:0x19 scope:local align:4 +@2123 = .data:0x802ECE5C; // type:object size:0xF scope:local align:4 +@2125 = .data:0x802ECE6C; // type:object size:0x15 scope:local align:4 +@2578 = .data:0x802ECE84; // type:object size:0x27 scope:local align:4 data:string +@2774 = .data:0x802ECEAC; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802ECECC; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802ECEEC; // type:object size:0x1E scope:local align:4 data:string +@2777 = .data:0x802ECF0C; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802ECF2C; // type:object size:0x21 scope:local align:4 data:string +@2779 = .data:0x802ECF50; // type:object size:0x21 scope:local align:4 data:string +@2780 = .data:0x802ECF74; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802ECF94; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802ECFB4; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802ECFD4; // type:object size:0x1E scope:local align:4 data:string +@2784 = .data:0x802ECFF4; // type:object size:0x1E scope:local align:4 data:string +@2785 = .data:0x802ED014; // type:object size:0x13 scope:local align:4 data:string +@2787 = .data:0x802ED028; // type:object size:0xD scope:local align:4 data:string +@2786 = .data:0x802ED038; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802ED044; // type:object size:0xC scope:global align:4 +@2788 = .data:0x802ED050; // type:object size:0x12 scope:local align:4 data:string +@2790 = .data:0x802ED064; // type:object size:0xD scope:local align:4 data:string +@2791 = .data:0x802ED074; // type:object size:0xC scope:local align:4 data:string +@2792 = .data:0x802ED080; // type:object size:0xC scope:local align:4 +@2789 = .data:0x802ED08C; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802ED0A0; // type:object size:0x28 scope:global align:4 +@2793 = .data:0x802ED0C8; // type:object size:0x12 scope:local align:4 data:string +@2795 = .data:0x802ED0DC; // type:object size:0xA scope:local align:4 data:string +@2794 = .data:0x802ED0E8; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802ED0F4; // type:object size:0x1C scope:weak align:4 +@2813 = .data:0x802ED110; // type:object size:0x14 scope:local align:4 data:string +@2814 = .data:0x802ED124; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802ED130; // type:object size:0x1C scope:weak align:4 +@2903 = .data:0x802ED14C; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802ED15C; // type:object size:0x12 scope:local align:4 data:string +@2906 = .data:0x802ED170; // type:object size:0xC scope:local align:4 +@2907 = .data:0x802ED17C; // type:object size:0xF scope:local align:4 data:string +@2908 = .data:0x802ED18C; // type:object size:0x14 scope:local align:4 +@2904 = .data:0x802ED1A0; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802ED1BC; // type:object size:0x20 scope:weak align:4 +@3004 = .data:0x802ED1DC; // type:object size:0xC scope:local align:4 data:string +@3014 = .data:0x802ED214; // type:object size:0x19 scope:local align:4 data:string +@3015 = .data:0x802ED230; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802ED244; // type:object size:0x1C scope:weak align:4 +@3064 = .data:0x802ED260; // type:object size:0x1C scope:local align:4 data:string +@3069 = .data:0x802ED27C; // type:object size:0x10 scope:local align:4 data:string +@3070 = .data:0x802ED28C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802ED2A0; // type:object size:0x1C scope:weak align:4 +@3090 = .data:0x802ED2BC; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802ED2D0; // type:object size:0x1C scope:local align:4 data:string +@3093 = .data:0x802ED2EC; // type:object size:0x14 scope:local align:4 +@3091 = .data:0x802ED300; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802ED31C; // type:object size:0x24 scope:weak align:4 +@3136 = .data:0x802ED340; // type:object size:0xF scope:local align:4 data:string +@3137 = .data:0x802ED350; // type:object size:0xC scope:local align:4 +@3139 = .data:0x802ED378; // type:object size:0xF scope:local align:4 data:string +@3141 = .data:0x802ED388; // type:object size:0x9 scope:local align:4 data:string +@3142 = .data:0x802ED394; // type:object size:0x14 scope:local align:4 +@3140 = .data:0x802ED3A8; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802ED3C4; // type:object size:0x20 scope:weak align:4 +@3169 = .data:0x802ED3E4; // type:object size:0x13 scope:local align:4 data:string +@3171 = .data:0x802ED3F8; // type:object size:0xB scope:local align:4 data:string +@3172 = .data:0x802ED404; // type:object size:0xC scope:local align:4 +@3173 = .data:0x802ED410; // type:object size:0xD scope:local align:4 data:string +@3174 = .data:0x802ED420; // type:object size:0x14 scope:local align:4 +@3170 = .data:0x802ED434; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802ED450; // type:object size:0x24 scope:weak align:4 +@3181 = .data:0x802ED474; // type:object size:0x15 scope:local align:4 data:string +@3183 = .data:0x802ED48C; // type:object size:0xF scope:local align:4 data:string +@3184 = .data:0x802ED49C; // type:object size:0x1C scope:local align:4 +@3182 = .data:0x802ED4B8; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802ED4DC; // type:object size:0x24 scope:weak align:4 +@3224 = .data:0x802ED500; // type:object size:0xE scope:local align:4 data:string +@3226 = .data:0x802ED510; // type:object size:0xA scope:local align:4 data:string +@3225 = .data:0x802ED51C; // type:object size:0xC scope:local align:4 +@3228 = .data:0x802ED540; // type:object size:0x12 scope:local align:4 data:string +@3229 = .data:0x802ED554; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802ED560; // type:object size:0x1C scope:weak align:4 +@3495 = .data:0x802ED57C; // type:object size:0x10 scope:local align:4 data:string +@3497 = .data:0x802ED58C; // type:object size:0xA scope:local align:4 data:string +@3498 = .data:0x802ED598; // type:object size:0x14 scope:local align:4 +@3496 = .data:0x802ED5AC; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802ED5C8; // type:object size:0x1C scope:weak align:4 +@3561 = .data:0x802ED5E4; // type:object size:0xF scope:local align:4 data:string +@3562 = .data:0x802ED5F4; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802ED600; // type:object size:0x1C scope:weak align:4 +@3568 = .data:0x802ED638; // type:object size:0x14 scope:local align:4 data:string +@3571 = .data:0x802ED64C; // type:object size:0x9 scope:local align:4 data:string +@3572 = .data:0x802ED658; // type:object size:0xC scope:local align:4 +@3574 = .data:0x802ED664; // type:object size:0x14 scope:local align:4 +@3575 = .data:0x802ED678; // type:object size:0xF scope:local align:4 data:string +@3576 = .data:0x802ED688; // type:object size:0x1C scope:local align:4 +@3569 = .data:0x802ED6A4; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802ED6C8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802ED6F8; // type:label scope:local +@1737 = .data:0x802ED6F8; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802ED708; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802ED714; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802ED724; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802ED734; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802ED750; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802ED770; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802ED790; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802ED7B0; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802ED7D0; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802ED7F0; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802ED810; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802ED830; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802ED850; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802ED870; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802ED890; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802ED8A4; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802ED8B4; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802ED8C0; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802ED8CC; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802ED8E0; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802ED8F0; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802ED8FC; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802ED908; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802ED91C; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802ED944; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802ED958; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802ED964; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802ED978; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802ED984; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802ED998; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802ED9B4; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802ED9CC; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802ED9E0; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802ED9EC; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802EDA00; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802EDA40; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802EDA50; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802EDA5C; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802EDA94; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802EDAA8; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802EDAB4; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802EDAC0; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802EDAD4; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802EDAE4; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802EDB00; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802EDB24; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802EDB54; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802EDB78; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802EDB98; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802EDBA4; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802EDBC8; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802EDC28; // type:label scope:local +@1716 = .data:0x802EDC28; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802EDC38; // type:object size:0xB scope:local align:4 data:string +@1742 = .data:0x802EDC44; // type:object size:0xF scope:local align:4 data:string +@1809 = .data:0x802EDC54; // type:object size:0x18 scope:local align:4 data:string +@1810 = .data:0x802EDC6C; // type:object size:0x13 scope:local align:4 data:string +@1812 = .data:0x802EDC80; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802EDC8C; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802EDC98; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802EDCB8; // type:label scope:local +@1737 = .data:0x802EDCB8; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802EDCC8; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802EDCD4; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802EDCE8; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802EDCFC; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802EDD1C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802EDD34; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802EDD48; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802EDD60; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802EDD74; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802EDD94; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802EDDB4; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802EDDD4; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802EDDF4; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802EDE18; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802EDE3C; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802EDE5C; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802EDE7C; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802EDE9C; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802EDEBC; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802EDEDC; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802EDEF0; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802EDF00; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802EDF0C; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802EDF18; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802EDF2C; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802EDF3C; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802EDF48; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802EDF54; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802EDF68; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802EDF90; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802EDFA4; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802EDFB0; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802EDFC4; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802EDFD0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802EDFE4; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802EE000; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802EE01C; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802EE028; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802EE044; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802EE054; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802EE060; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802EE06C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802EE080; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802EE0A0; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802EE0D8; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802EE0EC; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802EE10C; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802EE118; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802EE12C; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802EE148; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802EE160; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802EE16C; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802EE188; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802EE19C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802EE1B0; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802EE1CC; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802EE1E0; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802EE1EC; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802EE208; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802EE21C; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802EE248; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802EE264; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802EE27C; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802EE288; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802EE29C; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802EE2D4; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802EE2E8; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802EE304; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802EE318; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802EE334; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802EE358; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802EE370; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802EE380; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802EE38C; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802EE3A0; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802EE3C0; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802EE3D8; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802EE3EC; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802EE3F8; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802EE40C; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802EE42C; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802EE43C; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802EE464; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802EE47C; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802EE488; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802EE4A4; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802EE4B8; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802EE4CC; // type:object size:0x1C scope:weak align:4 +@3665 = .data:0x802EE4E8; // type:object size:0x15 scope:local align:4 data:string +@3687 = .data:0x802EE500; // type:object size:0x12 scope:local align:4 data:string +@3688 = .data:0x802EE514; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802EE528; // type:object size:0x1C scope:weak align:4 +@3694 = .data:0x802EE544; // type:object size:0x1B scope:local align:4 data:string +@3696 = .data:0x802EE560; // type:object size:0x15 scope:local align:4 data:string +@3697 = .data:0x802EE578; // type:object size:0xC scope:local align:4 +@3695 = .data:0x802EE584; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802EE598; // type:object size:0x20 scope:weak align:4 +@3701 = .data:0x802EE5B8; // type:object size:0x28 scope:local align:4 data:string +@3703 = .data:0x802EE5E0; // type:object size:0x22 scope:local align:4 data:string +@3704 = .data:0x802EE604; // type:object size:0x14 scope:local align:4 +@3702 = .data:0x802EE618; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802EE634; // type:object size:0x20 scope:weak align:4 +@3715 = .data:0x802EE654; // type:object size:0x1C scope:local align:4 data:string +@3717 = .data:0x802EE670; // type:object size:0x11 scope:local align:4 data:string +@3718 = .data:0x802EE684; // type:object size:0x14 scope:local align:4 +@3719 = .data:0x802EE698; // type:object size:0x16 scope:local align:4 data:string +@3720 = .data:0x802EE6B0; // type:object size:0x1C scope:local align:4 +@3716 = .data:0x802EE6CC; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802EE6F0; // type:object size:0x20 scope:weak align:4 +@3731 = .data:0x802EE710; // type:object size:0x10 scope:local align:4 data:string +@3733 = .data:0x802EE720; // type:object size:0xA scope:local align:4 data:string +@3734 = .data:0x802EE72C; // type:object size:0x14 scope:local align:4 +@3732 = .data:0x802EE740; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802EE75C; // type:object size:0x1C scope:weak align:4 +@3754 = .data:0x802EE778; // type:object size:0xF scope:local align:4 data:string +@3755 = .data:0x802EE788; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802EE794; // type:object size:0x1C scope:weak align:4 +@3758 = .data:0x802EE7CC; // type:object size:0x14 scope:local align:4 data:string +@3761 = .data:0x802EE7E0; // type:object size:0x9 scope:local align:4 data:string +@3762 = .data:0x802EE7EC; // type:object size:0xC scope:local align:4 +@3764 = .data:0x802EE7F8; // type:object size:0x14 scope:local align:4 +@3765 = .data:0x802EE80C; // type:object size:0xF scope:local align:4 data:string +@3766 = .data:0x802EE81C; // type:object size:0x1C scope:local align:4 +@3759 = .data:0x802EE838; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802EE85C; // type:object size:0x30 scope:weak align:4 +@648 = .data:0x802EE890; // type:object size:0x10 scope:local align:4 data:string +@664 = .data:0x802EE8A0; // type:object size:0x1C scope:local align:4 data:string +@722 = .data:0x802EE8C0; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802EE8D8; // type:object size:0xC scope:local align:4 data:string +@635 = .data:0x802EE8E8; // type:object size:0x16 scope:local align:4 data:string +@881 = .data:0x802EE900; // type:object size:0x12 scope:local align:4 data:string +@883 = .data:0x802EE914; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802EE928; // type:label scope:local +@1134 = .data:0x802EE928; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802EE93C; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802EE94C; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802EE964; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802EE97C; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802EE994; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802EE9AC; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802EE9C4; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802EE9DC; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802EE9F4; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802EEA0C; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802EEA24; // type:object size:0x13 scope:local align:4 data:string +@2816 = .data:0x802EEA38; // type:object size:0x14 scope:local align:4 data:string +@2817 = .data:0x802EEA4C; // type:object size:0x21 scope:local align:4 data:string +@2820 = .data:0x802EEA70; // type:object size:0x1B scope:local align:4 data:string +@3075 = .data:0x802EEA8C; // type:object size:0x14 scope:local align:4 data:string +@3076 = .data:0x802EEAA0; // type:object size:0x14 scope:local align:4 data:string +@3701 = .data:0x802EEAB4; // type:object size:0x24 scope:local align:4 +@4279 = .data:0x802EEAD8; // type:object size:0x11 scope:local align:4 data:string +@5383 = .data:0x802EEAEC; // type:object size:0x17 scope:local align:4 data:string +@6157 = .data:0x802EEB04; // type:object size:0x12 scope:local align:4 data:string +@7000 = .data:0x802EEB18; // type:object size:0x1C scope:local align:4 data:string +@7002 = .data:0x802EEB34; // type:object size:0xF scope:local align:4 data:string +@7003 = .data:0x802EEB44; // type:object size:0x14 scope:local align:4 data:string +@7004 = .data:0x802EEB58; // type:object size:0xC scope:local align:4 +@7005 = .data:0x802EEB64; // type:object size:0x14 scope:local align:4 data:string +@7006 = .data:0x802EEB78; // type:object size:0x1A scope:local align:4 data:string +@7007 = .data:0x802EEB94; // type:object size:0x10 scope:local align:4 data:string +@7008 = .data:0x802EEBA4; // type:object size:0x14 scope:local align:4 +@7001 = .data:0x802EEBB8; // type:object size:0x2C scope:local align:4 +@7010 = .data:0x802EEBF4; // type:object size:0x24 scope:local align:4 data:string +@7011 = .data:0x802EEC18; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802EEC3C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EEC68; // type:label scope:local +@757 = .data:0x802EEC68; // type:object size:0x12 scope:local align:4 data:string +@767 = .data:0x802EEC7C; // type:object size:0xE scope:local align:4 data:string +@818 = .data:0x802EEC8C; // type:object size:0x15 scope:local align:4 data:string +@820 = .data:0x802EECA4; // type:object size:0x13 scope:local align:4 data:string +@830 = .data:0x802EECB8; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802EECD0; // type:label scope:local +@635 = .data:0x802EECD0; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802EECE4; // type:object size:0xD scope:local align:4 data:string +@768 = .data:0x802EECF4; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802EED0C; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802EED20; // type:object size:0x18 scope:local align:4 data:string +@801 = .data:0x802EED38; // type:object size:0x13 scope:local align:4 data:string +@828 = .data:0x802EED4C; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802EED60; // type:label scope:local +@1135 = .data:0x802EED60; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802EED6C; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802EED7C; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802EED88; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802EEDB0; // type:label scope:local +@660 = .data:0x802EEDB0; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802EEDC0; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802EEDCC; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802EEDE4; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802EEDFC; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802EEE14; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802EEE2C; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802EEE44; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802EEE5C; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802EEE74; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802EEE8C; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802EEEA8; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802EEEC4; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802EEEE0; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802EEEF8; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802EEF14; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802EEF30; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802EEF4C; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802EEF68; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802EEF80; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802EEF98; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802EEFB0; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802EEFCC; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802EEFE4; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802EEFFC; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802EF018; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802EF034; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802EF050; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802EF068; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802EF084; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802EF0A0; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802EF0BC; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802EF0D8; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802EF0F4; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802EF110; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802EF12C; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802EF148; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802EF164; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802EF180; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802EF19C; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802EF1B8; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802EF1D0; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802EF1EC; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802EF208; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802EF224; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802EF240; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802EF25C; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802EF278; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802EF294; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802EF2AC; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802EF2C8; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802EF2E0; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802EF2FC; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802EF318; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802EF330; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802EF348; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802EF360; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802EF378; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802EF390; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802EF3A8; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802EF3C0; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802EF3DC; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802EF3F4; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802EF40C; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802EF424; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802EF694; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802EF6B8; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802EF6D0; // type:label scope:local +@1737 = .data:0x802EF6D0; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EF6E0; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802EF6EC; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802EF708; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802EF728; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802EF748; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802EF768; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802EF788; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802EF7A8; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802EF7C8; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802EF7E8; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802EF808; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802EF828; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802EF848; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802EF85C; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802EF86C; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802EF878; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802EF884; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802EF894; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802EF8A0; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802EF8AC; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802EF8B8; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802EF8CC; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802EF904; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802EF918; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802EF928; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802EF934; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802EF940; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802EF954; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802EF97C; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802EF990; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802EF99C; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802EF9A8; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802EF9BC; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802EF9CC; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802EF9E8; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802EFA0C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EFA40; // type:label scope:local +@1737 = .data:0x802EFA40; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EFA50; // type:object size:0x9 scope:local align:4 data:string +@1931 = .data:0x802EFA5C; // type:object size:0x17 scope:local align:4 +@1934 = .data:0x802EFA74; // type:object size:0x17 scope:local align:4 +@2291 = .data:0x802EFA8C; // type:object size:0x1C scope:local align:4 data:string +@2292 = .data:0x802EFAA8; // type:object size:0x1E scope:local align:4 data:string +@2293 = .data:0x802EFAC8; // type:object size:0x1D scope:local align:4 data:string +@2294 = .data:0x802EFAE8; // type:object size:0x1D scope:local align:4 data:string +@2295 = .data:0x802EFB08; // type:object size:0x20 scope:local align:4 data:string +@2296 = .data:0x802EFB28; // type:object size:0x20 scope:local align:4 data:string +@2297 = .data:0x802EFB48; // type:object size:0x1D scope:local align:4 data:string +@2298 = .data:0x802EFB68; // type:object size:0x1D scope:local align:4 data:string +@2299 = .data:0x802EFB88; // type:object size:0x1E scope:local align:4 data:string +@2300 = .data:0x802EFBA8; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802EFBC8; // type:object size:0x1D scope:local align:4 data:string +@2302 = .data:0x802EFBE8; // type:object size:0x12 scope:local align:4 data:string +@2304 = .data:0x802EFBFC; // type:object size:0xD scope:local align:4 data:string +@2303 = .data:0x802EFC0C; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802EFC18; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802EFC24; // type:object size:0x12 scope:local align:4 data:string +@2307 = .data:0x802EFC38; // type:object size:0xA scope:local align:4 data:string +@2306 = .data:0x802EFC44; // type:object size:0xC scope:local align:4 +@2326 = .data:0x802EFC70; // type:object size:0x11 scope:local align:4 data:string +@2328 = .data:0x802EFC84; // type:object size:0x12 scope:local align:4 data:string +@2329 = .data:0x802EFC98; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802EFCA4; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802EFCB8; // type:object size:0x1C scope:weak align:4 +@2588 = .data:0x802EFCD4; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802EFCE4; // type:object size:0x1A scope:local align:4 data:string +@2591 = .data:0x802EFD00; // type:object size:0x14 scope:local align:4 +@2589 = .data:0x802EFD14; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802EFD30; // type:object size:0x24 scope:weak align:4 +@2601 = .data:0x802EFD54; // type:object size:0x13 scope:local align:4 data:string +@2603 = .data:0x802EFD68; // type:object size:0x1F scope:local align:4 data:string +@2604 = .data:0x802EFD88; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802EFD94; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802EFDA8; // type:object size:0x1C scope:weak align:4 +@2615 = .data:0x802EFDC4; // type:object size:0xE scope:local align:4 data:string +@2617 = .data:0x802EFDD4; // type:object size:0x9 scope:local align:4 data:string +@2618 = .data:0x802EFDE0; // type:object size:0x14 scope:local align:4 +@2616 = .data:0x802EFDF4; // type:object size:0x1C scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802EFE10; // type:object size:0x20 scope:weak align:4 +@2660 = .data:0x802EFE4C; // type:object size:0x11 scope:local align:4 data:string +@2662 = .data:0x802EFE60; // type:object size:0xD scope:local align:4 data:string +@2663 = .data:0x802EFE70; // type:object size:0xC scope:local align:4 data:string +@2664 = .data:0x802EFE7C; // type:object size:0xC scope:local align:4 +@2661 = .data:0x802EFE88; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802EFE9C; // type:object size:0x28 scope:weak align:4 +@2665 = .data:0x802EFEC4; // type:object size:0x13 scope:local align:4 data:string +@2668 = .data:0x802EFED8; // type:object size:0x9 scope:local align:4 data:string +@2669 = .data:0x802EFEE4; // type:object size:0xC scope:local align:4 +@2671 = .data:0x802EFEF0; // type:object size:0x14 scope:local align:4 +@2672 = .data:0x802EFF04; // type:object size:0xF scope:local align:4 data:string +@2673 = .data:0x802EFF14; // type:object size:0x1C scope:local align:4 +@2666 = .data:0x802EFF30; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802EFF54; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EFF88; // type:label scope:local +@1092 = .data:0x802EFF88; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802EFFA0; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802EFFB4; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802EFFC0; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802EFFD8; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802EFFF0; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802F0008; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802F0020; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802F0034; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802F0044; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802F0058; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802F0064; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802F0078; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802F00A8; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802F00B4; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802F00C0; // type:object size:0xC scope:local align:4 data:4byte +@635 = .data:0x802F00D0; // type:object size:0x10 scope:local align:4 data:string +@649 = .data:0x802F00E0; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802F00EC; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802F00F8; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802F0104; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802F0110; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802F011C; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802F0128; // type:object size:0xC scope:local align:4 data:4byte +@929 = .data:0x802F0134; // type:object size:0x20 scope:local align:4 data:string +...data.0 = .data:0x802F0158; // type:label scope:local +@635 = .data:0x802F0158; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802F0168; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802F0174; // type:object size:0xC scope:local align:4 +@650 = .data:0x802F0180; // type:object size:0xC scope:local align:4 +@652 = .data:0x802F018C; // type:object size:0xC scope:local align:4 +@727 = .data:0x802F0198; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802F01A4; // type:object size:0xC scope:local align:4 +@817 = .data:0x802F01B0; // type:object size:0xC scope:local align:4 +@824 = .data:0x802F01BC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802F01C8; // type:label scope:local +@866 = .data:0x802F01C8; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802F01DC; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802F01EC; // type:object size:0x15 scope:local align:4 data:string +@1118 = .data:0x802F0204; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802F021C; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802F0234; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802F0240; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802F024C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802F0258; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802F0264; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802F0270; // type:object size:0xC scope:local align:4 +@1273 = .data:0x802F027C; // type:object size:0x12 scope:local align:4 data:string +@1365 = .data:0x802F0290; // type:object size:0x17 scope:local align:4 data:string +@1367 = .data:0x802F02A8; // type:object size:0x17 scope:local align:4 data:string +@1366 = .data:0x802F02C0; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802F02CC; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802F02D8; // type:object size:0xC scope:weak align:4 +@1368 = .data:0x802F02E4; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802F0300; // type:object size:0xF scope:local align:4 data:string +@1371 = .data:0x802F0310; // type:object size:0x14 scope:local align:4 data:string +@1372 = .data:0x802F0324; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802F0330; // type:object size:0x14 scope:local align:4 data:string +@1374 = .data:0x802F0344; // type:object size:0x1A scope:local align:4 data:string +@1375 = .data:0x802F0360; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802F0370; // type:object size:0x14 scope:local align:4 +@1369 = .data:0x802F0384; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802F03E0; // type:label scope:local +@660 = .data:0x802F03E0; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802F03F4; // type:object size:0xD scope:local align:4 data:string +@765 = .data:0x802F0404; // type:object size:0x21 scope:local align:4 data:string +@767 = .data:0x802F0428; // type:object size:0x33 scope:local align:4 +@770 = .data:0x802F045C; // type:object size:0x1B scope:local align:4 data:string +@900 = .data:0x802F0478; // type:object size:0xC scope:local align:4 +@902 = .data:0x802F0484; // type:object size:0xC scope:local align:4 +@904 = .data:0x802F0490; // type:object size:0xC scope:local align:4 +@906 = .data:0x802F049C; // type:object size:0x12 scope:local align:4 data:string +@908 = .data:0x802F04B0; // type:object size:0x10 scope:local align:4 data:string +@907 = .data:0x802F04C0; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802F04CC; // type:object size:0x2C scope:global align:4 +@839 = .data:0x802F04F8; // type:object size:0x10 scope:local align:4 data:string +@901 = .data:0x802F0508; // type:object size:0x16 scope:local align:4 data:string +@1002 = .data:0x802F0520; // type:object size:0x26 scope:local align:4 data:string +@977 = .data:0x802F0548; // type:object size:0x15 scope:local align:4 data:string +@650 = .data:0x802F0560; // type:object size:0x10 scope:local align:4 data:string +@731 = .data:0x802F0570; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802F0588; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802F05A0; // type:object size:0x28 scope:local align:4 +@1153 = .data:0x802F05C8; // type:object size:0x14 scope:local align:4 data:string +@1154 = .data:0x802F05DC; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802F0608; // type:object size:0xB scope:local align:4 data:string +@874 = .data:0x802F0618; // type:object size:0x14 scope:local align:4 data:string +@974 = .data:0x802F062C; // type:object size:0xD scope:local align:4 data:string +@1447 = .data:0x802F063C; // type:object size:0x18 scope:local align:4 data:string +@1448 = .data:0x802F0654; // type:object size:0x1C scope:local align:4 +@1468 = .data:0x802F0670; // type:object size:0x1C scope:local align:4 +@1483 = .data:0x802F068C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802F06A8; // type:label scope:local +@866 = .data:0x802F06A8; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802F06BC; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802F06CC; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802F06DC; // type:object size:0x28 scope:local align:4 +@930 = .data:0x802F0704; // type:object size:0x16 scope:local align:4 data:string +@953 = .data:0x802F071C; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802F0748; // type:label scope:local +@71 = .data:0x802F0748; // type:object size:0x1E scope:local align:4 data:string +@72 = .data:0x802F0768; // type:object size:0x16 scope:local align:4 data:string +@73 = .data:0x802F0780; // type:object size:0xC scope:local align:4 data:string +@74 = .data:0x802F078C; // type:object size:0x9 scope:local align:4 data:string +@75 = .data:0x802F0798; // type:object size:0x10 scope:local align:4 data:string +@76 = .data:0x802F07A8; // type:object size:0xB scope:local align:4 data:string +@77 = .data:0x802F07B4; // type:object size:0xE scope:local align:4 data:string +@78 = .data:0x802F07C4; // type:object size:0xD scope:local align:4 data:string +@79 = .data:0x802F07D4; // type:object size:0xD scope:local align:4 data:string +@80 = .data:0x802F07E4; // type:object size:0xD scope:local align:4 data:string +@81 = .data:0x802F07F4; // type:object size:0x12 scope:local align:4 data:string +@82 = .data:0x802F0808; // type:object size:0xE scope:local align:4 data:string +@83 = .data:0x802F0818; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802F0830; // type:object size:0x3C scope:local align:4 +@117 = .data:0x802F086C; // type:object size:0x1B scope:local align:4 data:string +@118 = .data:0x802F0888; // type:object size:0x2E scope:local align:4 data:string +@119 = .data:0x802F08B8; // type:object size:0x2F scope:local align:4 data:string +@120 = .data:0x802F08E8; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802F0908; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802F0988; // type:label scope:local +@69 = .data:0x802F0988; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802F09B4; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802F09CC; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802F09E8; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802F0A18; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802F0A54; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802F0A8C; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802F0ACC; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802F0AF8; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802F0B18; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802F0B34; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802F0B50; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802F0B6C; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802F0B84; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802F0BB8; // type:label scope:local +@59 = .data:0x802F0BB8; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802F0BFC; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802F0C2C; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802F0C5C; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802F0C8C; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802F0CA0; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802F0CC4; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802F0CD8; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802F0CF4; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802F0D08; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802F0D28; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802F0D50; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802F0D6C; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802F0D90; // type:label scope:local +@10 = .data:0x802F0D90; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802F0DA8; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802F0DD0; // type:object size:0x1C scope:local align:4 data:string +@29 = .data:0x802F0DEC; // type:object size:0x1D scope:local align:4 data:string +@30 = .data:0x802F0E0C; // type:object size:0x17 scope:local align:4 data:string +@32 = .data:0x802F0E24; // type:object size:0x30 scope:local align:4 data:string +@33 = .data:0x802F0E54; // type:object size:0x60 scope:local align:4 data:string +@34 = .data:0x802F0EB4; // type:object size:0x4C scope:local align:4 data:string +@35 = .data:0x802F0F00; // type:object size:0x62 scope:local align:4 data:string +@36 = .data:0x802F0F64; // type:object size:0x60 scope:local align:4 data:string +InterruptPrioTable = .data:0x802F0FC8; // type:object size:0x2C scope:local align:4 data:4byte +ResetFunctionInfo = .data:0x802F0FF8; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x802F1008; // type:label scope:local +Si = .data:0x802F1008; // type:object size:0x14 scope:local align:4 data:4byte +Type = .data:0x802F101C; // type:object size:0x10 scope:local align:4 data:4byte +@460 = .data:0x802F102C; // type:object size:0xC scope:local align:4 data:string +@462 = .data:0x802F1038; // type:object size:0xF scope:local align:4 data:string +@463 = .data:0x802F1048; // type:object size:0xF scope:local align:4 data:string +@464 = .data:0x802F1058; // type:object size:0xD scope:local align:4 data:string +@465 = .data:0x802F1068; // type:object size:0xA scope:local align:4 data:string +@466 = .data:0x802F1074; // type:object size:0x10 scope:local align:4 data:string +@467 = .data:0x802F1084; // type:object size:0x14 scope:local align:4 data:string +@468 = .data:0x802F1098; // type:object size:0x12 scope:local align:4 data:string +@469 = .data:0x802F10AC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802F10C0; // type:label scope:local +@794 = .data:0x802F10C0; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802F1120; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802F112C; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802F118C; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802F11D4; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802F1254; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802F12D4; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802F1350; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802F13CC; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802F1420; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802F1494; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802F14D0; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802F151C; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802F1570; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802F15C4; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802F1620; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802F1664; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802F16A0; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802F16DC; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802F1720; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802F1764; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802F17A0; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802F17E0; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802F1848; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802F1890; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802F18D0; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802F1900; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802F1930; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802F1948; // type:label scope:local +@117 = .data:0x802F1948; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802F1A10; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802F1A48; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802F1A7C; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802F1AAC; // type:object size:0x27 scope:local align:4 data:string +@309 = .data:0x802F1AD4; // type:object size:0x3A scope:local align:4 data:string +@340 = .data:0x802F1B10; // type:object size:0x66 scope:local align:4 data:string +@341 = .data:0x802F1B78; // type:object size:0x55 scope:local align:4 data:string +@342 = .data:0x802F1BD0; // type:object size:0x5C scope:local align:4 data:string +@373 = .data:0x802F1C2C; // type:object size:0x61 scope:local align:4 data:string +@374 = .data:0x802F1C90; // type:object size:0x50 scope:local align:4 data:string +@375 = .data:0x802F1CE0; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802F1D38; // type:label scope:local +@13 = .data:0x802F1D38; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802F1D50; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802F1D5C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802F1D78; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802F1D84; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802F1DA4; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802F1DE4; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802F1E18; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802F1E50; // type:object size:0x40 scope:local align:4 data:4byte +...data.0 = .data:0x802F1E90; // type:label scope:local +@36 = .data:0x802F1E90; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802F1EAC; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802F1EC4; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802F1ED8; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802F1EEC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802F1F00; // type:label scope:local +timing = .data:0x802F1F00; // type:object size:0x10A scope:local align:4 +taps = .data:0x802F200C; // type:object size:0x32 scope:local align:4 +@89 = .data:0x802F2040; // type:object size:0x48 scope:local align:4 +@483 = .data:0x802F2088; // type:object size:0x29 scope:local align:4 data:string +@484 = .data:0x802F20B4; // type:object size:0x29 scope:local align:4 data:string +@485 = .data:0x802F20E0; // type:object size:0x29 scope:local align:4 data:string +@486 = .data:0x802F210C; // type:object size:0x29 scope:local align:4 data:string +@487 = .data:0x802F2138; // type:object size:0x29 scope:local align:4 data:string +@488 = .data:0x802F2164; // type:object size:0x29 scope:local align:4 data:string +...data.0 = .data:0x802F2190; // type:label scope:local +ResetFunctionInfo = .data:0x802F2190; // type:object size:0x10 scope:local align:4 +XYNTSC = .data:0x802F21A0; // type:object size:0x30 scope:local align:4 +XYPAL = .data:0x802F21D0; // type:object size:0x30 scope:local align:4 +@230 = .data:0x802F2200; // type:object size:0x26 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802F2228; // type:object size:0x10 scope:local align:4 +SectorSizeTable = .data:0x802F2238; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802F2258; // type:object size:0x20 scope:local align:4 +@128 = .data:0x802F2278; // type:object size:0x68 scope:local align:4 +@189 = .data:0x802F22E0; // type:object size:0x68 scope:local align:4 +@298 = .data:0x802F2348; // type:object size:0x44 scope:local align:4 +@325 = .data:0x802F238C; // type:object size:0x44 scope:local align:4 +@495 = .data:0x802F23D0; // type:object size:0x1C scope:local align:4 +@494 = .data:0x802F23EC; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802F2440; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802F247C; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802F24B8; // type:object size:0x3C scope:global align:4 +@133 = .data:0x802F24F8; // type:object size:0xF4 scope:local align:4 +@168 = .data:0x802F25EC; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802F2628; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802F2650; // type:object size:0x20 scope:local align:4 +@242 = .data:0x802F2670; // type:object size:0x5C scope:local align:4 +@241 = .data:0x802F26CC; // type:object size:0x90 scope:local align:4 +...data.0 = .data:0x802F2760; // type:label scope:local +__files = .data:0x802F2760; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802F2838; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802F2868; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802F28EC; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802F2970; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802F2A40; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802F2A88; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802F2B58; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802F2B9C; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802F2BE0; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802F2BE4; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802F2BE8; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802F2BF0; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802F2BF8; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802F2C00; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802F2C08; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802F2C10; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802F2C18; // type:label scope:local +__four_over_pi_m1 = .data:0x802F2C18; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802F2C28; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802F2CB0; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802F2CCC; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802F2CE8; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802F2CF4; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802F2D04; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802F2D18; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802F2D58; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802F2D78; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802F2DA0; // type:label scope:local +dac = .bss:0x802F2DA0; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802F2DAC; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802F2DC0; // type:label scope:local +audioproc_mq = .bss:0x802F2DC0; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802F2DE0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802F2E20; // type:label scope:local +finfo$42 = .bss:0x802F2E20; // type:object size:0x3C scope:local align:4 +cmd$43 = .bss:0x802F2E5C; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802F2E90; // type:label scope:local +dsp_buf = .bss:0x802F2E90; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802F2EA0; // type:label scope:local +dsp_buf = .bss:0x802F2EA0; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802F2EB0; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802F2EB0; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802F2F70; // type:label scope:local +mq = .bss:0x802F2F70; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802F2F90; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802F3190; // type:object size:0x8000 scope:local align:4 +finfo$221 = .bss:0x802FB190; // type:object size:0x3C scope:local align:4 +req$222 = .bss:0x802FB1CC; // type:object size:0x80 scope:local align:4 +finfo$264 = .bss:0x802FB24C; // type:object size:0x3C scope:local align:4 +req$265 = .bss:0x802FB288; // type:object size:0x20 scope:local align:4 +finfo$272 = .bss:0x802FB2A8; // type:object size:0x3C scope:local align:4 +req$273 = .bss:0x802FB2E4; // type:object size:0x20 scope:local align:4 +finfo$290 = .bss:0x802FB304; // type:object size:0x3C scope:local align:4 +finfo$307 = .bss:0x802FB340; // type:object size:0x3C scope:local align:4 +finfo$312 = .bss:0x802FB37C; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802FB3B8; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802FBBB8; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802FBC40; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802FBC40; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802FBCC0; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x8030FCC0; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x8030FD40; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8030FDC0; // type:label scope:local +DSPCH = .bss:0x8030FDC0; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x803101C0; // type:object size:0x6000 scope:local align:32 +FX_BUF = .bss:0x803161C0; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x80316240; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x80316640; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x80316A40; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x80316E40; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x80317040; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x80317240; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x80317648; // type:label scope:local +FH_TO_FAT = .bss:0x80317648; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x80317A48; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80318248; // type:label scope:local +JV_DIR_NAME = .bss:0x80318248; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x80318648; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x80318848; // type:object size:0x40 scope:local align:4 +finfo$150 = .bss:0x80318888; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x803188E0; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x803288E0; // type:label scope:local +TRACK_LIST = .bss:0x803288E0; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x803289E0; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x80328A00; // type:label scope:local +seq = .bss:0x80328A00; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x8036BE00; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x8036C200; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x8036C240; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x8036C640; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x8036C650; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x8036C6BC; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x8036C728; // type:label scope:local +player_se$123 = .bss:0x8036C728; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x8036C794; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x8036C800; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x8036C840; // type:label scope:local +bgm = .bss:0x8036C840; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x8036D578; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x8036D5E8; // type:label scope:local +seq_loadbuffer = .bss:0x8036D5E8; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x8036D9E8; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x80371D28; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x80371D68; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x80371E00; // type:label scope:local +SC = .bss:0x80371E00; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x80393850; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x80393868; // type:label scope:local +interleavebuf = .bss:0x80393868; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x803938A0; // type:label scope:local +filename = .bss:0x803938A0; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x803938E0; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x803938EC; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x80393930; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x80393948; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x80393C60; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x80394C60; // type:label scope:local +clipTable = .bss:0x80394C60; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x80394E60; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x80394EA0; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x803956A0; // type:label scope:local +fnVerts = .bss:0x803956A0; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x80396EA0; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x803986A0; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x803996A0; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x803997A0; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x8039D7A0; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x803A17A0; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x803A17E0; // type:label scope:local +@588 = .bss:0x803A17E0; // type:object size:0xC scope:local align:4 +sys = .bss:0x803A17EC; // type:object size:0x338 scope:global align:4 +dvdMesgQueue = .bss:0x803A1B24; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x803A1B44; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x803A1B64; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x803A1B84; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x803A1B98; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x803A1C98; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x803A1CEC; // type:object size:0x20 scope:local align:4 +mMemoryTable$1027 = .bss:0x803A1D0C; // type:object size:0xC scope:local align:4 +Thread = .bss:0x803A1D18; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x803A2040; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x803A4040; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x803A4360; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x803A6360; // type:label scope:local +sControllerPad = .bss:0x803A6360; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x803A6390; // type:label scope:local +GColors = .bss:0x803A6390; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x803A6398; // type:label scope:local +CardThread = .bss:0x803A6398; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x803A66A8; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x803A6718; // type:label scope:local +gameflow = .bss:0x803A6718; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x803A6A80; // type:label scope:local +flowCont = .bss:0x803A6A80; // type:object size:0x25C scope:global align:4 data:4byte +...bss.0 = .bss:0x803A6CE0; // type:label scope:local +collExtents = .bss:0x803A6CE0; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x803A6CF8; // type:label scope:local +bcs = .bss:0x803A6CF8; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803A7100; // type:label scope:local +cst = .bss:0x803A7100; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x803A7180; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803B1180; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803D7180; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D9180; // type:label scope:local +YtexObj = .bss:0x803D9180; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D91A0; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D91C0; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D94D0; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803DA4D0; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803DA510; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DAD10; // type:label scope:local +pikiInfMgr = .bss:0x803DAD10; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803DAD38; // type:label scope:local +pikiColors__4Piki = .bss:0x803DAD38; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803DAD50; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803DAD68; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803DAD68; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803DAD78; // type:label scope:local +deadPikis__8GameStat = .bss:0x803DAD78; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803DAD84; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803DAD90; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803DAD9C; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803DADA8; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803DADB4; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803DADC0; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803DADCC; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803DADD8; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803DADE4; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803DADF0; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803DAE00; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803DB200; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803DB200; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DB228; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803DB228; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803DB280; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803DB2A8; // type:object size:0x28 scope:global align:4 data:4byte +OSErrorTable = .bss:0x803DB2D0; // type:object size:0x40 scope:local align:4 +Ecb = .bss:0x803DB310; // type:object size:0xA8 scope:local align:4 +...bss.0 = .bss:0x803DB3C0; // type:label scope:local +Header = .bss:0x803DB3C0; // type:object size:0x20 scope:local align:32 +...bss.0 = .bss:0x803DB3E0; // type:label scope:local +Scb = .bss:0x803DB3E0; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803DB438; // type:label scope:local +Packet = .bss:0x803DB438; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803DB4B8; // type:object size:0xA0 scope:local align:8 +TypeTime = .bss:0x803DB558; // type:object size:0x20 scope:local align:8 +XferTime = .bss:0x803DB578; // type:object size:0x20 scope:local align:8 +TypeCallback = .bss:0x803DB598; // type:object size:0x40 scope:local align:4 +RDSTHandler = .bss:0x803DB5D8; // type:object size:0x10 scope:local align:4 data:4byte +InputBufferValid = .bss:0x803DB5E8; // type:object size:0x10 scope:local align:4 +InputBuffer = .bss:0x803DB5F8; // type:object size:0x20 scope:local align:4 +InputBufferVcount = .bss:0x803DB618; // type:object size:0x10 scope:local align:4 +cmdFixDevice$335 = .bss:0x803DB628; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x803DB638; // type:label scope:local +RunQueue = .bss:0x803DB638; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803DB738; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803DBA48; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803DBD58; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803DC020; // type:label scope:local +CommandList = .bss:0x803DC020; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803DC060; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803DC088; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803DC0B0; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803DC0D8; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803DC0E4; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803DC100; // type:label scope:local +tmpBuffer = .bss:0x803DC100; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803DC180; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803DC1B0; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803DC1D8; // type:label scope:local +WaitingQueue = .bss:0x803DC1D8; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803DC1F8; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803DC238; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803DC268; // type:label scope:local +regs = .bss:0x803DC268; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803DC2E0; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803DC358; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x803DC3B0; // type:label scope:local +Type = .bss:0x803DC3B0; // type:object size:0x10 scope:local align:4 +Origin = .bss:0x803DC3C0; // type:object size:0x30 scope:local align:4 +CmdProbeDevice = .bss:0x803DC3F0; // type:object size:0x10 scope:local align:4 +__CARDBlock = .bss:0x803DC400; // type:object size:0x210 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803DC610; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803DC630; // type:label scope:local +gxData = .bss:0x803DC630; // type:object size:0x4F4 scope:local align:4 +FifoObj = .bss:0x803DCB24; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803DCBA8; // type:label scope:local +DisplayListFifo = .bss:0x803DCBA8; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803DCBCC; // type:object size:0x4F4 scope:local align:4 +fragmentinfo = .bss:0x803DD0C0; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803DD0D0; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803DD1D0; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803DD2D0; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803DD2F8; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803DD300; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803DECB0; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803DECC4; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803DECC8; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803DECD0; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803DECD4; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803DED68; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803DED78; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803DEE20; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803DF250; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803DF258; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DF260; // type:label scope:local +Ecb = .bss:0x803DF260; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803DF278; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803DF2A0; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803E1BE0; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803E1BE0; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803E2BE0; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803E2F00; // type:object size:0x1000 scope:global align:32 +EX_DSPTASK = .bss:0x803E3F00; // type:object size:0x40 scope:global align:4 +CGRP_ARRAY = .bss:0x803E3F40; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803E3F80; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803E3FAC; // type:object size:0x1B00 scope:global align:4 +CAMERA = .bss:0x803E3FAC; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803E5AD0; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803E5C80; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803E5CC0; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803E5CC4; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803E5CC8; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803E5CCC; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803E5CD0; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803E5CD8; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803E5CDC; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$81 = .sdata:0x803E5CE0; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$82 = .sdata:0x803E5CE8; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803E5CF0; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803E5CF4; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803E5CF8; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803E5CFC; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803E5D00; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803E5D08; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803E5D10; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803E5D11; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803E5D14; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803E5D18; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803E5D20; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803E5D28; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803E5D2C; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803E5D30; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803E5D38; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803E5D40; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803E5D48; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803E5D50; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803E5D58; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803E5D60; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803E5D68; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803E5D70; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803E5D78; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803E5D80; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803E5D88; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803E5D90; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803E5D98; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803E5DA0; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803E5DA4; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803E5DA8; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803E5DAC; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803E5DAE; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803E5DB0; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803E5DB4; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803E5DB8; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803E5DBC; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803E5DC4; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803E5DC8; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803E5DD0; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803E5DD8; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803E5DE0; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803E5DE8; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803E5DF0; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803E5DF8; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803E5E00; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803E5E04; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803E5E08; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803E5E10; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E5E18; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803E5E20; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5E28; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5E30; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803E5E38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5E40; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803E5E48; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803E5E50; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E5E58; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803E5E60; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E5E68; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E5E70; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803E5E78; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803E5E80; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E5E84; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E5E88; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E5E8C; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803E5E90; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803E5E94; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803E5E98; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E5E9C; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803E5EA0; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803E5EA4; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803E5EAC; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E5EB0; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E5EB4; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803E5EBC; // type:object size:0x8 scope:local align:4 data:string +@1666 = .sdata:0x803E5EC4; // type:object size:0x1 scope:local align:4 +@1779 = .sdata:0x803E5EC8; // type:object size:0x8 scope:local align:4 data:string +@1880 = .sdata:0x803E5ED0; // type:object size:0x6 scope:local align:4 data:string +@1889 = .sdata:0x803E5ED8; // type:object size:0x4 scope:local align:4 data:float +@1890 = .sdata:0x803E5EDC; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata:0x803E5EE0; // type:object size:0x4 scope:local align:4 data:float +@1892 = .sdata:0x803E5EE4; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata:0x803E5EE8; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E5EEC; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E5EF0; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E5EF4; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E5EF8; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E5EFC; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E5F00; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E5F04; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E5F08; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E5F0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803E5F10; // type:object size:0x8 scope:local align:4 +@2189 = .sdata:0x803E5F18; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803E5F20; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803E5F28; // type:object size:0x8 scope:local align:4 +@2191 = .sdata:0x803E5F30; // type:object size:0x8 scope:local align:4 data:string +@2193 = .sdata:0x803E5F38; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5F40; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5F48; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803E5F50; // type:object size:0x8 scope:local align:4 +@2197 = .sdata:0x803E5F58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803E5F60; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E5F68; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E5F70; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803E5F78; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E5F80; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E5F84; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E5F88; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803E5F8C; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803E5F90; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E5F94; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E5F98; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E5F9C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E5FA0; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803E5FA4; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803E5FAC; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803E5FB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5FBC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5FC4; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803E5FCC; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E5FD8; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E5FDC; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E5FE0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E5FE4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E5FE8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E5FEC; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803E5FF0; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E5FF4; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E5FF8; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E5FFC; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803E6004; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803E6008; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803E600C; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803E6010; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803E6018; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803E601C; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803E6024; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803E602C; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803E6030; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803E6034; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803E603C; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803E6044; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803E604C; // type:object size:0x8 scope:local align:4 data:string +@1685 = .sdata:0x803E6054; // type:object size:0x5 scope:local align:4 data:string +@1686 = .sdata:0x803E605C; // type:object size:0x7 scope:local align:4 data:string +@1687 = .sdata:0x803E6064; // type:object size:0x6 scope:local align:4 data:string +@2219 = .sdata:0x803E606C; // type:object size:0x6 scope:local align:4 data:string +@2332 = .sdata:0x803E6074; // type:object size:0x7 scope:local align:4 data:string +@2787 = .sdata:0x803E607C; // type:object size:0x5 scope:local align:4 data:string +@2793 = .sdata:0x803E6084; // type:object size:0x8 scope:local align:4 data:string +@3635 = .sdata:0x803E608C; // type:object size:0x5 scope:local align:4 data:string +@3676 = .sdata:0x803E6094; // type:object size:0x7 scope:local align:4 data:string +@4266 = .sdata:0x803E609C; // type:object size:0x5 scope:local align:4 data:string +@4267 = .sdata:0x803E60A4; // type:object size:0x5 scope:local align:4 data:string +@4305 = .sdata:0x803E60AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E60B4; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803E60BC; // type:object size:0x8 scope:local align:4 +@4575 = .sdata:0x803E60C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E60CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E60D4; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E60DC; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803E60E4; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803E60EC; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803E60F4; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803E60FC; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803E6104; // type:object size:0x8 scope:local align:4 +@4592 = .sdata:0x803E610C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803E6114; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803E611C; // type:object size:0x8 scope:local align:4 +@4597 = .sdata:0x803E6124; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803E612C; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803E6134; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803E613C; // type:object size:0x8 scope:local align:4 +@4602 = .sdata:0x803E6144; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803E614C; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803E6154; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803E615C; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803E6164; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803E616C; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803E6178; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803E6180; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803E6184; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803E6188; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803E6190; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803E6198; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E619C; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803E61A4; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803E61A8; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803E61B0; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803E61B8; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803E61C0; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E61C4; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E61C8; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E61CC; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803E61D0; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E61D8; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803E61E0; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E61E4; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E61E8; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803E61F0; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803E61F8; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803E61FC; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803E6200; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803E6204; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803E620C; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803E6210; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803E6214; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803E621C; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803E6224; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E6228; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E622C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E6230; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E6234; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803E6238; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803E623C; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803E6244; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803E624C; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803E6254; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803E625C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6264; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E626C; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803E6274; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803E627C; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803E6284; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803E628C; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803E6298; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E629C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E62A0; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E62A4; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E62A8; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803E62AC; // type:object size:0x4 scope:global align:4 data:float +@869 = .sdata:0x803E62B0; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803E62B8; // type:object size:0x1 scope:local align:4 +@690 = .sdata:0x803E62BC; // type:object size:0x3 scope:local align:4 data:string +@845 = .sdata:0x803E62C0; // type:object size:0x8 scope:local align:4 data:string +@953 = .sdata:0x803E62C8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E62D0; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803E62D8; // type:object size:0x8 scope:local align:4 +@1006 = .sdata:0x803E62E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E62E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E62F0; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803E62F8; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E6300; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803E6308; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803E6310; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803E6318; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E6320; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803E6328; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803E6330; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803E6338; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6340; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6348; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803E6350; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803E6358; // type:object size:0x8 scope:local align:4 +@727 = .sdata:0x803E6360; // type:object size:0x3 scope:local align:4 data:string +@728 = .sdata:0x803E6364; // type:object size:0x5 scope:local align:4 data:string +@424 = .sdata:0x803E6370; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6378; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6380; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803E6388; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6390; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E6398; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E63A0; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E63A4; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E63A8; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E63AC; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E63B0; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803E63B4; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E63B8; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803E63BC; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803E63C0; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803E63C4; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803E63C8; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803E63CC; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803E63D0; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803E63D4; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E63D8; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E63DC; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E63E0; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E63E4; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803E63E8; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803E63EC; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803E63F0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E63F4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E63F8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E63FC; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E6400; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803E6404; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803E6408; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E640C; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803E6410; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803E6414; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803E6418; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E641C; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803E6420; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E6428; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E6430; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803E6438; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E6440; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E6448; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803E6450; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803E6454; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803E645C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803E6460; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803E6468; // type:object size:0x8 scope:local align:4 +@715 = .sdata:0x803E6470; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6478; // type:object size:0x8 scope:local align:4 +@586 = .sdata:0x803E6480; // type:object size:0x5 scope:local align:4 data:string +@587 = .sdata:0x803E6488; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803E6490; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803E6494; // type:object size:0x4 scope:global align:4 data:4byte +@684 = .sdata:0x803E6498; // type:object size:0x1 scope:local align:4 +@685 = .sdata:0x803E649C; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E64A0; // type:object size:0x7 scope:local align:4 data:string +@910 = .sdata:0x803E64A8; // type:object size:0x6 scope:local align:4 data:string +@911 = .sdata:0x803E64B0; // type:object size:0x7 scope:local align:4 data:string +@912 = .sdata:0x803E64B8; // type:object size:0x5 scope:local align:4 data:string +@913 = .sdata:0x803E64C0; // type:object size:0x3 scope:local align:4 data:string +@914 = .sdata:0x803E64C4; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803E64CC; // type:object size:0x5 scope:local align:4 data:string +@983 = .sdata:0x803E64D4; // type:object size:0x7 scope:local align:4 data:string +@1088 = .sdata:0x803E64DC; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803E64E0; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803E64E8; // type:object size:0x8 scope:local align:4 +@1291 = .sdata:0x803E64F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E64F8; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803E6500; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E6508; // type:object size:0x4 scope:local align:4 data:string +@1313 = .sdata:0x803E650C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6514; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E651C; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803E6524; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803E652C; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E6534; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803E653C; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E6544; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803E654C; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803E6554; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803E6560; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803E6568; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803E6570; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803E6574; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803E6578; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803E657C; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803E6580; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803E6584; // type:object size:0x8 scope:local align:4 data:byte +@1344 = .sdata:0x803E658C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E6590; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E6594; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803E6598; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata:0x803E659C; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E65A0; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata:0x803E65A4; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E65A8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E65AC; // type:object size:0x5 scope:local align:4 data:string +@1948 = .sdata:0x803E65B4; // type:object size:0x3 scope:local align:4 data:string +@1949 = .sdata:0x803E65B8; // type:object size:0x6 scope:local align:4 data:string +@2081 = .sdata:0x803E65C0; // type:object size:0x6 scope:local align:4 data:string +@2083 = .sdata:0x803E65C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E65D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E65D8; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E65E0; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803E65E8; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E65F0; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803E65F8; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E6600; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E6608; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E660C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E6610; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E6614; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E6618; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E661C; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E6620; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E6624; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E6628; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E662C; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E6630; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E6634; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E6638; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803E663C; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E6640; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E6644; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E6648; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E664C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E6650; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E6654; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E6658; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E665C; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E6660; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E6664; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E6668; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E666C; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E6670; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E6674; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E6678; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803E667C; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E6680; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E6684; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E668C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6694; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803E669C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E66A4; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E66AC; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803E66B8; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803E66C0; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803E66C4; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803E66C8; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803E66CC; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803E66D0; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803E66D4; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803E66DC; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803E66E4; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E66E8; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E66F0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E66F8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6700; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803E6708; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6710; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803E6718; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E6720; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E6728; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803E6730; // type:object size:0x8 scope:local align:4 +@1808 = .sdata:0x803E6738; // type:object size:0x5 scope:local align:4 data:string +@1902 = .sdata:0x803E6740; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803E6748; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803E6750; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803E6758; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803E6760; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803E6768; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803E6770; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803E6778; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803E6780; // type:object size:0x1 scope:local align:4 +@2274 = .sdata:0x803E6784; // type:object size:0x4 scope:local align:4 data:4byte +@2276 = .sdata:0x803E6788; // type:object size:0x4 scope:local align:4 data:4byte +@2278 = .sdata:0x803E678C; // type:object size:0x4 scope:local align:4 data:4byte +@2280 = .sdata:0x803E6790; // type:object size:0x4 scope:local align:4 data:4byte +@2281 = .sdata:0x803E6794; // type:object size:0x4 scope:local align:4 data:4byte +@2283 = .sdata:0x803E6798; // type:object size:0x4 scope:local align:4 data:4byte +@2285 = .sdata:0x803E679C; // type:object size:0x4 scope:local align:4 data:4byte +@2287 = .sdata:0x803E67A0; // type:object size:0x4 scope:local align:4 data:4byte +@2289 = .sdata:0x803E67A4; // type:object size:0x4 scope:local align:4 data:4byte +@2291 = .sdata:0x803E67A8; // type:object size:0x4 scope:local align:4 data:4byte +@2293 = .sdata:0x803E67AC; // type:object size:0x4 scope:local align:4 data:4byte +@2294 = .sdata:0x803E67B0; // type:object size:0x4 scope:local align:4 data:4byte +@2295 = .sdata:0x803E67B4; // type:object size:0x4 scope:local align:4 data:4byte +@2296 = .sdata:0x803E67B8; // type:object size:0x5 scope:local align:4 data:string +@2297 = .sdata:0x803E67C0; // type:object size:0x5 scope:local align:4 data:string +@2299 = .sdata:0x803E67C8; // type:object size:0x7 scope:local align:4 data:string +@2463 = .sdata:0x803E67D0; // type:object size:0x4 scope:local align:4 data:string +@2464 = .sdata:0x803E67D4; // type:object size:0x7 scope:local align:4 data:string +@2466 = .sdata:0x803E67DC; // type:object size:0x8 scope:local align:4 data:string +@2502 = .sdata:0x803E67E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E67EC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E67F4; // type:object size:0x8 scope:local align:4 +@2505 = .sdata:0x803E67FC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6804; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803E680C; // type:object size:0x8 scope:local align:4 +@2516 = .sdata:0x803E6814; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E681C; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803E6824; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E682C; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803E6834; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E683C; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803E6844; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803E684C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803E6854; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803E685C; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803E6868; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803E6870; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803E6874; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803E6878; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803E687C; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803E6884; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803E688C; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803E6894; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803E689C; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803E68A0; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803E68A8; // type:object size:0x5 scope:local align:4 data:string +@944 = .sdata:0x803E68B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E68B8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E68C0; // type:object size:0x8 scope:local align:4 +@947 = .sdata:0x803E68C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E68D0; // type:object size:0x8 scope:local align:4 +@949 = .sdata:0x803E68D8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E68E0; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803E68E8; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803E68F0; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803E68F8; // type:object size:0x8 scope:local align:4 +@692 = .sdata:0x803E6900; // type:object size:0x5 scope:local align:4 data:string +@893 = .sdata:0x803E6908; // type:object size:0x7 scope:local align:4 data:string +@894 = .sdata:0x803E6910; // type:object size:0x5 scope:local align:4 data:string +@973 = .sdata:0x803E6918; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6920; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6928; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803E6930; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803E6938; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803E6940; // type:object size:0x5 scope:local align:4 data:string +@1146 = .sdata:0x803E6948; // type:object size:0x1 scope:local align:4 +@1190 = .sdata:0x803E694C; // type:object size:0x7 scope:local align:4 data:string +@1192 = .sdata:0x803E6954; // type:object size:0x6 scope:local align:4 data:string +@1201 = .sdata:0x803E695C; // type:object size:0x3 scope:local align:4 data:string +@1226 = .sdata:0x803E6960; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6968; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6970; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803E6978; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6980; // type:object size:0x8 scope:local align:4 +@1231 = .sdata:0x803E6988; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6990; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803E6998; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803E69A0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E69A8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E69B0; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803E69B8; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803E69C0; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803E69C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E69D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E69D8; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803E69E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E69E8; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803E69F0; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E69F8; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803E69FC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6A04; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803E6A0C; // type:object size:0x8 scope:local align:4 +@1118 = .sdata:0x803E6A18; // type:object size:0x5 scope:local align:4 data:string +@1333 = .sdata:0x803E6A20; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803E6A24; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803E6A2C; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803E6A34; // type:object size:0x1 scope:local align:4 +@1466 = .sdata:0x803E6A38; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6A40; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6A48; // type:object size:0x8 scope:local align:4 +@1471 = .sdata:0x803E6A50; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6A58; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803E6A60; // type:object size:0x8 scope:local align:4 +@1572 = .sdata:0x803E6A68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6A70; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803E6A78; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E6A80; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803E6A88; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803E6A90; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803E6A98; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E6A9C; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E6AA0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E6AA4; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803E6AA8; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E6AAC; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E6AB0; // type:object size:0x1 scope:local align:4 +@2284 = .sdata:0x803E6AB4; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata:0x803E6AB8; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803E6ABC; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803E6AC0; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E6AC4; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803E6AC8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803E6ACC; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E6AD0; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803E6AD4; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E6AD8; // type:object size:0x4 scope:local align:4 data:float +@2710 = .sdata:0x803E6ADC; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata:0x803E6AE0; // type:object size:0x4 scope:local align:4 data:float +@2712 = .sdata:0x803E6AE4; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata:0x803E6AE8; // type:object size:0x4 scope:local align:4 data:float +@2714 = .sdata:0x803E6AEC; // type:object size:0x4 scope:local align:4 data:float +@2715 = .sdata:0x803E6AF0; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803E6AF4; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803E6AF8; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E6AFC; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E6B00; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata:0x803E6B04; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E6B08; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E6B0C; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E6B10; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata:0x803E6B14; // type:object size:0x7 scope:local align:4 data:string +@3041 = .sdata:0x803E6B1C; // type:object size:0x4 scope:local align:4 data:string +@3044 = .sdata:0x803E6B20; // type:object size:0x5 scope:local align:4 data:string +@3045 = .sdata:0x803E6B28; // type:object size:0x6 scope:local align:4 data:string +@3046 = .sdata:0x803E6B30; // type:object size:0x7 scope:local align:4 data:string +@3048 = .sdata:0x803E6B38; // type:object size:0x6 scope:local align:4 data:string +@3049 = .sdata:0x803E6B40; // type:object size:0x8 scope:local align:4 data:string +@3070 = .sdata:0x803E6B48; // type:object size:0x4 scope:local align:4 data:string +@3071 = .sdata:0x803E6B4C; // type:object size:0x6 scope:local align:4 data:string +@3097 = .sdata:0x803E6B54; // type:object size:0x3 scope:local align:4 data:string +@3099 = .sdata:0x803E6B58; // type:object size:0x3 scope:local align:4 data:string +@3100 = .sdata:0x803E6B5C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803E6B64; // type:object size:0x8 scope:local align:4 +@3130 = .sdata:0x803E6B6C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6B74; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6B7C; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803E6B84; // type:object size:0x8 scope:local align:4 +@3137 = .sdata:0x803E6B8C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6B94; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E6B9C; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803E6BA4; // type:object size:0x8 scope:local align:4 +@3323 = .sdata:0x803E6BAC; // type:object size:0x7 scope:local align:4 data:string +@3337 = .sdata:0x803E6BB4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6BBC; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803E6BC4; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803E6BCC; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E6BD4; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803E6BDC; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803E6BE4; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803E6BEC; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803E6BF4; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803E6BFC; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803E6C08; // type:object size:0x4 scope:local align:4 data:float +@1227 = .sdata:0x803E6C0C; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata:0x803E6C10; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803E6C14; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E6C18; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E6C1C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E6C20; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803E6C24; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803E6C28; // type:object size:0x4 scope:local align:4 data:float +@1243 = .sdata:0x803E6C2C; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E6C30; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E6C34; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E6C38; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E6C3C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E6C40; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E6C44; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803E6C4C; // type:object size:0x6 scope:local align:4 data:string +@1310 = .sdata:0x803E6C54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6C5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6C64; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E6C6C; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803E6C74; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803E6C7C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E6C84; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6C8C; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E6C94; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803E6C9C; // type:object size:0x8 scope:local align:4 +@1414 = .sdata:0x803E6CA4; // type:object size:0x7 scope:local align:4 data:string +@1428 = .sdata:0x803E6CAC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6CB4; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803E6CBC; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803E6CC8; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803E6CD0; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803E6CD4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6CDC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6CE4; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803E6CEC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6CF4; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E6CFC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6D04; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803E6D0C; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E6D18; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata:0x803E6D1C; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata:0x803E6D20; // type:object size:0x4 scope:local align:4 data:float +@760 = .sdata:0x803E6D24; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E6D28; // type:object size:0x1 scope:local align:4 +@861 = .sdata:0x803E6D2C; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata:0x803E6D30; // type:object size:0x4 scope:local align:4 data:float +@863 = .sdata:0x803E6D34; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803E6D38; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803E6D3C; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata:0x803E6D40; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata:0x803E6D44; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata:0x803E6D48; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E6D4C; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803E6D50; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E6D54; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E6D58; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E6D5C; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E6D60; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803E6D68; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E6D6C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E6D70; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E6D74; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E6D78; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E6D7C; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E6D80; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6D88; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6D90; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803E6D98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6DA0; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E6DA8; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E6DB0; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803E6DB8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E6DC0; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803E6DC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E6DD0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E6DD8; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803E6DE0; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803E6DE8; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803E6DF0; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803E6DF8; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803E6DFC; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E6E04; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6E0C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6E14; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E6E1C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6E24; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803E6E2C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6E38; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803E6E40; // type:object size:0x4 scope:local align:4 data:string +@807 = .sdata:0x803E6E44; // type:object size:0x8 scope:local align:4 data:string +@809 = .sdata:0x803E6E4C; // type:object size:0x8 scope:local align:4 data:string +@839 = .sdata:0x803E6E54; // type:object size:0x4 scope:local align:4 data:string +@840 = .sdata:0x803E6E58; // type:object size:0x7 scope:local align:4 data:string +@871 = .sdata:0x803E6E60; // type:object size:0x4 scope:local align:4 data:string +@878 = .sdata:0x803E6E64; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E6E6C; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E6E74; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803E6E7C; // type:object size:0x8 scope:local align:4 +@882 = .sdata:0x803E6E84; // type:object size:0x8 scope:local align:4 data:string +@884 = .sdata:0x803E6E8C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6E94; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6E9C; // type:object size:0x8 scope:local align:4 +@887 = .sdata:0x803E6EA4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6EAC; // type:object size:0x8 scope:local align:4 +@889 = .sdata:0x803E6EB4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803E6EBC; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803E6EC4; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803E6ECC; // type:object size:0x8 scope:local align:4 +@1193 = .sdata:0x803E6ED8; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803E6EDC; // type:object size:0x4 scope:local align:4 data:float +@1196 = .sdata:0x803E6EE0; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E6EE4; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E6EE8; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803E6EEC; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E6EF0; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803E6EF4; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E6EF8; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E6EFC; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E6F00; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803E6F04; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E6F08; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E6F0C; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E6F10; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E6F14; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803E6F18; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E6F1C; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803E6F20; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803E6F24; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803E6F28; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E6F2C; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803E6F30; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E6F34; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803E6F38; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803E6F3C; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E6F40; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803E6F44; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata:0x803E6F48; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata:0x803E6F4C; // type:object size:0x7 scope:local align:4 data:string +@1483 = .sdata:0x803E6F54; // type:object size:0x7 scope:local align:4 data:string +@1508 = .sdata:0x803E6F5C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6F64; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6F6C; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E6F74; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803E6F7C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803E6F84; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E6F8C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6F94; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803E6F9C; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803E6FA4; // type:object size:0x1 scope:local align:4 +@1793 = .sdata:0x803E6FA8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E6FB0; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803E6FB8; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803E6FC0; // type:object size:0x8 scope:local align:4 +@941 = .sdata:0x803E6FC8; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803E6FD0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6FD8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6FE0; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803E6FE8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6FF0; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803E6FF8; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803E7000; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E7008; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803E7010; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E7018; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E701C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E7020; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E7024; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E7028; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E702C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E7030; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E7034; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803E7038; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803E703C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E7040; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803E7044; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803E7048; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803E704C; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803E7050; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803E7054; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803E7058; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803E705C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E7060; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803E7064; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E7068; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E706C; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E7070; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E7074; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E7078; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803E707C; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803E7080; // type:object size:0x5 scope:local align:4 data:string +@2565 = .sdata:0x803E7088; // type:object size:0x3 scope:local align:4 data:string +@2567 = .sdata:0x803E708C; // type:object size:0x3 scope:local align:4 data:string +@2575 = .sdata:0x803E7090; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803E7094; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata:0x803E7098; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata:0x803E709C; // type:object size:0x4 scope:local align:4 data:float +@2579 = .sdata:0x803E70A0; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803E70A4; // type:object size:0x4 scope:local align:4 data:float +@2584 = .sdata:0x803E70A8; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata:0x803E70AC; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata:0x803E70B0; // type:object size:0x4 scope:local align:4 data:float +@2651 = .sdata:0x803E70B4; // type:object size:0x5 scope:local align:4 data:string +@2894 = .sdata:0x803E70BC; // type:object size:0x7 scope:local align:4 data:string +@2897 = .sdata:0x803E70C4; // type:object size:0x6 scope:local align:4 data:string +@2937 = .sdata:0x803E70CC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E70D0; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E70D4; // type:object size:0x4 scope:local align:4 data:float +@2940 = .sdata:0x803E70D8; // type:object size:0x4 scope:local align:4 data:float +@2941 = .sdata:0x803E70DC; // type:object size:0x4 scope:local align:4 data:float +@2942 = .sdata:0x803E70E0; // type:object size:0x4 scope:local align:4 data:float +@2943 = .sdata:0x803E70E4; // type:object size:0x4 scope:local align:4 data:float +@2944 = .sdata:0x803E70E8; // type:object size:0x4 scope:local align:4 data:float +@2945 = .sdata:0x803E70EC; // type:object size:0x4 scope:local align:4 data:float +@2946 = .sdata:0x803E70F0; // type:object size:0x4 scope:local align:4 data:float +@2947 = .sdata:0x803E70F4; // type:object size:0x4 scope:local align:4 data:float +@2948 = .sdata:0x803E70F8; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803E70FC; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803E7100; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803E7104; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803E7108; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803E710C; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803E7110; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803E7114; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata:0x803E7118; // type:object size:0x4 scope:local align:4 data:float +@3217 = .sdata:0x803E711C; // type:object size:0x4 scope:local align:4 data:float +@3320 = .sdata:0x803E7120; // type:object size:0x4 scope:local align:4 data:float +@3321 = .sdata:0x803E7124; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata:0x803E7128; // type:object size:0x4 scope:local align:4 data:float +@3323 = .sdata:0x803E712C; // type:object size:0x4 scope:local align:4 data:float +@3324 = .sdata:0x803E7130; // type:object size:0x4 scope:local align:4 data:float +@3325 = .sdata:0x803E7134; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata:0x803E7138; // type:object size:0x4 scope:local align:4 data:float +@3523 = .sdata:0x803E713C; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E7140; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E7144; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E7148; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E714C; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E7150; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E7154; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E7158; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata:0x803E715C; // type:object size:0x8 scope:local align:4 data:string +@3582 = .sdata:0x803E7164; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata:0x803E7168; // type:object size:0x4 scope:local align:4 data:float +@3584 = .sdata:0x803E716C; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata:0x803E7170; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata:0x803E7174; // type:object size:0x8 scope:local align:4 data:string +@3835 = .sdata:0x803E717C; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata:0x803E7180; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata:0x803E7184; // type:object size:0x4 scope:local align:4 data:float +@4478 = .sdata:0x803E7188; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata:0x803E718C; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata:0x803E7190; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata:0x803E7194; // type:object size:0x4 scope:local align:4 data:float +@4607 = .sdata:0x803E7198; // type:object size:0x4 scope:local align:4 data:float +@4608 = .sdata:0x803E719C; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata:0x803E71A0; // type:object size:0x4 scope:local align:4 data:float +@4610 = .sdata:0x803E71A4; // type:object size:0x4 scope:local align:4 data:float +@4611 = .sdata:0x803E71A8; // type:object size:0x4 scope:local align:4 data:float +@4612 = .sdata:0x803E71AC; // type:object size:0x4 scope:local align:4 data:float +@4613 = .sdata:0x803E71B0; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata:0x803E71B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E71BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E71C4; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803E71CC; // type:object size:0x8 scope:local align:4 +@4639 = .sdata:0x803E71D4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E71DC; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803E71E4; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E71EC; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803E71F4; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803E71FC; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E7204; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E720C; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803E7214; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803E721C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E7224; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E722C; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803E7234; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803E723C; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803E7244; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E724C; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803E7254; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803E7260; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803E7264; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803E7268; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E726C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E7270; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803E7274; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803E7278; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E727C; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E7280; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E7284; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E7288; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E728C; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E7290; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E7294; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E7298; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E729C; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803E72A0; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803E72A4; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803E72A8; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803E72AC; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803E72B0; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803E72B4; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E72B8; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803E72BC; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803E72C0; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803E72C4; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803E72C8; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803E72CC; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803E72D0; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803E72D4; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803E72D8; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803E72DC; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E72E0; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E72E4; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803E72E8; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E72EC; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803E72F0; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803E72F4; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803E72F8; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803E72FC; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803E7300; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803E7304; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803E7308; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803E730C; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803E7310; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803E7314; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803E7318; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803E7320; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803E7324; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803E7328; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803E732C; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803E7330; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803E7338; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E733C; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803E7344; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803E734C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E7354; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803E735C; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803E7364; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803E736C; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803E7370; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803E7378; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803E7380; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803E7388; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803E7390; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803E7398; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803E739C; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803E73A0; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803E73A4; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803E73A8; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803E73AC; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803E73B0; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803E73B4; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E73B8; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803E73BC; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803E73C0; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803E73C4; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E73C8; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E73CC; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E73D0; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E73D4; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E73D8; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E73DC; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803E73E0; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E73E4; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E73E8; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803E73EC; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E73F4; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803E73FC; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803E7400; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803E7408; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803E7410; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803E7414; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803E7418; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803E741C; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803E7420; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803E7424; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803E7428; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803E7430; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803E7438; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803E7440; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803E7444; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803E7448; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803E7450; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E7458; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803E7460; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803E7468; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803E7470; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7478; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7480; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803E7488; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7490; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803E7498; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803E74A0; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803E74A8; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803E74B0; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803E74B8; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803E74C0; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803E74C8; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803E74D0; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803E74D8; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803E74E0; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803E74E8; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803E74F0; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803E74F4; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803E74FC; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803E7500; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803E7508; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803E7510; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E7518; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803E7520; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803E7528; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803E7530; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803E7534; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803E753C; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803E7544; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803E754C; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803E7554; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803E7558; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803E755C; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803E7560; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803E7564; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803E7568; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803E756C; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803E7570; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803E7574; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803E7578; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803E757C; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803E7580; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803E7584; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803E7588; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803E758C; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803E7590; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803E7594; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803E7598; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803E759C; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803E75A0; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803E75A4; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803E75A8; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803E75AC; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803E75B0; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803E75B4; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803E75B8; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803E75BC; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803E75C0; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803E75C4; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803E75C8; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803E75CC; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803E75D0; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803E75D4; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803E75D8; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803E75DC; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803E75E0; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803E75E4; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803E75E8; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803E75EC; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803E75F0; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803E75F4; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803E75F8; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803E75FC; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E7600; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E7604; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E7608; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E760C; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E7610; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E7614; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E7618; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E761C; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E7620; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E7624; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E7628; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E762C; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E7630; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E7634; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803E7638; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E763C; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E7640; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E7644; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E7648; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E764C; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E7650; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803E7654; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803E7658; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803E765C; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803E7660; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E7664; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803E7668; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E766C; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E7670; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803E7674; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803E7678; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E767C; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803E7680; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803E7684; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E7688; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803E768C; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803E7690; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803E7694; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E7698; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E769C; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E76A0; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E76A4; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E76A8; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E76AC; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E76B0; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803E76B4; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803E76B8; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803E76BC; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E76C0; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E76C4; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803E76C8; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E76CC; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E76D0; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E76D4; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E76D8; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E76DC; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E76E0; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803E76E4; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803E76E8; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803E76EC; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803E76F0; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803E76F4; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803E76F8; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803E76FC; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803E7700; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803E7704; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803E7708; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803E770C; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803E7710; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803E7714; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E7718; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803E771C; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803E7720; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803E7724; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803E7728; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E772C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E7730; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E7734; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803E7738; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E773C; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803E7740; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803E7744; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803E7748; // type:object size:0x4 scope:local align:4 data:float +@2556 = .sdata:0x803E774C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7754; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E775C; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803E7764; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803E776C; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803E7774; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803E777C; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803E7788; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E778C; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E7790; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E7794; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E7798; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803E779C; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E77A0; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803E77A4; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803E77A8; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E77AC; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803E77B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E77BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E77C4; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803E77CC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E77D4; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803E77DC; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803E77E8; // type:object size:0x4 scope:local align:4 data:4byte +@1204 = .sdata:0x803E77EC; // type:object size:0x7 scope:local align:4 data:string +@1205 = .sdata:0x803E77F4; // type:object size:0x8 scope:local align:4 data:string +@1693 = .sdata:0x803E77FC; // type:object size:0x3 scope:local align:4 data:string +@2014 = .sdata:0x803E7800; // type:object size:0x7 scope:local align:4 data:string +@2249 = .sdata:0x803E7808; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7810; // type:object size:0x8 scope:local align:4 +@2254 = .sdata:0x803E7818; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E7820; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E7828; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803E7830; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803E7834; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E7838; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E783C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E7840; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E7844; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E7848; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803E784C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7854; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E785C; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803E7864; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803E7870; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803E7878; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7880; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7888; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803E7890; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7898; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803E78A0; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E78A8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E78B0; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803E78B8; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803E78C0; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E78C4; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E78C8; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803E78CC; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E78D0; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803E78D4; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E78D8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E78DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803E78E0; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803E78E8; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803E78F0; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803E78F8; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803E7900; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803E7908; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803E7910; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E7914; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E7918; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E791C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7924; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E792C; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803E7934; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803E7940; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E7944; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E7948; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803E794C; // type:object size:0x7 scope:local align:4 data:string +@2065 = .sdata:0x803E7954; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803E7958; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata:0x803E795C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E7960; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803E7968; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803E7970; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803E7978; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803E7980; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803E7988; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803E7990; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803E7998; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803E79A0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803E79A8; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803E79B0; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803E79B8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803E79C0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803E79C8; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803E79D0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803E79D8; // type:object size:0x8 scope:local align:4 +@643 = .sdata:0x803E79E0; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E79E4; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803E79E8; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata:0x803E79EC; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803E79F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E79F4; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803E79FC; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803E7A04; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E7A10; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803E7A18; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803E7A20; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803E7A28; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E7A2C; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E7A30; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E7A34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E7A38; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803E7A40; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E7A48; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803E7A50; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803E7A58; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803E7A60; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803E7A68; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803E7A70; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803E7A78; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803E7A80; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803E7A88; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803E7A90; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E7A98; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E7A9C; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E7AA0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803E7AA4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803E7AA8; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803E7AAC; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E7AB0; // type:object size:0x5 scope:local align:4 data:string +@938 = .sdata:0x803E7AB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__22Receiver<10AICreature> = .sdata:0x803E7AC0; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803E7AC8; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803E7AD0; // type:object size:0x8 scope:local align:4 +@1161 = .sdata:0x803E7AD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7AE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7AE8; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E7AF0; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803E7AF8; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E7B00; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E7B08; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7B10; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7B18; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7B20; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7B28; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7B30; // type:object size:0x8 scope:local align:4 +@1180 = .sdata:0x803E7B38; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803E7B40; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E7B44; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803E7B48; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E7B4C; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E7B50; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E7B54; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E7B58; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E7B5C; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E7B60; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E7B64; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E7B68; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E7B6C; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E7B70; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803E7B74; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E7B78; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E7B7C; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E7B80; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E7B84; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E7B88; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E7B8C; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E7B90; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E7B94; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E7B98; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E7B9C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E7BA0; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E7BA4; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E7BA8; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803E7BAC; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata:0x803E7BB0; // type:object size:0x4 scope:local align:4 data:float +@1703 = .sdata:0x803E7BB4; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803E7BB8; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803E7BBC; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803E7BC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803E7BC4; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803E7BCC; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803E7BD4; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803E7BDC; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803E7BE4; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7BEC; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803E7BF4; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803E7C00; // type:object size:0x4 scope:global align:4 data:4byte +@2105 = .sdata:0x803E7C04; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803E7C08; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata:0x803E7C0C; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E7C10; // type:object size:0x7 scope:local align:4 data:string +@2501 = .sdata:0x803E7C18; // type:object size:0x7 scope:local align:4 data:string +@2502 = .sdata:0x803E7C20; // type:object size:0x8 scope:local align:4 data:string +@2572 = .sdata:0x803E7C28; // type:object size:0x6 scope:local align:4 data:string +@2573 = .sdata:0x803E7C30; // type:object size:0x7 scope:local align:4 data:string +@2574 = .sdata:0x803E7C38; // type:object size:0x6 scope:local align:4 data:string +@2575 = .sdata:0x803E7C40; // type:object size:0x7 scope:local align:4 data:string +@2576 = .sdata:0x803E7C48; // type:object size:0x8 scope:local align:4 data:string +@2577 = .sdata:0x803E7C50; // type:object size:0x2 scope:local align:4 data:string +@2579 = .sdata:0x803E7C54; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803E7C58; // type:object size:0x4 scope:local align:4 data:float +@2581 = .sdata:0x803E7C5C; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata:0x803E7C60; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata:0x803E7C64; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata:0x803E7C68; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata:0x803E7C6C; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata:0x803E7C70; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803E7C74; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E7C78; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E7C7C; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E7C80; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E7C84; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E7C88; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E7C8C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7C90; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803E7C98; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803E7CA0; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803E7CA8; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803E7CB0; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803E7CB4; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803E7CB8; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803E7CBC; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803E7CC0; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803E7CC4; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E7CCC; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E7CD0; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E7CD4; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E7CD8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803E7CDC; // type:object size:0x8 scope:local align:4 +@1362 = .sdata:0x803E7CE4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7CEC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7CF4; // type:object size:0x8 scope:local align:4 +@1365 = .sdata:0x803E7CFC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7D04; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803E7D0C; // type:object size:0x8 scope:local align:4 +@1086 = .sdata:0x803E7D18; // type:object size:0x4 scope:local align:4 data:string +@1087 = .sdata:0x803E7D1C; // type:object size:0x3 scope:local align:4 data:string +@1088 = .sdata:0x803E7D20; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803E7D28; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803E7D30; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803E7D34; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803E7D38; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803E7D3C; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803E7D40; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803E7D44; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803E7D48; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803E7D4C; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803E7D50; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803E7D54; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803E7D58; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803E7D5C; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803E7D60; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803E7D64; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803E7D68; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803E7D6C; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803E7D70; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803E7D74; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803E7D78; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803E7D7C; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803E7D80; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803E7D84; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803E7D88; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803E7D8C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E7D94; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803E7D9C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7DA4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7DAC; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803E7DB4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7DBC; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803E7DC4; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803E7DD0; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803E7DD8; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803E7DE0; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E7DE8; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803E7DF0; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803E7DF8; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803E7E00; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803E7E08; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803E7E10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7E18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7E20; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803E7E28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7E30; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803E7E38; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803E7E40; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803E7E48; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803E7E49; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803E7E4A; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803E7E4B; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803E7E4C; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803E7E50; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803E7E54; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803E7E58; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803E7E59; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803E7E5A; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803E7E5B; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803E7E5C; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803E7E60; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803E7E68; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803E7E70; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803E7E78; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E7E7C; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803E7E84; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803E7E90; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803E7E94; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803E7E98; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803E7E9C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803E7EA0; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803E7EA8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7EB0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7EB8; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803E7EC0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7EC8; // type:object size:0x8 scope:local align:4 +@397 = .sdata:0x803E7ED0; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803E7ED8; // type:object size:0x8 scope:local align:4 data:string +@405 = .sdata:0x803E7EE0; // type:object size:0x8 scope:local align:4 data:string +@558 = .sdata:0x803E7EE8; // type:object size:0x8 scope:local align:4 data:string +@560 = .sdata:0x803E7EF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7EF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7F00; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803E7F08; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803E7F10; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E7F18; // type:object size:0x5 scope:local align:4 data:string +@1682 = .sdata:0x803E7F20; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata:0x803E7F24; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E7F28; // type:object size:0x7 scope:local align:4 data:string +@1504 = .sdata:0x803E7F30; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E7F34; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E7F38; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E7F3C; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803E7F40; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E7F44; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E7F48; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E7F4C; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E7F50; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E7F54; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E7F58; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803E7F5C; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803E7F60; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E7F64; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E7F68; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E7F6C; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803E7F70; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E7F74; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803E7F78; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803E7F7C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E7F80; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803E7F84; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803E7F88; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E7F8C; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803E7F90; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803E7F94; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803E7F98; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803E7F9C; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803E7FA0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E7FA4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803E7FA8; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803E7FAC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E7FB0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E7FB4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E7FB8; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E7FBC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803E7FC0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803E7FC4; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E7FC8; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E7FCC; // type:object size:0x8 scope:local align:4 data:string +@2448 = .sdata:0x803E7FD4; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata:0x803E7FD8; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E7FDC; // type:object size:0x4 scope:local align:4 data:float +@2599 = .sdata:0x803E7FE0; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata:0x803E7FE4; // type:object size:0x4 scope:local align:4 data:float +@2604 = .sdata:0x803E7FE8; // type:object size:0x4 scope:local align:4 data:float +@2903 = .sdata:0x803E7FEC; // type:object size:0x7 scope:local align:4 data:string +@2923 = .sdata:0x803E7FF4; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E7FF8; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E7FFC; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E8000; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E8004; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E8008; // type:object size:0x4 scope:local align:4 data:float +@2940 = .sdata:0x803E800C; // type:object size:0x4 scope:local align:4 data:float +@2942 = .sdata:0x803E8010; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803E8014; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E8018; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803E801C; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E8020; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E8024; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803E8028; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803E802C; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803E8030; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803E8034; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803E8038; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803E803C; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803E8040; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803E8044; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata:0x803E8048; // type:object size:0x4 scope:local align:4 data:float +@3217 = .sdata:0x803E804C; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803E8050; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803E8054; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803E8058; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803E805C; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803E8060; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803E8064; // type:object size:0x4 scope:local align:4 data:float +@3224 = .sdata:0x803E8068; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata:0x803E806C; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata:0x803E8070; // type:object size:0x4 scope:local align:4 data:float +@3227 = .sdata:0x803E8074; // type:object size:0x4 scope:local align:4 data:float +@3229 = .sdata:0x803E8078; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata:0x803E807C; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata:0x803E8080; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata:0x803E8084; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata:0x803E8088; // type:object size:0x4 scope:local align:4 data:float +@3234 = .sdata:0x803E808C; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata:0x803E8090; // type:object size:0x4 scope:local align:4 data:float +@3237 = .sdata:0x803E8094; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E8098; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E80A0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E80A8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E80B0; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803E80B8; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E80BC; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803E80C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E80C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E80D0; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E80D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E80E0; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E80E8; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E80F0; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803E80F8; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E8100; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E8104; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E8108; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E810C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E8110; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E8114; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803E8118; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803E811C; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E8120; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803E8124; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803E8128; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803E812C; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E8130; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E8134; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E8138; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E813C; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E8140; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E8144; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E8148; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E814C; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803E8150; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E8154; // type:object size:0x7 scope:local align:4 data:string +@1786 = .sdata:0x803E815C; // type:object size:0x5 scope:local align:4 data:string +@1787 = .sdata:0x803E8164; // type:object size:0x4 scope:local align:4 data:string +@1910 = .sdata:0x803E8168; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E816C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E8170; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E8174; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E8178; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E817C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E8180; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E8184; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E8188; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E818C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E8190; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E8194; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803E8198; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata:0x803E819C; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata:0x803E81A0; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803E81A4; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata:0x803E81A8; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata:0x803E81AC; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E81B0; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E81B4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E81B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803E81BC; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803E81C4; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E81D0; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E81D4; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E81D8; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E81DC; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E81E0; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803E81E4; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E81E8; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803E81EC; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E81F0; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E81F4; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E81F8; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E81FC; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803E8200; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E8204; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E8208; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803E820C; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803E8210; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E8214; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803E8218; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803E821C; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E8220; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E8224; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E822C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8234; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E823C; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E8244; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803E824C; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803E8258; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E825C; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E8260; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E8264; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803E8268; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803E826C; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803E8270; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803E8274; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803E8278; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E827C; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803E8280; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803E8284; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803E8288; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803E828C; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803E8290; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E8294; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803E8298; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803E829C; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803E82A0; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E82A4; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803E82A8; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803E82AC; // type:object size:0x4 scope:local align:4 data:float +@1045 = .sdata:0x803E82B0; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E82B4; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E82B8; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E82BC; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803E82C0; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E82C4; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E82C8; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803E82CC; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E82D0; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata:0x803E82D4; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803E82D8; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803E82DC; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata:0x803E82E0; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803E82E4; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803E82E8; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E82EC; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803E82F0; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E82F4; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803E82F8; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata:0x803E82FC; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E8300; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E8304; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata:0x803E8308; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E830C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8314; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E831C; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E8324; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E832C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E8334; // type:object size:0x8 scope:local align:4 +@1956 = .sdata:0x803E833C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8344; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E834C; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803E8354; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803E8360; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8368; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8370; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803E8378; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803E8380; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803E8384; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E8390; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8398; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E83A0; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E83A8; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803E83B0; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803E83B8; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803E83C0; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803E83C8; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803E83D0; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803E83D8; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803E83DC; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803E83E4; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803E83EC; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803E83F4; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803E83FC; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803E8404; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803E840C; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803E8414; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803E841C; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803E8424; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803E842C; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803E8434; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803E8438; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803E8440; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803E8448; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803E844C; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803E8454; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803E845C; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803E8464; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803E846C; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803E8474; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803E847C; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E8484; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803E8488; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E848C; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E8490; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E8494; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E8498; // type:object size:0x4 scope:local align:4 data:string +@1492 = .sdata:0x803E849C; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E84A0; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E84A4; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803E84A8; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E84AC; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E84B0; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E84B4; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E84B8; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803E84BC; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E84C0; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E84C4; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E84C8; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E84CC; // type:object size:0x4 scope:local align:4 data:4byte +@1509 = .sdata:0x803E84D0; // type:object size:0x4 scope:local align:4 data:4byte +@1519 = .sdata:0x803E84D4; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E84D8; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E84DC; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E84E0; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E84E4; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E84E8; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E84EC; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803E84F0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E84F4; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E84F8; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E84FC; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E8500; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E8504; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803E8508; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E850C; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803E8510; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803E8514; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803E8518; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803E851C; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803E8520; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E8524; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E8528; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803E852C; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803E8530; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803E8534; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803E8538; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803E853C; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata:0x803E8540; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E8544; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E8548; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E854C; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E8550; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E8554; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E8558; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E855C; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E8560; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E8564; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E8568; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E856C; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803E8570; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803E8574; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata:0x803E8578; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata:0x803E857C; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata:0x803E8580; // type:object size:0x4 scope:local align:4 data:float +@2396 = .sdata:0x803E8584; // type:object size:0x4 scope:local align:4 data:float +@2470 = .sdata:0x803E8588; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E858C; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata:0x803E8590; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata:0x803E8594; // type:object size:0x4 scope:local align:4 data:float +@2814 = .sdata:0x803E8598; // type:object size:0x4 scope:local align:4 data:float +@2815 = .sdata:0x803E859C; // type:object size:0x4 scope:local align:4 data:float +@2816 = .sdata:0x803E85A0; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata:0x803E85A4; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata:0x803E85A8; // type:object size:0x4 scope:local align:4 data:float +@2819 = .sdata:0x803E85AC; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata:0x803E85B0; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata:0x803E85B4; // type:object size:0x4 scope:local align:4 data:float +@3023 = .sdata:0x803E85B8; // type:object size:0x8 scope:local align:4 data:string +@3086 = .sdata:0x803E85C0; // type:object size:0x8 scope:local align:4 data:string +@3087 = .sdata:0x803E85C8; // type:object size:0x1 scope:local align:4 +@3088 = .sdata:0x803E85CC; // type:object size:0x4 scope:local align:4 data:string +@3089 = .sdata:0x803E85D0; // type:object size:0x4 scope:local align:4 data:string +@3090 = .sdata:0x803E85D4; // type:object size:0x4 scope:local align:4 data:string +@3092 = .sdata:0x803E85D8; // type:object size:0x4 scope:local align:4 data:string +@3095 = .sdata:0x803E85DC; // type:object size:0x4 scope:local align:4 data:string +@3097 = .sdata:0x803E85E0; // type:object size:0x7 scope:local align:4 data:string +@3348 = .sdata:0x803E85E8; // type:object size:0x6 scope:local align:4 data:string +@3349 = .sdata:0x803E85F0; // type:object size:0x5 scope:local align:4 data:string +@3416 = .sdata:0x803E85F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8600; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8608; // type:object size:0x8 scope:local align:4 +@3418 = .sdata:0x803E8610; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8618; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E8620; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E8628; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E8630; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803E8638; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E8640; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803E8648; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803E8650; // type:object size:0x8 scope:local align:4 +@3455 = .sdata:0x803E8658; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8660; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8668; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8670; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8678; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E8680; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E8688; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803E8690; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E8698; // type:object size:0x8 scope:local align:4 +@3500 = .sdata:0x803E86A0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803E86A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E86B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E86B8; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803E86C0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E86C8; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803E86D0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E86D8; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803E86E0; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803E86E4; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803E86EC; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803E86F0; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803E86F8; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803E8700; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803E8708; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803E8710; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803E8714; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803E8718; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803E871C; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803E8720; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E8724; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E872C; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803E8734; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803E873C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8744; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E874C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8754; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803E875C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E8764; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8770; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803E8778; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8780; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8788; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803E8790; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803E8798; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803E87A0; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803E87A8; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803E87B0; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803E87B8; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803E87C0; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E87C4; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E87C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803E87CC; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803E87D4; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803E87DC; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803E87E4; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803E87EC; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803E87F4; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803E87FC; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803E8804; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803E880C; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E8814; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803E881C; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803E8828; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803E882C; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803E8834; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E883C; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803E8840; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E8844; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E8848; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata:0x803E884C; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803E8850; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803E8854; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E8858; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E885C; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata:0x803E8860; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata:0x803E8864; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E8868; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata:0x803E886C; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata:0x803E8870; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803E8874; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata:0x803E8878; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E887C; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata:0x803E8880; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata:0x803E8884; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E8888; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E888C; // type:object size:0x4 scope:local align:4 data:float +@2345 = .sdata:0x803E8890; // type:object size:0x4 scope:local align:4 data:float +@2346 = .sdata:0x803E8894; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E8898; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803E889C; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata:0x803E88A0; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata:0x803E88A4; // type:object size:0x4 scope:local align:4 data:float +@2496 = .sdata:0x803E88A8; // type:object size:0x4 scope:local align:4 data:float +@2638 = .sdata:0x803E88AC; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E88B0; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E88B4; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata:0x803E88B8; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata:0x803E88BC; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E88C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E88C4; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803E88CC; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803E88D4; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E88DC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E88E4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E88EC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E88F4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E88FC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E8904; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E890C; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803E8914; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803E891C; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803E8924; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803E892C; // type:object size:0x8 scope:local align:4 +@3077 = .sdata:0x803E8934; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E893C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8944; // type:object size:0x8 scope:local align:4 +@3079 = .sdata:0x803E894C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8954; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E895C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E8964; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803E896C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8974; // type:object size:0x8 scope:local align:4 +@3102 = .sdata:0x803E897C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8984; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E898C; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803E8994; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E899C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E89A4; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E89AC; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803E89B4; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803E89BC; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803E89C8; // type:object size:0x4 scope:global align:4 data:4byte +@1905 = .sdata:0x803E89CC; // type:object size:0x7 scope:local align:4 data:string +@2169 = .sdata:0x803E89D4; // type:object size:0x3 scope:local align:4 data:string +@3240 = .sdata:0x803E89D8; // type:object size:0x6 scope:local align:4 data:string +@3243 = .sdata:0x803E89E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E89E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E89F0; // type:object size:0x8 scope:local align:4 +@3248 = .sdata:0x803E89F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8A00; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803E8A08; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E8A10; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803E8A18; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803E8A20; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803E8A28; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803E8A30; // type:object size:0x6 scope:local align:4 data:string +@646 = .sdata:0x803E8A38; // type:object size:0x3 scope:local align:4 data:string +@752 = .sdata:0x803E8A3C; // type:object size:0x6 scope:local align:4 data:string +@754 = .sdata:0x803E8A44; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8A4C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8A54; // type:object size:0x8 scope:local align:4 +@757 = .sdata:0x803E8A5C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803E8A64; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803E8A6C; // type:object size:0x8 scope:local align:4 +@761 = .sdata:0x803E8A74; // type:object size:0x6 scope:local align:4 data:string +@763 = .sdata:0x803E8A7C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8A84; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803E8A8C; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803E8A98; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803E8AA0; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803E8AA4; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803E8AA8; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803E8AAC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E8AB4; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803E8ABC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8AC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8ACC; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803E8AD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8ADC; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803E8AE4; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803E8AF0; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803E8AF8; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803E8B00; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803E8B08; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803E8B10; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803E8B18; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803E8B20; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E8B24; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803E8B28; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803E8B2C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E8B34; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E8B38; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E8B3C; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E8B40; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E8B44; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E8B48; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E8B4C; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803E8B50; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803E8B54; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E8B58; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E8B5C; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E8B60; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E8B64; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E8B68; // type:object size:0x4 scope:local align:4 data:string +@2077 = .sdata:0x803E8B6C; // type:object size:0x6 scope:local align:4 data:string +@2078 = .sdata:0x803E8B74; // type:object size:0x6 scope:local align:4 data:string +@2079 = .sdata:0x803E8B7C; // type:object size:0x7 scope:local align:4 data:string +@2080 = .sdata:0x803E8B84; // type:object size:0x7 scope:local align:4 data:string +@2081 = .sdata:0x803E8B8C; // type:object size:0x6 scope:local align:4 data:string +@2082 = .sdata:0x803E8B94; // type:object size:0x6 scope:local align:4 data:string +@2083 = .sdata:0x803E8B9C; // type:object size:0x6 scope:local align:4 data:string +@2084 = .sdata:0x803E8BA4; // type:object size:0x5 scope:local align:4 data:string +@2085 = .sdata:0x803E8BAC; // type:object size:0x5 scope:local align:4 data:string +@2086 = .sdata:0x803E8BB4; // type:object size:0x5 scope:local align:4 data:string +@2112 = .sdata:0x803E8BBC; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803E8BC8; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E8BCC; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E8BD0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E8BD4; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E8BD8; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E8BDC; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E8BE0; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E8BE8; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803E8BEC; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E8BF0; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E8BF4; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E8BFC; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803E8C00; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E8C04; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E8C08; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E8C0C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E8C10; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E8C14; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E8C18; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E8C1C; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E8C20; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E8C24; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E8C28; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803E8C2C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E8C30; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E8C34; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803E8C38; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803E8C3C; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803E8C40; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E8C44; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E8C48; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803E8C4C; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata:0x803E8C50; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E8C54; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E8C58; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata:0x803E8C5C; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata:0x803E8C60; // type:object size:0x7 scope:local align:4 data:string +@2106 = .sdata:0x803E8C68; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8C70; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8C78; // type:object size:0x8 scope:local align:4 +@2109 = .sdata:0x803E8C80; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8C88; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E8C90; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803E8C98; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E8CA0; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E8CA8; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E8CAC; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E8CB0; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E8CB4; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E8CB8; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E8CBC; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E8CC0; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E8CC4; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803E8CC8; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803E8CCC; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803E8CD0; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E8CD4; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E8CD8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E8CDC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E8CE0; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803E8CE8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8CF0; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803E8CF8; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803E8D00; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803E8D08; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E8D0C; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E8D10; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E8D14; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803E8D18; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E8D1C; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E8D20; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E8D24; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E8D28; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803E8D30; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8D38; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803E8D40; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E8D48; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803E8D50; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E8D58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803E8D60; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803E8D68; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803E8D70; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8D78; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803E8D80; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803E8D88; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803E8D90; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803E8D98; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803E8D9C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E8DA0; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E8DA4; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E8DA8; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E8DAC; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E8DB0; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E8DB4; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E8DB8; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E8DBC; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E8DC0; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E8DC4; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803E8DC8; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E8DCC; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E8DD0; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E8DD4; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E8DD8; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E8DDC; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E8DE0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E8DE4; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803E8DE8; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803E8DEC; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803E8DF0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E8DF4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E8DF8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803E8DFC; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803E8E00; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803E8E04; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803E8E08; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8E0C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E8E14; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803E8E1C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8E24; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803E8E2C; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E8E34; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803E8E3C; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803E8E48; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803E8E4C; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803E8E50; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E8E54; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803E8E5C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E8E60; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E8E64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8E68; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E8E70; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803E8E78; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8E80; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803E8E88; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803E8E90; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803E8E98; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803E8EA0; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803E8EA8; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803E8EB0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E8EB8; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803E8EC0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8EC8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803E8ED0; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E8ED8; // type:object size:0x4 scope:local align:4 data:string +@1411 = .sdata:0x803E8EDC; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E8EE0; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E8EE4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E8EE8; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E8EEC; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E8EF0; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E8EF4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E8EF8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E8F00; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E8F08; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8F10; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803E8F18; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803E8F20; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803E8F28; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803E8F30; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803E8F34; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803E8F3C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E8F40; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803E8F44; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8F48; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E8F50; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803E8F58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8F60; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803E8F68; // type:object size:0x8 scope:local align:4 +@1449 = .sdata:0x803E8F70; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata:0x803E8F74; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata:0x803E8F78; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata:0x803E8F7C; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata:0x803E8F80; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata:0x803E8F84; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8F88; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E8F90; // type:object size:0x8 scope:local align:4 +@1507 = .sdata:0x803E8F98; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E8FA0; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803E8FA8; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803E8FB0; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E8FB4; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E8FB8; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E8FBC; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803E8FC0; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E8FC4; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803E8FC8; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803E8FCC; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803E8FD0; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E8FD4; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E8FD8; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803E8FDC; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803E8FE0; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803E8FE4; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803E8FE8; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803E8FEC; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803E8FF0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E8FF4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803E8FF8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803E8FFC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803E9000; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803E9004; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E9008; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E900C; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803E9010; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803E9014; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803E9018; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803E901C; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803E9020; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803E9024; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata:0x803E9028; // type:object size:0x6 scope:local align:4 data:string +@2748 = .sdata:0x803E9030; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E9034; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E9038; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803E903C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E9040; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E9044; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803E9048; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata:0x803E904C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E9050; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E9054; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata:0x803E9058; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E905C; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E9060; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E9064; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803E9068; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803E906C; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803E9070; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E9074; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E9078; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803E907C; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E9080; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E9084; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E9088; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803E908C; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E9090; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E9094; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E9098; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803E909C; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803E90A0; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803E90A4; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803E90A8; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803E90AC; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E90B0; // type:object size:0x4 scope:local align:4 data:float +@3115 = .sdata:0x803E90B4; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata:0x803E90B8; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E90BC; // type:object size:0x8 scope:local align:4 data:string +@3483 = .sdata:0x803E90C4; // type:object size:0x8 scope:local align:4 data:string +@4078 = .sdata:0x803E90CC; // type:object size:0x3 scope:local align:4 data:string +@4079 = .sdata:0x803E90D0; // type:object size:0x5 scope:local align:4 data:string +@4080 = .sdata:0x803E90D8; // type:object size:0x5 scope:local align:4 data:string +@4081 = .sdata:0x803E90E0; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata:0x803E90E8; // type:object size:0x5 scope:local align:4 data:string +@4083 = .sdata:0x803E90F0; // type:object size:0x5 scope:local align:4 data:string +@4084 = .sdata:0x803E90F8; // type:object size:0x4 scope:local align:4 data:string +@4086 = .sdata:0x803E90FC; // type:object size:0x5 scope:local align:4 data:string +@4087 = .sdata:0x803E9104; // type:object size:0x5 scope:local align:4 data:string +@4088 = .sdata:0x803E910C; // type:object size:0x6 scope:local align:4 data:string +@4250 = .sdata:0x803E9114; // type:object size:0x2 scope:local align:4 data:string +@4257 = .sdata:0x803E9118; // type:object size:0x3 scope:local align:4 data:string +@4260 = .sdata:0x803E911C; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata:0x803E9120; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata:0x803E9124; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata:0x803E9128; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata:0x803E912C; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E9130; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata:0x803E9134; // type:object size:0x4 scope:local align:4 data:float +@4273 = .sdata:0x803E9138; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata:0x803E913C; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata:0x803E9140; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata:0x803E9144; // type:object size:0x4 scope:local align:4 data:float +@4277 = .sdata:0x803E9148; // type:object size:0x4 scope:local align:4 data:float +@4286 = .sdata:0x803E914C; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata:0x803E9150; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata:0x803E9154; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata:0x803E9158; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata:0x803E915C; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata:0x803E9160; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata:0x803E9164; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata:0x803E9168; // type:object size:0x4 scope:local align:4 data:float +@4300 = .sdata:0x803E916C; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata:0x803E9170; // type:object size:0x4 scope:local align:4 data:float +@4302 = .sdata:0x803E9174; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E9178; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E917C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9184; // type:object size:0x8 scope:local align:4 +@4449 = .sdata:0x803E918C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9194; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E919C; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E91A8; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E91B0; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E91B4; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E91B8; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E91BC; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E91C0; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E91C4; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E91C8; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E91CC; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E91D0; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E91D4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E91D8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E91DC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E91E0; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E91E4; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E91E8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E91EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E91F0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E91F8; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E9200; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9208; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E9210; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E9218; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E921C; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E9220; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E9224; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E9228; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E9230; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9238; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E9240; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E9248; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E9250; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E9258; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E925C; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E9264; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E9268; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E926C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E9270; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E9274; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E9278; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E927C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E9280; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E9284; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E9288; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E928C; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E9290; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E9294; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E9298; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E929C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E92A0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E92A4; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E92A8; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata:0x803E92AC; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata:0x803E92B0; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E92B4; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E92B8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E92BC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata:0x803E92C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E92C4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E92CC; // type:object size:0x8 scope:local align:4 +@2435 = .sdata:0x803E92D4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E92DC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E92E4; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E92F0; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E92F4; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E92F8; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E92FC; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E9300; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E9304; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E9308; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E930C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9314; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E931C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9324; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E932C; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E9338; // type:object size:0x6 scope:local align:4 data:string +@1478 = .sdata:0x803E9340; // type:object size:0x7 scope:local align:4 data:string +@1489 = .sdata:0x803E9348; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E934C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E9350; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E9354; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata:0x803E9358; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803E935C; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E9360; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E9364; // type:object size:0x8 scope:local align:4 +@1632 = .sdata:0x803E936C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9374; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E937C; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E9388; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E938C; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E9390; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E9394; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E9398; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E939C; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E93A0; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E93A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E93B0; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E93B8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E93C0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E93C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E93D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E93D8; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E93E0; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E93E8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E93EC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E93F0; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E93F4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E93F8; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E93FC; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E9400; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E9404; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E9408; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E940C; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E9410; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E9414; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E9418; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E941C; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E9420; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E9424; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E9428; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E942C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E9434; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E943C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9444; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E944C; // type:object size:0x8 scope:local align:4 +@1190 = .sdata:0x803E9458; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E945C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E9460; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E9464; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E9468; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E946C; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803E9470; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9478; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9480; // type:object size:0x8 scope:local align:4 +@1344 = .sdata:0x803E9488; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9490; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E9498; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E94A0; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E94A4; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E94A8; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E94AC; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E94B0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E94B4; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E94B8; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E94BC; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E94C0; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E94C4; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E94C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E94CC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E94D4; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E94DC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E94E4; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E94EC; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E94F8; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E9500; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E9504; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E9508; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E950C; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E9510; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E9514; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E9518; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E951C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9524; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E952C; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E9534; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E953C; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E9544; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E9550; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E9554; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E9558; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E955C; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E9560; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E9568; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E9570; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9578; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E9580; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E9588; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E9590; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E9598; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E959C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E95A0; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E95A4; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E95A8; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E95AC; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E95B0; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E95B4; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E95B8; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E95BC; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E95C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E95C4; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E95CC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E95D4; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E95DC; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E95E8; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E95EC; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E95F0; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E95F4; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E95F8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E95FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9600; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9608; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E9610; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9618; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E9620; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E9628; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E9630; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9638; // type:object size:0x8 scope:local align:4 +@1142 = .sdata:0x803E9640; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9648; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E9650; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E9658; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E9660; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E9668; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E9670; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E9678; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E967C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E9680; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E9684; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E9688; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E968C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E9690; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E9694; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E9698; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E969C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E96A0; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E96A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E96A8; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E96B0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E96B8; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E96C0; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E96C8; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E96D0; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E96D8; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E96E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E96E8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E96F0; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E96F8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9700; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E9708; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E9710; // type:object size:0x8 scope:local align:4 data:string +@2109 = .sdata:0x803E9718; // type:object size:0x4 scope:local align:4 data:float +@2110 = .sdata:0x803E971C; // type:object size:0x4 scope:local align:4 data:float +@2111 = .sdata:0x803E9720; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E9724; // type:object size:0x4 scope:local align:4 data:float +@2115 = .sdata:0x803E9728; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata:0x803E972C; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E9730; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E9734; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E9738; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata:0x803E973C; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata:0x803E9740; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata:0x803E9744; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E9748; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata:0x803E974C; // type:object size:0x4 scope:local align:4 data:float +@2268 = .sdata:0x803E9750; // type:object size:0x4 scope:local align:4 data:float +@2481 = .sdata:0x803E9754; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata:0x803E9758; // type:object size:0x4 scope:local align:4 data:float +@2601 = .sdata:0x803E975C; // type:object size:0x4 scope:local align:4 data:float +@2602 = .sdata:0x803E9760; // type:object size:0x4 scope:local align:4 data:float +@2603 = .sdata:0x803E9764; // type:object size:0x4 scope:local align:4 data:float +@2604 = .sdata:0x803E9768; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E976C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E9770; // type:object size:0x8 scope:local align:4 +@2648 = .sdata:0x803E9778; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9780; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E9788; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9790; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E9798; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E97A0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E97A4; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E97A8; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E97AC; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E97B0; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E97B4; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E97B8; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E97BC; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E97C0; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E97C4; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E97C8; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E97CC; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E97D0; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E97D4; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E97D8; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E97DC; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E97E0; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E97E4; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E97E8; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E97EC; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E97F0; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E97F8; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E9800; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E9804; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E980C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9814; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E981C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E9824; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E982C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9834; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E983C; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E9848; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E9850; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E9854; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E9858; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E985C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E9860; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E9864; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E9868; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E986C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E9870; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E9874; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E9878; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E987C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E9884; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E988C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9894; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E989C; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E98A8; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E98B0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E98B4; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E98B8; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E98BC; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E98C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E98C8; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E98D0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E98D8; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E98E0; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E98E8; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E98EC; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E98F0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E98F4; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E98F8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E98FC; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E9900; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9904; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E990C; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E9914; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E991C; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E9924; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E992C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E9934; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E9940; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E9944; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E9948; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E994C; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E9950; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E9954; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E995C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9964; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E996C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E9974; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E997C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9984; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E998C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E9998; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E999C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E99A0; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E99A4; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E99A8; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E99AC; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E99B0; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E99B4; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E99B8; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E99BC; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E99C0; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E99C4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E99C8; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E99CC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E99D0; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E99D4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E99DC; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E99E4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E99EC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E99F4; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E9A00; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E9A04; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E9A0C; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E9A14; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E9A1C; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E9A24; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E9A2C; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E9A30; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E9A38; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E9A40; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E9A48; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E9A50; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E9A58; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9A60; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E9A68; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E9A70; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E9A78; // type:object size:0x8 scope:local align:4 +@1579 = .sdata:0x803E9A80; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E9A84; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E9A88; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E9A8C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E9A90; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E9A94; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E9A98; // type:object size:0x8 scope:local align:4 data:string +@1608 = .sdata:0x803E9AA0; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E9AA4; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E9AA8; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata:0x803E9AAC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9AB4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9ABC; // type:object size:0x8 scope:local align:4 +@1876 = .sdata:0x803E9AC4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E9ACC; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E9AD4; // type:object size:0x8 scope:local align:4 +@1882 = .sdata:0x803E9ADC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E9AE4; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E9AEC; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E9AF4; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E9AFC; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E9B04; // type:object size:0x8 scope:local align:4 +@2368 = .sdata:0x803E9B10; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E9B14; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata:0x803E9B18; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E9B1C; // type:object size:0x8 scope:local align:4 data:string +@3710 = .sdata:0x803E9B24; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata:0x803E9B28; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata:0x803E9B2C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E9B30; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata:0x803E9B34; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata:0x803E9B38; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata:0x803E9B3C; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E9B40; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata:0x803E9B44; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata:0x803E9B48; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata:0x803E9B4C; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata:0x803E9B50; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata:0x803E9B54; // type:object size:0x4 scope:local align:4 data:float +@5086 = .sdata:0x803E9B58; // type:object size:0x8 scope:local align:4 data:string +@5120 = .sdata:0x803E9B60; // type:object size:0x7 scope:local align:4 data:string +@5121 = .sdata:0x803E9B68; // type:object size:0x5 scope:local align:4 data:string +@5122 = .sdata:0x803E9B70; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E9B78; // type:object size:0x7 scope:local align:4 data:string +@5124 = .sdata:0x803E9B80; // type:object size:0x6 scope:local align:4 data:string +@5125 = .sdata:0x803E9B88; // type:object size:0x5 scope:local align:4 data:string +@5128 = .sdata:0x803E9B90; // type:object size:0x7 scope:local align:4 data:string +@5129 = .sdata:0x803E9B98; // type:object size:0x7 scope:local align:4 data:string +@5130 = .sdata:0x803E9BA0; // type:object size:0x8 scope:local align:4 data:string +@5131 = .sdata:0x803E9BA8; // type:object size:0x7 scope:local align:4 data:string +@5133 = .sdata:0x803E9BB0; // type:object size:0x5 scope:local align:4 data:string +@5134 = .sdata:0x803E9BB8; // type:object size:0x4 scope:local align:4 data:string +@5158 = .sdata:0x803E9BBC; // type:object size:0x8 scope:local align:4 data:string +@5160 = .sdata:0x803E9BC4; // type:object size:0x5 scope:local align:4 data:string +@5161 = .sdata:0x803E9BCC; // type:object size:0x4 scope:local align:4 data:string +@5162 = .sdata:0x803E9BD0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E9BD8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E9BE0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E9BE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E9BF0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9BF8; // type:object size:0x8 scope:local align:4 +@5416 = .sdata:0x803E9C00; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E9C08; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9C10; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9C18; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E9C20; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E9C28; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E9C2C; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E9C30; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E9C34; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E9C38; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E9C3C; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E9C44; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E9C48; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E9C4C; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E9C50; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E9C54; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E9C58; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E9C5C; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E9C60; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E9C64; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E9C68; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E9C6C; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E9C70; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E9C74; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E9C78; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E9C7C; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E9C80; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E9C84; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E9C88; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E9C8C; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E9C90; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E9C94; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E9C98; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E9C9C; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E9CA0; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E9CA4; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E9CA8; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E9CAC; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E9CB0; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E9CB4; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E9CB8; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E9CBC; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E9CC0; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E9CC4; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E9CC8; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E9CCC; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E9CD0; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E9CD4; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E9CD8; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E9CDC; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E9CE0; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E9CE4; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E9CE8; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E9CEC; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E9CF0; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E9CF4; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E9CF8; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E9CFC; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E9D00; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E9D04; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E9D08; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E9D0C; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E9D10; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E9D14; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E9D18; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E9D1C; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E9D20; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E9D24; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E9D28; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E9D2C; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E9D30; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E9D34; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E9D38; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E9D3C; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E9D40; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E9D44; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E9D48; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E9D4C; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E9D50; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E9D54; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E9D58; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E9D5C; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E9D60; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E9D64; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E9D68; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E9D6C; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E9D70; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E9D74; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E9D78; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E9D80; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E9D88; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9D90; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9D98; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E9DA0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9DA8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E9DB0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E9DB8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E9DC0; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E9DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9DD0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E9DD8; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E9DE0; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E9DE8; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E9DF0; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E9DF4; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E9DF8; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E9DFC; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E9E00; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E9E04; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E9E0C; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E9E14; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E9E18; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E9E1C; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E9E20; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E9E28; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E9E2C; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E9E30; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E9E34; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E9E38; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E9E3C; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E9E40; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E9E44; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E9E48; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E9E4C; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E9E50; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E9E54; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E9E58; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E9E5C; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E9E64; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E9E68; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E9E6C; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E9E70; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E9E74; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E9E78; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E9E7C; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E9E80; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E9E84; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E9E88; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E9E8C; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E9E90; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E9E94; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E9E98; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E9E9C; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E9EA0; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E9EA4; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E9EAC; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E9EB4; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E9EBC; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E9EC4; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E9EC8; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E9ECC; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E9ED0; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E9ED4; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E9ED8; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E9EDC; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E9EE0; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E9EE4; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E9EE8; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E9EF0; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E9EF4; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E9EF8; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E9EFC; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E9F00; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E9F04; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E9F08; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E9F0C; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E9F10; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E9F14; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E9F18; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E9F20; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E9F28; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E9F2C; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E9F30; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E9F34; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E9F38; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E9F40; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E9F48; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E9F4C; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E9F50; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E9F54; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E9F58; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E9F5C; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E9F60; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E9F64; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E9F68; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E9F6C; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E9F70; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E9F74; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E9F78; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E9F80; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E9F84; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E9F88; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E9F8C; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E9F90; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E9F94; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E9F98; // type:object size:0x7 scope:local align:4 data:string +@4627 = .sdata:0x803E9FA0; // type:object size:0x5 scope:local align:4 data:string +@4657 = .sdata:0x803E9FA8; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E9FAC; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E9FB0; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E9FB4; // type:object size:0x4 scope:local align:4 data:float +@4661 = .sdata:0x803E9FB8; // type:object size:0x4 scope:local align:4 data:float +@4662 = .sdata:0x803E9FBC; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata:0x803E9FC0; // type:object size:0x7 scope:local align:4 data:string +@4705 = .sdata:0x803E9FC8; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E9FCC; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E9FD0; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E9FD4; // type:object size:0x4 scope:local align:4 data:float +@4709 = .sdata:0x803E9FD8; // type:object size:0x4 scope:local align:4 data:float +@4710 = .sdata:0x803E9FDC; // type:object size:0x4 scope:local align:4 data:float +@4736 = .sdata:0x803E9FE0; // type:object size:0x5 scope:local align:4 data:string +@4753 = .sdata:0x803E9FE8; // type:object size:0x5 scope:local align:4 data:string +@4762 = .sdata:0x803E9FF0; // type:object size:0x4 scope:local align:4 data:float +@4896 = .sdata:0x803E9FF4; // type:object size:0x5 scope:local align:4 data:string +@4904 = .sdata:0x803E9FFC; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803EA000; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803EA004; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803EA008; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803EA00C; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803EA010; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803EA014; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803EA018; // type:object size:0x4 scope:local align:4 data:float +@4933 = .sdata:0x803EA01C; // type:object size:0x4 scope:local align:4 data:float +@4934 = .sdata:0x803EA020; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803EA024; // type:object size:0x4 scope:local align:4 data:float +@4953 = .sdata:0x803EA028; // type:object size:0x4 scope:local align:4 data:float +@4954 = .sdata:0x803EA02C; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803EA030; // type:object size:0x7 scope:local align:4 data:string +@4974 = .sdata:0x803EA038; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803EA03C; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803EA040; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803EA044; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803EA048; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803EA04C; // type:object size:0x4 scope:local align:4 data:float +@4980 = .sdata:0x803EA050; // type:object size:0x4 scope:local align:4 data:float +@4981 = .sdata:0x803EA054; // type:object size:0x4 scope:local align:4 data:float +@4982 = .sdata:0x803EA058; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803EA05C; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803EA060; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803EA064; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803EA068; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803EA06C; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803EA070; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata:0x803EA074; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata:0x803EA078; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata:0x803EA07C; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803EA080; // type:object size:0x8 scope:local align:4 data:string +@5088 = .sdata:0x803EA088; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803EA08C; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803EA090; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803EA094; // type:object size:0x4 scope:local align:4 data:float +@5108 = .sdata:0x803EA098; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803EA09C; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata:0x803EA0A0; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata:0x803EA0A4; // type:object size:0x6 scope:local align:4 data:string +@5155 = .sdata:0x803EA0AC; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803EA0B0; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803EA0B4; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata:0x803EA0B8; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata:0x803EA0BC; // type:object size:0x4 scope:local align:4 data:float +@5160 = .sdata:0x803EA0C0; // type:object size:0x4 scope:local align:4 data:float +@5175 = .sdata:0x803EA0C4; // type:object size:0x5 scope:local align:4 data:string +@5181 = .sdata:0x803EA0CC; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803EA0D0; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803EA0D4; // type:object size:0x4 scope:local align:4 data:float +@5184 = .sdata:0x803EA0D8; // type:object size:0x4 scope:local align:4 data:float +@5185 = .sdata:0x803EA0DC; // type:object size:0x4 scope:local align:4 data:float +@5186 = .sdata:0x803EA0E0; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata:0x803EA0E4; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata:0x803EA0E8; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803EA0EC; // type:object size:0x4 scope:local align:4 data:float +@5208 = .sdata:0x803EA0F0; // type:object size:0x8 scope:local align:4 data:string +@5331 = .sdata:0x803EA0F8; // type:object size:0x4 scope:local align:4 data:float +@5332 = .sdata:0x803EA0FC; // type:object size:0x4 scope:local align:4 data:float +@5333 = .sdata:0x803EA100; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803EA104; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803EA10C; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803EA114; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803EA11C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803EA124; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803EA12C; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803EA134; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803EA13C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803EA144; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803EA14C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803EA154; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803EA15C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803EA164; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803EA16C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803EA174; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803EA17C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803EA184; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803EA18C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803EA194; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803EA19C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803EA1A4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803EA1AC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803EA1B4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803EA1BC; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803EA1C4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803EA1CC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803EA1D4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803EA1DC; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803EA1E4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803EA1EC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803EA1F4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803EA1FC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803EA204; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803EA20C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803EA214; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803EA21C; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803EA224; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803EA22C; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803EA238; // type:object size:0x1 scope:global align:1 data:byte +@1609 = .sdata:0x803EA23C; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803EA240; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EA244; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803EA248; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803EA24C; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803EA250; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803EA254; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803EA258; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata:0x803EA25C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803EA260; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata:0x803EA264; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata:0x803EA268; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803EA26C; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata:0x803EA270; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata:0x803EA274; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803EA278; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803EA27C; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803EA280; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803EA284; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803EA288; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata:0x803EA28C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata:0x803EA290; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803EA294; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803EA298; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803EA29C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803EA2A0; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803EA2A4; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata:0x803EA2A8; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803EA2AC; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803EA2B0; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803EA2B4; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803EA2B8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803EA2BC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803EA2C0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803EA2C4; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata:0x803EA2C8; // type:object size:0x2 scope:local align:4 data:string +@1989 = .sdata:0x803EA2CC; // type:object size:0x2 scope:local align:4 data:string +@1990 = .sdata:0x803EA2D0; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803EA2D4; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803EA2D8; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803EA2DC; // type:object size:0x2 scope:local align:4 data:string +@2061 = .sdata:0x803EA2E0; // type:object size:0x5 scope:local align:4 data:string +@2133 = .sdata:0x803EA2E8; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata:0x803EA2EC; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata:0x803EA2F0; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803EA2F4; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803EA2F8; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803EA2FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA300; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA308; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA310; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA318; // type:object size:0x8 scope:local align:4 +@2306 = .sdata:0x803EA320; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803EA328; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803EA330; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA338; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803EA340; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803EA348; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803EA350; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803EA358; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803EA35C; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803EA360; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803EA364; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803EA368; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803EA36C; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803EA370; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803EA374; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803EA378; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803EA380; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803EA388; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803EA38C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803EA390; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803EA394; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803EA398; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803EA39C; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803EA3A0; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata:0x803EA3A4; // type:object size:0x5 scope:local align:4 +@2237 = .sdata:0x803EA3AC; // type:object size:0x5 scope:local align:4 +@2256 = .sdata:0x803EA3B4; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803EA3B8; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803EA3BC; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803EA3C0; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803EA3C4; // type:object size:0x4 scope:local align:4 data:float +@2476 = .sdata:0x803EA3C8; // type:object size:0x4 scope:local align:4 data:float +@2550 = .sdata:0x803EA3CC; // type:object size:0x7 scope:local align:4 data:string +@2802 = .sdata:0x803EA3D4; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803EA3D8; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata:0x803EA3DC; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803EA3E0; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803EA3E4; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803EA3E8; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata:0x803EA3EC; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803EA3F0; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803EA3F4; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803EA3F8; // type:object size:0x4 scope:local align:4 data:float +@2940 = .sdata:0x803EA3FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803EA400; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803EA408; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EA410; // type:object size:0x8 scope:local align:4 +@3007 = .sdata:0x803EA418; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803EA420; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803EA428; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803EA430; // type:object size:0x8 scope:local align:4 +@3019 = .sdata:0x803EA438; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803EA440; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803EA448; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803EA450; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803EA458; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EA460; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803EA468; // type:object size:0x8 scope:local align:4 +@3033 = .sdata:0x803EA470; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA478; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA480; // type:object size:0x8 scope:local align:4 +@3036 = .sdata:0x803EA488; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA490; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803EA498; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803EA4A0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA4A8; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803EA4B0; // type:object size:0x1 scope:local align:4 +@1329 = .sdata:0x803EA4B4; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803EA4BC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803EA4C4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803EA4CC; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803EA4D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA4DC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA4E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803EA4EC; // type:object size:0x8 scope:local align:4 +@1214 = .sdata:0x803EA4F8; // type:object size:0x7 scope:local align:4 data:string +@1989 = .sdata:0x803EA500; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA508; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA510; // type:object size:0x8 scope:local align:4 +@1992 = .sdata:0x803EA518; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA520; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EA528; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EA530; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803EA538; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803EA540; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803EA548; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EA550; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803EA558; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA560; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803EA568; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803EA56C; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803EA570; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803EA574; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803EA578; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803EA57C; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803EA580; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803EA584; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803EA588; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803EA58C; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803EA590; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803EA594; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803EA598; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803EA59C; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803EA5A0; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803EA5A4; // type:object size:0x6 scope:local align:4 data:string +@1344 = .sdata:0x803EA5AC; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803EA5B0; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803EA5B4; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EA5B8; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803EA5BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA5C4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA5CC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA5D4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA5DC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA5E4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA5EC; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803EA5F4; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803EA5FC; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803EA604; // type:object size:0x8 scope:local align:4 +@1452 = .sdata:0x803EA60C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803EA614; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803EA620; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803EA624; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803EA628; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803EA62C; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803EA630; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803EA634; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803EA638; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803EA63C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803EA640; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803EA644; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803EA648; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803EA64C; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803EA650; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803EA654; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA658; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA660; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA668; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA670; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA678; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA680; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803EA688; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803EA690; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803EA698; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803EA69C; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803EA6A0; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803EA6A4; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803EA6A8; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803EA6AC; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803EA6B0; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803EA6B4; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803EA6B8; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803EA6BC; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803EA6C0; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803EA6C4; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803EA6C8; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803EA6CC; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803EA6D0; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803EA6D4; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803EA6D8; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803EA6DC; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803EA6E0; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803EA6E4; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803EA6E8; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803EA6EC; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803EA6F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA6F4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA6FC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA704; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA70C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA714; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA71C; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803EA724; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803EA730; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803EA734; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803EA738; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803EA73C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803EA740; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803EA744; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803EA748; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803EA74C; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803EA750; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803EA754; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803EA758; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803EA75C; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803EA760; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803EA764; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803EA768; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803EA76C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803EA770; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803EA774; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803EA778; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803EA77C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803EA780; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803EA784; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803EA788; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803EA78C; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803EA790; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803EA794; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803EA798; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803EA79C; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803EA7A0; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803EA7A4; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803EA7A8; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803EA7AC; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803EA7B0; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803EA7B4; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803EA7B8; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803EA7BC; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803EA7C0; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803EA7C4; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803EA7C8; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803EA7CC; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803EA7D0; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803EA7D4; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803EA7D8; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803EA7DC; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803EA7E0; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803EA7E4; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803EA7E8; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803EA7EC; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803EA7F0; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803EA7F4; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803EA7F8; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803EA7FC; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803EA800; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803EA804; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803EA808; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803EA80C; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803EA810; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803EA814; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803EA818; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803EA81C; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803EA820; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803EA824; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803EA828; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA82C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA834; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA83C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA844; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA84C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA854; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803EA85C; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803EA864; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803EA86C; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803EA878; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803EA880; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803EA888; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803EA890; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803EA898; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803EA8A0; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803EA8A8; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803EA8B0; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803EA8B8; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803EA8C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803EA8C8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EA8D0; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803EA8D8; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803EA8E0; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803EA8E4; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803EA8E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA8EC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA8F4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA8FC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA904; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA90C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA914; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803EA91C; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803EA928; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803EA92C; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803EA930; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803EA934; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803EA938; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803EA93C; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803EA940; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803EA944; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EA948; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803EA94C; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803EA950; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803EA954; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803EA958; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803EA95C; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803EA960; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803EA964; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EA968; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EA96C; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803EA970; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata:0x803EA974; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata:0x803EA978; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata:0x803EA97C; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803EA980; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803EA984; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803EA988; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803EA98C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA994; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA99C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA9A4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA9AC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EA9B4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EA9BC; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803EA9C4; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803EA9CC; // type:object size:0x8 scope:local align:4 +@1499 = .sdata:0x803EA9D8; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803EA9DC; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803EA9E0; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata:0x803EA9E4; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803EA9E8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803EA9EC; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803EA9F4; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803EA9F8; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata:0x803EA9FC; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803EAA00; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803EAA04; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803EAA08; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAA0C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAA14; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAA1C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAA24; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EAA2C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EAA34; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803EAA3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803EAA44; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EAA4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EAA54; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803EAA60; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803EAA64; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803EAA68; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803EAA6C; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803EAA70; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803EAA74; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAA78; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAA80; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAA88; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAA90; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EAA98; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EAAA0; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803EAAA8; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803EAAB0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803EAAB8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAAC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAAC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAAD0; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803EAAD8; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803EAAE0; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803EAAE8; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803EAAEC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EAAF0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAAF8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAB00; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803EAB08; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803EAB10; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803EAB14; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803EAB18; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803EAB1C; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803EAB20; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803EAB24; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803EAB2C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EAB34; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EAB3C; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803EAB44; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAB4C; // type:object size:0x8 scope:local align:4 +@2224 = .sdata:0x803EAB58; // type:object size:0x8 scope:local align:4 data:string +@2236 = .sdata:0x803EAB60; // type:object size:0x8 scope:local align:4 data:string +@2784 = .sdata:0x803EAB68; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803EAB6C; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata:0x803EAB70; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata:0x803EAB74; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803EAB78; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803EAB7C; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata:0x803EAB80; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803EAB84; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803EAB88; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803EAB8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803EAB94; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803EAB9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803EABA4; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803EABAC; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803EABB4; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803EABBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803EABC4; // type:object size:0x8 scope:local align:4 +@3265 = .sdata:0x803EABCC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EABD4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EABDC; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803EABE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803EABEC; // type:object size:0x8 scope:local align:4 +@3271 = .sdata:0x803EABF4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803EABFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803EAC04; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803EAC0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803EAC14; // type:object size:0x8 scope:local align:4 +@3279 = .sdata:0x803EAC1C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803EAC24; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803EAC2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803EAC34; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803EAC3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803EAC44; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803EAC4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803EAC54; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803EAC5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803EAC64; // type:object size:0x8 scope:local align:4 +@3298 = .sdata:0x803EAC6C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803EAC74; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803EAC7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803EAC84; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803EAC8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803EAC94; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803EAC9C; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803EACA4; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803EACAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803EACB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803EACBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803EACC4; // type:object size:0x8 scope:local align:4 +@3333 = .sdata:0x803EACCC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803EACD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803EACDC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803EACE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803EACEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803EACF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803EACFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803EAD04; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803EAD0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803EAD14; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803EAD1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803EAD24; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803EAD2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803EAD34; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803EAD3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803EAD44; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803EAD4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803EAD54; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803EAD5C; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803EAD64; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803EAD6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803EAD74; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803EAD7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803EAD84; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803EAD8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803EAD94; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803EAD9C; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803EADA4; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803EADB0; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803EADB8; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803EADC0; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803EADC8; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803EADCC; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803EADD0; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803EADD4; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803EADD8; // type:object size:0x4 scope:local align:4 data:string +@2508 = .sdata:0x803EADDC; // type:object size:0x5 scope:local align:4 data:string +@2510 = .sdata:0x803EADE4; // type:object size:0x6 scope:local align:4 data:string +@2516 = .sdata:0x803EADEC; // type:object size:0x5 scope:local align:4 data:string +@2522 = .sdata:0x803EADF4; // type:object size:0x5 scope:local align:4 data:string +@2540 = .sdata:0x803EADFC; // type:object size:0x5 scope:local align:4 data:string +@2767 = .sdata:0x803EAE04; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803EAE08; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803EAE0C; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803EAE10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAE18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAE20; // type:object size:0x8 scope:local align:4 +@3067 = .sdata:0x803EAE28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAE30; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EAE38; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EAE40; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803EAE48; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803EAE50; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAE58; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803EAE60; // type:object size:0x8 scope:local align:4 +@3094 = .sdata:0x803EAE68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803EAE70; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803EAE78; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803EAE80; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803EAE88; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAE90; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAE98; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAEA0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAEA8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EAEB0; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EAEB8; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803EAEC0; // type:object size:0x8 scope:local align:4 +@3178 = .sdata:0x803EAEC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803EAED0; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803EAED8; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803EAEE0; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803EAEE8; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803EAEF0; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803EAEF8; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803EAF00; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803EAF08; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAF10; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803EAF18; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803EAF20; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803EAF28; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803EAF30; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803EAF38; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803EAF40; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAF48; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAF50; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAF58; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAF60; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EAF68; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EAF70; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803EAF78; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803EAF80; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803EAF88; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803EAF90; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803EAF98; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803EAFA0; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803EAFA8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAFB0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAFB8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAFC0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAFC8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EAFD0; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803EAFD8; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803EAFE0; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803EAFE8; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803EAFEC; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803EAFF0; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803EAFF4; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803EAFF8; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803EAFFC; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803EB000; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803EB004; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803EB008; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803EB00C; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803EB010; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803EB014; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803EB018; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803EB01C; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803EB020; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803EB024; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EB02C; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803EB034; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803EB040; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803EB048; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EB050; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EB058; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803EB060; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803EB068; // type:object size:0x1 scope:global align:1 data:byte +@2704 = .sdata:0x803EB06C; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803EB070; // type:object size:0x4 scope:local align:4 data:string +@2707 = .sdata:0x803EB074; // type:object size:0x4 scope:local align:4 data:string +@2709 = .sdata:0x803EB078; // type:object size:0x4 scope:local align:4 data:string +@2711 = .sdata:0x803EB07C; // type:object size:0x4 scope:local align:4 data:string +@2713 = .sdata:0x803EB080; // type:object size:0x4 scope:local align:4 data:4byte +@2715 = .sdata:0x803EB084; // type:object size:0x4 scope:local align:4 data:4byte +@2717 = .sdata:0x803EB088; // type:object size:0x4 scope:local align:4 data:4byte +@2719 = .sdata:0x803EB08C; // type:object size:0x4 scope:local align:4 data:4byte +@2721 = .sdata:0x803EB090; // type:object size:0x4 scope:local align:4 data:4byte +@2723 = .sdata:0x803EB094; // type:object size:0x4 scope:local align:4 data:4byte +@2725 = .sdata:0x803EB098; // type:object size:0x4 scope:local align:4 data:4byte +@2727 = .sdata:0x803EB09C; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803EB0A0; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803EB0A4; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803EB0A8; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803EB0AC; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803EB0B0; // type:object size:0x4 scope:local align:4 data:4byte +@2737 = .sdata:0x803EB0B4; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803EB0B8; // type:object size:0x4 scope:local align:4 data:4byte +@2739 = .sdata:0x803EB0BC; // type:object size:0x4 scope:local align:4 data:4byte +@2741 = .sdata:0x803EB0C0; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803EB0C4; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803EB0C8; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803EB0CC; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803EB0D0; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803EB0D4; // type:object size:0x4 scope:local align:4 data:4byte +@2750 = .sdata:0x803EB0D8; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803EB0DC; // type:object size:0x4 scope:local align:4 data:4byte +@2752 = .sdata:0x803EB0E0; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803EB0E4; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803EB0E8; // type:object size:0x4 scope:local align:4 data:4byte +@2757 = .sdata:0x803EB0EC; // type:object size:0x4 scope:local align:4 data:4byte +@2759 = .sdata:0x803EB0F0; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803EB0F4; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803EB0F8; // type:object size:0x4 scope:local align:4 data:4byte +@2764 = .sdata:0x803EB0FC; // type:object size:0x4 scope:local align:4 data:4byte +@2766 = .sdata:0x803EB100; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803EB104; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803EB108; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803EB10C; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803EB110; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803EB114; // type:object size:0x4 scope:local align:4 data:4byte +@2774 = .sdata:0x803EB118; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803EB11C; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803EB120; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803EB124; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803EB128; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803EB12C; // type:object size:0x4 scope:local align:4 data:4byte +@2781 = .sdata:0x803EB130; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803EB134; // type:object size:0x4 scope:local align:4 data:4byte +@2783 = .sdata:0x803EB138; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803EB13C; // type:object size:0x4 scope:local align:4 data:4byte +@2787 = .sdata:0x803EB140; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803EB144; // type:object size:0x4 scope:local align:4 data:4byte +@2791 = .sdata:0x803EB148; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803EB14C; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803EB150; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803EB154; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803EB158; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803EB15C; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803EB160; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803EB164; // type:object size:0x4 scope:local align:4 data:4byte +@2801 = .sdata:0x803EB168; // type:object size:0x4 scope:local align:4 data:4byte +@2802 = .sdata:0x803EB16C; // type:object size:0x4 scope:local align:4 data:4byte +@2803 = .sdata:0x803EB170; // type:object size:0x4 scope:local align:4 data:4byte +@2858 = .sdata:0x803EB174; // type:object size:0x4 scope:local align:4 data:float +@2859 = .sdata:0x803EB178; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata:0x803EB17C; // type:object size:0x4 scope:local align:4 data:float +@2917 = .sdata:0x803EB180; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803EB184; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803EB188; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803EB18C; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803EB190; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803EB194; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803EB198; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803EB19C; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803EB1A0; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803EB1A4; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803EB1A8; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803EB1AC; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803EB1B0; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803EB1B4; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803EB1B8; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata:0x803EB1BC; // type:object size:0x1 scope:local align:4 +@3023 = .sdata:0x803EB1C0; // type:object size:0x8 scope:local align:4 data:string +@3063 = .sdata:0x803EB1C8; // type:object size:0x4 scope:local align:4 data:float +@3064 = .sdata:0x803EB1CC; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803EB1D0; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803EB1D4; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803EB1D8; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803EB1DC; // type:object size:0x4 scope:local align:4 data:float +@3075 = .sdata:0x803EB1E0; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803EB1E4; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803EB1E8; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803EB1EC; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata:0x803EB1F0; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata:0x803EB1F4; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata:0x803EB1F8; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803EB1FC; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803EB200; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803EB204; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata:0x803EB208; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata:0x803EB20C; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata:0x803EB210; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803EB214; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803EB218; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803EB21C; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803EB220; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata:0x803EB224; // type:object size:0x4 scope:local align:4 data:float +@4809 = .sdata:0x803EB228; // type:object size:0x3 scope:local align:4 data:string +@4818 = .sdata:0x803EB22C; // type:object size:0x4 scope:local align:4 data:float +@4879 = .sdata:0x803EB230; // type:object size:0x4 scope:local align:4 data:float +@4880 = .sdata:0x803EB234; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata:0x803EB238; // type:object size:0x4 scope:local align:4 data:float +@4911 = .sdata:0x803EB23C; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803EB240; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803EB244; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803EB248; // type:object size:0x4 scope:local align:4 data:float +@4915 = .sdata:0x803EB24C; // type:object size:0x4 scope:local align:4 data:float +@4917 = .sdata:0x803EB250; // type:object size:0x4 scope:local align:4 data:float +@4918 = .sdata:0x803EB254; // type:object size:0x4 scope:local align:4 data:float +@4919 = .sdata:0x803EB258; // type:object size:0x4 scope:local align:4 data:float +@5204 = .sdata:0x803EB25C; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803EB260; // type:object size:0x4 scope:local align:4 data:float +@5206 = .sdata:0x803EB264; // type:object size:0x4 scope:local align:4 data:float +@5215 = .sdata:0x803EB268; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803EB26C; // type:object size:0x4 scope:local align:4 data:float +@5217 = .sdata:0x803EB270; // type:object size:0x4 scope:local align:4 data:float +@5221 = .sdata:0x803EB274; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803EB278; // type:object size:0x4 scope:local align:4 data:float +@5468 = .sdata:0x803EB27C; // type:object size:0x4 scope:local align:4 data:float +@5469 = .sdata:0x803EB280; // type:object size:0x4 scope:local align:4 data:float +@5470 = .sdata:0x803EB284; // type:object size:0x4 scope:local align:4 data:float +@5670 = .sdata:0x803EB288; // type:object size:0x4 scope:local align:4 data:float +@6196 = .sdata:0x803EB28C; // type:object size:0x4 scope:local align:4 data:float +@6197 = .sdata:0x803EB290; // type:object size:0x4 scope:local align:4 data:float +@6198 = .sdata:0x803EB294; // type:object size:0x4 scope:local align:4 data:float +@6383 = .sdata:0x803EB298; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803EB29C; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803EB2A0; // type:object size:0x4 scope:local align:4 data:float +@6391 = .sdata:0x803EB2A4; // type:object size:0x4 scope:local align:4 data:float +@6392 = .sdata:0x803EB2A8; // type:object size:0x4 scope:local align:4 data:float +@6393 = .sdata:0x803EB2AC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803EB2B0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803EB2B8; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803EB2C0; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803EB2C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803EB2D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EB2D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB2E0; // type:object size:0x8 scope:local align:4 +@6747 = .sdata:0x803EB2E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB2F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB2F8; // type:object size:0x8 scope:local align:4 +@6750 = .sdata:0x803EB300; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB308; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803EB310; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803EB318; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB320; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB328; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB330; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803EB338; // type:object size:0x8 scope:local align:4 +@6780 = .sdata:0x803EB340; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EB348; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB350; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB358; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803EB360; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803EB368; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803EB36C; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803EB370; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803EB374; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803EB378; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803EB37C; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803EB380; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803EB384; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803EB388; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803EB38C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803EB3A4; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803EB3A8; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803EB3AC; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803EB3B0; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803EB3B4; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803EB3B8; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803EB3BC; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803EB3C0; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803EB3C4; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803EB3C8; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803EB3CC; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803EB3D0; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803EB3D4; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803EB3D8; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803EB3DC; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803EB3E0; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803EB3E4; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803EB3E8; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803EB3EC; // type:object size:0x4 scope:local align:4 data:float +@3165 = .sdata:0x803EB3F0; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803EB3F4; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803EB3F8; // type:object size:0x4 scope:local align:4 data:float +@3511 = .sdata:0x803EB3FC; // type:object size:0x4 scope:local align:4 data:float +@3512 = .sdata:0x803EB400; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803EB404; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803EB408; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803EB40C; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803EB410; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803EB414; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803EB418; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803EB41C; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803EB420; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata:0x803EB424; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata:0x803EB428; // type:object size:0x4 scope:local align:4 data:float +@3537 = .sdata:0x803EB42C; // type:object size:0x4 scope:local align:4 data:float +@3538 = .sdata:0x803EB430; // type:object size:0x4 scope:local align:4 data:float +@3539 = .sdata:0x803EB434; // type:object size:0x4 scope:local align:4 data:float +@3540 = .sdata:0x803EB438; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata:0x803EB43C; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata:0x803EB440; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata:0x803EB444; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata:0x803EB448; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata:0x803EB44C; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata:0x803EB450; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata:0x803EB454; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata:0x803EB458; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata:0x803EB45C; // type:object size:0x4 scope:local align:4 data:float +@3713 = .sdata:0x803EB460; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata:0x803EB464; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803EB468; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata:0x803EB46C; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata:0x803EB470; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata:0x803EB474; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata:0x803EB478; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata:0x803EB47C; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata:0x803EB480; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata:0x803EB484; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata:0x803EB488; // type:object size:0x4 scope:local align:4 data:float +@4036 = .sdata:0x803EB48C; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata:0x803EB490; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata:0x803EB494; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata:0x803EB498; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata:0x803EB49C; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803EB4A0; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata:0x803EB4A4; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata:0x803EB4A8; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata:0x803EB4AC; // type:object size:0x4 scope:local align:4 data:float +@4120 = .sdata:0x803EB4B0; // type:object size:0x4 scope:local align:4 data:float +@4121 = .sdata:0x803EB4B4; // type:object size:0x4 scope:local align:4 data:float +@4432 = .sdata:0x803EB4B8; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata:0x803EB4BC; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata:0x803EB4C0; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata:0x803EB4C4; // type:object size:0x4 scope:local align:4 data:float +@4792 = .sdata:0x803EB4C8; // type:object size:0x4 scope:local align:4 data:float +@4859 = .sdata:0x803EB4CC; // type:object size:0x4 scope:local align:4 data:float +@4863 = .sdata:0x803EB4D0; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata:0x803EB4D4; // type:object size:0x4 scope:local align:4 data:float +@4948 = .sdata:0x803EB4D8; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata:0x803EB4DC; // type:object size:0x4 scope:local align:4 data:float +@4983 = .sdata:0x803EB4E0; // type:object size:0x4 scope:local align:4 data:float +@5030 = .sdata:0x803EB4E4; // type:object size:0x4 scope:local align:4 data:float +@5032 = .sdata:0x803EB4E8; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803EB4EC; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803EB4F0; // type:object size:0x4 scope:local align:4 data:float +@5085 = .sdata:0x803EB4F4; // type:object size:0x4 scope:local align:4 data:float +@5086 = .sdata:0x803EB4F8; // type:object size:0x4 scope:local align:4 data:float +@5087 = .sdata:0x803EB4FC; // type:object size:0x4 scope:local align:4 data:float +@5088 = .sdata:0x803EB500; // type:object size:0x4 scope:local align:4 data:float +@5095 = .sdata:0x803EB504; // type:object size:0x4 scope:local align:4 data:float +@5096 = .sdata:0x803EB508; // type:object size:0x4 scope:local align:4 data:float +@5097 = .sdata:0x803EB50C; // type:object size:0x4 scope:local align:4 data:float +@5145 = .sdata:0x803EB510; // type:object size:0x4 scope:local align:4 data:float +@5147 = .sdata:0x803EB514; // type:object size:0x4 scope:local align:4 data:float +@5235 = .sdata:0x803EB518; // type:object size:0x4 scope:local align:4 data:float +@5236 = .sdata:0x803EB51C; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata:0x803EB520; // type:object size:0x4 scope:local align:4 data:float +@5387 = .sdata:0x803EB524; // type:object size:0x4 scope:local align:4 data:float +@5388 = .sdata:0x803EB528; // type:object size:0x4 scope:local align:4 data:float +@5389 = .sdata:0x803EB52C; // type:object size:0x4 scope:local align:4 data:float +@5390 = .sdata:0x803EB530; // type:object size:0x4 scope:local align:4 data:float +@5391 = .sdata:0x803EB534; // type:object size:0x4 scope:local align:4 data:float +@5440 = .sdata:0x803EB538; // type:object size:0x4 scope:local align:4 data:float +@5442 = .sdata:0x803EB53C; // type:object size:0x4 scope:local align:4 data:float +@5560 = .sdata:0x803EB540; // type:object size:0x4 scope:local align:4 data:float +@5561 = .sdata:0x803EB544; // type:object size:0x4 scope:local align:4 data:float +@5562 = .sdata:0x803EB548; // type:object size:0x4 scope:local align:4 data:float +@5563 = .sdata:0x803EB54C; // type:object size:0x4 scope:local align:4 data:float +@5564 = .sdata:0x803EB550; // type:object size:0x4 scope:local align:4 data:float +@5565 = .sdata:0x803EB554; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803EB558; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803EB55C; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803EB560; // type:object size:0x4 scope:local align:4 data:float +@5596 = .sdata:0x803EB564; // type:object size:0x4 scope:local align:4 data:float +@5597 = .sdata:0x803EB568; // type:object size:0x4 scope:local align:4 data:float +@5598 = .sdata:0x803EB56C; // type:object size:0x4 scope:local align:4 data:float +@5599 = .sdata:0x803EB570; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803EB574; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803EB578; // type:object size:0x4 scope:local align:4 data:float +@5612 = .sdata:0x803EB57C; // type:object size:0x4 scope:local align:4 data:float +@5613 = .sdata:0x803EB580; // type:object size:0x4 scope:local align:4 data:float +@5614 = .sdata:0x803EB584; // type:object size:0x4 scope:local align:4 data:float +@5644 = .sdata:0x803EB588; // type:object size:0x4 scope:local align:4 data:float +@5646 = .sdata:0x803EB58C; // type:object size:0x4 scope:local align:4 data:float +@5703 = .sdata:0x803EB590; // type:object size:0x4 scope:local align:4 data:float +@5704 = .sdata:0x803EB594; // type:object size:0x4 scope:local align:4 data:float +@5705 = .sdata:0x803EB598; // type:object size:0x4 scope:local align:4 data:float +@5706 = .sdata:0x803EB59C; // type:object size:0x4 scope:local align:4 data:float +@5707 = .sdata:0x803EB5A0; // type:object size:0x4 scope:local align:4 data:float +@5708 = .sdata:0x803EB5A4; // type:object size:0x4 scope:local align:4 data:float +@5724 = .sdata:0x803EB5A8; // type:object size:0x4 scope:local align:4 data:float +@5730 = .sdata:0x803EB5AC; // type:object size:0x4 scope:local align:4 data:float +@5731 = .sdata:0x803EB5B0; // type:object size:0x4 scope:local align:4 data:float +@5732 = .sdata:0x803EB5B4; // type:object size:0x4 scope:local align:4 data:float +@5733 = .sdata:0x803EB5B8; // type:object size:0x4 scope:local align:4 data:float +@5734 = .sdata:0x803EB5BC; // type:object size:0x4 scope:local align:4 data:float +@5735 = .sdata:0x803EB5C0; // type:object size:0x4 scope:local align:4 data:float +@5785 = .sdata:0x803EB5C4; // type:object size:0x4 scope:local align:4 data:float +@5786 = .sdata:0x803EB5C8; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803EB5CC; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803EB5D0; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803EB5D4; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803EB5D8; // type:object size:0x4 scope:local align:4 data:float +@5799 = .sdata:0x803EB5DC; // type:object size:0x4 scope:local align:4 data:float +@5800 = .sdata:0x803EB5E0; // type:object size:0x4 scope:local align:4 data:float +@5801 = .sdata:0x803EB5E4; // type:object size:0x4 scope:local align:4 data:float +@5802 = .sdata:0x803EB5E8; // type:object size:0x4 scope:local align:4 data:float +@5803 = .sdata:0x803EB5EC; // type:object size:0x4 scope:local align:4 data:float +@5804 = .sdata:0x803EB5F0; // type:object size:0x4 scope:local align:4 data:float +@5830 = .sdata:0x803EB5F4; // type:object size:0x4 scope:local align:4 data:float +@5831 = .sdata:0x803EB5F8; // type:object size:0x4 scope:local align:4 data:float +@5832 = .sdata:0x803EB5FC; // type:object size:0x4 scope:local align:4 data:float +@5833 = .sdata:0x803EB600; // type:object size:0x4 scope:local align:4 data:float +@5834 = .sdata:0x803EB604; // type:object size:0x4 scope:local align:4 data:float +@5835 = .sdata:0x803EB608; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803EB60C; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803EB614; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803EB61C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803EB624; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803EB62C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803EB634; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803EB63C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803EB644; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803EB64C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803EB654; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803EB65C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803EB664; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803EB66C; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803EB674; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803EB67C; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803EB684; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803EB68C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803EB694; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803EB69C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803EB6A4; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803EB6AC; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803EB6B4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803EB6BC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803EB6C4; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803EB6CC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803EB6D4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803EB6DC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803EB6E4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803EB6EC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803EB6F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803EB6FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803EB704; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803EB70C; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803EB714; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803EB71C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803EB724; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803EB72C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803EB734; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803EB73C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803EB744; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803EB74C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803EB754; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803EB760; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803EB764; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803EB768; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803EB76C; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803EB780; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803EB784; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803EB788; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803EB78C; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803EB790; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803EB794; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803EB798; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803EB79C; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803EB7A4; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803EB7AC; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803EB7B4; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803EB7BC; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803EB7C4; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803EB7CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803EB7D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803EB7DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803EB7E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803EB7EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803EB7F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803EB7FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803EB804; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803EB810; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EB814; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EB818; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EB81C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803EB820; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803EB824; // type:object size:0x4 scope:local align:4 data:float +@3272 = .sdata:0x803EB828; // type:object size:0x1 scope:local align:4 +@3354 = .sdata:0x803EB82C; // type:object size:0x4 scope:local align:4 data:float +@3355 = .sdata:0x803EB830; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803EB834; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata:0x803EB838; // type:object size:0x4 scope:local align:4 data:float +@3358 = .sdata:0x803EB83C; // type:object size:0x4 scope:local align:4 data:float +@3359 = .sdata:0x803EB840; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata:0x803EB844; // type:object size:0x5 scope:local align:4 data:string +@3490 = .sdata:0x803EB84C; // type:object size:0x8 scope:local align:4 data:string +@3495 = .sdata:0x803EB854; // type:object size:0x5 scope:local align:4 data:string +@3496 = .sdata:0x803EB85C; // type:object size:0x5 scope:local align:4 data:string +@3497 = .sdata:0x803EB864; // type:object size:0x7 scope:local align:4 data:string +@3498 = .sdata:0x803EB86C; // type:object size:0x6 scope:local align:4 data:string +@3499 = .sdata:0x803EB874; // type:object size:0x5 scope:local align:4 data:string +@3500 = .sdata:0x803EB87C; // type:object size:0x5 scope:local align:4 data:string +@3501 = .sdata:0x803EB884; // type:object size:0x7 scope:local align:4 data:string +@3502 = .sdata:0x803EB88C; // type:object size:0x8 scope:local align:4 data:string +@3503 = .sdata:0x803EB894; // type:object size:0x6 scope:local align:4 data:string +@3760 = .sdata:0x803EB89C; // type:object size:0x4 scope:local align:4 data:string +@3767 = .sdata:0x803EB8A0; // type:object size:0x7 scope:local align:4 +@3769 = .sdata:0x803EB8A8; // type:object size:0x5 scope:local align:4 data:string +@3770 = .sdata:0x803EB8B0; // type:object size:0x8 scope:local align:4 data:string +@3772 = .sdata:0x803EB8B8; // type:object size:0x8 scope:local align:4 data:string +@3774 = .sdata:0x803EB8C0; // type:object size:0x5 scope:local align:4 data:string +@3776 = .sdata:0x803EB8C8; // type:object size:0x6 scope:local align:4 data:string +@3779 = .sdata:0x803EB8D0; // type:object size:0x6 scope:local align:4 data:string +@3781 = .sdata:0x803EB8D8; // type:object size:0x8 scope:local align:4 data:string +@3782 = .sdata:0x803EB8E0; // type:object size:0x8 scope:local align:4 data:string +@3967 = .sdata:0x803EB8E8; // type:object size:0x7 scope:local align:4 data:string +@3968 = .sdata:0x803EB8F0; // type:object size:0x3 scope:local align:4 data:string +@3969 = .sdata:0x803EB8F4; // type:object size:0x5 scope:local align:4 data:string +@4040 = .sdata:0x803EB8FC; // type:object size:0x8 scope:local align:4 data:string +@4150 = .sdata:0x803EB904; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata:0x803EB90C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB914; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB91C; // type:object size:0x8 scope:local align:4 +@4376 = .sdata:0x803EB924; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB92C; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803EB934; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803EB940; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803EB948; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803EB94C; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803EB950; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803EB954; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803EB958; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803EB95C; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803EB960; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803EB964; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803EB968; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803EB96C; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803EB970; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803EB974; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803EB978; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803EB97C; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EB980; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803EB984; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803EB988; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803EB98C; // type:object size:0x4 scope:local align:4 data:float +@1735 = .sdata:0x803EB990; // type:object size:0x4 scope:local align:4 data:float +@1736 = .sdata:0x803EB994; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata:0x803EB998; // type:object size:0x4 scope:local align:4 data:float +@1822 = .sdata:0x803EB99C; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata:0x803EB9A0; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata:0x803EB9A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803EB9A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EB9B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB9B8; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803EB9C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803EB9C8; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803EB9D0; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803EB9D8; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803EB9E0; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803EB9E8; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803EB9F0; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803EB9F8; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803EBA00; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803EBA08; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803EBA10; // type:object size:0x8 scope:local align:4 +@2127 = .sdata:0x803EBA18; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803EBA20; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803EBA28; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803EBA30; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803EBA38; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803EBA40; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803EBA48; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803EBA50; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803EBA58; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803EBA60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBA68; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBA70; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803EBA78; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBA80; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803EBA88; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803EBA90; // type:object size:0x8 scope:local align:4 +@737 = .sdata:0x803EBA98; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803EBA9C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803EBAA0; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803EBAA4; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803EBAA8; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803EBAAC; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803EBAB0; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata:0x803EBAB4; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803EBAB8; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803EBAC0; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803EBAC8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBAD0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBAD8; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803EBAE0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBAE8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EBAF0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EBAF8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803EBB00; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803EBB08; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803EBB10; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803EBB14; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803EBB18; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803EBB1C; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803EBB20; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803EBB24; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803EBB28; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803EBB2C; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803EBB30; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803EBB34; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803EBB38; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803EBB3C; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803EBB40; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803EBB48; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803EBB50; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803EBB58; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803EBB5C; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803EBB60; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803EBB64; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803EBB68; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803EBB6C; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803EBB70; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803EBB74; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803EBB78; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803EBB7C; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803EBB80; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803EBB84; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803EBB88; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803EBB8C; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803EBB90; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803EBB94; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803EBB98; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803EBB9C; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803EBBA0; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803EBBA4; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803EBBA8; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803EBBAC; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803EBBB0; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata:0x803EBBB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803EBBBC; // type:object size:0x8 scope:local align:4 +@1051 = .sdata:0x803EBBC4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EBBCC; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EBBD4; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803EBBDC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EBBE4; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803EBBF0; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803EBBF4; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803EBBF8; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803EBBFC; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803EBC00; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803EBC04; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803EBC08; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803EBC0C; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803EBC10; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803EBC14; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803EBC18; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803EBC1C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803EBC20; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803EBC24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBC2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBC34; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803EBC3C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBC44; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803EBC4C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803EBC54; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803EBC5C; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803EBC64; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803EBC6C; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803EBC78; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803EBC7C; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803EBC84; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803EBC8C; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803EBC94; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803EBC9C; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803EBCA4; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803EBCAC; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803EBCB4; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803EBCBC; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803EBCC4; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803EBCCC; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803EBCD4; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803EBCDC; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803EBCE4; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803EBCEC; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803EBCF4; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803EBCFC; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803EBD04; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803EBD0C; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803EBD14; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803EBD1C; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803EBD24; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803EBD2C; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803EBD34; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803EBD3C; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803EBD44; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803EBD4C; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803EBD54; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803EBD5C; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803EBD64; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803EBD6C; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803EBD74; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803EBD7C; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803EBD84; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803EBD8C; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803EBD94; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803EBD9C; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803EBDA4; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803EBDAC; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803EBDB4; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803EBDB8; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803EBDC0; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803EBDC8; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803EBDD0; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803EBDD8; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803EBDE0; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803EBDE8; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803EBDF0; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803EBDF8; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803EBE00; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803EBE08; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803EBE10; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803EBE18; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803EBE20; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803EBE28; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803EBE30; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803EBE34; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803EBE3C; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803EBE44; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803EBE4C; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803EBE54; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803EBE5C; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803EBE64; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803EBE6C; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803EBE74; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803EBE7C; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803EBE84; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803EBE8C; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803EBE94; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803EBE98; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803EBEA0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803EBEA8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EBEB0; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803EBEB8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803EBEC0; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803EBEC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EBED0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EBED8; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803EBEE0; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803EBEE8; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803EBEF0; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803EBEF8; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803EBEFC; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803EBF00; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803EBF04; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803EBF08; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803EBF0C; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803EBF14; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803EBF1C; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803EBF24; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803EBF28; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803EBF30; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803EBF38; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803EBF40; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803EBF44; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803EBF48; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803EBF50; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803EBF58; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EBF60; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EBF68; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803EBF70; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803EBF78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBF80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBF88; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803EBF90; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBF98; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EBFA0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EBFA8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803EBFB0; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803EBFB8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EBFC0; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803EBFC8; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803EBFD0; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803EBFD8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803EBFE0; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803EBFE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803EBFF0; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803EBFF8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803EC000; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803EC008; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803EC010; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803EC018; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803EC020; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EC028; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EC030; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EC038; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803EC040; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803EC048; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803EC050; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803EC054; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803EC058; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803EC05C; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803EC060; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803EC064; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803EC068; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803EC06C; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EC074; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803EC07C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803EC088; // type:object size:0x8 scope:local align:4 +@1293 = .sdata:0x803EC090; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EC098; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EC0A0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803EC0A8; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803EC0B0; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803EC0B8; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803EC0C0; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803EC0C8; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803EC0D0; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803EC0D8; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803EC0DC; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803EC0E0; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803EC0E4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803EC0EC; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803EC0F4; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803EC0FC; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803EC104; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803EC10C; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803EC114; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803EC11C; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803EC128; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803EC130; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803EC138; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803EC140; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803EC148; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803EC14C; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803EC150; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803EC154; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803EC158; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803EC15C; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803EC160; // type:object size:0x4 scope:global align:4 data:float +degreePerRadian__6NMathF = .sdata:0x803EC164; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803EC168; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803EC16C; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803EC170; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803EC178; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803EC180; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803EC188; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803EC190; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803EC198; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803EC1A0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EC1A8; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803EC1B0; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803EC1B8; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803EC1C0; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803EC1C8; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803EC1D0; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803EC1D8; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803EC1E0; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803EC1E8; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803EC1F0; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803EC1F8; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803EC200; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803EC208; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803EC210; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803EC218; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803EC220; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803EC228; // type:object size:0x8 scope:local align:4 +@1799 = .sdata:0x803EC230; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803EC234; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803EC238; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata:0x803EC23C; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata:0x803EC240; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata:0x803EC244; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata:0x803EC248; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803EC24C; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803EC250; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803EC254; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803EC258; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803EC25C; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803EC260; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803EC264; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803EC268; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803EC26C; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EC270; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803EC274; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803EC278; // type:object size:0x7 scope:local align:4 data:string +@1937 = .sdata:0x803EC280; // type:object size:0x8 scope:local align:4 data:string +@1938 = .sdata:0x803EC288; // type:object size:0x8 scope:local align:4 data:string +@2237 = .sdata:0x803EC290; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803EC294; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803EC298; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803EC29C; // type:object size:0x1 scope:local align:4 +@2311 = .sdata:0x803EC2A0; // type:object size:0x8 scope:local align:4 data:string +@2326 = .sdata:0x803EC2A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC2B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC2B8; // type:object size:0x8 scope:local align:4 +@2329 = .sdata:0x803EC2C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC2C8; // type:object size:0x8 scope:local align:4 +@2331 = .sdata:0x803EC2D0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EC2D8; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniTestSection = .sdata:0x803EC2E0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EC2E8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniTestNode = .sdata:0x803EC2F0; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803EC2F8; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803EC300; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803EC308; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803EC310; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803EC318; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803EC320; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803EC328; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803EC330; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803EC338; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803EC340; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803EC348; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC350; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC358; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803EC360; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC368; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803EC370; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803EC378; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803EC380; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803EC388; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803EC390; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803EC398; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803EC3A0; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803EC3A8; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803EC3B0; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803EC3B8; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803EC3C0; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803EC3C8; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803EC3D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC3D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC3E0; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803EC3E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC3F0; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803EC3F8; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803EC400; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803EC408; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803EC410; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803EC418; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803EC420; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803EC428; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803EC430; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803EC438; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803EC440; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803EC448; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803EC450; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803EC458; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803EC460; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803EC468; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803EC470; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803EC478; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803EC480; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803EC488; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803EC490; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803EC498; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803EC4A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803EC4A8; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803EC4B0; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803EC4B8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803EC4C0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803EC4C8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803EC4D0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803EC4D8; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803EC4E0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803EC4E8; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803EC4F0; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803EC4F8; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803EC500; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803EC508; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803EC510; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803EC518; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803EC520; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC528; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EC530; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803EC538; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC540; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803EC548; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC550; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EC558; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803EC560; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803EC568; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803EC570; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803EC578; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803EC580; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC588; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EC590; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803EC598; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803EC5A0; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803EC5A8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803EC5B0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803EC5B8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803EC5C0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC5C8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803EC5D0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803EC5D8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803EC5E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803EC5E8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803EC5F0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803EC5F8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC600; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EC608; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803EC610; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803EC618; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803EC620; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803EC628; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC630; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EC638; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803EC640; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803EC648; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803EC650; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803EC658; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC660; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EC668; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803EC670; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803EC678; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC680; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC688; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803EC690; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC698; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC6A0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803EC6A8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803EC6B0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803EC6B8; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803EC6C0; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803EC6C4; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803EC6C8; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803EC6CC; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803EC6D0; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803EC6D4; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803EC6D8; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803EC6DC; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803EC6E0; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803EC6E4; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803EC6E8; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803EC6EC; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803EC6F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803EC6F4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EC6FC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803EC704; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803EC70C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC714; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC71C; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803EC724; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC72C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC734; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803EC73C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC744; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EC74C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803EC754; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803EC75C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803EC764; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803EC76C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803EC774; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803EC77C; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803EC784; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803EC78C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803EC794; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EC79C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803EC7A4; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803EC7AC; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803EC7B4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803EC7BC; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803EC7C4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803EC7CC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803EC7D4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803EC7DC; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803EC7E4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803EC7EC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803EC7F4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803EC7FC; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803EC804; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803EC80C; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803EC814; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC81C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EC824; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803EC82C; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803EC834; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803EC83C; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803EC844; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803EC84C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803EC854; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803EC85C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC868; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803EC870; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803EC878; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803EC880; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803EC888; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803EC890; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803EC898; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803EC8A0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC8A8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EC8B0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803EC8B8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803EC8C0; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803EC8C8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803EC8D0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803EC8D8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803EC8DC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803EC8E0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803EC8E4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803EC8E8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EC8EC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EC8F0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803EC8F4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803EC8F8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803EC8FC; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803EC900; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803EC904; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803EC908; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EC90C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803EC914; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC91C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EC924; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803EC92C; // type:object size:0x8 scope:local align:4 +@2168 = .sdata:0x803EC934; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC93C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC944; // type:object size:0x8 scope:local align:4 +@2171 = .sdata:0x803EC94C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC954; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC95C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803EC964; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803EC96C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803EC974; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803EC97C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803EC984; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC990; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803EC998; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803EC9A0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC9A8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EC9B0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803EC9B8; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803EC9C0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803EC9C8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803EC9D0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803EC9D8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803EC9E0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803EC9E8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803EC9F0; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803EC9F8; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803EC9FC; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803ECA00; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803ECA04; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803ECA08; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803ECA0C; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803ECA10; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECA14; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803ECA1C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803ECA24; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803ECA2C; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803ECA34; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECA3C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ECA44; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803ECA4C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803ECA54; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803ECA5C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECA64; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ECA6C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803ECA74; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803ECA7C; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803ECA84; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECA8C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECA94; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803ECA9C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECAA4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECAAC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803ECAB4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECAC0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803ECAC8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803ECAD0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803ECAD8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803ECADC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803ECAE0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803ECAE4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803ECAE8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ECAEC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ECAF0; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803ECAF4; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803ECAF8; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803ECAFC; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803ECB00; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803ECB04; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803ECB08; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803ECB0C; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803ECB10; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803ECB14; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECB18; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803ECB20; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803ECB28; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803ECB30; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803ECB38; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803ECB40; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803ECB48; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803ECB50; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803ECB58; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803ECB60; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECB68; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ECB70; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803ECB78; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803ECB80; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECB88; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECB90; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803ECB98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECBA0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECBA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803ECBB0; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803ECBB8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803ECBC0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803ECBC8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803ECBD0; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803ECBD8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ECBDC; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803ECBE0; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ECBE4; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803ECBE8; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803ECBEC; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECBF0; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803ECBF8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803ECC00; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803ECC08; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803ECC10; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803ECC18; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ECC20; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803ECC28; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803ECC30; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803ECC38; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803ECC40; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803ECC48; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803ECC50; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803ECC54; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803ECC58; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803ECC5C; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803ECC60; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803ECC64; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803ECC68; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECC6C; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803ECC74; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803ECC7C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803ECC84; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ECC8C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803ECC94; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803ECC9C; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803ECCA4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803ECCAC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803ECCB4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803ECCBC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803ECCC4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803ECCCC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECCD4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803ECCDC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803ECCE4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803ECCEC; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803ECCF4; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803ECCFC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803ECD04; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803ECD0C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803ECD14; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803ECD1C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803ECD24; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803ECD2C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803ECD34; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803ECD3C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803ECD44; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803ECD4C; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803ECD54; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803ECD5C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803ECD64; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803ECD6C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803ECD74; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803ECD7C; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803ECD88; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803ECD8C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803ECD90; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803ECD94; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803ECD98; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ECD9C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ECDA0; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803ECDA4; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803ECDA8; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803ECDAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECDB0; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803ECDB8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803ECDC0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803ECDC8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803ECDD0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803ECDD8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803ECDE0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803ECDE8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803ECDF0; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803ECDF8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803ECE00; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803ECE08; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803ECE10; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECE18; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ECE20; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803ECE28; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803ECE30; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803ECE38; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803ECE40; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803ECE48; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803ECE50; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803ECE58; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803ECE60; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803ECE68; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ECE70; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803ECE78; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803ECE80; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803ECE88; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803ECE90; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECE98; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ECEA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803ECEA8; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803ECEB0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECEB8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECEC0; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803ECEC8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECED0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECED8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803ECEE0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803ECEE8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803ECEEC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803ECEF0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803ECEF4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803ECEF8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ECEFC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ECF00; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803ECF04; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803ECF08; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803ECF0C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803ECF10; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803ECF14; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803ECF18; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803ECF1C; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803ECF20; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECF24; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803ECF2C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803ECF34; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803ECF3C; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803ECF44; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803ECF4C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803ECF54; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECF5C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ECF64; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803ECF6C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803ECF74; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803ECF7C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803ECF84; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803ECF8C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803ECF94; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803ECF9C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECFA4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ECFAC; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803ECFB4; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803ECFBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECFC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECFCC; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803ECFD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECFDC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECFE4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803ECFEC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803ECFF4; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803ED000; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803ED004; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803ED008; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803ED00C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ED010; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803ED018; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803ED020; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803ED028; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803ED030; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803ED038; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803ED040; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ED048; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803ED050; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803ED058; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803ED060; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803ED068; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803ED070; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED078; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED080; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED088; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ED090; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803ED098; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803ED0A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED0A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED0B0; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803ED0B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED0C0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED0C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803ED0D0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED0D8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803ED0E0; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803ED0E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803ED0F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803ED0F8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803ED100; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803ED108; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED110; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED118; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803ED120; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803ED128; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ED130; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803ED138; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803ED140; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803ED148; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803ED150; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803ED158; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803ED160; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803ED168; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803ED170; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803ED178; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803ED180; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803ED188; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803ED190; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803ED198; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803ED1A0; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803ED1A8; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803ED1B0; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803ED1B4; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803ED1B8; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803ED1BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ED1C0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803ED1C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803ED1D0; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803ED1D8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803ED1E0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803ED1E8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803ED1F0; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803ED1F8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED200; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED208; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ED210; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803ED218; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803ED220; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803ED228; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803ED230; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED238; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ED240; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803ED248; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803ED250; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED258; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED260; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803ED268; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED270; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED278; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803ED280; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803ED288; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803ED290; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803ED294; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803ED298; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ED29C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803ED2A4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED2AC; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803ED2B4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803ED2BC; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803ED2C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED2CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED2D4; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803ED2DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED2E4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED2EC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803ED2F4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803ED2FC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED304; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED30C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803ED314; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803ED31C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803ED324; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803ED32C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803ED334; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803ED33C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED348; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803ED350; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803ED358; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803ED360; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803ED368; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED370; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803ED378; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803ED380; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803ED388; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803ED390; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803ED398; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803ED3A0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803ED3A8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803ED3B0; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803ED3B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803ED3C0; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803ED3C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803ED3D0; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803ED3D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803ED3E0; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803ED3E8; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803ED3F0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED3F8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED400; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803ED408; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED410; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803ED418; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803ED420; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803ED424; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803ED428; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803ED42C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803ED430; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ED434; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ED438; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803ED43C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803ED440; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803ED444; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803ED448; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803ED44C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803ED450; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803ED454; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803ED458; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803ED45C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803ED460; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803ED464; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803ED468; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803ED46C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803ED470; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803ED474; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803ED478; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803ED47C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803ED480; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803ED484; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803ED488; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803ED48C; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803ED490; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803ED494; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803ED498; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803ED49C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803ED4A0; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803ED4A4; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803ED4A8; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803ED4AC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803ED4B0; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803ED4B4; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803ED4B8; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803ED4BC; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803ED4C0; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803ED4C4; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803ED4C8; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803ED4CC; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803ED4D0; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803ED4D4; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803ED4D8; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803ED4DC; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803ED4E0; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803ED4E4; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata:0x803ED4E8; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803ED4EC; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803ED4F0; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803ED4F4; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803ED4F8; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803ED4FC; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803ED500; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803ED504; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803ED508; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata:0x803ED50C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803ED510; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED518; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803ED520; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803ED528; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803ED530; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803ED538; // type:object size:0x8 scope:local align:4 +@4713 = .sdata:0x803ED540; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803ED548; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803ED550; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803ED558; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803ED560; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED568; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803ED570; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803ED578; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803ED580; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803ED588; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803ED590; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803ED598; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803ED5A0; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803ED5A8; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803ED5B0; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803ED5B8; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803ED5C0; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803ED5C8; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803ED5D0; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803ED5D8; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803ED5E0; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803ED5E8; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803ED5F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803ED5F8; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803ED600; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803ED608; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803ED610; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803ED618; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803ED620; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803ED628; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803ED630; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803ED638; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803ED640; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803ED648; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803ED650; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803ED658; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803ED660; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803ED668; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803ED670; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803ED678; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803ED680; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803ED688; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803ED690; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803ED698; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803ED6A0; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803ED6A8; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803ED6B0; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803ED6B8; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803ED6C0; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803ED6C8; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803ED6CC; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803ED6D4; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803ED6DC; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803ED6E4; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803ED6EC; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803ED6F4; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803ED6FC; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803ED704; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803ED70C; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803ED714; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803ED71C; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803ED724; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803ED72C; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803ED734; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803ED73C; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803ED744; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803ED748; // type:object size:0x6 scope:local align:4 data:string +@1525 = .sdata:0x803ED750; // type:object size:0x8 scope:local align:4 data:string +@1527 = .sdata:0x803ED758; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED760; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED768; // type:object size:0x8 scope:local align:4 +@1530 = .sdata:0x803ED770; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED778; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803ED780; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803ED788; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803ED790; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803ED798; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803ED7A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803ED7A8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803ED7B0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803ED7B8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803ED7C0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803ED7C8; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803ED7D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803ED7D8; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803ED7E0; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803ED7E8; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803ED7F0; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803ED7F8; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803ED800; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803ED808; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED810; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED818; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803ED820; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED828; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED830; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803ED838; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803ED840; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803ED844; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803ED848; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803ED84C; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803ED850; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803ED854; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803ED858; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED860; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803ED868; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803ED870; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803ED878; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803ED880; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803ED888; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803ED890; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803ED898; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803ED89C; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803ED8A0; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803ED8A4; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803ED8A8; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803ED8AC; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803ED8B0; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803ED8B4; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803ED8B8; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803ED8BC; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803ED8C0; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803ED8C4; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803ED8C8; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803ED8CC; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803ED8D0; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803ED8D4; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803ED8D8; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803ED8DC; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803ED8E0; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803ED8E4; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803ED8E8; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803ED8EC; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803ED8F0; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803ED8F4; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803ED8F8; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803ED8FC; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803ED900; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803ED904; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803ED908; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803ED90C; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803ED910; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803ED914; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803ED918; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803ED91C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803ED920; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803ED924; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803ED928; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803ED92C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803ED930; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803ED934; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803ED93C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803ED944; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803ED94C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803ED954; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803ED95C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803ED964; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803ED970; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED978; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED980; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803ED988; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED990; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803ED998; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED9A0; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803ED9A8; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803ED9B0; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803ED9B8; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803ED9C0; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803ED9C8; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803ED9D0; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803ED9D8; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803ED9E0; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803ED9E8; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803ED9F0; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803ED9F8; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803EDA00; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803EDA08; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803EDA10; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803EDA18; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803EDA1C; // type:object size:0x5 scope:local align:4 data:string +@2899 = .sdata:0x803EDA24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDA2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDA34; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803EDA3C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EDA44; // type:object size:0x8 scope:local align:4 +@2905 = .sdata:0x803EDA4C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EDA54; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EDA5C; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803EDA64; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803EDA70; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803EDA78; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EDA7C; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EDA80; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EDA84; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EDA88; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EDA8C; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EDA90; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EDA94; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803EDA98; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803EDA9C; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EDAA0; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EDAA4; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EDAA8; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EDAAC; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803EDAB0; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EDAB4; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803EDAB8; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803EDABC; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803EDAC0; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EDAC4; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EDAC8; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EDACC; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803EDAD0; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803EDAD4; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803EDAD8; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803EDADC; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803EDAE0; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803EDAE4; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803EDAE8; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803EDAEC; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803EDAF0; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803EDAF4; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803EDAF8; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803EDAFC; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803EDB00; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803EDB04; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803EDB08; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803EDB0C; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803EDB10; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803EDB14; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803EDB18; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803EDB1C; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803EDB20; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803EDB24; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803EDB28; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803EDB2C; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803EDB30; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803EDB34; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803EDB38; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803EDB3C; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803EDB40; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803EDB44; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803EDB48; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803EDB4C; // type:object size:0x1 scope:local align:4 +@1699 = .sdata:0x803EDB50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDB58; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDB60; // type:object size:0x8 scope:local align:4 +@1701 = .sdata:0x803EDB68; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EDB70; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803EDB78; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EDB80; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EDB88; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EDB90; // type:object size:0x8 scope:local align:4 +@1715 = .sdata:0x803EDB98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EDBA0; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803EDBA8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EDBB0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EDBB8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EDBC0; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803EDBC8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EDBD0; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803EDBD8; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803EDBE0; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803EDBE4; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803EDBE8; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803EDBEC; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803EDBF0; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803EDBF4; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803EDBF8; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803EDBFC; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803EDC00; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803EDC04; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803EDC08; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803EDC0C; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803EDC10; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803EDC14; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803EDC18; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803EDC1C; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803EDC20; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803EDC24; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803EDC28; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803EDC2C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803EDC30; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803EDC34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EDC38; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803EDC40; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803EDC48; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803EDC50; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803EDC58; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803EDC60; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803EDC64; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803EDC68; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803EDC6C; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803EDC70; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803EDC74; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803EDC78; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803EDC7C; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803EDC80; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803EDC84; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EDC88; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803EDC8C; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803EDC90; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803EDC94; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803EDC98; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803EDC9C; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803EDCA0; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803EDCA4; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803EDCA8; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803EDCAC; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803EDCB0; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803EDCB4; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EDCB8; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EDCBC; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EDCC0; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803EDCC4; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EDCC8; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803EDCCC; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EDCD0; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EDCD4; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EDCD8; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803EDCDC; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803EDCE0; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EDCE4; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EDCE8; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EDCEC; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EDCF0; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803EDCF4; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EDCF8; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803EDCFC; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803EDD00; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803EDD04; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803EDD08; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EDD0C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803EDD10; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EDD14; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803EDD18; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EDD1C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EDD20; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EDD28; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EDD30; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803EDD38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EDD40; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803EDD48; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EDD50; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803EDD58; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EDD60; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803EDD68; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDD70; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDD78; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EDD80; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EDD88; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803EDD90; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803EDD98; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803EDDA0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803EDDA4; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803EDDA8; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803EDDAC; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803EDDB0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EDDB4; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803EDDBC; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803EDDC8; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803EDDCC; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803EDDD0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803EDDD4; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803EDDD8; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803EDDDC; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803EDDE0; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803EDDE4; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803EDDE8; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803EDDEC; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803EDDF0; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803EDDF4; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803EDDF8; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803EDDFC; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803EDE00; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803EDE04; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EDE08; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803EDE10; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803EDE18; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803EDE20; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803EDE24; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803EDE28; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803EDE2C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803EDE30; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803EDE34; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803EDE38; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803EDE40; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EDE44; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EDE48; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EDE4C; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EDE50; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EDE54; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EDE58; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EDE5C; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EDE60; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EDE64; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EDE68; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EDE6C; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EDE70; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EDE74; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EDE78; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EDE7C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EDE80; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EDE84; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803EDE88; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EDE8C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EDE90; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EDE94; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803EDE98; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EDE9C; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EDEA0; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803EDEA4; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803EDEA8; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EDEAC; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EDEB0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EDEB8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EDEC0; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803EDEC8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EDED0; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803EDED8; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EDEE0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803EDEE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803EDEF0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803EDEF8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EDF00; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803EDF08; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDF10; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDF18; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EDF20; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EDF28; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803EDF30; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803EDF38; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EDF3C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EDF40; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EDF44; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803EDF48; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803EDF4C; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803EDF50; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803EDF54; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803EDF58; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803EDF5C; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803EDF60; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803EDF64; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803EDF68; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803EDF6C; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803EDF70; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803EDF74; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803EDF78; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803EDF7C; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803EDF80; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803EDF88; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803EDF8C; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803EDF90; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803EDF94; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803EDF98; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803EDF9C; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EDFA0; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803EDFA4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EDFA8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EDFB0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EDFB8; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803EDFC0; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803EDFC8; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803EDFD0; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803EDFD4; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803EDFD8; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803EDFDC; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803EDFE0; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EDFE4; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EDFE8; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803EDFEC; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EDFF0; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EDFF4; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EDFF8; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803EDFFC; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EE000; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EE004; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EE008; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EE00C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EE010; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EE014; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EE018; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EE01C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EE020; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EE024; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803EE028; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EE02C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EE030; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EE034; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EE038; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EE03C; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803EE040; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803EE044; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EE048; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803EE04C; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803EE050; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803EE054; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803EE058; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803EE05C; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803EE060; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803EE064; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803EE068; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803EE06C; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803EE070; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803EE074; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EE078; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803EE07C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE084; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE08C; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803EE094; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EE09C; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803EE0A4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EE0AC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE0B4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE0BC; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803EE0C4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE0CC; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803EE0D4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EE0DC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE0E4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE0EC; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803EE0F4; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803EE100; // type:object size:0x7 scope:local align:4 data:string +@3365 = .sdata:0x803EE108; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata:0x803EE10C; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata:0x803EE110; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE114; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803EE11C; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803EE128; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803EE12C; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803EE130; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803EE134; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803EE138; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803EE13C; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803EE140; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803EE144; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803EE148; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803EE14C; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803EE150; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803EE154; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803EE158; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803EE15C; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803EE160; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803EE164; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803EE168; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803EE16C; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803EE170; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803EE174; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803EE178; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803EE17C; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803EE180; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803EE184; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803EE188; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803EE18C; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803EE190; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803EE194; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803EE198; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803EE19C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803EE1A0; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803EE1A4; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803EE1A8; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803EE1AC; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803EE1B0; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803EE1B4; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803EE1B8; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803EE1BC; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803EE1C0; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803EE1C4; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803EE1C8; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803EE1CC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803EE1D0; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803EE1D4; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803EE1D8; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803EE1DC; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803EE1E0; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803EE1E4; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803EE1E8; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803EE1EC; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803EE1F0; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803EE1F4; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803EE1F8; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803EE1FC; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803EE200; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803EE204; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803EE208; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803EE20C; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EE210; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EE214; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803EE21C; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803EE224; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EE22C; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803EE234; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803EE23C; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803EE244; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803EE24C; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803EE258; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803EE260; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EE264; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EE268; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803EE26C; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EE270; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EE274; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EE278; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EE27C; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EE280; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EE284; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EE288; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EE28C; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EE290; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EE294; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803EE298; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EE29C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE2A4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE2AC; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803EE2B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE2BC; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803EE2C4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EE2CC; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803EE2D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE2DC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE2E4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE2EC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE2F4; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803EE2FC; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803EE308; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803EE310; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803EE314; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803EE318; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803EE31C; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803EE320; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803EE324; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803EE328; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803EE32C; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803EE330; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803EE334; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803EE338; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803EE33C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EE340; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803EE344; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803EE348; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EE34C; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803EE350; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803EE354; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EE358; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803EE35C; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803EE360; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EE364; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803EE368; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803EE36C; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803EE370; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803EE374; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803EE378; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803EE37C; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803EE380; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803EE384; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803EE388; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EE38C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803EE390; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE394; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803EE39C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EE3A4; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803EE3AC; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803EE3B8; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803EE3BC; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803EE3C0; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803EE3C4; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803EE3C8; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803EE3CC; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803EE3D0; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803EE3D4; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803EE3D8; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803EE3DC; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803EE3E0; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803EE3E4; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803EE3E8; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EE3EC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE3F4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE3FC; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803EE404; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE40C; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803EE414; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EE41C; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803EE424; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803EE42C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE434; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE43C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE444; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE44C; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803EE454; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803EE460; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803EE468; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE46C; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803EE474; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EE47C; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803EE484; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EE490; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE498; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE4A0; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803EE4A8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE4B0; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803EE4B8; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EE4C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE4C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE4D0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE4D8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE4E0; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803EE4E8; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803EE4F0; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803EE4F8; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803EE4FC; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803EE500; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EE504; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE50C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE514; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803EE51C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE524; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803EE52C; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803EE534; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE53C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE544; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE54C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE554; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803EE55C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE568; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803EE570; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803EE578; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803EE57C; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803EE580; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EE584; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE58C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE594; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803EE59C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE5A4; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803EE5AC; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803EE5B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE5BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE5C4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE5CC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE5D4; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803EE5DC; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803EE5E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE5EC; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803EE5F4; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803EE600; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EE608; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EE610; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EE618; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803EE620; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EE628; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803EE630; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803EE638; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE640; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE648; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EE650; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EE658; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803EE660; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803EE668; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803EE670; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803EE674; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803EE678; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803EE67C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EE680; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803EE688; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EE690; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803EE698; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803EE6A0; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803EE6A4; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803EE6A8; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803EE6AC; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803EE6B0; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803EE6B4; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803EE6B8; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803EE6BC; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803EE6C0; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803EE6C4; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803EE6C8; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803EE6CC; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803EE6D0; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803EE6D4; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803EE6D8; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803EE6DC; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803EE6E0; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803EE6E4; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803EE6E8; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803EE6EC; // type:object size:0x4 scope:local align:4 +@969 = .sdata:0x803EE6F0; // type:object size:0x7 scope:local align:4 data:string +@1113 = .sdata:0x803EE6F8; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata:0x803EE6FC; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803EE700; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803EE704; // type:object size:0x4 scope:local align:4 data:float +@1117 = .sdata:0x803EE708; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EE70C; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803EE710; // type:object size:0x3 scope:local align:4 +@1210 = .sdata:0x803EE714; // type:object size:0x8 scope:local align:4 data:string +@1213 = .sdata:0x803EE71C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EE724; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EE72C; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803EE734; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EE73C; // type:object size:0x8 scope:local align:4 +@1218 = .sdata:0x803EE744; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EE74C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803EE754; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803EE75C; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803EE768; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803EE770; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803EE774; // type:object size:0x7 scope:local align:4 data:string +@1525 = .sdata:0x803EE77C; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803EE780; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803EE784; // type:object size:0x7 scope:local align:4 data:string +@1602 = .sdata:0x803EE78C; // type:object size:0x3 scope:local align:4 data:string +@1603 = .sdata:0x803EE790; // type:object size:0x3 scope:local align:4 data:string +@1604 = .sdata:0x803EE794; // type:object size:0x2 scope:local align:4 data:string +@1605 = .sdata:0x803EE798; // type:object size:0x3 scope:local align:4 data:string +@1606 = .sdata:0x803EE79C; // type:object size:0x3 scope:local align:4 data:string +@1607 = .sdata:0x803EE7A0; // type:object size:0x3 scope:local align:4 data:string +@1608 = .sdata:0x803EE7A4; // type:object size:0x3 scope:local align:4 data:string +@1609 = .sdata:0x803EE7A8; // type:object size:0x3 scope:local align:4 data:string +@1610 = .sdata:0x803EE7AC; // type:object size:0x3 scope:local align:4 data:string +@1611 = .sdata:0x803EE7B0; // type:object size:0x3 scope:local align:4 data:string +@1612 = .sdata:0x803EE7B4; // type:object size:0x3 scope:local align:4 data:string +@1613 = .sdata:0x803EE7B8; // type:object size:0x3 scope:local align:4 data:string +@1614 = .sdata:0x803EE7BC; // type:object size:0x3 scope:local align:4 data:string +@1615 = .sdata:0x803EE7C0; // type:object size:0x3 scope:local align:4 data:string +@1616 = .sdata:0x803EE7C4; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803EE7C8; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803EE7CC; // type:object size:0x3 scope:local align:4 data:string +@1619 = .sdata:0x803EE7D0; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803EE7D4; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803EE7D8; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803EE7DC; // type:object size:0x2 scope:local align:4 data:string +@1720 = .sdata:0x803EE7E0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803EE7E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EE7EC; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EE7F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EE7FC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EE804; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EE80C; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803EE818; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803EE820; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803EE824; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803EE82C; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803EE834; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803EE83C; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803EE844; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803EE84C; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803EE854; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803EE85C; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803EE864; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803EE86C; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803EE874; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803EE87C; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803EE884; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803EE88C; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803EE894; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803EE89C; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803EE8A4; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803EE8AC; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803EE8B4; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803EE8BC; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803EE8C4; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803EE8CC; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803EE8D4; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803EE8DC; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803EE8E4; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803EE8EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803EE8F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803EE8FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803EE904; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803EE90C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803EE914; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803EE91C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803EE924; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803EE92C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803EE934; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803EE93C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803EE944; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803EE94C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803EE954; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803EE95C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803EE964; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803EE96C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803EE974; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803EE97C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803EE984; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803EE98C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803EE994; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803EE99C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803EE9A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803EE9AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803EE9B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803EE9BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803EE9C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803EE9CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803EE9D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803EE9DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803EE9E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803EE9EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803EE9F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803EE9FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803EEA04; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803EEA0C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803EEA14; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803EEA1C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803EEA24; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803EEA2C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803EEA34; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803EEA3C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803EEA44; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803EEA4C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803EEA54; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803EEA5C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803EEA64; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803EEA6C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803EEA74; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803EEA7C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803EEA84; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803EEA8C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803EEA94; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803EEA9C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803EEAA4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803EEAAC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803EEAB4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803EEABC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803EEAC4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803EEACC; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803EEAD4; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803EEAE0; // type:object size:0x4 scope:local align:4 data:string +@1824 = .sdata:0x803EEAE8; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata:0x803EEAEC; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803EEAF0; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803EEAF4; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803EEAF8; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803EEAFC; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EEB00; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803EEB04; // type:object size:0x4 scope:local align:4 data:float +@1832 = .sdata:0x803EEB08; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata:0x803EEB0C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EEB10; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EEB14; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803EEB18; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata:0x803EEB1C; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata:0x803EEB20; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803EEB24; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803EEB28; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803EEB2C; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803EEB30; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EEB34; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EEB38; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803EEB3C; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata:0x803EEB40; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803EEB44; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803EEB48; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803EEB4C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803EEB50; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata:0x803EEB54; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata:0x803EEB58; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803EEB60; // type:object size:0x1 scope:local align:4 +@1922 = .sdata:0x803EEB64; // type:object size:0x4 scope:local align:4 data:string +@1965 = .sdata:0x803EEB68; // type:object size:0x7 scope:local align:4 data:string +@1251 = .sdata:0x803EEB70; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803EEB74; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803EEB78; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803EEB80; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803EEB88; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803EEB90; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803EEB94; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EEB98; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EEB9C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EEBA0; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803EEBA8; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803EEBB0; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803EEBB8; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803EEBC0; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803EEBC4; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803EEBC8; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803EEBCC; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803EEBD0; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803EEBD4; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803EEBD8; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803EEBDC; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803EEBE0; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803EEBE4; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803EEBE8; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803EEBF0; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803EEBF8; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803EEC00; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803EEC08; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803EEC10; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803EEC14; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803EEC18; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803EEC1C; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803EEC20; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803EEC24; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803EEC28; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803EEC2C; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803EEC30; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803EEC34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EEC38; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EEC40; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EEC48; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803EEC50; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EEC58; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EEC5C; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EEC60; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EEC64; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EEC68; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EEC6C; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EEC70; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803EEC74; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803EEC78; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803EEC7C; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803EEC84; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803EEC88; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803EEC8C; // type:object size:0x5 scope:local align:4 data:string +@1598 = .sdata:0x803EEC94; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EEC9C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EECA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803EECAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803EECB4; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803EECBC; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803EECC4; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803EECCC; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803EECD4; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803EECDC; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803EECE4; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803EECEC; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803EECF4; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803EECFC; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803EED04; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803EED0C; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803EED14; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803EED1C; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803EED24; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803EED2C; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803EED34; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803EED3C; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803EED44; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EED4C; // type:object size:0x8 scope:local align:4 +@1796 = .sdata:0x803EED54; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EED5C; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803EED64; // type:object size:0x8 scope:local align:4 +@1889 = .sdata:0x803EED6C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EED74; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803EED7C; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803EED88; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803EED90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EED98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EEDA0; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803EEDA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EEDB0; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803EEDB8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EEDC0; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803EEDC8; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EEDD0; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803EEDD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EEDE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EEDE8; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803EEDF0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EEDF8; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803EEE00; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EEE08; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803EEE10; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803EEE18; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803EEE1C; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EEE20; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EEE24; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EEE28; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EEE2C; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803EEE30; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803EEE34; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EEE38; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803EEE3C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803EEE40; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803EEE44; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803EEE48; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803EEE4C; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803EEE50; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EEE54; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803EEE58; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata:0x803EEE5C; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803EEE60; // type:object size:0x1 scope:local align:4 +@1631 = .sdata:0x803EEE64; // type:object size:0x8 scope:local align:4 data:string +@1707 = .sdata:0x803EEE6C; // type:object size:0x5 scope:local align:4 data:string +@1764 = .sdata:0x803EEE74; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EEE7C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EEE84; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803EEE8C; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803EEE94; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803EEE9C; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803EEEA4; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803EEEAC; // type:object size:0x8 scope:local align:4 +@1780 = .sdata:0x803EEEB4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EEEBC; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803EEEC4; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803EEEE0; // type:object size:0x8 scope:local align:32 +@2020 = .sdata:0x803EEEE8; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803EEEEC; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EEEF0; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EEEF4; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EEEF8; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803EEEFC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EEF00; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803EEF08; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803EEF10; // type:object size:0x4 scope:global align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EEF14; // type:object size:0x8 scope:local align:4 +@595 = .sdata:0x803EEF20; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803EEF24; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803EEF28; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803EEF2C; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803EEF30; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803EEF34; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803EEF38; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803EEF3C; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803EEF40; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803EEF44; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803EEF48; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803EEF4C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EEF50; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803EEF58; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803EEF60; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803EEF68; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EEF70; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803EEF74; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EEF78; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EEF7C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EEF80; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EEF84; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EEF88; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803EEF8C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803EEF90; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803EEF94; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803EEF98; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803EEF9C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803EEFA0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803EEFA4; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EEFA8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EEFB0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EEFB8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EEFC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EEFC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EEFD0; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803EEFD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EEFE0; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803EEFE8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803EEFF0; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803EEFF8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EF000; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803EF008; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803EF00C; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803EF010; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803EF014; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803EF018; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803EF01C; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803EF020; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803EF024; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803EF028; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803EF02C; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803EF030; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803EF034; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803EF038; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803EF03C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EF040; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803EF048; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EF050; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EF058; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803EF060; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EF068; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803EF070; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803EF078; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803EF080; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF088; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EF090; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803EF098; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EF0A0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EF0A8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803EF0B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EF0B8; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803EF0C0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EF0C8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803EF0D0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EF0D8; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EF0E0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803EF0E8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EF0F0; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803EF0F8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EF100; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EF108; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803EF110; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803EF118; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EF120; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EF128; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803EF130; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EF138; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EF140; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803EF148; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EF150; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803EF158; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803EF160; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EF164; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EF168; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803EF16C; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EF170; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EF174; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803EF178; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803EF17C; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803EF180; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803EF184; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EF188; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803EF190; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EF198; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EF1A0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803EF1A8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EF1B0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803EF1B8; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803EF1C0; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EF1C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EF1D0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EF1D8; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EF1E0; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803EF1E8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EF1F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803EF1F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EF200; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803EF208; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EF210; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803EF218; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EF220; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803EF228; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EF230; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803EF238; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EF240; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803EF248; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EF250; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803EF258; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EF260; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803EF268; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803EF270; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF278; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EF280; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803EF288; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803EF290; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EF298; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EF2A0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803EF2A8; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EF2B0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803EF2B8; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803EF2C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EF2C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EF2D0; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803EF2D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EF2E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EF2E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803EF2F0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EF2F8; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803EF300; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EF308; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803EF310; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803EF318; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EF320; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF328; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EF330; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803EF338; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803EF340; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803EF348; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803EF350; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803EF358; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EF360; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EF368; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803EF36C; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803EF370; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803EF374; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803EF378; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803EF37C; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803EF380; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803EF384; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803EF388; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803EF38C; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803EF390; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803EF394; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EF398; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803EF39C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803EF3A0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803EF3A4; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803EF3A8; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata:0x803EF3AC; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803EF3B0; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803EF3B4; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803EF3B8; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803EF3BC; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803EF3C0; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata:0x803EF3C4; // type:object size:0x4 scope:local align:4 data:float +@3458 = .sdata:0x803EF3C8; // type:object size:0x4 scope:local align:4 data:float +@3459 = .sdata:0x803EF3CC; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata:0x803EF3D0; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata:0x803EF3D4; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata:0x803EF3D8; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata:0x803EF3DC; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata:0x803EF3E0; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata:0x803EF3E4; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata:0x803EF3E8; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata:0x803EF3EC; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata:0x803EF3F0; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata:0x803EF3F4; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata:0x803EF3F8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EF3FC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EF404; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EF40C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EF414; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803EF41C; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EF424; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EF42C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EF434; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EF43C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803EF444; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EF44C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803EF454; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803EF45C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803EF464; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803EF46C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EF474; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EF47C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EF484; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EF48C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803EF494; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803EF49C; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803EF4A4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803EF4AC; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803EF4B4; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EF4BC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803EF4C4; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803EF4CC; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803EF4D4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EF4DC; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803EF4E4; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF4EC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EF4F4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803EF4FC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EF508; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EF510; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EF518; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF520; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EF528; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803EF530; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803EF538; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EF540; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EF548; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803EF550; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EF558; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803EF560; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803EF568; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803EF570; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803EF578; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EF580; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EF588; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EF590; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EF598; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EF5A0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EF5A8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EF5B0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803EF5B8; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803EF5C0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EF5C4; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803EF5C8; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EF5CC; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803EF5D0; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803EF5D4; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803EF5D8; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803EF5DC; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803EF5E0; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803EF5E4; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803EF5E8; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803EF5EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EF5F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EF5F8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803EF600; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EF608; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EF610; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EF618; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EF620; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EF628; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EF630; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EF638; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803EF640; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803EF648; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EF650; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EF658; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EF660; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EF668; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EF670; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803EF678; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EF680; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803EF684; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803EF688; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803EF68C; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803EF690; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803EF694; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803EF698; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803EF69C; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803EF6A0; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EF6A4; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803EF6A8; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EF6AC; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803EF6B0; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803EF6B4; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EF6B8; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EF6BC; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EF6C0; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803EF6C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803EF6C8; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803EF6D0; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EF6D8; // type:object size:0x8 scope:local align:4 data:string +@668 = .sdata:0x803EF6E0; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803EF6E4; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata:0x803EF6E8; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata:0x803EF6EC; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803EF6F0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803EF6F4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803EF6F8; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803EF6FC; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803EF700; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803EF704; // type:object size:0x8 scope:local align:4 +@1154 = .sdata:0x803EF710; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EF718; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803EF720; // type:object size:0x8 scope:local align:4 +@882 = .sdata:0x803EF728; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EF730; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803EF738; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803EF740; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EF748; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803EF750; // type:object size:0x8 scope:local align:4 +@731 = .sdata:0x803EF758; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EF760; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803EF768; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803EF770; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803EF774; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803EF778; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803EF780; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EF788; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803EF78C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803EF790; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EF798; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EF7A0; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EF7A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803EF7B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803EF7B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803EF7C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803EF7C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803EF7D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803EF7D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803EF7E0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803EF7E8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803EF7F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803EF7F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803EF800; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803EF808; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EF810; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EF818; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803EF820; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EF828; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803EF830; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803EF838; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803EF83C; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803EF840; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803EF844; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803EF848; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803EF84C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803EF850; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803EF854; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803EF858; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803EF85C; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803EF864; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803EF86C; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803EF874; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803EF87C; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803EF884; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EF88C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EF894; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EF89C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803EF8A4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803EF8AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803EF8B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803EF8BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EF8C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EF8CC; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803EF8D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EF8DC; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803EF8E8; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803EF8EC; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803EF8F0; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803EF8F4; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803EF8F8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EF8FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EF904; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EF90C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803EF914; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803EF91C; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803EF928; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803EF92C; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803EF930; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803EF938; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803EF940; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EF948; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EF950; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EF958; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EF960; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EF968; // type:object size:0x8 scope:local align:4 +@767 = .sdata:0x803EF970; // type:object size:0x4 scope:local align:4 +@770 = .sdata:0x803EF974; // type:object size:0x4 scope:local align:4 +@1302 = .sdata:0x803EF978; // type:object size:0x7 scope:local align:4 data:string +@1303 = .sdata:0x803EF980; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803EF988; // type:object size:0x7 scope:local align:4 data:string +@1306 = .sdata:0x803EF990; // type:object size:0x7 scope:local align:4 data:string +@1307 = .sdata:0x803EF998; // type:object size:0x7 scope:local align:4 data:string +@1309 = .sdata:0x803EF9A0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803EF9A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803EF9B0; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803EF9B8; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803EF9BC; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EF9C0; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EF9C4; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EF9C8; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803EF9CC; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803EF9D0; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803EF9D4; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803EF9D8; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803EF9DC; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803EF9E0; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803EF9E4; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803EF9E8; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803EF9EC; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803EF9F0; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803EF9F4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EF9F8; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803EFA00; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803EFA08; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803EFA10; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EFA18; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803EFA1C; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EFA20; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803EFA24; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803EFA28; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EFA2C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EFA30; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EFA34; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803EFA38; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EFA3C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803EFA44; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFA4C; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFA54; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803EFA5C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFA64; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EFA6C; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803EFA74; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803EFA7C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFA84; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EFA8C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803EFA94; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803EFA9C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EFAA4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EFAAC; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EFAB4; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803EFABC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803EFAC4; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EFACC; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EFAD4; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803EFADC; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803EFAE4; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EFAEC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803EFAF4; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EFAFC; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803EFB04; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803EFB0C; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803EFB14; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EFB1C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EFB24; // type:object size:0x8 scope:local align:4 +@3889 = .sdata:0x803EFB2C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EFB34; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EFB3C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803EFB44; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803EFB50; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EFB54; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EFB58; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EFB5C; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EFB60; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803EFB64; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EFB6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EFB74; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EFB7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803EFB84; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EFB90; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EFB94; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EFB98; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EFB9C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EFBA0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EFBA4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EFBA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803EFBB0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFBB8; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803EFBC0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803EFBC8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EFBD0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803EFBD8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803EFBE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EFBE8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EFBF0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803EFBF8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803EFC00; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFC08; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EFC10; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFC18; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFC20; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803EFC28; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803EFC30; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EFC38; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EFC40; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803EFC48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EFC50; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EFC58; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803EFC60; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EFC68; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EFC6C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EFC70; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EFC74; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EFC78; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EFC7C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EFC80; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803EFC88; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFC90; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EFC98; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803EFCA0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803EFCA8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EFCB0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EFCB8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803EFCC0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EFCC8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803EFCD0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFCD8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFCE0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFCE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803EFCF0; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803EFCF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EFD00; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EFD08; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803EFD10; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EFD18; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EFD20; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803EFD28; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EFD30; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EFD34; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EFD38; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EFD3C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EFD40; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EFD44; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803EFD48; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803EFD4C; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803EFD50; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EFD54; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803EFD5C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFD64; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EFD6C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803EFD74; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803EFD7C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EFD84; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EFD8C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803EFD94; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803EFD9C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EFDA4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EFDAC; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803EFDB4; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EFDBC; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803EFDC4; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803EFDCC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EFDD4; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803EFDDC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EFDE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803EFDEC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803EFDF4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EFDFC; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803EFE04; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EFE0C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803EFE14; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFE1C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFE24; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFE2C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803EFE34; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803EFE3C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EFE44; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EFE4C; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803EFE54; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EFE5C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EFE64; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803EFE6C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EFE78; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803EFE80; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFE88; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803EFE90; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFE98; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803EFEA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EFEA8; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803EFEB0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803EFEB8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFEC0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFEC8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803EFED0; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803EFED8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EFEE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EFEE8; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803EFEF0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EFEF8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EFF00; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803EFF08; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EFF10; // type:object size:0x4 scope:local align:4 +@1854 = .sdata:0x803EFF14; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803EFF18; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803EFF1C; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803EFF20; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803EFF24; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803EFF28; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803EFF2C; // type:object size:0x4 scope:local align:4 data:float +@2444 = .sdata:0x803EFF30; // type:object size:0x4 scope:local align:4 data:float +@2447 = .sdata:0x803EFF34; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803EFF38; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803EFF3C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EFF40; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803EFF48; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EFF50; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EFF58; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803EFF60; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EFF68; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803EFF70; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803EFF78; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EFF80; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EFF88; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803EFF90; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803EFF98; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803EFFA0; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EFFA8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803EFFB0; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EFFB8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803EFFC0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EFFC8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EFFD0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803EFFD8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EFFE0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803EFFE8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EFFF0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803EFFF8; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803F0000; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803F0008; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803F0010; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803F0018; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803F0020; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803F0028; // type:object size:0x8 scope:local align:4 +@3573 = .sdata:0x803F0030; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803F0038; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803F0040; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803F0048; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803F0050; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803F0054; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803F005C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803F0064; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803F006C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803F0074; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803F007C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803F0084; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803F008C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803F0094; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803F009C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803F00A4; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803F00AC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803F00B4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803F00BC; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803F00C4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803F00CC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803F00D4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803F00DC; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803F00E4; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803F00EC; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803F00F8; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803F00FC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803F0104; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803F0110; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803F0118; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803F0120; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803F0128; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803F0130; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803F0138; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803F0140; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803F0148; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803F0150; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803F0158; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803F0160; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803F0168; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803F0170; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803F0178; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803F0180; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803F0188; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803F0190; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803F0198; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803F01A0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803F01A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803F01B0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803F01B8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803F01C0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803F01C8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803F01D0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803F01D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803F01E0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803F01E8; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803F01F0; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803F01F8; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803F0200; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803F0208; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803F0210; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803F0218; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803F0220; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803F0228; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803F0230; // type:object size:0x8 scope:local align:4 +@3760 = .sdata:0x803F0238; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803F0240; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803F0248; // type:object size:0x8 scope:local align:4 +@3763 = .sdata:0x803F0250; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803F0258; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803F0260; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803F0268; // type:object size:0x8 scope:local align:4 +@920 = .sdata:0x803F0270; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803F0278; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803F0280; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803F0288; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803F028C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803F0290; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803F0294; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803F0298; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803F029C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803F02A0; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803F02A4; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803F02A8; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803F02AC; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803F02B0; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803F02B4; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803F02B8; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803F02BC; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803F02C0; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803F02C4; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803F02C8; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803F02CC; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803F02D0; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803F02D4; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803F02D8; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803F02DC; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803F02E0; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803F02E4; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803F02E8; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803F02EC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803F02F0; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803F02F4; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803F02F8; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803F02FC; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803F0300; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803F0304; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803F0308; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803F030C; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803F0310; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803F0314; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803F0318; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803F031C; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803F0320; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803F0324; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803F0328; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803F032C; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803F0330; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803F0334; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803F0338; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803F033C; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803F0340; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803F0344; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803F0348; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803F034C; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803F0350; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803F0354; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803F0358; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803F035C; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803F0360; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803F0364; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803F0368; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803F036C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803F0370; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803F0374; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803F0378; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803F037C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803F0380; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803F0384; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803F0388; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803F038C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803F0390; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803F0394; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803F0398; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803F039C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803F03A0; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803F03A4; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803F03A8; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803F03AC; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803F03B0; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803F03B4; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803F03B8; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803F03BC; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803F03C0; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803F03C4; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803F03C8; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803F03CC; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803F03D0; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803F03D4; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803F03D8; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803F03DC; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803F03E0; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803F03E4; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803F03E8; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803F03EC; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803F03F0; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803F03F4; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803F03F8; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803F03FC; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803F0400; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803F0404; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803F0408; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803F040C; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803F0410; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803F0414; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803F0418; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803F0420; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803F0428; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803F0430; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803F0438; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803F0440; // type:object size:0x7 scope:local align:4 data:string +@2819 = .sdata:0x803F0448; // type:object size:0x7 scope:local align:4 data:string +@2821 = .sdata:0x803F0450; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803F0458; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803F0460; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803F0468; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803F0470; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803F0478; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803F0480; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803F0488; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803F0490; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803F0498; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803F04A0; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803F04A8; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803F04AC; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803F04B0; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803F04B4; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803F04B8; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803F04C0; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803F04C4; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803F04C8; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803F04CC; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803F04D0; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803F04D4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803F04D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803F04E0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803F04E8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803F04F0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803F04F8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803F0500; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803F0508; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803F0510; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803F0518; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803F0520; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803F0528; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803F0530; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803F0538; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803F0540; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803F0548; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803F0550; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803F0558; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803F0560; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803F0568; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803F0570; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803F0578; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803F0580; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803F0588; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803F0590; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803F0598; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803F05A0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803F05A8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803F05B0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803F05B8; // type:object size:0x8 scope:local align:4 +@2667 = .sdata:0x803F05C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803F05C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803F05D0; // type:object size:0x8 scope:local align:4 +@2670 = .sdata:0x803F05D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803F05E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803F05E8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803F05F0; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803F05F8; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803F05FC; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803F0600; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803F0604; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803F0608; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803F060C; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803F0610; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803F0614; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803F0618; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803F061C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803F0620; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803F0624; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803F0628; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803F0630; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803F0634; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803F0638; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803F063C; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803F0640; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803F0644; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803F0648; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803F064C; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803F0650; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803F0654; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803F0658; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803F065C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803F0660; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803F0664; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803F0668; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803F066C; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803F0670; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803F0674; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803F0678; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803F067C; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803F0680; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803F0684; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803F0688; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803F068C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803F0690; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803F0698; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803F06A0; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803F06A8; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803F06B0; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803F06B4; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803F06BC; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803F06C4; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803F06CC; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803F06D4; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803F06D8; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803F06E0; // type:object size:0x6 scope:local align:4 data:string +@1278 = .sdata:0x803F06E8; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803F06EC; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803F06F0; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803F06F4; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803F06F8; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803F06FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803F0704; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803F070C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803F0714; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803F071C; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803F0724; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803F072C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803F0734; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803F0740; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803F0748; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803F0750; // type:object size:0x7 scope:local align:4 data:string +@771 = .sdata:0x803F0758; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803F0760; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803F0764; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803F076C; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803F0778; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803F0780; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803F0788; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803F0790; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803F0798; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803F07A0; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803F07A8; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803F07B0; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803F07B8; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803F07C0; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803F07C8; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803F07D0; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803F07D8; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803F07E0; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803F07E8; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803F07F0; // type:object size:0x4 scope:local align:4 data:4byte +@31 = .sdata:0x803F07F8; // type:object size:0x2 scope:local align:4 data:string +fontEncode$55 = .sdata:0x803F0800; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803F0808; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803F0810; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803F0818; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803F0820; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803F0828; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803F0830; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803F0834; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803F0838; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803F0840; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803F0848; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803F084C; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803F0850; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803F0854; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803F0858; // type:object size:0x4 scope:local align:4 data:4byte +CmdReadOrigin = .sdata:0x803F085C; // type:object size:0x4 scope:local align:4 +CmdCalibrate = .sdata:0x803F0860; // type:object size:0x4 scope:local align:4 +@229 = .sdata:0x803F0864; // type:object size:0x6 scope:local align:4 data:string +Chan = .sdata:0x803F0870; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803F0878; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$214 = .sdata:0x803F0880; // type:object size:0x4 scope:local align:4 +tbl2$215 = .sdata:0x803F0884; // type:object size:0x4 scope:local align:4 +tbl3$216 = .sdata:0x803F0888; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803F0890; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803F0898; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803F08A0; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803F08A8; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803F08B0; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803F08B8; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803F08C0; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803F08C8; // type:object size:0x6 scope:global align:4 +fragmentID = .sdata:0x803F08D0; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803F08D8; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803F08E0; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803F08E8; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803F08F0; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803F08F4; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803F08F8; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803F0900; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803F0908; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803F0920; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803F0924; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803F0928; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803F092C; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803F0930; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803F0934; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803F0938; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803F093C; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803F0940; // type:object size:0x1 scope:local align:1 data:byte +dacp$240 = .sbss:0x803F0944; // type:object size:0x4 scope:local align:4 data:4byte +init$241 = .sbss:0x803F0948; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803F0950; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803F0954; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803F0958; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803F095C; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803F0960; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803F0964; // type:object size:0x4 scope:local align:4 data:4byte +first$70 = .sbss:0x803F0968; // type:object size:0x4 scope:local align:4 data:4byte +init$71 = .sbss:0x803F096C; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803F0970; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803F0974; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803F0978; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803F097C; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803F0980; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803F0981; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803F0982; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803F0984; // type:object size:0x4 scope:local align:4 data:4byte +cur$194 = .sbss:0x803F0988; // type:object size:0x4 scope:local align:4 data:4byte +init$195 = .sbss:0x803F098C; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803F0990; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803F0991; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803F0992; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803F0998; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803F099C; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803F09A0; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803F09A4; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803F09A8; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803F09AC; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803F09B0; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803F09B4; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803F09BC; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803F09C0; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803F09C4; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803F09CC; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803F09D0; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$223 = .sbss:0x803F09D4; // type:object size:0x4 scope:local align:4 data:4byte +init$224 = .sbss:0x803F09D8; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803F09DC; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803F09E0; // type:object size:0x4 scope:global align:4 data:4byte +TASK_READPTR = .sbss:0x803F09E8; // type:object size:0x1 scope:local align:1 data:byte +TASK_WRITEPTR = .sbss:0x803F09E9; // type:object size:0x1 scope:local align:1 data:byte +TASK_REMAIN = .sbss:0x803F09EA; // type:object size:0x1 scope:local align:1 data:byte +cur_waits = .sbss:0x803F09F0; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803F09F4; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803F09F8; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803F0A00; // type:object size:0x4 scope:local align:4 data:4byte +inited$64 = .sbss:0x803F0A08; // type:object size:0x4 scope:local align:4 data:4byte +init$65 = .sbss:0x803F0A0C; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803F0A10; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803F0A14; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803F0A18; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803F0A20; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803F0A28; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803F0A30; // type:object size:0x4 scope:local align:4 data:4byte +first$164 = .sbss:0x803F0A34; // type:object size:0x4 scope:local align:4 data:4byte +init$165 = .sbss:0x803F0A38; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803F0A40; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803F0A48; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803F0A4C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803F0A50; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803F0A54; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803F0A58; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803F0A5C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803F0A60; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803F0A68; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803F0A6C; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803F0A70; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803F0A74; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803F0A78; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803F0A7C; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803F0A80; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803F0A84; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803F0A88; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803F0A8C; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803F0A90; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803F0A98; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803F0AA0; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803F0AA4; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803F0AA8; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803F0AB0; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803F0AB4; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803F0AB8; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803F0AB9; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803F0ABA; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803F0ABC; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803F0AC0; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803F0AC4; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803F0AC8; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803F0ACC; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803F0ACD; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803F0AD0; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803F0AD4; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803F0AD8; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803F0ADC; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803F0ADE; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803F0AE0; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803F0AE2; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803F0AE4; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803F0AE6; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803F0AE8; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803F0AEC; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803F0AF0; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803F0AF4; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803F0AF8; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803F0AFC; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803F0B00; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803F0B04; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803F0B08; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803F0B0C; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803F0B10; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803F0B18; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803F0B1C; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803F0B20; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803F0B24; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803F0B28; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803F0B2C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803F0B30; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803F0B34; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803F0B38; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803F0B3C; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803F0B40; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803F0B44; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803F0B48; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803F0B50; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803F0B54; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803F0B58; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803F0B5C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803F0B60; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803F0B64; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803F0B68; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803F0B6C; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803F0B6D; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803F0B6E; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803F0B70; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803F0B78; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803F0B80; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803F0B88; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803F0B8C; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803F0B90; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803F0B94; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803F0B98; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803F0B9C; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803F0BA0; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803F0BA4; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803F0BA8; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803F0BAC; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803F0BB4; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803F0BB8; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803F0BBC; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803F0BC0; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803F0BC4; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803F0BC8; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803F0BCC; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803F0BD0; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803F0BD4; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803F0BD8; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803F0BE0; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803F0BE4; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803F0BE8; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803F0BEC; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803F0BF0; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803F0BF8; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803F0C00; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803F0C08; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803F0C0C; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803F0C10; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803F0C14; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803F0C18; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803F0C1C; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803F0C20; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803F0C24; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803F0C28; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803F0C2C; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803F0C30; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803F0C34; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803F0C38; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803F0C3C; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803F0C40; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803F0C44; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803F0C48; // type:object size:0x4 scope:local align:4 data:4byte +gfx__11DGXGraphics = .sbss:0x803F0C4C; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803F0C50; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803F0C51; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803F0C52; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803F0C58; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803F0C5C; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803F0C60; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803F0C68; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803F0C6C; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803F0C70; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803F0C74; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803F0C78; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803F0C7C; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803F0C80; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803F0C84; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803F0C88; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803F0C8C; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803F0C90; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803F0C94; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803F0C95; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803F0C96; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803F0C98; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803F0C9C; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803F0CA0; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803F0CA1; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803F0CA8; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803F0CB0; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803F0CB4; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803F0CB8; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803F0CBC; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803F0CC0; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803F0CC4; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803F0CC8; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803F0CD0; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803F0CD4; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803F0CD8; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803F0CDC; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803F0CE0; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803F0CE4; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CE8; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CEC; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CF0; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CF4; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CF8; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0CFC; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0D00; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0D04; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0D08; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803F0D0C; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803F0D10; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803F0D18; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803F0D1C; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803F0D20; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803F0D24; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803F0D28; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803F0D30; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803F0D32; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803F0D34; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803F0D38; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803F0D40; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803F0D48; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803F0D4C; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803F0D50; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803F0D54; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803F0D58; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803F0D5C; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803F0D60; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803F0D68; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803F0D6C; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803F0D70; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803F0D74; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803F0D78; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803F0D7C; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803F0D80; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803F0D84; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803F0D88; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803F0D90; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803F0D98; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803F0DA0; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803F0DA4; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803F0DA8; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803F0DB0; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803F0DB8; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803F0DB9; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803F0DBC; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803F0DC0; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803F0DC1; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803F0DC2; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803F0DC3; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803F0DC4; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803F0DC8; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803F0DCC; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803F0DD0; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803F0DD4; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803F0DD8; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803F0DDC; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803F0DE0; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803F0DE4; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803F0DE8; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803F0DEC; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803F0DF0; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803F0DF4; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803F0DF8; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803F0DFC; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803F0E00; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803F0E08; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803F0E0C; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803F0E10; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803F0E18; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803F0E20; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803F0E24; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803F0E28; // type:object size:0x1 scope:global align:1 data:byte +count$1860 = .sbss:0x803F0E2C; // type:object size:0x4 scope:local align:4 data:4byte +init$1861 = .sbss:0x803F0E30; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803F0E34; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803F0E38; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803F0E40; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803F0E44; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803F0E48; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803F0E50; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803F0E58; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803F0E5C; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803F0E60; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803F0E64; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803F0E68; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803F0E70; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803F0E78; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803F0E80; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803F0E84; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803F0E85; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803F0E86; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803F0E87; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803F0E88; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803F0E8C; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803F0E90; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803F0E94; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803F0E98; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803F0E9C; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803F0EA0; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803F0EA4; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803F0EA8; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803F0EAC; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803F0EB0; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803F0EB8; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803F0EC0; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803F0EC4; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803F0EC8; // type:object size:0x4 scope:local align:4 data:float +ang$5660 = .sbss:0x803F0ECC; // type:object size:0x4 scope:local align:4 data:float +init$5661 = .sbss:0x803F0ED0; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803F0ED8; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803F0ED9; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803F0EDC; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803F0EE0; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803F0EE4; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803F0EE8; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803F0EEC; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803F0EF0; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803F0EF4; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803F0EF8; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803F0EFC; // type:object size:0x4 scope:global align:4 data:4byte +timer$4155 = .sbss:0x803F0F00; // type:object size:0x4 scope:local align:4 data:4byte +init$4156 = .sbss:0x803F0F04; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803F0F08; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803F0F0C; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803F0F10; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803F0F14; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803F0F18; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803F0F1C; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803F0F20; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803F0F28; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803F0F2C; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803F0F30; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803F0F38; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803F0F40; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803F0F44; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803F0F45; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803F0F48; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803F0F50; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803F0F58; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803F0F60; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803F0F68; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803F0F70; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803F0F78; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803F0F80; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803F0F88; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803F0F8C; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803F0F90; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803F0F98; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803F0FA0; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803F0FA8; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803F0FAC; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803F0FB0; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803F0FB4; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803F0FB8; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803F0FC0; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803F0FC4; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803F0FC8; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803F0FD0; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803F0FD8; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803F0FE0; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803F0FE4; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlagHolder = .sbss:0x803F0FE8; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803F0FEC; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803F0FF0; // type:object size:0x4 scope:local align:4 data:4byte +__OSStartTime = .sbss:0x803F0FF8; // type:object size:0x8 scope:global align:8 data:4byte +AlarmQueue = .sbss:0x803F1000; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803F1008; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803F100C; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803F1010; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803F1014; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803F1018; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803F1020; // type:object size:0x4 scope:local align:4 data:4byte +SaveStart = .sbss:0x803F1028; // type:object size:0x4 scope:local align:4 data:4byte +SaveEnd = .sbss:0x803F102C; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803F1030; // type:object size:0x4 scope:local align:4 data:4byte +ResetFunctionQueue = .sbss:0x803F1038; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803F1040; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803F1044; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803F1048; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803F1050; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803F1058; // type:object size:0x8 scope:local align:8 data:4byte +cmdTypeAndStatus$77 = .sbss:0x803F1060; // type:object size:0x4 scope:local align:4 +cmdTypeAndStatus$380 = .sbss:0x803F1064; // type:object size:0x4 scope:local align:4 +__PADFixBits = .sbss:0x803F1068; // type:object size:0x4 scope:global align:4 data:4byte +RunQueueBits = .sbss:0x803F1070; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803F1074; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803F1078; // type:object size:0x4 scope:local align:4 data:4byte +serEnabled = .sbss:0x803F1080; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803F1088; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803F108C; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803F1090; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803F1094; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803F1098; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803F109C; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803F10A0; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803F10A8; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803F10AC; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803F10B0; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803F10B4; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803F10B8; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803F10C0; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803F10C8; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803F10D0; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803F10D4; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803F10D8; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803F10DC; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803F10E0; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803F10E4; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803F10E8; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803F10EC; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803F10F0; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803F10F8; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803F10FC; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803F1100; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803F1104; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803F1108; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803F110C; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803F1110; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803F1114; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803F1118; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803F111C; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803F1120; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803F1124; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803F1128; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803F112C; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803F1130; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803F1134; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803F1138; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803F113C; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803F1140; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803F1144; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803F1148; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803F1150; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803F1154; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803F1158; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803F1160; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803F1164; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803F1168; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803F116C; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803F116E; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x803F1170; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x803F1178; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x803F1180; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x803F1188; // type:object size:0x8 scope:local align:8 data:4byte +CurrTiming = .sbss:0x803F1190; // type:object size:0x4 scope:local align:4 data:4byte +FBSet = .sbss:0x803F1194; // type:object size:0x4 scope:local align:4 data:4byte +message$331 = .sbss:0x803F1198; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803F11A0; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803F11A4; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803F11A8; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803F11AC; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803F11B0; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803F11B4; // type:object size:0x4 scope:local align:4 data:4byte +PendingBits = .sbss:0x803F11B8; // type:object size:0x4 scope:local align:4 data:4byte +SamplingRate = .sbss:0x803F11BC; // type:object size:0x4 scope:local align:4 data:4byte +SamplingCallback = .sbss:0x803F11C0; // type:object size:0x4 scope:local align:4 data:4byte +recalibrated$408 = .sbss:0x803F11C4; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803F11C8; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803F11D0; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803F11D4; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803F11D8; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803F11DC; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803F11E0; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803F11E8; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803F11F0; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803F11F8; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803F1200; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803F1208; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803F1210; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803F1214; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803F1218; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803F121C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803F1220; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803F1224; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803F1228; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803F122C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803F1230; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803F1234; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803F1238; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803F123C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803F1240; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803F1244; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803F1248; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803F124C; // type:object size:0x4 scope:local align:4 data:4byte +__CARDDiskID = .sbss:0x803F1250; // type:object size:0x4 scope:global align:4 data:4byte +ExiCallback = .sbss:0x803F1258; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803F125C; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803F1260; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803F1268; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803F126C; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803F1270; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803F1274; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803F1278; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803F127C; // type:object size:0x4 scope:local align:4 data:4byte +__GXCurrentThread = .sbss:0x803F1280; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803F1284; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803F1288; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803F128C; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803F1290; // type:object size:0x4 scope:local align:4 data:4byte +TokenCB = .sbss:0x803F1298; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803F129C; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803F12A0; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803F12A4; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803F12B0; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803F12B8; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803F12C0; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803F12C4; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803F12C8; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803F12CC; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803F12D0; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803F12D8; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803F12E0; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803F12E8; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803F12EC; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803F12F0; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803F12F8; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803F12FC; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803F1300; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803F1304; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803F1308; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803F130C; // type:object size:0x1 scope:local align:1 data:byte +@225 = .sdata2:0x803F1320; // type:object size:0x7 scope:local align:4 data:string +@226 = .sdata2:0x803F1328; // type:object size:0x7 scope:local align:4 data:string +@103 = .sdata2:0x803F1330; // type:object size:0x8 scope:local align:4 data:string +@32 = .sdata2:0x803F1338; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x803F1340; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x803F1348; // type:object size:0x7 scope:local align:4 data:string +@79 = .sdata2:0x803F1350; // type:object size:0x4 scope:local align:4 data:float +@52 = .sdata2:0x803F1358; // type:object size:0x4 scope:local align:4 data:float +@202 = .sdata2:0x803F135C; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803F1360; // type:object size:0x4 scope:local align:4 data:float +@216 = .sdata2:0x803F1364; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x803F1368; // type:object size:0x4 scope:local align:4 data:float +@346 = .sdata2:0x803F1370; // type:object size:0x8 scope:local align:8 data:double +@262 = .sdata2:0x803F1378; // type:object size:0x4 scope:local align:4 data:float +@264 = .sdata2:0x803F1380; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x803F1388; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803F138C; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803F1390; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x803F1398; // type:object size:0x8 scope:local align:8 data:double +@196 = .sdata2:0x803F13A0; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803F13A4; // type:object size:0x4 scope:local align:4 data:float +@198 = .sdata2:0x803F13A8; // type:object size:0x4 scope:local align:4 data:float +@199 = .sdata2:0x803F13AC; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803F13B0; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803F13B8; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803F13C0; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803F13C8; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803F13D0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F13D8; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803F13DC; // type:object size:0x4 scope:local align:4 data:float +@124 = .sdata2:0x803F13E0; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803F13E8; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803F13F0; // type:object size:0x2 scope:local align:4 data:string +@116 = .sdata2:0x803F13F8; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803F13FC; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x803F1400; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F1408; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x803F1410; // type:object size:0x4 scope:local align:4 data:float +@147 = .sdata2:0x803F1414; // type:object size:0x4 scope:local align:4 data:float +@148 = .sdata2:0x803F1418; // type:object size:0x4 scope:local align:4 data:float +@523 = .sdata2:0x803F141C; // type:object size:0x4 scope:local align:4 data:float +@577 = .sdata2:0x803F1420; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F1424; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F1428; // type:object size:0x4 scope:local align:4 data:float +@1007 = .sdata2:0x803F142C; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F1430; // type:object size:0x7 scope:local align:4 data:4byte +@1020 = .sdata2:0x803F1438; // type:object size:0x7 scope:local align:4 data:4byte +@146 = .sdata2:0x803F1440; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803F1448; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803F144C; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803F1450; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803F1458; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803F145C; // type:object size:0x4 scope:local align:4 data:float +@72 = .sdata2:0x803F1460; // type:object size:0x4 scope:local align:4 data:float +@73 = .sdata2:0x803F1464; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803F1468; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803F1470; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F1478; // type:object size:0x4 scope:local align:4 data:float +@65 = .sdata2:0x803F147C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803F1480; // type:object size:0x4 scope:local align:4 data:float +@310 = .sdata2:0x803F1488; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x803F1490; // type:object size:0x4 scope:local align:4 data:float +@549 = .sdata2:0x803F1498; // type:object size:0x8 scope:local align:8 data:double +@561 = .sdata2:0x803F14A0; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803F14A8; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803F14AC; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803F14B0; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803F14B4; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803F14B8; // type:object size:0x4 scope:local align:4 data:float +@130 = .sdata2:0x803F14BC; // type:object size:0x4 scope:local align:4 data:float +@131 = .sdata2:0x803F14C0; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803F14C4; // type:object size:0x4 scope:local align:4 data:float +@133 = .sdata2:0x803F14C8; // type:object size:0x4 scope:local align:4 data:float +@134 = .sdata2:0x803F14CC; // type:object size:0x4 scope:local align:4 data:float +@135 = .sdata2:0x803F14D0; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803F14D8; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803F14E0; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803F14E4; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803F14E8; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803F14F0; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803F14F4; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803F14F8; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803F1500; // type:object size:0x4 scope:local align:4 data:float +@319 = .sdata2:0x803F1508; // type:object size:0x4 scope:local align:4 data:float +@320 = .sdata2:0x803F150C; // type:object size:0x4 scope:local align:4 data:float +@321 = .sdata2:0x803F1510; // type:object size:0x4 scope:local align:4 data:float +@392 = .sdata2:0x803F1514; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803F1518; // type:object size:0x4 scope:local align:4 data:float +@79 = .sdata2:0x803F1520; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803F1528; // type:object size:0x4 scope:local align:4 data:float +@315 = .sdata2:0x803F152C; // type:object size:0x4 scope:local align:4 data:float +@317 = .sdata2:0x803F1530; // type:object size:0x8 scope:local align:8 data:double +@506 = .sdata2:0x803F1538; // type:object size:0x4 scope:local align:4 data:float +@307 = .sdata2:0x803F1540; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803F1548; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803F154C; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803F1550; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803F1558; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803F155C; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803F1560; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803F1564; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803F1568; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803F156C; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803F1570; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803F1578; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803F1580; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803F1584; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x803F1588; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803F1590; // type:object size:0x8 scope:local align:8 data:double +@1659 = .sdata2:0x803F1598; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803F159C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F15A0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F15A4; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803F15A8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F15B0; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803F15B4; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803F15B8; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803F15BC; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F15C0; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803F15C4; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803F15C8; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803F15CC; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803F15D0; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803F15D4; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803F15D8; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803F15DC; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803F15E0; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803F15E4; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803F15E8; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803F15EC; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803F15F0; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803F15F4; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803F15F8; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803F15FC; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803F1600; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803F1604; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F1608; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F160C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F1610; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F1614; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F1618; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803F161C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803F1620; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803F1624; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803F1628; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803F162C; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803F1630; // type:object size:0x4 scope:local align:4 data:float +@2481 = .sdata2:0x803F1634; // type:object size:0x4 scope:local align:4 data:float +@2647 = .sdata2:0x803F1638; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x803F163C; // type:object size:0x4 scope:local align:4 data:float +@3584 = .sdata2:0x803F1640; // type:object size:0x4 scope:local align:4 data:float +@3585 = .sdata2:0x803F1644; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x803F1648; // type:object size:0x8 scope:local align:8 data:double +@3588 = .sdata2:0x803F1650; // type:object size:0x8 scope:local align:8 data:double +@4435 = .sdata2:0x803F1658; // type:object size:0x8 scope:local align:4 data:4byte +@4500 = .sdata2:0x803F1660; // type:object size:0x8 scope:local align:8 data:double +@4501 = .sdata2:0x803F1668; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803F1670; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803F1678; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803F1680; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803F1688; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803F1690; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803F1694; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803F1698; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803F169C; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803F16A0; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F16A4; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803F16A8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803F16AC; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803F16B0; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F16B8; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803F16C0; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803F16C4; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803F16C8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F16CC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803F16D0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803F16D8; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803F16E0; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803F16E8; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803F16F0; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803F16F8; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803F16FC; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803F1700; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803F1704; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803F1708; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803F1710; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803F1714; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803F1718; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803F171C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803F1720; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803F1724; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803F1728; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata2:0x803F172C; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803F1730; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803F1734; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata2:0x803F1738; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803F173C; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803F1740; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803F1744; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F1748; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F174C; // type:object size:0x4 scope:local align:4 data:float +@725 = .sdata2:0x803F1750; // type:object size:0x4 scope:local align:4 data:float +@730 = .sdata2:0x803F1758; // type:object size:0x8 scope:local align:8 data:double +@414 = .sdata2:0x803F1760; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803F1768; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803F1770; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803F1774; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803F1778; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803F177C; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803F1780; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803F1788; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803F1790; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803F1794; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803F1798; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803F17A0; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803F17A8; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803F17AC; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803F17B0; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F17B4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F17B8; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803F17C0; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803F17C8; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata2:0x803F17D0; // type:object size:0x8 scope:local align:8 data:double +@695 = .sdata2:0x803F17D8; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803F17E0; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata2:0x803F17E4; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803F17E8; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x803F17F0; // type:object size:0x8 scope:local align:8 data:double +@724 = .sdata2:0x803F17F8; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F1800; // type:object size:0x8 scope:local align:8 data:double +@726 = .sdata2:0x803F1808; // type:object size:0x4 scope:local align:4 data:float +@727 = .sdata2:0x803F180C; // type:object size:0x4 scope:local align:4 data:float +@874 = .sdata2:0x803F1810; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803F1814; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803F1818; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata2:0x803F181C; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803F1820; // type:object size:0x8 scope:local align:8 data:double +@1304 = .sdata2:0x803F1828; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803F1830; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F1834; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803F1838; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803F183C; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F1840; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803F1844; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803F1848; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803F184C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F1850; // type:object size:0x8 scope:local align:8 data:double +@1262 = .sdata2:0x803F1858; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F1860; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F1864; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F1868; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F186C; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F1870; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803F1878; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803F1880; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F1884; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803F1888; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803F188C; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata2:0x803F1890; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803F1894; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803F1898; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803F189C; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata2:0x803F18A0; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803F18A4; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803F18A8; // type:object size:0x4 scope:local align:4 data:float +@2465 = .sdata2:0x803F18AC; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x803F18B0; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x803F18B4; // type:object size:0x4 scope:local align:4 data:float +@2469 = .sdata2:0x803F18B8; // type:object size:0x4 scope:local align:4 data:float +@2471 = .sdata2:0x803F18BC; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata2:0x803F18C0; // type:object size:0x8 scope:local align:8 data:double +@937 = .sdata2:0x803F18C8; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F18D0; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F18D4; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803F18D8; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803F18DC; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803F18E0; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803F18E4; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803F18E8; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F18F0; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F18F4; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F18F8; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F18FC; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F1900; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata2:0x803F1904; // type:object size:0x4 scope:local align:4 data:float +@2272 = .sdata2:0x803F1908; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803F190C; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata2:0x803F1910; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata2:0x803F1914; // type:object size:0x4 scope:local align:4 data:float +@2941 = .sdata2:0x803F1918; // type:object size:0x4 scope:local align:4 data:float +@2942 = .sdata2:0x803F191C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F1920; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F1924; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x803F1928; // type:object size:0x4 scope:local align:4 data:float +@3051 = .sdata2:0x803F192C; // type:object size:0x4 scope:local align:4 data:float +@3052 = .sdata2:0x803F1930; // type:object size:0x4 scope:local align:4 data:float +@3053 = .sdata2:0x803F1934; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata2:0x803F1938; // type:object size:0x4 scope:local align:4 data:float +@3316 = .sdata2:0x803F193C; // type:object size:0x4 scope:local align:4 data:float +@3317 = .sdata2:0x803F1940; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803F1944; // type:object size:0x4 scope:local align:4 data:float +@3321 = .sdata2:0x803F1948; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata2:0x803F194C; // type:object size:0x4 scope:local align:4 data:float +@3327 = .sdata2:0x803F1950; // type:object size:0x8 scope:local align:8 data:double +@1300 = .sdata2:0x803F1958; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x803F195C; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803F1960; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803F1964; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803F1968; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata2:0x803F1970; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F1978; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803F197C; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803F1980; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803F1984; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803F1988; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803F198C; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803F1990; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803F1994; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803F1998; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803F199C; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803F19A0; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803F19A8; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803F19B0; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803F19B4; // type:object size:0x4 scope:local align:4 data:float +@809 = .sdata2:0x803F19B8; // type:object size:0x4 scope:local align:4 data:float +@873 = .sdata2:0x803F19BC; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F19C0; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803F19C4; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F19C8; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803F19CC; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F19D0; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803F19D4; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803F19D8; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803F19DC; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803F19E0; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F19E4; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803F19E8; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803F19EC; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803F19F0; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803F19F8; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803F19FC; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F1A00; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803F1A04; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F1A08; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803F1A0C; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803F1A10; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F1A14; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F1A18; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F1A1C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F1A20; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F1A24; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803F1A28; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803F1A30; // type:object size:0x8 scope:local align:8 data:double +@812 = .sdata2:0x803F1A38; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803F1A3C; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F1A40; // type:object size:0x8 scope:local align:8 data:double +@1342 = .sdata2:0x803F1A48; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803F1A4C; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F1A50; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803F1A54; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F1A58; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F1A5C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F1A60; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F1A64; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803F1A68; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F1A6C; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803F1A70; // type:object size:0x8 scope:local align:8 data:double +@1640 = .sdata2:0x803F1A78; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F1A7C; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata2:0x803F1A80; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803F1A84; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F1A88; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803F1A8C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803F1A90; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803F1A94; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803F1A98; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata2:0x803F1A9C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F1AA0; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F1AA4; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F1AA8; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F1AAC; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803F1AB0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803F1AB8; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803F1ABC; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803F1AC0; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803F1AC4; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803F1AC8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803F1AD0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803F1AD4; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803F1AD8; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803F1AE0; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803F1AE8; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803F1AEC; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803F1AF0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F1AF4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803F1AF8; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F1AFC; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803F1B00; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803F1B04; // type:object size:0x4 scope:local align:4 data:float +@2509 = .sdata2:0x803F1B08; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803F1B0C; // type:object size:0x4 scope:local align:4 data:float +@2902 = .sdata2:0x803F1B10; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata2:0x803F1B14; // type:object size:0x4 scope:local align:4 data:float +@3009 = .sdata2:0x803F1B18; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803F1B1C; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803F1B20; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x803F1B24; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x803F1B28; // type:object size:0x8 scope:local align:8 data:double +@3507 = .sdata2:0x803F1B30; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x803F1B34; // type:object size:0x4 scope:local align:4 data:float +@3511 = .sdata2:0x803F1B38; // type:object size:0x8 scope:local align:8 data:double +@3820 = .sdata2:0x803F1B40; // type:object size:0x4 scope:local align:4 data:float +@3822 = .sdata2:0x803F1B44; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803F1B48; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x803F1B4C; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x803F1B50; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x803F1B54; // type:object size:0x4 scope:local align:4 data:float +@4051 = .sdata2:0x803F1B58; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x803F1B5C; // type:object size:0x4 scope:local align:4 data:float +@4427 = .sdata2:0x803F1B60; // type:object size:0x4 scope:local align:4 data:float +@4428 = .sdata2:0x803F1B64; // type:object size:0x4 scope:local align:4 data:float +@4429 = .sdata2:0x803F1B68; // type:object size:0x4 scope:local align:4 data:float +@4627 = .sdata2:0x803F1B6C; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x803F1B70; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F1B78; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F1B7C; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803F1B80; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803F1B84; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803F1B88; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803F1B8C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803F1B90; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803F1B94; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803F1B98; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803F1BA0; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803F1BA8; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803F1BAC; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803F1BB0; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803F1BB4; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F1BB8; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803F1BBC; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803F1BC0; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803F1BC4; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803F1BC8; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803F1BD0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803F1BD4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F1BD8; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803F1BE0; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803F1BE8; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803F1BEC; // type:object size:0x4 scope:local align:4 data:float +@2542 = .sdata2:0x803F1BF0; // type:object size:0x4 scope:local align:4 data:float +@2543 = .sdata2:0x803F1BF4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F1BF8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803F1BFC; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803F1C00; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803F1C04; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803F1C08; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F1C0C; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803F1C10; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803F1C18; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F1C1C; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F1C20; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F1C28; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803F1C2C; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F1C30; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata2:0x803F1C34; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata2:0x803F1C38; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803F1C3C; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803F1C40; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803F1C48; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803F1C50; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803F1C54; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803F1C58; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803F1C5C; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803F1C60; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803F1C64; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803F1C68; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803F1C70; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803F1C74; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803F1C78; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803F1C7C; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803F1C80; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803F1C88; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803F1C90; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803F1C98; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803F1CA0; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803F1CA4; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803F1CA8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F1CAC; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803F1CB0; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803F1CB4; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803F1CB8; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803F1CBC; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803F1CC0; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803F1CC4; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803F1CC8; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803F1CCC; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803F1CD0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803F1CD4; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F1CD8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F1CE0; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F1CE4; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803F1CE8; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803F1CF0; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata2:0x803F1CF4; // type:object size:0x4 scope:local align:4 data:float +@1194 = .sdata2:0x803F1CF8; // type:object size:0x4 scope:local align:4 data:float +@1196 = .sdata2:0x803F1CFC; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F1D00; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803F1D08; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata2:0x803F1D0C; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803F1D10; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803F1D14; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803F1D18; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803F1D1C; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803F1D20; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803F1D24; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803F1D28; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803F1D2C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803F1D30; // type:object size:0x8 scope:local align:8 data:double +@1600 = .sdata2:0x803F1D38; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803F1D40; // type:object size:0x8 scope:local align:8 data:double +@1602 = .sdata2:0x803F1D48; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803F1D50; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F1D54; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F1D58; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F1D5C; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata2:0x803F1D60; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803F1D64; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F1D68; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803F1D6C; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803F1D70; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F1D74; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803F1D78; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803F1D7C; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata2:0x803F1D80; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803F1D84; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803F1D88; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803F1D8C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803F1D90; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803F1D98; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803F1DA0; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803F1DA4; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803F1DA8; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803F1DAC; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803F1DB0; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F1DB4; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F1DB8; // type:object size:0x4 scope:local align:4 data:float +@517 = .sdata2:0x803F1DC0; // type:object size:0x4 scope:local align:4 data:float +@520 = .sdata2:0x803F1DC8; // type:object size:0x8 scope:local align:8 data:double +@1012 = .sdata2:0x803F1DD0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F1DD8; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803F1DE0; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803F1DE8; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803F1DEC; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803F1DF0; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803F1DF4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata2:0x803F1DF8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803F1DFC; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata2:0x803F1E00; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803F1E08; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803F1E0C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803F1E10; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803F1E18; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803F1E20; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803F1E24; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F1E28; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F1E2C; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F1E30; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803F1E34; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803F1E38; // type:object size:0x4 scope:local align:4 data:float +@2444 = .sdata2:0x803F1E3C; // type:object size:0x4 scope:local align:4 data:float +@2464 = .sdata2:0x803F1E40; // type:object size:0x4 scope:local align:4 data:float +@2508 = .sdata2:0x803F1E44; // type:object size:0x4 scope:local align:4 data:float +@2509 = .sdata2:0x803F1E48; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata2:0x803F1E4C; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F1E50; // type:object size:0x4 scope:local align:4 data:float +@2899 = .sdata2:0x803F1E54; // type:object size:0x4 scope:local align:4 data:float +@2900 = .sdata2:0x803F1E58; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803F1E5C; // type:object size:0x4 scope:local align:4 data:float +@2902 = .sdata2:0x803F1E60; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803F1E68; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F1E6C; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803F1E70; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803F1E74; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803F1E78; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803F1E7C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803F1E80; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803F1E84; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803F1E88; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F1E8C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F1E90; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F1E94; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F1E98; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F1E9C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F1EA0; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F1EA4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F1EA8; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803F1EB0; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803F1EB8; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803F1EBC; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803F1EC0; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803F1EC8; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803F1ED0; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803F1ED8; // type:object size:0x8 scope:local align:8 data:double +@1455 = .sdata2:0x803F1EE0; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F1EE4; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803F1EE8; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata2:0x803F1EEC; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803F1EF0; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803F1EF4; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F1EF8; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata2:0x803F1EFC; // type:object size:0x4 scope:local align:4 data:float +@1062 = .sdata2:0x803F1F00; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803F1F04; // type:object size:0x4 scope:local align:4 data:float +@1323 = .sdata2:0x803F1F08; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803F1F0C; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803F1F10; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F1F14; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F1F18; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803F1F20; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803F1F24; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803F1F28; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803F1F2C; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803F1F30; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803F1F34; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803F1F38; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803F1F3C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F1F40; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803F1F44; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803F1F48; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803F1F4C; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803F1F50; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803F1F54; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803F1F58; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803F1F60; // type:object size:0x8 scope:local align:8 data:double +@1440 = .sdata2:0x803F1F68; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803F1F6C; // type:object size:0x4 scope:local align:4 data:float +@1571 = .sdata2:0x803F1F70; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803F1F78; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803F1F80; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803F1F88; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803F1F90; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803F1F98; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803F1F9C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F1FA0; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F1FA4; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata2:0x803F1FA8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803F1FAC; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803F1FB0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F1FB4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803F1FB8; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803F1FBC; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803F1FC0; // type:object size:0x8 scope:local align:8 data:double +@2020 = .sdata2:0x803F1FC8; // type:object size:0x8 scope:local align:8 data:double +@2040 = .sdata2:0x803F1FD0; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F1FD8; // type:object size:0x8 scope:local align:8 data:double +@2085 = .sdata2:0x803F1FE0; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803F1FE4; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x803F1FE8; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x803F1FEC; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x803F1FF0; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803F1FF4; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803F1FF8; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F1FFC; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803F2000; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803F2004; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803F2008; // type:object size:0x4 scope:local align:4 data:float +@2915 = .sdata2:0x803F200C; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata2:0x803F2010; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata2:0x803F2014; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata2:0x803F2018; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata2:0x803F201C; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803F2020; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803F2024; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803F2028; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803F202C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803F2030; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803F2034; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803F2038; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803F203C; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803F2040; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803F2048; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803F2050; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803F2054; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803F2058; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F2060; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F2064; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803F2068; // type:object size:0x8 scope:local align:8 data:double +@1751 = .sdata2:0x803F2070; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803F2074; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803F2078; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803F2080; // type:object size:0x8 scope:local align:8 data:double +@2335 = .sdata2:0x803F2088; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803F208C; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803F2090; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803F2094; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803F2098; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata2:0x803F209C; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata2:0x803F20A0; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata2:0x803F20A4; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803F20A8; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata2:0x803F20AC; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F20B0; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803F20B4; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F20B8; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata2:0x803F20C0; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F20C4; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F20C8; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F20D0; // type:object size:0x8 scope:local align:8 data:double +@1329 = .sdata2:0x803F20D8; // type:object size:0x8 scope:local align:8 data:double +@3145 = .sdata2:0x803F20E0; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata2:0x803F20E4; // type:object size:0x4 scope:local align:4 data:float +@3161 = .sdata2:0x803F20E8; // type:object size:0x4 scope:local align:4 data:float +@3236 = .sdata2:0x803F20EC; // type:object size:0x4 scope:local align:4 data:float +@3237 = .sdata2:0x803F20F0; // type:object size:0x4 scope:local align:4 data:float +@3238 = .sdata2:0x803F20F4; // type:object size:0x4 scope:local align:4 data:float +@3239 = .sdata2:0x803F20F8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F2100; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F2104; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F2108; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803F210C; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803F2110; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803F2118; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803F211C; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803F2120; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803F2128; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803F212C; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803F2130; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803F2138; // type:object size:0x8 scope:local align:8 data:double +@1993 = .sdata2:0x803F2140; // type:object size:0x8 scope:local align:8 data:double +@2076 = .sdata2:0x803F2148; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata2:0x803F214C; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803F2150; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F2154; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803F2158; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803F215C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803F2160; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F2164; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F2168; // type:object size:0x8 scope:local align:8 data:double +@1915 = .sdata2:0x803F2170; // type:object size:0x8 scope:local align:8 data:double +@1951 = .sdata2:0x803F2178; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F217C; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F2180; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F2184; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F2188; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F2190; // type:object size:0x8 scope:local align:8 data:double +@2102 = .sdata2:0x803F2198; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803F219C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803F21A0; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803F21A8; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803F21B0; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803F21B8; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803F21BC; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803F21C0; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803F21C4; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F21C8; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803F21CC; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803F21D0; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803F21D4; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803F21D8; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803F21DC; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803F21E0; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803F21E4; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803F21E8; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803F21F0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803F21F4; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803F21F8; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803F21FC; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803F2200; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803F2204; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803F2208; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803F2210; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803F2218; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803F2220; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F2228; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803F222C; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F2230; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803F2238; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803F2240; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803F2244; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803F2248; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803F224C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803F2250; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803F2254; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803F2258; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803F225C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803F2260; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803F2268; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803F2270; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803F2278; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803F227C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803F2280; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F2284; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803F2288; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803F228C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F2290; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803F2294; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803F2298; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803F229C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803F22A0; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803F22A8; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F22AC; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803F22B0; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F22B4; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803F22B8; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F22C0; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803F22C4; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F22C8; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F22D0; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata2:0x803F22D4; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F22D8; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F22DC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F22E0; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F22E4; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803F22E8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F22EC; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803F22F0; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803F22F8; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803F22FC; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803F2300; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803F2304; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803F2308; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803F2310; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F2314; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F2318; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F231C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803F2320; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803F2324; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F2328; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803F232C; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803F2330; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803F2334; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803F2338; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803F2340; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata2:0x803F2344; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803F2348; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata2:0x803F234C; // type:object size:0x4 scope:local align:4 data:float +@1289 = .sdata2:0x803F2350; // type:object size:0x8 scope:local align:8 data:double +@1370 = .sdata2:0x803F2358; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803F2360; // type:object size:0x8 scope:local align:8 data:double +@1372 = .sdata2:0x803F2368; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803F236C; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F2370; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F2374; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803F2378; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803F237C; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803F2380; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803F2388; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803F2390; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803F2398; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F239C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F23A0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F23A8; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803F23B0; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803F23B4; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803F23B8; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803F23BC; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803F23C0; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803F23C4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803F23C8; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803F23CC; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803F23D0; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803F23D4; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803F23D8; // type:object size:0x4 scope:local align:4 data:float +@2674 = .sdata2:0x803F23DC; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803F23E0; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803F23E4; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata2:0x803F23E8; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803F23EC; // type:object size:0x4 scope:local align:4 data:float +@3293 = .sdata2:0x803F23F0; // type:object size:0x4 scope:local align:4 data:float +@3294 = .sdata2:0x803F23F4; // type:object size:0x4 scope:local align:4 data:float +@3295 = .sdata2:0x803F23F8; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x803F23FC; // type:object size:0x4 scope:local align:4 data:float +@4071 = .sdata2:0x803F2400; // type:object size:0x4 scope:local align:4 data:float +@4072 = .sdata2:0x803F2404; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x803F2408; // type:object size:0x4 scope:local align:4 data:float +@4251 = .sdata2:0x803F240C; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata2:0x803F2410; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x803F2414; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803F2418; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803F241C; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803F2420; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803F2424; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F2428; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F242C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F2430; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803F2434; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803F2438; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803F243C; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803F2440; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F2444; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803F2448; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803F2450; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803F2458; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803F245C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803F2460; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803F2468; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803F246C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803F2470; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803F2474; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803F2478; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803F2480; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803F2488; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803F2490; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803F2498; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803F24A0; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803F24A4; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803F24A8; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F24AC; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803F24B0; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803F24B8; // type:object size:0x8 scope:local align:8 data:double +@2356 = .sdata2:0x803F24C0; // type:object size:0x8 scope:local align:8 data:double +@2357 = .sdata2:0x803F24C8; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803F24CC; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803F24D0; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803F24D4; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803F24D8; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803F24DC; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803F24E0; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803F24E4; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803F24E8; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803F24EC; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803F24F0; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803F24F4; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata2:0x803F24F8; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803F24FC; // type:object size:0x4 scope:local align:4 data:float +@2371 = .sdata2:0x803F2500; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata2:0x803F2504; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata2:0x803F2508; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803F2510; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803F2514; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803F2518; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803F251C; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803F2520; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803F2528; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803F2530; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F2534; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F2538; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F253C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F2540; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F2548; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803F2550; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803F2558; // type:object size:0x8 scope:local align:8 data:double +@1435 = .sdata2:0x803F2560; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803F2564; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803F2568; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803F256C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803F2570; // type:object size:0x4 scope:local align:4 data:float +@1446 = .sdata2:0x803F2574; // type:object size:0x4 scope:local align:4 data:float +@1448 = .sdata2:0x803F2578; // type:object size:0x8 scope:local align:8 data:double +@1477 = .sdata2:0x803F2580; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata2:0x803F2584; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803F2588; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803F258C; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803F2590; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803F2594; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803F2598; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803F25A0; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803F25A4; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803F25A8; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F25AC; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F25B0; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F25B8; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803F25C0; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803F25C8; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803F25D0; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803F25D8; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803F25E0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803F25E4; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803F25E8; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F25EC; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F25F0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803F25F4; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F25F8; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803F25FC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F2600; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803F2608; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803F2610; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803F2618; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803F261C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803F2620; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803F2628; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803F262C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F2630; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803F2634; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803F2638; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F2640; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803F2648; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803F2650; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803F2658; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803F2660; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F2664; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F2668; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata2:0x803F266C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F2670; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F2674; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F2678; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F267C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803F2680; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803F2684; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F2688; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803F2690; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803F2694; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803F2698; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803F269C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803F26A0; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F26A4; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803F26A8; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803F26AC; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803F26B0; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803F26B8; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803F26BC; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F26C0; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F26C4; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F26C8; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803F26D0; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803F26D4; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803F26D8; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803F26E0; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803F26E8; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803F26EC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803F26F0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803F26F4; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803F26F8; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803F2700; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803F2708; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803F2710; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F2714; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F2718; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F271C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F2720; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F2724; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F2728; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F272C; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F2730; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803F2738; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803F273C; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803F2740; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F2744; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803F2748; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803F274C; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803F2750; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803F2758; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803F2760; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803F2764; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F2768; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803F2770; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803F2774; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803F2778; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803F277C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F2780; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F2784; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803F2788; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803F2790; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F2794; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F2798; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F27A0; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F27A4; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803F27A8; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803F27AC; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803F27B0; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803F27B4; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803F27B8; // type:object size:0x8 scope:local align:8 data:double +@1991 = .sdata2:0x803F27C0; // type:object size:0x8 scope:local align:8 data:double +@2175 = .sdata2:0x803F27C8; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata2:0x803F27CC; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F27D0; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F27D4; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata2:0x803F27D8; // type:object size:0x4 scope:local align:4 data:float +@2581 = .sdata2:0x803F27DC; // type:object size:0x4 scope:local align:4 data:float +@2583 = .sdata2:0x803F27E0; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803F27E8; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803F27EC; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803F27F0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803F27F4; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803F27F8; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803F27FC; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803F2800; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803F2808; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803F2810; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803F2814; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803F2818; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803F281C; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803F2820; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803F2824; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803F2828; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803F282C; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803F2830; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803F2838; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803F2840; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803F2848; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803F284C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F2850; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F2854; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F2858; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F285C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F2860; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F2864; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803F2868; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803F286C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803F2870; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803F2874; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803F2878; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803F287C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803F2880; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803F2888; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803F288C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803F2890; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803F2894; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F2898; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803F289C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803F28A0; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803F28A8; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803F28B0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F28B8; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F28BC; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803F28C0; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803F28C4; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F28C8; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803F28D0; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803F28D8; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F28E0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803F28E8; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803F28F0; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803F28F8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F28FC; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803F2900; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803F2904; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803F2908; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803F290C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803F2910; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803F2914; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803F2918; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803F291C; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803F2920; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803F2924; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803F2928; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803F2930; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803F2934; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F2938; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803F2940; // type:object size:0x8 scope:local align:8 data:double +@2236 = .sdata2:0x803F2948; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803F2950; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803F2958; // type:object size:0x8 scope:local align:8 data:double +@2239 = .sdata2:0x803F2960; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803F2964; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F2968; // type:object size:0x8 scope:local align:8 data:double +@2540 = .sdata2:0x803F2970; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata2:0x803F2974; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803F2978; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803F297C; // type:object size:0x4 scope:local align:4 data:float +@3267 = .sdata2:0x803F2980; // type:object size:0x4 scope:local align:4 data:float +@3269 = .sdata2:0x803F2984; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803F2988; // type:object size:0x4 scope:local align:4 data:float +@3332 = .sdata2:0x803F298C; // type:object size:0x4 scope:local align:4 data:float +@3334 = .sdata2:0x803F2990; // type:object size:0x8 scope:local align:8 data:double +@3664 = .sdata2:0x803F2998; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x803F299C; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x803F29A0; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x803F29A4; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803F29A8; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x803F29AC; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata2:0x803F29B0; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x803F29B4; // type:object size:0x4 scope:local align:4 data:float +@4589 = .sdata2:0x803F29B8; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x803F29BC; // type:object size:0x4 scope:local align:4 data:float +@4591 = .sdata2:0x803F29C0; // type:object size:0x4 scope:local align:4 data:float +@4819 = .sdata2:0x803F29C4; // type:object size:0x4 scope:local align:4 data:float +@4820 = .sdata2:0x803F29C8; // type:object size:0x4 scope:local align:4 data:float +@4821 = .sdata2:0x803F29CC; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata2:0x803F29D0; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803F29D8; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803F29DC; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803F29E0; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803F29E8; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803F29F0; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803F29F4; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803F29F8; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803F2A00; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803F2A04; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803F2A08; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803F2A0C; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803F2A10; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803F2A14; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803F2A18; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803F2A1C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F2A20; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F2A24; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F2A28; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F2A2C; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F2A30; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F2A34; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F2A38; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F2A3C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F2A40; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F2A44; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F2A48; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F2A4C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F2A50; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F2A54; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F2A58; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F2A5C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F2A60; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F2A64; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F2A68; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F2A6C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F2A70; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F2A74; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F2A78; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803F2A7C; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F2A80; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803F2A84; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803F2A88; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F2A8C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F2A90; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F2A94; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F2A98; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F2A9C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803F2AA0; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803F2AA4; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803F2AA8; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803F2AAC; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803F2AB0; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803F2AB8; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803F2AC0; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803F2AC4; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803F2AC8; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803F2ACC; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803F2AD0; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803F2AD4; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803F2AD8; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803F2ADC; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803F2AE0; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803F2AE8; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803F2AF0; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803F2AF8; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803F2AFC; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803F2B00; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803F2B04; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803F2B08; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803F2B0C; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803F2B10; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803F2B14; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803F2B18; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803F2B1C; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803F2B20; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803F2B24; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803F2B28; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803F2B2C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F2B30; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803F2B34; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803F2B38; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803F2B3C; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803F2B40; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803F2B44; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803F2B48; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x803F2B4C; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata2:0x803F2B50; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata2:0x803F2B54; // type:object size:0x8 scope:local align:4 data:4byte +@5196 = .sdata2:0x803F2B5C; // type:object size:0x4 scope:local align:4 data:float +@5214 = .sdata2:0x803F2B60; // type:object size:0x8 scope:local align:4 data:4byte +@5228 = .sdata2:0x803F2B68; // type:object size:0x8 scope:local align:4 data:4byte +@5326 = .sdata2:0x803F2B70; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803F2B78; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803F2B7C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803F2B80; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F2B84; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803F2B88; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F2B8C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803F2B90; // type:object size:0x8 scope:local align:8 data:double +@1701 = .sdata2:0x803F2B98; // type:object size:0x8 scope:local align:8 data:double +@1702 = .sdata2:0x803F2BA0; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803F2BA8; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803F2BAC; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata2:0x803F2BB0; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803F2BB4; // type:object size:0x4 scope:local align:4 data:float +@1836 = .sdata2:0x803F2BB8; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803F2BBC; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F2BC0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803F2BC4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F2BC8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F2BCC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F2BD0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F2BD4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F2BD8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F2BDC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F2BE0; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F2BE4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F2BE8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F2BEC; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F2BF0; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata2:0x803F2BF4; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata2:0x803F2BF8; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata2:0x803F2BFC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803F2C00; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F2C04; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F2C08; // type:object size:0x8 scope:local align:8 data:double +@2232 = .sdata2:0x803F2C10; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803F2C14; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803F2C18; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803F2C1C; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803F2C20; // type:object size:0x4 scope:local align:4 data:float +@2678 = .sdata2:0x803F2C24; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F2C28; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803F2C2C; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata2:0x803F2C30; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F2C38; // type:object size:0x8 scope:local align:8 data:double +@946 = .sdata2:0x803F2C40; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F2C44; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F2C48; // type:object size:0x8 scope:local align:8 data:double +@1097 = .sdata2:0x803F2C50; // type:object size:0x8 scope:local align:8 data:double +@1488 = .sdata2:0x803F2C58; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803F2C60; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F2C64; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803F2C68; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803F2C70; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803F2C74; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F2C78; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F2C80; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803F2C88; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803F2C8C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803F2C90; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803F2C94; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F2C98; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F2CA0; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803F2CA8; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803F2CB0; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803F2CB8; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F2CBC; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F2CC0; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803F2CC4; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803F2CC8; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F2CCC; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803F2CD0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803F2CD8; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803F2CE0; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803F2CE4; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803F2CE8; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803F2CF0; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803F2CF8; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F2CFC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F2D00; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803F2D08; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F2D0C; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F2D10; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803F2D14; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F2D18; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F2D20; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F2D24; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F2D28; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803F2D2C; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803F2D30; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803F2D34; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F2D38; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803F2D40; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803F2D44; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F2D48; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803F2D4C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803F2D50; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803F2D54; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803F2D58; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803F2D5C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803F2D60; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803F2D64; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F2D68; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803F2D6C; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803F2D70; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803F2D78; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803F2D80; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803F2D84; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F2D88; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F2D8C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F2D90; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F2D94; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803F2D98; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803F2D9C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803F2DA0; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803F2DA4; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F2DA8; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803F2DB0; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803F2DB8; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803F2DBC; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803F2DC0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F2DC4; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803F2DC8; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803F2DCC; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803F2DD0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803F2DD4; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803F2DD8; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803F2DDC; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata2:0x803F2DE0; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803F2DE8; // type:object size:0x8 scope:local align:8 data:double +@1757 = .sdata2:0x803F2DF0; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803F2DF4; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F2DF8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F2E00; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F2E08; // type:object size:0x8 scope:local align:8 data:double +@1968 = .sdata2:0x803F2E10; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F2E14; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F2E18; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata2:0x803F2E1C; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803F2E20; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F2E28; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803F2E2C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F2E30; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803F2E34; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803F2E38; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F2E40; // type:object size:0x8 scope:local align:8 data:double +@1490 = .sdata2:0x803F2E48; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803F2E4C; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803F2E50; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803F2E58; // type:object size:0x8 scope:local align:8 data:double +@1618 = .sdata2:0x803F2E60; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803F2E68; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F2E6C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F2E70; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F2E78; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803F2E80; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803F2E88; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803F2E8C; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803F2E90; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F2E94; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F2E98; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803F2E9C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F2EA0; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803F2EA4; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803F2EA8; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803F2EAC; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803F2EB0; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803F2EB8; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803F2EBC; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F2EC0; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803F2EC4; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F2EC8; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803F2ECC; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803F2ED0; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803F2ED4; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803F2ED8; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803F2EE0; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803F2EE8; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803F2EEC; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803F2EF0; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803F2EF4; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803F2EF8; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803F2EFC; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803F2F00; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803F2F04; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803F2F08; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803F2F0C; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803F2F10; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803F2F14; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F2F18; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803F2F20; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803F2F24; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803F2F28; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F2F30; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803F2F38; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F2F3C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F2F40; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F2F44; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F2F48; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803F2F50; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803F2F54; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F2F58; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803F2F5C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata2:0x803F2F60; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803F2F68; // type:object size:0x8 scope:local align:8 data:double +@2770 = .sdata2:0x803F2F70; // type:object size:0x8 scope:local align:8 data:double +@2789 = .sdata2:0x803F2F78; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803F2F7C; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803F2F80; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata2:0x803F2F84; // type:object size:0x4 scope:local align:4 data:float +@3053 = .sdata2:0x803F2F88; // type:object size:0x4 scope:local align:4 data:float +@3151 = .sdata2:0x803F2F8C; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803F2F90; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x803F2F94; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803F2F98; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F2F9C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803F2FA0; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803F2FA4; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803F2FA8; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F2FAC; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803F2FB0; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803F2FB4; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803F2FB8; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803F2FBC; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803F2FC0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F2FC8; // type:object size:0x8 scope:local align:8 data:double +@2762 = .sdata2:0x803F2FD0; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803F2FD4; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803F2FD8; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803F2FDC; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F2FE0; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F2FE8; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F2FEC; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F2FF0; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F2FF8; // type:object size:0x8 scope:local align:8 data:double +@2215 = .sdata2:0x803F3000; // type:object size:0x8 scope:local align:8 data:double +@2216 = .sdata2:0x803F3008; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803F300C; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F3010; // type:object size:0x4 scope:local align:4 data:float +@2710 = .sdata2:0x803F3014; // type:object size:0x4 scope:local align:4 data:float +@2712 = .sdata2:0x803F3018; // type:object size:0x4 scope:local align:4 data:float +@2714 = .sdata2:0x803F301C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata2:0x803F3020; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803F3024; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata2:0x803F3028; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x803F302C; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata2:0x803F3030; // type:object size:0x4 scope:local align:4 data:float +@2726 = .sdata2:0x803F3034; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F3038; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803F303C; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803F3040; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F3044; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F3048; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803F304C; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803F3050; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata2:0x803F3054; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata2:0x803F3058; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803F305C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803F3060; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F3064; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F3068; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803F306C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803F3070; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803F3074; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F3078; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata2:0x803F307C; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803F3080; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803F3084; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803F3088; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803F308C; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803F3090; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803F3094; // type:object size:0x8 scope:local align:4 data:4byte +@2878 = .sdata2:0x803F309C; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x803F30A0; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata2:0x803F30A8; // type:object size:0x8 scope:local align:8 data:double +@3022 = .sdata2:0x803F30B0; // type:object size:0x4 scope:local align:4 data:float +@3383 = .sdata2:0x803F30B4; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x803F30B8; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x803F30BC; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata2:0x803F30C0; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x803F30C4; // type:object size:0x4 scope:local align:4 data:float +@4629 = .sdata2:0x803F30C8; // type:object size:0x4 scope:local align:4 data:float +@4712 = .sdata2:0x803F30CC; // type:object size:0x4 scope:local align:4 data:float +@4808 = .sdata2:0x803F30D0; // type:object size:0x4 scope:local align:4 data:float +@4810 = .sdata2:0x803F30D4; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata2:0x803F30D8; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x803F30DC; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata2:0x803F30E0; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803F30E4; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803F30E8; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803F30EC; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803F30F0; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x803F30F4; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x803F30F8; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x803F30FC; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x803F3100; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x803F3104; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata2:0x803F3108; // type:object size:0x4 scope:local align:4 data:float +@5725 = .sdata2:0x803F310C; // type:object size:0x4 scope:local align:4 data:float +@5726 = .sdata2:0x803F3110; // type:object size:0x4 scope:local align:4 data:float +@5727 = .sdata2:0x803F3114; // type:object size:0x4 scope:local align:4 data:float +@6699 = .sdata2:0x803F3118; // type:object size:0x4 scope:local align:4 data:float +@6700 = .sdata2:0x803F311C; // type:object size:0x4 scope:local align:4 data:float +@6701 = .sdata2:0x803F3120; // type:object size:0x4 scope:local align:4 data:float +@6702 = .sdata2:0x803F3124; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803F3128; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803F312C; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803F3130; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803F3134; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803F3138; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803F313C; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F3140; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803F3144; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803F3148; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803F3150; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803F3158; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803F3160; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803F3168; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803F316C; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803F3170; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803F3174; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803F3178; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803F317C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F3180; // type:object size:0x4 scope:local align:4 data:float +@3452 = .sdata2:0x803F3184; // type:object size:0x4 scope:local align:4 data:float +@3453 = .sdata2:0x803F3188; // type:object size:0x4 scope:local align:4 data:float +@3454 = .sdata2:0x803F318C; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata2:0x803F3190; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata2:0x803F3194; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata2:0x803F3198; // type:object size:0x4 scope:local align:4 data:float +@3458 = .sdata2:0x803F319C; // type:object size:0x4 scope:local align:4 data:float +@3459 = .sdata2:0x803F31A0; // type:object size:0x4 scope:local align:4 data:float +@3460 = .sdata2:0x803F31A4; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803F31A8; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x803F31AC; // type:object size:0x4 scope:local align:4 data:float +@3610 = .sdata2:0x803F31B0; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803F31B4; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x803F31B8; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x803F31BC; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x803F31C0; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x803F31C4; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x803F31C8; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x803F31CC; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x803F31D0; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x803F31D4; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x803F31D8; // type:object size:0x4 scope:local align:4 data:float +@4168 = .sdata2:0x803F31DC; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata2:0x803F31E0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803F31E4; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata2:0x803F31E8; // type:object size:0x4 scope:local align:4 data:float +@5317 = .sdata2:0x803F31EC; // type:object size:0x4 scope:local align:4 data:float +@5318 = .sdata2:0x803F31F0; // type:object size:0x4 scope:local align:4 data:float +@5367 = .sdata2:0x803F31F4; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x803F31F8; // type:object size:0x4 scope:local align:4 data:float +@5698 = .sdata2:0x803F31FC; // type:object size:0x4 scope:local align:4 data:float +@5699 = .sdata2:0x803F3200; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata2:0x803F3204; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F3208; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F320C; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F3210; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803F3218; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803F3220; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803F3224; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803F3228; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F322C; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803F3230; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803F3234; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803F3238; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803F323C; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803F3240; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803F3248; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F3250; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803F3254; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803F3258; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata2:0x803F3260; // type:object size:0x4 scope:local align:4 data:float +@3271 = .sdata2:0x803F3264; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x803F3268; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x803F326C; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x803F3270; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F3278; // type:object size:0x8 scope:local align:8 data:double +@4361 = .sdata2:0x803F3280; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F3288; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F328C; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803F3290; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803F3294; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803F3298; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803F329C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803F32A0; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803F32A4; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803F32A8; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803F32AC; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F32B0; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803F32B4; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F32B8; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F32C0; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803F32C8; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803F32D0; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803F32D4; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803F32D8; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803F32E0; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803F32E4; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F32E8; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803F32EC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803F32F0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F32F4; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata2:0x803F32F8; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803F32FC; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata2:0x803F3300; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803F3308; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803F3310; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F3318; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803F331C; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F3320; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803F3328; // type:object size:0x8 scope:local align:8 data:double +@958 = .sdata2:0x803F3330; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803F3334; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F3338; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F333C; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F3340; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F3344; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803F3348; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803F334C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F3350; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803F3358; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F335C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F3360; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803F3368; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803F3370; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F3378; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F337C; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803F3380; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F3384; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803F3388; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F338C; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803F3390; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803F3394; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803F3398; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803F33A0; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803F33A4; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803F33A8; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803F33B0; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803F33B8; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803F33C0; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803F33C8; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803F33CC; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803F33D0; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803F33D4; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803F33D8; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803F33DC; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803F33E0; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803F33E8; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803F33F0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803F33F4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F33F8; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803F3400; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803F3408; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803F3410; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F3418; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F341C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F3420; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F3424; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F3428; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F342C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F3430; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F3434; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803F3438; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803F343C; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata2:0x803F3440; // type:object size:0x8 scope:local align:8 data:double +@495 = .sdata2:0x803F3448; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F3450; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F3454; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F3458; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F345C; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F3460; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803F3464; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803F3468; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F3470; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803F3478; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F347C; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F3480; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803F3484; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803F3488; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803F3490; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F3494; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803F3498; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803F349C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803F34A0; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803F34A4; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F34A8; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F34AC; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803F34B0; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803F34B4; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803F34B8; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803F34BC; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F34C0; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803F34C4; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803F34C8; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F34CC; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F34D0; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803F34D8; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803F34DC; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803F34E0; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803F34E4; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803F34E8; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803F34EC; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803F34F0; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803F34F4; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F34F8; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803F34FC; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803F3500; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F3504; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F3508; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803F350C; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803F3510; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F3514; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F3518; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F351C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803F3520; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803F3524; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803F3528; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803F352C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F3530; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F3534; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F3538; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F353C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803F3540; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803F3544; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803F3548; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803F354C; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803F3550; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803F3554; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803F3558; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803F355C; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803F3560; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803F3564; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803F3568; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803F356C; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803F3570; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803F3578; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803F357C; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F3580; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803F3588; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803F3590; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803F3598; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803F359C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F35A0; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F35A8; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803F35B0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F35B4; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F35B8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F35BC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F35C0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F35C4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F35C8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F35CC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F35D0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F35D4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F35D8; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F35DC; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F35E0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F35E4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F35E8; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F35EC; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F35F0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803F35F4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F35F8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F35FC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F3600; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F3604; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F3608; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F360C; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F3610; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803F3614; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803F3618; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803F361C; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803F3620; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803F3624; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803F3628; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F3630; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F3634; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F3638; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F363C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F3640; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F3644; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F3648; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F364C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F3650; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F3654; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F3658; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F365C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F3660; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F3664; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F3668; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F366C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F3670; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F3674; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F3678; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F367C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F3680; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F3684; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F3688; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F368C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F3690; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803F3694; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803F3698; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803F36A0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803F36A4; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803F36A8; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803F36AC; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803F36B0; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803F36B4; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F36B8; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F36BC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F36C0; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F36C4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F36C8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F36CC; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803F36D0; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F36D4; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F36D8; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803F36E0; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803F36E4; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F36E8; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F36EC; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F36F0; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F36F4; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F36F8; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F36FC; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F3700; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F3704; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F3708; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F370C; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F3710; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F3714; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F3718; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F371C; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F3720; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F3724; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F3728; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F372C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F3730; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F3734; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F3738; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803F373C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F3740; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803F3744; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803F3748; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F374C; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803F3750; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803F3754; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F3758; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803F3760; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803F3768; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803F3770; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F3778; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F377C; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F3780; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F3784; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F3788; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803F378C; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803F3790; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F3794; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803F3798; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F379C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803F37A0; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803F37A4; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F37A8; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803F37AC; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F37B0; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803F37B4; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F37B8; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803F37BC; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803F37C0; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803F37C8; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803F37D0; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803F37D4; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803F37D8; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803F37E0; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803F37E4; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803F37E8; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803F37EC; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803F37F0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F37F8; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F37FC; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F3800; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F3804; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803F3808; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803F380C; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803F3810; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803F3814; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803F3818; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803F381C; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803F3820; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803F3824; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803F3828; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803F382C; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803F3830; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803F3834; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803F3838; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F383C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F3840; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803F3844; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803F3848; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F384C; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803F3850; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803F3854; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803F3858; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F385C; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F3860; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F3864; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803F3868; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F386C; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803F3870; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F3874; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803F3878; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803F387C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803F3880; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803F3884; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803F3888; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803F388C; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803F3890; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803F3894; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803F3898; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803F38A0; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803F38A8; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803F38AC; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F38B0; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F38B4; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F38B8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F38BC; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F38C0; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F38C4; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F38C8; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F38CC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F38D0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F38D4; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F38D8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F38DC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F38E0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F38E4; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F38E8; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F38EC; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803F38F0; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F38F4; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803F38F8; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803F38FC; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F3900; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803F3904; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F3908; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F390C; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803F3910; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F3914; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803F3918; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803F391C; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F3920; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F3924; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803F3928; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803F392C; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803F3930; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803F3934; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F3938; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803F393C; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803F3940; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803F3948; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803F3950; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803F3958; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803F3960; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803F3964; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803F3968; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F396C; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F3970; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F3974; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803F3978; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F397C; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803F3980; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803F3984; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803F3988; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F398C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F3990; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F3994; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F3998; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803F39A0; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803F39A8; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803F39AC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F39B0; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803F39B8; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803F39C0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F39C4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F39C8; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F39CC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F39D0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F39D4; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F39D8; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F39DC; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F39E0; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F39E4; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F39E8; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F39EC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F39F0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F39F4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F39F8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F39FC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F3A00; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F3A04; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F3A08; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F3A0C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F3A10; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F3A14; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F3A18; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F3A1C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F3A20; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F3A24; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F3A28; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F3A2C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F3A30; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F3A34; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F3A38; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803F3A3C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803F3A40; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803F3A48; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803F3A50; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F3A54; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F3A58; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803F3A5C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803F3A60; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803F3A64; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803F3A68; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803F3A6C; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F3A70; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803F3A74; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803F3A78; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803F3A7C; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803F3A80; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803F3A84; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803F3A88; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803F3A8C; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803F3A90; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F3A98; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F3A9C; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803F3AA0; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803F3AA4; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803F3AA8; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803F3AB0; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803F3AB8; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F3ABC; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F3AC0; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803F3AC8; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803F3AD0; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803F3AD4; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803F3AD8; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F3AE0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F3AE4; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803F3AE8; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803F3AF0; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803F3AF8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F3AFC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803F3B00; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803F3B04; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F3B08; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803F3B0C; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803F3B10; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F3B14; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803F3B18; // type:object size:0x8 scope:local align:8 data:double +@3868 = .sdata2:0x803F3B20; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x803F3B24; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F3B28; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803F3B2C; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F3B30; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F3B38; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F3B3C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F3B40; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F3B44; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F3B48; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803F3B4C; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F3B50; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803F3B54; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803F3B58; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803F3B5C; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F3B60; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803F3B64; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F3B68; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803F3B6C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803F3B70; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803F3B74; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803F3B78; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803F3B7C; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803F3B80; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803F3B84; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803F3B88; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803F3B8C; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803F3B90; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803F3B94; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F3B98; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F3B9C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F3BA0; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803F3BA4; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803F3BA8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F3BAC; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803F3BB0; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803F3BB4; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F3BB8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F3BBC; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803F3BC0; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F3BC4; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803F3BC8; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803F3BCC; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803F3BD0; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803F3BD4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F3BD8; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803F3BE0; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F3BE4; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F3BE8; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F3BEC; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F3BF0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803F3BF4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803F3BF8; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803F3C00; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803F3C08; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F3C0C; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F3C10; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F3C14; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F3C18; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F3C1C; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803F3C20; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F3C24; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F3C28; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803F3C2C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F3C30; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F3C34; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F3C38; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F3C3C; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F3C40; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F3C44; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F3C48; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F3C4C; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F3C50; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F3C54; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803F3C58; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803F3C5C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803F3C60; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803F3C64; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F3C68; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F3C6C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F3C70; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803F3C74; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803F3C78; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F3C7C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803F3C80; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803F3C84; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803F3C88; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803F3C8C; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803F3C90; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F3C94; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F3C98; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803F3C9C; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803F3CA0; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803F3CA4; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803F3CA8; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803F3CAC; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F3CB0; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F3CB4; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F3CB8; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803F3CBC; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F3CC0; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F3CC4; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F3CC8; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F3CD0; // type:object size:0x8 scope:local align:8 data:double +@1984 = .sdata2:0x803F3CD8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F3CDC; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803F3CE0; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803F3CE4; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F3CE8; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F3CEC; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F3CF0; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F3CF4; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F3CF8; // type:object size:0x4 scope:local align:4 data:float +@2160 = .sdata2:0x803F3CFC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F3D00; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F3D04; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F3D08; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803F3D10; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803F3D18; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F3D1C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F3D20; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F3D28; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803F3D30; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F3D34; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803F3D38; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803F3D3C; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803F3D40; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803F3D44; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803F3D48; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F3D4C; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F3D50; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803F3D54; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803F3D58; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803F3D5C; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803F3D60; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803F3D64; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803F3D68; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803F3D6C; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803F3D70; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803F3D74; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803F3D78; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803F3D7C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803F3D80; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803F3D84; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F3D88; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803F3D8C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803F3D90; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803F3D94; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803F3D98; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803F3D9C; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803F3DA0; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803F3DA4; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803F3DA8; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F3DAC; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803F3DB0; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803F3DB4; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F3DB8; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F3DBC; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F3DC0; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F3DC4; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F3DC8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F3DCC; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803F3DD0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803F3DD4; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F3DD8; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F3DDC; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F3DE0; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F3DE4; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F3DE8; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F3DEC; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F3DF0; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F3DF4; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803F3DF8; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803F3DFC; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F3E00; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F3E04; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F3E08; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F3E0C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F3E10; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803F3E18; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F3E1C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803F3E20; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803F3E24; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803F3E28; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803F3E2C; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803F3E30; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803F3E34; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803F3E38; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803F3E40; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803F3E44; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F3E48; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803F3E4C; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F3E50; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803F3E54; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F3E58; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F3E5C; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803F3E60; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803F3E68; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803F3E6C; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803F3E70; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F3E78; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F3E7C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F3E80; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F3E84; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F3E88; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F3E8C; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F3E90; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F3E94; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F3E98; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F3E9C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F3EA0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803F3EA4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F3EA8; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F3EAC; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803F3EB0; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803F3EB4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F3EB8; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803F3EBC; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803F3EC0; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F3EC4; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F3EC8; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803F3ED0; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803F3ED8; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803F3EE0; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803F3EE8; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803F3EEC; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F3EF0; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803F3EF8; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803F3F00; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F3F04; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F3F08; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803F3F0C; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803F3F10; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F3F14; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803F3F18; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803F3F1C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803F3F20; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803F3F24; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803F3F28; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803F3F2C; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803F3F30; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803F3F34; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x803F3F38; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x803F3F3C; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x803F3F40; // type:object size:0x4 scope:local align:4 data:float +@4541 = .sdata2:0x803F3F44; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803F3F48; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803F3F4C; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803F3F50; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803F3F54; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803F3F58; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803F3F5C; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803F3F60; // type:object size:0x4 scope:local align:4 data:float +@4617 = .sdata2:0x803F3F64; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803F3F68; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803F3F6C; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803F3F70; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803F3F78; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803F3F80; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803F3F84; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803F3F88; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F3F8C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803F3F90; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F3F94; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803F3F98; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F3F9C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F3FA0; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F3FA4; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F3FA8; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F3FAC; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803F3FB0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F3FB4; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F3FB8; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F3FBC; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F3FC0; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803F3FC4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F3FC8; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F3FCC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F3FD0; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F3FD4; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803F3FD8; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F3FDC; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803F3FE0; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803F3FE4; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803F3FE8; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803F3FEC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F3FF0; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F3FF4; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F3FF8; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F4000; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803F4004; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F4008; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F400C; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata2:0x803F4010; // type:object size:0x4 scope:local align:4 data:float +@1878 = .sdata2:0x803F4014; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803F4018; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F401C; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F4020; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F4024; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F4028; // type:object size:0x8 scope:local align:8 data:double +@2300 = .sdata2:0x803F4030; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803F4034; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata2:0x803F4038; // type:object size:0x4 scope:local align:4 data:float +@2623 = .sdata2:0x803F403C; // type:object size:0x4 scope:local align:4 data:float +@3007 = .sdata2:0x803F4040; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F4044; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x803F4048; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x803F404C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x803F4050; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x803F4054; // type:object size:0x4 scope:local align:4 data:float +@4361 = .sdata2:0x803F4058; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803F405C; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803F4060; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803F4068; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F406C; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F4070; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F4074; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F4078; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803F4080; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803F4088; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803F4090; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803F4094; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803F4098; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F409C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803F40A0; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F40A4; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803F40A8; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F40AC; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F40B0; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F40B4; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803F40B8; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F40BC; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F40C0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F40C4; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F40C8; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F40CC; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803F40D0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F40D4; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F40D8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803F40DC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F40E0; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803F40E4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F40E8; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803F40F0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803F40F4; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803F40F8; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803F40FC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803F4100; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803F4108; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803F410C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F4110; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F4114; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F4118; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803F411C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F4120; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F4124; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803F4128; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803F412C; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803F4130; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803F4134; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F4138; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F4140; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803F4144; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803F4148; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F414C; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803F4150; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F4154; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F4158; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F415C; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F4160; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803F4164; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803F4168; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803F416C; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803F4170; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803F4178; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F417C; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803F4180; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F4184; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F4188; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803F418C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F4190; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803F4198; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803F419C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F41A0; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803F41A8; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803F41B0; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F41B4; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F41B8; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F41BC; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F41C0; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F41C4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F41C8; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F41CC; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803F41D0; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803F41D4; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F41D8; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F41DC; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803F41E0; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F41E4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F41E8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F41F0; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803F41F4; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803F41F8; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F41FC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F4200; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F4204; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803F4208; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F4210; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803F4214; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803F4218; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803F421C; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803F4220; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803F4224; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F4228; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F4230; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803F4234; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803F4238; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F423C; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata2:0x803F4240; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803F4248; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F424C; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803F4250; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803F4254; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803F4258; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803F4260; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803F4268; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F4270; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F4274; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F4278; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803F427C; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F4280; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803F4284; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F4288; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F428C; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803F4290; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803F4294; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F4298; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F42A0; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F42A4; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F42A8; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F42AC; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803F42B0; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803F42B8; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803F42C0; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F42C8; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803F42CC; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803F42D0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F42D4; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F42D8; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F42E0; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F42E4; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F42E8; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata2:0x803F42EC; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803F42F0; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F42F4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F42F8; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F42FC; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F4300; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F4304; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F4308; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803F4310; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F4314; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F4318; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803F431C; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803F4320; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803F4324; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803F4328; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803F432C; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803F4330; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803F4338; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803F4340; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803F4344; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F4348; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803F434C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata2:0x803F4350; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F4358; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803F435C; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F4360; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F4364; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803F4368; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803F436C; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803F4370; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F4374; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F4378; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F437C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F4380; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F4384; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803F4388; // type:object size:0x4 scope:local align:4 data:float +@2544 = .sdata2:0x803F438C; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803F4390; // type:object size:0x8 scope:local align:8 data:double +@2629 = .sdata2:0x803F4398; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803F439C; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803F43A0; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803F43A4; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803F43A8; // type:object size:0x4 scope:local align:4 data:float +@2704 = .sdata2:0x803F43AC; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803F43B0; // type:object size:0x4 scope:local align:4 data:float +@2706 = .sdata2:0x803F43B4; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x803F43B8; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F43BC; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x803F43C0; // type:object size:0x4 scope:local align:4 data:float +@2710 = .sdata2:0x803F43C4; // type:object size:0x4 scope:local align:4 data:float +@2945 = .sdata2:0x803F43C8; // type:object size:0x4 scope:local align:4 data:4byte +@2965 = .sdata2:0x803F43CC; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803F43D0; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803F43D4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803F43D8; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F43DC; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803F43E0; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata2:0x803F43E8; // type:object size:0x8 scope:local align:8 data:double +@1039 = .sdata2:0x803F43F0; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803F43F4; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata2:0x803F43F8; // type:object size:0x8 scope:local align:8 data:double +@1482 = .sdata2:0x803F4400; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803F4404; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803F4408; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F440C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F4410; // type:object size:0x4 scope:local align:4 data:float +@2429 = .sdata2:0x803F4414; // type:object size:0x4 scope:local align:4 data:float +@2430 = .sdata2:0x803F4418; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803F441C; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F4420; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803F4424; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803F4428; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F4430; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F4434; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F4438; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F443C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F4440; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F4444; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata2:0x803F4448; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata2:0x803F444C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803F4450; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803F4454; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803F4458; // type:object size:0x4 scope:local align:4 data:float +@2158 = .sdata2:0x803F445C; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata2:0x803F4460; // type:object size:0x4 scope:local align:4 data:4byte +@2177 = .sdata2:0x803F4464; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803F4468; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803F446C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F4470; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F4474; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata2:0x803F4478; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata2:0x803F447C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F4480; // type:object size:0x8 scope:local align:8 data:double +@1838 = .sdata2:0x803F4488; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803F448C; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F4490; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F4494; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F4498; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803F44A0; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803F44A8; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F44AC; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F44B0; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F44B4; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F44B8; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F44BC; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F44C0; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803F44C4; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803F44C8; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F44CC; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F44D0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F44D4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F44D8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F44DC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F44E0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F44E8; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F44EC; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803F44F0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F44F4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F44F8; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F44FC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F4500; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F4504; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F4508; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F450C; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F4510; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F4514; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F4518; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F451C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F4520; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F4524; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803F4528; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803F452C; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803F4530; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803F4534; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803F4538; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803F453C; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803F4540; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803F4544; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F4548; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803F4550; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803F4554; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F4558; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F455C; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803F4560; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803F4568; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F456C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F4570; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F4574; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F4578; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F457C; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F4580; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F4584; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803F4588; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F458C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F4590; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F4594; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803F4598; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F45A0; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F45A8; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F45AC; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F45B0; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803F45B4; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F45B8; // type:object size:0x8 scope:local align:8 data:double +@1564 = .sdata2:0x803F45C0; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F45C4; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F45C8; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F45CC; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F45D0; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F45D8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803F45E0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F45E4; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F45E8; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F45EC; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803F45F0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F45F4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F45F8; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F45FC; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F4600; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803F4608; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F460C; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803F4610; // type:object size:0x8 scope:local align:8 data:double +@1152 = .sdata2:0x803F4618; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F461C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata2:0x803F4620; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803F4628; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803F462C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F4630; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F4634; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F4638; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803F4640; // type:object size:0x8 scope:local align:8 data:double +@999 = .sdata2:0x803F4648; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F4650; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F4654; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F4658; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803F4660; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F4664; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803F4668; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F466C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F4670; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F4674; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F4678; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F467C; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F4680; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F4684; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F4688; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F4690; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803F4698; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F469C; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F46A0; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F46A4; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803F46A8; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F46AC; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F46B0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803F46B4; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803F46B8; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F46C0; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803F46C8; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803F46CC; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803F46D0; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803F46D8; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803F46E0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F46E4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F46E8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F46EC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F46F0; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F46F8; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803F4700; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803F4704; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F4708; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F4710; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803F4718; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803F4720; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803F4728; // type:object size:0x8 scope:local align:8 data:double +@1406 = .sdata2:0x803F4730; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F4738; // type:object size:0x8 scope:local align:8 data:double +@2013 = .sdata2:0x803F4740; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F4744; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F4748; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F474C; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803F4750; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F4758; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803F475C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803F4760; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803F4764; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803F4768; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F4770; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803F4778; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F477C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F4780; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F4788; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803F4790; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803F4798; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803F47A0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803F47A4; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F47A8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F47AC; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F47B0; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803F47B4; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F47B8; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F47BC; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F47C0; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F47C4; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F47C8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F47CC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F47D0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F47D4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F47D8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F47DC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F47E0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F47E4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F47E8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F47EC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F47F0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F47F4; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F47F8; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F47FC; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F4800; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F4804; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F4808; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F480C; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803F4810; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F4814; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F4818; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803F481C; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F4820; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803F4824; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803F4828; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803F482C; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803F4830; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803F4838; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803F4840; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F4844; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F4848; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F4850; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F4854; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F4858; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F485C; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F4860; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F4864; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F4868; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F486C; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F4870; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F4874; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F4878; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F487C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F4880; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F4884; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F4888; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F488C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F4890; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F4894; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F4898; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F489C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F48A0; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F48A4; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F48A8; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803F48AC; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803F48B0; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F48B4; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F48B8; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803F48BC; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803F48C0; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803F48C4; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F48C8; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F48CC; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F48D0; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803F48D4; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803F48D8; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803F48E0; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803F48E4; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803F48E8; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803F48EC; // type:object size:0x4 scope:local align:4 data:float +@3264 = .sdata2:0x803F48F0; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803F48F4; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F48F8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803F48FC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F4900; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F4908; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803F490C; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F4910; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803F4914; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F4918; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803F4920; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F4928; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F4930; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803F4938; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803F4940; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803F4944; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803F4948; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803F494C; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F4950; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803F4954; // type:object size:0x4 scope:local align:4 data:float +@2419 = .sdata2:0x803F4958; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F495C; // type:object size:0x4 scope:local align:4 data:float +@2491 = .sdata2:0x803F4960; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x803F4964; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x803F4968; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x803F496C; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x803F4970; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x803F4974; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x803F4978; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x803F497C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F4980; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803F4988; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F4990; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F4994; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803F4998; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803F499C; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803F49A0; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata2:0x803F49A4; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata2:0x803F49A8; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata2:0x803F49AC; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F49B0; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F49B4; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F49B8; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803F49C0; // type:object size:0x8 scope:local align:8 data:double +@1969 = .sdata2:0x803F49C8; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F49CC; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803F49D0; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803F49D4; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803F49D8; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803F49E0; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803F49E8; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803F49EC; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803F49F0; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F49F4; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F49F8; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803F4A00; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803F4A04; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803F4A08; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803F4A0C; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803F4A10; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803F4A14; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F4A18; // type:object size:0x4 scope:local align:4 data:float +@1121 = .sdata2:0x803F4A20; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803F4A28; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803F4A2C; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803F4A30; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803F4A38; // type:object size:0x8 scope:local align:8 data:double +@888 = .sdata2:0x803F4A40; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803F4A48; // type:object size:0x4 scope:local align:4 data:4byte +@1080 = .sdata2:0x803F4A4C; // type:object size:0x4 scope:local align:4 data:4byte +@727 = .sdata2:0x803F4A50; // type:object size:0x4 scope:local align:4 data:float +@728 = .sdata2:0x803F4A54; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803F4A58; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F4A60; // type:object size:0x8 scope:local align:8 data:double +@649 = .sdata2:0x803F4A68; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803F4A70; // type:object size:0x8 scope:local align:8 data:double +@878 = .sdata2:0x803F4A78; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803F4A80; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803F4A88; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803F4A90; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803F4A98; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803F4AA0; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803F4AA4; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803F4AA8; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803F4AAC; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803F4AB0; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F4AB4; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F4AB8; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803F4AC0; // type:object size:0x8 scope:local align:8 data:double +@2314 = .sdata2:0x803F4AC8; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F4ACC; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F4AD0; // type:object size:0x4 scope:local align:4 data:float +@2442 = .sdata2:0x803F4AD4; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata2:0x803F4AD8; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata2:0x803F4ADC; // type:object size:0x4 scope:local align:4 data:float +@2456 = .sdata2:0x803F4AE0; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803F4AE4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803F4AE8; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F4AEC; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803F4AF0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F4AF8; // type:object size:0x8 scope:local align:8 data:double +@2702 = .sdata2:0x803F4B00; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803F4B04; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F4B08; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803F4B0C; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803F4B10; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803F4B14; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F4B18; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803F4B1C; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803F4B20; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F4B24; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F4B28; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata2:0x803F4B2C; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata2:0x803F4B30; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F4B34; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803F4B38; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803F4B3C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803F4B40; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata2:0x803F4B44; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F4B48; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803F4B4C; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803F4B50; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803F4B54; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata2:0x803F4B58; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x803F4B5C; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803F4B60; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803F4B64; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803F4B68; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F4B6C; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803F4B70; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F4B74; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F4B78; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803F4B7C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F4B80; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F4B84; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F4B88; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F4B90; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803F4B98; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803F4B9C; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F4BA0; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803F4BA4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F4BA8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F4BAC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F4BB0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F4BB4; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803F4BB8; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803F4BBC; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803F4BC0; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803F4BC4; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F4BC8; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803F4BD0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F4BD4; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803F4BD8; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803F4BDC; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803F4BE0; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata2:0x803F4BE4; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata2:0x803F4BE8; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803F4BF0; // type:object size:0x8 scope:local align:8 data:double +@2553 = .sdata2:0x803F4BF8; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803F4BFC; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata2:0x803F4C00; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803F4C04; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803F4C08; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803F4C10; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803F4C14; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803F4C18; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F4C1C; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata2:0x803F4C20; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803F4C28; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803F4C30; // type:object size:0x8 scope:local align:8 data:double +@1485 = .sdata2:0x803F4C38; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F4C3C; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F4C40; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F4C44; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F4C48; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803F4C4C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F4C50; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803F4C54; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F4C58; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803F4C5C; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803F4C60; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803F4C64; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803F4C68; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F4C70; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803F4C74; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803F4C78; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803F4C7C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F4C80; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F4C88; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803F4C90; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803F4C94; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F4C98; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803F4C9C; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F4CA0; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F4CA4; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F4CA8; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F4CAC; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F4CB0; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F4CB4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F4CB8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F4CBC; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F4CC0; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F4CC4; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803F4CC8; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803F4CCC; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803F4CD0; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F4CD4; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803F4CD8; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803F4CE0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803F4CE4; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata2:0x803F4CE8; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F4CF0; // type:object size:0x8 scope:local align:8 data:double +@964 = .sdata2:0x803F4CF8; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803F4CFC; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803F4D00; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803F4D04; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803F4D08; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F4D10; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803F4D18; // type:object size:0x4 scope:local align:4 data:float +@1552 = .sdata2:0x803F4D1C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F4D20; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803F4D28; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F4D2C; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803F4D30; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803F4D38; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803F4D40; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F4D44; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata2:0x803F4D48; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803F4D50; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803F4D54; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803F4D58; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803F4D5C; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803F4D60; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803F4D64; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F4D68; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F4D6C; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803F4D70; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803F4D74; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F4D78; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803F4D7C; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F4D80; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F4D84; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F4D88; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F4D8C; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F4D90; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803F4D94; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803F4D98; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803F4D9C; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803F4DA0; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803F4DA4; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F4DA8; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F4DAC; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803F4DB0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803F4DB4; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803F4DB8; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803F4DBC; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F4DC0; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F4DC4; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803F4DC8; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803F4DD0; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803F4DD8; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803F4DDC; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803F4DE0; // type:object size:0x4 scope:local align:4 data:float +@3135 = .sdata2:0x803F4DE4; // type:object size:0x4 scope:local align:4 data:float +@3137 = .sdata2:0x803F4DE8; // type:object size:0x8 scope:local align:8 data:double +@3731 = .sdata2:0x803F4DF0; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803F4DF4; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803F4DF8; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803F4DFC; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x803F4E00; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x803F4E04; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803F4E08; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803F4E0C; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803F4E10; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803F4E14; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803F4E18; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803F4E1C; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F4E20; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803F4E24; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F4E28; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803F4E2C; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F4E30; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F4E34; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F4E38; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F4E40; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F4E48; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F4E4C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F4E50; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F4E54; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803F4E58; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803F4E5C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F4E60; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F4E64; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F4E68; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F4E6C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F4E70; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F4E74; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F4E78; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F4E7C; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F4E80; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F4E84; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F4E88; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F4E8C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F4E90; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F4E94; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F4E98; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F4E9C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F4EA0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F4EA4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F4EA8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F4EAC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F4EB0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F4EB4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F4EB8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F4EBC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F4EC0; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F4EC8; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F4ECC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F4ED0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F4ED4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F4ED8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F4EDC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F4EE0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F4EE4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F4EE8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F4EEC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F4EF0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F4EF4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F4EF8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F4EFC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F4F00; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F4F04; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F4F08; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F4F0C; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F4F10; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F4F14; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F4F18; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F4F1C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F4F20; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F4F24; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F4F28; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F4F2C; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F4F30; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803F4F34; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803F4F38; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F4F3C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F4F40; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803F4F44; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F4F48; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F4F4C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803F4F50; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F4F54; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803F4F58; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F4F5C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F4F60; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F4F64; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F4F68; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F4F6C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F4F70; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F4F74; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F4F78; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F4F7C; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F4F80; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F4F84; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F4F88; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F4F8C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F4F90; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803F4F94; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F4F98; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803F4F9C; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803F4FA0; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803F4FA4; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F4FA8; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F4FAC; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F4FB0; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F4FB4; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F4FB8; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F4FBC; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F4FC0; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F4FC4; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F4FC8; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F4FCC; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F4FD0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F4FD4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F4FD8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F4FDC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F4FE0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F4FE4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F4FE8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F4FEC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F4FF0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F4FF4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F4FF8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F4FFC; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F5000; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803F5008; // type:object size:0x8 scope:local align:8 data:double +@2116 = .sdata2:0x803F5010; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F5014; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F5018; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F501C; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F5020; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803F5024; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F5028; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F502C; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F5030; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F5034; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F5038; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803F503C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F5040; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F5044; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F5048; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803F504C; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803F5050; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F5054; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F5058; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F505C; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803F5060; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803F5064; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803F5068; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F506C; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F5070; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata2:0x803F5074; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F5078; // type:object size:0x4 scope:local align:4 data:float +@3165 = .sdata2:0x803F507C; // type:object size:0x4 scope:local align:4 data:float +@3167 = .sdata2:0x803F5080; // type:object size:0x8 scope:local align:8 data:double +@3474 = .sdata2:0x803F5088; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x803F508C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F5090; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F5094; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F5098; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F509C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F50A0; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F50A4; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F50A8; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F50AC; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F50B0; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F50B4; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F50B8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F50BC; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F50C0; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F50C4; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F50C8; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F50CC; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F50D0; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F50D4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F50D8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F50DC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F50E0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F50E4; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803F50E8; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803F50EC; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F50F0; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F50F8; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803F5100; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata2:0x803F5108; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803F5110; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F5114; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F5118; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803F511C; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803F5120; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F5124; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F5128; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F512C; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F5130; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F5134; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F5138; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F513C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F5140; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F5144; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F5148; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F514C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F5150; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F5154; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F5158; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F515C; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F5160; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F5164; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F5168; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F516C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803F5170; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F5174; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803F5178; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803F517C; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803F5180; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803F5184; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F5188; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803F5190; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803F5198; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803F519C; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803F51A0; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803F51A4; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F51A8; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F51AC; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F51B0; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803F51B8; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803F51BC; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803F51C0; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803F51C4; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803F51C8; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803F51CC; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803F51D0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F51D8; // type:object size:0x8 scope:local align:8 data:double +@882 = .sdata2:0x803F51E0; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F51E8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F51EC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F51F0; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803F51F4; // type:object size:0x4 scope:local align:4 data:float +@2823 = .sdata2:0x803F51F8; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803F51FC; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata2:0x803F5200; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata2:0x803F5208; // type:object size:0x8 scope:local align:8 data:double +@3077 = .sdata2:0x803F5210; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x803F5214; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x803F5218; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x803F521C; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x803F5220; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x803F5224; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata2:0x803F5228; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x803F522C; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x803F5230; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x803F5234; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x803F5238; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x803F523C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803F5240; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803F5248; // type:object size:0x8 scope:local align:8 data:double +@4102 = .sdata2:0x803F5250; // type:object size:0x8 scope:local align:8 data:double +@4103 = .sdata2:0x803F5258; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803F525C; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803F5260; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F5264; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x803F5268; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x803F526C; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x803F5270; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x803F5274; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x803F5278; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803F527C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803F5280; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x803F5284; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x803F5288; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803F528C; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803F5290; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803F5294; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803F5298; // type:object size:0x4 scope:local align:4 data:float +@4523 = .sdata2:0x803F529C; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x803F52A0; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x803F52A4; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x803F52A8; // type:object size:0x4 scope:local align:4 data:float +@4527 = .sdata2:0x803F52AC; // type:object size:0x4 scope:local align:4 data:float +@5382 = .sdata2:0x803F52B0; // type:object size:0x4 scope:local align:4 data:float +@5620 = .sdata2:0x803F52B4; // type:object size:0x4 scope:local align:4 data:float +@6624 = .sdata2:0x803F52B8; // type:object size:0x4 scope:local align:4 data:float +@6625 = .sdata2:0x803F52BC; // type:object size:0x4 scope:local align:4 data:float +@6626 = .sdata2:0x803F52C0; // type:object size:0x4 scope:local align:4 data:float +@6804 = .sdata2:0x803F52C4; // type:object size:0x4 scope:local align:4 data:float +@6908 = .sdata2:0x803F52C8; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F52D0; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803F52D4; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803F52D8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F52DC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803F52E0; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F52E4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F52E8; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803F52EC; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F52F0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803F52F4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803F52F8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F52FC; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F5300; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803F5304; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F5308; // type:object size:0x8 scope:local align:8 data:double +@1108 = .sdata2:0x803F5310; // type:object size:0x8 scope:local align:8 data:double +@772 = .sdata2:0x803F5318; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F531C; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F5320; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F5324; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F5328; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F532C; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F5330; // type:object size:0x4 scope:local align:4 data:float +@809 = .sdata2:0x803F5338; // type:object size:0x8 scope:local align:8 data:double +@829 = .sdata2:0x803F5340; // type:object size:0x4 scope:local align:4 data:float +@873 = .sdata2:0x803F5344; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F5348; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803F534C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F5350; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F5354; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F5358; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803F535C; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F5360; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F5364; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F5368; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F536C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803F5370; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803F5374; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata2:0x803F5378; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F537C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F5380; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F5384; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F5388; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F538C; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F5390; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803F5394; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803F5398; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803F539C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F53A0; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803F53A8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F53AC; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F53B0; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F53B4; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F53B8; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F53BC; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F53C0; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803F53C4; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F53C8; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F53CC; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F53D0; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803F53D4; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F53D8; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F53DC; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F53E0; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F53E4; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F53E8; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F53EC; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F53F0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F53F4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F53F8; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F53FC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F5400; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F5404; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F5408; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F540C; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F5410; // type:object size:0x8 scope:local align:8 data:double +@1932 = .sdata2:0x803F5418; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F541C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F5420; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F5424; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F5428; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F542C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F5430; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F5434; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F5438; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F543C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F5440; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F5444; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F5448; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F544C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F5450; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F5454; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F5458; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F545C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F5460; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F5464; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F5468; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F546C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F5470; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803F5474; // type:object size:0x4 scope:local align:4 data:float +@2612 = .sdata2:0x803F5478; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803F5480; // type:object size:0x8 scope:local align:8 data:double +@1217 = .sdata2:0x803F5488; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803F548C; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F5490; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F5494; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F5498; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803F54A0; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803F54A8; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F54B0; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F54B8; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F54C0; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803F54C4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F54C8; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803F54CC; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803F54D0; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803F54D4; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803F54D8; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803F54DC; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F54E0; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F54E4; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F54E8; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F54EC; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F54F0; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803F54F8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F54FC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803F5500; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803F5504; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F5508; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F550C; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F5510; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F5514; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F5518; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803F5520; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803F5528; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F552C; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F5530; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803F5534; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F5538; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803F553C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803F5540; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803F5544; // type:object size:0x4 scope:local align:4 data:float +@1355 = .sdata2:0x803F5548; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803F5550; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F5554; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata2:0x803F5558; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata2:0x803F555C; // type:object size:0x4 scope:local align:4 data:float +@774 = .sdata2:0x803F5560; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F5568; // type:object size:0x8 scope:local align:8 data:double +@893 = .sdata2:0x803F5570; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F5578; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F557C; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803F5580; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F5584; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803F5588; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F558C; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803F5590; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803F5598; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803F55A0; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803F55A4; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803F55A8; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803F55AC; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F55B0; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F55B4; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F55B8; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803F55C0; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803F55C4; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803F55C8; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803F55CC; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803F55D0; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803F55D4; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803F55D8; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803F55DC; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803F55E0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F55E4; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F55E8; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803F55EC; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803F55F0; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F55F8; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803F55FC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803F5600; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F5604; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F5608; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F560C; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F5610; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803F5614; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803F5618; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803F5620; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803F5628; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803F562C; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803F5630; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803F5634; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803F5638; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803F5640; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803F5644; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803F5648; // type:object size:0x4 scope:local align:4 data:float +@217 = .sdata2:0x803F564C; // type:object size:0x4 scope:local align:4 data:float +@218 = .sdata2:0x803F5650; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803F5658; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803F565C; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803F5660; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803F5664; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803F5668; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803F566C; // type:object size:0x4 scope:local align:4 data:float +@116 = .sdata2:0x803F5670; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803F5674; // type:object size:0x4 scope:local align:4 data:float +@111 = .sdata2:0x803F5678; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803F567C; // type:object size:0x4 scope:local align:4 data:float +@114 = .sdata2:0x803F5680; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F5688; // type:object size:0x4 scope:local align:4 data:4byte +@122 = .sdata2:0x803F568C; // type:object size:0x4 scope:local align:4 data:4byte +@123 = .sdata2:0x803F5690; // type:object size:0x4 scope:local align:4 data:4byte +@170 = .sdata2:0x803F5694; // type:object size:0x4 scope:local align:4 data:float +@171 = .sdata2:0x803F5698; // type:object size:0x4 scope:local align:4 data:float +@172 = .sdata2:0x803F569C; // type:object size:0x4 scope:local align:4 data:float +@174 = .sdata2:0x803F56A0; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x803F56A8; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F56B0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F56B8; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F56BC; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803F56C0; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803F56C8; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803F56D0; // type:object size:0x4 scope:local align:4 data:float +@164 = .sdata2:0x803F56D8; // type:object size:0x4 scope:local align:4 data:float +@166 = .sdata2:0x803F56E0; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F56E8; // type:object size:0x4 scope:local align:4 data:float +@193 = .sdata2:0x803F56EC; // type:object size:0x4 scope:local align:4 data:float +@194 = .sdata2:0x803F56F0; // type:object size:0x4 scope:local align:4 data:float +@195 = .sdata2:0x803F56F4; // type:object size:0x4 scope:local align:4 data:float +@196 = .sdata2:0x803F56F8; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803F56FC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803F5700; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803F5704; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F5708; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803F5710; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803F5718; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803F5720; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803F5728; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803F5730; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803F5734; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F5738; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803F5740; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803F5748; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803F5750; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803F5758; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803F5760; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803F5768; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803F5770; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803F5778; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803F5780; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803F5788; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803F5790; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803F5798; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803F57A0; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803F57A8; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F57B0; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803F57B8; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803F57C0; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803F57C8; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803F57D0; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F57D8; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803F57E0; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803F57E8; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803F57F0; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803F57F8; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803F5800; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803F5808; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803F5810; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803F5818; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803F5820; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803F5828; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803F5830; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803F5838; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803F5840; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803F5848; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803F5850; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803F5858; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803F5860; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803F5868; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803F5870; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803F5878; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803F5880; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803F5888; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803F5890; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803F5898; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803F58A0; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803F58A8; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803F58B0; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803F58B8; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803F58C0; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803F58C8; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803F58D0; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803F58D8; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803F58E0; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803F58E8; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803F58F0; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F58F8; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803F5900; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803F5908; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803F5910; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803F5918; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803F5920; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803F5928; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803F5930; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803F5938; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803F5940; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F5948; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803F594C; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803F5950; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F5954; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803F5958; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803F595C; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803F5960; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F5964; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803F5968; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803F596C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803F5970; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803F5978; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803F5980; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803F5988; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803F5990; // type:object size:0x8 scope:local align:8 data:double diff --git a/config/GPIE01_00/build.sha1 b/config/GPIE01_00/build.sha1 new file mode 100644 index 00000000..b5978a55 --- /dev/null +++ b/config/GPIE01_00/build.sha1 @@ -0,0 +1 @@ +30a3850f203a4a910eaccb8fdc697f518d22a687 build/GPIE01_00/main.dol diff --git a/config/GPIE01_00/config.yml b/config/GPIE01_00/config.yml new file mode 100644 index 00000000..1a8129c3 --- /dev/null +++ b/config/GPIE01_00/config.yml @@ -0,0 +1,10 @@ +object: orig/GPIE01_00/sys/main.dol +hash: 30a3850f203a4a910eaccb8fdc697f518d22a687 + +# Generated from dataDir/build.map +symbols: config/GPIE01_00/symbols.txt +splits: config/GPIE01_00/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPIE01_00/splits.txt b/config/GPIE01_00/splits.txt new file mode 100644 index 00000000..06130a87 --- /dev/null +++ b/config/GPIE01_00/splits.txt @@ -0,0 +1,3110 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:32 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:8 + .bss type:bss align:32 + .sdata type:data align:32 + .sbss type:bss align:8 + .sdata2 type:rodata align:4 + +sysBootup.cpp: + .text start:0x80005560 end:0x80005600 + .data start:0x80222D20 end:0x80222D40 + +jaudio/dummyprobe.c: + .text start:0x80005600 end:0x80005640 + +jaudio/memory.c: + .text start:0x80005640 end:0x80005720 + +jaudio/aictrl.c: + .text start:0x80005720 end:0x80005F00 + .rodata start:0x80221F40 end:0x80221F58 + .bss start:0x802E95A0 end:0x802E95C0 + .sbss start:0x803E7780 end:0x803E77B0 + .sdata2 start:0x803E8140 end:0x803E8150 + +jaudio/sample.c: + .text start:0x80005F00 end:0x800061A0 + +jaudio/dummyrom.c: + .text start:0x800061A0 end:0x800062C0 + .bss start:0x803D61F8 end:0x803D6220 align:4 common + .sbss start:0x803E77B0 end:0x803E77C0 + +jaudio/audiothread.c: + .text start:0x800062C0 end:0x800067E0 + .rodata start:0x80221F58 end:0x80221F68 + .bss start:0x802E95C0 end:0x802E9620 + .bss start:0x803D6220 end:0x803DAE80 align:4 common + .sbss start:0x803E77C0 end:0x803E77E0 + .sdata2 start:0x803E8150 end:0x803E8158 + +jaudio/streamctrl.c: + .text start:0x800067E0 end:0x80006B80 + .data start:0x80222D40 end:0x80222E10 + .bss start:0x802E9620 end:0x802E9690 + .sdata2 start:0x803E8158 end:0x803E8168 + +jaudio/dspbuf.c: + .text start:0x80006B80 end:0x80006EE0 + .rodata start:0x80221F68 end:0x80221F80 + .bss start:0x802E9690 end:0x802E96A0 + .sbss start:0x803E77E0 end:0x803E77F0 + +jaudio/cpubuf.c: + .text start:0x80006EE0 end:0x80007120 + .bss start:0x802E96A0 end:0x802E96B0 + .sbss start:0x803E77F0 end:0x803E77F8 + +jaudio/playercall.c: + .text start:0x80007120 end:0x800073E0 + .bss start:0x802E96B0 end:0x802E9770 + +jaudio/dvdthread.c: + .text start:0x800073E0 end:0x80008160 + .data start:0x80222E10 end:0x80222E40 + .bss start:0x802E9770 end:0x802F2440 + .sbss start:0x803E77F8 end:0x803E7840 + +jaudio/rate.c: + .sdata start:0x803DCC80 end:0x803DCC90 + .sbss start:0x803E7840 end:0x803E7848 + +jaudio/audiomesg.c: + .text start:0x80008160 end:0x800082C0 + +jaudio/stackchecker.c: + .text start:0x800082C0 end:0x80008300 + +jaudio/dspboot.c: + .text start:0x80008300 end:0x800086C0 + .rodata start:0x80221F80 end:0x80221FA0 + .data start:0x80222E40 end:0x80224840 + .sdata2 start:0x803E8168 end:0x803E8170 + +jaudio/dspproc.c: + .text start:0x800086C0 end:0x80008A00 + .rodata start:0x80221FA0 end:0x80222028 + .sdata start:0x803DCC90 end:0x803DCC98 + .sdata2 start:0x803E8170 end:0x803E8178 + +jaudio/ipldec.c: + .text start:0x80008A00 end:0x80008BE0 + .bss start:0x803DAE80 end:0x803DAEC0 align:4 common + .sbss start:0x803E7848 end:0x803E7850 + +jaudio/dsp_cardunlock.c: + .text start:0x80008BE0 end:0x80009400 + .rodata start:0x80222028 end:0x80222068 + +jaudio/driverinterface.c: + .text start:0x80009400 end:0x8000ACE0 + .data start:0x80224840 end:0x802248D8 + .bss start:0x802F2440 end:0x803065C0 + .sdata start:0x803DCC98 end:0x803DCCA0 + .sbss start:0x803E7850 end:0x803E7860 + .sdata2 start:0x803E8178 end:0x803E8198 + +jaudio/dspdriver.c: + .text start:0x8000ACE0 end:0x8000B540 + .data start:0x802248D8 end:0x80224900 + .bss start:0x803065C0 end:0x803069C0 + .sbss start:0x803E7860 end:0x803E7868 + .sdata2 start:0x803E8198 end:0x803E81A8 + +jaudio/dspinterface.c: + .text start:0x8000B540 end:0x8000BCA0 + .data start:0x80224900 end:0x80224D60 + .bss start:0x803069C0 end:0x8030CA40 + .sdata start:0x803DCCA0 end:0x803DCCB0 + +jaudio/fxinterface.c: + .text start:0x8000BCA0 end:0x8000BDE0 + .data start:0x80224D60 end:0x80224D78 + +jaudio/tables.c: + .data start:0x80224D78 end:0x80224F78 + +jaudio/bankread.c: + .text start:0x8000BDE0 end:0x8000C1E0 + .bss start:0x8030CA40 end:0x8030CE40 + +jaudio/waveread.c: + .text start:0x8000C1E0 end:0x8000C840 + .bss start:0x8030CE40 end:0x8030D640 + .bss start:0x803DAEC0 end:0x803DAF00 align:4 common + +jaudio/connect.c: + .text start:0x8000C840 end:0x8000CFA0 + .bss start:0x8030D640 end:0x8030DA40 + +jaudio/bankdrv.c: + .text start:0x8000CFA0 end:0x8000D720 + .data start:0x80224F78 end:0x80224F88 + .sdata2 start:0x803E81A8 end:0x803E81D0 + +jaudio/random.c: + .text start:0x8000D720 end:0x8000D880 + .sdata start:0x803DCCB0 end:0x803DCCB8 + .sdata2 start:0x803E81D0 end:0x803E81E0 + +jaudio/aramcall.c: + .text start:0x8000D880 end:0x8000DC00 + .data start:0x80224F88 end:0x80224FC8 + .bss start:0x803DAF00 end:0x803DAF2C align:4 common + .sdata start:0x803DCCB8 end:0x803DCCC0 + .sbss start:0x803E7868 end:0x803E7870 + +jaudio/ja_calc.c: + .text start:0x8000DC00 end:0x8000DDC0 + .bss start:0x8030DA40 end:0x8030DE48 + .sdata2 start:0x803E81E0 end:0x803E8210 + +jaudio/fat.c: + .text start:0x8000DDC0 end:0x8000E2E0 + .bss start:0x8030DE48 end:0x8030F248 + .sbss start:0x803E7870 end:0x803E7880 + +jaudio/cmdstack.c: + .text start:0x8000E2E0 end:0x8000E560 + .sbss start:0x803E7880 end:0x803E7890 + +jaudio/virload.c: + .text start:0x8000E560 end:0x8000E9A0 + .bss start:0x8030F248 end:0x8030F8E0 + .sbss start:0x803E7890 end:0x803E78A0 + .sdata2 start:0x803E8210 end:0x803E8218 + +jaudio/heapctrl.c: + .text start:0x8000E9A0 end:0x8000F3E0 + .rodata start:0x80222068 end:0x80222078 + .bss start:0x8030F8E0 end:0x8031F8E0 + .sbss start:0x803E78A0 end:0x803E78A8 + +jaudio/jammain_2.c: + .text start:0x8000F3E0 end:0x80013820 + .data start:0x80224FC8 end:0x80225288 + .bss start:0x8031F8E0 end:0x8031FA00 + .sdata start:0x803DCCC0 end:0x803DCCC8 + .sbss start:0x803E78A8 end:0x803E78B8 + .sdata2 start:0x803E8218 end:0x803E8260 + +jaudio/midplay.c: + .data start:0x80225288 end:0x80225688 + +jaudio/noteon.c: + .text start:0x80013820 end:0x80013D80 + .sdata2 start:0x803E8260 end:0x803E8268 + +jaudio/seqsetup.c: + .text start:0x80013D80 end:0x80014BA0 + .bss start:0x8031FA00 end:0x80363640 + .sbss start:0x803E78B8 end:0x803E78C8 + .sdata2 start:0x803E8268 end:0x803E8278 + +jaudio/centcalc.c: + .text start:0x80014BA0 end:0x80014C80 + .data start:0x80225688 end:0x80225788 + .sdata2 start:0x803E8278 end:0x803E8290 + +jaudio/jamosc.c: + .text start:0x80014C80 end:0x80015120 + .data start:0x80225788 end:0x80225870 + .sdata2 start:0x803E8290 end:0x803E8298 + +jaudio/oneshot.c: + .text start:0x80015120 end:0x800168E0 + .data start:0x80225870 end:0x802258B0 + .sdata start:0x803DCCC8 end:0x803DCCD0 + .sdata2 start:0x803E8298 end:0x803E82C8 + +jaudio/interface.c: + .text start:0x800168E0 end:0x80016A40 + .bss start:0x80363640 end:0x80363650 + .sdata start:0x803DCCD0 end:0x803DCCD8 + .sbss start:0x803E78C8 end:0x803E78D0 + +jaudio/verysimple.c: + .text start:0x80016A40 end:0x80017440 + .rodata start:0x80222078 end:0x802221D8 + .data start:0x802258B0 end:0x802259C8 + .bss start:0x80363650 end:0x80363728 + .sbss start:0x803E78D0 end:0x803E78F8 + .sdata2 start:0x803E82C8 end:0x803E82D8 + +jaudio/app_inter.c: + .text start:0x80017440 end:0x800175C0 + .sbss start:0x803E78F8 end:0x803E7900 + +jaudio/pikiinter.c: + .text start:0x800175C0 end:0x80018100 + .data start:0x802259C8 end:0x80226090 + .bss start:0x803DAF2C end:0x803DCA90 align:4 common + .sbss start:0x803E7900 end:0x803E7910 + .sdata2 start:0x803E82D8 end:0x803E82F8 + +jaudio/piki_player.c: + .text start:0x80018100 end:0x80018960 + .bss start:0x80363728 end:0x80363840 + .sbss start:0x803E7910 end:0x803E7978 + .sdata2 start:0x803E82F8 end:0x803E8310 + +jaudio/piki_bgm.c: + .text start:0x80018960 end:0x80019740 + .rodata start:0x802221D8 end:0x80222200 + .data start:0x80226090 end:0x802261A8 + .bss start:0x80363840 end:0x80364578 + .sdata start:0x803DCCD8 end:0x803DCD60 + .sbss start:0x803E7978 end:0x803E7988 + .sdata2 start:0x803E8310 end:0x803E8320 + +jaudio/piki_scene.c: + .text start:0x80019740 end:0x8001A0C0 + .data start:0x802261A8 end:0x80226410 + .sdata start:0x803DCD60 end:0x803DCD70 + .sbss start:0x803E7988 end:0x803E79B0 + .sdata2 start:0x803E8320 end:0x803E8328 + +jaudio/pikidemo.c: + .text start:0x8001A0C0 end:0x8001B3C0 + .data start:0x80226410 end:0x80226ED0 + .bss start:0x80364578 end:0x803645E8 + .sdata start:0x803DCD70 end:0x803DCDA8 + .sbss start:0x803E79B0 end:0x803E79D8 + .sdata2 start:0x803E8328 end:0x803E8340 + +jaudio/file_seq.c: + .text start:0x8001B3C0 end:0x8001B940 + .bss start:0x803645E8 end:0x80368E00 + .sdata start:0x803DCDA8 end:0x803DCDB0 + .sbss start:0x803E79D8 end:0x803E79E0 + +jaudio/cmdqueue.c: + .text start:0x8001B940 end:0x8001BB40 + +jaudio/filter3d.c: + .text start:0x8001BB40 end:0x8001BBC0 + .sdata2 start:0x803E8340 end:0x803E8348 + +jaudio/syncstream.c: + .text start:0x8001BBC0 end:0x8001D980 + .data start:0x80226ED0 end:0x80226F40 + .bss start:0x80368E00 end:0x8038A868 + .sdata start:0x803DCDB0 end:0x803DCDB8 + .sbss start:0x803E79E0 end:0x803E79E8 + .sdata2 start:0x803E8348 end:0x803E8360 + +jaudio/pikiseq.c: + .data start:0x80226F40 end:0x80227220 + +jaudio/bankloader.c: + .text start:0x8001D980 end:0x8001DA60 + +jaudio/interleave.c: + .text start:0x8001DA60 end:0x8001DC60 + .bss start:0x8038A868 end:0x8038A8A0 + .sdata start:0x803DCDB8 end:0x803DCDC0 + +jaudio/hvqm_play.c: + .text start:0x8001DC60 end:0x8001EC1C + .bss start:0x8038A8A0 end:0x8038BC60 + .bss start:0x803DCA90 end:0x803DCC70 align:4 common + .sdata start:0x803DCDC0 end:0x803DCDD0 + .sbss start:0x803E79E8 end:0x803E7A40 + .sdata2 start:0x803E8360 end:0x803E8368 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001EC1C end:0x800246C4 + .rodata start:0x80222200 end:0x80222218 + .data start:0x80227220 end:0x80227230 + .bss start:0x8038BC60 end:0x8038C6A0 + .sbss start:0x803E7A40 end:0x803E7A48 + +sysCommon/ayuStack.cpp: + .text start:0x800246C4 end:0x80024DDC + +sysCommon/baseApp.cpp: + .text start:0x80024DDC end:0x80025090 + .data start:0x80227230 end:0x802272F8 + .sdata start:0x803DCDD0 end:0x803DCE10 + +sysCommon/stream.cpp: + .text start:0x80025090 end:0x800254E0 + .data start:0x802272F8 end:0x80227350 + .sdata start:0x803DCE10 end:0x803DCE20 + +sysCommon/streamBufferedInput.cpp: + .text start:0x800254E0 end:0x800258D0 + .data start:0x80227350 end:0x802274A0 + .sdata start:0x803DCE20 end:0x803DCE40 + +sysCommon/string.cpp: + .text start:0x800258D0 end:0x800258F4 + +sysCommon/graphics.cpp: + .text start:0x800258F4 end:0x80029A28 + .data start:0x802274A0 end:0x80228200 + .sdata start:0x803DCE40 end:0x803DCF40 + .sdata2 start:0x803E8368 end:0x803E83D0 + +sysCommon/grLight.cpp: + .text start:0x80029A28 end:0x80029F78 + .data start:0x80228200 end:0x80228280 + .sdata start:0x803DCF40 end:0x803DCF98 + .sdata2 start:0x803E83D0 end:0x803E8420 + +sysCommon/shapeBase.cpp: + .text start:0x80029F78 end:0x80035B18 + .ctors start:0x80221EC4 end:0x80221EC8 + .rodata start:0x80222218 end:0x80222278 + .data start:0x80228280 end:0x80228938 + .bss start:0x8038C6A0 end:0x803907A0 + .sdata start:0x803DCF98 end:0x803DD138 + .sbss start:0x803E7A48 end:0x803E7A58 + .sdata2 start:0x803E8420 end:0x803E8490 + +sysCommon/shpLightFlares.cpp: + .text start:0x80035B18 end:0x80036104 + .data start:0x80228938 end:0x80228950 + .sdata start:0x803DD138 end:0x803DD180 + .sdata2 start:0x803E8490 end:0x803E84B0 + +sysCommon/shpObjColl.cpp: + .text start:0x80036104 end:0x80036454 + .data start:0x80228950 end:0x80228960 + .sdata start:0x803DD180 end:0x803DD1B8 + .sdata2 start:0x803E84B0 end:0x803E84B8 + +sysCommon/shpRoutes.cpp: + .text start:0x80036454 end:0x8003754C + .data start:0x80228960 end:0x80228B50 + .sdata start:0x803DD1B8 end:0x803DD258 + .sdata2 start:0x803E84B8 end:0x803E84E0 + +sysCommon/sysMath.cpp: + .text start:0x8003754C end:0x8003DD9C + .sdata start:0x803DD258 end:0x803DD270 + .sdata2 start:0x803E84E0 end:0x803E8520 + +sysCommon/matMath.cpp: + .text start:0x8003DD9C end:0x8003EE14 + .ctors start:0x80221EC8 end:0x80221ECC + .bss start:0x803907A0 end:0x803987E0 + .sdata start:0x803DD270 end:0x803DD278 + .sdata2 start:0x803E8520 end:0x803E8530 + +sysCommon/stdSystem.cpp: + .text start:0x8003EE14 end:0x800405B8 + .data start:0x80228B50 end:0x80228CE0 + .sdata start:0x803DD278 end:0x803DD2E0 + .sdata2 start:0x803E8530 end:0x803E8538 + +sysCommon/node.cpp: + .text start:0x800405B8 end:0x80040964 + .data start:0x80228CE0 end:0x80228DB0 + .sdata start:0x803DD2E0 end:0x803DD320 + .sbss start:0x803E7A58 end:0x803E7A60 + +sysCommon/timers.cpp: + .text start:0x80040964 end:0x80040990 + +sysCommon/controller.cpp: + .text start:0x80040990 end:0x80040B5C + .data start:0x80228DB0 end:0x80228E48 + .sdata start:0x803DD320 end:0x803DD350 + .sdata2 start:0x803E8538 end:0x803E8548 + +sysCommon/cmdStream.cpp: + .text start:0x80040B5C end:0x80041564 + .sbss start:0x803E7A60 end:0x803E7A68 + +sysCommon/camera.cpp: + .text start:0x80041564 end:0x800438CC + .data start:0x80228E48 end:0x80228E60 + .sdata start:0x803DD350 end:0x803DD3D0 + .sdata2 start:0x803E8548 end:0x803E85A0 + +sysCommon/atx.cpp: + .text start:0x800438CC end:0x80043E3C + .data start:0x80228E60 end:0x80228F80 + .sdata start:0x803DD3D0 end:0x803DD3F8 + +sysCommon/id32.cpp: + .text start:0x80043E3C end:0x80044174 + +sysDolphin/texture.cpp: + .text start:0x80044174 end:0x800447BC + .data start:0x80228F80 end:0x80229020 + .sdata start:0x803DD3F8 end:0x803DD430 + .sdata2 start:0x803E85A0 end:0x803E85B8 + +sysDolphin/system.cpp: + .text start:0x800447BC end:0x80046FE4 + .ctors start:0x80221ECC end:0x80221ED0 + .data start:0x80229020 end:0x802A5608 + .bss start:0x803987E0 end:0x8039D360 + .sdata start:0x803DD430 end:0x803DD508 + .sbss start:0x803E7A68 end:0x803E7A90 + .sdata2 start:0x803E85B8 end:0x803E85D8 + +sysDolphin/sysNew.cpp: + .text start:0x80046FE4 end:0x80047194 + +sysDolphin/controllerMgr.cpp: + .text start:0x80047194 end:0x80047498 + .data start:0x802A5608 end:0x802A5648 + .bss start:0x8039D360 end:0x8039D390 + .sdata start:0x803DD508 end:0x803DD510 + +sysDolphin/dgxGraphics.cpp: + .text start:0x80047498 end:0x8004C908 + .ctors start:0x80221ED0 end:0x80221ED4 + .data start:0x802A5648 end:0x802A5E10 + .bss start:0x8039D390 end:0x8039D398 + .sdata start:0x803DD510 end:0x803DD598 + .sbss start:0x803E7A90 end:0x803E7AC0 + .sdata2 start:0x803E85D8 end:0x803E8608 + +sysDolphin/gameApp.cpp: + .text start:0x8004C908 end:0x8004C93C + +plugPikiColin/cardutil.cpp: + .text start:0x8004C93C end:0x8004DC00 + .data start:0x802A5E10 end:0x802A5E38 + .bss start:0x8039D398 end:0x8039D718 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004DC00 end:0x80050024 + .rodata start:0x80222278 end:0x802222D8 + .data start:0x802A5E38 end:0x802A5F20 + .sdata start:0x803DD598 end:0x803DD650 + .sdata2 start:0x803E8608 end:0x803E8620 + +plugPikiColin/animMgr.cpp: + .text start:0x80050024 end:0x80051478 + .data start:0x802A5F20 end:0x802A6088 + .sdata start:0x803DD650 end:0x803DD6D0 + .sdata2 start:0x803E8620 end:0x803E8638 + +plugPikiColin/gameflow.cpp: + .text start:0x80051478 end:0x8005315C + .ctors start:0x80221ED4 end:0x80221ED8 + .data start:0x802A6088 end:0x802A6630 + .bss start:0x8039D718 end:0x8039DA80 + .sdata start:0x803DD6D0 end:0x803DD7F8 + .sbss start:0x803E7AC0 end:0x803E7AC8 + .sdata2 start:0x803E8638 end:0x803E8690 + +plugPikiColin/game.cpp: + .text start:0x8005315C end:0x80053C5C + .ctors start:0x80221ED8 end:0x80221EDC + .data start:0x802A6630 end:0x802A6878 + .bss start:0x8039DA80 end:0x8039DCE0 + .sdata start:0x803DD7F8 end:0x803DD890 + .sdata2 start:0x803E8690 end:0x803E8698 + +plugPikiColin/gamePrefs.cpp: + .text start:0x80053C5C end:0x80054B34 + .data start:0x802A6878 end:0x802A6908 + .sdata start:0x803DD890 end:0x803DD8B8 + +plugPikiColin/gameSetup.cpp: + .text start:0x80054B34 end:0x8005503C + .data start:0x802A6908 end:0x802A75C0 + .sdata start:0x803DD8B8 end:0x803DD930 + +plugPikiColin/cardSelect.cpp: + .text start:0x8005503C end:0x8005570C + .data start:0x802A75C0 end:0x802A7780 + .sdata start:0x803DD930 end:0x803DD988 + .sbss start:0x803E7AC8 end:0x803E7AD0 + .sdata2 start:0x803E8698 end:0x803E86A8 + +plugPikiColin/mapSelect.cpp: + .text start:0x8005570C end:0x80056B00 + .data start:0x802A7780 end:0x802A7A40 + .sdata start:0x803DD988 end:0x803DDA00 + .sbss start:0x803E7AD0 end:0x803E7AD8 + .sdata2 start:0x803E86A8 end:0x803E86B8 + +plugPikiColin/newPikiGame.cpp: + .text start:0x80056B00 end:0x8005AE1C + .rodata start:0x802222D8 end:0x80222300 + .data start:0x802A7A40 end:0x802A7EC8 + .bss start:0x8039DCE0 end:0x8039DD20 + .sdata start:0x803DDA00 end:0x803DDB68 + .sbss start:0x803E7AD8 end:0x803E7B10 + .sdata2 start:0x803E86B8 end:0x803E8720 + +plugPikiColin/introGame.cpp: + .text start:0x8005AE1C end:0x8005B690 + .data start:0x802A7EC8 end:0x802A8120 + .sdata start:0x803DDB68 end:0x803DDC20 + .sbss start:0x803E7B10 end:0x803E7B18 + .sdata2 start:0x803E8720 end:0x803E8740 + +plugPikiColin/gameExit.cpp: + .text start:0x8005B690 end:0x8005B780 + .data start:0x802A8120 end:0x802A8240 + .sdata start:0x803DDC20 end:0x803DDC70 + +plugPikiColin/gauges.cpp: + .text start:0x8005B780 end:0x8005D0E8 + .ctors start:0x80221EDC end:0x80221EE0 + .data start:0x802A8240 end:0x802A8258 + .sdata start:0x803DDC70 end:0x803DDCC0 + .sbss start:0x803E7B18 end:0x803E7B30 + .sdata2 start:0x803E8740 end:0x803E87C0 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005D0E8 end:0x8005D6F8 + .data start:0x802A8258 end:0x802A84A0 + .sdata start:0x803DDCC0 end:0x803DDD40 + .sbss start:0x803E7B30 end:0x803E7B38 + .sdata2 start:0x803E87C0 end:0x803E87D0 + +plugPikiColin/gui.cpp: + .text start:0x8005D6F8 end:0x8005EA80 + .data start:0x802A84A0 end:0x802A85E0 + .sdata start:0x803DDD40 end:0x803DDD90 + .sdata2 start:0x803E87D0 end:0x803E8800 + +plugPikiColin/parameters.cpp: + .text start:0x8005EA80 end:0x8005EDF0 + .data start:0x802A85E0 end:0x802A8610 + .sdata start:0x803DDD90 end:0x803DDD98 + +plugPikiColin/plugPiki.cpp: + .text start:0x8005EDF0 end:0x8005F804 + .data start:0x802A8610 end:0x802A8880 + .sdata start:0x803DDD98 end:0x803DDE28 + .sdata2 start:0x803E8800 end:0x803E8810 + +plugPikiColin/titles.cpp: + .text start:0x8005F804 end:0x80061250 + .data start:0x802A8880 end:0x802A8B58 + .sdata start:0x803DDE28 end:0x803DDF18 + .sbss start:0x803E7B38 end:0x803E7B78 + .sdata2 start:0x803E8810 end:0x803E8878 + +plugPikiColin/ninLogo.cpp: + .text start:0x80061250 end:0x800617C0 + .data start:0x802A8B58 end:0x802A8CC8 + .sdata start:0x803DDF18 end:0x803DDF68 + .sbss start:0x803E7B78 end:0x803E7B80 + .sdata2 start:0x803E8878 end:0x803E8890 + +plugPikiColin/mapMgr.cpp: + .text start:0x800617C0 end:0x800697FC + .ctors start:0x80221EE0 end:0x80221EE4 + .data start:0x802A8CC8 end:0x802A93E0 + .bss start:0x8039DD20 end:0x8039DD38 + .sdata start:0x803DDF68 end:0x803DE1A8 + .sbss start:0x803E7B80 end:0x803E7B98 + .sdata2 start:0x803E8890 end:0x803E8938 + +plugPikiColin/dayMgr.cpp: + .text start:0x800697FC end:0x8006FA1C + .data start:0x802A93E0 end:0x802A9C60 + .sdata start:0x803DE1A8 end:0x803DE438 + .sdata2 start:0x803E8938 end:0x803E8990 + +plugPikiColin/cinePlayer.cpp: + .text start:0x8006FA1C end:0x80073164 + .data start:0x802A9C60 end:0x802A9EC0 + .bss start:0x8039DD38 end:0x8039E140 + .sdata start:0x803DE438 end:0x803DE6D0 + .sdata2 start:0x803E8990 end:0x803E89B8 + +plugPikiColin/lightPool.cpp: + .text start:0x80073164 end:0x800738C8 + .data start:0x802A9EC0 end:0x802A9F80 + .sdata start:0x803DE6D0 end:0x803DE730 + .sdata2 start:0x803E89B8 end:0x803E89E8 + +plugPikiColin/memoryCard.cpp: + .text start:0x800738C8 end:0x80076E34 + .data start:0x802A9F80 end:0x802ABC68 + .bss start:0x8039E140 end:0x803D01C0 + .sdata start:0x803DE730 end:0x803DE780 + +plugPikiColin/moviePlayer.cpp: + .text start:0x80076E34 end:0x80077EF0 + .data start:0x802ABC68 end:0x802AC838 + .sdata start:0x803DE780 end:0x803DE7C0 + .sdata2 start:0x803E89E8 end:0x803E8A08 + +plugPikiColin/movSample.cpp: + .text start:0x80077EF0 end:0x80078DB0 + .data start:0x802AC838 end:0x802ACA68 + .bss start:0x803D01C0 end:0x803D1510 + .sdata start:0x803DE7C0 end:0x803DE810 + .sbss start:0x803E7B98 end:0x803E7BA0 + .sdata2 start:0x803E8A08 end:0x803E8A30 + +plugPikiKando/omake.cpp: + .text start:0x80078DB0 end:0x8007B564 + .data start:0x802ACA68 end:0x802ACB68 + .sdata start:0x803DE810 end:0x803DE850 + .sbss start:0x803E7BA0 end:0x803E7BA8 + .sdata2 start:0x803E8A30 end:0x803E8A88 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007B564 end:0x8007B7C8 + .data start:0x802ACB68 end:0x802ACBF8 + .sdata start:0x803DE850 end:0x803DE890 + .sbss start:0x803E7BA8 end:0x803E7BB0 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007B7C8 end:0x8007C89C + .data start:0x802ACBF8 end:0x802AD0A0 + .sdata start:0x803DE890 end:0x803DE928 + .sdata2 start:0x803E8A88 end:0x803E8A98 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007C89C end:0x8007C9F8 + .data start:0x802AD0A0 end:0x802AD160 + .sdata start:0x803DE928 end:0x803DE958 + .sdata2 start:0x803E8A98 end:0x803E8AA0 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007C9F8 end:0x8007CB38 + .data start:0x802AD160 end:0x802AD218 + .sdata start:0x803DE958 end:0x803DE970 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007CB38 end:0x8007CDFC + .data start:0x802AD218 end:0x802AD290 + .sdata start:0x803DE970 end:0x803DE990 + .sdata2 start:0x803E8AA0 end:0x803E8AB0 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007CDFC end:0x8007D26C + .data start:0x802AD290 end:0x802AD678 + .sdata start:0x803DE990 end:0x803DE9E0 + .sbss start:0x803E7BB0 end:0x803E7BD0 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007D26C end:0x8007DF5C + .data start:0x802AD678 end:0x802ADB00 + .sdata start:0x803DE9E0 end:0x803DEA78 + .sdata2 start:0x803E8AB0 end:0x803E8AC8 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007DF5C end:0x8007F2B4 + .data start:0x802ADB00 end:0x802ADC38 + .sdata start:0x803DEA78 end:0x803DEB38 + .sdata2 start:0x803E8AC8 end:0x803E8B20 + +plugPikiKando/globalShapes.cpp: + .text start:0x8007F2B4 end:0x8007F3B8 + .data start:0x802ADC38 end:0x802ADCD8 + .sbss start:0x803E7BD0 end:0x803E7BE8 + +plugPikiKando/playerState.cpp: + .text start:0x8007F3B8 end:0x80081C10 + .rodata start:0x80222300 end:0x80222330 + .data start:0x802ADCD8 end:0x802ADD80 + .sdata start:0x803DEB38 end:0x803DEBC0 + .sbss start:0x803E7BE8 end:0x803E7BF0 + .sdata2 start:0x803E8B20 end:0x803E8B28 + +plugPikiKando/gameDemo.cpp: + .text start:0x80081C10 end:0x80082818 + .data start:0x802ADD80 end:0x802AE100 + .sdata start:0x803DEBC0 end:0x803DEC38 + .sbss start:0x803E7BF0 end:0x803E7BF8 + .sdata2 start:0x803E8B28 end:0x803E8B48 + +plugPikiKando/demoInvoker.cpp: + .text start:0x80082818 end:0x8008313C + .sdata2 start:0x803E8B48 end:0x803E8B60 + +plugPikiKando/demoEvent.cpp: + .text start:0x8008313C end:0x8008358C + .data start:0x802AE100 end:0x802AE140 + .sbss start:0x803E7BF8 end:0x803E7C00 + +plugPikiKando/resultFlag.cpp: + .text start:0x8008358C end:0x80083E60 + .rodata start:0x80222330 end:0x80222340 + .data start:0x802AE140 end:0x802AE620 + .sdata start:0x803DEC38 end:0x803DEC48 + +plugPikiKando/aiConstants.cpp: + .text start:0x80083E60 end:0x80084340 + .data start:0x802AE620 end:0x802AE740 + .sdata start:0x803DEC48 end:0x803DECF0 + .sbss start:0x803E7C00 end:0x803E7C08 + .sdata2 start:0x803E8B60 end:0x803E8B70 + +plugPikiKando/kio.cpp: + .text start:0x80084340 end:0x800846C0 + .sdata start:0x803DECF0 end:0x803DED00 + .sbss start:0x803E7C08 end:0x803E7C18 + +plugPikiKando/keyConfig.cpp: + .text start:0x800846C0 end:0x800849E8 + .data start:0x802AE740 end:0x802AE880 + .sdata start:0x803DED00 end:0x803DED68 + .sbss start:0x803E7C18 end:0x803E7C20 + +plugPikiKando/aiPerf.cpp: + .text start:0x800849E8 end:0x800864A8 + .rodata start:0x80222340 end:0x80222358 + .data start:0x802AE880 end:0x802AED98 + .sdata start:0x803DED68 end:0x803DEDB0 + .sbss start:0x803E7C20 end:0x803E7C58 + .sdata2 start:0x803E8B70 end:0x803E8B80 + +plugPikiKando/courseDebug.cpp: + .text start:0x800864A8 end:0x80086690 + .data start:0x802AED98 end:0x802AEEA8 + .sdata start:0x803DEDB0 end:0x803DEDF0 + .sbss start:0x803E7C58 end:0x803E7C68 + +plugPikiKando/memStat.cpp: + .text start:0x80086690 end:0x80086CC4 + .data start:0x802AEEA8 end:0x802AEF50 + .sdata start:0x803DEDF0 end:0x803DEE28 + .sbss start:0x803E7C68 end:0x803E7C70 + +plugPikiKando/collInfo.cpp: + .text start:0x80086CC4 end:0x8008A02C + .ctors start:0x80221EE4 end:0x80221EE8 + .data start:0x802AEF50 end:0x802AEFD0 + .bss start:0x803D1510 end:0x803D1550 + .sdata start:0x803DEE28 end:0x803DEE38 + .sdata2 start:0x803E8B80 end:0x803E8BB8 + +plugPikiKando/complexCreature.cpp: + .text start:0x8008A02C end:0x8008A040 + +plugPikiKando/creature.cpp: + .text start:0x8008A040 end:0x8008D954 + .data start:0x802AEFD0 end:0x802AF148 + .bss start:0x803D1550 end:0x803D1D50 + .sdata start:0x803DEE38 end:0x803DEFB0 + .sbss start:0x803E7C70 end:0x803E7C80 + .sdata2 start:0x803E8BB8 end:0x803E8C18 + +plugPikiKando/creatureCollision.cpp: + .text start:0x8008D954 end:0x8008E0BC + .sdata start:0x803DEFB0 end:0x803DEFB8 + .sdata2 start:0x803E8C18 end:0x803E8C30 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x8008E0BC end:0x8008E2CC + .data start:0x802AF148 end:0x802AF288 + .sdata start:0x803DEFB8 end:0x803DEFF8 + +plugPikiKando/creatureMove.cpp: + .text start:0x8008E2CC end:0x8008F9C4 + .sdata start:0x803DEFF8 end:0x803DF048 + .sdata2 start:0x803E8C30 end:0x803E8C78 + +plugPikiKando/creatureStick.cpp: + .text start:0x8008F9C4 end:0x80091EC0 + .data start:0x802AF288 end:0x802AF368 + .sdata start:0x803DF048 end:0x803DF0C8 + .sdata2 start:0x803E8C78 end:0x803E8CA0 + +plugPikiKando/dualCreature.cpp: + .text start:0x80091EC0 end:0x80092808 + .data start:0x802AF368 end:0x802AF690 + .sdata start:0x803DF0C8 end:0x803DF150 + .sdata2 start:0x803E8CA0 end:0x803E8CD0 + +plugPikiKando/dynCreature.cpp: + .text start:0x80092808 end:0x80093FA8 + .data start:0x802AF690 end:0x802AF910 + .sdata start:0x803DF150 end:0x803DF258 + .sbss start:0x803E7C80 end:0x803E7C88 + .sdata2 start:0x803E8CD0 end:0x803E8D28 + +plugPikiKando/eventListener.cpp: + .text start:0x80093FA8 end:0x80094098 + .data start:0x802AF910 end:0x802AF9B0 + .sdata start:0x803DF258 end:0x803DF278 + +plugPikiKando/fastGrid.cpp: + .text start:0x80094098 end:0x800946A4 + .sdata start:0x803DF278 end:0x803DF288 + .sbss start:0x803E7C88 end:0x803E7C90 + +plugPikiKando/ropeCreature.cpp: + .text start:0x800946A4 end:0x80094A38 + .data start:0x802AF9B0 end:0x802AFB50 + .sdata start:0x803DF288 end:0x803DF2A8 + .sdata2 start:0x803E8D28 end:0x803E8D48 + +plugPikiKando/objectTypes.cpp: + .text start:0x80094A38 end:0x80094B14 + .data start:0x802AFB50 end:0x802AFE78 + .sdata start:0x803DF2A8 end:0x803DF380 + +plugPikiKando/pelletMgr.cpp: + .text start:0x80094B14 end:0x800994FC + .rodata start:0x80222358 end:0x80222378 + .data start:0x802AFE78 end:0x802B06A8 + .sdata start:0x803DF380 end:0x803DF5D0 + .sbss start:0x803E7C90 end:0x803E7CA0 + .sdata2 start:0x803E8D48 end:0x803E8DD0 + +plugPikiKando/animPellet.cpp: + .text start:0x800994FC end:0x80099CD0 + .data start:0x802B06A8 end:0x802B0848 + .sdata start:0x803DF5D0 end:0x803DF660 + .sdata2 start:0x803E8DD0 end:0x803E8DD8 + +plugPikiKando/genPellet.cpp: + .text start:0x80099CD0 end:0x80099FE0 + .data start:0x802B0848 end:0x802B0920 + .sdata start:0x803DF660 end:0x803DF688 + +plugPikiKando/pelletState.cpp: + .text start:0x80099FE0 end:0x8009B0B8 + .data start:0x802B0920 end:0x802B0DE8 + .sdata start:0x803DF688 end:0x803DF718 + .sdata2 start:0x803E8DD8 end:0x803E8E10 + +plugPikiKando/workObject.cpp: + .text start:0x8009B0B8 end:0x8009F598 + .data start:0x802B0DE8 end:0x802B1A10 + .sdata start:0x803DF718 end:0x803DF8B8 + .sbss start:0x803E7CA0 end:0x803E7CA8 + .sdata2 start:0x803E8E10 end:0x803E8E70 + +plugPikiKando/routeMgr.cpp: + .text start:0x8009F598 end:0x800A33DC + .data start:0x802B1A10 end:0x802B1AD0 + .sdata start:0x803DF8B8 end:0x803DF900 + .sbss start:0x803E7CA8 end:0x803E7CB0 + .sdata2 start:0x803E8E70 end:0x803E8EB0 + +plugPikiKando/seMgr.cpp: + .text start:0x800A33DC end:0x800A3AB8 + .data start:0x802B1AD0 end:0x802B1C70 + .sdata start:0x803DF900 end:0x803DF988 + .sbss start:0x803E7CB0 end:0x803E7CB8 + .sdata2 start:0x803E8EB0 end:0x803E8EC8 + +plugPikiKando/seConstants.cpp: + .text start:0x800A3AB8 end:0x800A3C10 + .data start:0x802B1C70 end:0x802B1D70 + .sdata start:0x803DF988 end:0x803DF9E0 + .sdata2 start:0x803E8EC8 end:0x803E8ED8 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A3C10 end:0x800A53F8 + .rodata start:0x80222378 end:0x802223A0 + .data start:0x802B1D70 end:0x802B4D90 + .sdata start:0x803DF9E0 end:0x803DFAB0 + .sbss start:0x803E7CB8 end:0x803E7CC0 + .sdata2 start:0x803E8ED8 end:0x803E8F00 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A53F8 end:0x800A56C4 + .sbss start:0x803E7CC0 end:0x803E7CD8 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803E7CD8 end:0x803E7CE0 + +plugPikiKando/cPlate.cpp: + .text start:0x800A56C4 end:0x800A6D48 + .data start:0x802B4D90 end:0x802B4EC8 + .sdata start:0x803DFAB0 end:0x803DFB90 + .sdata2 start:0x803E8F00 end:0x803E8F50 + +plugPikiKando/aiStone.cpp: + .text start:0x800A6D48 end:0x800A79AC + .data start:0x802B4EC8 end:0x802B4FD0 + .sdata start:0x803DFB90 end:0x803DFBF0 + .sdata2 start:0x803E8F50 end:0x803E8FA0 + +plugPikiKando/aiActions.cpp: + .text start:0x800A79AC end:0x800A829C + .data start:0x802B4FD0 end:0x802B52B8 + .sdata start:0x803DFBF0 end:0x803DFC78 + .sdata2 start:0x803E8FA0 end:0x803E8FD8 + +plugPikiKando/aiAttack.cpp: + .text start:0x800A829C end:0x800AA4D0 + .data start:0x802B52B8 end:0x802B54F8 + .sdata start:0x803DFC78 end:0x803DFD30 + .sdata2 start:0x803E8FD8 end:0x803E9038 + +plugPikiKando/aiBore.cpp: + .text start:0x800AA4D0 end:0x800AC2C0 + .rodata start:0x802223A0 end:0x80222400 + .data start:0x802B54F8 end:0x802B5920 + .sdata start:0x803DFD30 end:0x803DFDA0 + .sdata2 start:0x803E9038 end:0x803E9070 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AC2C0 end:0x800AC750 + .data start:0x802B5920 end:0x802B5A70 + .sdata start:0x803DFDA0 end:0x803DFDC0 + .sdata2 start:0x803E9070 end:0x803E9080 + +plugPikiKando/aiBou.cpp: + .text start:0x800AC750 end:0x800ACE54 + .data start:0x802B5A70 end:0x802B5B40 + .sdata start:0x803DFDC0 end:0x803DFE08 + .sdata2 start:0x803E9080 end:0x803E90A8 + +plugPikiKando/aiBridge.cpp: + .text start:0x800ACE54 end:0x800AE0F0 + .rodata start:0x80222400 end:0x80222410 + .data start:0x802B5B40 end:0x802B5CA8 + .sdata start:0x803DFE08 end:0x803DFE58 + .sdata2 start:0x803E90A8 end:0x803E90F0 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800AE0F0 end:0x800AEC34 + .data start:0x802B5CA8 end:0x802B5E10 + .sdata start:0x803DFE58 end:0x803DFE98 + .sdata2 start:0x803E90F0 end:0x803E9128 + +plugPikiKando/aiTransport.cpp: + .text start:0x800AEC34 end:0x800B4524 + .rodata start:0x80222410 end:0x80222438 + .data start:0x802B5E10 end:0x802B5F90 + .sdata start:0x803DFE98 end:0x803E0078 + .sdata2 start:0x803E9128 end:0x803E91C8 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B4524 end:0x800B563C + .data start:0x802B5F90 end:0x802B60E8 + .sdata start:0x803E0078 end:0x803E00E8 + .sdata2 start:0x803E91C8 end:0x803E9218 + +plugPikiKando/aiChase.cpp: + .text start:0x800B563C end:0x800B5A60 + .data start:0x802B60E8 end:0x802B6218 + .sdata start:0x803E00E8 end:0x803E0128 + .sdata2 start:0x803E9218 end:0x803E9250 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B5A60 end:0x800B7760 + .data start:0x802B6218 end:0x802B6328 + .sdata start:0x803E0128 end:0x803E01C0 + .sdata2 start:0x803E9250 end:0x803E92C0 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800B7760 end:0x800B7F18 + .data start:0x802B6328 end:0x802B6438 + .sdata start:0x803E01C0 end:0x803E0208 + .sdata2 start:0x803E92C0 end:0x803E92F8 + +plugPikiKando/aiEnter.cpp: + .text start:0x800B7F18 end:0x800B87DC + .data start:0x802B6438 end:0x802B6548 + .sdata start:0x803E0208 end:0x803E0250 + .sdata2 start:0x803E92F8 end:0x803E9350 + +plugPikiKando/aiEscape.cpp: + .text start:0x800B87DC end:0x800B8D1C + .data start:0x802B6548 end:0x802B6688 + .sdata start:0x803E0250 end:0x803E02A8 + .sdata2 start:0x803E9350 end:0x803E9390 + +plugPikiKando/aiExit.cpp: + .text start:0x800B8D1C end:0x800B9274 + .data start:0x802B6688 end:0x802B6758 + .sdata start:0x803E02A8 end:0x803E0320 + .sdata2 start:0x803E9390 end:0x803E93C8 + +plugPikiKando/aiMine.cpp: + .text start:0x800B9274 end:0x800B988C + .data start:0x802B6758 end:0x802B6898 + .sdata start:0x803E0320 end:0x803E0368 + .sdata2 start:0x803E93C8 end:0x803E93D8 + +plugPikiKando/aiFormation.cpp: + .text start:0x800B988C end:0x800BA5B4 + .data start:0x802B6898 end:0x802B69C0 + .sdata start:0x803E0368 end:0x803E03C0 + .sdata2 start:0x803E93D8 end:0x803E9440 + +plugPikiKando/aiFree.cpp: + .text start:0x800BA5B4 end:0x800BAF1C + .data start:0x802B69C0 end:0x802B6AD8 + .sdata start:0x803E03C0 end:0x803E0418 + .sdata2 start:0x803E9440 end:0x803E9468 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BAF1C end:0x800BB4E8 + .data start:0x802B6AD8 end:0x802B6BE8 + .sdata start:0x803E0418 end:0x803E0460 + .sdata2 start:0x803E9468 end:0x803E94A0 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BB4E8 end:0x800BCAB0 + .data start:0x802B6BE8 end:0x802B6CC0 + .sdata start:0x803E0460 end:0x803E04B0 + .sdata2 start:0x803E94A0 end:0x803E94E8 + +plugPikiKando/aiPick.cpp: + .text start:0x800BCAB0 end:0x800BD318 + .data start:0x802B6CC0 end:0x802B6ED0 + .sdata start:0x803E04B0 end:0x803E0500 + .sdata2 start:0x803E94E8 end:0x803E94F8 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800BD318 end:0x800BD624 + .data start:0x802B6ED0 end:0x802B70C8 + .sdata start:0x803E0500 end:0x803E0540 + +plugPikiKando/aiPullout.cpp: + .text start:0x800BD624 end:0x800BDFA4 + .data start:0x802B70C8 end:0x802B72D0 + .sdata start:0x803E0540 end:0x803E05A0 + .sdata2 start:0x803E94F8 end:0x803E9520 + +plugPikiKando/aiPush.cpp: + .text start:0x800BDFA4 end:0x800BE9A8 + .data start:0x802B72D0 end:0x802B7440 + .sdata start:0x803E05A0 end:0x803E05D8 + .sdata2 start:0x803E9520 end:0x803E9550 + +plugPikiKando/aiPut.cpp: + .text start:0x800BE9A8 end:0x800C09C4 + .data start:0x802B7440 end:0x802B7618 + .sdata start:0x803E05D8 end:0x803E0668 + .sdata2 start:0x803E9550 end:0x803E9598 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C09C4 end:0x800C129C + .data start:0x802B7618 end:0x802B77C0 + .sdata start:0x803E0668 end:0x803E0710 + .sdata2 start:0x803E9598 end:0x803E95D8 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C129C end:0x800C1DD8 + .data start:0x802B77C0 end:0x802B78E0 + .sdata start:0x803E0710 end:0x803E0770 + .sdata2 start:0x803E95D8 end:0x803E9618 + +plugPikiKando/aiRope.cpp: + .text start:0x800C1DD8 end:0x800C2120 + .data start:0x802B78E0 end:0x802B79B0 + .sdata start:0x803E0770 end:0x803E07B0 + .sdata2 start:0x803E9618 end:0x803E9638 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C2120 end:0x800C2C08 + .data start:0x802B79B0 end:0x802B7B98 + .sdata start:0x803E07B0 end:0x803E0808 + .sdata2 start:0x803E9638 end:0x803E9668 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C2C08 end:0x800C305C + .data start:0x802B7B98 end:0x802B7D10 + .sdata start:0x803E0808 end:0x803E0860 + .sdata2 start:0x803E9668 end:0x803E9690 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C305C end:0x800C3A98 + .data start:0x802B7D10 end:0x802B7E10 + .sdata start:0x803E0860 end:0x803E08C8 + .sdata2 start:0x803E9690 end:0x803E96E0 + +plugPikiKando/aiAction.cpp: + .text start:0x800C3A98 end:0x800C5688 + .data start:0x802B7E10 end:0x802B8190 + .sdata start:0x803E08C8 end:0x803E0948 + .sdata2 start:0x803E96E0 end:0x803E96E8 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C5688 end:0x800C650C + .ctors start:0x80221EE8 end:0x80221EEC + .data start:0x802B8190 end:0x802B8388 + .bss start:0x803D1D50 end:0x803D1D78 + .sdata start:0x803E0948 end:0x803E09D8 + .sdata2 start:0x803E96E8 end:0x803E96F8 + +plugPikiKando/piki.cpp: + .text start:0x800C650C end:0x800CD7B8 + .ctors start:0x80221EEC end:0x80221EF0 + .data start:0x802B8388 end:0x802B89B0 + .bss start:0x803D1D78 end:0x803D1DA8 + .sdata start:0x803E09D8 end:0x803E0AE0 + .sbss start:0x803E7CE0 end:0x803E7CE8 + .sdata2 start:0x803E96F8 end:0x803E9788 + +plugPikiKando/odoMeter.cpp: + .text start:0x800CD7B8 end:0x800CD904 + .sdata2 start:0x803E9788 end:0x803E97A0 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800CD904 end:0x800CDC84 + .sdata2 start:0x803E97A0 end:0x803E97B0 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800CDC84 end:0x800CF09C + .data start:0x802B89B0 end:0x802B8C20 + .sdata start:0x803E0AE0 end:0x803E0CA0 + .sbss start:0x803E7CE8 end:0x803E7CF0 + .sdata2 start:0x803E97B0 end:0x803E9858 + +plugPikiKando/pikiState.cpp: + .text start:0x800CF09C end:0x800D8848 + .rodata start:0x80222438 end:0x802224E0 + .data start:0x802B8C20 end:0x802BA280 + .sdata start:0x803E0CA0 end:0x803E10F0 + .sdata2 start:0x803E9858 end:0x803E9928 + +plugPikiKando/viewPiki.cpp: + .text start:0x800D8848 end:0x800DABDC + .rodata start:0x802224E0 end:0x802224F8 + .data start:0x802BA280 end:0x802BA500 + .bss start:0x803D1DA8 end:0x803D1DB8 + .sdata start:0x803E10F0 end:0x803E11F0 + .sdata2 start:0x803E9928 end:0x803E99B0 + +plugPikiKando/conditions.cpp: + .text start:0x800DABDC end:0x800DAC68 + .data start:0x802BA500 end:0x802BA580 + .sdata start:0x803E11F0 end:0x803E1210 + +plugPikiKando/generator.cpp: + .text start:0x800DAC68 end:0x800DED1C + .data start:0x802BA580 end:0x802BAB58 + .sdata start:0x803E1210 end:0x803E1368 + .sbss start:0x803E7CF0 end:0x803E7D18 + .sdata2 start:0x803E99B0 end:0x803E99E0 + +plugPikiKando/generatorCache.cpp: + .text start:0x800DED1C end:0x800E01DC + .data start:0x802BAB58 end:0x802BACF8 + .sdata start:0x803E1368 end:0x803E13A8 + .sbss start:0x803E7D18 end:0x803E7D20 + .sdata2 start:0x803E99E0 end:0x803E99F0 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E01DC end:0x800E2F68 + .data start:0x802BACF8 end:0x802BB058 + .sdata start:0x803E13A8 end:0x803E1400 + .sdata2 start:0x803E99F0 end:0x803E9A10 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E2F68 end:0x800E42EC + .data start:0x802BB058 end:0x802BB0D0 + .sdata start:0x803E1400 end:0x803E1410 + .sdata2 start:0x803E9A10 end:0x803E9A20 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E42EC end:0x800E4344 + .data start:0x802BB0D0 end:0x802BB110 + .sdata start:0x803E1410 end:0x803E1418 + +plugPikiKando/itemGem.cpp: + .text start:0x800E4344 end:0x800E4630 + .data start:0x802BB110 end:0x802BB1A0 + .sdata2 start:0x803E9A20 end:0x803E9A50 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E4630 end:0x800E5D8C + .data start:0x802BB1A0 end:0x802BB8C8 + .sdata start:0x803E1418 end:0x803E14C8 + .sdata2 start:0x803E9A50 end:0x803E9AB8 + +plugPikiKando/kusaItem.cpp: + .text start:0x800E5D8C end:0x800E661C + .data start:0x802BB8C8 end:0x802BBCD0 + .sdata start:0x803E14C8 end:0x803E1540 + .sdata2 start:0x803E9AB8 end:0x803E9AD0 + +plugPikiKando/fishItem.cpp: + .text start:0x800E661C end:0x800E6FCC + .data start:0x802BBCD0 end:0x802BBF40 + .sdata start:0x803E1540 end:0x803E15D8 + .sdata2 start:0x803E9AD0 end:0x803E9B00 + +plugPikiKando/ufoItem.cpp: + .text start:0x800E6FCC end:0x800E9760 + .rodata start:0x802224F8 end:0x802225A0 + .data start:0x802BBF40 end:0x802BC408 + .sdata start:0x803E15D8 end:0x803E1720 + .sdata2 start:0x803E9B00 end:0x803E9B50 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800E9760 end:0x800EA144 + .data start:0x802BC408 end:0x802BC538 + .sdata start:0x803E1720 end:0x803E1788 + .sdata2 start:0x803E9B50 end:0x803E9B68 + +plugPikiKando/bombItem.cpp: + .text start:0x800EA144 end:0x800EA6C8 + .data start:0x802BC538 end:0x802BC7B8 + .sdata start:0x803E1788 end:0x803E17D0 + .sdata2 start:0x803E9B68 end:0x803E9B78 + +plugPikiKando/goalItem.cpp: + .text start:0x800EA6C8 end:0x800EC47C + .rodata start:0x802225A0 end:0x802225C8 + .data start:0x802BC7B8 end:0x802BCC70 + .sdata start:0x803E17D0 end:0x803E1880 + .sbss start:0x803E7D20 end:0x803E7D28 + .sdata2 start:0x803E9B78 end:0x803E9BD8 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800EC47C end:0x800ED1B8 + .data start:0x802BCC70 end:0x802BD000 + .sdata start:0x803E1880 end:0x803E1908 + .sdata2 start:0x803E9BD8 end:0x803E9C18 + +plugPikiKando/keyItem.cpp: + .text start:0x800ED1B8 end:0x800ED990 + .data start:0x802BD000 end:0x802BD398 + .sdata start:0x803E1908 end:0x803E1968 + .sdata2 start:0x803E9C18 end:0x803E9C68 + +plugPikiKando/ropeItem.cpp: + .text start:0x800ED990 end:0x800EDD84 + .data start:0x802BD398 end:0x802BD560 + .sdata start:0x803E1968 end:0x803E1990 + .sdata2 start:0x803E9C68 end:0x803E9C78 + +plugPikiKando/seedItem.cpp: + .text start:0x800EDD84 end:0x800EE2D4 + .data start:0x802BD560 end:0x802BD6F8 + .sdata start:0x803E1990 end:0x803E19B8 + .sdata2 start:0x803E9C78 end:0x803E9CD0 + +plugPikiKando/genItem.cpp: + .text start:0x800EE2D4 end:0x800EEC9C + .data start:0x802BD6F8 end:0x802BD860 + .sdata start:0x803E19B8 end:0x803E1A00 + .sdata2 start:0x803E9CD0 end:0x803E9CE8 + +plugPikiKando/itemAI.cpp: + .text start:0x800EEC9C end:0x800F292C + .rodata start:0x802225C8 end:0x802225E0 + .data start:0x802BD860 end:0x802BE458 + .sdata start:0x803E1A00 end:0x803E1C48 + .sdata2 start:0x803E9CE8 end:0x803E9D48 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F292C end:0x800F790C + .data start:0x802BE458 end:0x802BF120 + .sdata start:0x803E1C48 end:0x803E1DE0 + .sbss start:0x803E7D28 end:0x803E7D30 + .sdata2 start:0x803E9D48 end:0x803E9D90 + +plugPikiKando/itemObject.cpp: + .text start:0x800F790C end:0x800F7C64 + .data start:0x802BF120 end:0x802BFBC8 + .sdata start:0x803E1DE0 end:0x803E1E48 + +plugPikiKando/mizuItem.cpp: + .text start:0x800F7C64 end:0x800F7E40 + .data start:0x802BFBC8 end:0x802BFE40 + .sdata start:0x803E1E48 end:0x803E1E80 + .sdata2 start:0x803E9D90 end:0x803E9D98 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800F7E40 end:0x800F80E4 + .data start:0x802BFE40 end:0x802BFF18 + .sdata start:0x803E1E80 end:0x803E1ED8 + +plugPikiKando/genNavi.cpp: + .text start:0x800F80E4 end:0x800F829C + .data start:0x802BFF18 end:0x802BFFF8 + .sdata start:0x803E1ED8 end:0x803E1F00 + +plugPikiKando/navi.cpp: + .text start:0x800F829C end:0x801010F4 + .data start:0x802BFFF8 end:0x802C05E0 + .sdata start:0x803E1F00 end:0x803E2200 + .sbss start:0x803E7D30 end:0x803E7D40 + .sdata2 start:0x803E9D98 end:0x803E9ED8 + +plugPikiKando/naviState.cpp: + .text start:0x801010F4 end:0x8010B094 + .rodata start:0x802225E0 end:0x80222600 + .data start:0x802C05E0 end:0x802C1A08 + .sdata start:0x803E2200 end:0x803E25F8 + .sdata2 start:0x803E9ED8 end:0x803E9FB8 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010B094 end:0x8010CE20 + .data start:0x802C1A08 end:0x802C20E8 + .sdata start:0x803E25F8 end:0x803E26A8 + .sdata2 start:0x803E9FB8 end:0x803EA010 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x8010CE20 end:0x80111DC8 + .data start:0x802C20E8 end:0x802C2458 + .sdata start:0x803E26A8 end:0x803E27B8 + .sbss start:0x803E7D40 end:0x803E7D70 + .sdata2 start:0x803EA010 end:0x803EA038 + +plugPikiKando/gmWin.cpp: + .text start:0x80111DC8 end:0x8011246C + .sbss start:0x803E7D70 end:0x803E7D78 + +plugPikiKando/gameStat.cpp: + .text start:0x8011246C end:0x80112678 + .ctors start:0x80221EF0 end:0x80221EF4 + .bss start:0x803D1DB8 end:0x803D1E40 + .sbss start:0x803E7D78 end:0x803E7D90 + +plugPikiKando/kmath.cpp: + .text start:0x80112678 end:0x801130BC + .sdata start:0x803E27B8 end:0x803E27C0 + .sdata2 start:0x803EA038 end:0x803EA090 + +plugPikiKando/uteffect.cpp: + .text start:0x801130BC end:0x80115AE4 + .data start:0x802C2458 end:0x802C2CE0 + .sdata start:0x803E27C0 end:0x803E28D8 + .sbss start:0x803E7D90 end:0x803E7D98 + .sdata2 start:0x803EA090 end:0x803EA0C0 + +plugPikiKando/kontroller.cpp: + .text start:0x80115AE4 end:0x80115FD8 + .data start:0x802C2CE0 end:0x802C2DD0 + .sdata start:0x803E28D8 end:0x803E2910 + .sbss start:0x803E7D98 end:0x803E7DA0 + +plugPikiKando/mapcode.cpp: + .text start:0x80115FD8 end:0x80116068 + .sdata2 start:0x803EA0C0 end:0x803EA0C8 + +plugPikiKando/utkando.cpp: + .text start:0x80116068 end:0x8011711C + .sdata start:0x803E2910 end:0x803E2930 + .sdata2 start:0x803EA0C8 end:0x803EA0E8 + +plugPikiKando/naviMgr.cpp: + .text start:0x8011711C end:0x801177B4 + .data start:0x802C2DD0 end:0x802C2FC0 + .sdata start:0x803E2930 end:0x803E2988 + .sbss start:0x803E7DA0 end:0x803E7DA8 + +plugPikiKando/genMapParts.cpp: + .text start:0x801177B4 end:0x80118400 + .data start:0x802C2FC0 end:0x802C3138 + .sdata start:0x803E2988 end:0x803E2A60 + .sbss start:0x803E7DA8 end:0x803E7DB0 + .sdata2 start:0x803EA0E8 end:0x803EA0F8 + +plugPikiKando/mapParts.cpp: + .text start:0x80118400 end:0x80118C5C + .data start:0x802C3138 end:0x802C3448 + .sdata start:0x803E2A60 end:0x803E2AE8 + .sdata2 start:0x803EA0F8 end:0x803EA108 + +plugPikiKando/panipikianimator.cpp: + .text start:0x80118C5C end:0x80119968 + .data start:0x802C3448 end:0x802C3720 + .sdata start:0x803E2AE8 end:0x803E2D30 + +plugPikiKando/actor.cpp: + .text start:0x80119968 end:0x80119A0C + +plugPikiKando/actorMgr.cpp: + .text start:0x80119A0C end:0x80119A88 + .sbss start:0x803E7DB0 end:0x803E7DB8 + +plugPikiKando/genActor.cpp: + .text start:0x80119A88 end:0x80119C3C + .data start:0x802C3720 end:0x802C3808 + .sdata start:0x803E2D30 end:0x803E2D58 + +plugPikiKando/pikiInfo.cpp: + .text start:0x80119C3C end:0x80119C94 + .sbss start:0x803E7DB8 end:0x803E7DC0 + +plugPikiKando/plantMgr.cpp: + .text start:0x80119C94 end:0x8011B0A0 + .data start:0x802C3808 end:0x802C3F30 + .sdata start:0x803E2D58 end:0x803E2EC0 + .sbss start:0x803E7DC0 end:0x803E7DC8 + .sdata2 start:0x803EA108 end:0x803EA140 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x8011B0A0 end:0x8011B224 + .data start:0x802C3F30 end:0x802C3FE8 + .sdata start:0x803E2EC0 end:0x803E2EF8 + +plugPikiNakata/genteki.cpp: + .text start:0x8011B224 end:0x8011B604 + .data start:0x802C3FE8 end:0x802C40B8 + .sdata start:0x803E2EF8 end:0x803E2F20 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8011B604 end:0x8011B63C + .sbss start:0x803E7DC8 end:0x803E7DD0 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x8011B63C end:0x8011BBD8 + .data start:0x802C40B8 end:0x802C41C8 + .sdata start:0x803E2F20 end:0x803E2F48 + .sdata2 start:0x803EA140 end:0x803EA150 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x8011BBD8 end:0x8011D354 + .data start:0x802C41C8 end:0x802C42B8 + .sdata start:0x803E2F48 end:0x803E2F98 + .sdata2 start:0x803EA150 end:0x803EA178 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x8011D354 end:0x8011D8B4 + .data start:0x802C42B8 end:0x802C42D8 + .sdata start:0x803E2F98 end:0x803E2FB8 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x8011D8B4 end:0x8011DAA0 + .sdata start:0x803E2FB8 end:0x803E2FD0 + .sdata2 start:0x803EA178 end:0x803EA180 + +plugPikiNakata/nlibmath.cpp: + .text start:0x8011DAA0 end:0x8011DDB8 + .data start:0x802C42D8 end:0x802C4AF8 + .sdata start:0x803E2FD0 end:0x803E2FE0 + .sdata2 start:0x803EA180 end:0x803EA1A0 + +plugPikiNakata/nlibspline.cpp: + .text start:0x8011DDB8 end:0x8011E050 + +plugPikiNakata/nlibsystem.cpp: + .text start:0x8011E050 end:0x8011EEB0 + .data start:0x802C4AF8 end:0x802C4BE8 + .sdata start:0x803E2FE0 end:0x803E3010 + .sbss start:0x803E7DD0 end:0x803E7DD8 + .sdata2 start:0x803EA1A0 end:0x803EA1B0 + +plugPikiNakata/panianimator.cpp: + .text start:0x8011EEB0 end:0x8011F7F8 + .data start:0x802C4BE8 end:0x802C4CB0 + .sdata start:0x803E3010 end:0x803E3020 + .sdata2 start:0x803EA1B0 end:0x803EA1C0 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x8011F7F8 end:0x8011FBAC + .sbss start:0x803E7DD8 end:0x803E7DE0 + .sdata2 start:0x803EA1C0 end:0x803EA1C8 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x8011FBAC end:0x8011FE50 + .data start:0x802C4CB0 end:0x802C4DA8 + .sdata start:0x803E3020 end:0x803E30A0 + +plugPikiNakata/panitestsection.cpp: + .text start:0x8011FE50 end:0x801214FC + .data start:0x802C4DA8 end:0x802C4FD8 + .sdata start:0x803E30A0 end:0x803E3168 + .sdata2 start:0x803EA1C8 end:0x803EA1F8 + +plugPikiNakata/paraparameters.cpp: + .text start:0x801214FC end:0x80121B10 + .data start:0x802C4FD8 end:0x802C50D8 + .sdata start:0x803E3168 end:0x803E3190 + .sdata2 start:0x803EA1F8 end:0x803EA200 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x80121B10 end:0x80123BAC + .data start:0x802C50D8 end:0x802C51A8 + .sdata start:0x803E3190 end:0x803E31B8 + .sdata2 start:0x803EA200 end:0x803EA240 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x80123BAC end:0x80124100 + .data start:0x802C51A8 end:0x802C5280 + .sdata start:0x803E31B8 end:0x803E31E8 + .sdata2 start:0x803EA240 end:0x803EA260 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x80124100 end:0x8012491C + .data start:0x802C5280 end:0x802C5538 + .sdata start:0x803E31E8 end:0x803E3238 + .sdata2 start:0x803EA260 end:0x803EA290 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x8012491C end:0x80125498 + .data start:0x802C5538 end:0x802C5AE0 + .sdata start:0x803E3238 end:0x803E3270 + .sdata2 start:0x803EA290 end:0x803EA328 + +plugPikiNakata/peve.cpp: + .text start:0x80125498 end:0x80125BC0 + .data start:0x802C5AE0 end:0x802C5D98 + .sdata start:0x803E3270 end:0x803E32E0 + .sdata2 start:0x803EA328 end:0x803EA340 + +plugPikiNakata/peveconditions.cpp: + .text start:0x80125BC0 end:0x80125E5C + .data start:0x802C5D98 end:0x802C5EF8 + .sdata start:0x803E32E0 end:0x803E3310 + .sdata2 start:0x803EA340 end:0x803EA348 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x80125E5C end:0x80126D5C + .data start:0x802C5EF8 end:0x802C64C8 + .sdata start:0x803E3310 end:0x803E3398 + .sdata2 start:0x803EA348 end:0x803EA350 + +plugPikiNakata/tai.cpp: + .text start:0x80126D5C end:0x8012755C + .data start:0x802C64C8 end:0x802C65A0 + .sdata start:0x803E3398 end:0x803E33C0 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x8012755C end:0x80128300 + .data start:0x802C65A0 end:0x802C6920 + .sdata start:0x803E33C0 end:0x803E3438 + .sdata2 start:0x803EA350 end:0x803EA360 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x80128300 end:0x80128478 + .data start:0x802C6920 end:0x802C6AD0 + .sdata start:0x803E3438 end:0x803E3470 + +plugPikiNakata/taichappy.cpp: + .text start:0x80128478 end:0x8012AA18 + .data start:0x802C6AD0 end:0x802C6FC0 + .sdata start:0x803E3470 end:0x803E3530 + .sdata2 start:0x803EA360 end:0x803EA3E0 + +plugPikiNakata/taicollec.cpp: + .text start:0x8012AA18 end:0x8012E3E4 + .data start:0x802C6FC0 end:0x802C7BB0 + .sdata start:0x803E3530 end:0x803E36D8 + .sdata2 start:0x803EA3E0 end:0x803EA450 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x8012E3E4 end:0x8012E500 + .data start:0x802C7BB0 end:0x802C7DC8 + .sdata start:0x803E36D8 end:0x803E3718 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x8012E500 end:0x8012E620 + .data start:0x802C7DC8 end:0x802C7F58 + .sdata start:0x803E3718 end:0x803E3748 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x8012E620 end:0x8012F424 + .data start:0x802C7F58 end:0x802C8260 + .sdata start:0x803E3748 end:0x803E3800 + .sdata2 start:0x803EA450 end:0x803EA488 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x8012F424 end:0x8012FAF0 + .data start:0x802C8260 end:0x802C85A8 + .sdata start:0x803E3800 end:0x803E3868 + .sdata2 start:0x803EA488 end:0x803EA490 + +plugPikiNakata/taikinoko.cpp: + .text start:0x8012FAF0 end:0x80131E50 + .data start:0x802C85A8 end:0x802C8B00 + .sdata start:0x803E3868 end:0x803E3930 + .sdata2 start:0x803EA490 end:0x803EA528 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x80131E50 end:0x80131EBC + .data start:0x802C8B00 end:0x802C8BB8 + .sdata start:0x803E3930 end:0x803E3948 + +plugPikiNakata/taimizinko.cpp: + .text start:0x80131EBC end:0x80133F70 + .data start:0x802C8BB8 end:0x802C91F0 + .sdata start:0x803E3948 end:0x803E3A48 + .sdata2 start:0x803EA528 end:0x803EA580 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80133F70 end:0x801344B8 + .data start:0x802C91F0 end:0x802C9510 + .sdata start:0x803E3A48 end:0x803E3AC0 + .sdata2 start:0x803EA580 end:0x803EA590 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x801344B8 end:0x80135B78 + .data start:0x802C9510 end:0x802C9E80 + .sdata start:0x803E3AC0 end:0x803E3BF8 + .sdata2 start:0x803EA590 end:0x803EA5A8 + +plugPikiNakata/tainapkid.cpp: + .text start:0x80135B78 end:0x8013A458 + .data start:0x802C9E80 end:0x802CA968 + .sdata start:0x803E3BF8 end:0x803E3D58 + .sdata2 start:0x803EA5A8 end:0x803EA660 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x8013A458 end:0x8013DA0C + .data start:0x802CA968 end:0x802CB0F8 + .sdata start:0x803E3D58 end:0x803E3E70 + .sdata2 start:0x803EA660 end:0x803EA718 + +plugPikiNakata/taipalm.cpp: + .text start:0x8013DA0C end:0x8013EB30 + .data start:0x802CB0F8 end:0x802CB628 + .sdata start:0x803E3E70 end:0x803E3F48 + .sdata2 start:0x803EA718 end:0x803EA760 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x8013EB30 end:0x8013F25C + .data start:0x802CB628 end:0x802CBCA8 + .sdata start:0x803E3F48 end:0x803E4020 + .sdata2 start:0x803EA760 end:0x803EA770 + +plugPikiNakata/taiswallow.cpp: + .text start:0x8013F25C end:0x80141F28 + .data start:0x802CBCA8 end:0x802CC348 + .sdata start:0x803E4020 end:0x803E4100 + .sdata2 start:0x803EA770 end:0x803EA800 + +plugPikiNakata/taishell.cpp: + .text start:0x80141F28 end:0x80143628 + .data start:0x802CC348 end:0x802CC878 + .sdata start:0x803E4100 end:0x803E41B8 + .sdata2 start:0x803EA800 end:0x803EA848 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x80143628 end:0x801439F4 + .data start:0x802CC878 end:0x802CC9A8 + .sdata start:0x803E41B8 end:0x803E41E0 + .sdata2 start:0x803EA848 end:0x803EA868 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x801439F4 end:0x80143B48 + .data start:0x802CC9A8 end:0x802CCA40 + .sdata start:0x803E41E0 end:0x803E41F8 + .sdata2 start:0x803EA868 end:0x803EA888 + +plugPikiNakata/teki.cpp: + .text start:0x80143B48 end:0x80143DA0 + .data start:0x802CCA40 end:0x802CCD98 + .sdata start:0x803E41F8 end:0x803E4260 + .sdata2 start:0x803EA888 end:0x803EA890 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80143DA0 end:0x80143EB4 + .data start:0x802CCD98 end:0x802CCE78 + .sdata start:0x803E4260 end:0x803E4290 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80143EB4 end:0x80149B18 + .data start:0x802CCE78 end:0x802CD2D0 + .sdata start:0x803E4290 end:0x803E43D8 + .sdata2 start:0x803EA890 end:0x803EA8D8 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x80149B18 end:0x8014A2F0 + .data start:0x802CD2D0 end:0x802CD888 + .sdata start:0x803E43D8 end:0x803E4498 + .sdata2 start:0x803EA8D8 end:0x803EA8E0 + +plugPikiNakata/tekievent.cpp: + .text start:0x8014A2F0 end:0x8014A364 + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x8014A364 end:0x8014A4E4 + .data start:0x802CD888 end:0x802CD978 + .sdata start:0x803E4498 end:0x803E44B0 + +plugPikiNakata/tekimgr.cpp: + .text start:0x8014A4E4 end:0x8014B07C + .data start:0x802CD978 end:0x802CDC80 + .sdata start:0x803E44B0 end:0x803E4610 + .sbss start:0x803E7DE0 end:0x803E7DE8 + +plugPikiNakata/tekinakata.cpp: + .text start:0x8014B07C end:0x8014B950 + +plugPikiNakata/tekinteki.cpp: + .text start:0x8014B950 end:0x8014BCA0 + .data start:0x802CDC80 end:0x802CDF68 + .sdata start:0x803E4610 end:0x803E4658 + .sdata2 start:0x803EA8E0 end:0x803EA8E8 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x8014BCA0 end:0x8014C9B8 + .data start:0x802CDF68 end:0x802CE518 + .sdata start:0x803E4658 end:0x803E46A8 + .sdata2 start:0x803EA8E8 end:0x803EA928 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x8014C9B8 end:0x8014D0FC + .data start:0x802CE518 end:0x802CE610 + .sdata start:0x803E46A8 end:0x803E46D0 + .sdata2 start:0x803EA928 end:0x803EA940 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x8014D0FC end:0x8014D228 + .data start:0x802CE610 end:0x802CE670 + .sdata start:0x803E46D0 end:0x803E46D8 + +plugPikiNishimura/genBoss.cpp: + .text start:0x8014D228 end:0x8014D824 + .data start:0x802CE670 end:0x802CE740 + .sdata start:0x803E46D8 end:0x803E4700 + +plugPikiNishimura/Boss.cpp: + .text start:0x8014D824 end:0x8014F9C0 + .data start:0x802CE740 end:0x802CE9E0 + .sdata start:0x803E4700 end:0x803E47E0 + .sdata2 start:0x803EA940 end:0x803EA9A0 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x8014F9C0 end:0x8014FA54 + .data start:0x802CE9E0 end:0x802CEAA8 + .sdata start:0x803E47E0 end:0x803E4810 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x8014FA54 end:0x8014FCE0 + .data start:0x802CEAA8 end:0x802CEB90 + .sdata start:0x803E4810 end:0x803E4840 + .sdata2 start:0x803EA9A0 end:0x803EA9B8 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x8014FCE0 end:0x801525DC + .data start:0x802CEB90 end:0x802CF0B8 + .sdata start:0x803E4840 end:0x803E48E0 + .sbss start:0x803E7DE8 end:0x803E7DF0 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x801525DC end:0x801526EC + .data start:0x802CF0B8 end:0x802CF0D0 + .sdata2 start:0x803EA9B8 end:0x803EA9C0 + +plugPikiNishimura/Spider.cpp: + .text start:0x801526EC end:0x80153798 + .data start:0x802CF0D0 end:0x802CF3F8 + .sdata start:0x803E48E0 end:0x803E4A40 + .sdata2 start:0x803EA9C0 end:0x803EAA60 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80153798 end:0x80155960 + .data start:0x802CF3F8 end:0x802CF488 + .sdata start:0x803E4A40 end:0x803E4A50 + .sdata2 start:0x803EAA60 end:0x803EAAB0 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x80155960 end:0x8015A21C + .rodata start:0x80222600 end:0x80222650 + .data start:0x802CF488 end:0x802CF600 + .sdata start:0x803E4A50 end:0x803E4AC8 + .sbss start:0x803E7DF0 end:0x803E7DF8 + .sdata2 start:0x803EAAB0 end:0x803EAB38 + +plugPikiNishimura/Snake.cpp: + .text start:0x8015A21C end:0x8015B148 + .data start:0x802CF600 end:0x802CF910 + .sdata start:0x803E4AC8 end:0x803E4C08 + .sdata2 start:0x803EAB38 end:0x803EABB0 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x8015B148 end:0x8015FC00 + .rodata start:0x80222650 end:0x80222668 + .data start:0x802CF910 end:0x802CF9D8 + .sdata start:0x803E4C08 end:0x803E4C38 + .sdata2 start:0x803EABB0 end:0x803EABF0 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x8015FC00 end:0x8016366C + .rodata start:0x80222668 end:0x802226A8 + .data start:0x802CF9D8 end:0x802CFA98 + .sdata start:0x803E4C38 end:0x803E4C90 + .sdata2 start:0x803EABF0 end:0x803EAC28 + +plugPikiNishimura/Slime.cpp: + .text start:0x8016366C end:0x80164AD8 + .data start:0x802CFA98 end:0x802CFE50 + .sdata start:0x803E4C90 end:0x803E4DA8 + .sdata2 start:0x803EAC28 end:0x803EAC98 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x80164AD8 end:0x8016A588 + .data start:0x802CFE50 end:0x802CFE78 + .sdata start:0x803E4DA8 end:0x803E4DF8 + .sdata2 start:0x803EAC98 end:0x803EAD18 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x8016A588 end:0x8016B1D0 + .sdata start:0x803E4DF8 end:0x803E4E18 + .sdata2 start:0x803EAD18 end:0x803EAD38 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x8016B1D0 end:0x8016B3FC + .data start:0x802CFE78 end:0x802D0008 + .sdata start:0x803E4E18 end:0x803E4E38 + .sdata2 start:0x803EAD38 end:0x803EAD48 + +plugPikiNishimura/King.cpp: + .text start:0x8016B3FC end:0x8016C208 + .data start:0x802D0008 end:0x802D0330 + .sdata start:0x803E4E38 end:0x803E4F70 + .sdata2 start:0x803EAD48 end:0x803EADB0 + +plugPikiNishimura/KingAi.cpp: + .text start:0x8016C208 end:0x80172CDC + .data start:0x802D0330 end:0x802D0490 + .sdata start:0x803E4F70 end:0x803E4F98 + .sdata2 start:0x803EADB0 end:0x803EAE18 + +plugPikiNishimura/KingBody.cpp: + .text start:0x80172CDC end:0x80175988 + .data start:0x802D0490 end:0x802D0670 + .sdata start:0x803E4F98 end:0x803E50C8 + .sdata2 start:0x803EAE18 end:0x803EAE60 + +plugPikiNishimura/Kogane.cpp: + .text start:0x80175988 end:0x8017605C + .data start:0x802D0670 end:0x802D0900 + .sdata start:0x803E50C8 end:0x803E5178 + .sdata2 start:0x803EAE60 end:0x803EAEA0 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x8017605C end:0x80177D38 + .rodata start:0x802226A8 end:0x802226B8 + .data start:0x802D0900 end:0x802D09D8 + .sdata start:0x803E5178 end:0x803E5228 + .sdata2 start:0x803EAEA0 end:0x803EAEF0 + +plugPikiNishimura/Pom.cpp: + .text start:0x80177D38 end:0x801784B0 + .data start:0x802D09D8 end:0x802D0C78 + .sdata start:0x803E5228 end:0x803E52D0 + .sdata2 start:0x803EAEF0 end:0x803EAF28 + +plugPikiNishimura/PomAi.cpp: + .text start:0x801784B0 end:0x80179D60 + .data start:0x802D0C78 end:0x802D0D78 + .sdata start:0x803E52D0 end:0x803E5300 + .sdata2 start:0x803EAF28 end:0x803EAF78 + +plugPikiNishimura/KingBack.cpp: + .text start:0x80179D60 end:0x8017A104 + .data start:0x802D0D78 end:0x802D0FE0 + .sdata start:0x803E5300 end:0x803E5360 + .sdata2 start:0x803EAF78 end:0x803EAF88 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x8017A104 end:0x8017A49C + .data start:0x802D0FE0 end:0x802D1238 + .sdata start:0x803E5360 end:0x803E53D8 + .sdata2 start:0x803EAF88 end:0x803EAFA0 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x8017A49C end:0x8017A8AC + .data start:0x802D1238 end:0x802D1290 + .sdata start:0x803E53D8 end:0x803E53E8 + .sdata2 start:0x803EAFA0 end:0x803EAFA8 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x8017A8AC end:0x8017AC9C + .data start:0x802D1290 end:0x802D14F8 + .sdata start:0x803E53E8 end:0x803E5458 + .sdata2 start:0x803EAFA8 end:0x803EAFC0 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x8017AC9C end:0x8017B32C + .data start:0x802D14F8 end:0x802D1558 + .sdata start:0x803E5458 end:0x803E5470 + .sdata2 start:0x803EAFC0 end:0x803EAFC8 + +plugPikiNishimura/Mizu.cpp: + .text start:0x8017B32C end:0x8017B7B0 + .data start:0x802D1558 end:0x802D17B0 + .sdata start:0x803E5470 end:0x803E54D8 + .sdata2 start:0x803EAFC8 end:0x803EAFE0 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x8017B7B0 end:0x8017C220 + .data start:0x802D17B0 end:0x802D1898 + .sdata start:0x803E54D8 end:0x803E5510 + .sdata2 start:0x803EAFE0 end:0x803EAFF8 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802D1898 end:0x802D23C8 + .sdata start:0x803E5510 end:0x803E5560 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x8017C220 end:0x8017C7C0 + .sdata2 start:0x803EAFF8 end:0x803EB020 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x8017C7C0 end:0x8017D5D8 + .sbss start:0x803E7DF8 end:0x803E7E00 + .sdata2 start:0x803EB020 end:0x803EB030 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x8017D5D8 end:0x8017D69C + .sdata2 start:0x803EB030 end:0x803EB038 + +plugPikiOgawa/ogTest.cpp: + .text start:0x8017D69C end:0x8017E7A8 + .data start:0x802D23C8 end:0x802D26B0 + .sdata start:0x803E5560 end:0x803E55D8 + .sdata2 start:0x803EB038 end:0x803EB058 + +plugPikiOgawa/ogSub.cpp: + .text start:0x8017E7A8 end:0x80180FE8 + .data start:0x802D26B0 end:0x802D2F70 + .bss start:0x803D1E40 end:0x803D2240 + .sdata start:0x803E55D8 end:0x803E5688 + .sdata2 start:0x803EB058 end:0x803EB098 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x80180FE8 end:0x80182270 + .data start:0x802D2F70 end:0x802D3020 + .sdata start:0x803E5688 end:0x803E5690 + .sdata2 start:0x803EB098 end:0x803EB0A8 + +plugPikiOgawa/ogPause.cpp: + .text start:0x80182270 end:0x80182AEC + .data start:0x802D3020 end:0x802D3088 + .sdata2 start:0x803EB0A8 end:0x803EB0C0 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x80182AEC end:0x80182D38 + .data start:0x802D3088 end:0x802D30A0 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802D30A0 end:0x802D3FB8 + .sdata start:0x803E5690 end:0x803E5950 + +plugPikiOgawa/ogMap.cpp: + .text start:0x80182D38 end:0x80183360 + .data start:0x802D3FB8 end:0x802D3FE8 + .sdata2 start:0x803EB0C0 end:0x803EB0E0 + +plugPikiOgawa/ogResult.cpp: + .text start:0x80183360 end:0x80184FF8 + .data start:0x802D3FE8 end:0x802D5018 + .sdata start:0x803E5950 end:0x803E5958 + .sdata2 start:0x803EB0E0 end:0x803EB110 + +plugPikiOgawa/ogRader.cpp: + .text start:0x80184FF8 end:0x801876E8 + .data start:0x802D5018 end:0x802D50E8 + .sdata2 start:0x803EB110 end:0x803EB1A0 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x801876E8 end:0x8018BAA8 + .data start:0x802D50E8 end:0x802D5240 + .sdata start:0x803E5958 end:0x803E59A0 + .sdata2 start:0x803EB1A0 end:0x803EB1F8 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x8018BAA8 end:0x8018CFA4 + .data start:0x802D5240 end:0x802D5C28 + .sdata start:0x803E59A0 end:0x803E59F8 + .sdata2 start:0x803EB1F8 end:0x803EB240 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x8018CFA4 end:0x8018F14C + .data start:0x802D5C28 end:0x802D5D48 + .sdata start:0x803E59F8 end:0x803E5A08 + .sdata2 start:0x803EB240 end:0x803EB268 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x8018F14C end:0x801911EC + .data start:0x802D5D48 end:0x802D5DC8 + .bss start:0x803D2240 end:0x803D2268 + .sdata start:0x803E5A08 end:0x803E5A48 + .sdata2 start:0x803EB268 end:0x803EB2B8 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x801911EC end:0x801934EC + .data start:0x802D5DC8 end:0x802D5F70 + .sdata start:0x803E5A48 end:0x803E5A78 + .sdata2 start:0x803EB2B8 end:0x803EB328 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x801934EC end:0x801938F4 + .data start:0x802D5F70 end:0x802D5F88 + .sdata2 start:0x803EB328 end:0x803EB338 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x801938F4 end:0x8019415C + .data start:0x802D5F88 end:0x802D5FB8 + .sdata2 start:0x803EB338 end:0x803EB358 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x8019415C end:0x80195698 + .data start:0x802D5FB8 end:0x802D5FD0 + .sdata start:0x803E5A78 end:0x803E5A98 + .sdata2 start:0x803EB358 end:0x803EB378 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80195698 end:0x801967BC + .data start:0x802D5FD0 end:0x802D6080 + .sdata2 start:0x803EB378 end:0x803EB398 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x801967BC end:0x801970F4 + .sdata2 start:0x803EB398 end:0x803EB3B8 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x801970F4 end:0x80197A30 + .sdata start:0x803E5A98 end:0x803E5AB0 + .sdata2 start:0x803EB3B8 end:0x803EB3E8 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x80197A30 end:0x80197E80 + .sdata start:0x803E5AB0 end:0x803E5AC0 + .sdata2 start:0x803EB3E8 end:0x803EB420 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x80197E80 end:0x801988E0 + .data start:0x802D6080 end:0x802D6190 + .sdata2 start:0x803EB420 end:0x803EB430 + +plugPikiOgawa/ogStart.cpp: + .text start:0x801988E0 end:0x80198C84 + .data start:0x802D6190 end:0x802D61A8 + .sdata2 start:0x803EB430 end:0x803EB450 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x80198C84 end:0x8019936C + .data start:0x802D61A8 end:0x802D6280 + .sdata start:0x803E5AC0 end:0x803E5AE0 + .sdata2 start:0x803EB450 end:0x803EB468 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x8019936C end:0x8019B75C + .data start:0x802D6280 end:0x802D69B8 + .sdata start:0x803E5AE0 end:0x803E5C10 + .sdata2 start:0x803EB468 end:0x803EB498 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x8019B75C end:0x8019B7E0 + .data start:0x802D69B8 end:0x802D6AF0 + .sdata start:0x803E5C10 end:0x803E5C58 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x8019B7E0 end:0x8019B878 + .data start:0x802D6AF0 end:0x802D6C20 + .sdata start:0x803E5C58 end:0x803E5CA0 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019B878 end:0x8019BBB8 + .sdata start:0x803E5CA0 end:0x803E5CB8 + .sdata2 start:0x803EB498 end:0x803EB4B0 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x8019BBB8 end:0x8019CC64 + .data start:0x802D6C20 end:0x802DA580 + .sdata start:0x803E5CB8 end:0x803E5D60 + .sbss start:0x803E7E00 end:0x803E7E08 + .sdata2 start:0x803EB4B0 end:0x803EB4D0 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x8019CC64 end:0x801A0E7C + .data start:0x802DA580 end:0x802DA678 + .sdata start:0x803E5D60 end:0x803E5D80 + .sdata2 start:0x803EB4D0 end:0x803EB520 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x801A0E7C end:0x801A1058 + .data start:0x802DA678 end:0x802DA6E8 + .sdata start:0x803E5D80 end:0x803E5D90 + +plugPikiYamashita/solidField.cpp: + .data start:0x802DA6E8 end:0x802DD700 + +plugPikiYamashita/particleManager.cpp: + .text start:0x801A1058 end:0x801A172C + .sdata start:0x803E5D90 end:0x803E5D98 + .sdata2 start:0x803EB520 end:0x803EB528 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x801A172C end:0x801A1D68 + .data start:0x802DD700 end:0x802DD7F8 + .sdata start:0x803E5D98 end:0x803E5DE8 + .sdata2 start:0x803EB528 end:0x803EB530 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A1D68 end:0x801A21C4 + .sdata2 start:0x803EB530 end:0x803EB548 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A21C4 end:0x801A26AC + .sdata2 start:0x803EB548 end:0x803EB570 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A26AC end:0x801A3050 + .data start:0x802DD7F8 end:0x802DDBD0 + .sdata start:0x803E5DE8 end:0x803E5E80 + .sdata2 start:0x803EB570 end:0x803EB598 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A3050 end:0x801A34EC + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A34EC end:0x801A3528 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A3528 end:0x801A56CC + .ctors start:0x80221EF4 end:0x80221EF8 + .data start:0x802DDBD0 end:0x802DE440 + .sdata start:0x803E5E80 end:0x803E5FD8 + .sbss start:0x803E7E08 end:0x803E7E10 + .sdata2 start:0x803EB598 end:0x803EB620 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801A56CC end:0x801A83E8 + .ctors start:0x80221EF8 end:0x80221EFC + .data start:0x802DE440 end:0x802DF090 + .sdata start:0x803E5FD8 end:0x803E6180 + .sbss start:0x803E7E10 end:0x803E7E20 + .sdata2 start:0x803EB620 end:0x803EB6C8 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801A83E8 end:0x801A8B84 + .data start:0x802DF090 end:0x802DF308 + .sdata start:0x803E6180 end:0x803E61E0 + .sdata2 start:0x803EB6C8 end:0x803EB6D8 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801A8B84 end:0x801ACBAC + .data start:0x802DF308 end:0x802DFB90 + .sdata start:0x803E61E0 end:0x803E6380 + .sdata2 start:0x803EB6D8 end:0x803EB750 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801ACBAC end:0x801ACFEC + .data start:0x802DFB90 end:0x802DFC80 + .sdata start:0x803E6380 end:0x803E63A0 + .sdata2 start:0x803EB750 end:0x803EB760 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801ACFEC end:0x801AE0F4 + .data start:0x802DFC80 end:0x802E0148 + .sdata start:0x803E63A0 end:0x803E6438 + .sdata2 start:0x803EB760 end:0x803EB770 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801AE0F4 end:0x801AF704 + .data start:0x802E0148 end:0x802E0510 + .sdata start:0x803E6438 end:0x803E64E0 + .sdata2 start:0x803EB770 end:0x803EB7A0 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801AF704 end:0x801AFC48 + .data start:0x802E0510 end:0x802E0558 + .sdata start:0x803E64E0 end:0x803E64E8 + .sdata2 start:0x803EB7A0 end:0x803EB7B0 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801AFC48 end:0x801B00E8 + .data start:0x802E0558 end:0x802E05A8 + .sdata start:0x803E64E8 end:0x803E64F8 + .sdata2 start:0x803EB7B0 end:0x803EB7C0 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801B00E8 end:0x801B05F4 + .data start:0x802E05A8 end:0x802E0620 + .sdata start:0x803E64F8 end:0x803E6550 + .sdata2 start:0x803EB7C0 end:0x803EB7E8 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801B05F4 end:0x801B181C + .data start:0x802E0620 end:0x802E0660 + .sdata start:0x803E6550 end:0x803E6588 + .sdata2 start:0x803EB7E8 end:0x803EB7F8 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B181C end:0x801B2AA8 + .data start:0x802E0660 end:0x802E06C8 + .sdata start:0x803E6588 end:0x803E65A0 + .sdata2 start:0x803EB7F8 end:0x803EB820 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B2AA8 end:0x801B31CC + .data start:0x802E06C8 end:0x802E0780 + .sdata start:0x803E65A0 end:0x803E65B8 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B31CC end:0x801B3320 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B3320 end:0x801B3580 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B3580 end:0x801B3748 + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B3748 end:0x801B4404 + .data start:0x802E0780 end:0x802E07E8 + .sdata start:0x803E65B8 end:0x803E65D0 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B4404 end:0x801B48FC + .data start:0x802E07E8 end:0x802E0850 + .sdata start:0x803E65D0 end:0x803E65E8 + .sdata2 start:0x803EB820 end:0x803EB828 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B48FC end:0x801B5BBC + .data start:0x802E0850 end:0x802E08B0 + .sdata2 start:0x803EB828 end:0x803EB850 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801B5BBC end:0x801B6290 + .data start:0x802E08B0 end:0x802E0910 + .sdata start:0x803E65E8 end:0x803E6600 + .sdata2 start:0x803EB850 end:0x803EB878 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801B6290 end:0x801BA094 + .data start:0x802E0910 end:0x802E1078 + .sdata start:0x803E6600 end:0x803E66A8 + .sbss start:0x803E7E20 end:0x803E7E28 + .sdata2 start:0x803EB878 end:0x803EB930 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801BA094 end:0x801BA558 + .sdata start:0x803E66A8 end:0x803E66B0 + .sdata2 start:0x803EB930 end:0x803EB968 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801BA558 end:0x801BF4CC + .data start:0x802E1078 end:0x802E13E8 + .bss start:0x803D2268 end:0x803D22C0 + .sdata start:0x803E66B0 end:0x803E6760 + .sbss start:0x803E7E28 end:0x803E7E30 + .sdata2 start:0x803EB968 end:0x803EB9E0 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801BF4CC end:0x801C0268 + .data start:0x802E13E8 end:0x802E14F0 + .bss start:0x803D22C0 end:0x803D2310 + .sdata start:0x803E6760 end:0x803E67A0 + .sdata2 start:0x803EB9E0 end:0x803EBA30 + +plugPikiYamashita/zenController.cpp: + .text start:0x801C0268 end:0x801C03F4 + .sbss start:0x803E7E30 end:0x803E7E38 + .sdata2 start:0x803EBA30 end:0x803EBA40 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801C03F4 end:0x801C0FF8 + .data start:0x802E14F0 end:0x802E1508 + .sdata start:0x803E67A0 end:0x803E67B0 + .sdata2 start:0x803EBA40 end:0x803EBA90 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801C0FF8 end:0x801C1098 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801C1098 end:0x801C26D4 + .data start:0x802E1508 end:0x802E1680 + .sdata start:0x803E67B0 end:0x803E67E8 + .sdata2 start:0x803EBA90 end:0x803EBAB0 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C26D4 end:0x801C48B8 + .data start:0x802E1680 end:0x802E16D8 + .sdata start:0x803E67E8 end:0x803E6830 + .sdata2 start:0x803EBAB0 end:0x803EBAF8 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C48B8 end:0x801C592C + .data start:0x802E16D8 end:0x802E17B0 + .sdata start:0x803E6830 end:0x803E6890 + .sdata2 start:0x803EBAF8 end:0x803EBB20 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801C592C end:0x801C9424 + .data start:0x802E17B0 end:0x802E1F58 + .sdata start:0x803E6890 end:0x803E69C8 + .sdata2 start:0x803EBB20 end:0x803EBBD8 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801C9424 end:0x801CA200 + .data start:0x802E1F58 end:0x802E2028 + .sdata start:0x803E69C8 end:0x803E6A08 + .sdata2 start:0x803EBBD8 end:0x803EBC38 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801CA200 end:0x801CBAC0 + .data start:0x802E2028 end:0x802E2670 + .sdata start:0x803E6A08 end:0x803E6AE0 + .sdata2 start:0x803EBC38 end:0x803EBC98 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801CBAC0 end:0x801CD678 + .data start:0x802E2670 end:0x802E2D60 + .sdata start:0x803E6AE0 end:0x803E6BA8 + .sdata2 start:0x803EBC98 end:0x803EBCF8 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801CD678 end:0x801CFD64 + .data start:0x802E2D60 end:0x802E3810 + .sdata start:0x803E6BA8 end:0x803E6CF0 + .sdata2 start:0x803EBCF8 end:0x803EBD78 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801CFD64 end:0x801D0F14 + .data start:0x802E3810 end:0x802E3CC0 + .sdata start:0x803E6CF0 end:0x803E6D88 + .sdata2 start:0x803EBD78 end:0x803EBDE0 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801D0F14 end:0x801D4758 + .data start:0x802E3CC0 end:0x802E4590 + .sdata start:0x803E6D88 end:0x803E6EC8 + .sdata2 start:0x803EBDE0 end:0x803EBE60 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801D4758 end:0x801D5DA8 + .ctors start:0x80221EFC end:0x80221F00 + .data start:0x802E4590 end:0x802E4AC0 + .sdata start:0x803E6EC8 end:0x803E6F70 + .sbss start:0x803E7E38 end:0x803E7E40 + .sdata2 start:0x803EBE60 end:0x803EBED8 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801D5DA8 end:0x801D61A4 + .data start:0x802E4AC0 end:0x802E4B28 + .sdata start:0x803E6F70 end:0x803E6F88 + .sdata2 start:0x803EBED8 end:0x803EBEE0 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801D61A4 end:0x801D9FE0 + .data start:0x802E4B28 end:0x802E56E8 + .sdata start:0x803E6F88 end:0x803E70E8 + .sdata2 start:0x803EBEE0 end:0x803EBF78 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801D9FE0 end:0x801DA1A8 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801DA1A8 end:0x801DA76C + .data start:0x802E56E8 end:0x802E5710 + .sdata2 start:0x803EBF78 end:0x803EBF88 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801DA76C end:0x801DB0A4 + .sdata start:0x803E70E8 end:0x803E70F0 + .sdata2 start:0x803EBF88 end:0x803EBFB8 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801DB0A4 end:0x801E7A08 + .data start:0x802E5710 end:0x802E5998 + .sdata start:0x803E70F0 end:0x803E7300 + .sbss start:0x803E7E40 end:0x803E7E48 + .sdata2 start:0x803EBFB8 end:0x803EC0A0 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801E7A08 end:0x801E8858 + .data start:0x802E5998 end:0x802E59B0 + .sdata start:0x803E7300 end:0x803E7308 + .sdata2 start:0x803EC0A0 end:0x803EC0E8 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801E8858 end:0x801E95AC + .data start:0x802E59B0 end:0x802E59E0 + .sdata start:0x803E7308 end:0x803E7310 + .sdata2 start:0x803EC0E8 end:0x803EC158 + +plugPikiYamashita/yai.cpp: + .text start:0x801E95AC end:0x801E9818 + .data start:0x802E59E0 end:0x802E5A30 + .sdata start:0x803E7310 end:0x803E7320 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801E9818 end:0x801E9C50 + .data start:0x802E5A30 end:0x802E6338 + .sdata start:0x803E7320 end:0x803E7338 + .sdata2 start:0x803EC158 end:0x803EC178 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801E9C50 end:0x801E9EF8 + .data start:0x802E6338 end:0x802E6350 + .sdata2 start:0x803EC178 end:0x803EC188 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801E9EF8 end:0x801EA9C8 + .data start:0x802E6350 end:0x802E66C0 + .sdata start:0x803E7338 end:0x803E73C8 + .sdata2 start:0x803EC188 end:0x803EC1E8 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801EA9C8 end:0x801EC3D0 + .data start:0x802E66C0 end:0x802E6BD8 + .sdata start:0x803E73C8 end:0x803E7468 + .sdata2 start:0x803EC1E8 end:0x803EC260 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801EC3D0 end:0x801ED3D8 + .data start:0x802E6BD8 end:0x802E6CF8 + .sdata start:0x803E7468 end:0x803E7518 + .sdata2 start:0x803EC260 end:0x803EC288 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801ED3D8 end:0x801ED804 + .data start:0x802E6CF8 end:0x802E6D20 + .sdata start:0x803E7518 end:0x803E7520 + .sdata2 start:0x803EC288 end:0x803EC2B8 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801ED804 end:0x801EE240 + .data start:0x802E6D20 end:0x802E6D78 + .sdata start:0x803E7520 end:0x803E7548 + .sdata2 start:0x803EC2B8 end:0x803EC2D8 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801EE240 end:0x801EEAC0 + .data start:0x802E6D78 end:0x802E6DE8 + .sdata start:0x803E7548 end:0x803E7550 + .sdata2 start:0x803EC2D8 end:0x803EC308 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801EEAC0 end:0x801F00A4 + .data start:0x802E6DE8 end:0x802E6FE8 + .sdata start:0x803E7550 end:0x803E75B0 + .sdata2 start:0x803EC308 end:0x803EC328 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801F00A4 end:0x801F09D8 + .data start:0x802E6FE8 end:0x802E7090 + .sdata start:0x803E75B0 end:0x803E75E8 + .sdata2 start:0x803EC328 end:0x803EC350 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801F09D8 end:0x801F144C + .data start:0x802E7090 end:0x802E70A8 + .sdata start:0x803E75E8 end:0x803E7618 + .sdata2 start:0x803EC350 end:0x803EC358 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801F144C end:0x801F1930 + .sdata2 start:0x803EC358 end:0x803EC378 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F1930 end:0x801F1CB8 + .sdata2 start:0x803EC378 end:0x803EC388 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F1CB8 end:0x801F237C + .data start:0x802E70A8 end:0x802E70C0 + .sdata start:0x803E7618 end:0x803E7628 + .sdata2 start:0x803EC388 end:0x803EC398 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F237C end:0x801F25B4 + .sdata start:0x803E7628 end:0x803E7630 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F25B4 end:0x801F34B8 + .data start:0x802E70C0 end:0x802E7140 + .sdata2 start:0x803EC398 end:0x803EC3D0 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F34B8 end:0x801F3990 + .data start:0x802E7140 end:0x802E7150 + .sdata2 start:0x803EC3D0 end:0x803EC3E8 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F3990 end:0x801F5458 + .data start:0x802E7150 end:0x802E71B8 + .sdata start:0x803E7630 end:0x803E7658 + .sdata2 start:0x803EC3E8 end:0x803EC418 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801F5458 end:0x801F589C + .data start:0x802E71B8 end:0x802E7208 + +base/PPCArch.c: + .text start:0x801F589C end:0x801F5900 + +os/OS.c: + .text start:0x801F5900 end:0x801F6018 + .data start:0x802E7208 end:0x802E73C8 + .sbss start:0x803E7E48 end:0x803E7E58 + +os/OSAlarm.c: + .text start:0x801F6018 end:0x801F6704 + .sbss start:0x803E7E58 end:0x803E7E60 + +os/OSAlloc.c: + .text start:0x801F6704 end:0x801F6870 + .sdata start:0x803E7658 end:0x803E7660 + .sbss start:0x803E7E60 end:0x803E7E70 + +os/OSArena.c: + .text start:0x801F6870 end:0x801F6890 + .sdata start:0x803E7660 end:0x803E7668 + .sbss start:0x803E7E70 end:0x803E7E78 + +os/OSAudioSystem.c: + .text start:0x801F6890 end:0x801F6AFC + .data start:0x802E73C8 end:0x802E7448 + +os/OSCache.c: + .text start:0x801F6AFC end:0x801F6F80 + .data start:0x802E7448 end:0x802E7678 + +os/OSContext.c: + .text start:0x801F6F80 end:0x801F77E8 + .data start:0x802E7678 end:0x802E7850 + +os/OSError.c: + .text start:0x801F77E8 end:0x801F7B24 + .data start:0x802E7850 end:0x802E7A88 + .bss start:0x803D2310 end:0x803D2350 + .sdata start:0x803E7668 end:0x803E7670 + +os/OSExi.c: + .text start:0x801F7B24 end:0x801F8E7C + .bss start:0x803D2350 end:0x803D2400 + +os/OSFont.c: + .text start:0x801F8E7C end:0x801F8ED4 + .sdata start:0x803E7670 end:0x803E7678 + +os/OSInterrupt.c: + .text start:0x801F8ED4 end:0x801F96F4 + .data start:0x802E7A88 end:0x802E7B20 + .sbss start:0x803E7E78 end:0x803E7E80 + +os/OSLink.c: + .text start:0x801F96F4 end:0x801F970C + +os/OSMessage.c: + .text start:0x801F970C end:0x801F9910 + +os/OSMutex.c: + .text start:0x801F9910 end:0x801F9E1C + +os/OSReboot.c: + .text start:0x801F9E1C end:0x801FA018 + .bss start:0x803D2400 end:0x803D2420 + .sbss start:0x803E7E80 end:0x803E7E88 + +os/OSReset.c: + .text start:0x801FA018 end:0x801FA30C + .sbss start:0x803E7E88 end:0x803E7E90 + +os/OSResetSW.c: + .text start:0x801FA30C end:0x801FA5F4 + .sbss start:0x803E7E90 end:0x803E7EB0 + +os/OSRtc.c: + .text start:0x801FA5F4 end:0x801FAF00 + .bss start:0x803D2420 end:0x803D2478 + +os/OSSerial.c: + .text start:0x801FAF00 end:0x801FB880 + .data start:0x802E7B20 end:0x802E7B38 + .bss start:0x803D2478 end:0x803D2598 + +os/OSSync.c: + .text start:0x801FB880 end:0x801FB904 + +os/OSThread.c: + .text start:0x801FB904 end:0x801FD2F8 + .data start:0x802E7B38 end:0x802E8348 + .bss start:0x803D2598 end:0x803D2F80 + .sdata start:0x803E7678 end:0x803E7680 + .sbss start:0x803E7EB0 end:0x803E7EC0 + +os/OSTime.c: + .text start:0x801FD2F8 end:0x801FD71C + .data start:0x802E8348 end:0x802E83A8 + +os/OSUartExi.c: + .text start:0x801FD71C end:0x801FD96C + .sbss start:0x803E7EC0 end:0x803E7EC8 + +os/__start.c: + .init start:0x80003100 end:0x800032CC + .text start:0x801FD96C end:0x801FD96C + +os/__ppc_eabi_init.cpp: + .init start:0x800032CC end:0x80003320 + .text start:0x801FD96C end:0x801FDA00 + +db/db.c: + .text start:0x801FDA00 end:0x801FDAEC + .data start:0x802E83A8 end:0x802E83C0 + .sbss start:0x803E7EC8 end:0x803E7ED0 + +mtx/mtx.c: + .text start:0x801FDAEC end:0x801FDE78 + .sdata start:0x803E7680 end:0x803E7688 + .sdata2 start:0x803EC418 end:0x803EC430 + +mtx/mtx44.c: + .text start:0x801FDE78 end:0x801FDFE0 + .sdata2 start:0x803EC430 end:0x803EC448 + +mtx/vec.c: + .text start:0x801FDFE0 end:0x801FE084 + .sdata2 start:0x803EC448 end:0x803EC460 + +dvd/dvdlow.c: + .text start:0x801FE084 end:0x801FEED8 + .bss start:0x803D2F80 end:0x803D3060 + .sdata start:0x803E7688 end:0x803E7690 + .sbss start:0x803E7ED0 end:0x803E7F18 + +dvd/dvdfs.c: + .text start:0x801FEED8 end:0x801FF8BC + .data start:0x802E83C0 end:0x802E8778 + .sdata start:0x803E7690 end:0x803E7698 + .sbss start:0x803E7F18 end:0x803E7F38 + +dvd/dvd.c: + .text start:0x801FF8BC end:0x80201E5C + .data start:0x802E8778 end:0x802E8890 + .bss start:0x803D3060 end:0x803D3138 + .sdata start:0x803E7698 end:0x803E76A0 + .sbss start:0x803E7F38 end:0x803E7F80 + +dvd/dvdqueue.c: + .text start:0x80201E5C end:0x80202054 + .bss start:0x803D3138 end:0x803D3158 + +dvd/dvderror.c: + .text start:0x80202054 end:0x802021AC + .data start:0x802E8890 end:0x802E88D0 + +dvd/fstload.c: + .text start:0x802021AC end:0x802023D4 + .data start:0x802E88D0 end:0x802E8940 + .bss start:0x803D3158 end:0x803D31C8 + .sdata start:0x803E76A0 end:0x803E76B0 + .sbss start:0x803E7F80 end:0x803E7F90 + +vi/vi.c: + .text start:0x802023D4 end:0x80203B1C + .data start:0x802E8940 end:0x802E8AA8 + .bss start:0x803D31C8 end:0x803D3310 + .sbss start:0x803E7F90 end:0x803E7FD0 + +pad/Padclamp.c: + .text start:0x80203B1C end:0x80203D54 + .sdata start:0x803E76B0 end:0x803E76B8 + +pad/Pad.c: + .text start:0x80203D54 end:0x80205F54 + .data start:0x802E8AA8 end:0x802E8B10 + .bss start:0x803D3310 end:0x803D3380 + .sdata start:0x803E76B8 end:0x803E76E0 + .sbss start:0x803E7FD0 end:0x803E8000 + +ai/ai.c: + .text start:0x80205F54 end:0x8020685C + .sbss start:0x803E8000 end:0x803E8040 + +ar/ar.c: + .text start:0x8020685C end:0x802079D0 + .sbss start:0x803E8040 end:0x803E8058 + .sdata2 start:0x803EC460 end:0x803EC470 + +ar/arq.c: + .text start:0x802079D0 end:0x80207D64 + .sbss start:0x803E8058 end:0x803E8080 + +dsp/dsp.c: + .text start:0x80207D64 end:0x80207DB0 + +card/CARDBios.c: + .text start:0x80207DB0 end:0x80209164 + .data start:0x802E8B10 end:0x802E8B20 + .bss start:0x803D3380 end:0x803D35B0 + .sbss start:0x803E8080 end:0x803E8088 + +card/CARDRdwr.c: + .text start:0x80209164 end:0x802093FC + +card/CARDBlock.c: + .text start:0x802093FC end:0x80209800 + +card/CARDDir.c: + .text start:0x80209800 end:0x80209A64 + +card/CARDCheck.c: + .text start:0x80209A64 end:0x8020A9F4 + +card/CARDMount.c: + .text start:0x8020A9F4 end:0x8020B1EC + .data start:0x802E8B20 end:0x802E8B60 + +card/CARDFormat.c: + .text start:0x8020B1EC end:0x8020B9D0 + +card/CARDOpen.c: + .text start:0x8020B9D0 end:0x8020BE38 + +card/CARDCreate.c: + .text start:0x8020BE38 end:0x8020C1C8 + +card/CARDRead.c: + .text start:0x8020C1C8 end:0x8020C63C + +card/CARDWrite.c: + .text start:0x8020C63C end:0x8020C9B4 + +card/CARDDelete.c: + .text start:0x8020C9B4 end:0x8020CBC8 + +card/CARDStat.c: + .text start:0x8020CBC8 end:0x8020D0A0 + +card/CARDRename.c: + .text start:0x8020D0A0 end:0x8020D2D8 + +hio/hio.c: + .text start:0x8020D2D8 end:0x8020DAB0 + .sdata start:0x803E76E0 end:0x803E76E8 + .sbss start:0x803E8088 end:0x803E8098 + +gx/GXInit.c: + .text start:0x8020DAB0 end:0x8020EA90 + .bss start:0x803D35B0 end:0x803D3B28 + .sdata start:0x803E76E8 end:0x803E76F0 + .sbss start:0x803E8098 end:0x803E80A8 + .sdata2 start:0x803EC470 end:0x803EC490 + +gx/GXFifo.c: + .text start:0x8020EA90 end:0x8020F1F8 + .sbss start:0x803E80A8 end:0x803E80C8 + +gx/GXAttr.c: + .text start:0x8020F1F8 end:0x802106C0 + .data start:0x802E8B60 end:0x802E8D28 + .sdata start:0x803E76F0 end:0x803E7700 + +gx/GXMisc.c: + .text start:0x802106C0 end:0x80210A98 + .sbss start:0x803E80C8 end:0x803E80E0 + +gx/GXGeometry.c: + .text start:0x80210A98 end:0x80210E50 + +gx/GXFrameBuf.c: + .text start:0x80210E50 end:0x802118CC + .data start:0x802E8D28 end:0x802E8DE0 + .sdata2 start:0x803EC490 end:0x803EC4A0 + +gx/GXLight.c: + .text start:0x802118CC end:0x80212054 + .sdata2 start:0x803EC4A0 end:0x803EC4C0 + +gx/GXTexture.c: + .text start:0x80212054 end:0x80212B18 + .data start:0x802E8DE0 end:0x802E8F10 + .sdata start:0x803E7700 end:0x803E7740 + .sdata2 start:0x803EC4C0 end:0x803EC4E8 + +gx/GXBump.c: + .text start:0x80212B18 end:0x80212EEC + +gx/GXTev.c: + .text start:0x80212EEC end:0x802138E8 + .data start:0x802E8F10 end:0x802E8F38 + +gx/GXPixel.c: + .text start:0x802138E8 end:0x80214034 + .data start:0x802E8F38 end:0x802E8F58 + .sdata2 start:0x803EC4E8 end:0x803EC518 + +gx/GXStubs.c: + .text start:0x80214034 end:0x80214038 + +gx/GXDisplayList.c: + .text start:0x80214038 end:0x80214244 + .bss start:0x803D3B28 end:0x803D4040 + .sbss start:0x803E80E0 end:0x803E80E8 + +gx/GXTransform.c: + .text start:0x80214244 end:0x802147C0 + .sdata2 start:0x803EC518 end:0x803EC528 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x802147C0 end:0x802148B4 + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x802148B4 end:0x80214914 + .dtors start:0x80221F28 end:0x80221F2C + .sbss start:0x803E80E8 end:0x803E80F0 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x80214914 end:0x80214944 + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x800054C0 end:0x80005500 + extabindex start:0x80005500 end:0x80005530 + .text start:0x80214944 end:0x80214C80 + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x80214C80 end:0x80214CA8 + .rodata start:0x802226B8 end:0x802226C8 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x80214CA8 end:0x80214D18 + .bss start:0x803D4040 end:0x803D4050 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x80214D18 end:0x80215410 + .rodata start:0x802226C8 end:0x802226E0 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x80215410 end:0x8021548C + .ctors start:0x80221EC0 end:0x80221EC4 + .dtors start:0x80221F20 end:0x80221F28 + .sdata start:0x803E7740 end:0x803E7748 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802E8F58 end:0x802E9030 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x8021548C end:0x80215598 + .bss start:0x803D4050 end:0x803D4250 + .sbss start:0x803E80F0 end:0x803E8108 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803E8108 end:0x803E8110 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x80215598 end:0x80215BF0 + .rodata start:0x802226E0 end:0x80222768 + .sdata start:0x803E7748 end:0x803E7750 + .sdata2 start:0x803EC528 end:0x803EC558 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x80215BF0 end:0x80215C00 + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x80215C00 end:0x80215D00 + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x80215D00 end:0x80215D04 + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x80215D04 end:0x80215D54 + .rodata start:0x80222768 end:0x80222A68 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x80222A68 end:0x80222A70 + .data start:0x802E9030 end:0x802E9060 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x80215D54 end:0x80216030 + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x80216030 end:0x802160BC + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003320 end:0x80003464 + .text start:0x802160BC end:0x80216208 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x80216208 end:0x802164E4 + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x802164E4 end:0x802164E8 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x802164E8 end:0x80217FB8 + .rodata start:0x80222A70 end:0x80222A80 + .data start:0x802E9060 end:0x802E9280 + .sdata start:0x803E7750 end:0x803E7758 + .sdata2 start:0x803EC558 end:0x803EC560 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x80217FB8 end:0x80217FE4 + .sdata start:0x803E7758 end:0x803E7760 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x80217FE4 end:0x80219038 + .rodata start:0x80222A80 end:0x80222AA8 + .data start:0x802E9280 end:0x802E9350 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x80219038 end:0x8021937C + .sdata start:0x803E7760 end:0x803E7768 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x8021937C end:0x80219AEC + .rodata start:0x80222AA8 end:0x80222AD8 + .sdata2 start:0x803EC560 end:0x803EC570 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x80219AEC end:0x8021A460 + .data start:0x802E9350 end:0x802E93D8 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802E93D8 end:0x802E9410 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8021A460 end:0x8021A5E0 + .sbss start:0x803E8110 end:0x803E8118 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8021A5E0 end:0x8021A660 + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8021A660 end:0x8021A668 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x8021A668 end:0x8021A900 + .sdata2 start:0x803EC570 end:0x803EC5C8 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x8021A900 end:0x8021B138 + .rodata start:0x80222AD8 end:0x80222B08 + .sdata2 start:0x803EC5C8 end:0x803EC6D8 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x8021B138 end:0x8021B1B8 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x8021B1B8 end:0x8021B3F8 + .rodata start:0x80222B08 end:0x80222BA0 + .sdata2 start:0x803EC6D8 end:0x803EC700 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x8021B3F8 end:0x8021B424 + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x8021B424 end:0x8021B4C0 + .sdata2 start:0x803EC700 end:0x803EC708 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x8021B4C0 end:0x8021B638 + .sdata2 start:0x803EC708 end:0x803EC730 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x8021B638 end:0x8021B658 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x8021B658 end:0x8021B678 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x8021B678 end:0x8021B680 + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x8021B680 end:0x8021BA20 + .rodata start:0x80222BA0 end:0x80222C58 + .sdata2 start:0x803EC730 end:0x803EC750 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x8021BA20 end:0x8021BE0C + .ctors start:0x80221F00 end:0x80221F04 + .rodata start:0x80222C58 end:0x80222C68 + .data start:0x802E9410 end:0x802E9420 + .sdata2 start:0x803EC750 end:0x803EC768 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x80222C68 end:0x80222CB0 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x8021BE0C end:0x8021BE9C + .sdata2 start:0x803EC768 end:0x803EC780 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x8021BE9C end:0x8021C004 + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x8021C004 end:0x8021C260 + .bss start:0x803D4250 end:0x803D4278 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x8021C260 end:0x8021C3F4 + .rodata start:0x80222CB0 end:0x80222CD0 + .bss start:0x803D4278 end:0x803D4280 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x8021C3F4 end:0x8021C41C + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x8021C41C end:0x8021CC64 + .bss start:0x803D4280 end:0x803D5C30 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x8021CC64 end:0x8021CE2C + .bss start:0x803D5C30 end:0x803D5C48 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x8021CE2C end:0x8021CE30 + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x8021CE30 end:0x8021CEC8 + .data start:0x802E9420 end:0x802E94A8 + .bss start:0x803D5C48 end:0x803D5C50 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x8021CEC8 end:0x8021E16C + .data start:0x802E94A8 end:0x802E94E0 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x8021E16C end:0x8021E5E8 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x8021E5E8 end:0x8021E600 + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x8021E600 end:0x8021E6D8 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x8021E6D8 end:0x8021E710 + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003464 end:0x800034B8 + .text start:0x8021E710 end:0x8021E7D4 + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x8021E7D4 end:0x8021FDB0 + .rodata start:0x80222CD0 end:0x80222D1C + .data start:0x802E94E0 end:0x802E9510 + .bss start:0x803D5C50 end:0x803D61D0 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x800034B8 end:0x800053EC + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x800053EC end:0x8000540C + .text start:0x8021FDB0 end:0x8021FFF0 + .data start:0x802E9510 end:0x802E9550 + .bss start:0x803D61D0 end:0x803D61D8 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x8021FFF0 end:0x80220368 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x80220368 end:0x802203B0 + .bss start:0x803D61D8 end:0x803D61E0 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x802203B0 end:0x80220708 + .data start:0x802E9550 end:0x802E9570 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x80220708 end:0x8022073C + +amcExi2/AmcExi.c: + .text start:0x8022073C end:0x80220D7C + .bss start:0x803D61E0 end:0x803D61F8 + .sdata start:0x803E7768 end:0x803E7770 + +amcExi2/AmcExi2Comm.c: + .text start:0x80220D7C end:0x80221420 + .data start:0x802E9570 end:0x802E9589 + .sdata start:0x803E7770 end:0x803E7778 + .sbss start:0x803E8118 end:0x803E8128 + +amcnotstub/amcnotstub.c: + .text start:0x80221420 end:0x80221428 + +OdemuExi2/DebuggerDriver.c: + .text start:0x80221428 end:0x80221EA8 + .sdata start:0x803E7778 end:0x803E7779 + .sbss start:0x803E8128 end:0x803E813D + +odenotstub/odenotstub.c: + .text start:0x80221EA8 end:0x80221EB0 diff --git a/config/GPIE01_00/symbols.txt b/config/GPIE01_00/symbols.txt new file mode 100644 index 00000000..08d4482f --- /dev/null +++ b/config/GPIE01_00/symbols.txt @@ -0,0 +1,29569 @@ +__start = .init:0x80003100; // type:function size:0xF0 scope:weak align:4 +__init_registers = .init:0x800031F0; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x8000320C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800032CC; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x800032EC; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003320; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x80003350; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003414; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x80003464; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x80003488; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x800034B8; // type:label scope:global +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x800053EC; // type:label scope:global +__TRK_reset = .init:0x800053EC; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x8000540C; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x80005490; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x800054C0; // type:object size:0x8 scope:local align:4 +@174 = extab:0x800054C8; // type:object size:0x18 scope:local align:4 +@182 = extab:0x800054E0; // type:object size:0x8 scope:local align:4 +@201 = extab:0x800054E8; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005500; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000550C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005518; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005524; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005530; // type:object size:0x20 scope:global +main = .text:0x80005560; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005600; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005620; // type:function size:0x4 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005640; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x800056C0; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x80005720; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005780; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x80005800; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x800058C0; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x800059A0; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005A80; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005B80; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005C20; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005DC0; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005E80; // type:function size:0x8 scope:global align:32 +Jac_GetOutputMode = .text:0x80005EA0; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005EC0; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005F00; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80005F40; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80005F80; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006080; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x800060C0; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x800061A0; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x800061C0; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x80006220; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x800062C0; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x800062E0; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x80006300; // type:function size:0x44 scope:local align:32 +StopAudioThread = .text:0x80006360; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x800063C0; // type:function size:0x80 scope:local align:32 +__DspSync__FsP9OSContext = .text:0x80006440; // type:function size:0x68 scope:local align:32 +__DspReg__Fv = .text:0x800064C0; // type:function size:0x44 scope:local align:32 +audioproc__FPv = .text:0x80006520; // type:function size:0x130 scope:local align:32 +OSInitFastCast = .text:0x80006660; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x800066A0; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x800067E0; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006B80; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006BA0; // type:function size:0x250 scope:global align:32 +UpdateDSP__Fv = .text:0x80006E00; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006E60; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006EA0; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006EE0; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x800070E0; // type:function size:0x24 scope:global align:32 +ResetPlayerCallback = .text:0x80007120; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80007160; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x800071C0; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x80007220; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x800072E0; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x80007360; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x800073E0; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x80007440; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x800074E0; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x80007540; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x800075C0; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x80007640; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x80007680; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x80007720; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x80007780; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x800077E0; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x80007820; // type:function size:0xD0 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007900; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x800079A0; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x800079E0; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x80007A20; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007A60; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007AC0; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007B80; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007BA0; // type:function size:0x22C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007DE0; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007E80; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007F00; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80007F80; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80007FC0; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80008000; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x80008100; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x80008160; // type:function size:0x18 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008180; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x80008200; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x80008260; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x800082C0; // type:function size:0x3C scope:global align:32 +__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x80008300; // type:function size:0x280 scope:global align:32 +DSPInit = .text:0x80008580; // type:function size:0x4 scope:global align:32 +DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x800085A0; // type:function size:0x98 scope:global align:32 +DspBoot__Fv = .text:0x80008640; // type:function size:0x74 scope:global align:32 +DSPSendCommands__FPUlUl = .text:0x800086C0; // type:function size:0xA8 scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008780; // type:function size:0x48 scope:global align:32 +DSPWaitFinish__Fv = .text:0x800087E0; // type:function size:0x58 scope:global align:32 +DsetupTable__FUlUlUlUlUl = .text:0x80008840; // type:function size:0x48 scope:global align:32 +DsetMixerLevel__Ff = .text:0x800088A0; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800088E0; // type:function size:0x48 scope:global align:32 +DwaitFrame__Fv = .text:0x80008940; // type:function size:0x34 scope:global align:32 +DiplSec__FUl = .text:0x80008980; // type:function size:0x3C scope:global align:32 +DagbSec__FUl = .text:0x800089C0; // type:function size:0x3C scope:global align:32 +WriteTask__FUcUlPvPFPv_v = .text:0x80008A00; // type:function size:0x70 scope:local align:32 +DoTask__Fv = .text:0x80008A80; // type:function size:0xC0 scope:local align:32 +DspExtraTaskCheck__Fv = .text:0x80008B40; // type:function size:0x24 scope:global align:32 +Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x80008B80; // type:function size:0x4C scope:global align:32 +exnor_1st__FUlUl = .text:0x80008BE0; // type:function size:0x38 scope:local align:32 +exnor__FUlUl = .text:0x80008C20; // type:function size:0x38 scope:local align:32 +bitrev__FUl = .text:0x80008C60; // type:function size:0x7C scope:local align:32 +ReadArrayUnlock__FlUlPvli = .text:0x80008CE0; // type:function size:0x17C scope:local align:32 +GetInitVal__Fv = .text:0x80008E60; // type:function size:0x44 scope:local align:32 +DummyLen__Fv = .text:0x80008EC0; // type:function size:0x8C scope:local align:32 +__CARDUnlock = .text:0x80008F60; // type:function size:0x2B0 scope:global align:32 +DoneCallback__FPv = .text:0x80009220; // type:function size:0x1E0 scope:local align:32 +Channel_SetMixerLevel__Ff = .text:0x80009400; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x80009440; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80009460; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80009480; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x80009500; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x80009540; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x800095A0; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x800095C0; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80009660; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x800096C0; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x800097C0; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x800098C0; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x80009940; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x80009A60; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009BA0; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009BE0; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x80009C60; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x80009D40; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x80009E20; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x80009E60; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x8000A1C0; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x8000A240; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8000A2E0; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A680; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A700; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A740; // type:function size:0x144 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A8A0; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A920; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000A9E0; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000AA60; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000AB60; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000AC40; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000ACA0; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000ACE0; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000AD40; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000AE60; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000AF40; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000B060; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000B140; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000B1C0; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000B280; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000B340; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000B540; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000B560; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000B580; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000B5C0; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000B5E0; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000B640; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B6A0; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B6E0; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B700; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B7C0; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B800; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B820; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B880; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B900; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B920; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000B960; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000B9A0; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000B9E0; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000BA40; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000BAC0; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000BB00; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000BB40; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000BB80; // type:function size:0x50 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000BBE0; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000BC40; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000BCA0; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BDE0; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000BE20; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000C0A0; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000C120; // type:function size:0x24 scope:global align:32 +Bank_Init__Fv = .text:0x8000C160; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000C1A0; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000C1E0; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000C220; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000C4C0; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000C560; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000C5A0; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C620; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C6C0; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C700; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C740; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C7C0; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C800; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C840; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C8E0; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CA60; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CB00; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000CC60; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000CCC0; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000CDE0; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000CE60; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000CE80; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000CEA0; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000CF00; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000CF60; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000CFA0; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000CFE0; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000D020; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000D080; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000D120; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000D1A0; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000D2C0; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000D320; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D720; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D7A0; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D7E0; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D820; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D880; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D900; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000D980; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000D9C0; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000DA00; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000DA80; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000DB80; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000DBC0; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000DC00; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000DC20; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000DCA0; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000DCE0; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000DD80; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000DDC0; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000DE20; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000DEE0; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000DFC0; // type:function size:0x190 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000E160; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000E1C0; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000E200; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000E2E0; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000E320; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000E340; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000E3C0; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000E400; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000E460; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000E4C0; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000E500; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000E520; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000E560; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E6A0; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E720; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E7A0; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E7E0; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E8C0; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000E9A0; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000E9E0; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000EAE0; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000EBE0; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000EC40; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000EC80; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000ED80; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000EDC0; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000EE20; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000EFE0; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000F1A0; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000F220; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000F300; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000F3E0; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000F440; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000F4A0; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000F500; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000F580; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F5E0; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F660; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F6C0; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F720; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F800; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F8A0; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F8C0; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000FA80; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000FB40; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000FBE0; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x80010080; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x80010200; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x80010260; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x800102C0; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x80010320; // type:function size:0x3C scope:global align:32 +Jam_WritePortAppDirect = .text:0x80010360; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x800103E0; // type:function size:0x30 scope:global align:32 +Jam_CheckPortAppDirect = .text:0x80010420; // type:function size:0x6C scope:global align:32 +Jam_InitRegistTrack = .text:0x800104A0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x800104E0; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x800105A0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010640; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800106A0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800106C0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010700; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010760; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800107C0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x80010880; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800108C0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010900; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010940; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x80010980; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x800109C0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010A00; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010A40; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010A60; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x80010AC0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010DE0; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010E00; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x800112C0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x800113E0; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x800114C0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011600; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011700; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011740; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x800117E0; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011820; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x80011880; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800118C0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x800119C0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011A00; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011A60; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x80011A80; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x80011AA0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011B00; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x80011B80; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011BE0; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011C20; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x80011C80; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011CE0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011D20; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011D60; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x80011DA0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011E00; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011E40; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011E60; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x80011EA0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80011EE0; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80011F60; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x80011FC0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80012040; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x80012080; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x800120C0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80012100; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80012120; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x80012180; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x800121C0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x800121E0; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80012200; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80012240; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x80012280; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x800122C0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80012300; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80012360; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x800123A0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x800123E0; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80012420; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x80012480; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x800124E0; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x800125C0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x800125E0; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800126A0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012740; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800127A0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012800; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x800128E0; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012920; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x800129C0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012A00; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x80012A80; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x80012CA0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012DE0; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x80012EA0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013760; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013820; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x80013BC0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013C60; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x80013CA0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013D00; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x80013D80; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013E20; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x80013EC0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80013F40; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x80013FA0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80014000; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80014020; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x800143A0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80014440; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x800144A0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x800144E0; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014660; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800146A0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014760; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800148C0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x80014980; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x80014AA0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x80014BA0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x80014C80; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014D20; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014D60; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x80014DA0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014E20; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014E40; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x80014EA0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80014F40; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80015000; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80015120; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80015160; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x800151A0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80015200; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x80015280; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x800153C0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x800154A0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80015520; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x800155A0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800156C0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015820; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x80015880; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x800158E0; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015920; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015940; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80015AA0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x80015BA0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015C20; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015C60; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x80015CA0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015D20; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80015DA0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015DE0; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x80015E80; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80015F60; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x80015F80; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x80015FC0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x80016080; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80016260; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80016300; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x80016580; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800167A0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x800168E0; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016900; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016920; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016940; // type:function size:0x48 scope:global align:32 +Jac_SetProcessStatus = .text:0x800169A0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016A40; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x80016AC0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016AE0; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016B00; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x80016B80; // type:function size:0x3A0 scope:global align:32 +Jac_StopSystemSe = .text:0x80016F20; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x80016FA0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80017000; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80017020; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x800170E0; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80017160; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x80017180; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x800171A0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80017300; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80017360; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x800173A0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x800173C0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80017400; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80017440; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x800174C0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80017520; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80017540; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x800175C0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017620; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x80017680; // type:function size:0xEC scope:global align:32 +Jac_EventFrameCheck = .text:0x80017780; // type:function size:0xBC scope:global align:32 +Jac_UpdateCamera = .text:0x80017840; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x80017980; // type:function size:0x118 scope:global align:32 +Jac_UpdateEventPosition = .text:0x80017AA0; // type:function size:0x5C scope:global align:32 +Jac_PlayEventAction = .text:0x80017B00; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017DE0; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x80017EA0; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017F20; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x80017F80; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80018020; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x80018060; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x800180A0; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80018100; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x800181E0; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x80018380; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x800185E0; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018620; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x80018660; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018720; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x800187A0; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x80018960; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x800189A0; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018B20; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018B60; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x80018BC0; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018C60; // type:function size:0x244 scope:global align:32 +Jac_ChangeBgmMode = .text:0x80018EC0; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018F20; // type:function size:0xA8 scope:global align:32 +Jac_BgmFrameWork = .text:0x80018FE0; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80019120; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x800191E0; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x80019360; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80019400; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x800194E0; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x800195E0; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x800196C0; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019700; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x80019740; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x80019780; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019820; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x80019840; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x80019860; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019CC0; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019DC0; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019DE0; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x80019E60; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019EE0; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019F20; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x80019F60; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x8001A000; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x8001A0C0; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x8001A0E0; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x8001A100; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x8001A160; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x8001A1C0; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x8001A240; // type:function size:0x7C scope:global align:32 +DoSequence__FUlUl = .text:0x8001A2C0; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x8001A440; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x8001A4A0; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x8001A500; // type:function size:0x4F0 scope:global align:32 +Jac_DemoSound = .text:0x8001AA00; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001AA40; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001AAA0; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001AB20; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001AB80; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001AC60; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001AD80; // type:function size:0xA8 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001AE40; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001AE60; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001AE80; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001B040; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001B100; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001B1E0; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001B240; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001B2E0; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001B360; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001B380; // type:function size:0x18 scope:global align:32 +Jac_SetDemoPartsCount = .text:0x8001B3A0; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001B3C0; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001B4A0; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001B4E0; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B580; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B5A0; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B5C0; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B660; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B6A0; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B6E0; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B760; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B780; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B7C0; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B900; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B940; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B980; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue_Noblock = .text:0x8001B9E0; // type:function size:0x30 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001BA20; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001BA80; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001BB00; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001BB40; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001BB80; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001BBC0; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001BC00; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001BCE0; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001BD00; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001BD20; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001BD60; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001BDC0; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001BF20; // type:function size:0x190 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001C0C0; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001C0E0; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001C120; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001C440; // type:function size:0x8A8 scope:local align:32 +RegisterStreamCallback = .text:0x8001CD00; // type:function size:0x8 scope:global align:32 +Jac_Decode_ADPCM = .text:0x8001CD20; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001CEC0; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CFA0; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001CFE0; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001D180; // type:function size:0x54 scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001D1E0; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001D320; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001D360; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001D3C0; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001D420; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001D480; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D4E0; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D5A0; // type:function size:0x124 scope:local align:32 +StreamChgVolume = .text:0x8001D6E0; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D720; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D760; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D900; // type:function size:0x3C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D940; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D980; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001DA60; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001DB00; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001DB20; // type:function size:0x20 scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001DB40; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001DC00; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001DC60; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001DD80; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001DE00; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DFA0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001E000; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001E3C0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001E420; // type:function size:0x394 scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E7C0; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E840; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001EA80; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001EAC0; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001EB20; // type:function size:0xFC scope:local align:32 +init_global_constants = .text:0x8001EC1C; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001EF7C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001F098; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001F364; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001F3C8; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F68C; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F7C8; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F808; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F878; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001FC1C; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001FDB4; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001FDFC; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x800201CC; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x80020648; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x8002078C; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020860; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x8002093C; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x800209C8; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020A64; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x80020C10; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x80020DAC; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80021058; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x80021A58; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021E74; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x800226E0; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022BA4; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x80022D08; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022E60; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x80023290; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x800236CC; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x800236EC; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x80023710; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x80023784; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x80023BE8; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x800240F8; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x8002411C; // type:function size:0x5A8 scope:global align:4 +reset__8AyuStackFi = .text:0x800246C4; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x80024780; // type:function size:0x114 scope:global align:4 +pop__8AyuStackFv = .text:0x80024894; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x800248E8; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x8002495C; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x800249C4; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x80024B5C; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x80024C7C; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024D90; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024DA8; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x80024DDC; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024EB4; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024EBC; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024F04; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x80024FA8; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80024FAC; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80024FB0; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x80024FB8; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80024FC0; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x80024FF0; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x80024FF4; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x80025020; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x8002504C; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x80025078; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x8002507C; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x80025084; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x80025088; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x80025090; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x800250C8; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x80025100; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x80025138; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80025170; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x800251EC; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x80025224; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x800252C8; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x80025300; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x80025338; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x80025370; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x800253A8; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x800253E4; // type:function size:0xD4 scope:global align:4 +read__6StreamFPvi = .text:0x800254B8; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x800254BC; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x800254C0; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x800254C8; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x800254D0; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x800254D4; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x800254D8; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x800254E0; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x80025578; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x80025638; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x800256C0; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x80025704; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x80025808; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x80025838; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x80025840; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x8002586C; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x80025874; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x800258D0; // type:function size:0x24 scope:global align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x800258F4; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x80025A14; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x80025EAC; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x800260A4; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x80026544; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x8002674C; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x80026AFC; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x80026DF4; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x80027398; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x80027580; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x80027598; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x800276B8; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x8002770C; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x80027710; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x80027718; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027950; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027A70; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027C98; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x80027F68; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x80027F94; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x80027FA0; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x80028038; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80028114; // type:function size:0xE0 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x800281F4; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x8002824C; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x80028260; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x80028294; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x800282C4; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x8002848C; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x80028498; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x800284E8; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x800284F4; // type:function size:0x1C scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x80028510; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x80028528; // type:function size:0x184 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x800286AC; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x8002874C; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x800287E8; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x80028918; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x80028970; // type:function size:0x3EC scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028D5C; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x80028F04; // type:function size:0x1E4 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x800290E8; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x80029194; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x80029450; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x8002964C; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x800297BC; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x800298D0; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x800298D4; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x80029950; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x80029954; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x80029958; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x8002995C; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x80029964; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x8002996C; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x80029974; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x80029978; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x800299F4; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029A24; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x80029A28; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x80029C28; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029C3C; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029D20; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x80029EA8; // type:function size:0xD0 scope:global align:4 +read__8DispListFR18RandomAccessStream = .text:0x80029F78; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x8002A078; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x8002A1B4; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x8002A248; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x8002A358; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x8002A36C; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x8002A410; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A6EC; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A738; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002A8FC; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002A978; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002ACAC; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002AF10; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002BC5C; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002BCFC; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002BEF0; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002BF2C; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002C29C; // type:function size:0x150 scope:global align:4 +detach__8AnimDataFv = .text:0x8002C3EC; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C428; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C438; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C694; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002CA68; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002CA9C; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D528; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D67C; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002D788; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002DBA4; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002E888; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002E9DC; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002EBFC; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002ECC8; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002F02C; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002F07C; // type:function size:0xF4 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002F170; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002F358; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F664; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002F7D0; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002F894; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002F90C; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002FC18; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002FC1C; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002FC28; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002FCD4; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8003044C; // type:function size:0x1A0 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x800305EC; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x800309F8; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030A54; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030B20; // type:function size:0x2590 scope:global align:4 +__ct__9CollGroupFv = .text:0x800330B0; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x800330C8; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x800331AC; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x80033200; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x80033214; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033540; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033638; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x800337E8; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x80033848; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x80033894; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x80033898; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x80033AE0; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x80033D38; // type:function size:0xBA8 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x800348E0; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034A30; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x80034B18; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x80034CF8; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x80034DD4; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80034F98; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x80034FC8; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x80034FD8; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x80035010; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x80035044; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x800350D8; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x8003514C; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x800352F4; // type:function size:0x2E0 scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x800355D4; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x80035764; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x800358A4; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x8003599C; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x800359FC; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035A2C; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035A30; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035A34; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x80035A38; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035A3C; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035A40; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035A44; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x80035A48; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035A4C; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035A7C; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x80035B04; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x80035B18; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80035F38; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x80036104; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x80036454; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x800365D8; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x8003675C; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x800370FC; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x80037118; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x80037178; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x80037544; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x80037548; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x8003754C; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x800375EC; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037698; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x8003772C; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x800377F0; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x8003789C; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x80037D80; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x80037E24; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80037F10; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x80037FE4; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x80038064; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x800380E4; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x80038164; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x800382C8; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x80038568; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x80038594; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x80038608; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x80038658; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x80038814; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x800388D8; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80038F1C; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x80039004; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x80039264; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x8003940C; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x8003947C; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x800394A8; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x8003956C; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003AE30; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B658; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003D3F4; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003D85C; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003DD9C; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003DDE8; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003DEA8; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003DF14; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003E0B4; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E0D4; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003E270; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E41C; // type:function size:0x380 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003E79C; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003E860; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003EB60; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003EC60; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003ECE4; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003EE10; // type:function size:0x4 scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003EE14; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003EE44; // type:function size:0x144 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003EF88; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003EF94; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003EFFC; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003F000; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003F014; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003F048; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003F058; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003F0E8; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003F1DC; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003F1E4; // type:function size:0x1A8 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003F38C; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F42C; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F4D0; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F58C; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F644; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003F66C; // type:function size:0x9C scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003F708; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003F790; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003F7D8; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003F8AC; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003F8BC; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003F9C4; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003FA2C; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003FA48; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003FA54; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003FA8C; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003FB68; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x8003FDB4; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x80040314; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x80040318; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x80040320; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x8004037C; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x800403C4; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x80040408; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x80040458; // type:function size:0xE0 scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x80040538; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x8004053C; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x80040540; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x80040544; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x80040548; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x8004054C; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x80040550; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x80040580; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x80040584; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x800405B4; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x800405B8; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x800405F0; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x80040660; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x80040680; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x8004071C; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x80040744; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x800407B0; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x8004080C; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040838; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x800408B4; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040918; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x80040954; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040958; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x8004095C; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x80040964; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x80040974; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x80040984; // type:function size:0x4 scope:global align:4 +_stop__6TimersFPc = .text:0x80040988; // type:function size:0x4 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x8004098C; // type:function size:0x4 scope:global align:4 +reset__10ControllerFUl = .text:0x80040990; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x800409B4; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x80040A50; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x80040A7C; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x80040AB4; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x80040AEC; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x80040B24; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x80040B5C; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x80040C0C; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x80040CF8; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x80040D38; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80040EAC; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80040EFC; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x80041090; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x800413B4; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x80041468; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x80041564; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x800415D0; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x8004258C; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x800429F8; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x80042C34; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x80042D84; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x80042FEC; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x80043028; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x800431A4; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x800432F4; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x800433C4; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x800438CC; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x80043904; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x800439DC; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80043A70; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x80043B04; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x80043B84; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x80043BF8; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x80043C54; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x80043CEC; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80043D98; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x80043E14; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x80043E24; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x80043E2C; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x80043E34; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x80043E3C; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80043E74; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80043EA4; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80043EC8; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x80043F70; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x80043F94; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x80043FC0; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x80043FD4; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80043FE8; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x8004407C; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x80044138; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x8004413C; // type:function size:0x38 scope:global align:4 +__ct__7TextureFv = .text:0x80044174; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x800441E4; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x800442B8; // type:function size:0x168 scope:global align:4 +detach__7TextureFv = .text:0x80044420; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x8004442C; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x80044544; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x80044628; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x80044738; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x800447B8; // type:function size:0x4 scope:weak align:4 +openFile__6SystemFPcbb = .text:0x800447BC; // type:function size:0x254 scope:global align:4 +initSoftReset__6SystemFv = .text:0x80044A10; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80044A58; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80044B4C; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80044B70; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x80044B94; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x80044BF4; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80044C4C; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x80044D88; // type:function size:0x39C scope:global align:4 +read__9DVDStreamFPvi = .text:0x80045124; // type:function size:0x8C scope:weak align:4 +getPending__9DVDStreamFv = .text:0x800451B0; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x800451B8; // type:function size:0x648 scope:local align:4 +hardReset__6SystemFv = .text:0x80045800; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x80045914; // type:function size:0xF8 scope:global align:4 +initBigFont__Fv = .text:0x80045A0C; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x80045B7C; // type:function size:0x180 scope:global align:4 +Initialise__6SystemFv = .text:0x80045CFC; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x80046194; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x80046198; // type:function size:0x4C scope:global align:4 +loadFunc__FPv = .text:0x800461E4; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x8004652C; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80046530; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80046534; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x800465C8; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x800465FC; // type:function size:0x78 scope:global align:4 +doneDMA__FUl = .text:0x80046674; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x800466C0; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x800466D0; // type:function size:0x104 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x800467D4; // type:function size:0xC4 scope:global align:4 +freeBuffer__FUl = .text:0x80046898; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x80046958; // type:function size:0xCC scope:global align:4 +dvdFunc__FPv = .text:0x80046A24; // type:function size:0x224 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x80046C48; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80046C7C; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x80046CD4; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x80046D34; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x80046E50; // type:function size:0x3C scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x80046E8C; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x80046EBC; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80046F60; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80046F68; // type:function size:0x7C scope:weak align:4 +alloc__6SystemFUl = .text:0x80046FE4; // type:function size:0x164 scope:global align:4 +__nwa__FUli = .text:0x80047148; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x8004718C; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x80047190; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x80047194; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80047258; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80047278; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x800472A0; // type:function size:0x1F8 scope:global align:4 +__ct__11DGXGraphicsFb = .text:0x80047498; // type:function size:0x2F8 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x80047790; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x80047824; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x800478B8; // type:function size:0x94 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x8004794C; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x8004798C; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x800479CC; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x800479D4; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x800479DC; // type:function size:0x1C scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x800479F8; // type:function size:0x4C8 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x80047EC0; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x8004806C; // type:function size:0x38 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x800480A4; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x800480D4; // type:function size:0xC4 scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80048198; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x80048208; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x8004828C; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80048294; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x800482C0; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x80048310; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x8004836C; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x800483E4; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80048484; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x80048654; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x80048998; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x80048A30; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x80048BCC; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x80048C08; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x80048CA0; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x80048CD0; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x80048CD4; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x80048DA4; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x80048F0C; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x80048F60; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x80049058; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x800491A0; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x80049A04; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x80049BD8; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x80049E38; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x8004A07C; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x8004A12C; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x8004A1C8; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x8004A1D4; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x8004A234; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x8004A240; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x8004A274; // type:function size:0xB4 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x8004A328; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x8004A368; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004A4CC; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004A904; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004A9BC; // type:function size:0x328 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004ACE4; // type:function size:0x27C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004AF60; // type:function size:0x128 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004B088; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004B17C; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004B3A0; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B778; // type:function size:0x21C scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B994; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004BB5C; // type:function size:0x46C scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BFC8; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C1A4; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004C350; // type:function size:0x404 scope:global align:4 +__ct__5ShapeFv = .text:0x8004C754; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004C790; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004C8CC; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004C8D0; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004C8D4; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004C8D8; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004C8DC; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004C908; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004C93C; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004CA40; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004CB3C; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004D108; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004D6B4; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004D764; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004D774; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004D7A8; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004D7DC; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004D7F8; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004D838; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004D86C; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004D8A0; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004D8D4; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004D910; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004DB6C; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004DC00; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004DF0C; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004DF10; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004E0CC; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004E11C; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8004EEAC; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x8004EF18; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x8004F264; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x8004F5FC; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x8004F7B4; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x8004F894; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x8004F898; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x8004FA80; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x8004FBBC; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x8004FBC4; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x8004FC7C; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x8004FE30; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x8004FEB0; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x8004FF98; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x80050004; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x80050014; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x80050018; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x80050020; // type:function size:0x4 scope:weak align:4 +checkAnimData__8AnimInfoFv = .text:0x80050024; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x80050100; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x8005037C; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x800503C4; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x800503E8; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x8005040C; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x80050430; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80050454; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x8005048C; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x800504C4; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x800504FC; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x800507F4; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x80050814; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x80050824; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x800508A4; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x80050AD8; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x80050AE4; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x80050B04; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x80050CEC; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x80050D78; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x80050D98; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x80050F70; // type:function size:0x21C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x8005118C; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80051190; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x800511C0; // type:function size:0x5C scope:global align:4 +animate__8AnimatorFf = .text:0x8005121C; // type:function size:0x23C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80051458; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x80051460; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051468; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051470; // type:function size:0x8 scope:weak align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80051478; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x800515C8; // type:function size:0x254 scope:global align:4 +setTime__10WorldClockFf = .text:0x8005181C; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x800518C4; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x800519BC; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x80051A4C; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x80051AAC; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x80051B0C; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x80051B6C; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x80051BCC; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x80051C2C; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x80051C8C; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x80051D2C; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x80051DD8; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x80051E84; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x80051EA8; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x80051FEC; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80052088; // type:function size:0x60C scope:global align:4 +Initialise__12GameHiscoresFv = .text:0x80052694; // type:function size:0xC8 scope:weak align:4 +softReset__8GameFlowFv = .text:0x8005275C; // type:function size:0x548 scope:global align:4 +__ct__4NodeFPc = .text:0x80052CA4; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x80052D10; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x80052D34; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x80052D60; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80052E30; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x80052E90; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x80052E94; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80052EC4; // type:function size:0x1CC scope:local align:4 +Initialise__9GamePrefsFv = .text:0x80053090; // type:function size:0x84 scope:weak align:4 +__ct__17GameRecChalCourseFv = .text:0x80053114; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80053130; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x8005313C; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80053148; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x8005315C; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80053160; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x800532C8; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x80053640; // type:function size:0x52C scope:global align:4 +__sinit_game_cpp = .text:0x80053B6C; // type:function size:0xF0 scope:local align:4 +openStage__9PlayStateFi = .text:0x80053C5C; // type:function size:0x40 scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x80053C9C; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x80053CDC; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x80053D1C; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x80053DB8; // type:function size:0xB8 scope:global align:4 +setChildMode__9GamePrefsFb = .text:0x80053E70; // type:function size:0x54 scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x80053EC4; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR17GameChalQuickInfo = .text:0x80053F2C; // type:function size:0x174 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x800540A0; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x800543EC; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x80054564; // type:function size:0xB8 scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x8005461C; // type:function size:0x330 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x8005494C; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x80054A40; // type:function size:0xF4 scope:global align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x80054B34; // type:function size:0x190 scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x80054CC4; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80054F48; // type:function size:0x1C scope:global align:4 +init__16GameSetupSectionFv = .text:0x80054F64; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x80054F68; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x80054F78; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x80054F80; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x80054F88; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x80054F90; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x80054F98; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x80054FEC; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x8005503C; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80055278; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x80055510; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80055708; // type:function size:0x4 scope:weak align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x8005570C; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x80055A74; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80055D44; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x80055E50; // type:function size:0x46C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x800562BC; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80056550; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x80056878; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x80056A9C; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x80056AA0; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x80056AD0; // type:function size:0x30 scope:weak align:4 +createMenuWindow__Fv = .text:0x80056B00; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x80056C18; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x80056DC8; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80056E84; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80056F9C; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x800571E0; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x800571E4; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x8005730C; // type:function size:0x640 scope:global align:4 +message__13GameInterfaceFii = .text:0x8005794C; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x80057950; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x800579C8; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x80057C5C; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80057FBC; // type:function size:0x474 scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x80058430; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x80058680; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x800589E8; // type:function size:0x410 scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x80058DF8; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x80059050; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x8005918C; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x8005924C; // type:function size:0x428 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x80059674; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x800596C0; // type:function size:0x724 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x80059DE4; // type:function size:0x160 scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x80059F44; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x8005A0F8; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005A118; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x8005A11C; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x8005A120; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x8005A124; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005A178; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005A2B0; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005A2BC; // type:function size:0x83C scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005AAF8; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005AAFC; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005AB00; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005AB3C; // type:function size:0x11C scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005AC58; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005AD20; // type:function size:0x78 scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005AD98; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005ADA4; // type:function size:0x74 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005AE18; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005AE1C; // type:function size:0x298 scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005B0B4; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005B134; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005B138; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005B144; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005B1A0; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005B1D0; // type:function size:0x4BC scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005B68C; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005B690; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005B72C; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005B77C; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005B780; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005B8D0; // type:function size:0x210 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005BAE0; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005BD50; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005BE40; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005BE94; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005BED4; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005BF3C; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005BF9C; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005C074; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005C0A4; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005CF6C; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005D0B4; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005D0E4; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005D0E8; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005D128; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005D190; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005D220; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005D260; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005D264; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005D26C; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005D514; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005D528; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005D678; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005D68C; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005D6A8; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005D6AC; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005D6E0; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005D6E4; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005D6E8; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005D6EC; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005D6F0; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005D6F4; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005D6F8; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005D8C0; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005D954; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005DA1C; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005DA20; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005DA68; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005DAAC; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005DAD8; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005DAFC; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005DB1C; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005DCB0; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005DE34; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005DF84; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005DFA0; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005DFBC; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005E214; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x8005E410; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x8005EA1C; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8005EA80; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x8005EAEC; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x8005EB94; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x8005EB98; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x8005EC6C; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005EC70; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005ECB0; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005ECE8; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005ED28; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x8005ED60; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x8005EDB8; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x8005EDF0; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x8005EF50; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x8005EF90; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x8005EFDC; // type:function size:0x4BC scope:global align:4 +idle__11PlugPikiAppFv = .text:0x8005F498; // type:function size:0x144 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x8005F5DC; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x8005F724; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x8005F788; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x8005F790; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x8005F804; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x8005F890; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x8005F8C8; // type:function size:0x87C scope:global align:4 +update__17TitleSetupSectionFv = .text:0x80060144; // type:function size:0x734 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x80060878; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x80061134; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80061220; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80061250; // type:function size:0x180 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x800613D0; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x800614C0; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x800616D4; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x800617C0; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x80061A28; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80061DF4; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x80061E38; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x80061ECC; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x80061F14; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x80061F50; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80061FB4; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80061FE8; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x800621A4; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x800621C8; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x80062204; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x800623AC; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x800623D8; // type:function size:0x184 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x8006255C; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x8006258C; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800625BC; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062774; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x8006292C; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x80063194; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x80063A3C; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x80063B34; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x80063F1C; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x800640C8; // type:function size:0x1E0 scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x800642A8; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x80064510; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x800648B4; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x80064DEC; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x8006549C; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x800654B4; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x800654E4; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x800658A8; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x800658C8; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x800658CC; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x800659C8; // type:function size:0x1D4 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x80065B9C; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x80065BA4; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x80065C98; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x80065E34; // type:function size:0x438 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x8006626C; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80066300; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x80066360; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x80066AEC; // type:function size:0x160 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x80066C4C; // type:function size:0xEDC scope:global align:4 +updatePos__6MapMgrFff = .text:0x80067B28; // type:function size:0x270 scope:global align:4 +getLight__6MapMgrFff = .text:0x80067D98; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x80067DA0; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x80067F04; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80068068; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x800681D8; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x80068334; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x80068620; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80068E4C; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x80068E50; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x80068E54; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x80069424; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x80069494; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x80069530; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x80069664; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x80069690; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x800696CC; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x80069704; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x80069740; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x80069744; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x80069748; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x8006974C; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80069754; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x80069758; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x8006975C; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x80069760; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x80069798; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x8006979C; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x800697A4; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x800697FC; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x80069854; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x800698AC; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x80069900; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x800699A4; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x80069A48; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x80069A98; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x80069AE8; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x80069B38; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x80069B84; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x80069BD8; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x80069C2C; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x80069C80; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x80069CD4; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x80069D2C; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x80069D84; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006A1B8; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006A610; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006A664; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006A6BC; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006A714; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006AE40; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006B3FC; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006B458; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006B4B4; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006D034; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006D560; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006E090; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x8006E3A4; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x8006E3FC; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x8006E454; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x8006E4D8; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x8006E55C; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x8006EF94; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x8006EFE8; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x8006F06C; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x8006F92C; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x8006F95C; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x8006F98C; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x8006F9BC; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x8006F9EC; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x8006FA1C; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x8006FBD8; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x8006FD88; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x8006FEB8; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x800705D8; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x8007068C; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x8007071C; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x800707BC; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x800708F4; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x80070978; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x80070EEC; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80070FB0; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x80071058; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x800711E8; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x800712AC; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x80071468; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x80072234; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x80073144; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80073160; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80073164; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x800732D0; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x800738C8; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x800738D4; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x800738E0; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x80073A5C; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x80073ACC; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x80073C00; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x80073C38; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80073DF4; // type:function size:0xFC scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80073EF0; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80074064; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x80074114; // type:function size:0x1DC scope:global align:4 +loadOptions__10MemoryCardFv = .text:0x800742F0; // type:function size:0xA4 scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x80074394; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80074468; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x80074514; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x80074938; // type:function size:0x128 scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x80074A60; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x80074AD0; // type:function size:0x3B0 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x80074E80; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80075090; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x800754A4; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x800754B4; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x800757C8; // type:function size:0x454 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x80075C1C; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x80075C88; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x80075CBC; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80075EE8; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x8007645C; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x800764FC; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x80076A28; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x80076A68; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x80076E00; // type:function size:0x34 scope:global align:4 +__ct__11MoviePlayerFv = .text:0x80076E34; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x80076EF0; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x80076FD0; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x80077060; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80077160; // type:function size:0x49C scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x800775FC; // type:function size:0x104 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x80077700; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x80077824; // type:function size:0x64 scope:global align:4 +update__11MoviePlayerFv = .text:0x80077888; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80077C54; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x80077D00; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x80077D1C; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x80077E1C; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x80077E7C; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80077EF0; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x800782E0; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x80078314; // type:function size:0x258 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x8007856C; // type:function size:0x14C scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x800786B8; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x80078DB0; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x80078F98; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x80079434; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079460; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x80079464; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x800794B4; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x800795A4; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x800795AC; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x800795B0; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x800795B8; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079614; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079618; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x8007961C; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x800798A4; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x80079C6C; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x80079EF4; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007A304; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007A714; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007AA4C; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007AD84; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007AD98; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007ADAC; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007ADE8; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007AE24; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007AFAC; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007B12C; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007B140; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007B17C; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007B34C; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007B360; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007B39C; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007B564; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007B62C; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007B714; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007B784; // type:function size:0x44 scope:global align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007B7C8; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007B968; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007BA28; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007BA94; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007BB14; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007BB18; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007BB8C; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007BB90; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007BCB0; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007BD64; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007BDE0; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007BDE8; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007BEF0; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007BF4C; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007C038; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007C040; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007C1CC; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007C210; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007C218; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007C3A0; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007C3A8; // type:function size:0x2F0 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007C698; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007C6A0; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007C6E8; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007C714; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007C84C; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007C854; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007C85C; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007C864; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007C86C; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007C874; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007C87C; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007C884; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007C88C; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007C894; // type:function size:0x8 scope:weak align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007C89C; // type:function size:0x3C scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007C8D8; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007C9F8; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007CA34; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007CB38; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007CB40; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007CDFC; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007CF58; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007CF98; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007CFD8; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007D018; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007D058; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007D088; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007D0B8; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007D0E8; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007D128; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007D12C; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007D130; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007D134; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007D138; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007D13C; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007D140; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007D144; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007D148; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007D14C; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007D150; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007D154; // type:function size:0x118 scope:weak align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007D26C; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007D310; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007D37C; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007D3DC; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007D490; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007D494; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007D498; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007D4C8; // type:function size:0x1C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007D4E4; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007D508; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007D570; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007D578; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007D660; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007D758; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007D784; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007D85C; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007D860; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007D868; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007D86C; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007D8E8; // type:function size:0xF8 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007D9E0; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007D9E8; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007DAF4; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007DB98; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007DB9C; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007DC10; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007DCB0; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007DCE8; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007DCEC; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007DCF0; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007DCF4; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007DCFC; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007DD04; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007DD0C; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007DD10; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007DD14; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007DD1C; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007DD24; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007DD2C; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007DD30; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007DD34; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007DD38; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007DD40; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007DD48; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007DD50; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007DD58; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007DD5C; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007DD60; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007DD64; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007DD68; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007DD84; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007DDA0; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007DDA8; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007DDB0; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007DDB8; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007DDD0; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007DDD8; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007DDE0; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007DDE8; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007DE00; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007DE04; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007DE08; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007DE0C; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007DE10; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007DE14; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007DE18; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007DE1C; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007DE20; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007DE24; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007DE2C; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007DE34; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007DE3C; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007DE40; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007DE44; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007DE48; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007DE4C; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007DE50; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007DE54; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007DE58; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007DE5C; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007DE60; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DE90; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DE94; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007DEEC; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007DF54; // type:function size:0x8 scope:weak align:4 +getCreature__12FormationMgrFi = .text:0x8007DF5C; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007DF6C; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007DF74; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007DF7C; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x8007DF98; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x8007E078; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8007E120; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x8007E128; // type:function size:0x1E4 scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x8007E30C; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x8007E500; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x8007E6A0; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x8007E9A0; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x8007EC58; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x8007ED44; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x8007EFB0; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x8007F2AC; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x8007F2B4; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x8007F2D4; // type:function size:0xE4 scope:global align:4 +isEnding__11PlayerStateFv = .text:0x8007F3B8; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x8007F410; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x8007F5AC; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x8007F778; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x8007FAA8; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x8007FAD4; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x8007FB44; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x8007FB84; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x8007FBA0; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x8007FC14; // type:function size:0xC scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x8007FC20; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x8007FC28; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x8007FCAC; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x800800A8; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x80080474; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x800804B8; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x800804E4; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x8008054C; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x800805CC; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x800805EC; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x80080604; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x80080660; // type:function size:0xE4 scope:global align:4 +initCourse__11PlayerStateFv = .text:0x80080744; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x800808F4; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x800809C4; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x80080A58; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80080A60; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x80080BB0; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x80080BC4; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x80080BCC; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80080BF4; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80080C1C; // type:function size:0x4C scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80080C68; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80080C70; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80080C78; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80080CC8; // type:function size:0xC4 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x80080D8C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x80080E00; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x80080FF0; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x800810C0; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80081144; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x8008120C; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x80081318; // type:function size:0x458 scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x80081770; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x800817C8; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x800818C8; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x80081914; // type:function size:0x2FC scope:global align:4 +__ct__9DemoFlagsFv = .text:0x80081C10; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x80082204; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x8008225C; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x80082270; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x80082368; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x800823D8; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x80082448; // type:function size:0x7C scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x800824C4; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x800824F4; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x8008251C; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80082750; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x80082780; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x800827C8; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x800827E4; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x800827F4; // type:function size:0x24 scope:weak align:4 +demoCheck__4NaviFv = .text:0x80082818; // type:function size:0x6D8 scope:global align:4 +demoCheck__4PikiFv = .text:0x80082EF0; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x8008313C; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x80083140; // type:function size:0x44C scope:global align:4 +__ct__11ResultFlagsFv = .text:0x8008358C; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x80083748; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x800838C0; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x80083964; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x80083A00; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80083A50; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x80083A74; // type:function size:0xA0 scope:global align:4 +getDocument__11ResultFlagsFRi = .text:0x80083B14; // type:function size:0x180 scope:global align:4 +dump__11ResultFlagsFv = .text:0x80083C94; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x80083DA0; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80083DD0; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x80083E60; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x80083EAC; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x8008431C; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x80084340; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x80084350; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x80084374; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x800843D0; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x80084444; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x80084520; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x80084558; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x800845BC; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x800845D8; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x800846C0; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x8008470C; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x800848E8; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x800849A8; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x800849E8; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x80084A14; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x80085634; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x800856BC; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x80085734; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x800857AC; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x80085824; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x8008589C; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x80085914; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x8008598C; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x80085A04; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80085A7C; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x80085AF4; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80085B6C; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80085BB8; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80085C04; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x80085D64; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x80085D9C; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x80085F0C; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x80085FC4; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x800860D8; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x80086470; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x80086478; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x800864A8; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x800865D4; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x80086660; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x80086664; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x8008668C; // type:function size:0x4 scope:weak align:4 +__ct__7MemStatFv = .text:0x80086690; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x80086710; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x80086738; // type:function size:0x110 scope:global align:4 +end__7MemStatFPc = .text:0x80086848; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x800868C0; // type:function size:0x34 scope:global align:4 +getInfo__7MemStatFPc = .text:0x800868F4; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x80086918; // type:function size:0x238 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x80086B50; // type:function size:0x174 scope:global align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x80086CC4; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80086FA0; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x80087360; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x8008738C; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x800876C8; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x800877AC; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x80087890; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x80087AC8; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x80087BC0; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x80087CE4; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x80087D40; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80087D90; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x80087DC4; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x80087DEC; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x80087E48; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x80087E84; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x80087EA0; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x80087EDC; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x80087F18; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x8008807C; // type:function size:0x4A4 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x80088520; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x80088B8C; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x80088C30; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x80088CD0; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x80088D04; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x80088D38; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x80088EF8; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x80088F00; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x80088F28; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x8008954C; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x80089574; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x800895A8; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x80089708; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x80089710; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x80089770; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x800898EC; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x80089A1C; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x80089AEC; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x80089B50; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x80089B64; // type:function size:0xA4 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x80089C08; // type:function size:0xB0 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x80089CB8; // type:function size:0x78 scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x80089D30; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x80089EEC; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x80089F30; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x8008A028; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x8008A02C; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x8008A038; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x8008A03C; // type:function size:0x4 scope:weak align:4 +finishFixPosition__8CreatureFv = .text:0x8008A040; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x8008A050; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x8008A098; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008A170; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008A248; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008A264; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008A2A8; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008A2CC; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008A314; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008A35C; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008A3CC; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008A42C; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008A504; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008A5B4; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008A5EC; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008A624; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008A718; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008A78C; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008A7F8; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008A854; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008A874; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008A89C; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008A9D4; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008AA3C; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008AA84; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008AC04; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008AC68; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008AC9C; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008ACE0; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008AED8; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008B198; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008B208; // type:function size:0x580 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008B788; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008B97C; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008BA30; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008BB20; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008BC3C; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008C324; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008C3C4; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008C3CC; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008C40C; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008C6C0; // type:function size:0x7BC scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008CE7C; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008CF10; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008CFFC; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008D53C; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008D544; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8008D890; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x8008D8E4; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x8008D954; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8008E0BC; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x8008E0C0; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x8008E160; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x8008E1C8; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x8008E2C4; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x8008E2C8; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x8008E2CC; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x8008E4CC; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x8008E5DC; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x8008F33C; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x8008F43C; // type:function size:0x588 scope:global align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x8008F9C4; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x8008FB24; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x8008FC98; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x8008FDBC; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x8008FED8; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x8008FF40; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x8008FF50; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x8008FF98; // type:function size:0x84 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x8009001C; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x8009005C; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x8009036C; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x800906B8; // type:function size:0x1C0 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80090878; // type:function size:0x6C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x800908E4; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x800909DC; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x80090AC8; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x80090BEC; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80090C84; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x80090CDC; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80090D0C; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x80090DD8; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x80090DE0; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x80090DE8; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80090E04; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x80091058; // type:function size:0xBC scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x80091114; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x80091300; // type:function size:0x360 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x80091660; // type:function size:0x3BC scope:global align:4 +updateStickRope__8CreatureFv = .text:0x80091A1C; // type:function size:0x4A4 scope:global align:4 +__ct__12DualCreatureFv = .text:0x80091EC0; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x80091F54; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80091F88; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x80091FE8; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x80092038; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x8009208C; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x800920DC; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x80092120; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x800921E4; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x80092218; // type:function size:0x21C scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x80092434; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x80092484; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x8009248C; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x80092494; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x800924F4; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x800926BC; // type:function size:0x14C scope:global align:4 +__ct__11DynParticleFv = .text:0x80092808; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x800928E0; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x800928F0; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x800928F4; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x800928F8; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x80092AEC; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x80092BE0; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x80092BFC; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x80092C14; // type:function size:0x100 scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x80092D14; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80092D7C; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80092F08; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x80092F44; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x80093AA8; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80093C58; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80093F0C; // type:function size:0x68 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80093F74; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80093F94; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x80093FA8; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x80094038; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80094094; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x80094098; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x800940BC; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x80094134; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x80094160; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x80094190; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x80094338; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x800943F0; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x80094520; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x800945BC; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x800946A4; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x800946FC; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x800948A4; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x80094978; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x80094A2C; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x80094A30; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x80094A38; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x80094A80; // type:function size:0x94 scope:global align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x80094B14; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x80094B58; // type:function size:0x18 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80094B70; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x80094F00; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x80094F74; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x8009513C; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x800953AC; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x800953E8; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80095478; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x800954A8; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x80095538; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x80095554; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x8009558C; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x80095594; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x800955DC; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x8009562C; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x800956AC; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x80095A4C; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x80095ACC; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x80095B84; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x80095C34; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x80095C38; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x80095C3C; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x80095DA8; // type:function size:0x108 scope:global align:4 +getCentre__6PelletFv = .text:0x80095EB0; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x80095ECC; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x80095F14; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x80095F8C; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x80095FA8; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x80095FB0; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x80096094; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x80096128; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x8009629C; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x80096304; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80096360; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x800963CC; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x8009652C; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x80096604; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x800967A4; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x8009681C; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x80096850; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x80096884; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x800968C8; // type:function size:0xE0 scope:global align:4 +startCarryMotion__6PelletFf = .text:0x800969A8; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x800969EC; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x800969F0; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x800969F4; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x80096A58; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x80096A5C; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x80096AF4; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x80096B28; // type:function size:0x1FC scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x80096D24; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x80096D9C; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80096E30; // type:function size:0x3B8 scope:global align:4 +doAnimation__6PelletFv = .text:0x800971E8; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x80097248; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x8009724C; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x800972D4; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x8009735C; // type:function size:0x94C scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x80097CA8; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x80097CE4; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x80097CE8; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x80097D38; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x80097D58; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x80097DCC; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x800980C4; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x80098280; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x800982E4; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x8009842C; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x80098484; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x800984EC; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x80098564; // type:function size:0x154 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x800986B8; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x8009874C; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x800987A0; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x800989F4; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x80098A4C; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x80098AB8; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x80098BA8; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x80098BFC; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x80098C3C; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x80098CD8; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x80098D10; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x80098D54; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x80098E10; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x80098ECC; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x80098FA0; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x8009907C; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x8009928C; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x80099290; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x80099314; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x8009931C; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x80099324; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x8009932C; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x80099330; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x80099334; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80099338; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x80099340; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x80099348; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x8009934C; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x80099388; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x800994A0; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x800994A4; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x800994A8; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x800994AC; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x800994B0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x800994B4; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x800994B8; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x800994BC; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x800994C0; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x800994C4; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x800994C8; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x800994CC; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800994D4; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x800994DC; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x800994E4; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x800994EC; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x800994F4; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x800994FC; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x8009967C; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x80099750; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x800997E0; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x80099920; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x80099958; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x800999C4; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80099A1C; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x80099A74; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x80099A9C; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x80099AF8; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x80099B44; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x80099C8C; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x80099CC8; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x80099CD0; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x80099D50; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x80099DDC; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x80099E30; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x80099EA0; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x80099EE0; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x80099FE0; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009A3E0; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009A42C; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009A438; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009A4A8; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009A4D8; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009A4F4; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009A540; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009A544; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009A548; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009A54C; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009A594; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009A598; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009A59C; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009A5A0; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009A5F0; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009A5F4; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009A630; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009A654; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009A6A0; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009A6D0; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009A700; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009A7CC; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009A7D0; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009A82C; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009ADA8; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009B07C; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009B080; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009B0B0; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009B0B4; // type:function size:0x4 scope:weak align:4 +beginPush__10HinderRockFv = .text:0x8009B0B8; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009B0C8; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009B0E0; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009B1EC; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009B1F0; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009B214; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009B324; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009B378; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009B40C; // type:function size:0x12C scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009B538; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009B5C0; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009B5C8; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009B5D0; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009B614; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B638; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B6D8; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009B778; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009B8E4; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B970; // type:function size:0x20C scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009BB7C; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009BD30; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009BD50; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009BED0; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009C048; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009C0BC; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009C220; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009C260; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009C268; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009C27C; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009C344; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009C40C; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009C504; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009C8AC; // type:function size:0xA0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009C94C; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009C9C0; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009C9D8; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009CA98; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009CBB4; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x8009D3E4; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x8009D57C; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x8009D6D0; // type:function size:0x2C4 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x8009D994; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x8009DA08; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x8009DAEC; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x8009DBCC; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x8009DECC; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x8009E058; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x8009E0D8; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x8009E188; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x8009E1F0; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x8009E258; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x8009E2C0; // type:function size:0x40 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x8009E300; // type:function size:0x9C scope:global align:4 +flatten__6BridgeFv = .text:0x8009E39C; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x8009E440; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x8009E568; // type:function size:0x394 scope:global align:4 +getStagePos__6BridgeFi = .text:0x8009E8FC; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x8009E9C4; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x8009EA28; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x8009EB10; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x8009EB70; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x8009EBD0; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x8009ECCC; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x8009ECD4; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x8009ECDC; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x8009F100; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x8009F1A0; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x8009F488; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x8009F4B4; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x8009F4BC; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x8009F4D0; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x8009F4DC; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x8009F4E4; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x8009F4EC; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x8009F4F4; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x8009F4FC; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x8009F504; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x8009F508; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x8009F50C; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x8009F578; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x8009F580; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x8009F588; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x8009F590; // type:function size:0x8 scope:weak align:4 +__ct__Q210PathFinder6BufferFv = .text:0x8009F598; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009F5AC; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x8009F660; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x8009F6E8; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x8009F7C0; // type:function size:0x340 scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x8009FB00; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009FB84; // type:function size:0x230 scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x8009FDB4; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x8009FDC8; // type:function size:0x1FC scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x8009FFC4; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x800A000C; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x800A00BC; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A0108; // type:function size:0x3B8 scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A04C0; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A0934; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A109C; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A1208; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A1374; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A14F0; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A162C; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A1688; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A1724; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A1738; // type:function size:0x274 scope:global align:4 +__ct__8WayPointFv = .text:0x800A19AC; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A19C0; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A1AF4; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A1B3C; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A1B68; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A1BF8; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A1FB4; // type:function size:0x580 scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A2534; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A2798; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A2CC4; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A2DF8; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A301C; // type:function size:0x3C0 scope:global align:4 +__ct__5SeMgrFv = .text:0x800A33DC; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A355C; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A3584; // type:function size:0x34 scope:global align:4 +update__5SeMgrFv = .text:0x800A35B8; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A35BC; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A35CC; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A35F0; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A3628; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A370C; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A39F0; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A3A6C; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A3AB8; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A3BEC; // type:function size:0x24 scope:weak align:4 +__ct__9SeContextFv = .text:0x800A3C10; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A3C80; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A3CE8; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A3D84; // type:function size:0xD4 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A3E58; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A3EA0; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A3F34; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A3F8C; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A40AC; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A40C0; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A4138; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A41B0; // type:function size:0x20C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A43BC; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A43E8; // type:function size:0x394 scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A477C; // type:function size:0x108 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A4884; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A48CC; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A4A84; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A4D54; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A4E0C; // type:function size:0x368 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A5174; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A517C; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A5278; // type:function size:0x18 scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A5290; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A5328; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A535C; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A5390; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A53C4; // type:function size:0x34 scope:global align:4 +__ct__13UpdateContextFv = .text:0x800A53F8; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A540C; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A5458; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A5488; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A54D4; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A54F0; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A5514; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A5544; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A55D8; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A5668; // type:function size:0x5C scope:global align:4 +getCreature__6CPlateFi = .text:0x800A56C4; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A56D8; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A5904; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A5934; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A593C; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A5940; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A5B00; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A5CBC; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A5D6C; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A5DBC; // type:function size:0x144 scope:global align:4 +validSlot__6CPlateFi = .text:0x800A5F00; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A5F24; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A6348; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A6624; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A67AC; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A69E0; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A6A18; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800A6CE4; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800A6CEC; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800A6CF4; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800A6D0C; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800A6D30; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800A6D38; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800A6D40; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800A6D48; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800A6D9C; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800A6DF4; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800A6E68; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800A6EB4; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800A6F38; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800A70C8; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800A70D4; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800A7298; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800A732C; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A74A0; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800A77AC; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800A7818; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800A781C; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800A7820; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800A7824; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800A7828; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800A782C; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800A7834; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800A7860; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800A7864; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800A7868; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800A786C; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800A7870; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800A7874; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800A7878; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800A787C; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800A7880; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800A7884; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800A7888; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800A788C; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A79A4; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800A79AC; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800A7A2C; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A7A30; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800A7B04; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800A7BBC; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800A7BFC; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800A7CB0; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800A7CB4; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800A7CC0; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800A7CC4; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800A7D9C; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800A7E08; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800A7E1C; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800A801C; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800A8030; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800A814C; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800A81B0; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800A81C4; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800A8228; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A8294; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800A829C; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800A8364; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800A83C8; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800A8518; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800A8614; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800A8620; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800A8674; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800A867C; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800A8684; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800A89C0; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800A8A24; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800A8A84; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800A8C50; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800A8CEC; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800A8D08; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800A8F70; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800A9DDC; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800A9E28; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800A9E54; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800A9F80; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AA3D8; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AA444; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AA4C0; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AA4C8; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800AA4D0; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800AA5D8; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800AA6CC; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800AA750; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800AA858; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800AA85C; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800AA8D4; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800AABAC; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800AACB0; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800AADA4; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800AADB0; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800AAF34; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800AAF38; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800AAFB0; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800AB06C; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AB344; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AB3C4; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AB4AC; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AB6C0; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AB7E8; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AB7EC; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AB810; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AB814; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AB81C; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AB820; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AB824; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AB8A4; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AB8DC; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800AB9BC; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800AB9D8; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AB9DC; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800AB9F4; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800ABA74; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800ABB00; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800ABBE8; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800ABED0; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800ABED4; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800ABFD8; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800AC058; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800AC0D8; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800AC13C; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AC1BC; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AC220; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AC284; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AC298; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AC2AC; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AC2C0; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AC314; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AC354; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AC3F4; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AC458; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AC584; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AC638; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AC640; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC664; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AC6DC; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC748; // type:function size:0x8 scope:weak align:4 +__ct__6ActBouFP4Piki = .text:0x800AC750; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AC7BC; // type:function size:0xA8 scope:global align:4 +exec__6ActBouFv = .text:0x800AC864; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AC8B0; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800ACAC0; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800ACC40; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800ACD48; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800ACDF0; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800ACE54; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800ACF00; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800ACFDC; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800AD048; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800AD0DC; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AD104; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800AD1B4; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800AD1D8; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800AD538; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800AD618; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800AD924; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800AD9F4; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800AE05C; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AE0DC; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800AE0F0; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800AE160; // type:function size:0x154 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800AE2B4; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AE378; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800AE508; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800AE650; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800AE670; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800AE738; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800AE7C8; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800AE8BC; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800AEBA0; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800AEBBC; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800AEBC0; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AEC2C; // type:function size:0x8 scope:weak align:4 +turnOver__12ActTransportFv = .text:0x800AEC34; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800AEEC4; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800AF014; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800AF1A4; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800AF298; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800AF3F8; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800AF558; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800AF5A4; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800AF738; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800AFC28; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B0368; // type:function size:0x664 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B09CC; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B0B34; // type:function size:0x8B4 scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B13E8; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B1C90; // type:function size:0x318 scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B1FA8; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B2160; // type:function size:0x1D8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B2338; // type:function size:0x8C scope:global align:4 +crInit__12ActTransportFv = .text:0x800B23C4; // type:function size:0x514 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B28D8; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B2958; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B2C84; // type:function size:0x94C scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B35D0; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B3D94; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B4490; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B4510; // type:function size:0x14 scope:weak align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B4524; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B45C8; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B4648; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B46B4; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B4734; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B485C; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B4868; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B4A28; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B4CB0; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B550C; // type:function size:0x98 scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B55A4; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B55A8; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B5628; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B563C; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B56A8; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B56AC; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B5780; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B57C0; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B59FC; // type:function size:0x64 scope:weak align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B5A60; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B5B5C; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B5B64; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B5B90; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B5CEC; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B5DD0; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B5E04; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B5F20; // type:function size:0xFC scope:global align:4 +exec__8ActCrowdFv = .text:0x800B601C; // type:function size:0x164C scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800B7668; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800B76C0; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800B76C4; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800B7744; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800B774C; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800B7760; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800B77B4; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800B792C; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800B7988; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B798C; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800B7990; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800B7EA4; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B7F10; // type:function size:0x8 scope:weak align:4 +__ct__8ActEnterFP4Piki = .text:0x800B7F18; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800B7F78; // type:function size:0x1F0 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800B8168; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800B8234; // type:function size:0xE8 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800B831C; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800B8374; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800B8520; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800B8754; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800B8778; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800B87DC; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800B8858; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800B885C; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800B8954; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800B8994; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800B8C60; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800B8CB8; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800B8D1C; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800B8D7C; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800B8E3C; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800B8E68; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800B9150; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800B9210; // type:function size:0x64 scope:weak align:4 +__ct__7ActMineFP4Piki = .text:0x800B9274; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800B92F4; // type:function size:0x64 scope:global align:4 +initWatch__7ActMineFv = .text:0x800B9358; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800B93E8; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800B9534; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800B9734; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B9738; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800B97F8; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B9878; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800B988C; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800B9BB8; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800B9C14; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800B9D5C; // type:function size:0xF4 scope:global align:4 +cleanup__12ActFormationFv = .text:0x800B9E50; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800B9E9C; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BA540; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BA5AC; // type:function size:0x8 scope:weak align:4 +__ct__7ActFreeFP4Piki = .text:0x800BA5B4; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BA680; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BA750; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BA914; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BAC08; // type:function size:0xAC scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BACB4; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BACB8; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BADA8; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BAE80; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BAF00; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BAF08; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BAF1C; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BAF68; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BAFE4; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BB0B8; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BB0F8; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BB470; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BB4D4; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BB4E8; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BB56C; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BB630; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BB74C; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BB758; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BBE74; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BC068; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BC164; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BC3BC; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800BC5B4; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800BC63C; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800BC6C4; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800BC888; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800BCA4C; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800BCAB0; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800BCB90; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800BCD10; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800BCDC0; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800BCEA8; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800BCEE8; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BD044; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800BD164; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800BD19C; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800BD210; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800BD290; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BD304; // type:function size:0x14 scope:weak align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800BD318; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800BD3E4; // type:function size:0x20 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800BD404; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800BD468; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800BD4EC; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800BD560; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800BD56C; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800BD5AC; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800BD5B0; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800BD624; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800BD724; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800BD974; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800BDA50; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800BDAA0; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDB14; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800BDB8C; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800BDBE8; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800BDC7C; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800BDEBC; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800BDF28; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDF9C; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800BDFA4; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800BE044; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800BE0DC; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800BE1A8; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800BE2B8; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800BE3F4; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE608; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800BE8DC; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800BE914; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE994; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800BE9A8; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800BEA48; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800BEAD0; // type:function size:0x48C scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800BEF5C; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800BF11C; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800BF128; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800BF300; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800BF464; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800BF5D0; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800BF89C; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800BF8A8; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800BF92C; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800BFA78; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800BFCB4; // type:function size:0x210 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800BFEC4; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800BFEFC; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800BFF00; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800BFF5C; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C0368; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C06A8; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C0714; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C088C; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C08CC; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C0930; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C09B0; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C09C4; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C0CBC; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C0D48; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C0D4C; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C0E34; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C0E38; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C11F4; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C1238; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C129C; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C1334; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C1378; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C14C4; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C1530; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C1594; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C1678; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C1704; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C177C; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C1900; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C1A6C; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C1A8C; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C1D40; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C1D44; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C1DC4; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C1DD8; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C1E38; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C1FB0; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C2020; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C20BC; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C2120; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C2240; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C22F0; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C2468; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C2634; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C2674; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C26B4; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C2760; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C27BC; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C2844; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C2B20; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C2B8C; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C2C00; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C2C08; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C2C0C; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C2CD0; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C2CD4; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C2E1C; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C2E64; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C2E9C; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C2FF8; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C305C; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C30B0; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C3108; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C3168; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C3194; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C3204; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C33E4; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C33F0; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C3604; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C3690; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C3770; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C3A24; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C3A90; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C3A98; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C3CD8; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C3D84; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C3DBC; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C3E34; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C3EB4; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C3EC0; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C3EC8; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C3FA8; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C40F4; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C41D4; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C4324; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C4448; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C4458; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C44C8; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C45A4; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C4BF0; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C4C78; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C4D60; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C52F8; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C537C; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C53C8; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C5414; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C5460; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C54F0; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C557C; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C55B8; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C5600; // type:function size:0x88 scope:weak align:4 +initGame__10PikiInfMgrFv = .text:0x800C5688; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C56B0; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C5728; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C5798; // type:function size:0x34 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C57CC; // type:function size:0x1C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C57E8; // type:function size:0x34 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C581C; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C5848; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C58A4; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C58A8; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C5904; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C5908; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C59A8; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C5A9C; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C5B60; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C5C78; // type:function size:0x14 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C5C8C; // type:function size:0x14 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C5CA0; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C5E10; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C5EE0; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C5F38; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C5F80; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C5FA4; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C5FC8; // type:function size:0xC4 scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C608C; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800C6158; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800C6184; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800C6258; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800C6338; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800C6398; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800C63C8; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800C642C; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800C64B4; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800C64D4; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800C64D8; // type:function size:0x34 scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800C650C; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800C680C; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800C68B8; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800C68BC; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800C695C; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800C6960; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800C6A34; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800C6A3C; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800C6A6C; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800C6A70; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800C6AB4; // type:function size:0x35C scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800C6E10; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800C6FDC; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800C749C; // type:function size:0x700 scope:global align:4 +crGetPoint__4PikiFi = .text:0x800C7B9C; // type:function size:0xB8 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800C7C54; // type:function size:0x68 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800C7CBC; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800C7D1C; // type:function size:0x108 scope:global align:4 +hasBomb__4PikiFv = .text:0x800C7E24; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800C7E40; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800C7ED0; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800C7F34; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800C8070; // type:function size:0x404 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800C8474; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800C847C; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800C84C8; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800C84EC; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800C8508; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800C8514; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800C852C; // type:function size:0x1300 scope:global align:4 +initColor__4PikiFi = .text:0x800C982C; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800C9904; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800C9934; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800C9984; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800C9A1C; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800C9AB8; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800C9B50; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800C9CF8; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800C9D70; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800C9D98; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800C9E30; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800C9E6C; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800C9EE0; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800C9F54; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800C9FE0; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800C9FE4; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800CA0C0; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CA0C4; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CA1A0; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CA204; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CA2BC; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CA2C4; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CA3D4; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CA498; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CA4DC; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CA534; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CA538; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CA5B8; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CA698; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CA6D0; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CA98C; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CABC0; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CAC08; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CAD98; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CB910; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CB918; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CBD18; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CBD8C; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CBE50; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CBF2C; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CBF4C; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800CBF90; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800CBFF8; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800CC2E4; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800CC2E8; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800CC320; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800CC334; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800CC680; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800CC688; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800CC6D8; // type:function size:0x448 scope:global align:4 +realAI__4PikiFv = .text:0x800CCB20; // type:function size:0x53C scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800CD05C; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800CD098; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800CD09C; // type:function size:0xE4 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800CD180; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800CD3CC; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800CD61C; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800CD638; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800CD63C; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800CD640; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800CD6F0; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800CD6F4; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800CD6F8; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CD7B0; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800CD7B8; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800CD7C8; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800CD7E0; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800CD904; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800CDC84; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800CDD40; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800CDF98; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800CED28; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800CED40; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800CEDBC; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800CEDDC; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800CEDFC; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800CEE2C; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800CEE70; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800CF008; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800CF08C; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800CF094; // type:function size:0x8 scope:weak align:4 +init__16PikiStateMachineFP4Piki = .text:0x800CF09C; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D04C4; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D04F0; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D04F4; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D05D4; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D0604; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D0650; // type:function size:0xA0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D06F0; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D08FC; // type:function size:0x2C scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D0928; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D09DC; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D0A24; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D0AAC; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D0AD8; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D0B44; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D0B48; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D0B4C; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D0B60; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D0C54; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D0CA0; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D0D44; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D0E2C; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D0F3C; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D0F40; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D0F9C; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D11A4; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D1580; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D1584; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D1730; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D178C; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D1830; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D1A98; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D1ADC; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D1AE0; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D2298; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D22BC; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D2308; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D2434; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D2588; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D2608; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D2654; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D2738; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D288C; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D2890; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D28E0; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D28F0; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D29F4; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D2A0C; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D2A58; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D2AC8; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D2EB8; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D2F18; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D2F1C; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D2F68; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D30D0; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D3270; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D3504; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D35FC; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D3648; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D376C; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D3804; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D3974; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D3BA4; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D3C44; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D3C94; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D3D18; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D3D1C; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D3FA4; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D3FA8; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D3FF4; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D407C; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D4080; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D40FC; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D41D0; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D41D4; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D4230; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D4368; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D43A4; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D4548; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D49EC; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D49F0; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D4A3C; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D4A98; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D4C0C; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D4C10; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D4C5C; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D4C94; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D4D48; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D4D8C; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D4DB0; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D4E00; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D4E38; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D4EEC; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D4F30; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D4F54; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D4FA0; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D5044; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D5084; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D5094; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D5120; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D51D4; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D5260; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D5284; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D52A8; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D5358; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D5718; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D575C; // type:function size:0x6DC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D5E38; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D5E3C; // type:function size:0xE8 scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800D5F24; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800D5F70; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800D5FEC; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800D5FF0; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800D5FF4; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800D6038; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800D6088; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800D6134; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800D6160; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800D61D8; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800D61DC; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800D6270; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800D62BC; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800D6384; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800D641C; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800D6420; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800D6554; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800D65A0; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800D65A4; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800D65A8; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800D65AC; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800D65DC; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800D65E0; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800D6628; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800D6674; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800D66FC; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800D684C; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800D6858; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800D6888; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800D688C; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800D68C4; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800D693C; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800D698C; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800D6A1C; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800D6B10; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800D6B1C; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800D6B4C; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800D6B50; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800D6BF4; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800D6BF8; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800D6C78; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800D6CC4; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800D6CC8; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800D6EC8; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800D6ECC; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800D6F1C; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800D7068; // type:function size:0x78 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800D70E0; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800D70E4; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800D7130; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800D71DC; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800D71E0; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800D7444; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800D75D4; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800D7624; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800D7700; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800D7778; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800D777C; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800D7818; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800D7864; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800D7888; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800D78BC; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800D79FC; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800D7A00; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800D7A4C; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800D7B68; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800D7B9C; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800D7BA0; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800D7C30; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800D7C7C; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800D7CB0; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800D7D4C; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800D7D68; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800D7DC8; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800D854C; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800D8550; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800D8708; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800D873C; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800D87C0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800D87C8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800D87D0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800D87D8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800D87E0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800D87E8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800D87F0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800D87F8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800D8800; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800D8808; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800D8810; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800D8818; // type:function size:0x30 scope:weak align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800D8848; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800D8870; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800D8898; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800D88D4; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800D8A88; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800D8B24; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800D8B44; // type:function size:0x128 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800D8C6C; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800D8CCC; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800D8D80; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800D8FEC; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800D9050; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800D9054; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800D91D0; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800D95D8; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800D9678; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800D9690; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800D96A4; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800D9A1C; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800DA094; // type:function size:0xB48 scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DABDC; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DAC0C; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DAC3C; // type:function size:0x2C scope:global align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DAC68; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DAC98; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DACA4; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DACC4; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DACE4; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DACE8; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DADE4; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DAE34; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DAFB0; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DB0E0; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DB23C; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB28C; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB2F8; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB364; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB424; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB4E4; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB56C; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB5F4; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB698; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DB73C; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DB7B8; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DB834; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DB90C; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DB9A4; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DB9F4; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DBA34; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DBA94; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DBC04; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800DBD58; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBD90; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBE94; // type:function size:0x78 scope:global align:4 +init__9GeneratorFv = .text:0x800DBF0C; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800DC148; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800DC14C; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800DC150; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800DC1D8; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800DC1DC; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800DC388; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800DC38C; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800DC390; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800DCAC4; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800DCB30; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800DCB9C; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800DCC08; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800DD368; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800DD87C; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800DD8BC; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800DD8D8; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800DD978; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800DD9C4; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800DDA20; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDC94; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDD00; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800DDD6C; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800DDF80; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800DE024; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800DE1DC; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800DE344; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800DE34C; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800DE430; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800DE568; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800DE570; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800DE6B4; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800DE7EC; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800DE874; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800DE878; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800DEA1C; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800DEB4C; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800DEBA4; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800DEBDC; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800DEC4C; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800DECFC; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800DED04; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800DED08; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800DED10; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800DED14; // type:function size:0x8 scope:weak align:4 +__ct__14GeneratorCacheFv = .text:0x800DED1C; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800DEE4C; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800DEE64; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800DEF1C; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DF010; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DF144; // type:function size:0x23C scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF380; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF48C; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800DF598; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800DF5C0; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800DF720; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800DF848; // type:function size:0x19C scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800DF9E4; // type:function size:0x90 scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800DFA74; // type:function size:0x80 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800DFAF4; // type:function size:0x160 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFC54; // type:function size:0x118 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFD6C; // type:function size:0x11C scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800DFE88; // type:function size:0x124 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800DFFAC; // type:function size:0x168 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E0114; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E0170; // type:function size:0x6C scope:global align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E01DC; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E02E8; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E040C; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E0518; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E051C; // type:function size:0x264 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E0780; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E08EC; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E0A08; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E0C64; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E0ED8; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E1000; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E10A4; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E1158; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E1210; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E12AC; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E133C; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E1428; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E14D4; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E1558; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E1594; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E15EC; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E1648; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E1664; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E19EC; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E1CF8; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E1F58; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E1FD4; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E20DC; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E2188; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E2224; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E22CC; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E22D0; // type:function size:0x88 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E2358; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E23C0; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E23D4; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E24F0; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E2570; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E25B4; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E260C; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E2668; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E2684; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E26AC; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E296C; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E2D70; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E2DF8; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E2E00; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E2E08; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E2E4C; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E2E70; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E2EDC; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E2EE4; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E2F50; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E2F58; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E2F60; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E2F68; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E2F6C; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E33D8; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E3BC4; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E3C34; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E3E0C; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E3E48; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E3EA8; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E4090; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E4294; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E42C0; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E42C8; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E42D0; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E42EC; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E4304; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E4310; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E4320; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E4344; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E4428; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E4624; // type:function size:0xC scope:weak align:4 +workable__7RockGenFv = .text:0x800E4630; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E4650; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E4668; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E4680; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E46A0; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E46B8; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E46D0; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E492C; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E4B88; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E4C28; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E4EAC; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E4EC0; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E4ED0; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E4F2C; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E4F3C; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E4F78; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E4FF8; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E5024; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E51B4; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E51BC; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E529C; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E533C; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E5580; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E5594; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E55A4; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E5600; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E562C; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E57BC; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E57C4; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E58A4; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E58A8; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E58AC; // type:function size:0x1CC scope:global align:4 +startAI__4WeedFi = .text:0x800E5A78; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800E5A9C; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800E5B68; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800E5C04; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800E5D0C; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800E5D20; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800E5D28; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800E5D3C; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800E5D44; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800E5D58; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800E5D60; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800E5D68; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800E5D7C; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800E5D84; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800E5D8C; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800E5E30; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800E5F48; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800E5FA8; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800E5FE0; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800E5FFC; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800E6004; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800E600C; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800E6044; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800E6188; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800E6260; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800E630C; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800E633C; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800E6344; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800E634C; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800E6400; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800E64EC; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800E65FC; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800E6604; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800E660C; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800E6614; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800E661C; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800E66CC; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800E66EC; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800E68A0; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800E69E0; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800E6F34; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800E6FCC; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800E7080; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800E71A4; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800E72F0; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800E73A8; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800E747C; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800E76C8; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800E77F4; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800E7818; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800E7970; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800E79E8; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800E7D78; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800E7D94; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800E7DEC; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800E7E50; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800E7E94; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800E7F18; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800E7FD4; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800E8080; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800E812C; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E825C; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800E86B0; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800E86B8; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800E88AC; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800E88C0; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800E88C8; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800E8988; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800E8C44; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800E8C4C; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800E8C54; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800E8D04; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800E8E74; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800E8EBC; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800E8F28; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800E9040; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800E9158; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800E923C; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800E9740; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800E9748; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800E9750; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E9758; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800E9760; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800E98B8; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800E98E0; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800E9B90; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800E9BCC; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800E9C28; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800E9CCC; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800E9D04; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800E9D14; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800E9D28; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800E9D70; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800E9E90; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800E9FD4; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800EA05C; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800EA0DC; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800EA144; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800EA1EC; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800EA244; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800EA24C; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EA2A4; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800EA350; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800EA438; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800EA440; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800EA448; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800EA520; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800EA524; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800EA5BC; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800EA664; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800EA668; // type:function size:0x60 scope:global align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800EA6C8; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800EA708; // type:function size:0x760 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EAE68; // type:function size:0xB4 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EAF1C; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EB094; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EB0EC; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EB0F4; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EB118; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EB20C; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EB2D0; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EB2F0; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EB56C; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EB574; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EB684; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EB6A0; // type:function size:0x44 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EB6E4; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EB760; // type:function size:0x104 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800EB864; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800EB894; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800EB8A8; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800EBD3C; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800EBDB0; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800EBDDC; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800EBDE4; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800EBDEC; // type:function size:0x2D4 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800EC0C0; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800EC438; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800EC454; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800EC45C; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800EC464; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800EC46C; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EC474; // type:function size:0x8 scope:weak align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800EC47C; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800EC4DC; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800EC50C; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800EC580; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800EC5D8; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800EC5E0; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800EC648; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EC650; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800EC7DC; // type:function size:0x150 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800EC92C; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800EC9B8; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800ECA44; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800ECA4C; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800ECA54; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800ECA5C; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800ECFA8; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800ED0B0; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800ED1B0; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800ED1B8; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800ED260; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800ED268; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800ED2BC; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800ED2C8; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800ED2E8; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800ED324; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800ED430; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800ED434; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800ED43C; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800ED588; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800ED5E8; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800ED608; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800ED624; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800ED678; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800ED684; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800ED72C; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800ED74C; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800ED754; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800ED774; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800ED978; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800ED980; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800ED988; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800ED990; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800EDA40; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800EDA48; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800EDA50; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800EDA9C; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800EDD2C; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800EDD30; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800EDD64; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800EDD6C; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800EDD74; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800EDD7C; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800EDD84; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800EDE60; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800EDE68; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800EDEAC; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800EDEC0; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800EDEC8; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800EDF04; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800EE140; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800EE150; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800EE288; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800EE2C4; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800EE2CC; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE2D4; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE37C; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800EE424; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800EE57C; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800EE608; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800EE724; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800EE824; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800EE854; // type:function size:0x448 scope:global align:4 +__ct__8SluiceAIFv = .text:0x800EEC9C; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800EEFD8; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800EF014; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800EF080; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800EF090; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800EF11C; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800EF1A8; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800EF214; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800EF720; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800EF834; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800EF878; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800EF8A0; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800EF8C4; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800EF8D0; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800EF904; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800EF98C; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800EFA0C; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800EFA80; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800EFAD8; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800EFBB0; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800EFCE0; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800EFE28; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800EFE5C; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800EFED8; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800EFF30; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800EFF58; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F02E8; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F0368; // type:function size:0x70 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F03D8; // type:function size:0xE3C scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F1214; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F1248; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F1254; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F12D4; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F12F8; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F1374; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F1754; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F177C; // type:function size:0xB8 scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F1834; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F186C; // type:function size:0x460 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F1CCC; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F1CD0; // type:function size:0x32C scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F1FFC; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F2000; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F2078; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F2138; // type:function size:0x178 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F22B0; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F2348; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F259C; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F25DC; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F2604; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F27DC; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F2830; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F28B0; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F28D8; // type:function size:0x54 scope:weak align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F292C; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F296C; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F2AA8; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F2BEC; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F2D00; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F30C0; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F3220; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F3594; // type:function size:0x2BC scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F3850; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F3944; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F431C; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F4324; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800F5860; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800F5928; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800F5998; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800F59A0; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800F59A8; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800F59B4; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800F59BC; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800F59E8; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800F5A30; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800F5A7C; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800F5AD4; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800F5B30; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800F5B64; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800F5BA8; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800F5BE4; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800F5C2C; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800F5E4C; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800F5EC0; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800F5F00; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800F5F40; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800F5F74; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800F5FB4; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800F5FF4; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800F62C8; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800F6328; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F6598; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800F66DC; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800F6740; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800F6908; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800F6998; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800F69F8; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800F6A4C; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800F6BF0; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800F6BF4; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800F6C3C; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800F6CE8; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800F6E64; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800F6E88; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800F6FA8; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800F7010; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800F7078; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800F727C; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800F72E0; // type:function size:0x64 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800F7344; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800F751C; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800F75BC; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800F761C; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800F7768; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800F77EC; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800F7870; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800F78F4; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800F78FC; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800F7904; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800F790C; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800F7948; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800F7950; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800F7958; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800F795C; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800F79D8; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800F7A08; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800F7A74; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800F7AE0; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800F7B4C; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800F7BB8; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800F7BC0; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800F7BC4; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800F7BCC; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800F7BFC; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800F7C04; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800F7C34; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F7C64; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800F7CCC; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800F7D3C; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800F7D44; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800F7DD4; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800F7E40; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800F80A8; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800F80E4; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800F8154; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800F81E0; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800F81E4; // type:function size:0xB8 scope:global align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800F829C; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800F8338; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800F8394; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800F83BC; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800F83C4; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800F83CC; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800F83F4; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800F84A4; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800F84A8; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800F84AC; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800F84E4; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800F84F8; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800F850C; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800F8518; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800F8524; // type:function size:0x410 scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800F8934; // type:function size:0x228 scope:global align:4 +__ct__8NaviPropFv = .text:0x800F8B5C; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800F977C; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800F979C; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800F97BC; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800F97DC; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800F97E0; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800F97E8; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800F9A1C; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800F9B3C; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800F9B40; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FA1A8; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FA1FC; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FA23C; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FA644; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FA650; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FA698; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FA824; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FA85C; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FA8AC; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FAC68; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FAC9C; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FB19C; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FB390; // type:function size:0x7C4 scope:global align:4 +callDebugs__4NaviFf = .text:0x800FBB54; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x800FBED0; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x800FC6AC; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x800FC770; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x800FC7AC; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x800FC7B0; // type:function size:0xA40 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x800FD1F0; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x800FD22C; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x800FD284; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x800FD288; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x800FD2D4; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x800FD320; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x800FD370; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x800FD548; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x800FD8B8; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x800FD8BC; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x800FDAA4; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x800FE3A0; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x800FEBF8; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x800FF1A0; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x800FF288; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x800FF560; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x800FF75C; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x800FF760; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x800FF79C; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x800FF7D8; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x800FF8F0; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x800FF8F4; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x800FF8F8; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x800FF8FC; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x800FF900; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x800FF904; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x800FF908; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x800FF90C; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x800FF910; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x800FF914; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x800FF918; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x800FF91C; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x800FF990; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x800FFA54; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x800FFB50; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x800FFBE4; // type:function size:0x114 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x800FFCF8; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x800FFE9C; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x800FFFAC; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x80100164; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x8010027C; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x801002FC; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x80100440; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x80100530; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x80100620; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x801006E0; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80100914; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x80100970; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x80100984; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x80100CC4; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x80101040; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x80101064; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x80101068; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x8010106C; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x801010B0; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x801010B8; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x801010C0; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x801010C4; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x801010CC; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x801010D4; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x801010DC; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x801010E4; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x801010EC; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x801010F4; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x801010FC; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x801026D0; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x80102714; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x80102780; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x80102980; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x801029D0; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x80102A00; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x80102A44; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x80102A98; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x80102B60; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x80102C4C; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x80102CD0; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x80102D14; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x80102D18; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x80102D34; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x80102D38; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x80102D8C; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80102E1C; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x8010315C; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x80103160; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x801031B4; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x801032C0; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x801035D0; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x801039A4; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x801039A8; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x801039E8; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x80103A6C; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x80103A98; // type:function size:0xDE8 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x80104880; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x801048A4; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x80104904; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x80104918; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x80104924; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x80104978; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80104A00; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x80104AB8; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80104F20; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x80104F68; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x80104F98; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x80105044; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x80105248; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x80105278; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x80105290; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x80105378; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x80105560; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x80105588; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x801055C0; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x80105604; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x80105608; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x80105678; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x801056C4; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x801056E8; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x8010572C; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x801057A0; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x801059FC; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x80105A00; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x80105A44; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x80105B20; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x80105B24; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x80105B28; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x80105B58; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x80105B9C; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x80105C30; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x80105C4C; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x80105C90; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x80105C94; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x80105CD8; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x80105DA4; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x80105EE0; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x80105F44; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x80105F50; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x80105F94; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x801060B8; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x80106230; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x80106380; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x801063B4; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x80106408; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x80106548; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x8010675C; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x8010687C; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x80106910; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x80106944; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x80106988; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x801069B4; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x801069E4; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x80106B1C; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x80107108; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x80107170; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x801071DC; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x80107220; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x801072C0; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x80107350; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x80107354; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x801073E4; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x80107428; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x80107454; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x80107484; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x80107850; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x801078DC; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x80107E78; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x80107FE4; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x80107FE8; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x8010802C; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x801080D0; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x801080DC; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x80108224; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x8010831C; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x80108320; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x80108364; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x801083F4; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x8010863C; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x80108650; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x80108744; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x80108748; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x8010878C; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x8010881C; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x801089C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x801089C8; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x80108AAC; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x80108AB8; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x80108AFC; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x80108C80; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x80108D90; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x80108DC8; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x80108EF4; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x80108F54; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x80108F80; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x80108FB0; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x80109194; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x801095F0; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x80109600; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x80109644; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x80109654; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x80109748; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x8010974C; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x80109790; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x80109804; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x80109808; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x8010980C; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x80109850; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x801098F4; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x801098F8; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x801098FC; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x80109940; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x8010996C; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x8010999C; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x80109A68; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x80109E8C; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x80109E90; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x80109F10; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x80109F54; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x80109F58; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x80109F5C; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x80109F60; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x80109FA4; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x8010A048; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x8010A04C; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x8010A09C; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x8010A0A0; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x8010A0E4; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x8010A0E8; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010A104; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010A108; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010A14C; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010A150; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010A2A4; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010A2C0; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010A2C4; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010A318; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010A35C; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010A3F4; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010A448; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010A44C; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010A450; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010A4BC; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010A730; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010A80C; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010AAB0; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010AAE4; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010AB68; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010ABAC; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010ACB0; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010AD00; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010AD4C; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010ADF4; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010AE38; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010AF08; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010AF58; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010AF80; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010AFF8; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010B000; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010B008; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010B010; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010B018; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010B020; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010B028; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010B030; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010B038; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010B040; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010B044; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010B04C; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010B054; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010B05C; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010B064; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010B06C; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010B080; // type:function size:0x14 scope:weak align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010B094; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B50C; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B59C; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B8E8; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B918; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010B9C8; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010B9CC; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010B9D0; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010BAFC; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BB00; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BB84; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BB88; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BB8C; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BC08; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BCA4; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BCA8; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BD68; // type:function size:0x2C8 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010C030; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C034; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C0AC; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C0B0; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C0B4; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C12C; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C130; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x8010C134; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x8010C208; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x8010C408; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x8010C8A8; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CA08; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CA44; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x8010CA48; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x8010CC60; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CC94; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CCD0; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x8010CDE8; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x8010CDEC; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x8010CDF0; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x8010CDF4; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x8010CDF8; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010CDFC; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x8010CE00; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x8010CE04; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x8010CE08; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x8010CE0C; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x8010CE10; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE14; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE18; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE1C; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x8010CE20; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x8010CE60; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x8010CF4C; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFi = .text:0x8010D3B0; // type:function size:0x254 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x8010D604; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x8010D754; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x8010D8DC; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x8010DA58; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x8010DD78; // type:function size:0xD94 scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x8010EB0C; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x8010EC3C; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x8010ECCC; // type:function size:0xCD4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x8010F9A0; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x8010FE00; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x801107A4; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x80110A54; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x80110A60; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x80110A98; // type:function size:0x568 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x80111000; // type:function size:0x5A4 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x801115A4; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x80111804; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x80111DC8; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x80111DD4; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80111E20; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x80111FBC; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x80111FE0; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x80112030; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x801120B0; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x80112130; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x80112188; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x801121F0; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80112288; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80112330; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x801123C8; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x8011246C; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x80112514; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x801125D8; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x801125DC; // type:function size:0x9C scope:local align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x80112678; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x80112714; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x801128C4; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x80112A84; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x80112C3C; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x80112E68; // type:function size:0x254 scope:global align:4 +__ct__11SlimeEffectFv = .text:0x801130BC; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x80113124; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x80113140; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x8011315C; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801131EC; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x80113288; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x801132D4; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x80114228; // type:function size:0x10 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x80114238; // type:function size:0x44 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x8011427C; // type:function size:0x44 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x801142C0; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x801142F4; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x80114380; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x801143B4; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x80114434; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x80114450; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x8011446C; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x801144B8; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x80114538; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x80114554; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x80114570; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x8011458C; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x801145D8; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x8011470C; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x801147A0; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x801147D4; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x80114808; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x80114824; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x80114840; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x8011498C; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x801149FC; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x80114A04; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x80114BC8; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x80114BE4; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x80114C30; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x80114D10; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80114D80; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x801150CC; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x801151A4; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x801151A8; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x80115298; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x8011529C; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x801152E0; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x80115318; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x80115320; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x801153E0; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x80115494; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x801154C8; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x801154FC; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x80115530; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x80115564; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x80115660; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801156F4; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x80115A58; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x80115A90; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115ACC; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115AD4; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115ADC; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x80115AE4; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x80115BB0; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x80115C00; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x80115C50; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x80115DB8; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x80115DC0; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x80115ECC; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x80115FD8; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x80115FE4; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x80116000; // type:function size:0x68 scope:global align:4 +selectRandomly__FP6Choicei = .text:0x80116068; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x80116118; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x80116128; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x80116180; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x801161F0; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x80116260; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x801162B4; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x801162DC; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x8011630C; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x80116344; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x80116350; // type:function size:0x28 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x80116378; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x801164E4; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x80116908; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x80116B74; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x80116D5C; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x8011711C; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x8011729C; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x801172FC; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x8011731C; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x80117390; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x801173A8; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x801174C4; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x801175D4; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x801176F0; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x80117720; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x801177A4; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x801177AC; // type:function size:0x8 scope:weak align:4 +makeObjectMapParts__Fv = .text:0x801177B4; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x80117974; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x80117A04; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x80117B1C; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x80118180; // type:function size:0x27C scope:global align:4 +init__8MapPartsFv = .text:0x801183FC; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x80118400; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x80118418; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x80118474; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x801184EC; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x801185EC; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x801186BC; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x801186FC; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x80118A68; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x80118C54; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x80118C58; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x80118C5C; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x8011992C; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x80119968; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x80119A0C; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x80119A88; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x80119B00; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x80119B8C; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x80119BCC; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x80119C3C; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x80119C60; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x80119C84; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x80119C94; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x80119D5C; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x80119DA4; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x80119E5C; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x80119E94; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x80119F38; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011A2F8; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011A2FC; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011A3A8; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011A43C; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011A4A0; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011A918; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011AA04; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011AADC; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011AB0C; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011AC24; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011AC9C; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011AD28; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011AD68; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011AE34; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x8011AFC4; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x8011AFF0; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x8011B074; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8011B07C; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8011B08C; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x8011B094; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x8011B0A0; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x8011B1E8; // type:function size:0x3C scope:global align:4 +makeObjectTeki__Fv = .text:0x8011B224; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x8011B264; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x8011B2EC; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B378; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B40C; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x8011B474; // type:function size:0x70 scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8011B4E4; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8011B604; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x8011B63C; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x8011B664; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x8011B778; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x8011B7D0; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x8011B84C; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x8011B874; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x8011B904; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x8011BA38; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x8011BA90; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x8011BACC; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x8011BAEC; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x8011BB30; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BBD8; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BC30; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x8011BC50; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x8011BCD0; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x8011BCF0; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x8011BD60; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x8011BDF0; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x8011BE5C; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x8011BE80; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8011BEA4; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8011BEF4; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x8011BF6C; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x8011C040; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x8011C08C; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x8011C2E0; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x8011C2FC; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x8011C338; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x8011C368; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x8011C388; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x8011C398; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x8011C440; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x8011C4E4; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x8011C578; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C618; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C688; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x8011C6BC; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x8011C790; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x8011C7C4; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x8011C828; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x8011C8EC; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x8011C950; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x8011C958; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x8011C9D8; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x8011CA60; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x8011CBFC; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x8011CC28; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x8011CC4C; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x8011CD18; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x8011CD28; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x8011CD50; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x8011CD80; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x8011CDAC; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x8011CDD8; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x8011CE18; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x8011CE34; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x8011CE74; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CE84; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CEC4; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x8011CEF8; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x8011CF6C; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x8011CF70; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x8011D058; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x8011D134; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x8011D140; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x8011D2D8; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D354; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D3C4; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x8011D3F8; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x8011D4B8; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x8011D51C; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x8011D5B8; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x8011D604; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D63C; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D6A4; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D6F4; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x8011D7D0; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x8011D890; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x8011D8B4; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x8011D938; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x8011DA08; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x8011DAA0; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x8011DD60; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x8011DDB8; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DDC4; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DEA4; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x8011DF94; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x8011E050; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x8011E11C; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x8011E154; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x8011E190; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x8011E1C8; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x8011E200; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x8011E238; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x8011E288; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x8011E39C; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x8011E3DC; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x8011E40C; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x8011E444; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x8011E494; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x8011E4E4; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x8011E514; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x8011E568; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x8011E5A0; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x8011E5D8; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x8011E60C; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x8011E748; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x8011E7C4; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x8011E7F4; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x8011E7FC; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x8011E890; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x8011E8C4; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x8011E8F4; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x8011E92C; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x8011E970; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x8011E9C4; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x8011EA00; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x8011EB3C; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x8011EB8C; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x8011ECA0; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x8011ECD0; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x8011ED04; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x8011ED34; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x8011ED68; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x8011EDB8; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x8011EDEC; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x8011EE3C; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x8011EE6C; // type:function size:0x44 scope:weak align:4 +__ct__14PaniMotionInfoFi = .text:0x8011EEB0; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EEE4; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EF14; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x8011EF20; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x8011EF54; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x8011EF60; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x8011EFCC; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x8011F038; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8011F07C; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x8011F0E8; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x8011F0F0; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F118; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F188; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x8011F238; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x8011F344; // type:function size:0xD0 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x8011F414; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x8011F5D4; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x8011F6F8; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x8011F74C; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x8011F7F8; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x8011F834; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x8011F8B0; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8011F910; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8011F968; // type:function size:0x58 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8011F9C0; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x8011FA18; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x8011FA9C; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x8011FB5C; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x8011FBAC; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x8011FE14; // type:function size:0x3C scope:global align:4 +__ct__12PaniTestNodeFv = .text:0x8011FE50; // type:function size:0x554 scope:global align:4 +setTestMode__12PaniTestNodeFi = .text:0x801203A4; // type:function size:0x84 scope:global align:4 +update__12PaniTestNodeFv = .text:0x80120428; // type:function size:0x48C scope:global align:4 +updatePikis__12PaniTestNodeFv = .text:0x801208B4; // type:function size:0x2B4 scope:global align:4 +updateTekis__12PaniTestNodeFv = .text:0x80120B68; // type:function size:0x1BC scope:global align:4 +animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80120D24; // type:function size:0x6C scope:global align:4 +draw__12PaniTestNodeFR8Graphics = .text:0x80120D90; // type:function size:0x684 scope:global align:4 +drawPiki__12PaniTestNodeFP8ViewPikiR8Graphics = .text:0x80121414; // type:function size:0x34 scope:global align:4 +drawTeki__12PaniTestNodeFP4TekiR8Graphics = .text:0x80121448; // type:function size:0x34 scope:global align:4 +init__15PaniTestSectionFv = .text:0x8012147C; // type:function size:0x78 scope:global align:4 +@32@animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x801214F4; // type:function size:0x8 scope:weak align:4 +read__15ParaParametersIFR6Stream = .text:0x801214FC; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x8012157C; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x801215FC; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x80121654; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x801216D4; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x80121754; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x801217AC; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x80121854; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x801218E4; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x80121974; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x801219E8; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x80121A48; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x80121AA8; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x80121AF8; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80121AFC; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80121B00; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x80121B04; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80121B08; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80121B0C; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x80121B10; // type:function size:0x4 scope:global align:4 +__ct__15PcamControlInfoFv = .text:0x80121B14; // type:function size:0x24 scope:global align:4 +init__15PcamControlInfoFbbbbbbbfff = .text:0x80121B38; // type:function size:0x2C scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x80121B64; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x80121C98; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x80121CC0; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x80121E4C; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x80121E84; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x80121F60; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x8012242C; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x8012243C; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x80122590; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x8012270C; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x80122738; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x80122848; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x80122BE8; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x80122C30; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x80122E58; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x80122E88; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFii = .text:0x80122F0C; // type:function size:0x44 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80122F50; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x80122FCC; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x8012309C; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x80123108; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x80123168; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x8012317C; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x801231E0; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x801231F8; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80123258; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x801232B4; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x80123348; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x80123368; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x801233B0; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x8012361C; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x801236D0; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x80123724; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x80123760; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x8012389C; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x801238EC; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x80123A00; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x80123A30; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x80123A64; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x80123AB4; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x80123AE8; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x80123B38; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x80123B68; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x80123BAC; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x80123DA4; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x80123DC8; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x80123E18; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x80123EB0; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x80123EE8; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x80123EEC; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x80123EF0; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x80123F30; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x80124078; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x801240B0; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x801240B4; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x80124100; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x801241CC; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x801242A4; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x8012431C; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x801243A0; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x80124418; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x80124488; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x80124718; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x801247DC; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x8012484C; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x801248E4; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x801248F4; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x80124904; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x80124914; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x8012491C; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x80125394; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x801253AC; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x801253C0; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x80125498; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x801254A8; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x801254F0; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x80125574; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x801255F8; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x80125674; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x801256C8; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x80125730; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x801257FC; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x80125870; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x801258C0; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x801258C8; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x80125928; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x80125934; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x80125A10; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x80125A2C; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x80125A48; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x80125A68; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x80125A88; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x80125AE4; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80125B40; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80125B60; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x80125B80; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x80125BA0; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x80125BC0; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x80125C08; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x80125C18; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x80125D24; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x80125DC4; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x80125DD0; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x80125DD8; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x80125DE4; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x80125E00; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x80125E0C; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x80125E24; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x80125E54; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x80125E58; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x80125E5C; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x80125E9C; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x80125EB0; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x8012602C; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x801260A0; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x80126150; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x80126184; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x801261D0; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x801262E8; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x80126344; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x8012636C; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x801263BC; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x801264F0; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x8012659C; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x80126620; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x8012662C; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x801266EC; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x80126810; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x801268FC; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x80126A78; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x80126AD4; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x80126B70; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x80126BF8; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x80126CF8; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x80126D1C; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x80126D24; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x80126D2C; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x80126D34; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x80126D3C; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x80126D44; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x80126D4C; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x80126D5C; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x80126DB8; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x80126DFC; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x80126E00; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x80126E80; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x80126E84; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x80126F2C; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x80126F34; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x80126FE8; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x80126FF0; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x8012703C; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x801270BC; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x8012713C; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x80127228; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x80127248; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x8012733C; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x801273A0; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x801273EC; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x80127400; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x801274CC; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x8012755C; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x80127608; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x80127694; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012774C; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x8012778C; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012779C; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x80127DFC; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x80127E0C; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x80127E24; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x80127E3C; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x80127F68; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x80127FF0; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x801280C4; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x801280EC; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x80128130; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x80128164; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x801281E0; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x80128238; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x801282BC; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x801282F8; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x80128300; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x8012830C; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x8012832C; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x8012838C; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x801283C4; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x801283FC; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x80128440; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x80128478; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x801284FC; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x801288A0; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x80128C40; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x80128CC4; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x80129060; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x8012A5CC; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x8012A714; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x8012A75C; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x8012A7B4; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x8012A844; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012A8C8; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x8012A8D0; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x8012A930; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x8012A990; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x8012AA18; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x8012AA9C; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x8012AF20; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x8012C6BC; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x8012C824; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x8012C934; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x8012CB24; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x8012CB64; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x8012CC10; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x8012CC40; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x8012CCB0; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x8012CD24; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x8012CE7C; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x8012CF5C; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x8012CFC0; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x8012D0BC; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x8012D178; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x8012D288; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x8012D2D8; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x8012D30C; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x8012D340; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x8012D374; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012D42C; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012D454; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x8012D47C; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x8012D51C; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x8012D5BC; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D718; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D7F8; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D838; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012D8F4; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012D938; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012DB4C; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x8012DBA0; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012DC40; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012DC54; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x8012DD3C; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x8012DDA0; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x8012DDF8; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x8012DE70; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x8012DEC0; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x8012DF2C; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x8012DF84; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x8012E014; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x8012E09C; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x8012E160; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x8012E1B8; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x8012E244; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x8012E2A4; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x8012E304; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x8012E374; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x8012E3E4; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x8012E3F8; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x8012E40C; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x8012E420; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x8012E434; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x8012E470; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x8012E4AC; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x8012E500; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x8012E538; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x8012E564; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x8012E590; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x8012E61C; // type:function size:0x4 scope:global align:4 +__ct__19TaiIwagonParametersFv = .text:0x8012E620; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x8012E728; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x8012E7AC; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x8012EC6C; // type:function size:0x114 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x8012ED80; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x8012EDF0; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x8012EE0C; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x8012EE2C; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x8012EF44; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x8012F154; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x8012F1D0; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x8012F214; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x8012F28C; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x8012F424; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x8012F474; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x8012F4C4; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x8012F514; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x8012F588; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x8012F644; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x8012F704; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x8012F7B0; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x8012F8A0; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x8012F9C8; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x8012FAF0; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x8012FB74; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x8013008C; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x80131324; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x801313D4; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x80131588; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x801316AC; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x80131724; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80131778; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x8013177C; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x801318DC; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x80131CAC; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x80131D04; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80131DB4; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x80131DE4; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x80131E14; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x80131E50; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x80131E7C; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x80131EBC; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x80131F6C; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x801320E8; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x80132174; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x801322D8; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x801322E0; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x80132398; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x80132718; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x8013279C; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x80133050; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x801330F8; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x80133204; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x80133218; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x80133294; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x801332E4; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x8013336C; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x80133730; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x80133C4C; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x80133D50; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x80133DF8; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80133F70; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x80133FA8; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x80133FC8; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x801340C4; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x80134138; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x8013415C; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x801341A8; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x801341C8; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x801341D4; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x80134210; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x8013426C; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x80134340; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x80134344; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x801343A8; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x801343AC; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x801343D0; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x8013440C; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x801344B8; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x801344E0; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x80134558; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x80134574; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x80134590; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x80134610; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x80134690; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x80134760; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x80134830; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x80134864; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x80134898; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x801348CC; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x80134900; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x801349A8; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x80134A50; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x80134ADC; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x80134AFC; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x80134BA8; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134BD8; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134C1C; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134C20; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134D5C; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x80134DCC; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x80134E54; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x80134E58; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x80134ED0; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x80134F14; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x80135060; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x801351BC; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x80135350; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x80135420; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x80135550; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x8013557C; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x80135628; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x80135994; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x801359D8; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x801359F8; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x80135B78; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x80135BFC; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x80136160; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x80138424; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x801384A8; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x80138564; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x801387B4; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x80138870; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80138910; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80138964; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80138A10; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x80138AB8; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x80138B70; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x80138C18; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x80138CA0; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x80138D48; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x80138DE0; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x8013907C; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x80139094; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x801391B8; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x80139218; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x8013923C; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x801392A8; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x8013960C; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x80139788; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x80139A54; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x80139B38; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x80139C1C; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x80139DB4; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x80139EE0; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x8013A0B4; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013A178; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x8013A320; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x8013A328; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x8013A33C; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x8013A414; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x8013A458; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x8013A4DC; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x8013AA1C; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x8013AAA0; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x8013AFDC; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x8013C5F8; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013C6C0; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013C7DC; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x8013C9A0; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x8013C9F4; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x8013CB1C; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013CC64; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013D07C; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013D100; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013D22C; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013D390; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013D414; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x8013D470; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x8013D4D0; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x8013D504; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x8013D560; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x8013D77C; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x8013D784; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013D78C; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013D790; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x8013D840; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x8013D848; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x8013D938; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x8013D990; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x8013DA0C; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x8013DA90; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x8013DC84; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x8013E174; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x8013E428; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x8013E460; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x8013E5A8; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x8013E6A8; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x8013E70C; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x8013E790; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x8013E7F0; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x8013E868; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x8013E8BC; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x8013E924; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x8013E95C; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x8013E990; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x8013E9F4; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x8013E9F8; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x8013EA88; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x8013EB30; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x8013EB4C; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x8013EB58; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x8013EB6C; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x8013EB9C; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x8013EBF4; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x8013EC18; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x8013EC3C; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x8013EC88; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x8013ECD4; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x8013ECE0; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x8013ED20; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x8013ED38; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x8013ED5C; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x8013EDE4; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x8013EEBC; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x8013EEFC; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x8013EF1C; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x8013EFB4; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x8013F0F0; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x8013F130; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x8013F180; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x8013F1F0; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x8013F20C; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x8013F228; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x8013F25C; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x8013F2E0; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x8013F728; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x8013FB64; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x80141250; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801412D4; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x801413D0; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x801414F8; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x8014151C; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x80141550; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x8014156C; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x80141748; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x8014178C; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x801417C0; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x8014183C; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x80141A18; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x80141C08; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x80141C30; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x80141C58; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x80141D1C; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80141D74; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x80141E38; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x80141E8C; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x80141F28; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x80141FAC; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x80142138; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x8014262C; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x801426B8; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x801428AC; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x8014297C; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x801429B4; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x80142A2C; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x80142BD4; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x80142C4C; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x80142D50; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x80142F20; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x80142FA4; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x801430EC; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x80143238; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x801435A4; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x801435C4; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x80143628; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x80143648; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80143670; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x80143718; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x80143738; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x801437E0; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x80143808; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x8014388C; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x801438E0; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x801439F4; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x80143A64; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x80143B48; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x80143BCC; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x80143C58; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x80143C60; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x80143C6C; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x80143C7C; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x80143C8C; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80143C94; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80143CA0; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x80143CB8; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x80143CD4; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x80143CF0; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x80143D0C; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x80143D28; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80143D44; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x80143D58; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x80143D60; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x80143D68; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80143D70; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x80143D78; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80143D80; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x80143D88; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80143D90; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x80143D98; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80143DA0; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x80143E34; // type:function size:0x80 scope:global align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80143EB4; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x80143F18; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x80143F20; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x80143F4C; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x80143F98; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x80143FB4; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80143FCC; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80143FE4; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x80144088; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x801440AC; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x801440B8; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x801440C4; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x80144174; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80144184; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x801441D4; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x801441E8; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x80144290; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x801444C8; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x801444F0; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x80144888; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x801448EC; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x80144C64; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x80144D80; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x80144E00; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x80144EA0; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x80144F68; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x80144FCC; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x80145064; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x80145094; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80145138; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x801451B8; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x80145398; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x801453A4; // type:function size:0x258 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x801455FC; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x80145690; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x801457E0; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x80145860; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x8014590C; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x801459E0; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x80145A54; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x80145AF0; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x80145B1C; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x80145B4C; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x80145B98; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x80145BBC; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x80145D0C; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x80145DC0; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x80145F5C; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x80146204; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x801463F0; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x80146430; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x80146508; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x80146698; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x801468E8; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x80146904; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x80146920; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x80146940; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x80146960; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x80146968; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x8014696C; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x80146A20; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x80146B08; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x80146B28; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x80146BB0; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x80146C6C; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x80146DFC; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x80146F50; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x801470A4; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x80147258; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x80147348; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x80147524; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x801475EC; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x80147638; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x8014788C; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x80147968; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x80147A70; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x80147AEC; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x80147B7C; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x80147CCC; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x80147D00; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x80147D44; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x80147DAC; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x80147F58; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x80147FC0; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x80148244; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x801483B8; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x80148500; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x80148554; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x80148594; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x8014862C; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x80148648; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x80148698; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x801486E8; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x80148738; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x80148880; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x8014888C; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x801488B8; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x801488EC; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x80148930; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x801489A4; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x80148A3C; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x80148A70; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x80148AA4; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x80148AD4; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x80148B00; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x80148B40; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x80148BAC; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x80148D20; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x80148F5C; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x8014900C; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x801492CC; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x801493C4; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x801494B8; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x80149540; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x80149680; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x80149700; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x80149724; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x80149748; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x801497A0; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x80149848; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x8014988C; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x801498D4; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x80149930; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x80149950; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x80149974; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x80149998; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x801499C8; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x801499F8; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x80149AD8; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80149B04; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x80149B18; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x80149B6C; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x80149B98; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x80149BC4; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x80149BF4; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x80149C08; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x80149C28; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x80149C4C; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x80149CF4; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x80149D64; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x80149DD4; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x80149DE8; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x80149E90; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x80149EA4; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x80149F88; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x80149FF8; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x8014A010; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x8014A154; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014A178; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x8014A19C; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014A1D8; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x8014A294; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x8014A2F0; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x8014A324; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x8014A354; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x8014A364; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x8014A3A8; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x8014A438; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x8014A47C; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x8014A484; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x8014A4DC; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x8014A4E4; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x8014A4F0; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x8014A7F0; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x8014A9E0; // type:function size:0x20 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x8014AA00; // type:function size:0xA4 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x8014AAA4; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x8014AB20; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x8014AC2C; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x8014AC70; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x8014AC84; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x8014AC94; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x8014ACA4; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x8014ACB4; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x8014ADD0; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x8014AE78; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x8014AF20; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x8014AF2C; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x8014AF9C; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x8014AFF0; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x8014B074; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x8014B07C; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x8014B2C0; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x8014B950; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x8014BA64; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x8014BC38; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014BC8C; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x8014BCA0; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x8014C5F4; // type:function size:0x3C4 scope:global align:4 +__ct__15TekiPersonalityFv = .text:0x8014C9B8; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x8014CBB0; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x8014CCDC; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x8014CD7C; // type:function size:0x2F0 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x8014D06C; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x8014D0FC; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x8014D10C; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x8014D110; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x8014D114; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x8014D118; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x8014D11C; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x8014D150; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x8014D184; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x8014D1B8; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x8014D1BC; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x8014D228; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x8014D2B4; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x8014D33C; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x8014D428; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D448; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D468; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D488; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D508; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x8014D598; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x8014D6E8; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x8014D824; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x8014DDD0; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x8014DEBC; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x8014DFD0; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x8014E068; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x8014E308; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x8014E46C; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x8014E4A0; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x8014E4F0; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x8014E520; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x8014E664; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x8014E934; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x8014EC10; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x8014ED68; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x8014EDC8; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x8014EE28; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x8014EEEC; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x8014EFA4; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x8014EFD0; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x8014F128; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x8014F280; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x8014F2C8; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x8014F318; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x8014F384; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x8014F484; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x8014F510; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x8014F514; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x8014F580; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x8014F5B0; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x8014F6C4; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x8014F6CC; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x8014F708; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x8014F78C; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x8014F790; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x8014F8A0; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x8014F90C; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x8014F914; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x8014F91C; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x8014F924; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x8014F92C; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x8014F934; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x8014F93C; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x8014F958; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x8014F960; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x8014F968; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x8014F96C; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x8014F970; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x8014F974; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x8014F978; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x8014F97C; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x8014F9C0; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x8014FA54; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x8014FA94; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x8014FB5C; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x8014FBCC; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x8014FC48; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x8014FCE0; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x8014FE4C; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x8014FE54; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x8014FE5C; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x8014FEA8; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x8014FF28; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x8014FFA8; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x8015029C; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x801502E0; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x801502F8; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x80150CC4; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x80150E7C; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x8015133C; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x801520F0; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x801521B0; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x80152260; // type:function size:0x110 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x80152370; // type:function size:0x158 scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x801524C8; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x8015254C; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x80152558; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x80152568; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x801525D4; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x801525DC; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x801526EC; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x801530B4; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x801531F4; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x801531FC; // type:function size:0xC4 scope:global align:4 +doKill__6SpiderFv = .text:0x801532C0; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x80153318; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x80153340; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x801533AC; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x801534F8; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x80153570; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x80153594; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x801535D8; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x80153738; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x80153740; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x80153790; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80153798; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x801537B8; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x80153860; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x801538DC; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80153984; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x801539A4; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x801539B8; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x801539C8; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x80153A0C; // type:function size:0x2FC scope:global align:4 +dieState__8SpiderAiFv = .text:0x80153D08; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x80153F68; // type:function size:0x19F8 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x80155960; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x80155AE4; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x80155CC0; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x80155EE8; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x80155FA8; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x8015632C; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x801565E4; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x80156730; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x80156810; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x80156A48; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x80156B9C; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x80156BB8; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x80156BD4; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x80156BF0; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x80156D80; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x80156E10; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x80156F78; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x80156FCC; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x80157104; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x801572B8; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x8015765C; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x80157944; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x80157AAC; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x80157C14; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x80157DE4; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x801580A4; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x801582B0; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x80158424; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x80158554; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x8015879C; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x801589CC; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x80158C90; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x80158DD0; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x80159040; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x801596C4; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x801599B0; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x8015A054; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x8015A090; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8015A1F8; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x8015A21C; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x8015AB0C; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x8015AC10; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x8015AC18; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x8015AC24; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x8015AC2C; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x8015ACE4; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x8015AD30; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x8015AD58; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x8015ADBC; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x8015AE64; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x8015AEDC; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x8015AF50; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x8015AF74; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x8015AFC8; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x8015B03C; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x8015B0F0; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x8015B140; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x8015B148; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x8015B218; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x8015B2B4; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x8015B330; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x8015B438; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x8015B4B0; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x8015B55C; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x8015B56C; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x8015B5B0; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x8015B6B4; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x8015BF3C; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x8015C06C; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x8015C0DC; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x8015C240; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015C270; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015C508; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x8015C7A0; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x8015C9FC; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x8015CC58; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x8015D06C; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x8015D544; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x8015D8BC; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x8015DC44; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x8015DE4C; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x8015DE98; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x8015DEB8; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x8015E044; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x8015E60C; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x8015E614; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x8015E7C4; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x8015FC00; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x8015FE20; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x8015FE88; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x8015FFE0; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x8016007C; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x801600A4; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x801603BC; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x801606B0; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x80160A18; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x80160C6C; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x80160EB0; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x80161040; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x80161490; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x80161688; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x80161820; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x80161B14; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x80161ECC; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x801623F0; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x80162930; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x80162A3C; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x80162C1C; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x801635D4; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x80163638; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x8016366C; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x80163BE4; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x80163DB8; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x80163E0C; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80163E60; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80163E6C; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x80163E74; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x801640F0; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x80164124; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x80164128; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x801641CC; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x80164274; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x80164314; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x80164338; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x8016435C; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x801644C4; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x801644E4; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x80164924; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x80164944; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x80164950; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x80164970; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80164A80; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80164AD0; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x80164AD8; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x80164AE0; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x80164B88; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x80164B9C; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x80164EAC; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x80164F70; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x801650D4; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x80165410; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x801654F8; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x80165610; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x80165754; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x80165878; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x80165960; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x80165A64; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x80165CE4; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x80165F64; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x80166200; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x8016636C; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x80166674; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x80166980; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x80166B18; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x80166DFC; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x80167338; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x801677CC; // type:function size:0x2D88 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x8016A554; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x8016A588; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x8016A6C4; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016A968; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x8016AC54; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x8016B0B8; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x8016B1D0; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x8016B248; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x8016B2C8; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x8016B2D0; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x8016B2D8; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x8016B2F4; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x8016B318; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x8016B348; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x8016B378; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x8016B398; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x8016B39C; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x8016B3A0; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x8016B3EC; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x8016B3F0; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x8016B3F4; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x8016B3FC; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x8016BBB8; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x8016BD00; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x8016BD08; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x8016BD28; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x8016BDAC; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8016BE0C; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x8016BE34; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x8016BE98; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x8016C010; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x8016C064; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x8016C0DC; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x8016C100; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x8016C154; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x8016C1A8; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x8016C1B0; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x8016C200; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x8016C208; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x8016C250; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x8016C35C; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x8016C3D8; // type:function size:0x1D0 scope:global align:4 +keyAction1__6KingAiFv = .text:0x8016C5A8; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x8016C68C; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x8016C6DC; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x8016C6F0; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x8016C780; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x8016C7C4; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x8016C804; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x8016C958; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x8016C96C; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x8016C980; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x8016CE00; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x8016D260; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x8016D508; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x8016D534; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x8016D7C4; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x8016DC7C; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x8016DD9C; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x8016E020; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x8016E138; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x8016E204; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x8016E24C; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x8016E318; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x8016E618; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x8016E924; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x8016ED04; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x8016F14C; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x8016F404; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x8016F594; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x8016F9A0; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x8016FAEC; // type:function size:0x16C scope:global align:4 +update__6KingAiFv = .text:0x8016FC58; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x80172CDC; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x80172DB8; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x80173004; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x80173214; // type:function size:0x250 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x80173464; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x80173540; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x8017377C; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x80173798; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x801737B4; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x801739F0; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x80173A18; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x80173BF8; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x80173D38; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x80173ED0; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x80174448; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80174678; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x801752E4; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80175480; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80175500; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x801756AC; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x801756C8; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x801756E4; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80175710; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x80175910; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x80175988; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x80175CB8; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x80175D3C; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x80175D44; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x80175D98; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x80175DE4; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x80175E0C; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x80175E2C; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x80175EC4; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x80175F30; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x80175F68; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x80175FAC; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x80176004; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x80176054; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x8017605C; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x80176208; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x80176240; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x801762B4; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x801763C4; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x80176440; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x8017649C; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x80176544; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x80176558; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x80176580; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x801765BC; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x80176698; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x80176880; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x80176AAC; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x80176C54; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x80176E34; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x80176EF8; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x80177298; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x8017746C; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80177D10; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x80177D38; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x80177FEC; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x80178084; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x8017808C; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x801780DC; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x80178178; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x801781C4; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x801781EC; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x80178238; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x80178318; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x8017839C; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x801783C0; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x80178404; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x80178458; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x801784A8; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x801784B0; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x80178524; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x801786B8; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x80178734; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x80178778; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x80178794; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x801787A8; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x80178870; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x801788B4; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x801788EC; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x80178AA0; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x80178B00; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x80178CD4; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x80178EFC; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x801790D8; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x801792D8; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x801794A4; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x80179D3C; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x80179D60; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x80179DF0; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x80179E5C; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x80179E64; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x80179EB0; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x80179EEC; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x80179EF0; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x80179F3C; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x80179FE0; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x8017A04C; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017A068; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x8017A0AC; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x8017A0FC; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x8017A104; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x8017A194; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x8017A218; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x8017A220; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x8017A280; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x8017A2B4; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x8017A2B8; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x8017A2D8; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x8017A370; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x8017A3DC; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x8017A400; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x8017A444; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x8017A494; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x8017A49C; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x8017A4BC; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x8017A530; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x8017A5AC; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x8017A5B0; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x8017A5B4; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x8017A5C8; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x8017A5D8; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x8017A5DC; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x8017A8AC; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x8017A93C; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x8017A9C0; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017A9C8; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x8017AA2C; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x8017AA60; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x8017AA64; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x8017AA84; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x8017AB1C; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017AB88; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x8017ABAC; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x8017ABF0; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017AC44; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017AC94; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x8017AC9C; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x8017ACBC; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x8017AD30; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x8017ADAC; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x8017ADB0; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x8017ADB4; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x8017ADC8; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x8017ADD8; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x8017ADDC; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x8017ADE8; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x8017B32C; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x8017B3BC; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x8017B440; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x8017B49C; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x8017B4A4; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x8017B4E4; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x8017B524; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x8017B570; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x8017B598; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x8017B5E4; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x8017B67C; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x8017B6E8; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x8017B70C; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x8017B750; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x8017B758; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x8017B7A8; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x8017B7B0; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x8017B830; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x8017B8E8; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x8017B9A0; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x8017B9A4; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x8017BA20; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x8017BADC; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x8017BBAC; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x8017BE18; // type:function size:0x358 scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x8017C170; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x8017C220; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x8017C2E0; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x8017C47C; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x8017C774; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x8017C7C0; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x8017C7E8; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x8017C848; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x8017C944; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x8017C9E0; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x8017CB00; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x8017CCA0; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x8017CD2C; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x8017CE4C; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x8017D010; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x8017D150; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x8017D2BC; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x8017D5D8; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x8017D5EC; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x8017D614; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x8017D69C; // type:function size:0x2EC scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x8017D988; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x8017DE64; // type:function size:0x188 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x8017DFEC; // type:function size:0x6A8 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x8017E694; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x8017E728; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x8017E7A8; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x8017E7D4; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x8017E83C; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x8017E9B0; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x8017E9EC; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x8017EA50; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x8017EAD8; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x8017EE00; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x8017EE6C; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x8017EEF0; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x8017EF74; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x8017F08C; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x8017F17C; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x8017F26C; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x8017F5D4; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x8017F5F8; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x8017F658; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x8017F6A0; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x8017F9F8; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x8017FA78; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x8017FAE0; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x8017FB58; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x8017FC98; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x8017FCBC; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x8017FE34; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x8017FF28; // type:function size:0x14C scope:global align:4 +getSpecialNumber__3zenFi = .text:0x80180074; // type:function size:0x30 scope:global align:4 +setSpecialNumber__3zenFii = .text:0x801800A4; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x801800D0; // type:function size:0x218 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x801802E8; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x80180378; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x801803EC; // type:function size:0x160 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x8018054C; // type:function size:0x3A8 scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x801808F4; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x801809F8; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x80180DAC; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x80180DB4; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x80180FAC; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x80180FE8; // type:function size:0x4A8 scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x80181490; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x80181574; // type:function size:0x9F8 scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x80181F6C; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x80182004; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x801820C8; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x8018219C; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x80182270; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x80182594; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x80182620; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x801829E0; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x80182A90; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x80182AEC; // type:function size:0x80 scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x80182B6C; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x80182C28; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x80182C58; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x80182D38; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x80182E0C; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80182FD8; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x80183274; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x801832D4; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x80183360; // type:function size:0xDE0 scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x80184140; // type:function size:0x17C scope:global align:4 +__ct__Q23zen14ogScrResultMgrFPQ23zen10EnumResult = .text:0x801842BC; // type:function size:0x170 scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x8018442C; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x80184B70; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x80184EF4; // type:function size:0x104 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x80184FF8; // type:function size:0x970 scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x80185968; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x801859F4; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x80185A8C; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x80185CAC; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x80186190; // type:function size:0x5D4 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x80186764; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x801867AC; // type:function size:0x128 scope:global align:4 +MapOn__Q23zen10ogRaderMgrFv = .text:0x801868D4; // type:function size:0x24 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x801868F8; // type:function size:0x168 scope:global align:4 +AreaScroll__Q23zen10ogRaderMgrFPfPfff = .text:0x80186A60; // type:function size:0x100 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x80186B60; // type:function size:0x298 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x80186DF8; // type:function size:0x748 scope:global align:4 +end__Q23zen10ogRaderMgrFv = .text:0x80187540; // type:function size:0x3C scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x8018757C; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x801876E8; // type:function size:0x140 scope:global align:4 +getCardFileInfos__Q23zen18ogScrFileSelectMgrFv = .text:0x80187828; // type:function size:0x1F4 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x80187A1C; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x80187A3C; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x80187B1C; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x80187BD0; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x80187BE4; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x80187CD4; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x801881B4; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x801884E0; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x80188644; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x80188B64; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x80188D1C; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x8018900C; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x8018934C; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x80189614; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x80189F0C; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x80189F18; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x8018A0D0; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x8018A288; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x8018A340; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x8018A3C8; // type:function size:0x404 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8018A7CC; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018AB38; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018AD34; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x8018AF08; // type:function size:0xA20 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x8018B928; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x8018B94C; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x8018BAA8; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BAF0; // type:function size:0x11C scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x8018BC0C; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x8018BC8C; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BCE8; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BD40; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018BD94; // type:function size:0x1DC scope:global align:4 +cnvSingleMulti__Q23zen15ogScrMessageMgrFPc = .text:0x8018BF70; // type:function size:0x18C scope:global align:4 +cnvButtonIcon__Q23zen15ogScrMessageMgrFPc = .text:0x8018C0FC; // type:function size:0x184 scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x8018C280; // type:function size:0x234 scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018C4B4; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x8018C4FC; // type:function size:0x2A4 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x8018C7A0; // type:function size:0x170 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x8018C910; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x8018C924; // type:function size:0x57C scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x8018CEA0; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x8018CFA4; // type:function size:0x9D0 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x8018D974; // type:function size:0x258 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x8018DBCC; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x8018DC10; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x8018DC48; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x8018DC80; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x8018DEA4; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x8018E034; // type:function size:0xEC4 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x8018EEF8; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x8018F008; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x8018F14C; // type:function size:0x150 scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x8018F29C; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x8018F398; // type:function size:0x178 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x8018F510; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F7A4; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F840; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F908; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x8018F9A8; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x8018F9CC; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x8018FB24; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x8018FDBC; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x80190074; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x801904A4; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x8019066C; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x80190778; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x8019087C; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x801910FC; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x801911EC; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x801912AC; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x801915FC; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x8019163C; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x801918B4; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x80191CD0; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x80192224; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x80192524; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x80192920; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x80192B8C; // type:function size:0x598 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x80193124; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x801934EC; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x801935FC; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x8019364C; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x801936A0; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x80193838; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x801938F4; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80193C54; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x80193D40; // type:function size:0x354 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x80194094; // type:function size:0xA8 scope:global align:4 +checkTypingAll__Q23zen19ogScrMakeDefaultMgrFv = .text:0x8019413C; // type:function size:0x20 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x8019415C; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80194B68; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80194BA4; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x80194D34; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x80194DD8; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x801954C4; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80195698; // type:function size:0x73C scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x80195DD4; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x80195E94; // type:function size:0x834 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x801966C8; // type:function size:0xF4 scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x801967BC; // type:function size:0x3E4 scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x80196BA0; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x80196D08; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x80196D5C; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x80196DB0; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x801970F4; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x80197200; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x801975A8; // type:function size:0x488 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x80197A30; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80197A94; // type:function size:0x3EC scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x80197E80; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x80197F44; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x80198248; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x80198568; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x80198804; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x801988E0; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x801989D8; // type:function size:0x38 scope:global align:4 +stop__Q23zen13ogScrStartMgrFv = .text:0x80198A10; // type:function size:0x28 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x80198A38; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x80198BF8; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80198C84; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x80198D70; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80198E34; // type:function size:0x538 scope:global align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x8019936C; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x801993CC; // type:function size:0xD38 scope:global align:4 +__ct__12CMresultModeFv = .text:0x8019A104; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x8019A1B0; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x8019A228; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x8019A3B0; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x8019A3E0; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x8019A420; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x8019A4A4; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x8019A4C8; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x8019A548; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x8019A56C; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x8019A62C; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x8019A650; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x8019A6D0; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x8019A6F4; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x8019A7D8; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x8019A7FC; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x8019A8D0; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x8019A8F4; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x8019AA24; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x8019AA48; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x8019AAC8; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x8019AAEC; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x8019AB74; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x8019AB98; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x8019AC28; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019AC4C; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x8019ACCC; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x8019ACF0; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x8019AD70; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x8019AD94; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x8019AE44; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x8019AE68; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x8019AEE8; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x8019AF0C; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019AF8C; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x8019AFB0; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x8019AFF0; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x8019AFF4; // type:function size:0x154 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x8019B148; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x8019B1F0; // type:function size:0x358 scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x8019B548; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x8019B704; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x8019B728; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x8019B72C; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x8019B75C; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x8019B7DC; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x8019B7E0; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019B874; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019B878; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019BA38; // type:function size:0x180 scope:global align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x8019BBB8; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x8019BED4; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x8019C008; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x8019C104; // type:function size:0x64C scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x8019C750; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x8019C890; // type:function size:0x7C scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x8019C90C; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x8019C948; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x8019CA60; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CA90; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CAD4; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x8019CB14; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x8019CB58; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x8019CC00; // type:function size:0x64 scope:global align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CC64; // type:function size:0x24C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x8019CEB0; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x8019D004; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x8019D17C; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x8019DCD4; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019DFCC; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019EECC; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x8019F620; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x8019FC68; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x8019FE2C; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x801A0008; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A06B0; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A06EC; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0728; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0764; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A07B8; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0814; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0870; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x801A08FC; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x801A0A0C; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x801A0B54; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0C20; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0C54; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x801A0D44; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x801A0DB4; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x801A0E08; // type:function size:0x74 scope:global align:4 +load__Q23zen14particleLoaderFPcb = .text:0x801A0E7C; // type:function size:0x158 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x801A0FD4; // type:function size:0x84 scope:global align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x801A1058; // type:function size:0x13C scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x801A1194; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A11E0; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x801A1254; // type:function size:0x110 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x801A1364; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x801A13D8; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x801A1480; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x801A151C; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x801A15B4; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x801A1668; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x801A1698; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x801A172C; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A185C; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A18B8; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A1960; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A19BC; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A1B3C; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A1B84; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A1C98; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A1D00; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A1D68; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A1E04; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A21C4; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A23A4; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A2630; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A26AC; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A27A4; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A2828; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A2948; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A29A0; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A2A20; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A2A54; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A2BA4; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A2CA0; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A2DB4; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A2F58; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A3020; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A3028; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A3030; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A3038; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A3040; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A3044; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A3048; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A3050; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A31D0; // type:function size:0x31C scope:global align:4 +addAnimation__12TAIanimationFPc = .text:0x801A34EC; // type:function size:0x3C scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A3528; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A35AC; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A3910; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A4524; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A4644; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A4708; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A4E04; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A4E0C; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A4E18; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A4E20; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A4EE8; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A4EF8; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A4F44; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A4F5C; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A4F74; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A51FC; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A521C; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A5234; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A5254; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A526C; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A528C; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A52AC; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A52C4; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A52DC; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A52EC; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A5358; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A54AC; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A54F4; // type:function size:0x1D8 scope:weak align:4 +__ct__16TAImarSoundTableFv = .text:0x801A56CC; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801A5750; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801A5B90; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801A6978; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801A6B44; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801A6C08; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801A6F34; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801A6F40; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801A6F48; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801A6FB8; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A6FC0; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A6FD8; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801A6FF0; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801A703C; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A705C; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A7064; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801A707C; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801A72F0; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801A7528; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A7530; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801A7548; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801A7550; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801A7568; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801A7574; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801A75D0; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801A75D8; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801A76A4; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801A76BC; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801A76C0; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801A76D8; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801A780C; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801A7824; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801A7860; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801A78F4; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A78FC; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A7908; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801A79F8; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801A7A10; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801A7A58; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801A7D28; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A7D38; // type:function size:0x208 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A7F40; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801A7F80; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A83D8; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A83E0; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801A83E8; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801A8438; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801A8454; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801A8484; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801A857C; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801A8628; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801A866C; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801A87B0; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801A87F4; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801A88D4; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801A88DC; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801A8924; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801A898C; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801A8A8C; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801A8B34; // type:function size:0x50 scope:global align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801A8B84; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801A8C18; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A8DBC; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A8EFC; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801A8F04; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801A90B4; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801A9100; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801A9218; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A9304; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A9404; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A940C; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A942C; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A9450; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801A9560; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801A9598; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801A96A0; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A96B8; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A96F0; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A978C; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A9844; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A985C; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A9894; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A991C; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801A9934; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801A9A10; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801A9D2C; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801A9DF8; // type:function size:0x1E8 scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801A9FE0; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801AA058; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801AA0B4; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801AA19C; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801AA29C; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801AA2BC; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801AA370; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801AA488; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801AA500; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801AA584; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801AA61C; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801AA624; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801AA6A0; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801AA950; // type:function size:0x354 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801AACA4; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801AACAC; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801AACE4; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801AAE48; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801AAE60; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801AAF70; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801AB034; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801AB06C; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AB15C; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AB194; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801AB284; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801AB2B0; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801AB328; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801AB364; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801AB514; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801AB944; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801AB994; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801ABCC4; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801ABCCC; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABCE4; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABD64; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABDAC; // type:function size:0x348 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801AC0F4; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801AC130; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801AC4D0; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801AC4F0; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801AC570; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801AC82C; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801AC844; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801AC84C; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801AC8DC; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801AC9EC; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801AC9F0; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801ACA80; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801ACB98; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801ACBAC; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801ACBD0; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801ACC1C; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801ACC38; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801ACC5C; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801ACE10; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801ACE98; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801ACECC; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801ACFE4; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801ACFEC; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801ACFF0; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801AD1F0; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801AD274; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801AD2F8; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801AD364; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801AD3CC; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801AD49C; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD56C; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD744; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD74C; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801AD754; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801AD888; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801AD984; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801ADA10; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801ADB74; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801ADBF4; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801ADD40; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801ADDD8; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801ADE24; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801ADEC4; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801ADECC; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801ADF24; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801AE00C; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801AE020; // type:function size:0xD4 scope:global align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801AE0F4; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801AE130; // type:function size:0x254 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801AE384; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801AE38C; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801AE4B0; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801AE4B4; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801AE4BC; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801AE6D4; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE73C; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE780; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE79C; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801AE83C; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801AE8C8; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801AEA20; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AEA98; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801AEAA0; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AEB78; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801AEB80; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801AECA8; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801AECB0; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801AED44; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801AEDC4; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801AEE5C; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801AEEF0; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801AEF8C; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801AF024; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF02C; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF0A0; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF170; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF624; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF62C; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801AF634; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801AF654; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801AF6D4; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AF6FC; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801AF704; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801AF7B8; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801AF884; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801AF9F8; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801AFA98; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801AFAAC; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801AFAD0; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801AFB7C; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801AFBA8; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801AFBF4; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801AFC44; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801AFC48; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801AFD0C; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801AFDE4; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801AFE20; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801B008C; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801B00E8; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801B016C; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801B01CC; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801B01F8; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801B0364; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801B03F8; // type:function size:0x1FC scope:global align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801B05F4; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801B05FC; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801B0610; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B0658; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B0688; // type:function size:0x14 scope:global align:4 +update__7P2DPaneFv = .text:0x801B069C; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801B07D0; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801B07D8; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801B0924; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B0A8C; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801B0D1C; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801B0DFC; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801B12A0; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801B12EC; // type:function size:0xA4 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801B1390; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801B15EC; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801B16F8; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801B16FC; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801B1700; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801B1764; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801B176C; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801B1790; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801B17B4; // type:function size:0x68 scope:weak align:4 +makeResident__10P2DPictureFv = .text:0x801B181C; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B1890; // type:function size:0x58 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B18E8; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B199C; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B1AD0; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B1B7C; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B1C18; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B1C6C; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B1CD4; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B1D4C; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B23B0; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B25E4; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B2A94; // type:function size:0x14 scope:global align:4 +update__9P2DScreenFv = .text:0x801B2AA8; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B2AF4; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B2B58; // type:function size:0x12C scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B2C84; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B2E24; // type:function size:0x8 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B2E2C; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B3154; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B3184; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B31A4; // type:function size:0x28 scope:global align:4 +getResource__9P2DStreamFi = .text:0x801B31CC; // type:function size:0xC4 scope:global align:4 +align__9P2DStreamFi = .text:0x801B3290; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B3320; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B3338; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B3398; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B3400; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B3414; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B34D0; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B3580; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B35A4; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B35C8; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B35FC; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B367C; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B36C0; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B36DC; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B3718; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B3748; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B37D0; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B3930; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B3B88; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B3BF0; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B3C88; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B401C; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B41A8; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B42A8; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B4348; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B43A0; // type:function size:0x64 scope:weak align:4 +makeResident__10P2DTextBoxFv = .text:0x801B4404; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B443C; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B448C; // type:function size:0x20C scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B4698; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B4700; // type:function size:0x198 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B4898; // type:function size:0x64 scope:weak align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B48FC; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B4944; // type:function size:0x100 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B4A44; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B4A98; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B4AC0; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B4B04; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B4D54; // type:function size:0x5C8 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801B531C; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801B5940; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801B5AB4; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801B5BBC; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801B5D0C; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801B5DC8; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801B5EA0; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801B5EC4; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801B5F88; // type:function size:0x308 scope:global align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801B6290; // type:function size:0x1FCC scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801B825C; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801B847C; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801B848C; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801B849C; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801B84D8; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801B892C; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B8A1C; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B8A98; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B8B18; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B8BC8; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801B8C7C; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801B8EA0; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B90D4; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B90DC; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801B9104; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801B9170; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801B9278; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801B954C; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801B9830; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801B99E8; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801B9A60; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801B9BAC; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801B9D40; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801B9E58; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801BA050; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BA08C; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801BA094; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801BA4EC; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801BA558; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801BD204; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801BD218; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801BD2E0; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801BD348; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801BD3DC; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801BD52C; // type:function size:0x4B8 scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801BD9E4; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801BDB48; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801BDB80; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801BE7A0; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801BECCC; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801BF090; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801BF0EC; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801BF1F4; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801BF36C; // type:function size:0x160 scope:weak align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801BF4CC; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801BF5D4; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801BF5F8; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801BF648; // type:function size:0xB4 scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BF6FC; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801BF814; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801BF81C; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BF830; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BF91C; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801BF94C; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BFA6C; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801BFA88; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801BFAF8; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801BFC1C; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801BFD84; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801C0120; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801C01FC; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801C0268; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801C02FC; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801C03F4; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801C06FC; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801C080C; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801C0938; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801C0AE4; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801C0CDC; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801C0F9C; // type:function size:0x5C scope:global align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801C0FF8; // type:function size:0x24 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801C101C; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801C1098; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C250C; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C2630; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C265C; // type:function size:0x78 scope:global align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C26D4; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C2780; // type:function size:0xF4 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C2874; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C2E38; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C2EC0; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C2ECC; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C2ED8; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C2EE4; // type:function size:0x170 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C3054; // type:function size:0xAFC scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C3B50; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C3BA4; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C3C10; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C3FAC; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C4338; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C442C; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C4838; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C4864; // type:function size:0x2C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C4890; // type:function size:0x28 scope:global align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C48B8; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C48F0; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C4AD0; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801C4C6C; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C4FF0; // type:function size:0x1E8 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C51D8; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801C54F8; // type:function size:0x434 scope:global align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801C592C; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801C59B0; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801C5DC8; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801C6CBC; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801C6DFC; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801C7218; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801C723C; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801C7254; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801C7278; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801C7394; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C73C8; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C745C; // type:function size:0x8D4 scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7D30; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7D4C; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801C7D64; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801C7E04; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C8EB4; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C8ED4; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801C8EEC; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801C90DC; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801C9100; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801C9260; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801C92BC; // type:function size:0x160 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801C941C; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801C9424; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801C99D0; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801C9D84; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801C9DF8; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801C9E48; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801CA200; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801CA284; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801CA5F0; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801CB074; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801CB770; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801CB7C8; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801CB820; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801CB838; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB850; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB870; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB890; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB8A8; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB8C0; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801CBA2C; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801CBA60; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801CBAC0; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801CBB44; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801CBF04; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801CCD40; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801CD43C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801CD454; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD46C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD48C; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD4AC; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD4C4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD4DC; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CD648; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CD660; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801CD678; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801CD6FC; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801CDB74; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801CEE10; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801CF50C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801CF524; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF53C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF55C; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF57C; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF594; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF5AC; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801CF718; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801CF780; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801CF964; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801CF97C; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801CF984; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801CF9C0; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801CF9FC; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CFA24; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CFAEC; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801CFD1C; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CFD34; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CFD4C; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801CFD64; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801CFDE8; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801D00DC; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801D03B8; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801D0AB4; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801D0AD8; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801D0B24; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801D0C98; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0CA8; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0D64; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0DC0; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801D0DC8; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801D0E2C; // type:function size:0xE8 scope:weak align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801D0F14; // type:function size:0x1E4 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801D10F8; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801D117C; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801D153C; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D200C; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D23D4; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D23F4; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D24A4; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D25EC; // type:function size:0x8C scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D2678; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D2D74; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D2D8C; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D2DEC; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D2FC0; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D2FE0; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D3370; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D33DC; // type:function size:0x298 scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D3674; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D36C0; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D3790; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D38B8; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D38C0; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D3954; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D395C; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D39A8; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D3A04; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D3ABC; // type:function size:0x87C scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D4338; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D44C8; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801D46F4; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801D4750; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801D4758; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801D47DC; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801D4AD4; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801D4CBC; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801D4E44; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801D4E80; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801D557C; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801D55B8; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801D589C; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801D58B4; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801D5918; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801D5920; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801D5930; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801D5998; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801D5AEC; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801D5CC8; // type:function size:0xE0 scope:weak align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801D5DA8; // type:function size:0xB8 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801D5E60; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801D5F00; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801D5F68; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D5FA8; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D6154; // type:function size:0x50 scope:global align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801D61A4; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801D6228; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801D662C; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801D7FF8; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801D80BC; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801D87B8; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801D87F0; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801D889C; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801D88D0; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801D8988; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801D8AD8; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801D8AE8; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801D8B90; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801D8D64; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801D8D9C; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801D8EC4; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801D8FAC; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801D9010; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801D90D4; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801D9248; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801D9258; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801D9278; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801D9290; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801D92A8; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801D92F8; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801D9420; // type:function size:0x900 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801D9D20; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801D9D7C; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D9DD8; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D9E24; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D9E3C; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D9E88; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801D9EA0; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801D9ED4; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801D9FC4; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801D9FD8; // type:function size:0x8 scope:weak align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801D9FE0; // type:function size:0x1C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801D9FFC; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801DA030; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801DA06C; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801DA0A8; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801DA0EC; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801DA164; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801DA1A8; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801DA35C; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801DA434; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801DA484; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801DA724; // type:function size:0x48 scope:global align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801DA76C; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801DAB00; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801DAB70; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801DAB94; // type:function size:0x374 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801DAF08; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801DB010; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801DB05C; // type:function size:0x48 scope:global align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801DB0A4; // type:function size:0x246C scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801DD510; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801DD684; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DD698; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801DD6C4; // type:function size:0x67C scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801DDD40; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801DDDEC; // type:function size:0x11C scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801DDF08; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801DE00C; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801DE0F8; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801DE25C; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801DE314; // type:function size:0x164 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801DE478; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801DE4AC; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801DE634; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801DE66C; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DF280; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801DF4DC; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801DF5C8; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801DF6A8; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801DFA00; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801E0028; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801E0378; // type:function size:0xD0 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E0448; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E08DC; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801E0C90; // type:function size:0x134 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801E0DC4; // type:function size:0x1B78 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E293C; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E2A04; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E2D1C; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E2D64; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E31E0; // type:function size:0x2744 scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801E5924; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801E5B38; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801E60DC; // type:function size:0x868 scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801E6944; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801E6F58; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801E7120; // type:function size:0x154 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801E7274; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E7350; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801E7474; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E7680; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801E78A0; // type:function size:0x168 scope:weak align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801E7A08; // type:function size:0x1F8 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801E7C00; // type:function size:0x10 scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801E7C10; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801E7DB8; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801E8828; // type:function size:0x30 scope:global align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801E8858; // type:function size:0x334 scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801E8B8C; // type:function size:0x15C scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801E8CE8; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801E8D24; // type:function size:0xE8 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801E8E0C; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801E8F40; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801E9058; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801E956C; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801E95AC; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801E9610; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801E965C; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801E96A0; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801E974C; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801E97F8; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801E9818; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801E9A94; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801E9AE0; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801E9B04; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801E9C2C; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801E9C50; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801E9CF8; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801E9D58; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801E9ED4; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801E9EF8; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801EA18C; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801EA888; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801EA918; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801EA9C8; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801EAA4C; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801EAD88; // type:function size:0x530 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801EB2B8; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801EB9B4; // type:function size:0x384 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801EBD38; // type:function size:0x3D4 scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801EC10C; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801EC19C; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801EC230; // type:function size:0xC0 scope:weak align:4 +act__13TAIAwaitOtamaFR4Teki = .text:0x801EC2F0; // type:function size:0xE0 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801EC3D0; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801EC588; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801EC830; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801ECBD4; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801ECC5C; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801ECEF0; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801ECF70; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801ED08C; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801ED0D0; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801ED160; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801ED168; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801ED268; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801ED3D0; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801ED3D8; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801ED530; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801ED560; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801ED5AC; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801ED5F8; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801ED600; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801ED720; // type:function size:0xE4 scope:global align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801ED804; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801ED954; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801ED95C; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801EDE40; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801EDEDC; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801EDF50; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801EDFCC; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EE008; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801EE06C; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EE180; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801EE188; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801EE204; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801EE218; // type:function size:0x28 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801EE240; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801EE370; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801EE464; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801EE46C; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801EE690; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801EE6D0; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801EE6F4; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801EE770; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801EE794; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801EE7B8; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801EE7C0; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801EE7C8; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801EE824; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801EE9F8; // type:function size:0xC8 scope:weak align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801EEAC0; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801EF514; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801EF5E0; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801EF630; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801EF6C8; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801EF838; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801EF8F4; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801EFA60; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EFA68; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EFAB4; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801EFB8C; // type:function size:0xFC scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801EFC88; // type:function size:0xA4 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801EFD2C; // type:function size:0x378 scope:global align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801F00A4; // type:function size:0x438 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F04DC; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801F054C; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801F056C; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801F070C; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F0740; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F0748; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801F095C; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801F09D8; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801F0DB0; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801F0EDC; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801F108C; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801F1110; // type:function size:0x33C scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801F144C; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801F1458; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801F1500; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F1930; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F1978; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F1B84; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F1C68; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F1CB8; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F1DA4; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F1ED4; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F2088; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F20BC; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F2124; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F2170; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F237C; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F2538; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F25B4; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F28FC; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F2920; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F2970; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F29B8; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F29DC; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F3280; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F32E8; // type:function size:0x1D0 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F34B8; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F35AC; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F379C; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F37D8; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F382C; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F38C4; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F38F8; // type:function size:0x98 scope:global align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F3990; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801F4450; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801F4624; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801F475C; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801F4760; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801F4E4C; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801F5020; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801F5090; // type:function size:0x1A4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801F5234; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801F536C; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801F5390; // type:function size:0xC8 scope:global align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801F5458; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F54A4; // type:function size:0x188 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801F562C; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F5698; // type:function size:0x94 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801F572C; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801F5754; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801F577C; // type:function size:0x120 scope:global align:4 +PPCMfmsr = .text:0x801F589C; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801F58A4; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801F58AC; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801F58B4; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801F58BC; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801F58C4; // type:function size:0x8 scope:global align:4 +PPCSync = .text:0x801F58CC; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801F58D4; // type:function size:0x14 scope:global align:4 +PPCMfhid2 = .text:0x801F58E8; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801F58F0; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801F58F8; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801F5900; // type:function size:0x28 scope:global align:4 +OSInit = .text:0x801F5928; // type:function size:0x2DC scope:global align:4 +OSExceptionInit = .text:0x801F5C04; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801F5E84; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801F5E84; // type:label scope:global +__OSDBJump = .text:0x801F5EA8; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801F5EA8; // type:label scope:global +__OSDBJUMPEND = .text:0x801F5EAC; // type:label scope:global +__OSSetExceptionHandler = .text:0x801F5EAC; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801F5EC8; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801F5EDC; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801F5EDC; // type:label scope:global +__DBVECTOR = .text:0x801F5F34; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801F5F44; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801F5F74; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801F5F78; // type:function size:0x54 scope:local align:4 +__OSPSInit = .text:0x801F5FCC; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801F6004; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801F6018; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801F6064; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801F6070; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801F62C0; // type:function size:0x68 scope:global align:4 +OSSetAbsAlarm = .text:0x801F6328; // type:function size:0x64 scope:global align:4 +OSCancelAlarm = .text:0x801F638C; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801F64A8; // type:function size:0x210 scope:local align:4 +DecrementerExceptionHandler = .text:0x801F66B8; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801F6704; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801F6800; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801F6870; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801F6878; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801F6880; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801F6888; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801F6890; // type:function size:0x194 scope:global align:4 +__OSStopAudioSystem = .text:0x801F6A24; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801F6AFC; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801F6B10; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801F6B40; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801F6B74; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801F6BA8; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801F6BD8; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801F6C08; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801F6C38; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801F6C70; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801F6C80; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x801F6C94; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801F6D2C; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801F6E8C; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801F6F80; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801F70A4; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801F71CC; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801F7228; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801F7234; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801F72B4; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801F738C; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801F7394; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801F73B8; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801F7474; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801F771C; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801F77A0; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801F77E8; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801F7868; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801F7994; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801F79B0; // type:function size:0x174 scope:global align:4 +SetExiInterruptMask = .text:0x801F7B24; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x801F7C18; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x801F7E74; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x801F7F14; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x801F8000; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x801F8208; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x801F8250; // type:function size:0x7C scope:global align:4 +EXIProbe = .text:0x801F82CC; // type:function size:0x168 scope:global align:4 +EXIProbeEx = .text:0x801F8434; // type:function size:0x60 scope:global align:4 +EXIAttach = .text:0x801F8494; // type:function size:0xE4 scope:global align:4 +EXIDetach = .text:0x801F8578; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x801F8634; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x801F8760; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x801F8870; // type:function size:0x80 scope:local align:4 +TCIntrruptHandler = .text:0x801F88F0; // type:function size:0x1F4 scope:local align:4 +EXTIntrruptHandler = .text:0x801F8AE4; // type:function size:0xAC scope:local align:4 +EXIInit = .text:0x801F8B90; // type:function size:0x104 scope:global align:4 +EXILock = .text:0x801F8C94; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x801F8D88; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x801F8E64; // type:function size:0x18 scope:global align:4 +OSGetFontEncode = .text:0x801F8E7C; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801F8ED4; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801F8ED4; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801F8EE4; // type:label scope:global +OSEnableInterrupts = .text:0x801F8EE8; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801F8EFC; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801F8F20; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801F8F3C; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801F8F50; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801F8FC4; // type:function size:0x2B0 scope:local align:4 +__OSMaskInterrupts = .text:0x801F9274; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801F92FC; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801F9384; // type:function size:0x324 scope:global align:4 +ExternalInterruptHandler = .text:0x801F96A8; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801F96F4; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801F970C; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801F976C; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801F9834; // type:function size:0xDC scope:global align:4 +OSInitMutex = .text:0x801F9910; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x801F9948; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x801F9A24; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x801F9AEC; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x801F9B5C; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x801F9B7C; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x801F9C50; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x801F9C70; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x801F9D70; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x801F9DA8; // type:function size:0x74 scope:global align:4 +Run = .text:0x801F9E1C; // type:function size:0x40 scope:local align:4 +Callback = .text:0x801F9E5C; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x801F9E68; // type:function size:0x1B0 scope:global align:4 +OSRegisterResetFunction = .text:0x801FA018; // type:function size:0x84 scope:global align:4 +Reset = .text:0x801FA09C; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x801FA10C; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x801FA154; // type:function size:0x1B8 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x801FA30C; // type:function size:0xF4 scope:global align:4 +OSGetResetSwitchState = .text:0x801FA400; // type:function size:0x1F4 scope:global align:4 +WriteSramCallback = .text:0x801FA5F4; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x801FA654; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x801FA76C; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x801FA8A0; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x801FA8FC; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x801FA958; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x801FAC60; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x801FAC84; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x801FACA8; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x801FACB8; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x801FAD38; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x801FADDC; // type:function size:0x80 scope:global align:4 +OSSetProgressiveMode = .text:0x801FAE5C; // type:function size:0xA4 scope:global align:4 +SIBusy = .text:0x801FAF00; // type:function size:0x20 scope:global align:4 +CompleteTransfer = .text:0x801FAF20; // type:function size:0x244 scope:local align:4 +SIIntrruptHandler = .text:0x801FB164; // type:function size:0x118 scope:local align:4 +SIInit = .text:0x801FB27C; // type:function size:0x74 scope:global align:4 +__SITransfer = .text:0x801FB2F0; // type:function size:0x208 scope:local align:4 +SIGetStatus = .text:0x801FB4F8; // type:function size:0x10 scope:global align:4 +SISetCommand = .text:0x801FB508; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x801FB51C; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x801FB52C; // type:function size:0x60 scope:global align:4 +SIEnablePolling = .text:0x801FB58C; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x801FB628; // type:function size:0x6C scope:global align:4 +SIGetResponse = .text:0x801FB694; // type:function size:0x24 scope:global align:4 +AlarmHandler = .text:0x801FB6B8; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x801FB744; // type:function size:0x13C scope:global align:4 +SystemCallVector = .text:0x801FB880; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x801FB880; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x801FB89C; // type:label scope:global +__OSInitSystemCall = .text:0x801FB8A0; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x801FB904; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x801FBA2C; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x801FBA3C; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x801FBA48; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x801FBA7C; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x801FBABC; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x801FBAFC; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x801FBB64; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x801FBBA0; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x801FBD60; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x801FBDB0; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x801FBFB0; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x801FBFE0; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x801FC01C; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x801FC13C; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x801FC220; // type:function size:0x1BC scope:global align:4 +OSJoinThread = .text:0x801FC3DC; // type:function size:0x140 scope:global align:4 +OSResumeThread = .text:0x801FC51C; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x801FC7A4; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x801FC914; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x801FCA00; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x801FCB04; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x801FCB0C; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x801FCBA8; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x801FD2F8; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x801FD310; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x801FD318; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x801FD37C; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x801FD518; // type:function size:0x204 scope:global align:4 +InitializeUART = .text:0x801FD71C; // type:function size:0x48 scope:global align:4 +ReadUARTN = .text:0x801FD764; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x801FD76C; // type:function size:0x200 scope:global align:4 +__init_user = .text:0x801FD96C; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x801FD98C; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x801FD9E0; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x801FDA00; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x801FDA28; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x801FDA70; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x801FDA80; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x801FDA9C; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x801FDAEC; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x801FDB18; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x801FDBE4; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x801FDC34; // type:function size:0x104 scope:global align:4 +MTXTrans = .text:0x801FDD38; // type:function size:0x3C scope:global align:4 +MTXScale = .text:0x801FDD74; // type:function size:0x38 scope:global align:4 +MTXLightPerspective = .text:0x801FDDAC; // type:function size:0xCC scope:global align:4 +MTXPerspective = .text:0x801FDE78; // type:function size:0xD0 scope:global align:4 +MTXOrtho = .text:0x801FDF48; // type:function size:0x98 scope:global align:4 +PSVECSquareMag = .text:0x801FDFE0; // type:function size:0x1C scope:global align:4 +VECMag = .text:0x801FDFFC; // type:function size:0x88 scope:global align:4 +__DVDInitWA = .text:0x801FE084; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x801FE0C4; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x801FE3B8; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x801FE43C; // type:function size:0x70 scope:local align:4 +Read = .text:0x801FE4AC; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x801FE5BC; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x801FE63C; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x801FE8D4; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x801FE968; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x801FE994; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x801FEA38; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x801FEAC4; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x801FEB50; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x801FEBEC; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x801FEC84; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x801FED10; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x801FEDAC; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x801FEE68; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x801FEE7C; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x801FEE94; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x801FEED8; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x801FEF10; // type:function size:0x2E0 scope:global align:4 +DVDFastOpen = .text:0x801FF1F0; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x801FF264; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x801FF32C; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x801FF350; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x801FF4B0; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x801FF574; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x801FF634; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x801FF664; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x801FF77C; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x801FF7A0; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x801FF88C; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x801FF8BC; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x801FF9B8; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x801FFA0C; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x801FFA8C; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x801FFB34; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x801FFBD0; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x801FFBF8; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x801FFCAC; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x801FFF40; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x801FFFA8; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x80200040; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x80200068; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x802001C0; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x802002A4; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x802002D8; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x80200310; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x80200424; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x802004C8; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x802005C4; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x80200608; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x802006D4; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x80200704; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x80200774; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x8020079C; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x80200880; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x80200AC8; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x80200D88; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x8020135C; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x80201418; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x802014F4; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x802015C4; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x80201698; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x8020175C; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x802017FC; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x80201824; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x80201868; // type:function size:0xAC scope:global align:4 +DVDCancelAsync = .text:0x80201914; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x80201B84; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x80201C30; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x80201C54; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x80201C5C; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x80201D40; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x80201E5C; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x80201E94; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x80201EFC; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x80201F9C; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x80201FF4; // type:function size:0x60 scope:global align:4 +__DVDStoreErrorCode = .text:0x80202054; // type:function size:0x158 scope:global align:4 +cb = .text:0x802021AC; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x80202284; // type:function size:0x150 scope:global align:4 +__VIRetraceHandler = .text:0x802023D4; // type:function size:0x210 scope:local align:4 +VISetPostRetraceCallback = .text:0x802025E4; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x80202628; // type:function size:0x68 scope:local align:4 +__VIInit = .text:0x80202690; // type:function size:0x1E8 scope:global align:4 +VIInit = .text:0x80202878; // type:function size:0x434 scope:global align:4 +VIWaitForRetrace = .text:0x80202CAC; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x80202D00; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x80202FD4; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x80203174; // type:function size:0x6B0 scope:global align:4 +VIFlush = .text:0x80203824; // type:function size:0x104 scope:global align:4 +VISetNextFrameBuffer = .text:0x80203928; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x80203994; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x80203A10; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x80203A18; // type:function size:0xBC scope:local align:4 +VIGetTvFormat = .text:0x80203AD4; // type:function size:0xC scope:global align:4 +VIGetDTVStatus = .text:0x80203AE0; // type:function size:0x3C scope:global align:4 +ClampStick = .text:0x80203B1C; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x80203C4C; // type:function size:0x108 scope:global align:4 +DoReset = .text:0x80203D54; // type:function size:0xD4 scope:local align:4 +PADProbeCallback = .text:0x80203E28; // type:function size:0x1DC scope:local align:4 +UpdateOrigin = .text:0x80204004; // type:function size:0x194 scope:local align:4 +PADOriginCallback = .text:0x80204198; // type:function size:0x11C scope:local align:4 +PADOriginUpdateCallback = .text:0x802042B4; // type:function size:0x3C scope:local align:4 +PADFixCallback = .text:0x802042F0; // type:function size:0x254 scope:local align:4 +PADResetCallback = .text:0x80204544; // type:function size:0x730 scope:local align:4 +PADReset = .text:0x80204C74; // type:function size:0x16C scope:global align:4 +PADRecalibrate = .text:0x80204DE0; // type:function size:0x154 scope:global align:4 +PADInit = .text:0x80204F34; // type:function size:0x1C4 scope:global align:4 +PADReceiveCheckCallback = .text:0x802050F8; // type:function size:0x15C scope:local align:4 +PADRead = .text:0x80205254; // type:function size:0x338 scope:global align:4 +PADSetSamplingRate = .text:0x8020558C; // type:function size:0xB0 scope:global align:4 +PADControlMotor = .text:0x8020563C; // type:function size:0xBC scope:global align:4 +PADSetSpec = .text:0x802056F8; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x80205758; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x802058CC; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x80205A40; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x80205E38; // type:function size:0x11C scope:local align:4 +AIRegisterDMACallback = .text:0x80205F54; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x80205F98; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x80206020; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x80206038; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x80206048; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x80206060; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x80206070; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x80206148; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x80206158; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x80206238; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x8020624C; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x80206274; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x80206348; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x80206358; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x80206374; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x80206384; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x802063A0; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x802063B0; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x80206514; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x80206590; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x80206620; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x80206678; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x8020685C; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x802068A0; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x80206990; // type:function size:0xF4 scope:global align:4 +ARGetBaseAddress = .text:0x80206A84; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x80206A8C; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x80206B04; // type:function size:0xECC scope:local align:4 +__ARQServiceQueueLo = .text:0x802079D0; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x80207AD0; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x80207AD4; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x80207BA0; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x80207C08; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x80207D64; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x80207D74; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x80207D84; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x80207D9C; // type:function size:0x14 scope:global align:4 +__CARDDefaultApiCallback = .text:0x80207DB0; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x80207DB4; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x80207DE8; // type:function size:0xCC scope:global align:4 +__CARDExiHandler = .text:0x80207EB4; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x80207FCC; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x80208074; // type:function size:0x84 scope:global align:4 +__CARDReadNintendoID = .text:0x802080F8; // type:function size:0x10C scope:global align:4 +__CARDEnableInterrupt = .text:0x80208204; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x802082C4; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x802083B4; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x80208460; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x80208504; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x80208730; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x80208840; // type:function size:0x1A0 scope:local align:4 +__CARDReadSegment = .text:0x802089E0; // type:function size:0x138 scope:global align:4 +__CARDWritePage = .text:0x80208B18; // type:function size:0x120 scope:global align:4 +__CARDEraseSector = .text:0x80208C38; // type:function size:0xDC scope:global align:4 +CARDInit = .text:0x80208D14; // type:function size:0x90 scope:global align:4 +__CARDSetDiskID = .text:0x80208DA4; // type:function size:0x1C scope:global align:4 +__CARDGetControlBlock = .text:0x80208DC0; // type:function size:0xB0 scope:global align:4 +__CARDPutControlBlock = .text:0x80208E70; // type:function size:0x50 scope:global align:4 +CARDGetResultCode = .text:0x80208EC0; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x80208EF0; // type:function size:0x120 scope:global align:4 +CARDGetSectorSize = .text:0x80209010; // type:function size:0x6C scope:global align:4 +__CARDSync = .text:0x8020907C; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x80209114; // type:function size:0x50 scope:local align:4 +BlockReadCallback = .text:0x80209164; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x80209240; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x802092A4; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x80209380; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x802093E4; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x802093FC; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80209404; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x802094D8; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x802095A0; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x802096B8; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x80209754; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x80209800; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80209808; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x802098D8; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x802099A0; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x80209A64; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x80209C14; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x80209E98; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x8020A0D8; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8020A35C; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x8020A3E8; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x8020A978; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x8020A9A0; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x8020A9F4; // type:function size:0x20 scope:global align:4 +DoMount = .text:0x8020AA14; // type:function size:0x3B8 scope:local align:4 +__CARDMountCallback = .text:0x8020ADCC; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x8020AED4; // type:function size:0x188 scope:global align:4 +CARDMount = .text:0x8020B05C; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x8020B0A4; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x8020B140; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x8020B1EC; // type:function size:0x144 scope:local align:4 +CARDFormatAsync = .text:0x8020B330; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x8020B988; // type:function size:0x48 scope:global align:4 +__CARDCompareFileName = .text:0x8020B9D0; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x8020BA38; // type:function size:0x8C scope:global align:4 +__CARDIsPublic = .text:0x8020BAC4; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x8020BAF4; // type:function size:0x174 scope:global align:4 +CARDOpen = .text:0x8020BC68; // type:function size:0x174 scope:global align:4 +CARDClose = .text:0x8020BDDC; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x8020BE30; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x8020BE38; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x8020BF68; // type:function size:0x218 scope:global align:4 +CARDCreate = .text:0x8020C180; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x8020C1C8; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x8020C380; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x8020C4B0; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x8020C5F4; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x8020C63C; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x8020C7AC; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x8020C85C; // type:function size:0x110 scope:global align:4 +CARDWrite = .text:0x8020C96C; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x8020C9B4; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x8020CA58; // type:function size:0x128 scope:global align:4 +CARDFastDelete = .text:0x8020CB80; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x8020CBC8; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x8020CDC0; // type:function size:0x128 scope:global align:4 +CARDSetStatusAsync = .text:0x8020CEE8; // type:function size:0x170 scope:global align:4 +CARDSetStatus = .text:0x8020D058; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x8020D0A0; // type:function size:0x1F0 scope:global align:4 +CARDRename = .text:0x8020D290; // type:function size:0x48 scope:global align:4 +ExtHandler = .text:0x8020D2D8; // type:function size:0xC scope:local align:4 +ExiHandler = .text:0x8020D2E4; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x8020D314; // type:function size:0x3C scope:local align:4 +HIOEnumDevices = .text:0x8020D350; // type:function size:0x1C4 scope:global align:4 +HIOInit = .text:0x8020D514; // type:function size:0x234 scope:global align:4 +HIOReadMailbox = .text:0x8020D748; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x8020D878; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x8020D96C; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x8020DAB0; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x8020DB2C; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x8020DB50; // type:function size:0xF40 scope:global align:4 +GXCPInterruptHandler = .text:0x8020EA90; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x8020EBCC; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x8020EC38; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x8020ECA8; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x8020ECB4; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x8020EDC4; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x8020EF3C; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x8020EF5C; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x8020F038; // type:function size:0x44 scope:global align:4 +__GXFifoReadEnable = .text:0x8020F07C; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x8020F0A4; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x8020F0C8; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x8020F10C; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x8020F158; // type:function size:0x4C scope:local align:4 +GXSetCurrentGXThread = .text:0x8020F1A4; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x8020F1F0; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x8020F1F8; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x8020F350; // type:function size:0x338 scope:global align:4 +GXSetVtxDescv = .text:0x8020F688; // type:function size:0x35C scope:global align:4 +__GXSetVCD = .text:0x8020F9E4; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x8020FB4C; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x8020FB98; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x8020FEF4; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x80210270; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x8021030C; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x80210398; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x802103A8; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80210678; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x802106C0; // type:function size:0x68 scope:global align:4 +GXDrawDone = .text:0x80210728; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x802107A8; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x802107CC; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x802107E0; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x802107F4; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x80210810; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80210898; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x802108B4; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x802108C8; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x802108E4; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x8021090C; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80210994; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x80210A18; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x80210A98; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80210B24; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x80210C00; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x80210C88; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x80210CE0; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80210D34; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x80210D98; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x80210DE8; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x80210E2C; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x80210E50; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x80210F10; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x80210FD0; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x80211014; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x80211184; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x802111B0; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x8021122C; // type:function size:0xBC scope:global align:4 +GXSetCopyClear = .text:0x802112E8; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x80211350; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x80211578; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x80211594; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x80211704; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80211894; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x802118CC; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x802118E8; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x802118F8; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x80211914; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x802119E8; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x80211A10; // type:function size:0x144 scope:global align:4 +GXSetChanAmbColor = .text:0x80211B54; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x80211CBC; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x80211E24; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x80211E70; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x80212054; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x8021211C; // type:function size:0x254 scope:global align:4 +GXInitTexObjLOD = .text:0x80212370; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x80212504; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x8021250C; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x802126B4; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x80212708; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x80212828; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x80212870; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x802128B8; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x802128CC; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x802128E0; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x802129AC; // type:function size:0x16C scope:global align:4 +GXSetTevIndirect = .text:0x80212B18; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x80212BB4; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x80212D88; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x80212DB4; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x80212DFC; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x80212EC8; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x80212EEC; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x80213090; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x80213110; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x80213194; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x80213254; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x80213314; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x80213388; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x802133FC; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x80213470; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x802134DC; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x80213548; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x802135A0; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x80213640; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x80213690; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x80213714; // type:function size:0x1A0 scope:global align:4 +GXSetNumTevStages = .text:0x802138B4; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x802138E8; // type:function size:0x1B4 scope:global align:4 +GXSetFogRangeAdj = .text:0x80213A9C; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x80213B9C; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x80213CA0; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x80213CE0; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x80213D20; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x80213D98; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x80213DD8; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x80213EE8; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x80213F28; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x80213F7C; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x80213FB4; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x80214034; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x80214038; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x80214100; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x802141D4; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x80214244; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x80214318; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x8021434C; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x80214380; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x802143A4; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x802143E0; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x80214420; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x8021445C; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x802144E0; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x802145FC; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x80214620; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x802146D0; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x80214714; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x8021473C; // type:function size:0x84 scope:global align:4 +__va_arg = .text:0x802147C0; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x802148B4; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x802148FC; // type:function size:0x18 scope:global align:4 +__copy = .text:0x80214914; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x80214944; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x802149C0; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x80214AC0; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x80214B78; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x80214C80; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x80214CA8; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x80214CDC; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x80214D18; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x80214D74; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x80214D74; // type:label scope:global +_savefpr_15 = .text:0x80214D78; // type:label scope:global +_savefpr_16 = .text:0x80214D7C; // type:label scope:global +_savefpr_17 = .text:0x80214D80; // type:label scope:global +_savefpr_18 = .text:0x80214D84; // type:label scope:global +_savefpr_19 = .text:0x80214D88; // type:label scope:global +_savefpr_20 = .text:0x80214D8C; // type:label scope:global +_savefpr_21 = .text:0x80214D90; // type:label scope:global +_savefpr_22 = .text:0x80214D94; // type:label scope:global +_savefpr_23 = .text:0x80214D98; // type:label scope:global +_savefpr_24 = .text:0x80214D9C; // type:label scope:global +_savefpr_25 = .text:0x80214DA0; // type:label scope:global +_savefpr_26 = .text:0x80214DA4; // type:label scope:global +_savefpr_27 = .text:0x80214DA8; // type:label scope:global +_savefpr_28 = .text:0x80214DAC; // type:label scope:global +_savefpr_29 = .text:0x80214DB0; // type:label scope:global +_savefpr_30 = .text:0x80214DB4; // type:label scope:global +_savefpr_31 = .text:0x80214DB8; // type:label scope:global +__restore_fpr = .text:0x80214DC0; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x80214DC0; // type:label scope:global +_restfpr_15 = .text:0x80214DC4; // type:label scope:global +_restfpr_16 = .text:0x80214DC8; // type:label scope:global +_restfpr_17 = .text:0x80214DCC; // type:label scope:global +_restfpr_18 = .text:0x80214DD0; // type:label scope:global +_restfpr_19 = .text:0x80214DD4; // type:label scope:global +_restfpr_20 = .text:0x80214DD8; // type:label scope:global +_restfpr_21 = .text:0x80214DDC; // type:label scope:global +_restfpr_22 = .text:0x80214DE0; // type:label scope:global +_restfpr_23 = .text:0x80214DE4; // type:label scope:global +_restfpr_24 = .text:0x80214DE8; // type:label scope:global +_restfpr_25 = .text:0x80214DEC; // type:label scope:global +_restfpr_26 = .text:0x80214DF0; // type:label scope:global +_restfpr_27 = .text:0x80214DF4; // type:label scope:global +_restfpr_28 = .text:0x80214DF8; // type:label scope:global +_restfpr_29 = .text:0x80214DFC; // type:label scope:global +_restfpr_30 = .text:0x80214E00; // type:label scope:global +_restfpr_31 = .text:0x80214E04; // type:label scope:global +__div2u = .text:0x80214E0C; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x80214EF8; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x80215030; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x80215114; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x80215220; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x80215244; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x80215268; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x80215290; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x80215344; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x80215410; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x80215418; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x8021544C; // type:function size:0x40 scope:global align:4 +exit = .text:0x8021548C; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x80215598; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x8021583C; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x80215BF0; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x80215C00; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x80215CCC; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x80215D00; // type:function size:0x4 scope:global align:4 +toupper = .text:0x80215D04; // type:function size:0x28 scope:global align:4 +tolower = .text:0x80215D2C; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x80215D54; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x80216030; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x8021606C; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x802160BC; // type:function size:0x44 scope:global align:4 +memchr = .text:0x80216100; // type:function size:0x2C scope:global align:4 +memmove = .text:0x8021612C; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x80216208; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x802162B8; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x8021637C; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x80216428; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x802164E4; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x802164E8; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x802165BC; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x80216634; // type:function size:0x7C scope:global align:4 +printf = .text:0x802166B0; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x8021677C; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x802167E8; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x80216840; // type:function size:0x630 scope:local align:4 +float2str = .text:0x80216E70; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x802174A8; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x802175DC; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x802178BC; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x80217AE0; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x80217FB8; // type:function size:0x8 scope:global align:4 +rand = .text:0x80217FC0; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x80217FE4; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x802180A0; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x80218130; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x80218AD4; // type:function size:0x564 scope:local align:4 +strstr = .text:0x80219038; // type:function size:0x6C scope:global align:4 +strchr = .text:0x802190A4; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x802190D4; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x80219114; // type:function size:0x124 scope:global align:4 +strcat = .text:0x80219238; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x80219264; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x802192A8; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x8021935C; // type:function size:0x20 scope:global align:4 +atof = .text:0x8021937C; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x80219408; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x80219AEC; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x80219BB0; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x80219CA0; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x80219D4C; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x8021A118; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8021A460; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x8021A468; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8021A500; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8021A5E0; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8021A660; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x8021A668; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x8021A900; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x8021B118; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x8021B138; // type:function size:0x80 scope:weak align:4 +atan = .text:0x8021B1B8; // type:function size:0x240 scope:global align:4 +copysign = .text:0x8021B3F8; // type:function size:0x2C scope:global align:4 +frexp = .text:0x8021B424; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x8021B4C0; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x8021B638; // type:function size:0x20 scope:global align:4 +pow = .text:0x8021B658; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x8021B678; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x8021B680; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x8021B874; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x8021B894; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x8021B904; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x8021B948; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x8021BA20; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x8021BA64; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x8021BA84; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x8021BAA4; // type:function size:0x194 scope:global align:4 +sinf = .text:0x8021BC38; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x8021BDDC; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x8021BE0C; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x8021BE9C; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x8021BEC4; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x8021BEE4; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x8021BF10; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x8021C004; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x8021C060; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x8021C084; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x8021C144; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x8021C224; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x8021C23C; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x8021C260; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x8021C334; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x8021C358; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x8021C380; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x8021C3F4; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x8021C41C; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x8021C424; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x8021C49C; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x8021C538; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x8021C564; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x8021C5CC; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x8021C60C; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x8021C63C; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x8021C6E0; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x8021C76C; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x8021C7C0; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x8021C824; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x8021C8AC; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x8021C914; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x8021C990; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x8021C9B4; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x8021CA34; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x8021CAC4; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x8021CB74; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x8021CBE8; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x8021CC64; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x8021CD34; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x8021CDB0; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x8021CE00; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x8021CE24; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x8021CE2C; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x8021CE30; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x8021CE44; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x8021CEC8; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x8021CF60; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x8021CFB0; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x8021CFE4; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x8021D00C; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x8021D034; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x8021D084; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x8021D0B4; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x8021D238; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x8021D314; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x8021D558; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x8021D740; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x8021D93C; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x8021DB40; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x8021DD48; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x8021DE80; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x8021DEE4; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x8021E0E8; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x8021E16C; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x8021E444; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x8021E5E8; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x8021E5F0; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x8021E5F8; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x8021E600; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x8021E6D8; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x8021E710; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x8021E7D4; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x8021E7DC; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x8021E7E4; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x8021E91C; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x8021E958; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x8021EABC; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x8021EB08; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x8021EC04; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x8021ED4C; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x8021EEC4; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x8021F040; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x8021F068; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x8021F10C; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x8021F174; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x8021F308; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x8021F3A4; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x8021F454; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x8021F518; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x8021F56C; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x8021F5D0; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x8021F660; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x8021F6E8; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x8021F724; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x8021F7A8; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x8021F818; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x8021F880; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x8021F8C4; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x8021F90C; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x8021F91C; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x8021FA0C; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x8021FA48; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x8021FA58; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x8021FA68; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x8021FA90; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x8021FB40; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x8021FBB8; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x8021FD38; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x8021FDA0; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x8021FDB0; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x8021FE44; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x8021FE64; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x8021FEAC; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x8021FF0C; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x8021FFA0; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x8021FFF0; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x802201A8; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x80220360; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x80220368; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x802203B0; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x80220438; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x80220470; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x80220558; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x8022055C; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x8022059C; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x802205CC; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x802205FC; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x80220640; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x80220684; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x802206B4; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x802206E4; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x80220708; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x8022073C; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x80220980; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80220B18; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x80220B58; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x80220BC4; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x80220C44; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80220CAC; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80220CFC; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80220D3C; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x80220D7C; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80220DBC; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x80220E78; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x80220EA4; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x80220FAC; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x80221268; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x80221418; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x8022141C; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x80221420; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x80221428; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x802216C0; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x8022176C; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x80221848; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x80221924; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x802219D0; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80221A0C; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x80221A4C; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x80221AC4; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80221B18; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x80221BB4; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x80221C40; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x80221EA0; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x80221EA4; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80221EA8; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80221EC0; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80221EC0; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x80221F20; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x80221F20; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x80221F24; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x80221F28; // type:object size:0x4 scope:local align:4 +@191 = .rodata:0x80221F40; // type:object size:0x9 scope:local align:4 data:string +@208 = .rodata:0x80221F4C; // type:object size:0xC scope:local align:4 data:string +@80 = .rodata:0x80221F58; // type:object size:0xB scope:local align:4 data:string +@191 = .rodata:0x80221F68; // type:object size:0x9 scope:local align:4 data:string +@193 = .rodata:0x80221F74; // type:object size:0xB scope:local align:4 data:string +@178 = .rodata:0x80221F80; // type:object size:0x1D scope:local align:4 data:string +@38 = .rodata:0x80221FA0; // type:object size:0x31 scope:local align:4 data:string +@39 = .rodata:0x80221FD4; // type:object size:0x33 scope:local align:4 data:string +@60 = .rodata:0x80222008; // type:object size:0x1D scope:local align:4 data:string +@61 = .rodata:0x80222028; // type:object size:0x11 scope:local align:4 data:string +@62 = .rodata:0x8022203C; // type:object size:0x27 scope:local align:4 data:string +@254 = .rodata:0x80222068; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80222078; // type:label scope:local +@161 = .rodata:0x80222078; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x8022208C; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x802220A0; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x802220B4; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x802220C8; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x802220DC; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x802220F0; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x80222104; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x80222118; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x8022212C; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x80222140; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x80222154; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x80222168; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x8022217C; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x80222190; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x8022219C; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x802221A8; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x802221B4; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x802221C4; // type:object size:0xD scope:local align:4 data:string +@81 = .rodata:0x802221D8; // type:object size:0x14 scope:local align:4 data:4byte +@82 = .rodata:0x802221EC; // type:object size:0x14 scope:local align:4 data:4byte +mcbtypetrans$1481 = .rodata:0x80222200; // type:object size:0x18 scope:local align:4 +@3833 = .rodata:0x80222218; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x80222278; // type:object size:0x60 scope:local align:4 data:4byte +@2564 = .rodata:0x802222D8; // type:object size:0xC scope:local align:4 data:4byte +@2580 = .rodata:0x802222E4; // type:object size:0xC scope:local align:4 data:4byte +@2660 = .rodata:0x802222F0; // type:object size:0xC scope:local align:4 data:4byte +@2515 = .rodata:0x80222300; // type:object size:0x14 scope:local align:4 data:4byte +@2562 = .rodata:0x80222314; // type:object size:0x18 scope:local align:4 data:4byte +@1088 = .rodata:0x80222330; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x80222340; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x8022234C; // type:object size:0xC scope:local align:4 data:4byte +@2250 = .rodata:0x80222358; // type:object size:0x10 scope:local align:4 data:4byte +@2251 = .rodata:0x80222368; // type:object size:0x10 scope:local align:4 data:4byte +@2058 = .rodata:0x80222378; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x802223A0; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x802223C0; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x802223E0; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x80222400; // type:object size:0x10 scope:local align:4 data:4byte +@4066 = .rodata:0x80222410; // type:object size:0x1C scope:local align:4 data:4byte +@4070 = .rodata:0x8022242C; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80222438; // type:label scope:local +@5139 = .rodata:0x80222438; // type:object size:0x18 scope:local align:4 data:4byte +@5210 = .rodata:0x80222450; // type:object size:0x10 scope:local align:4 +@5215 = .rodata:0x80222460; // type:object size:0x18 scope:local align:4 +@5216 = .rodata:0x80222478; // type:object size:0xC scope:local align:4 +@5220 = .rodata:0x80222484; // type:object size:0x10 scope:local align:4 +@5224 = .rodata:0x80222494; // type:object size:0x10 scope:local align:4 +@5240 = .rodata:0x802224A4; // type:object size:0x28 scope:local align:4 +@5241 = .rodata:0x802224CC; // type:object size:0x14 scope:local align:4 +@1996 = .rodata:0x802224E0; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x802224F8; // type:label scope:local +@1620 = .rodata:0x802224F8; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x80222504; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x8022251C; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x80222534; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x80222544; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x8022255C; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x80222574; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x8022258C; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x802225A0; // type:object size:0xC scope:local align:4 data:4byte +@1692 = .rodata:0x802225AC; // type:object size:0xC scope:local align:4 data:4byte +@1702 = .rodata:0x802225B8; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x802225C8; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x802225D4; // type:object size:0xC scope:local align:4 data:4byte +@3938 = .rodata:0x802225E0; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x80222600; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x80222630; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x80222640; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x80222650; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x80222668; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x802226A8; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x802226B8; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x802226C8; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x802226E0; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x80222728; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x80222768; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x80222868; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x80222968; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x80222A68; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x80222A70; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x80222A80; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x80222AA8; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x80222AD8; // type:label scope:local +bp = .rodata:0x80222AD8; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x80222AE8; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x80222AF8; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x80222B08; // type:label scope:local +atanhi = .rodata:0x80222B08; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x80222B28; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x80222B48; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x80222BA0; // type:label scope:local +atan_coeff$96 = .rodata:0x80222BA0; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x80222BBC; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x80222BD4; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x80222BEC; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x80222C08; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x80222C24; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x80222C3C; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x80222C58; // type:label scope:local +tmp_float = .rodata:0x80222C58; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x80222C68; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x80222C88; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x80222CB0; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x80222CD0; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x80222CE0; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x80222CF4; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x80222D08; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x80222D20; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x80222D30; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x80222D40; // type:label scope:local +J_STREAMNAME = .data:0x80222D40; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x80222DC0; // type:object size:0x2C scope:global align:4 +@102 = .data:0x80222DEC; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x80222E10; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x80222E40; // type:object size:0x1A00 scope:global align:32 +calc_sw_table = .data:0x80224840; // type:object size:0x51 scope:local align:4 +@345 = .data:0x80224894; // type:object size:0x20 scope:local align:4 +@344 = .data:0x802248B4; // type:object size:0x20 scope:local align:4 +history = .data:0x802248D8; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$94 = .data:0x80224900; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x80224920; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x80224960; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x80224D60; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x80224D78; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x80224F78; // type:object size:0xC scope:local align:4 +extdir = .data:0x80224F88; // type:object size:0x40 scope:local align:4 +@149 = .data:0x80224FC8; // type:object size:0x34 scope:local align:4 +@239 = .data:0x80224FFC; // type:object size:0x44 scope:local align:4 +@276 = .data:0x80225040; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x80225084; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x80225184; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x80225288; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x80225688; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x80225788; // type:label scope:local +VIB_TABLE = .data:0x80225788; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x802257AC; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x802257D0; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x802257DC; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x802257F4; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x8022580C; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x80225824; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x8022583C; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x80225854; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x80225870; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x80225888; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x802258A0; // type:object size:0x10 scope:local align:4 +@151 = .data:0x802258B0; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x80225948; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802259C8; // type:label scope:local +EVENT_OFFSET = .data:0x802259C8; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x802259E8; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x8022606C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x80226090; // type:label scope:local +bgm_mute_set = .data:0x80226090; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x802260E0; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x80226130; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x8022615C; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x80226174; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022618C; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x802261A8; // type:label scope:local +tbl_scene_to_bgm = .data:0x802261A8; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x802261E0; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x80226218; // type:object size:0x14 scope:local align:4 +filelist = .data:0x8022622C; // type:object size:0x1C0 scope:global align:4 +header = .data:0x802263EC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x80226410; // type:label scope:local +parts_bright_table = .data:0x80226410; // type:object size:0x20 scope:local align:4 +demo4 = .data:0x80226430; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x8022645C; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x80226484; // type:object size:0xC scope:local align:4 +demo16 = .data:0x80226490; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x802264B4; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x80226508; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x80226518; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x80226544; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022656C; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x80226594; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x802265BC; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x802265DC; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x80226610; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022668C; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x80226708; // type:object size:0xC scope:local align:4 +demo40 = .data:0x80226714; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x80226728; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x80226754; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x80226788; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x802267C8; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x802267DC; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x80226810; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x80226848; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x80226870; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x80226884; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022689C; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x802268BC; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x80226904; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x80226910; // type:object size:0x564 scope:local align:4 +@370 = .data:0x80226E74; // type:object size:0x2C scope:local align:4 +@468 = .data:0x80226EA0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x80226ED0; // type:label scope:local +filter_table = .data:0x80226ED0; // type:object size:0x40 scope:local align:4 +table4 = .data:0x80226F10; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x80226F40; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x80227220; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x80227230; // type:label scope:local +@388 = .data:0x80227230; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x8022723C; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x80227248; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x80227254; // type:object size:0xC scope:local align:4 +@435 = .data:0x80227260; // type:object size:0x14 scope:local align:4 +@430 = .data:0x80227274; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x80227290; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x802272DC; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x802272EC; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x802272F8; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x80227350; // type:label scope:local +@388 = .data:0x80227350; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x80227368; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022737C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x80227390; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x802273A4; // type:object size:0xC scope:local align:4 +@431 = .data:0x802273B0; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x802273C4; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x80227428; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802274A0; // type:label scope:local +@577 = .data:0x802274A0; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x802274B0; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x802274BC; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x802274C8; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x802274D4; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x802279A0; // type:object size:0x499 scope:local align:32 data:byte +convFmts = .data:0x80227E3C; // type:object size:0x3C scope:local align:4 +@1718 = .data:0x80227E78; // type:object size:0xF scope:local align:4 data:string +@1719 = .data:0x80227E88; // type:object size:0xD scope:local align:4 data:string +@1720 = .data:0x80227E98; // type:object size:0xF scope:local align:4 data:string +@1721 = .data:0x80227EA8; // type:object size:0xB scope:local align:4 data:string +@1722 = .data:0x80227EB4; // type:object size:0xB scope:local align:4 data:string +@1723 = .data:0x80227EC0; // type:object size:0xC scope:local align:4 data:string +@1724 = .data:0x80227ECC; // type:object size:0xC scope:local align:4 data:string +@1725 = .data:0x80227ED8; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x80227EE8; // type:object size:0x20 scope:local align:4 +@1740 = .data:0x80227F08; // type:object size:0x28 scope:local align:4 +@1770 = .data:0x80227F30; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x80227F3C; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x80227F48; // type:object size:0xA scope:local align:4 data:string +@1773 = .data:0x80227F54; // type:object size:0xA scope:local align:4 data:string +@1774 = .data:0x80227F60; // type:object size:0xD scope:local align:4 data:string +@1775 = .data:0x80227F70; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x80227F80; // type:object size:0xC scope:local align:4 data:string +@1778 = .data:0x80227F8C; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x80227F98; // type:object size:0x3C scope:local align:4 +@1779 = .data:0x80227FD4; // type:object size:0x9 scope:local align:4 data:string +@1780 = .data:0x80227FE0; // type:object size:0x9 scope:local align:4 data:string +@1781 = .data:0x80227FEC; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x80227FF8; // type:object size:0xC scope:local align:4 +@2163 = .data:0x80228004; // type:object size:0xD scope:local align:4 data:string +@2165 = .data:0x80228014; // type:object size:0xA scope:local align:4 data:string +@2167 = .data:0x80228020; // type:object size:0xC scope:local align:4 +@2164 = .data:0x8022802C; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x80228040; // type:object size:0x14 scope:global align:4 +@2171 = .data:0x80228054; // type:object size:0x9 scope:local align:4 data:string +@2172 = .data:0x80228060; // type:object size:0xC scope:local align:4 +@2169 = .data:0x8022806C; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x80228080; // type:object size:0x10 scope:global align:4 +@2175 = .data:0x80228090; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x802280A4; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x802280B4; // type:object size:0xF4 scope:global align:4 +@2191 = .data:0x802281A8; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x802281B8; // type:object size:0x10 scope:global align:4 +@2192 = .data:0x802281C8; // type:object size:0x9 scope:local align:4 data:string +@2193 = .data:0x802281D4; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x802281E8; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x80228200; // type:label scope:local +@570 = .data:0x80228200; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x8022820C; // type:object size:0x1C scope:local align:4 +@733 = .data:0x80228228; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x80228234; // type:object size:0xC scope:local align:4 +@731 = .data:0x80228240; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x80228254; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80228280; // type:label scope:local +@577 = .data:0x80228280; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x80228290; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x8022829C; // type:object size:0x14 scope:local align:4 +@653 = .data:0x802282B0; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x802282BC; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x802282D4; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x802282E8; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x802282FC; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x80228308; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x80228314; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x80228320; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x8022832C; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x80228338; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x80228344; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x80228350; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x8022835C; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x80228368; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x80228380; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x8022839C; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x802283A8; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x802283B4; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x802283C0; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802283D0; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x802283E0; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802283F0; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x80228400; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x8022840C; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x8022841C; // type:object size:0xA scope:local align:4 data:string +@1677 = .data:0x80228428; // type:object size:0xB scope:local align:4 data:string +@1678 = .data:0x80228434; // type:object size:0xA scope:local align:4 data:string +@1679 = .data:0x80228440; // type:object size:0xB scope:local align:4 data:string +@1682 = .data:0x8022844C; // type:object size:0xE scope:local align:4 data:string +@1687 = .data:0x8022845C; // type:object size:0xD scope:local align:4 data:string +@1688 = .data:0x8022846C; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x8022847C; // type:object size:0x9 scope:local align:4 data:string +@1690 = .data:0x80228488; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x80228494; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x802284A0; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x802284AC; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x802284B8; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x802284C4; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x802284D0; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x802284DC; // type:object size:0x9 scope:local align:4 data:string +@1724 = .data:0x802284E8; // type:object size:0xA scope:local align:4 data:string +@2045 = .data:0x802284F4; // type:object size:0xF scope:local align:4 data:string +@2046 = .data:0x80228504; // type:object size:0xE scope:local align:4 data:string +@2047 = .data:0x80228514; // type:object size:0xF scope:local align:4 data:string +@2048 = .data:0x80228524; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x80228538; // type:object size:0x1A scope:local align:4 data:string +@2164 = .data:0x80228554; // type:object size:0x20 scope:local align:4 data:string +@2165 = .data:0x80228574; // type:object size:0x1E scope:local align:4 data:string +@2215 = .data:0x80228594; // type:object size:0x9 scope:local align:4 data:string +@2217 = .data:0x802285A0; // type:object size:0xB scope:local align:4 data:string +@2406 = .data:0x802285AC; // type:object size:0xC scope:local align:4 data:4byte +@2476 = .data:0x802285B8; // type:object size:0x9 scope:local align:4 data:string +@4189 = .data:0x802285C4; // type:object size:0xA scope:local align:4 data:string +@4564 = .data:0x802285D0; // type:object size:0xB scope:local align:4 data:string +@4566 = .data:0x802285DC; // type:object size:0xB scope:local align:4 data:string +@4565 = .data:0x802285E8; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x802285F4; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x80228604; // type:object size:0x10 scope:weak align:4 +@4571 = .data:0x80228614; // type:object size:0xA scope:local align:4 data:string +@4574 = .data:0x80228620; // type:object size:0xC scope:local align:4 +@4572 = .data:0x8022862C; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x80228640; // type:object size:0x24 scope:global align:4 +@4580 = .data:0x80228664; // type:object size:0x2D scope:local align:4 data:string +@4582 = .data:0x80228694; // type:object size:0x23 scope:local align:4 data:string +@4581 = .data:0x802286B8; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x802286C4; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x802286D0; // type:object size:0xC scope:weak align:4 +@4583 = .data:0x802286DC; // type:object size:0xB scope:local align:4 data:string +@4584 = .data:0x802286E8; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x802286FC; // type:object size:0x10 scope:weak align:4 +@4586 = .data:0x8022870C; // type:object size:0xB scope:local align:4 data:string +@4587 = .data:0x80228718; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x8022872C; // type:object size:0x10 scope:weak align:4 +@4588 = .data:0x8022873C; // type:object size:0xC scope:local align:4 data:string +@4589 = .data:0x80228748; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x8022875C; // type:object size:0x10 scope:weak align:4 +@4592 = .data:0x8022876C; // type:object size:0x9 scope:local align:4 data:string +@4593 = .data:0x80228778; // type:object size:0x14 scope:local align:4 +@4591 = .data:0x8022878C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x802287A8; // type:object size:0x20 scope:global align:4 +@4596 = .data:0x802287C8; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x802287E4; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x80228804; // type:object size:0x20 scope:global align:4 +@4597 = .data:0x80228824; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x80228830; // type:object size:0xC scope:global align:4 +@4598 = .data:0x8022883C; // type:object size:0xF scope:local align:4 data:string +@4599 = .data:0x8022884C; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x80228860; // type:object size:0x10 scope:weak align:4 +@4601 = .data:0x80228870; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x80228884; // type:object size:0x10 scope:global align:4 +@4603 = .data:0x80228894; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x802288A8; // type:object size:0x10 scope:global align:4 +@4604 = .data:0x802288B8; // type:object size:0x9 scope:local align:4 data:string +@4605 = .data:0x802288C4; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x802288D8; // type:object size:0x10 scope:weak align:4 +@4606 = .data:0x80228904; // type:object size:0x9 scope:local align:4 data:string +@4607 = .data:0x80228910; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x80228924; // type:object size:0x10 scope:global align:4 +@690 = .data:0x80228938; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x80228944; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x80228950; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x80228960; // type:label scope:local +@571 = .data:0x80228960; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x80228970; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x8022897C; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x8022898C; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x8022899C; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x802289A8; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x802289B4; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x802289C4; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x802289DC; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x802289EC; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x802289FC; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x80228A0C; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x80228A20; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x80228A30; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x80228A44; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x80228A50; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x80228A5C; // type:object size:0xC scope:local align:4 +@1109 = .data:0x80228A68; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x80228A74; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x80228A88; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x80228AA4; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x80228ABC; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x80228AD4; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x80228AE0; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x80228AF4; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x80228B04; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x80228B10; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x80228B24; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80228B50; // type:label scope:local +@570 = .data:0x80228B50; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x80228B60; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x80228B6C; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x80228B78; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x80228B84; // type:object size:0xE scope:local align:4 data:string +@999 = .data:0x80228B94; // type:object size:0xB scope:local align:4 data:string +@1001 = .data:0x80228BA0; // type:object size:0xB scope:local align:4 data:string +@1000 = .data:0x80228BAC; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x80228BB8; // type:object size:0x10 scope:weak align:4 +@1002 = .data:0x80228BC8; // type:object size:0xC scope:local align:4 data:string +@1005 = .data:0x80228BD4; // type:object size:0xC scope:local align:4 +@1003 = .data:0x80228BE0; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x80228BF4; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x80228C04; // type:object size:0x34 scope:global align:4 +@1014 = .data:0x80228C38; // type:object size:0xB scope:local align:4 data:string +@1015 = .data:0x80228C44; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x80228C50; // type:object size:0x10 scope:weak align:4 +@1020 = .data:0x80228C60; // type:object size:0xB scope:local align:4 data:string +@1021 = .data:0x80228C6C; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x80228C78; // type:object size:0x10 scope:weak align:4 +@1022 = .data:0x80228CB4; // type:object size:0xB scope:local align:4 data:string +@1023 = .data:0x80228CC0; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x80228CCC; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x80228CE0; // type:label scope:local +@570 = .data:0x80228CE0; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x80228CEC; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x80228CF8; // type:object size:0xC scope:local align:4 +@755 = .data:0x80228D04; // type:object size:0x14 scope:local align:4 +@752 = .data:0x80228D18; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x80228D34; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x80228D80; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x80228DB0; // type:label scope:local +@388 = .data:0x80228DB0; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x80228DC0; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x80228DCC; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x80228DD8; // type:object size:0xC scope:local align:4 +@428 = .data:0x80228DE4; // type:object size:0x14 scope:local align:4 +@423 = .data:0x80228DF8; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x80228E14; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x80228E48; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x80228E60; // type:label scope:local +@466 = .data:0x80228E60; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x80228E70; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x80228E84; // type:object size:0xC scope:local align:4 +@467 = .data:0x80228E90; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x80228EA4; // type:object size:0x68 scope:global align:4 +@476 = .data:0x80228F0C; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x80228F18; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x80228F24; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x80228F80; // type:label scope:local +@570 = .data:0x80228F80; // type:object size:0xC scope:local align:4 data:string +gxTexFmts = .data:0x80228F8C; // type:object size:0x24 scope:local align:4 +@710 = .data:0x80228FB0; // type:object size:0xA scope:local align:4 data:string +@709 = .data:0x80228FBC; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x80228FC8; // type:object size:0x14 scope:global align:4 +@712 = .data:0x80228FDC; // type:object size:0x9 scope:local align:4 data:string +@713 = .data:0x80228FE8; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x80229010; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80229020; // type:label scope:local +bigFont_data = .data:0x80229020; // type:object size:0x7C080 noreloc scope:local align:32 +@577 = .data:0x802A50A0; // type:object size:0xB scope:local align:4 data:string +@907 = .data:0x802A50AC; // type:object size:0xA scope:local align:4 data:string +@951 = .data:0x802A50B8; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802A50C4; // type:object size:0xC scope:local align:4 data:string +@985 = .data:0x802A50D0; // type:object size:0x15 scope:local align:4 data:string +@986 = .data:0x802A50E8; // type:object size:0x17 scope:local align:4 data:string +@987 = .data:0x802A5100; // type:object size:0x17 scope:local align:4 data:string +@988 = .data:0x802A5118; // type:object size:0x1C scope:local align:4 data:string +@989 = .data:0x802A5134; // type:object size:0x18 scope:local align:4 data:string +@990 = .data:0x802A514C; // type:object size:0xE scope:local align:4 data:string +@991 = .data:0x802A515C; // type:object size:0x21 scope:local align:4 data:string +@992 = .data:0x802A5180; // type:object size:0x10 scope:local align:4 data:string +@993 = .data:0x802A5190; // type:object size:0x12 scope:local align:4 data:string +@994 = .data:0x802A51A4; // type:object size:0x14 scope:local align:4 data:string +@995 = .data:0x802A51B8; // type:object size:0x16 scope:local align:4 data:string +@996 = .data:0x802A51D0; // type:object size:0x10 scope:local align:4 data:string +@997 = .data:0x802A51E0; // type:object size:0x12 scope:local align:4 data:string +@998 = .data:0x802A51F4; // type:object size:0x11 scope:local align:4 data:string +@999 = .data:0x802A5208; // type:object size:0xC scope:local align:4 data:string +@1000 = .data:0x802A5214; // type:object size:0xE scope:local align:4 data:string +errorMessages = .data:0x802A5224; // type:object size:0x64 scope:local align:4 +errorList = .data:0x802A5288; // type:object size:0x18 scope:local align:4 +@1035 = .data:0x802A52A0; // type:object size:0xC scope:local align:4 +@1089 = .data:0x802A52AC; // type:object size:0x12 scope:local align:4 data:string +@1090 = .data:0x802A52C0; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802A52D0; // type:object size:0x1E scope:local align:4 data:string +@1272 = .data:0x802A52F0; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802A5308; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802A5314; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802A5320; // type:object size:0xC scope:weak align:4 +@1273 = .data:0x802A532C; // type:object size:0xA scope:local align:4 data:string +@1274 = .data:0x802A5338; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802A5344; // type:object size:0x58 scope:weak align:4 +@1295 = .data:0x802A539C; // type:object size:0xC scope:local align:4 data:string +@1298 = .data:0x802A53A8; // type:object size:0x9 scope:local align:4 data:string +@1299 = .data:0x802A53B4; // type:object size:0xC scope:local align:4 +@1296 = .data:0x802A53C0; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802A53D4; // type:object size:0x10 scope:weak align:4 +@1302 = .data:0x802A53E4; // type:object size:0x9 scope:local align:4 data:string +@1303 = .data:0x802A53F0; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802A5404; // type:object size:0x10 scope:weak align:4 +@1304 = .data:0x802A5430; // type:object size:0xA scope:local align:4 data:string +@1306 = .data:0x802A543C; // type:object size:0x13 scope:local align:4 data:string +@1307 = .data:0x802A5450; // type:object size:0xC scope:local align:4 +@1305 = .data:0x802A545C; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802A5470; // type:object size:0x64 scope:weak align:4 +@1316 = .data:0x802A5538; // type:object size:0xA scope:local align:4 data:string +@1315 = .data:0x802A5544; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802A5550; // type:object size:0x34 scope:global align:4 +@1332 = .data:0x802A5584; // type:object size:0xB scope:local align:4 data:string +@1333 = .data:0x802A5590; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802A55A4; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802A5608; // type:label scope:local +@388 = .data:0x802A5608; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802A561C; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802A562C; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802A563C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802A5648; // type:label scope:local +@577 = .data:0x802A5648; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802A5658; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802A5664; // type:object size:0x3C scope:global align:4 +localNtsc480IntDf = .data:0x802A56A0; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802A56DC; // type:object size:0x20 scope:local align:4 +@959 = .data:0x802A56FC; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802A5708; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802A5714; // type:object size:0xB scope:local align:4 data:string +@962 = .data:0x802A5720; // type:object size:0xB scope:local align:4 data:string +@963 = .data:0x802A572C; // type:object size:0xB scope:local align:4 data:string +@964 = .data:0x802A5738; // type:object size:0xB scope:local align:4 data:string +@965 = .data:0x802A5744; // type:object size:0xB scope:local align:4 data:string +@966 = .data:0x802A5750; // type:object size:0xB scope:local align:4 data:string +@967 = .data:0x802A575C; // type:object size:0xB scope:local align:4 data:string +@968 = .data:0x802A5768; // type:object size:0xB scope:local align:4 data:string +@969 = .data:0x802A5774; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802A5780; // type:object size:0x2C scope:local align:4 +@970 = .data:0x802A57AC; // type:object size:0xA scope:local align:4 data:string +@971 = .data:0x802A57B8; // type:object size:0xA scope:local align:4 data:string +@972 = .data:0x802A57C4; // type:object size:0xC scope:local align:4 data:string +@973 = .data:0x802A57D0; // type:object size:0xE scope:local align:4 data:string +@974 = .data:0x802A57E0; // type:object size:0xB scope:local align:4 data:string +@975 = .data:0x802A57EC; // type:object size:0xB scope:local align:4 data:string +@976 = .data:0x802A57F8; // type:object size:0xB scope:local align:4 data:string +@977 = .data:0x802A5804; // type:object size:0xB scope:local align:4 data:string +@978 = .data:0x802A5810; // type:object size:0xB scope:local align:4 data:string +@979 = .data:0x802A581C; // type:object size:0xB scope:local align:4 data:string +@980 = .data:0x802A5828; // type:object size:0xB scope:local align:4 data:string +@981 = .data:0x802A5834; // type:object size:0xB scope:local align:4 data:string +@982 = .data:0x802A5840; // type:object size:0x10 scope:local align:4 data:string +@983 = .data:0x802A5850; // type:object size:0x10 scope:local align:4 data:string +@984 = .data:0x802A5860; // type:object size:0x10 scope:local align:4 data:string +@985 = .data:0x802A5870; // type:object size:0x10 scope:local align:4 data:string +@986 = .data:0x802A5880; // type:object size:0x10 scope:local align:4 data:string +@987 = .data:0x802A5890; // type:object size:0x10 scope:local align:4 data:string +@988 = .data:0x802A58A0; // type:object size:0x10 scope:local align:4 data:string +@989 = .data:0x802A58B0; // type:object size:0xD scope:local align:4 data:string +@990 = .data:0x802A58C0; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802A58D0; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802A5924; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802A59DC; // type:object size:0xB0 scope:local align:4 +@1326 = .data:0x802A5A8C; // type:object size:0x28 scope:local align:4 data:string +@1346 = .data:0x802A5AB4; // type:object size:0x1C scope:local align:4 +@1958 = .data:0x802A5AD0; // type:object size:0x10 scope:local align:4 data:string +@1979 = .data:0x802A5AE0; // type:object size:0xA scope:local align:4 data:string +@1980 = .data:0x802A5AEC; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802A5B04; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802A5B84; // type:object size:0x100 scope:local align:4 +@2096 = .data:0x802A5C84; // type:object size:0x9 scope:local align:4 data:string +@2097 = .data:0x802A5C90; // type:object size:0xC scope:local align:4 +@2098 = .data:0x802A5C9C; // type:object size:0xA scope:local align:4 data:string +@2099 = .data:0x802A5CA8; // type:object size:0x14 scope:local align:4 +@2094 = .data:0x802A5CBC; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802A5CD8; // type:object size:0x24 scope:global align:4 +@2108 = .data:0x802A5CFC; // type:object size:0x9 scope:local align:4 data:string +@2107 = .data:0x802A5D08; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802A5D14; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802A5E10; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802A5E38; // type:label scope:local +@713 = .data:0x802A5E38; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802A5E4C; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802A5E5C; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802A5E68; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802A5E74; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802A5E80; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802A5E94; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802A5EB0; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802A5F20; // type:label scope:local +@697 = .data:0x802A5F20; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802A5F2C; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802A5F38; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802A5F44; // type:object size:0xA scope:local align:4 data:string +@1262 = .data:0x802A5F50; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802A5F5C; // type:object size:0x18 scope:global align:4 +@1266 = .data:0x802A5F74; // type:object size:0xC scope:local align:4 +@1264 = .data:0x802A5F80; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802A5F94; // type:object size:0x10 scope:global align:4 +@1268 = .data:0x802A5FA4; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802A5FB4; // type:object size:0x9 scope:local align:4 data:string +@1269 = .data:0x802A5FC0; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802A5FCC; // type:object size:0x14 scope:weak align:4 +@1271 = .data:0x802A5FE0; // type:object size:0xC scope:local align:4 data:string +@1272 = .data:0x802A5FEC; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A5FF8; // type:object size:0x14 scope:weak align:4 +@1273 = .data:0x802A600C; // type:object size:0xA scope:local align:4 data:string +@1274 = .data:0x802A6018; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A6024; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802A6038; // type:object size:0x9 scope:local align:4 data:string +@1276 = .data:0x802A6044; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802A6058; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A6088; // type:label scope:local +@1799 = .data:0x802A6088; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802A6098; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802A60A4; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802A60B0; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802A60C4; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802A60D4; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802A60E4; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802A60F8; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802A6108; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802A611C; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802A612C; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802A6138; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802A6144; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802A6150; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802A615C; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802A6168; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802A6174; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802A6180; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802A618C; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802A61A0; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802A61AC; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802A61B8; // type:object size:0xC scope:local align:4 +@2263 = .data:0x802A61C4; // type:object size:0x15 scope:local align:4 data:string +@2264 = .data:0x802A61DC; // type:object size:0x1D scope:local align:4 data:string +@2265 = .data:0x802A61FC; // type:object size:0x1A scope:local align:4 data:string +@2266 = .data:0x802A6218; // type:object size:0x10 scope:local align:4 data:string +@2267 = .data:0x802A6228; // type:object size:0x10 scope:local align:4 data:string +@2268 = .data:0x802A6238; // type:object size:0x10 scope:local align:4 data:string +@2269 = .data:0x802A6248; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802A625C; // type:object size:0x13 scope:local align:4 data:string +@2296 = .data:0x802A6270; // type:object size:0xD scope:local align:4 data:string +@2297 = .data:0x802A6280; // type:object size:0xC scope:local align:4 data:string +@2298 = .data:0x802A628C; // type:object size:0x18 scope:local align:4 data:string +@2299 = .data:0x802A62A4; // type:object size:0x18 scope:local align:4 data:string +@2494 = .data:0x802A62BC; // type:object size:0xC scope:local align:4 data:string +@2497 = .data:0x802A62C8; // type:object size:0x9 scope:local align:4 data:string +@2498 = .data:0x802A62D4; // type:object size:0xC scope:local align:4 +@2500 = .data:0x802A62E0; // type:object size:0x14 scope:local align:4 +@2495 = .data:0x802A62F4; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802A6310; // type:object size:0x30 scope:weak align:4 +@2508 = .data:0x802A6340; // type:object size:0xC scope:local align:4 data:string +@2509 = .data:0x802A634C; // type:object size:0x14 scope:local align:4 +@2511 = .data:0x802A6370; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802A638C; // type:object size:0x34 scope:weak align:4 +@2512 = .data:0x802A63C0; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802A63DC; // type:object size:0x30 scope:weak align:4 +@2520 = .data:0x802A6428; // type:object size:0xD scope:local align:4 data:string +@2522 = .data:0x802A6438; // type:object size:0x9 scope:local align:4 data:string +@2521 = .data:0x802A6444; // type:object size:0xC scope:local align:4 +@2523 = .data:0x802A6464; // type:object size:0xA scope:local align:4 data:string +@2524 = .data:0x802A6470; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802A6490; // type:object size:0xC scope:local align:4 data:string +@2526 = .data:0x802A649C; // type:object size:0xC scope:local align:4 +@2527 = .data:0x802A64BC; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802A64D8; // type:object size:0x30 scope:global align:4 +@2528 = .data:0x802A6508; // type:object size:0x1C scope:local align:4 data:string +@2530 = .data:0x802A6524; // type:object size:0x13 scope:local align:4 data:string +@2529 = .data:0x802A6538; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802A6544; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802A6550; // type:object size:0xC scope:weak align:4 +@2531 = .data:0x802A655C; // type:object size:0xE scope:local align:4 data:string +@2533 = .data:0x802A656C; // type:object size:0xA scope:local align:4 data:string +@2534 = .data:0x802A6578; // type:object size:0x14 scope:local align:4 +@2532 = .data:0x802A658C; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802A65A8; // type:object size:0x18 scope:global align:4 +@2563 = .data:0x802A65C0; // type:object size:0xB scope:local align:4 data:string +@2564 = .data:0x802A65CC; // type:object size:0xA scope:local align:4 data:string +@2565 = .data:0x802A65D8; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802A65E4; // type:object size:0x18 scope:weak align:4 +@2613 = .data:0x802A65FC; // type:object size:0xB scope:local align:4 data:string +@2614 = .data:0x802A6608; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802A661C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A6630; // type:label scope:local +@681 = .data:0x802A6630; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802A663C; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802A664C; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802A6658; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802A6664; // type:object size:0xF scope:local align:4 data:string +@794 = .data:0x802A6674; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802A6684; // type:object size:0xF scope:local align:4 data:string +@796 = .data:0x802A6694; // type:object size:0xF scope:local align:4 data:string +@797 = .data:0x802A66A4; // type:object size:0xF scope:local align:4 data:string +levNames = .data:0x802A66B4; // type:object size:0x14 scope:local align:4 +@944 = .data:0x802A66C8; // type:object size:0x13 scope:local align:4 data:string +@946 = .data:0x802A66DC; // type:object size:0x14 scope:local align:4 data:string +@947 = .data:0x802A66F0; // type:object size:0x12 scope:local align:4 data:string +@948 = .data:0x802A6704; // type:object size:0x12 scope:local align:4 data:string +@949 = .data:0x802A6718; // type:object size:0x30 scope:local align:4 +@950 = .data:0x802A6748; // type:object size:0x11 scope:local align:4 data:string +@953 = .data:0x802A675C; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802A6768; // type:object size:0xC scope:local align:4 +@956 = .data:0x802A6774; // type:object size:0x14 scope:local align:4 +@958 = .data:0x802A6788; // type:object size:0x1C scope:local align:4 +@951 = .data:0x802A67A4; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802A67C8; // type:object size:0x34 scope:global align:4 +@966 = .data:0x802A67FC; // type:object size:0xC scope:local align:4 data:string +@967 = .data:0x802A6808; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802A681C; // type:object size:0x10 scope:weak align:4 +@968 = .data:0x802A6848; // type:object size:0xA scope:local align:4 data:string +@969 = .data:0x802A6854; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802A6868; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802A6878; // type:label scope:local +@683 = .data:0x802A6878; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802A6888; // type:object size:0xA scope:local align:4 data:string +@970 = .data:0x802A6894; // type:object size:0xA scope:local align:4 data:string +@973 = .data:0x802A68A0; // type:object size:0x9 scope:local align:4 data:string +@974 = .data:0x802A68AC; // type:object size:0xC scope:local align:4 +@971 = .data:0x802A68B8; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802A68CC; // type:object size:0x14 scope:global align:4 +@976 = .data:0x802A68E0; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802A68F4; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802A6908; // type:label scope:local +@1013 = .data:0x802A6908; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802A6918; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802A6924; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802A6940; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802A695C; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802A6978; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802A6994; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802A69B0; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802A69CC; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802A69E8; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802A6A04; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802A6A18; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802A6A2C; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802A6A40; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802A6A54; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802A6A68; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802A6A7C; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802A6ACC; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802A6AE4; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802A6AFC; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802A6B18; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802A6B34; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802A6B50; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802A6B6C; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802A6B88; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802A6BA4; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802A6BC0; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802A6BDC; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802A6BF8; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802A6C14; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802A6C34; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802A6C54; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802A6C74; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802A6C94; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802A6CB4; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802A6CD4; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802A6CF4; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802A6D14; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802A6D34; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802A6D54; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802A6D74; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802A6D94; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802A6DB4; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802A6DD4; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802A6DF4; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802A6E14; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802A6E34; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802A6E54; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802A6E74; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802A6E94; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802A6EB4; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802A6ED4; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802A6F64; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802A6F78; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802A6F94; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802A6FA8; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802A6FC4; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802A6FDC; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802A6FFC; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802A7014; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802A7034; // type:object size:0x14 scope:local align:4 data:string +@1081 = .data:0x802A7048; // type:object size:0x1C scope:local align:4 data:string +@1082 = .data:0x802A7064; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802A7080; // type:object size:0x21 scope:local align:4 data:string +@1084 = .data:0x802A70A4; // type:object size:0x15 scope:local align:4 data:string +@1085 = .data:0x802A70BC; // type:object size:0x1D scope:local align:4 data:string +@1086 = .data:0x802A70DC; // type:object size:0x13 scope:local align:4 data:string +@1087 = .data:0x802A70F0; // type:object size:0x1B scope:local align:4 data:string +@1088 = .data:0x802A710C; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802A7120; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802A713C; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802A7150; // type:object size:0x1A scope:local align:4 data:string +@1092 = .data:0x802A716C; // type:object size:0x13 scope:local align:4 data:string +@1093 = .data:0x802A7180; // type:object size:0x1B scope:local align:4 data:string +@1094 = .data:0x802A719C; // type:object size:0x16 scope:local align:4 data:string +@1095 = .data:0x802A71B4; // type:object size:0x1E scope:local align:4 data:string +@1096 = .data:0x802A71D4; // type:object size:0x18 scope:local align:4 data:string +@1097 = .data:0x802A71EC; // type:object size:0x20 scope:local align:4 data:string +@1098 = .data:0x802A720C; // type:object size:0x16 scope:local align:4 data:string +@1099 = .data:0x802A7224; // type:object size:0x1E scope:local align:4 data:string +@1100 = .data:0x802A7244; // type:object size:0x17 scope:local align:4 data:string +@1101 = .data:0x802A725C; // type:object size:0x1F scope:local align:4 data:string +@1102 = .data:0x802A727C; // type:object size:0x13 scope:local align:4 data:string +@1103 = .data:0x802A7290; // type:object size:0x1B scope:local align:4 data:string +@1104 = .data:0x802A72AC; // type:object size:0x12 scope:local align:4 data:string +@1105 = .data:0x802A72C0; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802A72DC; // type:object size:0x90 scope:local align:4 +@1189 = .data:0x802A736C; // type:object size:0x13 scope:local align:4 data:string +@1191 = .data:0x802A7380; // type:object size:0x12 scope:local align:4 data:string +@1192 = .data:0x802A7394; // type:object size:0x9 scope:local align:4 data:string +@1193 = .data:0x802A73A0; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802A73AC; // type:object size:0x11 scope:local align:4 data:string +@1204 = .data:0x802A73C0; // type:object size:0x9 scope:local align:4 data:string +@1205 = .data:0x802A73CC; // type:object size:0xC scope:local align:4 +@1207 = .data:0x802A73D8; // type:object size:0x14 scope:local align:4 +@1209 = .data:0x802A73EC; // type:object size:0x1C scope:local align:4 +@1202 = .data:0x802A7408; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802A742C; // type:object size:0x34 scope:global align:4 +@1218 = .data:0x802A747C; // type:object size:0xA scope:local align:4 data:string +@1221 = .data:0x802A7488; // type:object size:0x13 scope:local align:4 data:string +@1222 = .data:0x802A749C; // type:object size:0xC scope:local align:4 +@1219 = .data:0x802A74A8; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802A74BC; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802A75C0; // type:label scope:local +@1108 = .data:0x802A75C0; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802A75D0; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802A75DC; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802A75F0; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802A7604; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802A7614; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802A7620; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802A7648; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802A7660; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802A7674; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802A7690; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802A76C0; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802A76D4; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802A76F0; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802A7714; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802A7780; // type:label scope:local +@1109 = .data:0x802A7780; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802A7790; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802A779C; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802A77A8; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802A77B4; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802A77C0; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802A77CC; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802A77E0; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802A77F4; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802A7804; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802A7814; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802A7820; // type:object size:0xE scope:local align:4 data:string +@1431 = .data:0x802A7830; // type:object size:0xF scope:local align:4 data:string +@1463 = .data:0x802A7840; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802A784C; // type:object size:0xC scope:local align:4 +@1468 = .data:0x802A7874; // type:object size:0x16 scope:local align:4 data:string +@1471 = .data:0x802A788C; // type:object size:0x14 scope:local align:4 +@1469 = .data:0x802A78A0; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802A78BC; // type:object size:0x30 scope:weak align:4 +@1569 = .data:0x802A78EC; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802A7900; // type:object size:0x1C scope:local align:4 +@1570 = .data:0x802A791C; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802A7940; // type:object size:0x34 scope:weak align:4 +@1574 = .data:0x802A79A8; // type:object size:0x18 scope:local align:4 data:string +@1576 = .data:0x802A79C0; // type:object size:0x13 scope:local align:4 data:string +@1575 = .data:0x802A79D4; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802A79E0; // type:object size:0xC scope:weak align:4 +@1577 = .data:0x802A79EC; // type:object size:0x29 scope:local align:4 data:string +@1578 = .data:0x802A7A18; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802A7A24; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802A7A40; // type:label scope:local +@1892 = .data:0x802A7A40; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802A7A50; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802A7A5C; // type:object size:0xD scope:local align:4 data:string +@2988 = .data:0x802A7A6C; // type:object size:0x48 scope:local align:4 +@3084 = .data:0x802A7AB4; // type:object size:0x15 scope:local align:4 data:string +@3088 = .data:0x802A7ACC; // type:object size:0xB scope:local align:4 data:string +@3092 = .data:0x802A7AD8; // type:object size:0xC scope:local align:4 data:string +@3114 = .data:0x802A7AE4; // type:object size:0xC scope:local align:4 data:string +@3117 = .data:0x802A7AF0; // type:object size:0x9 scope:local align:4 data:string +@3118 = .data:0x802A7AFC; // type:object size:0xA scope:local align:4 data:string +@3141 = .data:0x802A7B08; // type:object size:0x9 scope:local align:4 data:string +@3143 = .data:0x802A7B14; // type:object size:0xD scope:local align:4 data:string +@3162 = .data:0x802A7B24; // type:object size:0x9 scope:local align:4 data:string +@3169 = .data:0x802A7B30; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802A7B40; // type:object size:0x18 scope:weak align:4 +@3173 = .data:0x802A7B58; // type:object size:0xA scope:local align:4 data:string +@3176 = .data:0x802A7B64; // type:object size:0x9 scope:local align:4 data:string +@3177 = .data:0x802A7B70; // type:object size:0xC scope:local align:4 +@3174 = .data:0x802A7B7C; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802A7B90; // type:object size:0x10 scope:weak align:4 +@3180 = .data:0x802A7BA0; // type:object size:0x18 scope:local align:4 data:string +@3183 = .data:0x802A7BB8; // type:object size:0x14 scope:local align:4 +@3184 = .data:0x802A7BCC; // type:object size:0x10 scope:local align:4 data:string +@3185 = .data:0x802A7BDC; // type:object size:0x1C scope:local align:4 +@3181 = .data:0x802A7BF8; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802A7C1C; // type:object size:0x34 scope:weak align:4 +@3358 = .data:0x802A7C50; // type:object size:0x13 scope:local align:4 data:string +@3361 = .data:0x802A7C64; // type:object size:0x1C scope:local align:4 +@3359 = .data:0x802A7C80; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802A7CA4; // type:object size:0x34 scope:weak align:4 +@3363 = .data:0x802A7D0C; // type:object size:0x13 scope:local align:4 data:string +@3364 = .data:0x802A7D20; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802A7D2C; // type:object size:0x20 scope:global align:4 +@3379 = .data:0x802A7D4C; // type:object size:0x11 scope:local align:4 data:string +@3381 = .data:0x802A7D60; // type:object size:0xA scope:local align:4 data:string +@3380 = .data:0x802A7D6C; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802A7D78; // type:object size:0x14 scope:global align:4 +@3392 = .data:0x802A7D8C; // type:object size:0x11 scope:local align:4 data:string +@3393 = .data:0x802A7DA0; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802A7DAC; // type:object size:0x14 scope:global align:4 +@3400 = .data:0x802A7DC0; // type:object size:0x11 scope:local align:4 data:string +@3401 = .data:0x802A7DD4; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802A7DE0; // type:object size:0x14 scope:global align:4 +@3402 = .data:0x802A7DF4; // type:object size:0x16 scope:local align:4 data:string +@3403 = .data:0x802A7E0C; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802A7E18; // type:object size:0x14 scope:weak align:4 +__vt__9ModeState = .data:0x802A7E2C; // type:object size:0x14 scope:weak align:4 +@3409 = .data:0x802A7E40; // type:object size:0x13 scope:local align:4 data:string +@3410 = .data:0x802A7E54; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802A7E60; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802A7E74; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802A7EC8; // type:label scope:local +@1181 = .data:0x802A7EC8; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802A7ED8; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802A7EE4; // type:object size:0x13 scope:local align:4 data:string +@1308 = .data:0x802A7EF8; // type:object size:0x9 scope:local align:4 data:string +@1309 = .data:0x802A7F04; // type:object size:0xC scope:local align:4 +@1313 = .data:0x802A7F2C; // type:object size:0xF scope:local align:4 data:string +@1315 = .data:0x802A7F3C; // type:object size:0xA scope:local align:4 data:string +@1314 = .data:0x802A7F48; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802A7F54; // type:object size:0x14 scope:weak align:4 +@1325 = .data:0x802A7F68; // type:object size:0x12 scope:local align:4 data:string +@1326 = .data:0x802A7F7C; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802A7F88; // type:object size:0x14 scope:weak align:4 +@1334 = .data:0x802A7FB0; // type:object size:0x16 scope:local align:4 data:string +@1337 = .data:0x802A7FC8; // type:object size:0x14 scope:local align:4 +@1338 = .data:0x802A7FDC; // type:object size:0x10 scope:local align:4 data:string +@1339 = .data:0x802A7FEC; // type:object size:0x1C scope:local align:4 +@1335 = .data:0x802A8008; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802A802C; // type:object size:0x34 scope:weak align:4 +@1416 = .data:0x802A8060; // type:object size:0x11 scope:local align:4 data:string +@1419 = .data:0x802A8074; // type:object size:0x1C scope:local align:4 +@1417 = .data:0x802A8090; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802A80B4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802A8120; // type:label scope:local +@684 = .data:0x802A8120; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802A8130; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802A813C; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802A814C; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802A8158; // type:object size:0xC scope:local align:4 +@721 = .data:0x802A8164; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802A8178; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802A8194; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802A81B8; // type:object size:0x34 scope:global align:4 +@831 = .data:0x802A8240; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802A8258; // type:label scope:local +@810 = .data:0x802A8258; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802A826C; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802A827C; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802A8288; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802A829C; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802A82A8; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802A82B4; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802A82DC; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802A82EC; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802A8300; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802A830C; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802A8328; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802A8334; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802A8358; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802A8384; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802A83FC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802A8410; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802A841C; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802A8428; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802A8434; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802A8448; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802A8464; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802A84A0; // type:label scope:local +@841 = .data:0x802A84A0; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802A8524; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802A8530; // type:object size:0xC scope:local align:4 +@956 = .data:0x802A853C; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802A8550; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802A856C; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802A85E0; // type:label scope:local +@570 = .data:0x802A85E0; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802A85F0; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802A85FC; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802A8610; // type:label scope:local +@677 = .data:0x802A8610; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802A8620; // type:object size:0x9 scope:local align:4 data:string +@800 = .data:0x802A862C; // type:object size:0x12 scope:local align:4 data:string +@801 = .data:0x802A8640; // type:object size:0x9 scope:local align:4 data:string +@803 = .data:0x802A864C; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802A8658; // type:object size:0x1E scope:local align:4 data:string +@806 = .data:0x802A8678; // type:object size:0xE scope:local align:4 data:string +@809 = .data:0x802A8688; // type:object size:0x14 scope:local align:4 data:string +@860 = .data:0x802A869C; // type:object size:0xE scope:local align:4 data:string +@866 = .data:0x802A86AC; // type:object size:0x11 scope:local align:4 data:string +@869 = .data:0x802A86C0; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802A86CC; // type:object size:0xC scope:local align:4 +@867 = .data:0x802A86D8; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802A86EC; // type:object size:0x58 scope:weak align:4 +@875 = .data:0x802A8744; // type:object size:0x9 scope:local align:4 data:string +@876 = .data:0x802A8750; // type:object size:0xC scope:local align:4 +@878 = .data:0x802A875C; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802A8770; // type:object size:0x1C scope:local align:4 +@873 = .data:0x802A878C; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802A87B0; // type:object size:0x4C scope:weak align:4 +@892 = .data:0x802A87FC; // type:object size:0xC scope:local align:4 data:string +@893 = .data:0x802A8808; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802A8834; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802A8880; // type:label scope:local +@982 = .data:0x802A8880; // type:object size:0xB scope:local align:4 data:string +@1307 = .data:0x802A888C; // type:object size:0xC scope:local align:4 +@1311 = .data:0x802A8898; // type:object size:0xC scope:local align:4 +@1474 = .data:0x802A88A4; // type:object size:0x10 scope:local align:4 data:string +@1475 = .data:0x802A88B4; // type:object size:0x9 scope:local align:4 data:string +@1478 = .data:0x802A88C0; // type:object size:0xF scope:local align:4 data:string +@1480 = .data:0x802A88D0; // type:object size:0xD scope:local align:4 data:string +@1481 = .data:0x802A88E0; // type:object size:0x14 scope:local align:4 data:string +@1482 = .data:0x802A88F4; // type:object size:0x14 scope:local align:4 data:string +@1485 = .data:0x802A8908; // type:object size:0xB scope:local align:4 data:string +@1486 = .data:0x802A8914; // type:object size:0x15 scope:local align:4 data:string +@1492 = .data:0x802A892C; // type:object size:0xA scope:local align:4 data:string +@1506 = .data:0x802A8938; // type:object size:0x9 scope:local align:4 data:string +@1507 = .data:0x802A8944; // type:object size:0xC scope:local align:4 +@1511 = .data:0x802A896C; // type:object size:0x18 scope:local align:4 data:string +@1513 = .data:0x802A8984; // type:object size:0x13 scope:local align:4 data:string +@1512 = .data:0x802A8998; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802A89B0; // type:object size:0x25 scope:local align:4 data:string +@1515 = .data:0x802A89D8; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802A89E4; // type:object size:0xC scope:weak align:4 +@1516 = .data:0x802A89FC; // type:object size:0xE scope:local align:4 data:string +@1521 = .data:0x802A8A24; // type:object size:0x12 scope:local align:4 data:string +@1524 = .data:0x802A8A38; // type:object size:0x14 scope:local align:4 +@1522 = .data:0x802A8A4C; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802A8A68; // type:object size:0x30 scope:weak align:4 +@1797 = .data:0x802A8A98; // type:object size:0xE scope:local align:4 data:string +@1800 = .data:0x802A8AA8; // type:object size:0x1C scope:local align:4 +@1798 = .data:0x802A8AC4; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802A8AE8; // type:object size:0x34 scope:global align:4 +@1801 = .data:0x802A8B1C; // type:object size:0x15 scope:local align:4 data:string +@1802 = .data:0x802A8B34; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802A8B40; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802A8B58; // type:label scope:local +@853 = .data:0x802A8B58; // type:object size:0xC scope:local align:4 data:string +@940 = .data:0x802A8B64; // type:object size:0x11 scope:local align:4 data:string +@942 = .data:0x802A8B78; // type:object size:0x10 scope:local align:4 data:string +@943 = .data:0x802A8B88; // type:object size:0xD scope:local align:4 data:string +@950 = .data:0x802A8B98; // type:object size:0x9 scope:local align:4 data:string +@951 = .data:0x802A8BA4; // type:object size:0xC scope:local align:4 +@955 = .data:0x802A8BCC; // type:object size:0x14 scope:local align:4 data:string +@958 = .data:0x802A8BE0; // type:object size:0x14 scope:local align:4 +@956 = .data:0x802A8BF4; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802A8C10; // type:object size:0x30 scope:weak align:4 +@1022 = .data:0x802A8C40; // type:object size:0xF scope:local align:4 data:string +@1025 = .data:0x802A8C50; // type:object size:0x1C scope:local align:4 +@1023 = .data:0x802A8C6C; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802A8C90; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802A8CC8; // type:label scope:local +@1269 = .data:0x802A8CC8; // type:object size:0xB scope:local align:4 data:string +@2553 = .data:0x802A8CD4; // type:object size:0xB scope:local align:4 data:string +@2554 = .data:0x802A8CE0; // type:object size:0x9 scope:local align:4 data:string +@2556 = .data:0x802A8CEC; // type:object size:0xB scope:local align:4 data:string +@2558 = .data:0x802A8CF8; // type:object size:0xA scope:local align:4 data:string +@2559 = .data:0x802A8D04; // type:object size:0x9 scope:local align:4 data:string +@2560 = .data:0x802A8D10; // type:object size:0x9 scope:local align:4 data:string +@2885 = .data:0x802A8D1C; // type:object size:0xB scope:local align:4 data:string +@2886 = .data:0x802A8D28; // type:object size:0xA scope:local align:4 data:string +@2888 = .data:0x802A8D34; // type:object size:0xC scope:local align:4 data:string +@2889 = .data:0x802A8D40; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802A8D4C; // type:object size:0xD scope:local align:4 data:string +@2893 = .data:0x802A8D5C; // type:object size:0x11 scope:local align:4 data:string +@2907 = .data:0x802A8D70; // type:object size:0x9 scope:local align:4 data:string +@2998 = .data:0x802A8D7C; // type:object size:0xA scope:local align:4 data:string +@3002 = .data:0x802A8D88; // type:object size:0x14 scope:local align:4 data:string +@3038 = .data:0x802A8D9C; // type:object size:0xA scope:local align:4 data:string +@4595 = .data:0x802A8DA8; // type:object size:0xD scope:local align:4 data:string +@4598 = .data:0x802A8DB8; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x802A8DC4; // type:object size:0xC scope:local align:4 +@4596 = .data:0x802A8DD0; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802A8DE4; // type:object size:0x10 scope:weak align:4 +@4602 = .data:0x802A8DF4; // type:object size:0xD scope:local align:4 data:string +@4605 = .data:0x802A8E04; // type:object size:0x14 scope:local align:4 +@4603 = .data:0x802A8E18; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802A8E34; // type:object size:0x30 scope:weak align:4 +@4611 = .data:0x802A8E64; // type:object size:0x12 scope:local align:4 data:string +@4613 = .data:0x802A8E78; // type:object size:0x10 scope:local align:4 data:string +@4612 = .data:0x802A8E88; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802A8E94; // type:object size:0x10 scope:weak align:4 +@4616 = .data:0x802A8EA4; // type:object size:0x12 scope:local align:4 data:string +@4617 = .data:0x802A8EB8; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802A8EC4; // type:object size:0x10 scope:weak align:4 +@4619 = .data:0x802A8ED4; // type:object size:0xF scope:local align:4 data:string +@4621 = .data:0x802A8EE4; // type:object size:0xA scope:local align:4 data:string +@4622 = .data:0x802A8EF0; // type:object size:0x1C scope:local align:4 +@4623 = .data:0x802A8F0C; // type:object size:0xB scope:local align:4 data:string +@4624 = .data:0x802A8F18; // type:object size:0x24 scope:local align:4 +@4620 = .data:0x802A8F3C; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802A8F68; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802A8FE0; // type:object size:0x78 scope:global align:4 +@4695 = .data:0x802A9058; // type:object size:0xD scope:local align:4 data:string +@4696 = .data:0x802A9068; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802A9094; // type:object size:0x78 scope:global align:4 +@4697 = .data:0x802A910C; // type:object size:0xF scope:local align:4 data:string +@4699 = .data:0x802A911C; // type:object size:0xE scope:local align:4 data:string +@4700 = .data:0x802A912C; // type:object size:0x1C scope:local align:4 +@4701 = .data:0x802A9148; // type:object size:0xD scope:local align:4 data:string +@4702 = .data:0x802A9158; // type:object size:0x24 scope:local align:4 +@4698 = .data:0x802A917C; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802A91A8; // type:object size:0x48 scope:global align:4 +@4706 = .data:0x802A91F0; // type:object size:0xD scope:local align:4 data:string +@4707 = .data:0x802A9200; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802A922C; // type:object size:0x48 scope:global align:4 +@4709 = .data:0x802A9290; // type:object size:0xE scope:local align:4 data:string +@4710 = .data:0x802A92A0; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802A92CC; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802A9314; // type:object size:0x40 scope:weak align:4 +@4718 = .data:0x802A9354; // type:object size:0xF scope:local align:4 data:string +@4720 = .data:0x802A9364; // type:object size:0x9 scope:local align:4 data:string +@4719 = .data:0x802A9370; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802A937C; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802A9394; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802A93E0; // type:label scope:local +@1229 = .data:0x802A93E0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802A93EC; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802A93F8; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802A9404; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802A9410; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802A941C; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802A9428; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802A9434; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802A9440; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802A944C; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802A9458; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802A9464; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802A9470; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802A947C; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802A9488; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802A9494; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802A94A0; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802A94AC; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802A94B8; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802A94C4; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802A94D0; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802A94DC; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802A94E8; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802A94F4; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802A9500; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802A950C; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802A9518; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802A9524; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802A9530; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802A953C; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802A9548; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802A9554; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802A9560; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802A956C; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802A957C; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802A958C; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802A959C; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802A95A8; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802A95B4; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802A95C0; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802A95CC; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802A95D8; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802A95E4; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802A95F0; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802A95FC; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802A9608; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802A9614; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802A9620; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802A962C; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802A9638; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802A9644; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802A9650; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802A965C; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802A9668; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802A9674; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802A9680; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802A968C; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802A9698; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802A96A8; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802A96B8; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802A96C8; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802A96DC; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802A96EC; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802A96F8; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802A9704; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802A9710; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802A971C; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802A9728; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802A9734; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802A9740; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802A975C; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802A9770; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802A978C; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802A97A8; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802A97B4; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802A97C0; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802A97CC; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802A97D8; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802A97EC; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802A9808; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802A9814; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802A9820; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802A982C; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802A9848; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802A985C; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802A9868; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802A9874; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802A9880; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802A988C; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802A98A0; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802A98BC; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802A98E0; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802A9934; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802A9940; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802A9964; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802A99B8; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802A99C4; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802A99E8; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802A9A3C; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802A9A58; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802A9A64; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802A9A70; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802A9A90; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802A9A9C; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802A9AA8; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802A9AB8; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802A9ADC; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802A9B30; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802A9B50; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802A9B5C; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802A9B68; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802A9B80; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802A9B98; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802A9BA4; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802A9BC8; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802A9C1C; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802A9C3C; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802A9C48; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802A9C60; // type:label scope:local +@1343 = .data:0x802A9C60; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802A9C70; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802A9C7C; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802A9C88; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802A9C94; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802A9CAC; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802A9CE4; // type:object size:0x80 scope:local align:4 +@2515 = .data:0x802A9D64; // type:object size:0x13 scope:local align:4 data:string +@2516 = .data:0x802A9D78; // type:object size:0x13 scope:local align:4 data:string +@2517 = .data:0x802A9D8C; // type:object size:0x13 scope:local align:4 data:string +@2518 = .data:0x802A9DA0; // type:object size:0x1E scope:local align:4 data:string +@2531 = .data:0x802A9DC0; // type:object size:0xE scope:local align:4 data:string +@2534 = .data:0x802A9DD0; // type:object size:0x9 scope:local align:4 data:string +@2535 = .data:0x802A9DDC; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802A9DE8; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802A9DFC; // type:object size:0x10 scope:weak align:4 +@2538 = .data:0x802A9E0C; // type:object size:0x9 scope:local align:4 data:string +@2539 = .data:0x802A9E18; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802A9E2C; // type:object size:0x10 scope:weak align:4 +@2540 = .data:0x802A9E3C; // type:object size:0x10 scope:local align:4 data:string +@2541 = .data:0x802A9E4C; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802A9E60; // type:object size:0x10 scope:weak align:4 +@2542 = .data:0x802A9E70; // type:object size:0xA scope:local align:4 data:string +@2543 = .data:0x802A9E7C; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802A9E90; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A9EC0; // type:label scope:local +@571 = .data:0x802A9EC0; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802A9ED0; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802A9EDC; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802A9EE8; // type:object size:0xC scope:local align:4 +@819 = .data:0x802A9EF4; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802A9F08; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802A9F24; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802A9F80; // type:label scope:local +@1027 = .data:0x802A9F80; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802A9F90; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802A9F9C; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802A9FC0; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802AA1C0; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802AA5C0; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802AA7C0; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802AABC0; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802AADC0; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802AB9C0; // type:object size:0x20 scope:local align:4 +@1206 = .data:0x802AB9E0; // type:object size:0x9 scope:local align:4 data:string +@1207 = .data:0x802AB9EC; // type:object size:0xD scope:local align:4 data:string +@1208 = .data:0x802AB9FC; // type:object size:0x10 scope:local align:4 data:string +@1209 = .data:0x802ABA0C; // type:object size:0x11 scope:local align:4 data:string +@1210 = .data:0x802ABA20; // type:object size:0x11 scope:local align:4 data:string +@1211 = .data:0x802ABA34; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802ABA4C; // type:object size:0xE scope:local align:4 data:string +@1213 = .data:0x802ABA5C; // type:object size:0xD scope:local align:4 data:string +@1214 = .data:0x802ABA6C; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802ABA80; // type:object size:0x24 scope:local align:4 +@1576 = .data:0x802ABAA4; // type:object size:0xA scope:local align:4 data:string +@1697 = .data:0x802ABAB0; // type:object size:0x14 scope:local align:4 data:string +@2020 = .data:0x802ABAC4; // type:object size:0xA scope:local align:4 data:string +@2021 = .data:0x802ABAD0; // type:object size:0xA scope:local align:4 data:string +@2022 = .data:0x802ABADC; // type:object size:0xB scope:local align:4 data:string +@2023 = .data:0x802ABAE8; // type:object size:0xB scope:local align:4 data:string +@2024 = .data:0x802ABAF4; // type:object size:0xB scope:local align:4 data:string +@2025 = .data:0x802ABB00; // type:object size:0xB scope:local align:4 data:string +sectionNames$2018 = .data:0x802ABB0C; // type:object size:0x1C scope:local align:4 +@2252 = .data:0x802ABB28; // type:object size:0x9 scope:local align:4 data:string +@2253 = .data:0x802ABB34; // type:object size:0xC scope:local align:4 +@2257 = .data:0x802ABB5C; // type:object size:0xA scope:local align:4 data:string +@2260 = .data:0x802ABB68; // type:object size:0x13 scope:local align:4 data:string +@2261 = .data:0x802ABB7C; // type:object size:0xC scope:local align:4 +@2258 = .data:0x802ABB88; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802ABC68; // type:label scope:local +@1345 = .data:0x802ABC68; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802ABC78; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802ABC84; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802ABC98; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802ABCAC; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802ABCC0; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802ABCD4; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802ABCE8; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802ABCFC; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802ABD10; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802ABD24; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802ABD38; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802ABD4C; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802ABD60; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802ABD74; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802ABD88; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802ABD9C; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802ABDB0; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802ABDC4; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802ABDD8; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802ABDEC; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802ABE00; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802ABE14; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802ABE28; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802ABE3C; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802ABE50; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802ABE64; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802ABE78; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802ABE8C; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802ABEA0; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802ABEB4; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802ABEC8; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802ABEDC; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802ABEF0; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802ABF04; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802ABF18; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802ABF2C; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802ABF40; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802ABF54; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802ABF68; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802ABF7C; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802ABF90; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802ABFA4; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802ABFB8; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802ABFCC; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802ABFE0; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802ABFF4; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802AC008; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802AC01C; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802AC030; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802AC044; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802AC058; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802AC06C; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802AC080; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802AC094; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802AC0A8; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802AC0BC; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802AC0D0; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802AC0E4; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802AC0F8; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802AC10C; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802AC120; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802AC134; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802AC148; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802AC15C; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802AC170; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802AC184; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802AC198; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802AC1AC; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802AC1C0; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802AC1D4; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802AC1E8; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802AC1FC; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802AC210; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802AC224; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802AC238; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802AC24C; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802AC260; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802AC274; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802AC288; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802AC29C; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802AC2B0; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802AC2C4; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802AC2D8; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802AC2EC; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802AC300; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802AC314; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802AC328; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802AC33C; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802AC5F4; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802AC600; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802AC60C; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802AC618; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802AC62C; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802AC640; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802AC654; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802AC668; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802AC67C; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802AC690; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802AC6A4; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802AC6B8; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802AC6CC; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802AC6E0; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802AC6F4; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802AC708; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802AC71C; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802AC730; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802AC744; // type:object size:0x90 scope:local align:4 data:4byte +@1836 = .data:0x802AC7D4; // type:object size:0xA scope:local align:4 data:string +@1839 = .data:0x802AC7E0; // type:object size:0x9 scope:local align:4 data:string +@1840 = .data:0x802AC7EC; // type:object size:0xC scope:local align:4 +@1837 = .data:0x802AC7F8; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802AC80C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AC838; // type:label scope:local +@685 = .data:0x802AC838; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802AC848; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802AC854; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802AC86C; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802AC884; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802AC89C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802AC8B4; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802AC8CC; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802AC8E4; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802AC8FC; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802AC910; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802AC924; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802AC934; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802AC940; // type:object size:0xC scope:local align:4 +@872 = .data:0x802AC968; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802AC980; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802AC994; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802AC9B0; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802AC9E0; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802AC9F4; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802ACA10; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802ACA34; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802ACA68; // type:label scope:local +@1227 = .data:0x802ACA68; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802ACA74; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802ACA84; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802ACA90; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802ACAA8; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802ACAB4; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802ACAD4; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802ACAE0; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802ACAEC; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802ACB0C; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802ACB1C; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802ACB28; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802ACB48; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802ACB68; // type:label scope:local +@625 = .data:0x802ACB68; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802ACB78; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802ACB84; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802ACB90; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802ACBA8; // type:object size:0xC scope:local align:4 +@700 = .data:0x802ACBB4; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802ACBC8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802ACBF8; // type:label scope:local +@1578 = .data:0x802ACBF8; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802ACC0C; // type:object size:0xF scope:local align:4 data:string +@2077 = .data:0x802ACC1C; // type:object size:0xE scope:local align:4 data:string +@2079 = .data:0x802ACC2C; // type:object size:0xC scope:local align:4 data:string +@2078 = .data:0x802ACC38; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802ACC44; // type:object size:0x2C scope:global align:4 +@2088 = .data:0x802ACC70; // type:object size:0xE scope:local align:4 data:string +@2089 = .data:0x802ACC80; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802ACC8C; // type:object size:0x2C scope:global align:4 +@2090 = .data:0x802ACCB8; // type:object size:0xD scope:local align:4 data:string +@2091 = .data:0x802ACCC8; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802ACCD4; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802ACD00; // type:object size:0x10 scope:local align:4 data:string +@2094 = .data:0x802ACD10; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802ACD1C; // type:object size:0x2C scope:global align:4 +@2095 = .data:0x802ACD48; // type:object size:0xF scope:local align:4 data:string +@2096 = .data:0x802ACD58; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802ACD64; // type:object size:0x2C scope:global align:4 +@2097 = .data:0x802ACD90; // type:object size:0x14 scope:local align:4 data:string +@2098 = .data:0x802ACDA4; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802ACDB0; // type:object size:0x2C scope:global align:4 +@2099 = .data:0x802ACDDC; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802ACDEC; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802ACDF8; // type:object size:0x2C scope:global align:4 +@2101 = .data:0x802ACE24; // type:object size:0xD scope:local align:4 data:string +@2102 = .data:0x802ACE34; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802ACE40; // type:object size:0x2C scope:global align:4 +@2103 = .data:0x802ACE6C; // type:object size:0xD scope:local align:4 data:string +@2104 = .data:0x802ACE7C; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802ACE88; // type:object size:0x2C scope:global align:4 +@2105 = .data:0x802ACEB4; // type:object size:0xF scope:local align:4 data:string +@2106 = .data:0x802ACEC4; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802ACED0; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802ACEFC; // type:object size:0x2C scope:weak align:4 +@2107 = .data:0x802ACF28; // type:object size:0xE scope:local align:4 data:string +@2108 = .data:0x802ACF38; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802ACF44; // type:object size:0x2C scope:global align:4 +@2109 = .data:0x802ACF70; // type:object size:0x14 scope:local align:4 data:string +@2110 = .data:0x802ACF84; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802ACF90; // type:object size:0x2C scope:global align:4 +@2111 = .data:0x802ACFBC; // type:object size:0x14 scope:local align:4 data:string +@2112 = .data:0x802ACFD0; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802ACFDC; // type:object size:0x2C scope:global align:4 +@2113 = .data:0x802AD008; // type:object size:0x12 scope:local align:4 data:string +@2114 = .data:0x802AD01C; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802AD028; // type:object size:0x2C scope:global align:4 +@2115 = .data:0x802AD054; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802AD064; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802AD070; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD0A0; // type:label scope:local +@625 = .data:0x802AD0A0; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802AD0B4; // type:object size:0xD scope:local align:4 data:string +@676 = .data:0x802AD0C4; // type:object size:0x10 scope:local align:4 data:string +@678 = .data:0x802AD0D4; // type:object size:0xC scope:local align:4 data:string +@677 = .data:0x802AD0E0; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802AD0EC; // type:object size:0x2C scope:global align:4 +@687 = .data:0x802AD118; // type:object size:0xD scope:local align:4 data:string +@688 = .data:0x802AD128; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802AD134; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD160; // type:label scope:local +@1133 = .data:0x802AD160; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802AD170; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802AD17C; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802AD18C; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802AD198; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802AD1A4; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802AD1D0; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802AD1E0; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802AD1EC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD218; // type:label scope:local +@1358 = .data:0x802AD218; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802AD22C; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802AD23C; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802AD24C; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802AD258; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802AD264; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD290; // type:label scope:local +@716 = .data:0x802AD290; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802AD2A0; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802AD2AC; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802AD2BC; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802AD2D4; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802AD2E0; // type:object size:0xC scope:local align:4 +@790 = .data:0x802AD2EC; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802AD300; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802AD338; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802AD348; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802AD35C; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802AD394; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802AD3A4; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802AD3B8; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802AD3F0; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802AD400; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802AD414; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802AD44C; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802AD464; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802AD478; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802AD4B0; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802AD4C8; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802AD4DC; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802AD514; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802AD52C; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802AD540; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802AD578; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802AD58C; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802AD5A0; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802AD5D8; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802AD610; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802AD648; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802AD678; // type:label scope:local +@868 = .data:0x802AD678; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802AD688; // type:object size:0x9 scope:local align:4 data:string +@988 = .data:0x802AD694; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802AD6A0; // type:object size:0x9 scope:local align:4 data:string +@1066 = .data:0x802AD6AC; // type:object size:0xD scope:local align:4 data:string +@1067 = .data:0x802AD6BC; // type:object size:0xD scope:local align:4 data:string +@1068 = .data:0x802AD6CC; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802AD6D8; // type:object size:0x2C scope:local align:4 +@1148 = .data:0x802AD704; // type:object size:0x9 scope:local align:4 data:string +@1150 = .data:0x802AD710; // type:object size:0x15 scope:local align:4 data:string +@1151 = .data:0x802AD728; // type:object size:0x13 scope:local align:4 data:string +@1152 = .data:0x802AD73C; // type:object size:0xC scope:local align:4 +@1149 = .data:0x802AD748; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802AD75C; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802AD7AC; // type:object size:0x50 scope:weak align:4 +@1153 = .data:0x802AD834; // type:object size:0xD scope:local align:4 data:string +@1156 = .data:0x802AD844; // type:object size:0xC scope:local align:4 +@1154 = .data:0x802AD850; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802AD864; // type:object size:0x14 scope:weak align:4 +@1159 = .data:0x802AD878; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802AD88C; // type:object size:0x10 scope:weak align:4 +@1160 = .data:0x802AD8B8; // type:object size:0x9 scope:local align:4 data:string +@1162 = .data:0x802AD8C4; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802AD8E0; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802AD8EC; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802AD904; // type:object size:0x18 scope:weak align:4 +@1163 = .data:0x802AD91C; // type:object size:0xB scope:local align:4 data:string +@1165 = .data:0x802AD928; // type:object size:0x14 scope:local align:4 data:string +@1166 = .data:0x802AD93C; // type:object size:0xC scope:local align:4 data:string +@1167 = .data:0x802AD948; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802AD958; // type:object size:0x9 scope:local align:4 data:string +@1169 = .data:0x802AD964; // type:object size:0x14 scope:local align:4 +@1164 = .data:0x802AD978; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802AD99C; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802ADAF4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802ADB00; // type:label scope:local +@1064 = .data:0x802ADB00; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802ADB14; // type:object size:0xA scope:local align:4 data:string +@2864 = .data:0x802ADB20; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802ADB30; // type:object size:0xD scope:local align:4 data:string +@2865 = .data:0x802ADB40; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802ADB4C; // type:object size:0x10 scope:global align:4 +@2867 = .data:0x802ADB5C; // type:object size:0xD scope:local align:4 data:string +@2868 = .data:0x802ADB6C; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802ADB78; // type:object size:0x10 scope:global align:4 +@2869 = .data:0x802ADB88; // type:object size:0x10 scope:local align:4 data:string +@2870 = .data:0x802ADB98; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802ADBA4; // type:object size:0x10 scope:global align:4 +@2871 = .data:0x802ADBB4; // type:object size:0xF scope:local align:4 data:string +@2872 = .data:0x802ADBC4; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802ADBD0; // type:object size:0x10 scope:global align:4 +@2873 = .data:0x802ADBE0; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802ADBEC; // type:object size:0x18 scope:weak align:4 +@2874 = .data:0x802ADC04; // type:object size:0xD scope:local align:4 data:string +@2875 = .data:0x802ADC14; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802ADC20; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802ADC38; // type:label scope:local +@676 = .data:0x802ADC38; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802ADC4C; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802ADC58; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802ADC74; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802ADC90; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802ADCA8; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802ADCC0; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802ADCD8; // type:label scope:local +@1581 = .data:0x802ADCD8; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802ADCE8; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802ADCF4; // type:object size:0x28 scope:global align:4 +@2020 = .data:0x802ADD1C; // type:object size:0x13 scope:local align:4 +@2602 = .data:0x802ADD30; // type:object size:0x16 scope:local align:4 data:string +@2604 = .data:0x802ADD48; // type:object size:0x14 scope:local align:4 data:string +@2603 = .data:0x802ADD5C; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802ADD68; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802ADD80; // type:label scope:local +@1085 = .data:0x802ADD80; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802ADD90; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802ADD9C; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802ADDA8; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802ADDC0; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802ADDD8; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802ADDF0; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802ADE04; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802ADE14; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802ADE24; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802ADE34; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802ADE4C; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802ADE58; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802ADE78; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802ADE8C; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802ADEA0; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802ADEB8; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802ADECC; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802ADEDC; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802ADEEC; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802ADF04; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802ADF1C; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802ADF2C; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802ADF3C; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802ADF50; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802ADF6C; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802ADF84; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802ADF9C; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802ADFB8; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802ADFD0; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802ADFE0; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802ADFF0; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802ADFFC; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802AE00C; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802AE018; // type:object size:0xA scope:local align:4 data:string +@1355 = .data:0x802AE024; // type:object size:0xC scope:local align:4 data:string +@1357 = .data:0x802AE030; // type:object size:0x9 scope:local align:4 data:string +@1356 = .data:0x802AE03C; // type:object size:0xC scope:local align:4 +@1358 = .data:0x802AE05C; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802AE068; // type:object size:0x9 scope:local align:4 data:string +@1362 = .data:0x802AE074; // type:object size:0xC scope:local align:4 +@1364 = .data:0x802AE080; // type:object size:0x14 scope:local align:4 +@1359 = .data:0x802AE094; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802AE0B0; // type:object size:0x30 scope:weak align:4 +@1711 = .data:0x802AE100; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802AE11C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802AE140; // type:label scope:local +@903 = .data:0x802AE140; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802AE150; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802AE15C; // type:object size:0x4C0 scope:global align:4 data:4byte +...data.0 = .data:0x802AE620; // type:label scope:local +@461 = .data:0x802AE620; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802AE630; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802AE63C; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802AE648; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802AE654; // type:object size:0xC scope:local align:4 +@658 = .data:0x802AE674; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802AE680; // type:object size:0xC scope:local align:4 +@660 = .data:0x802AE6A0; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802AE6AC; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802AE6B8; // type:object size:0xC scope:local align:4 +@666 = .data:0x802AE6C4; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802AE6D8; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802AE6F4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802AE740; // type:label scope:local +@388 = .data:0x802AE740; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802AE750; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802AE75C; // type:object size:0xD scope:local align:4 +@445 = .data:0x802AE76C; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802AE778; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802AE784; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802AE794; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802AE7A0; // type:object size:0xC scope:local align:4 +@463 = .data:0x802AE7AC; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802AE7C0; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802AE7DC; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802AE80C; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802AE818; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802AE834; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AE880; // type:label scope:local +@1533 = .data:0x802AE880; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802AE88C; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802AE898; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802AE8A4; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802AE8B0; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802AE8BC; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802AE8C8; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802AE8D4; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802AE8E0; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802AE8EC; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802AE8F8; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802AE904; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802AE910; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802AE91C; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802AE928; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802AE934; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802AE940; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802AE94C; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802AE958; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802AE964; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802AE970; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802AE97C; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802AE988; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802AE994; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802AE9A0; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802AE9AC; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802AE9BC; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802AE9D0; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802AE9E4; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802AE9F8; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802AEA08; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802AEA18; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802AEA2C; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802AEA40; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802AEA54; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802AEA68; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802AEA7C; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802AEA8C; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802AEA98; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802AEAA4; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802AEAB0; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802AEABC; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802AEAC8; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802AEAD4; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802AEAE0; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802AEAEC; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802AEAF8; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802AEB08; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802AEB18; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802AEB28; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802AEB38; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802AEB48; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802AEB5C; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802AEB6C; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802AEB7C; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802AEB90; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802AEBA0; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802AEBB0; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802AEBC0; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802AEBD4; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802AEBE4; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802AEBF8; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802AEC08; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802AEC18; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802AEC28; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802AECA0; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802AECB0; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802AECC0; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802AECD8; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802AED10; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802AED2C; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802AED40; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802AED4C; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802AED58; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802AED70; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802AED98; // type:label scope:local +@731 = .data:0x802AED98; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802AEDA8; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802AEDB4; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802AEDC0; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802AEDD0; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802AEDE0; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802AEDEC; // type:object size:0xC scope:local align:4 +@826 = .data:0x802AEDF8; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802AEE04; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802AEE18; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802AEE34; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802AEE6C; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802AEE78; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802AEE84; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802AEEA8; // type:label scope:local +@388 = .data:0x802AEEA8; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802AEEB4; // type:object size:0x9 scope:local align:4 data:string +@552 = .data:0x802AEEC0; // type:object size:0x9 scope:local align:4 data:string +@553 = .data:0x802AEECC; // type:object size:0xC scope:local align:4 +@554 = .data:0x802AEED8; // type:object size:0xC scope:local align:4 data:string +@555 = .data:0x802AEEE4; // type:object size:0x14 scope:local align:4 +@550 = .data:0x802AEEF8; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802AEF14; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802AEF24; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AEF50; // type:label scope:local +@625 = .data:0x802AEF50; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802AEF60; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802AEF6C; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802AEF78; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802AEF84; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802AEF90; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802AEF9C; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802AEFA8; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802AEFB4; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802AEFD0; // type:label scope:local +@1470 = .data:0x802AEFD0; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802AEFE0; // type:object size:0x9 scope:local align:4 data:string +@3292 = .data:0x802AEFEC; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802AEFF8; // type:object size:0xC scope:weak align:4 +@3294 = .data:0x802AF004; // type:object size:0xC scope:local align:4 data:string +@3295 = .data:0x802AF010; // type:object size:0xD scope:local align:4 data:string +@3293 = .data:0x802AF020; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802AF034; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802AF148; // type:label scope:local +@655 = .data:0x802AF148; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802AF160; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802AF174; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802AF188; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802AF194; // type:object size:0xC scope:local align:4 +@753 = .data:0x802AF1A0; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802AF1B4; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802AF1C4; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802AF1E0; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802AF1F0; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802AF214; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802AF240; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802AF288; // type:label scope:local +@1007 = .data:0x802AF288; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802AF29C; // type:object size:0xE scope:local align:4 data:string +@1782 = .data:0x802AF2AC; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802AF2B8; // type:object size:0x10 scope:global align:4 +@2448 = .data:0x802AF2C8; // type:object size:0xE scope:local align:4 data:string +@2449 = .data:0x802AF2D8; // type:object size:0x9 scope:local align:4 data:string +@2451 = .data:0x802AF2E4; // type:object size:0xC scope:local align:4 data:string +@2450 = .data:0x802AF2F0; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802AF2FC; // type:object size:0x18 scope:global align:4 +@2452 = .data:0x802AF32C; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802AF368; // type:label scope:local +@939 = .data:0x802AF368; // type:object size:0x11 scope:local align:4 data:string +@1337 = .data:0x802AF37C; // type:object size:0xC scope:local align:4 data:string +@1339 = .data:0x802AF388; // type:object size:0xC scope:local align:4 data:string +@1340 = .data:0x802AF394; // type:object size:0xD scope:local align:4 data:string +@1341 = .data:0x802AF3A4; // type:object size:0x9 scope:local align:4 data:string +@1342 = .data:0x802AF3B0; // type:object size:0x14 scope:local align:4 +@1343 = .data:0x802AF3C4; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802AF3D0; // type:object size:0x1C scope:local align:4 +@1345 = .data:0x802AF3EC; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802AF3FC; // type:object size:0x24 scope:local align:4 +@1338 = .data:0x802AF420; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802AF44C; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802AF56C; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802AF690; // type:label scope:local +@863 = .data:0x802AF690; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802AF6A0; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802AF6AC; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802AF6B8; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802AF6C8; // type:object size:0xD scope:local align:4 data:string +@1900 = .data:0x802AF6D8; // type:object size:0xC scope:local align:4 data:string +@1902 = .data:0x802AF6E4; // type:object size:0xC scope:local align:4 data:string +@1903 = .data:0x802AF6F0; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802AF700; // type:object size:0x9 scope:local align:4 data:string +@1905 = .data:0x802AF70C; // type:object size:0x14 scope:local align:4 +@1901 = .data:0x802AF720; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802AF73C; // type:object size:0x114 scope:global align:4 +@1956 = .data:0x802AF850; // type:object size:0xC scope:local align:4 data:string +@1958 = .data:0x802AF85C; // type:object size:0x9 scope:local align:4 data:string +@1957 = .data:0x802AF868; // type:object size:0xC scope:local align:4 +@1959 = .data:0x802AF888; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802AF898; // type:object size:0xC scope:weak align:4 +@1961 = .data:0x802AF8A4; // type:object size:0xC scope:local align:4 data:string +@1964 = .data:0x802AF8B0; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802AF8BC; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802AF8D0; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802AF910; // type:label scope:local +@389 = .data:0x802AF910; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802AF924; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802AF934; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802AF940; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802AF950; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802AF960; // type:object size:0xC scope:local align:4 +@421 = .data:0x802AF96C; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802AF980; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802AF9B0; // type:label scope:local +@625 = .data:0x802AF9B0; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802AF9C4; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802AF9D4; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802AF9E4; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802AF9F0; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802AFA00; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802AFA0C; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802AFA20; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802AFA3C; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802AFB50; // type:label scope:local +@396 = .data:0x802AFB50; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802AFB5C; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802AFB6C; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802AFB78; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802AFB84; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802AFB94; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802AFBA0; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802AFBAC; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802AFBB8; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802AFBC8; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802AFBD4; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802AFBE8; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802AFBFC; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802AFC08; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802AFC14; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802AFC20; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802AFC2C; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802AFC38; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802AFC44; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802AFC54; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802AFC60; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802AFC6C; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802AFC78; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802AFC84; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802AFC94; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802AFCA0; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802AFCAC; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802AFE64; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802AFE78; // type:label scope:local +@1331 = .data:0x802AFE78; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802AFE88; // type:object size:0x7C scope:local align:4 data:4byte +@1488 = .data:0x802AFF04; // type:object size:0x9 scope:local align:4 data:string +@1509 = .data:0x802AFF10; // type:object size:0xD scope:local align:4 data:string +bounceSounds = .data:0x802AFF20; // type:object size:0x30 scope:local align:4 +numberPellets = .data:0x802AFF50; // type:object size:0x9C scope:global align:4 data:4byte +@3080 = .data:0x802AFFEC; // type:object size:0xB scope:local align:4 data:string +@3117 = .data:0x802AFFF8; // type:object size:0x9 scope:local align:4 data:string +@3118 = .data:0x802B0004; // type:object size:0xC scope:local align:4 data:string +@3394 = .data:0x802B0010; // type:object size:0xA scope:local align:4 data:string +@3397 = .data:0x802B001C; // type:object size:0xC scope:local align:4 +@3399 = .data:0x802B0028; // type:object size:0x14 scope:local align:4 +@3400 = .data:0x802B003C; // type:object size:0xC scope:local align:4 data:string +@3401 = .data:0x802B0048; // type:object size:0xA scope:local align:4 data:string +@3402 = .data:0x802B0054; // type:object size:0x24 scope:local align:4 +@3403 = .data:0x802B0078; // type:object size:0xE scope:local align:4 data:string +@3404 = .data:0x802B0088; // type:object size:0x2C scope:local align:4 +@3395 = .data:0x802B00B4; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B00E8; // type:object size:0x88 scope:global align:4 +@3420 = .data:0x802B0170; // type:object size:0xB scope:local align:4 data:string +@3422 = .data:0x802B017C; // type:object size:0xD scope:local align:4 data:string +@3421 = .data:0x802B018C; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B0198; // type:object size:0xC scope:weak align:4 +@3424 = .data:0x802B01B0; // type:object size:0x13 scope:local align:4 data:string +@3425 = .data:0x802B01C4; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B01D8; // type:object size:0x10 scope:weak align:4 +@3427 = .data:0x802B01E8; // type:object size:0xC scope:local align:4 data:string +@3437 = .data:0x802B0220; // type:object size:0x14 scope:local align:4 data:string +@3438 = .data:0x802B0234; // type:object size:0xC scope:local align:4 data:string +@3439 = .data:0x802B0240; // type:object size:0xD scope:local align:4 data:string +@3440 = .data:0x802B0250; // type:object size:0x9 scope:local align:4 data:string +@3441 = .data:0x802B025C; // type:object size:0x14 scope:local align:4 +@3442 = .data:0x802B0270; // type:object size:0xC scope:local align:4 data:string +@3443 = .data:0x802B027C; // type:object size:0x1C scope:local align:4 +@3444 = .data:0x802B0298; // type:object size:0xD scope:local align:4 data:string +@3445 = .data:0x802B02A8; // type:object size:0x24 scope:local align:4 +@3436 = .data:0x802B02CC; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B0300; // type:object size:0x130 scope:global align:4 +@3479 = .data:0x802B0430; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B0448; // type:object size:0x18 scope:weak align:4 +@3482 = .data:0x802B0460; // type:object size:0x23 scope:local align:4 data:string +@3483 = .data:0x802B0484; // type:object size:0x3D scope:local align:4 data:string +@3484 = .data:0x802B04C4; // type:object size:0x29 scope:local align:4 data:string +@3481 = .data:0x802B04F0; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B050C; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B0548; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B0554; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B0560; // type:object size:0xC scope:weak align:4 +@3491 = .data:0x802B0578; // type:object size:0xD scope:local align:4 data:string +@3493 = .data:0x802B0588; // type:object size:0xB scope:local align:4 data:string +@3492 = .data:0x802B0594; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B05B0; // type:object size:0x1C scope:global align:4 +@3494 = .data:0x802B05CC; // type:object size:0xC scope:local align:4 data:string +@3496 = .data:0x802B05D8; // type:object size:0x9 scope:local align:4 data:string +@3495 = .data:0x802B05E4; // type:object size:0xC scope:local align:4 +@3497 = .data:0x802B0604; // type:object size:0xA scope:local align:4 data:string +@3498 = .data:0x802B0610; // type:object size:0xC scope:local align:4 +@3499 = .data:0x802B0630; // type:object size:0xD scope:local align:4 data:string +@3500 = .data:0x802B0640; // type:object size:0xC scope:local align:4 +@3535 = .data:0x802B067C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B06A8; // type:label scope:local +@1008 = .data:0x802B06A8; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B06B8; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B06C4; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B06D0; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B06E0; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B06F4; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B0704; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B0720; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B0734; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B0740; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B0750; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B075C; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B0770; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B078C; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B079C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B07A8; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B07B4; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B07D0; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B07EC; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B07FC; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B0808; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B0848; // type:label scope:local +@1040 = .data:0x802B0848; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B0858; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B0864; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B0870; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B0880; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B0890; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B089C; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B08A8; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B08B4; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B08C8; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B08E4; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B0920; // type:label scope:local +@1325 = .data:0x802B0920; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B0930; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B093C; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B0948; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B0958; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B096C; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B097C; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B0988; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B0994; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B09A8; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B09C4; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B0A14; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B0A28; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B0A44; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B0A94; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B0AAC; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B0AC8; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B0B18; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B0B2C; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B0B48; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B0B98; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B0BA8; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B0BC4; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B0C14; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B0C28; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B0C44; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B0C94; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B0CE4; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B0D34; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B0D6C; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B0D80; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B0D98; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B0DA4; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B0DBC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B0DE8; // type:label scope:local +@1312 = .data:0x802B0DE8; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B0DF8; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B0E04; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B0E18; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B0E2C; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B0E40; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B0E4C; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B0E58; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B0E70; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B0E7C; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B0E88; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B0E98; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B0EA4; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B0EB0; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B0EE0; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B0EFC; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B0F18; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B0F34; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B0F54; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B0F70; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B0F84; // type:object size:0x9 scope:local align:4 data:string +@1557 = .data:0x802B0F90; // type:object size:0xC scope:local align:4 data:string +@1558 = .data:0x802B0F9C; // type:object size:0x11 scope:local align:4 +@1614 = .data:0x802B0FB0; // type:object size:0x17 scope:local align:4 +@2993 = .data:0x802B0FC8; // type:object size:0xE scope:local align:4 data:string +@2995 = .data:0x802B0FD8; // type:object size:0xC scope:local align:4 data:string +@2994 = .data:0x802B0FE4; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B0FF0; // type:object size:0x2C scope:global align:4 +@3002 = .data:0x802B101C; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802B102C; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B1038; // type:object size:0x2C scope:global align:4 +@3006 = .data:0x802B1064; // type:object size:0x14 scope:local align:4 data:string +@3007 = .data:0x802B1078; // type:object size:0xC scope:local align:4 data:string +@3008 = .data:0x802B1084; // type:object size:0xD scope:local align:4 data:string +@3009 = .data:0x802B1094; // type:object size:0x9 scope:local align:4 data:string +@3010 = .data:0x802B10A0; // type:object size:0x14 scope:local align:4 +@3011 = .data:0x802B10B4; // type:object size:0xB scope:local align:4 data:string +@3012 = .data:0x802B10C0; // type:object size:0x24 scope:local align:4 +@3013 = .data:0x802B10E4; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802B10F4; // type:object size:0x2C scope:local align:4 +@3015 = .data:0x802B1120; // type:object size:0xB scope:local align:4 data:string +@3016 = .data:0x802B112C; // type:object size:0x34 scope:local align:4 +@3005 = .data:0x802B1160; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B119C; // type:object size:0x16C scope:global align:4 +@3066 = .data:0x802B1308; // type:object size:0xD scope:local align:4 data:string +@3067 = .data:0x802B1318; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802B1324; // type:object size:0x2C scope:global align:4 +@3068 = .data:0x802B1350; // type:object size:0xB scope:local align:4 data:string +@3069 = .data:0x802B135C; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802B1398; // type:object size:0x16C scope:global align:4 +@3074 = .data:0x802B1504; // type:object size:0xE scope:local align:4 data:string +@3077 = .data:0x802B1514; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802B1520; // type:object size:0x14 scope:local align:4 +@3075 = .data:0x802B1534; // type:object size:0x1C scope:local align:4 +@3091 = .data:0x802B1590; // type:object size:0xE scope:local align:4 data:string +@3093 = .data:0x802B15A0; // type:object size:0xD scope:local align:4 data:string +@3094 = .data:0x802B15B0; // type:object size:0x24 scope:local align:4 +@3092 = .data:0x802B15D4; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802B1600; // type:object size:0x48 scope:weak align:4 +@3098 = .data:0x802B1648; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802B165C; // type:object size:0xB scope:local align:4 data:string +@3102 = .data:0x802B1668; // type:object size:0xC scope:local align:4 +@3103 = .data:0x802B1674; // type:object size:0xA scope:local align:4 data:string +@3104 = .data:0x802B1680; // type:object size:0x14 scope:local align:4 +@3099 = .data:0x802B1694; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802B16B0; // type:object size:0x38 scope:global align:4 +@3110 = .data:0x802B16E8; // type:object size:0xC scope:local align:4 data:string +@3112 = .data:0x802B16F4; // type:object size:0x9 scope:local align:4 data:string +@3111 = .data:0x802B1700; // type:object size:0xC scope:local align:4 +@3113 = .data:0x802B1720; // type:object size:0xA scope:local align:4 data:string +@3114 = .data:0x802B172C; // type:object size:0xC scope:local align:4 +@3115 = .data:0x802B174C; // type:object size:0xE scope:local align:4 data:string +@3117 = .data:0x802B175C; // type:object size:0xC scope:local align:4 data:string +@3118 = .data:0x802B1768; // type:object size:0xA scope:local align:4 data:string +@3119 = .data:0x802B1774; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802B1798; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802B17C4; // type:object size:0x78 scope:global align:4 +@3126 = .data:0x802B183C; // type:object size:0xF scope:local align:4 data:string +@3127 = .data:0x802B184C; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802B1860; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802B18A4; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802B1A10; // type:label scope:local +@882 = .data:0x802B1A10; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802B1A20; // type:object size:0x9 scope:local align:4 data:string +@3233 = .data:0x802B1A2C; // type:object size:0x9 scope:local align:4 data:string +@3234 = .data:0x802B1A38; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802B1A60; // type:object size:0x9 scope:local align:4 data:string +@3241 = .data:0x802B1A6C; // type:object size:0x14 scope:local align:4 +@3239 = .data:0x802B1A80; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802B1A9C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B1AD0; // type:label scope:local +@573 = .data:0x802B1AD0; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802B1ADC; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802B1AE8; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802B1AF4; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802B1B04; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802B1B10; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802B1B24; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802B1B30; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802B1B3C; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802B1B4C; // type:object size:0xC scope:local align:4 data:string +@643 = .data:0x802B1B58; // type:object size:0xA scope:local align:4 +@754 = .data:0x802B1B64; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802B1B70; // type:object size:0xC scope:local align:4 +@757 = .data:0x802B1B7C; // type:object size:0x14 scope:local align:4 +@752 = .data:0x802B1B90; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802B1BAC; // type:object size:0x48 scope:global align:4 +@763 = .data:0x802B1BF4; // type:object size:0x14 scope:local align:4 +@761 = .data:0x802B1C08; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802B1C24; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B1C70; // type:label scope:local +@399 = .data:0x802B1C70; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802B1C80; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802B1C8C; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802B1C98; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802B1CA4; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802B1CB0; // type:object size:0xC scope:local align:4 +@449 = .data:0x802B1CD0; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802B1CDC; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802B1CE8; // type:object size:0xC scope:local align:4 +@455 = .data:0x802B1CF4; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802B1D08; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802B1D24; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B1D70; // type:label scope:local +@1321 = .data:0x802B1D70; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802B1D80; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802B1D8C; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802B1D9C; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802B1DAC; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802B1DBC; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802B1DCC; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802B1DDC; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802B1DEC; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802B1DFC; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802B1E0C; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802B1E24; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802B1E34; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802B1E44; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B1E50; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802B1E60; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802B1E70; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802B1E80; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802B1E90; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802B1EA0; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802B1EB0; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802B1EC0; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802B1ECC; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802B1EE0; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802B1EF4; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802B1F04; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802B1F1C; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802B1F28; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802B1F3C; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802B1F4C; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802B1F5C; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802B1F68; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802B1F78; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802B1F88; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802B1F98; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B1FAC; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802B1FBC; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802B1FCC; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802B1FDC; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802B1FEC; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802B1FFC; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802B200C; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802B201C; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802B202C; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802B203C; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802B204C; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802B205C; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802B206C; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802B207C; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802B2094; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802B20A4; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802B20B4; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802B20C4; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802B20D4; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802B20E4; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802B20F4; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802B2104; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802B2114; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802B2124; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802B2134; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B2144; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802B2154; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802B2164; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802B2174; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802B2184; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802B2194; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802B21A4; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802B21B4; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802B21C4; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802B21D4; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802B21E4; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802B21F4; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802B2204; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802B2214; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802B2224; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802B2234; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802B2244; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802B2254; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802B2264; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802B2274; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802B2284; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802B2294; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802B22A4; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802B22B4; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802B22C4; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802B22D0; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802B22E0; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802B22F0; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802B22FC; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802B230C; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802B231C; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802B232C; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802B233C; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802B2350; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802B2364; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802B2374; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802B2384; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802B2394; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802B23A4; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B23B8; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B23CC; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802B23DC; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802B23EC; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802B23FC; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802B2410; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802B2420; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802B2430; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802B2444; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802B2454; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802B2464; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802B2478; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802B248C; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802B24A0; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802B24B0; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802B24C0; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802B24D0; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B24E0; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802B24F0; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802B2500; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802B2514; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802B2524; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802B2538; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802B2548; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802B2558; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802B2568; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802B2578; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802B2588; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802B2598; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802B25A8; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802B25BC; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802B25C8; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802B25D8; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802B25E4; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802B25F0; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802B2600; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802B2610; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802B2620; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802B2630; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802B2640; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802B2650; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802B2664; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802B2678; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802B268C; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802B269C; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802B26B0; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802B26C4; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802B26D8; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802B26E8; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802B26F8; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802B2708; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802B2718; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802B272C; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802B273C; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802B274C; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802B275C; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802B276C; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802B2780; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802B2790; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802B27A4; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802B27B8; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802B27C8; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802B27DC; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802B27F0; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802B2804; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802B2814; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802B2824; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802B2834; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802B2844; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802B2854; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802B2868; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802B287C; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802B288C; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802B28A0; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802B28B0; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802B28C4; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802B28D8; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802B28E4; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802B28F8; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802B2908; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802B2918; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802B2928; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802B293C; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802B2950; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B2960; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802B2970; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802B2980; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802B298C; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802B299C; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802B29AC; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802B29BC; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802B29CC; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802B29E0; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802B29F4; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802B2A08; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802B2A1C; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802B2A30; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802B2A44; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802B2A58; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802B2A6C; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802B2A84; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802B2A9C; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802B2AB4; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802B2AC4; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802B2AD4; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802B2AE4; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802B2AF4; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802B2B04; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802B2B14; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802B2B24; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802B2B34; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802B2B48; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802B2B60; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802B2B74; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802B2B88; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802B2B9C; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802B2BAC; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802B2BC0; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802B2BD4; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802B2BE8; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802B2BF8; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802B2C08; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802B2C18; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802B2C2C; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802B2C3C; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802B2C4C; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802B2C5C; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802B2C6C; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802B2C7C; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802B2C90; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802B2CA0; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802B2CB4; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802B2CC4; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802B2CD4; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802B2CE4; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802B2CF4; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802B2D04; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802B2D18; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802B2D28; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802B2D38; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802B2D48; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802B2D58; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802B2D68; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802B2D78; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802B2D88; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802B2D98; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802B2DA8; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802B2DBC; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802B2DCC; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802B2DDC; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802B2DEC; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802B2DFC; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802B2E0C; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802B2E20; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802B2E30; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802B2E40; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802B2E50; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802B2E60; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802B2E74; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802B2E8C; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802B2EA0; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802B2EB4; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802B2EC8; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802B2ED8; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802B2EE8; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802B2EF8; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802B2F08; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802B2F18; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802B2F28; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802B2F40; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802B2F50; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802B2F60; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802B2F6C; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802B2F78; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802B2F8C; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802B2F9C; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802B2FAC; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802B2FBC; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802B2FD0; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802B2FE4; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802B2FF8; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802B300C; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802B3020; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802B3030; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802B3044; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802B3054; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802B3068; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802B3078; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802B308C; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802B30A0; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802B30B4; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802B30C8; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802B30E0; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802B30F4; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802B3108; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802B3118; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802B3128; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802B3140; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802B3154; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802B3160; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802B316C; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802B317C; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802B3190; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802B31A4; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802B31B8; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802B31C8; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802B31E0; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802B31F0; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802B3200; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802B3210; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802B321C; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802B3228; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802B3234; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802B3240; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802B324C; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802B3258; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802B3268; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802B3280; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B328C; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802B3298; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802B32B0; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802B32C4; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B32D4; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802B32E4; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802B32F4; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802B3308; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802B331C; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802B3334; // type:object size:0x19DC scope:local align:4 +@1782 = .data:0x802B4D10; // type:object size:0xD scope:local align:4 data:string +@2082 = .data:0x802B4D20; // type:object size:0x31 scope:local align:4 data:string +@2084 = .data:0x802B4D54; // type:object size:0x15 scope:local align:4 data:string +@2085 = .data:0x802B4D6C; // type:object size:0x22 scope:local align:4 data:string +...data.0 = .data:0x802B4D90; // type:label scope:local +@1358 = .data:0x802B4D90; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802B4D9C; // type:object size:0xA scope:local align:4 data:string +@2106 = .data:0x802B4DA8; // type:object size:0x9 scope:local align:4 data:string +@2107 = .data:0x802B4DB4; // type:object size:0xC scope:local align:4 +@2109 = .data:0x802B4DC0; // type:object size:0x14 scope:local align:4 +@2110 = .data:0x802B4DD4; // type:object size:0xC scope:local align:4 data:string +@2104 = .data:0x802B4DE0; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802B4E04; // type:object size:0x54 scope:global align:4 +@2121 = .data:0x802B4E58; // type:object size:0xC scope:local align:4 data:string +@2123 = .data:0x802B4E64; // type:object size:0x9 scope:local align:4 data:string +@2122 = .data:0x802B4E70; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4EC8; // type:label scope:local +@1426 = .data:0x802B4EC8; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802B4ED4; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802B4EE0; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802B4EF0; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802B4EFC; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802B4F10; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802B4F84; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802B4FA4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B4FD0; // type:label scope:local +@1167 = .data:0x802B4FD0; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802B4FE0; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802B4FEC; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802B4FF8; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802B5008; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B5014; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802B5028; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802B508C; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802B50A4; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B50B8; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802B50C4; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802B50D0; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802B50E4; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802B5148; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802B515C; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802B5168; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802B5174; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802B51AC; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B51C0; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802B51DC; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802B5250; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802B5268; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802B5274; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802B528C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B52B8; // type:label scope:local +@1794 = .data:0x802B52B8; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802B52C8; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802B52D4; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802B52F0; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802B5328; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802B5338; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802B534C; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802B535C; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802B5368; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802B5384; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802B53F8; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802B5404; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802B5410; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802B5424; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802B5448; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802B54C8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B54F8; // type:label scope:local +@1651 = .data:0x802B54F8; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802B5504; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802B5510; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802B551C; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802B5530; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802B5540; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802B554C; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802B5568; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802B55DC; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802B55EC; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802B5608; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802B567C; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802B568C; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802B56A0; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802B5704; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802B573C; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802B5748; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802B5764; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802B57E4; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802B57F4; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802B5808; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802B586C; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802B587C; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802B5890; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802B58F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5920; // type:label scope:local +@1418 = .data:0x802B5920; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802B5930; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802B593C; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802B5974; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802B5980; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802B5990; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802B599C; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802B59B0; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802B5A24; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802B5A44; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5A70; // type:label scope:local +@1372 = .data:0x802B5A70; // type:object size:0xA scope:local align:4 data:string +@1524 = .data:0x802B5A7C; // type:object size:0xF scope:local align:4 data:string +@1526 = .data:0x802B5A8C; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802B5A98; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802B5AAC; // type:object size:0x64 scope:global align:4 +@1573 = .data:0x802B5B10; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5B40; // type:label scope:local +@1793 = .data:0x802B5B40; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B5B50; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802B5B5C; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802B5B68; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802B5BA0; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802B5BAC; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802B5BC0; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802B5BD0; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802B5BDC; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802B5BF8; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802B5C78; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5CA8; // type:label scope:local +@1255 = .data:0x802B5CA8; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802B5CB8; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802B5CC4; // type:object size:0xA scope:local align:4 data:string +@1499 = .data:0x802B5CD0; // type:object size:0xC scope:local align:4 data:string +@1509 = .data:0x802B5D08; // type:object size:0xD scope:local align:4 data:string +@1511 = .data:0x802B5D18; // type:object size:0x14 scope:local align:4 data:string +@1512 = .data:0x802B5D2C; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B5D3C; // type:object size:0xC scope:local align:4 +@1510 = .data:0x802B5D48; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802B5D64; // type:object size:0x74 scope:global align:4 +@1561 = .data:0x802B5DE4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5E10; // type:label scope:local +@1671 = .data:0x802B5E10; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802B5E20; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802B5E2C; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802B5E3C; // type:object size:0x20 scope:local align:4 +@4233 = .data:0x802B5E5C; // type:object size:0xB scope:local align:4 data:string +@4234 = .data:0x802B5E68; // type:object size:0xD scope:local align:4 data:string +@4235 = .data:0x802B5E78; // type:object size:0xE scope:local align:4 data:string +@4426 = .data:0x802B5E88; // type:object size:0xD scope:local align:4 data:string +@4428 = .data:0x802B5E98; // type:object size:0x14 scope:local align:4 data:string +@4429 = .data:0x802B5EAC; // type:object size:0xF scope:local align:4 data:string +@4431 = .data:0x802B5EBC; // type:object size:0xC scope:local align:4 +@4427 = .data:0x802B5EC8; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802B5EE4; // type:object size:0x74 scope:global align:4 +@4480 = .data:0x802B5F64; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5F90; // type:label scope:local +@1793 = .data:0x802B5F90; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B5FA0; // type:object size:0x9 scope:local align:4 data:string +@2364 = .data:0x802B5FAC; // type:object size:0xC scope:local align:4 data:string +@2374 = .data:0x802B5FE4; // type:object size:0xA scope:local align:4 data:string +@2376 = .data:0x802B5FF0; // type:object size:0x14 scope:local align:4 data:string +@2377 = .data:0x802B6004; // type:object size:0xF scope:local align:4 data:string +@2379 = .data:0x802B6014; // type:object size:0xC scope:local align:4 +@2375 = .data:0x802B6020; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802B603C; // type:object size:0x74 scope:global align:4 +@2429 = .data:0x802B60BC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B60E8; // type:label scope:local +@1050 = .data:0x802B60E8; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802B60F4; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802B6104; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B6110; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802B6120; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802B612C; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802B6140; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802B61A4; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802B61BC; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802B61D0; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802B61DC; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802B61E8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6218; // type:label scope:local +@1507 = .data:0x802B6218; // type:object size:0xC scope:local align:4 data:string +@2427 = .data:0x802B6224; // type:object size:0x9 scope:local align:4 data:string +@2429 = .data:0x802B6230; // type:object size:0x12 scope:local align:4 data:string +@2430 = .data:0x802B6244; // type:object size:0xF scope:local align:4 data:string +@2432 = .data:0x802B6254; // type:object size:0xC scope:local align:4 +@2428 = .data:0x802B6260; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802B627C; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802B62F0; // type:object size:0xC scope:weak align:4 +@2479 = .data:0x802B62FC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6328; // type:label scope:local +@1475 = .data:0x802B6328; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802B6334; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802B6340; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802B6354; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802B6364; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802B6370; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802B638C; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802B640C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6438; // type:label scope:local +@1372 = .data:0x802B6438; // type:object size:0xC scope:local align:4 data:string +@1617 = .data:0x802B6444; // type:object size:0xC scope:local align:4 data:string +@1627 = .data:0x802B647C; // type:object size:0x9 scope:local align:4 data:string +@1629 = .data:0x802B6488; // type:object size:0xF scope:local align:4 data:string +@1631 = .data:0x802B6498; // type:object size:0xC scope:local align:4 +@1628 = .data:0x802B64A4; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802B64B8; // type:object size:0x64 scope:global align:4 +@1678 = .data:0x802B651C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6548; // type:label scope:local +@1051 = .data:0x802B6548; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802B6558; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802B6564; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802B6578; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802B6584; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802B6594; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802B65A0; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802B65B4; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802B6618; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802B6630; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802B6644; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802B6650; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802B665C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6688; // type:label scope:local +@1370 = .data:0x802B6688; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802B6694; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802B66A4; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802B66B0; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802B66C4; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802B6728; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6758; // type:label scope:local +@1169 = .data:0x802B6758; // type:object size:0xB scope:local align:4 data:string +@1341 = .data:0x802B6764; // type:object size:0x14 scope:local align:4 data:string +@1342 = .data:0x802B6778; // type:object size:0xF scope:local align:4 data:string +@1344 = .data:0x802B6788; // type:object size:0xC scope:local align:4 +@1340 = .data:0x802B6794; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802B67B0; // type:object size:0x74 scope:global align:4 +@1358 = .data:0x802B6824; // type:object size:0xC scope:local align:4 data:string +@1404 = .data:0x802B6868; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6898; // type:label scope:local +@1357 = .data:0x802B6898; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802B68A8; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802B68B4; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x802B68C4; // type:object size:0x14 scope:local align:4 data:string +@1777 = .data:0x802B68D8; // type:object size:0xF scope:local align:4 data:string +@1779 = .data:0x802B68E8; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802B68F4; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802B6910; // type:object size:0x74 scope:global align:4 +@1827 = .data:0x802B6990; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B69C0; // type:label scope:local +@1610 = .data:0x802B69C0; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802B69CC; // type:object size:0x10 scope:local align:4 +@1899 = .data:0x802B69DC; // type:object size:0x14 scope:local align:4 data:string +@1900 = .data:0x802B69F0; // type:object size:0xF scope:local align:4 data:string +@1902 = .data:0x802B6A00; // type:object size:0xC scope:local align:4 +@1898 = .data:0x802B6A0C; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802B6A28; // type:object size:0x74 scope:global align:4 +@1951 = .data:0x802B6AA8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6AD8; // type:label scope:local +@1050 = .data:0x802B6AD8; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802B6AE4; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802B6AF4; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802B6B00; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802B6B14; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802B6B78; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802B6B90; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802B6BA4; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802B6BB0; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802B6BBC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6BE8; // type:label scope:local +@1476 = .data:0x802B6BE8; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802B6BF4; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802B6C00; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802B6C10; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802B6C1C; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802B6C30; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802B6C94; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6CC0; // type:label scope:local +@1147 = .data:0x802B6CC0; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802B6CCC; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B6CD8; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802B6CE4; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802B6D1C; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802B6D28; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B6D3C; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B6D4C; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802B6D58; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802B6D74; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802B6DF4; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802B6E00; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802B6E0C; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802B6E20; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802B6E3C; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802B6EA0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6ED0; // type:label scope:local +@1050 = .data:0x802B6ED0; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802B6EE4; // type:object size:0xE scope:local align:4 data:string +@1138 = .data:0x802B6EF4; // type:object size:0xB scope:local align:4 data:string +@1140 = .data:0x802B6F00; // type:object size:0xF scope:local align:4 data:string +@1142 = .data:0x802B6F10; // type:object size:0xC scope:local align:4 +@1143 = .data:0x802B6F1C; // type:object size:0xA scope:local align:4 data:string +@1144 = .data:0x802B6F28; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802B6F3C; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802B6F58; // type:object size:0x64 scope:global align:4 +@1163 = .data:0x802B6FBC; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802B6FD4; // type:object size:0x14 scope:local align:4 data:string +@1164 = .data:0x802B6FE8; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802B6FF4; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802B7000; // type:object size:0xC scope:weak align:4 +@1167 = .data:0x802B700C; // type:object size:0x10 scope:local align:4 data:string +@1168 = .data:0x802B701C; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802B7038; // type:object size:0x64 scope:global align:4 +@1211 = .data:0x802B709C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B70C8; // type:label scope:local +@1375 = .data:0x802B70C8; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802B70D8; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802B70E4; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B711C; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802B7130; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B7140; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802B714C; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802B7160; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802B71D4; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802B71F4; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802B7200; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802B720C; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802B7220; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802B723C; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802B72A0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B72D0; // type:label scope:local +@1795 = .data:0x802B72D0; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802B72DC; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802B7310; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802B7348; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802B735C; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802B736C; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802B7378; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802B7394; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802B7414; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7440; // type:label scope:local +@1701 = .data:0x802B7440; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802B744C; // type:object size:0x9 scope:local align:4 data:string +@2650 = .data:0x802B7458; // type:object size:0xB scope:local align:4 data:string +@2652 = .data:0x802B7464; // type:object size:0xF scope:local align:4 data:string +@2654 = .data:0x802B7474; // type:object size:0xC scope:local align:4 +@2651 = .data:0x802B7480; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802B7494; // type:object size:0x64 scope:global align:4 +@2666 = .data:0x802B74F8; // type:object size:0xB scope:local align:4 data:string +@2668 = .data:0x802B7504; // type:object size:0x14 scope:local align:4 data:string +@2667 = .data:0x802B7518; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802B7534; // type:object size:0x74 scope:global align:4 +@2674 = .data:0x802B75A8; // type:object size:0xC scope:local align:4 data:string +@2720 = .data:0x802B75EC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7618; // type:label scope:local +@1052 = .data:0x802B7618; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802B762C; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802B763C; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802B7648; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B7654; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802B7664; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802B7674; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802B7680; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802B7694; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802B76F8; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802B7714; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B7728; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802B7734; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802B7740; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802B7760; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802B777C; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802B7788; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802B7794; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B77C0; // type:label scope:local +@1793 = .data:0x802B77C0; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B77D0; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802B77DC; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802B77E8; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802B77FC; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802B780C; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802B7818; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802B7834; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802B78B4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B78E0; // type:label scope:local +@1370 = .data:0x802B78E0; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802B78EC; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B78FC; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802B7908; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802B791C; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802B7980; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B79B0; // type:label scope:local +@1477 = .data:0x802B79B0; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802B79BC; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802B79D0; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802B79E4; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802B79F4; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802B7A00; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802B7A1C; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802B7A9C; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802B7AA8; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802B7AB4; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802B7AC8; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802B7AE4; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802B7B48; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802B7B68; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7B98; // type:label scope:local +@1050 = .data:0x802B7B98; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802B7BA4; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802B7BB0; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802B7BBC; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802B7BCC; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802B7BD8; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802B7BEC; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802B7C50; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802B7C68; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802B7C7C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802B7C88; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802B7C94; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802B7CB4; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802B7CCC; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802B7CD8; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802B7CE4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7D10; // type:label scope:local +@1426 = .data:0x802B7D10; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802B7D1C; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802B7D2C; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802B7D38; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802B7D4C; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802B7DC0; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802B7DE0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7E10; // type:label scope:local +@1216 = .data:0x802B7E10; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802B7E20; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802B7E2C; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802B7E38; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802B7E5C; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802B7E88; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802B7EB4; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802B7EC0; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802B7ECC; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802B7EE0; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802B7EF8; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802B7F04; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802B7F14; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802B7F20; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802B7F34; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802B7F98; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802B7FB8; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802B7FD4; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802B7FE0; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802B7FEC; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802B7FF8; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802B800C; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802B8070; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802B807C; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802B8090; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802B80F4; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802B8158; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802B8190; // type:label scope:local +@1468 = .data:0x802B8190; // type:object size:0xC scope:local align:4 data:string +@1595 = .data:0x802B819C; // type:object size:0x9 scope:local align:4 data:string +@1684 = .data:0x802B81A8; // type:object size:0xB scope:local align:4 data:string +@1685 = .data:0x802B81B4; // type:object size:0x9 scope:local align:4 data:string +@1867 = .data:0x802B81C0; // type:object size:0xC scope:local align:4 data:string +@1870 = .data:0x802B81CC; // type:object size:0xC scope:local align:4 +@1872 = .data:0x802B81D8; // type:object size:0x14 scope:local align:4 +@1868 = .data:0x802B81EC; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802B8208; // type:object size:0x20 scope:global align:4 +@1875 = .data:0x802B8228; // type:object size:0xF scope:local align:4 data:string +@1878 = .data:0x802B8238; // type:object size:0xB scope:local align:4 data:string +@1879 = .data:0x802B8244; // type:object size:0xC scope:local align:4 +@1876 = .data:0x802B8250; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802B8264; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802B8284; // type:object size:0xC scope:local align:4 data:string +@1881 = .data:0x802B8290; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802B82A4; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802B82C4; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802B82E4; // type:object size:0x1C scope:weak align:4 +@1883 = .data:0x802B8300; // type:object size:0x9 scope:local align:4 data:string +@1884 = .data:0x802B830C; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802B8328; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802B8348; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B8388; // type:label scope:local +@1919 = .data:0x802B8388; // type:object size:0x9 scope:local align:4 data:string +@2653 = .data:0x802B8394; // type:object size:0x3C scope:local align:4 +@2666 = .data:0x802B83D0; // type:object size:0x58 scope:local align:4 +@3264 = .data:0x802B8428; // type:object size:0xB scope:local align:4 data:string +@3412 = .data:0x802B8434; // type:object size:0x2C scope:local align:4 +@5108 = .data:0x802B8460; // type:object size:0x4C scope:local align:4 +@5115 = .data:0x802B84AC; // type:object size:0x9 scope:local align:4 data:string +@5116 = .data:0x802B84B8; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802B84C4; // type:object size:0x38 scope:global align:4 +@5121 = .data:0x802B84FC; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802B8508; // type:object size:0x10 scope:global align:4 +@5124 = .data:0x802B8518; // type:object size:0xA scope:local align:4 data:string +@5125 = .data:0x802B8524; // type:object size:0xF scope:local align:4 data:string +@5126 = .data:0x802B8534; // type:object size:0xC scope:local align:4 data:string +@5127 = .data:0x802B8540; // type:object size:0xA scope:local align:4 data:string +@5128 = .data:0x802B854C; // type:object size:0xB scope:local align:4 data:string +@5129 = .data:0x802B8558; // type:object size:0xA scope:local align:4 data:string +@5130 = .data:0x802B8564; // type:object size:0xB scope:local align:4 data:string +@5131 = .data:0x802B8570; // type:object size:0xB scope:local align:4 data:string +@5132 = .data:0x802B857C; // type:object size:0xB scope:local align:4 data:string +@5133 = .data:0x802B8588; // type:object size:0xF scope:local align:4 data:string +@5134 = .data:0x802B8598; // type:object size:0xA scope:local align:4 data:string +@5135 = .data:0x802B85A4; // type:object size:0xB scope:local align:4 data:string +@5136 = .data:0x802B85B0; // type:object size:0xA scope:local align:4 data:string +@5137 = .data:0x802B85BC; // type:object size:0xF scope:local align:4 data:string +@5138 = .data:0x802B85CC; // type:object size:0xA scope:local align:4 data:string +@5139 = .data:0x802B85D8; // type:object size:0xC scope:local align:4 data:string +@5140 = .data:0x802B85E4; // type:object size:0xC scope:local align:4 data:string +@5141 = .data:0x802B85F0; // type:object size:0xF scope:local align:4 data:string +@5142 = .data:0x802B8600; // type:object size:0xD scope:local align:4 data:string +@5143 = .data:0x802B8610; // type:object size:0xC scope:local align:4 data:string +@5144 = .data:0x802B861C; // type:object size:0xA scope:local align:4 data:string +@5145 = .data:0x802B8628; // type:object size:0xC scope:local align:4 data:string +@5146 = .data:0x802B8634; // type:object size:0xC scope:local align:4 data:string +@5148 = .data:0x802B8640; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802B8650; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802B86B4; // type:object size:0xC scope:local align:4 +@5392 = .data:0x802B86C0; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802B86D4; // type:object size:0x18 scope:weak align:4 +@5395 = .data:0x802B86EC; // type:object size:0x23 scope:local align:4 data:string +@5396 = .data:0x802B8710; // type:object size:0x3D scope:local align:4 data:string +@5397 = .data:0x802B8750; // type:object size:0x29 scope:local align:4 data:string +@5394 = .data:0x802B877C; // type:object size:0x1C scope:local align:4 +@5404 = .data:0x802B87F8; // type:object size:0x14 scope:local align:4 data:string +@5407 = .data:0x802B8818; // type:object size:0xC scope:local align:4 data:string +@5408 = .data:0x802B8824; // type:object size:0xD scope:local align:4 data:string +@5409 = .data:0x802B8834; // type:object size:0x9 scope:local align:4 data:string +@5410 = .data:0x802B8840; // type:object size:0x14 scope:local align:4 +@5406 = .data:0x802B8854; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802B8878; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802B89B0; // type:label scope:local +@1306 = .data:0x802B89B0; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802B89BC; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802B89D4; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802B89EC; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802B8A04; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802B8A10; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802B8A1C; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802B8A28; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802B8A34; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802B8A48; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802B8A54; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802B8A60; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802B8A84; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802B8A94; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802B8AC0; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802B8AF4; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802B8B7C; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802B8B88; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802B8B94; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802B8BB4; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802B8BC0; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802B8BE0; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802B8BEC; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802B8BFC; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802B8C08; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B8C20; // type:label scope:local +@1927 = .data:0x802B8C20; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802B8C30; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802B8C3C; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802B8C48; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802B8C54; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802B8C60; // type:object size:0xD scope:local align:4 data:string +@4643 = .data:0x802B8C70; // type:object size:0xE scope:local align:4 data:string +@4827 = .data:0x802B8C80; // type:object size:0x9 scope:local align:4 data:string +@4923 = .data:0x802B8C8C; // type:object size:0xC scope:local align:4 data:string +@5042 = .data:0x802B8C98; // type:object size:0x9 scope:local align:4 data:string +@5324 = .data:0x802B8CA4; // type:object size:0x28 scope:local align:4 +@5369 = .data:0x802B8CCC; // type:object size:0x11 scope:local align:4 data:string +@5371 = .data:0x802B8CE0; // type:object size:0xF scope:local align:4 data:string +@5372 = .data:0x802B8CF0; // type:object size:0xD scope:local align:4 data:string +@5373 = .data:0x802B8D00; // type:object size:0xC scope:local align:4 +@5374 = .data:0x802B8D0C; // type:object size:0xA scope:local align:4 data:string +@5375 = .data:0x802B8D18; // type:object size:0x14 scope:local align:4 +@5370 = .data:0x802B8D2C; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802B8D48; // type:object size:0x6C scope:global align:4 +@5381 = .data:0x802B8DB4; // type:object size:0xE scope:local align:4 data:string +@5382 = .data:0x802B8DC4; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802B8DE0; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802B8E4C; // type:object size:0xF scope:local align:4 data:string +@5385 = .data:0x802B8E5C; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802B8E78; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802B8EE4; // type:object size:0x11 scope:local align:4 data:string +@5388 = .data:0x802B8EF8; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802B8F14; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802B8F80; // type:object size:0x12 scope:local align:4 data:string +@5391 = .data:0x802B8F94; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802B8FB0; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802B901C; // type:object size:0x10 scope:local align:4 data:string +@5394 = .data:0x802B902C; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802B9048; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802B90B4; // type:object size:0x14 scope:local align:4 data:string +@5397 = .data:0x802B90C8; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802B90E4; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802B9150; // type:object size:0xE scope:local align:4 data:string +@5400 = .data:0x802B9160; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802B917C; // type:object size:0x6C scope:global align:4 +@5401 = .data:0x802B91E8; // type:object size:0x12 scope:local align:4 data:string +@5402 = .data:0x802B91FC; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802B9218; // type:object size:0x6C scope:global align:4 +@5403 = .data:0x802B9284; // type:object size:0xE scope:local align:4 data:string +@5404 = .data:0x802B9294; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802B92B0; // type:object size:0x6C scope:global align:4 +@5405 = .data:0x802B931C; // type:object size:0xE scope:local align:4 data:string +@5406 = .data:0x802B932C; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802B9348; // type:object size:0x6C scope:global align:4 +@5407 = .data:0x802B93B4; // type:object size:0x10 scope:local align:4 data:string +@5408 = .data:0x802B93C4; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802B93E0; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802B944C; // type:object size:0x16 scope:local align:4 data:string +@5411 = .data:0x802B9464; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802B9480; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802B94EC; // type:object size:0xE scope:local align:4 data:string +@5414 = .data:0x802B94FC; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802B9518; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802B9584; // type:object size:0x10 scope:local align:4 data:string +@5417 = .data:0x802B9594; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802B95B0; // type:object size:0x6C scope:global align:4 +@5418 = .data:0x802B961C; // type:object size:0xE scope:local align:4 data:string +@5419 = .data:0x802B962C; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802B9648; // type:object size:0x6C scope:global align:4 +@5420 = .data:0x802B96B4; // type:object size:0x15 scope:local align:4 data:string +@5421 = .data:0x802B96CC; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802B96E8; // type:object size:0x6C scope:global align:4 +@5422 = .data:0x802B9754; // type:object size:0x10 scope:local align:4 data:string +@5423 = .data:0x802B9764; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802B9780; // type:object size:0x6C scope:global align:4 +@5424 = .data:0x802B97EC; // type:object size:0x10 scope:local align:4 data:string +@5425 = .data:0x802B97FC; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802B9818; // type:object size:0x6C scope:global align:4 +@5426 = .data:0x802B9884; // type:object size:0xF scope:local align:4 data:string +@5427 = .data:0x802B9894; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802B98B0; // type:object size:0x6C scope:global align:4 +@5428 = .data:0x802B991C; // type:object size:0xE scope:local align:4 data:string +@5429 = .data:0x802B992C; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802B9948; // type:object size:0x6C scope:global align:4 +@5430 = .data:0x802B99B4; // type:object size:0x12 scope:local align:4 data:string +@5431 = .data:0x802B99C8; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802B99E4; // type:object size:0x6C scope:global align:4 +@5432 = .data:0x802B9A50; // type:object size:0xF scope:local align:4 data:string +@5433 = .data:0x802B9A60; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802B9A7C; // type:object size:0x6C scope:global align:4 +@5434 = .data:0x802B9AE8; // type:object size:0xF scope:local align:4 data:string +@5435 = .data:0x802B9AF8; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802B9B14; // type:object size:0x6C scope:global align:4 +@5436 = .data:0x802B9B80; // type:object size:0x10 scope:local align:4 data:string +@5437 = .data:0x802B9B90; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802B9BAC; // type:object size:0x6C scope:global align:4 +@5438 = .data:0x802B9C18; // type:object size:0x13 scope:local align:4 data:string +@5439 = .data:0x802B9C2C; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802B9C48; // type:object size:0x6C scope:global align:4 +@5440 = .data:0x802B9CB4; // type:object size:0xF scope:local align:4 data:string +@5441 = .data:0x802B9CC4; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802B9CE0; // type:object size:0x6C scope:global align:4 +@5442 = .data:0x802B9D4C; // type:object size:0x10 scope:local align:4 data:string +@5443 = .data:0x802B9D5C; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802B9D78; // type:object size:0x6C scope:global align:4 +@5444 = .data:0x802B9DE4; // type:object size:0x10 scope:local align:4 data:string +@5445 = .data:0x802B9DF4; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802B9E10; // type:object size:0x6C scope:global align:4 +@5446 = .data:0x802B9E7C; // type:object size:0xC scope:local align:4 data:string +@5456 = .data:0x802B9EB4; // type:object size:0xF scope:local align:4 data:string +@5457 = .data:0x802B9EC4; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802B9EE0; // type:object size:0x6C scope:global align:4 +@5458 = .data:0x802B9F4C; // type:object size:0x10 scope:local align:4 data:string +@5459 = .data:0x802B9F5C; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802B9F78; // type:object size:0x6C scope:global align:4 +@5460 = .data:0x802B9FE4; // type:object size:0x10 scope:local align:4 data:string +@5461 = .data:0x802B9FF4; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802BA010; // type:object size:0x6C scope:global align:4 +@5464 = .data:0x802BA07C; // type:object size:0x10 scope:local align:4 data:string +@5465 = .data:0x802BA08C; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802BA0A8; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802BA114; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802BA19C; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802BA208; // type:object size:0x11 scope:local align:4 data:string +@5469 = .data:0x802BA21C; // type:object size:0x13 scope:local align:4 data:string +@5468 = .data:0x802BA230; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802BA23C; // type:object size:0x18 scope:global align:4 +@5515 = .data:0x802BA254; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA280; // type:label scope:local +@1525 = .data:0x802BA280; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802BA290; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802BA29C; // type:object size:0xD scope:local align:4 data:string +@1567 = .data:0x802BA2AC; // type:object size:0x13 scope:local align:4 data:string +@1568 = .data:0x802BA2C0; // type:object size:0x12 scope:local align:4 data:string +@1569 = .data:0x802BA2D4; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802BA2E0; // type:object size:0x13 scope:local align:4 data:string +@1571 = .data:0x802BA2F4; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802BA308; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802BA31C; // type:object size:0x9 scope:local align:4 data:string +@2302 = .data:0x802BA328; // type:object size:0x14 scope:local align:4 data:string +@2303 = .data:0x802BA33C; // type:object size:0xC scope:local align:4 data:string +@2304 = .data:0x802BA348; // type:object size:0xD scope:local align:4 data:string +@2305 = .data:0x802BA358; // type:object size:0x9 scope:local align:4 data:string +@2306 = .data:0x802BA364; // type:object size:0x14 scope:local align:4 +@2308 = .data:0x802BA378; // type:object size:0x24 scope:local align:4 +@2301 = .data:0x802BA39C; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802BA3C8; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BA500; // type:label scope:local +@634 = .data:0x802BA500; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802BA510; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802BA51C; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802BA528; // type:object size:0xC scope:global align:4 +@637 = .data:0x802BA534; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802BA540; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802BA54C; // type:object size:0xC scope:global align:4 +@639 = .data:0x802BA558; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802BA568; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802BA574; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802BA580; // type:label scope:local +@1616 = .data:0x802BA580; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802BA590; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802BA59C; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802BA5A8; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802BA5B4; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802BA5C0; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802BA5D0; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802BA5E4; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802BA600; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802BA60C; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802BA61C; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802BA630; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802BA63C; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802BA64C; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802BA658; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802BA670; // type:object size:0x8 scope:global align:4 +@2550 = .data:0x802BA678; // type:object size:0xD scope:local align:4 data:string +@3001 = .data:0x802BA688; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802BA698; // type:object size:0xB scope:local align:4 data:string +@3005 = .data:0x802BA6A4; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802BA6B0; // type:object size:0x14 scope:local align:4 +@3002 = .data:0x802BA6C4; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802BA6E0; // type:object size:0x38 scope:global align:4 +@3013 = .data:0x802BA718; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802BA728; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802BA744; // type:object size:0x38 scope:global align:4 +@3016 = .data:0x802BA77C; // type:object size:0x10 scope:local align:4 data:string +@3019 = .data:0x802BA78C; // type:object size:0x14 scope:local align:4 +@3017 = .data:0x802BA7A0; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802BA7BC; // type:object size:0x38 scope:global align:4 +@3021 = .data:0x802BA7F4; // type:object size:0xE scope:local align:4 data:string +@3022 = .data:0x802BA804; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802BA820; // type:object size:0x38 scope:global align:4 +@3023 = .data:0x802BA858; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802BA864; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802BA880; // type:object size:0x38 scope:global align:4 +@3026 = .data:0x802BA8B8; // type:object size:0xE scope:local align:4 data:string +@3028 = .data:0x802BA8C8; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802BA8D4; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802BA8E8; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802BA904; // type:object size:0x38 scope:global align:4 +@3033 = .data:0x802BA93C; // type:object size:0x9 scope:local align:4 data:string +@3034 = .data:0x802BA948; // type:object size:0xC scope:local align:4 +@3036 = .data:0x802BA954; // type:object size:0x14 scope:local align:4 +@3031 = .data:0x802BA968; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802BA984; // type:object size:0x30 scope:global align:4 +@3044 = .data:0x802BA9B4; // type:object size:0xA scope:local align:4 data:string +@3045 = .data:0x802BA9C0; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802BA9DC; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802BAA28; // type:object size:0x38 scope:global align:4 +@3046 = .data:0x802BAA60; // type:object size:0xC scope:local align:4 data:string +@3048 = .data:0x802BAA6C; // type:object size:0x9 scope:local align:4 data:string +@3047 = .data:0x802BAA78; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802BAA98; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802BAAD0; // type:object size:0x38 scope:global align:4 +@3049 = .data:0x802BAB08; // type:object size:0xA scope:local align:4 data:string +@3050 = .data:0x802BAB14; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802BAB34; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802BAB58; // type:label scope:local +@1070 = .data:0x802BAB58; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802BAB6C; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802BAB7C; // type:object size:0x9 scope:local align:4 data:string +@1538 = .data:0x802BAB88; // type:object size:0xA scope:local align:4 data:string +@1541 = .data:0x802BAB94; // type:object size:0x13 scope:local align:4 data:string +@1542 = .data:0x802BABA8; // type:object size:0xC scope:local align:4 +@1539 = .data:0x802BABB4; // type:object size:0x14 scope:local align:4 +@1555 = .data:0x802BAC94; // type:object size:0x16 scope:local align:4 data:string +@1558 = .data:0x802BACAC; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802BACB8; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802BACCC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802BACF8; // type:label scope:local +@737 = .data:0x802BACF8; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802BAD08; // type:object size:0xA scope:local align:4 data:string +@1985 = .data:0x802BAD14; // type:object size:0x10 scope:local align:4 data:string +@1988 = .data:0x802BAD24; // type:object size:0x9 scope:local align:4 data:string +@1989 = .data:0x802BAD30; // type:object size:0xC scope:local align:4 +@1991 = .data:0x802BAD3C; // type:object size:0x14 scope:local align:4 +@1992 = .data:0x802BAD50; // type:object size:0xC scope:local align:4 data:string +@1993 = .data:0x802BAD5C; // type:object size:0xA scope:local align:4 data:string +@1994 = .data:0x802BAD68; // type:object size:0x24 scope:local align:4 +@1986 = .data:0x802BAD8C; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802BADB8; // type:object size:0x78 scope:global align:4 +@2008 = .data:0x802BAE30; // type:object size:0xE scope:local align:4 data:string +@2009 = .data:0x802BAE40; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802BAE6C; // type:object size:0x80 scope:global align:4 +@2017 = .data:0x802BAEEC; // type:object size:0xE scope:local align:4 data:string +@2018 = .data:0x802BAEFC; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802BAF28; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802BAFE0; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802BB058; // type:label scope:local +@1700 = .data:0x802BB058; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802BB06C; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802BB078; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802BB088; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802BB094; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802BB0A0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802BB0D0; // type:label scope:local +@388 = .data:0x802BB0D0; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802BB0E0; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802BB0EC; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802BB0FC; // type:object size:0x10 scope:weak align:4 +table = .data:0x802BB110; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802BB1A0; // type:label scope:local +@886 = .data:0x802BB1A0; // type:object size:0xE scope:local align:4 data:string +@1380 = .data:0x802BB1B0; // type:object size:0x14 scope:local align:4 data:string +@1381 = .data:0x802BB1C4; // type:object size:0xC scope:local align:4 data:string +@1382 = .data:0x802BB1D0; // type:object size:0xD scope:local align:4 data:string +@1383 = .data:0x802BB1E0; // type:object size:0x9 scope:local align:4 data:string +@1384 = .data:0x802BB1EC; // type:object size:0x14 scope:local align:4 +@1385 = .data:0x802BB200; // type:object size:0xB scope:local align:4 data:string +@1386 = .data:0x802BB20C; // type:object size:0x24 scope:local align:4 +@1387 = .data:0x802BB230; // type:object size:0xD scope:local align:4 data:string +@1388 = .data:0x802BB240; // type:object size:0x2C scope:local align:4 +@1379 = .data:0x802BB26C; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802BB2A0; // type:object size:0x15C scope:global align:4 +@1439 = .data:0x802BB3FC; // type:object size:0x9 scope:local align:4 data:string +@1440 = .data:0x802BB408; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802BB43C; // type:object size:0x15C scope:global align:4 +@1445 = .data:0x802BB598; // type:object size:0x9 scope:local align:4 data:string +@1446 = .data:0x802BB5A4; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802BB5D8; // type:object size:0x15C scope:global align:4 +@1451 = .data:0x802BB734; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802BB768; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BB8C8; // type:label scope:local +@908 = .data:0x802BB8C8; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802BB8D8; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802BB8E4; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802BB8F8; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802BB904; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802BB914; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802BB920; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802BB934; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802BB940; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802BB964; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802BB974; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802BB9A0; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802BB9D4; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802BBB30; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802BBB3C; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802BBB70; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BBCD0; // type:label scope:local +@868 = .data:0x802BBCD0; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802BBCE0; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802BBCF0; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802BBD04; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802BBD10; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802BBD20; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802BBD2C; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802BBD40; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802BBD4C; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802BBD70; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BBD80; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802BBDAC; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802BBDE0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BBF40; // type:label scope:local +@1538 = .data:0x802BBF40; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802BBF4C; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802BBF58; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802BBF64; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802BBFE4; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802BBFF0; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802BC004; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802BC010; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802BC020; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802BC02C; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802BC040; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802BC04C; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802BC070; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802BC080; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802BC0AC; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802BC0E0; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802BC254; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802BC290; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802BC408; // type:label scope:local +@909 = .data:0x802BC408; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802BC414; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802BC42C; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802BC438; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802BC444; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802BC450; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802BC45C; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802BC468; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802BC474; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802BC480; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802BC48C; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802BC4D0; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802BC4E0; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802BC4EC; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802BC4FC; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802BC508; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802BC51C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802BC538; // type:label scope:local +@1257 = .data:0x802BC538; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802BC548; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802BC554; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802BC560; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802BC574; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802BC580; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802BC590; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802BC59C; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802BC5B0; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802BC5BC; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802BC5E0; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802BC5F0; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802BC61C; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802BC650; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802BC7B8; // type:label scope:local +@1532 = .data:0x802BC7B8; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802BC7C8; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802BC7D4; // type:object size:0xC scope:local align:4 data:4byte +@2107 = .data:0x802BC7E0; // type:object size:0x3D scope:local align:4 data:string +@2108 = .data:0x802BC82C; // type:object size:0x9 scope:local align:4 data:string +@2110 = .data:0x802BC838; // type:object size:0x14 scope:local align:4 data:string +@2111 = .data:0x802BC84C; // type:object size:0xC scope:local align:4 data:string +@2112 = .data:0x802BC858; // type:object size:0xD scope:local align:4 data:string +@2113 = .data:0x802BC868; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802BC874; // type:object size:0x14 scope:local align:4 +@2115 = .data:0x802BC888; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802BC894; // type:object size:0x24 scope:local align:4 +@2117 = .data:0x802BC8B8; // type:object size:0xD scope:local align:4 data:string +@2118 = .data:0x802BC8C8; // type:object size:0x2C scope:local align:4 +@2109 = .data:0x802BC8F4; // type:object size:0x34 scope:local align:4 +@2172 = .data:0x802BCA9C; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BCAA8; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802BCAEC; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802BCC70; // type:label scope:local +@1376 = .data:0x802BCC70; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802BCC84; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802BCC94; // type:object size:0xD scope:local align:4 data:string +@1632 = .data:0x802BCCA4; // type:object size:0x14 scope:local align:4 data:string +@1633 = .data:0x802BCCB8; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802BCCC4; // type:object size:0xD scope:local align:4 data:string +@1635 = .data:0x802BCCD4; // type:object size:0x9 scope:local align:4 data:string +@1636 = .data:0x802BCCE0; // type:object size:0x14 scope:local align:4 +@1637 = .data:0x802BCCF4; // type:object size:0xB scope:local align:4 data:string +@1638 = .data:0x802BCD00; // type:object size:0x24 scope:local align:4 +@1639 = .data:0x802BCD24; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802BCD34; // type:object size:0x2C scope:local align:4 +@1631 = .data:0x802BCD60; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802BCD94; // type:object size:0x15C scope:global align:4 +@1685 = .data:0x802BCEF0; // type:object size:0x23 scope:local align:4 data:string +@1686 = .data:0x802BCF14; // type:object size:0x3D scope:local align:4 data:string +@1687 = .data:0x802BCF54; // type:object size:0x29 scope:local align:4 data:string +@1684 = .data:0x802BCF80; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802BD000; // type:label scope:local +@870 = .data:0x802BD000; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802BD00C; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802BD018; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802BD02C; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802BD038; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802BD048; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802BD054; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802BD068; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802BD074; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802BD098; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802BD0A8; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802BD0D4; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802BD108; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802BD264; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802BD280; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD398; // type:label scope:local +@868 = .data:0x802BD398; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802BD3A8; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802BD3B4; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802BD3C0; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802BD3CC; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802BD3DC; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802BD3E8; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802BD3FC; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802BD40C; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802BD428; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802BD44C; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD560; // type:label scope:local +@1458 = .data:0x802BD560; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802BD570; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802BD57C; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802BD588; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802BD594; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802BD5A4; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802BD5B0; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802BD5C4; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802BD5E0; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD6F8; // type:label scope:local +@1071 = .data:0x802BD6F8; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802BD704; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802BD710; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802BD720; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802BD730; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802BD78C; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802BD79C; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802BD7A8; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802BD7B4; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802BD7C0; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802BD7D4; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802BD7F0; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802BD828; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802BD834; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802BD840; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802BD860; // type:label scope:local +@1775 = .data:0x802BD860; // type:object size:0xB scope:local align:4 data:string +@2864 = .data:0x802BD86C; // type:object size:0x9 scope:local align:4 data:string +@3038 = .data:0x802BD878; // type:object size:0xE scope:local align:4 data:string +@3242 = .data:0x802BD888; // type:object size:0x1B scope:local align:4 data:string +@3244 = .data:0x802BD8A4; // type:object size:0xA scope:local align:4 data:string +@3243 = .data:0x802BD8B0; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802BD8BC; // type:object size:0xC scope:global align:4 +@3245 = .data:0x802BD8C8; // type:object size:0x16 scope:local align:4 data:string +@3246 = .data:0x802BD8E0; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802BD8EC; // type:object size:0xC scope:global align:4 +@3247 = .data:0x802BD8F8; // type:object size:0x19 scope:local align:4 data:string +@3248 = .data:0x802BD914; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802BD920; // type:object size:0xC scope:global align:4 +@3249 = .data:0x802BD92C; // type:object size:0xC scope:local align:4 data:string +@3251 = .data:0x802BD938; // type:object size:0x19 scope:local align:4 data:string +@3252 = .data:0x802BD954; // type:object size:0x9 scope:local align:4 data:string +@3253 = .data:0x802BD960; // type:object size:0xC scope:local align:4 +@3250 = .data:0x802BD96C; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802BD980; // type:object size:0x18 scope:weak align:4 +@3254 = .data:0x802BD998; // type:object size:0xD scope:local align:4 data:string +@3255 = .data:0x802BD9A8; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802BD9B4; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802BD9C0; // type:object size:0x15 scope:local align:4 data:string +@3259 = .data:0x802BD9D8; // type:object size:0xC scope:local align:4 +@3260 = .data:0x802BD9E4; // type:object size:0xD scope:local align:4 data:string +@3261 = .data:0x802BD9F4; // type:object size:0x14 scope:local align:4 +@3257 = .data:0x802BDA08; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802BDA24; // type:object size:0x14 scope:global align:4 +@3265 = .data:0x802BDA38; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802BDA4C; // type:object size:0x18 scope:weak align:4 +@3266 = .data:0x802BDA64; // type:object size:0xB scope:local align:4 data:string +@3267 = .data:0x802BDA70; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802BDA7C; // type:object size:0xC scope:global align:4 +@3268 = .data:0x802BDA88; // type:object size:0x10 scope:local align:4 data:string +@3269 = .data:0x802BDA98; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802BDAA4; // type:object size:0xC scope:global align:4 +@3270 = .data:0x802BDAB0; // type:object size:0x10 scope:local align:4 data:string +@3271 = .data:0x802BDAC0; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802BDACC; // type:object size:0xC scope:global align:4 +@3273 = .data:0x802BDAD8; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802BDAEC; // type:object size:0x18 scope:weak align:4 +@3274 = .data:0x802BDB04; // type:object size:0xF scope:local align:4 data:string +@3275 = .data:0x802BDB14; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802BDB20; // type:object size:0xC scope:global align:4 +@3276 = .data:0x802BDB2C; // type:object size:0x11 scope:local align:4 data:string +@3277 = .data:0x802BDB40; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802BDB4C; // type:object size:0xC scope:global align:4 +@3278 = .data:0x802BDB58; // type:object size:0x11 scope:local align:4 data:string +@3279 = .data:0x802BDB6C; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802BDB78; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802BDB84; // type:object size:0x11 scope:local align:4 data:string +@3281 = .data:0x802BDB98; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802BDBA4; // type:object size:0xC scope:global align:4 +@3282 = .data:0x802BDBB0; // type:object size:0x11 scope:local align:4 data:string +@3283 = .data:0x802BDBC4; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802BDBD0; // type:object size:0xC scope:global align:4 +@3284 = .data:0x802BDBDC; // type:object size:0x11 scope:local align:4 data:string +@3285 = .data:0x802BDBF0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802BDBFC; // type:object size:0xC scope:global align:4 +@3286 = .data:0x802BDC08; // type:object size:0x11 scope:local align:4 data:string +@3287 = .data:0x802BDC1C; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802BDC28; // type:object size:0xC scope:global align:4 +@3288 = .data:0x802BDC34; // type:object size:0x14 scope:local align:4 data:string +@3289 = .data:0x802BDC48; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802BDC64; // type:object size:0x14 scope:global align:4 +@3292 = .data:0x802BDCA8; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802BDCBC; // type:object size:0x18 scope:weak align:4 +@3293 = .data:0x802BDCD4; // type:object size:0x10 scope:local align:4 data:string +@3294 = .data:0x802BDCE4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802BDCF0; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802BDCFC; // type:object size:0x10 scope:local align:4 data:string +@3296 = .data:0x802BDD0C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802BDD18; // type:object size:0xC scope:global align:4 +@3297 = .data:0x802BDD24; // type:object size:0x11 scope:local align:4 data:string +@3298 = .data:0x802BDD38; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802BDD44; // type:object size:0xC scope:global align:4 +@3299 = .data:0x802BDD50; // type:object size:0x11 scope:local align:4 data:string +@3300 = .data:0x802BDD64; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802BDD70; // type:object size:0xC scope:global align:4 +@3301 = .data:0x802BDD7C; // type:object size:0x11 scope:local align:4 data:string +@3302 = .data:0x802BDD90; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802BDD9C; // type:object size:0xC scope:global align:4 +@3303 = .data:0x802BDDA8; // type:object size:0xC scope:local align:4 data:string +@3313 = .data:0x802BDDE0; // type:object size:0xC scope:local align:4 data:string +@3315 = .data:0x802BDDEC; // type:object size:0xC scope:local align:4 data:string +@3314 = .data:0x802BDDF8; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802BDE04; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802BDE10; // type:object size:0xC scope:weak align:4 +@3320 = .data:0x802BDE1C; // type:object size:0x11 scope:local align:4 data:string +@3321 = .data:0x802BDE30; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802BDE3C; // type:object size:0xC scope:global align:4 +@3322 = .data:0x802BDE48; // type:object size:0x10 scope:local align:4 data:string +@3323 = .data:0x802BDE58; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802BDE64; // type:object size:0xC scope:global align:4 +@3324 = .data:0x802BDE70; // type:object size:0x10 scope:local align:4 data:string +@3325 = .data:0x802BDE80; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802BDE8C; // type:object size:0xC scope:global align:4 +@3327 = .data:0x802BDE98; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802BDEAC; // type:object size:0x18 scope:weak align:4 +@3328 = .data:0x802BDEC4; // type:object size:0x11 scope:local align:4 data:string +@3329 = .data:0x802BDED8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802BDEE4; // type:object size:0xC scope:global align:4 +@3330 = .data:0x802BDEF0; // type:object size:0x17 scope:local align:4 data:string +@3331 = .data:0x802BDF08; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802BDF14; // type:object size:0xC scope:global align:4 +@3332 = .data:0x802BDF20; // type:object size:0x17 scope:local align:4 data:string +@3333 = .data:0x802BDF38; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802BDF44; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802BDF50; // type:object size:0x17 scope:local align:4 data:string +@3335 = .data:0x802BDF68; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802BDF74; // type:object size:0xC scope:global align:4 +@3336 = .data:0x802BDF80; // type:object size:0x19 scope:local align:4 data:string +@3337 = .data:0x802BDF9C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802BDFA8; // type:object size:0xC scope:global align:4 +@3338 = .data:0x802BDFB4; // type:object size:0x15 scope:local align:4 data:string +@3339 = .data:0x802BDFCC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802BDFD8; // type:object size:0xC scope:global align:4 +@3340 = .data:0x802BDFE4; // type:object size:0x15 scope:local align:4 data:string +@3341 = .data:0x802BDFFC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802BE008; // type:object size:0xC scope:global align:4 +@3342 = .data:0x802BE014; // type:object size:0x15 scope:local align:4 data:string +@3343 = .data:0x802BE02C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802BE038; // type:object size:0xC scope:global align:4 +@3344 = .data:0x802BE044; // type:object size:0x15 scope:local align:4 data:string +@3345 = .data:0x802BE05C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802BE068; // type:object size:0xC scope:global align:4 +@3346 = .data:0x802BE074; // type:object size:0x15 scope:local align:4 data:string +@3347 = .data:0x802BE08C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802BE098; // type:object size:0xC scope:global align:4 +@3348 = .data:0x802BE0A4; // type:object size:0x15 scope:local align:4 data:string +@3349 = .data:0x802BE0BC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802BE0C8; // type:object size:0xC scope:global align:4 +@3350 = .data:0x802BE0D4; // type:object size:0x16 scope:local align:4 data:string +@3351 = .data:0x802BE0EC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802BE0F8; // type:object size:0xC scope:global align:4 +@3352 = .data:0x802BE104; // type:object size:0x16 scope:local align:4 data:string +@3353 = .data:0x802BE11C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802BE128; // type:object size:0xC scope:global align:4 +@3354 = .data:0x802BE134; // type:object size:0x1A scope:local align:4 data:string +@3355 = .data:0x802BE150; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802BE15C; // type:object size:0xC scope:global align:4 +@3356 = .data:0x802BE168; // type:object size:0x17 scope:local align:4 data:string +@3357 = .data:0x802BE180; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802BE18C; // type:object size:0xC scope:global align:4 +@3358 = .data:0x802BE198; // type:object size:0x19 scope:local align:4 data:string +@3359 = .data:0x802BE1B4; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802BE1C0; // type:object size:0xC scope:global align:4 +@3360 = .data:0x802BE1CC; // type:object size:0x18 scope:local align:4 data:string +@3361 = .data:0x802BE1E4; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802BE1F0; // type:object size:0xC scope:global align:4 +@3362 = .data:0x802BE1FC; // type:object size:0xB scope:local align:4 data:string +@3363 = .data:0x802BE208; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802BE21C; // type:object size:0x18 scope:weak align:4 +@3364 = .data:0x802BE234; // type:object size:0x15 scope:local align:4 data:string +@3365 = .data:0x802BE24C; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802BE258; // type:object size:0xC scope:global align:4 +@3366 = .data:0x802BE264; // type:object size:0x15 scope:local align:4 data:string +@3367 = .data:0x802BE27C; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802BE288; // type:object size:0xC scope:global align:4 +@3368 = .data:0x802BE294; // type:object size:0x13 scope:local align:4 data:string +@3369 = .data:0x802BE2A8; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802BE2B4; // type:object size:0xC scope:global align:4 +@3370 = .data:0x802BE2C0; // type:object size:0x13 scope:local align:4 data:string +@3371 = .data:0x802BE2D4; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802BE2E0; // type:object size:0xC scope:global align:4 +@3372 = .data:0x802BE2EC; // type:object size:0x15 scope:local align:4 data:string +@3373 = .data:0x802BE304; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802BE310; // type:object size:0xC scope:global align:4 +@3374 = .data:0x802BE31C; // type:object size:0xF scope:local align:4 data:string +@3375 = .data:0x802BE32C; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802BE338; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802BE344; // type:object size:0xC scope:weak align:4 +@3376 = .data:0x802BE350; // type:object size:0x9 scope:local align:4 data:string +@3378 = .data:0x802BE35C; // type:object size:0x15 scope:local align:4 data:string +@3377 = .data:0x802BE374; // type:object size:0xC scope:local align:4 +@3379 = .data:0x802BE3F0; // type:object size:0x9 scope:local align:4 data:string +@3380 = .data:0x802BE3FC; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802BE410; // type:object size:0x18 scope:weak align:4 +@3418 = .data:0x802BE428; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE458; // type:label scope:local +@1259 = .data:0x802BE458; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802BE464; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802BE474; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802BE48C; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802BE4A4; // type:object size:0x58 scope:local align:4 +@1798 = .data:0x802BE4FC; // type:object size:0x9 scope:local align:4 data:string +@1799 = .data:0x802BE508; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802BE514; // type:object size:0x18 scope:local align:4 data:string +@2063 = .data:0x802BE52C; // type:object size:0x19 scope:local align:4 data:string +@2064 = .data:0x802BE548; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802BE564; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802BE580; // type:object size:0x18 scope:local align:4 data:string +@2503 = .data:0x802BE598; // type:object size:0x1E scope:local align:4 data:string +@2504 = .data:0x802BE5B8; // type:object size:0x9 scope:local align:4 data:string +@2505 = .data:0x802BE5C4; // type:object size:0xA scope:local align:4 data:string +@2506 = .data:0x802BE5D0; // type:object size:0x16 scope:local align:4 data:string +@2508 = .data:0x802BE5E8; // type:object size:0x18 scope:local align:4 data:string +@2510 = .data:0x802BE600; // type:object size:0x1E scope:local align:4 data:string +@2511 = .data:0x802BE620; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802BE62C; // type:object size:0x16 scope:local align:4 data:string +@2513 = .data:0x802BE644; // type:object size:0xD scope:local align:4 data:string +@2514 = .data:0x802BE654; // type:object size:0x19 scope:local align:4 data:string +@2516 = .data:0x802BE670; // type:object size:0x9 scope:local align:4 data:string +@2517 = .data:0x802BE67C; // type:object size:0x19 scope:local align:4 data:string +@2518 = .data:0x802BE698; // type:object size:0xA scope:local align:4 data:string +@2519 = .data:0x802BE6A4; // type:object size:0xB scope:local align:4 data:string +@2520 = .data:0x802BE6B0; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802BE6C8; // type:object size:0x9 scope:local align:4 data:string +@2865 = .data:0x802BE6D4; // type:object size:0x5C scope:local align:4 +@3061 = .data:0x802BE730; // type:object size:0xC scope:local align:4 data:string +@3064 = .data:0x802BE73C; // type:object size:0xC scope:local align:4 +@3066 = .data:0x802BE748; // type:object size:0x14 scope:local align:4 +@3067 = .data:0x802BE75C; // type:object size:0xC scope:local align:4 data:string +@3068 = .data:0x802BE768; // type:object size:0xA scope:local align:4 data:string +@3069 = .data:0x802BE774; // type:object size:0x24 scope:local align:4 +@3070 = .data:0x802BE798; // type:object size:0xE scope:local align:4 data:string +@3071 = .data:0x802BE7A8; // type:object size:0x2C scope:local align:4 +@3062 = .data:0x802BE7D4; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802BE808; // type:object size:0x84 scope:global align:4 +@3088 = .data:0x802BE88C; // type:object size:0x11 scope:local align:4 data:string +@3090 = .data:0x802BE8A0; // type:object size:0xD scope:local align:4 data:string +@3089 = .data:0x802BE8B0; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802BE8BC; // type:object size:0xC scope:weak align:4 +@3094 = .data:0x802BE8C8; // type:object size:0xE scope:local align:4 data:string +@3095 = .data:0x802BE8D8; // type:object size:0x2C scope:local align:4 +@3093 = .data:0x802BE904; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802BE938; // type:object size:0x84 scope:global align:4 +@3105 = .data:0x802BE9BC; // type:object size:0x10 scope:local align:4 data:string +@3107 = .data:0x802BE9CC; // type:object size:0xC scope:local align:4 data:string +@3106 = .data:0x802BE9D8; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802BE9E4; // type:object size:0x2C scope:global align:4 +@3115 = .data:0x802BEA10; // type:object size:0xD scope:local align:4 data:string +@3117 = .data:0x802BEA20; // type:object size:0x14 scope:local align:4 data:string +@3118 = .data:0x802BEA34; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802BEA40; // type:object size:0xD scope:local align:4 data:string +@3120 = .data:0x802BEA50; // type:object size:0x9 scope:local align:4 data:string +@3121 = .data:0x802BEA5C; // type:object size:0x14 scope:local align:4 +@3122 = .data:0x802BEA70; // type:object size:0xB scope:local align:4 data:string +@3123 = .data:0x802BEA7C; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802BEAA0; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802BEACC; // type:object size:0x15C scope:global align:4 +@3174 = .data:0x802BEC28; // type:object size:0x9 scope:local align:4 data:string +@3175 = .data:0x802BEC34; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802BEC40; // type:object size:0xC scope:weak align:4 +@3177 = .data:0x802BEC4C; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802BEC58; // type:object size:0xC scope:weak align:4 +@3178 = .data:0x802BEC64; // type:object size:0x9 scope:local align:4 data:string +@3179 = .data:0x802BEC70; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802BEC7C; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802BEC88; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802BEC94; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802BECA0; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802BECAC; // type:object size:0xD scope:local align:4 data:string +@3183 = .data:0x802BECBC; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802BECC8; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802BECD4; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802BECE4; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802BECF0; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802BECFC; // type:object size:0x11 scope:local align:4 data:string +@3187 = .data:0x802BED10; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802BED24; // type:object size:0x10 scope:weak align:4 +@3188 = .data:0x802BED34; // type:object size:0xD scope:local align:4 data:string +@3189 = .data:0x802BED44; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802BED50; // type:object size:0xC scope:weak align:4 +@3190 = .data:0x802BED5C; // type:object size:0x11 scope:local align:4 data:string +@3191 = .data:0x802BED70; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802BED7C; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802BED88; // type:object size:0xC scope:local align:4 data:string +@3194 = .data:0x802BED94; // type:object size:0x9 scope:local align:4 data:string +@3193 = .data:0x802BEDA0; // type:object size:0xC scope:local align:4 +@3195 = .data:0x802BEDC0; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802BEDCC; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802BEDD8; // type:object size:0xC scope:weak align:4 +@3197 = .data:0x802BEDE4; // type:object size:0xD scope:local align:4 data:string +@3198 = .data:0x802BEDF4; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802BEE00; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802BEE18; // type:object size:0xE scope:local align:4 data:string +@3201 = .data:0x802BEE28; // type:object size:0x10 scope:local align:4 data:string +@3202 = .data:0x802BEE38; // type:object size:0x2C scope:local align:4 +@3200 = .data:0x802BEE64; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802BEE98; // type:object size:0x78 scope:weak align:4 +@3211 = .data:0x802BEF10; // type:object size:0xD scope:local align:4 data:string +@3212 = .data:0x802BEF20; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802BEF34; // type:object size:0x10 scope:weak align:4 +@3213 = .data:0x802BEF78; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802BEF88; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802BEFBC; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802BF120; // type:label scope:local +@868 = .data:0x802BF120; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802BF130; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802BF13C; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802BF150; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802BF164; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802BF170; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802BF180; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802BF18C; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802BF1A0; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802BF1AC; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802BF1D0; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802BF1E0; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802BF20C; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802BF218; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802BF24C; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802BF288; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802BF3E4; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802BF3F8; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802BF434; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802BF590; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802BF5CC; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802BF728; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802BF734; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802BF770; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802BF8CC; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802BFA28; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802BFA34; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802BFA68; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BFBC8; // type:label scope:local +@882 = .data:0x802BFBC8; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802BFBD8; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802BFBE4; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802BFBF0; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802BFC04; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802BFC10; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802BFC20; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802BFC2C; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802BFC40; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802BFC4C; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802BFC70; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802BFC80; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802BFCAC; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802BFCE0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BFE40; // type:label scope:local +@661 = .data:0x802BFE40; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802BFE58; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802BFE6C; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802BFEA8; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802BFEBC; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802BFEC8; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802BFED8; // type:object size:0xC scope:local align:4 +@753 = .data:0x802BFEE4; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802BFEF8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802BFF18; // type:label scope:local +@1242 = .data:0x802BFF18; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802BFF24; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802BFF30; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802BFF44; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802BFF5C; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802BFF6C; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802BFF78; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802BFF84; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802BFF90; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802BFFA4; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802BFFC0; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802BFFF8; // type:label scope:local +@2026 = .data:0x802BFFF8; // type:object size:0x9 scope:local align:4 data:string +@2288 = .data:0x802C0004; // type:object size:0xD scope:local align:4 data:string +@2289 = .data:0x802C0014; // type:object size:0xC scope:local align:4 data:string +@3017 = .data:0x802C0020; // type:object size:0xB scope:local align:4 data:string +@3021 = .data:0x802C002C; // type:object size:0xB scope:local align:4 data:string +@6083 = .data:0x802C0038; // type:object size:0x2C scope:local align:4 +@6714 = .data:0x802C0064; // type:object size:0xD scope:local align:4 data:string +@6716 = .data:0x802C0074; // type:object size:0xC scope:local align:4 data:string +@6715 = .data:0x802C0080; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C008C; // type:object size:0x2C scope:global align:4 +@6724 = .data:0x802C00B8; // type:object size:0xF scope:local align:4 data:string +@6725 = .data:0x802C00C8; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C00D4; // type:object size:0x2C scope:global align:4 +@6726 = .data:0x802C012C; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C0140; // type:object size:0x18 scope:weak align:4 +@6729 = .data:0x802C0158; // type:object size:0x23 scope:local align:4 data:string +@6730 = .data:0x802C017C; // type:object size:0x3D scope:local align:4 data:string +@6731 = .data:0x802C01BC; // type:object size:0x29 scope:local align:4 data:string +@6728 = .data:0x802C01E8; // type:object size:0x1C scope:local align:4 +@6738 = .data:0x802C0264; // type:object size:0xB scope:local align:4 data:string +@6741 = .data:0x802C0270; // type:object size:0x9 scope:local align:4 data:string +@6742 = .data:0x802C027C; // type:object size:0xC scope:local align:4 +@6744 = .data:0x802C0288; // type:object size:0x14 scope:local align:4 +@6739 = .data:0x802C029C; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C02B8; // type:object size:0x30 scope:weak align:4 +@6753 = .data:0x802C0304; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C0310; // type:object size:0x34 scope:weak align:4 +@6761 = .data:0x802C0344; // type:object size:0x14 scope:local align:4 data:string +@6762 = .data:0x802C0364; // type:object size:0xA scope:local align:4 data:string +@6764 = .data:0x802C0370; // type:object size:0x9 scope:local align:4 data:string +@6763 = .data:0x802C037C; // type:object size:0xC scope:local align:4 +@6765 = .data:0x802C039C; // type:object size:0x9 scope:local align:4 data:string +@6767 = .data:0x802C03A8; // type:object size:0xD scope:local align:4 data:string +@6766 = .data:0x802C03B8; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C03C4; // type:object size:0xC scope:weak align:4 +@6770 = .data:0x802C03D0; // type:object size:0xC scope:local align:4 data:string +@6771 = .data:0x802C03DC; // type:object size:0xC scope:local align:4 +@6775 = .data:0x802C0408; // type:object size:0xC scope:local align:4 data:string +@6776 = .data:0x802C0414; // type:object size:0xD scope:local align:4 data:string +@6777 = .data:0x802C0424; // type:object size:0x9 scope:local align:4 data:string +@6778 = .data:0x802C0430; // type:object size:0x14 scope:local align:4 +@6774 = .data:0x802C0444; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C0470; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C05E0; // type:label scope:local +@1929 = .data:0x802C05E0; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C05F0; // type:object size:0xA scope:local align:4 data:string +@5845 = .data:0x802C05FC; // type:object size:0x13 scope:local align:4 data:string +@5847 = .data:0x802C0610; // type:object size:0xF scope:local align:4 data:string +@5848 = .data:0x802C0620; // type:object size:0xD scope:local align:4 data:string +@5849 = .data:0x802C0630; // type:object size:0xC scope:local align:4 +@5850 = .data:0x802C063C; // type:object size:0xA scope:local align:4 data:string +@5851 = .data:0x802C0648; // type:object size:0x14 scope:local align:4 +@5846 = .data:0x802C065C; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C0678; // type:object size:0x54 scope:global align:4 +@5853 = .data:0x802C06CC; // type:object size:0x15 scope:local align:4 data:string +@5854 = .data:0x802C06E4; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C0700; // type:object size:0x54 scope:global align:4 +@5856 = .data:0x802C0754; // type:object size:0x12 scope:local align:4 data:string +@5857 = .data:0x802C0768; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C0784; // type:object size:0x54 scope:global align:4 +@5859 = .data:0x802C07D8; // type:object size:0x12 scope:local align:4 data:string +@5860 = .data:0x802C07EC; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C0808; // type:object size:0x54 scope:global align:4 +@5862 = .data:0x802C085C; // type:object size:0xE scope:local align:4 data:string +@5863 = .data:0x802C086C; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C0888; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C08DC; // type:object size:0x10 scope:local align:4 data:string +@5866 = .data:0x802C08EC; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C0908; // type:object size:0x54 scope:global align:4 +@5867 = .data:0x802C095C; // type:object size:0xF scope:local align:4 data:string +@5868 = .data:0x802C096C; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C0988; // type:object size:0x54 scope:global align:4 +@5869 = .data:0x802C09DC; // type:object size:0xE scope:local align:4 data:string +@5870 = .data:0x802C09EC; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C0A08; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C0A5C; // type:object size:0x10 scope:local align:4 data:string +@5872 = .data:0x802C0A6C; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C0A88; // type:object size:0x54 scope:global align:4 +@5873 = .data:0x802C0ADC; // type:object size:0xF scope:local align:4 data:string +@5874 = .data:0x802C0AEC; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C0B08; // type:object size:0x54 scope:global align:4 +@5875 = .data:0x802C0B5C; // type:object size:0xD scope:local align:4 data:string +@5876 = .data:0x802C0B6C; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C0B88; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C0BDC; // type:object size:0x11 scope:local align:4 data:string +@5878 = .data:0x802C0BF0; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C0C0C; // type:object size:0x54 scope:global align:4 +@5880 = .data:0x802C0C60; // type:object size:0x14 scope:local align:4 data:string +@5881 = .data:0x802C0C74; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802C0C90; // type:object size:0x54 scope:global align:4 +@5882 = .data:0x802C0CE4; // type:object size:0xE scope:local align:4 data:string +@5883 = .data:0x802C0CF4; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802C0D10; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C0D64; // type:object size:0x12 scope:local align:4 data:string +@5886 = .data:0x802C0D78; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802C0D94; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C0DE8; // type:object size:0xE scope:local align:4 data:string +@5888 = .data:0x802C0DF8; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802C0E14; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C0E68; // type:object size:0xF scope:local align:4 data:string +@5890 = .data:0x802C0E78; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802C0E94; // type:object size:0x54 scope:global align:4 +@5891 = .data:0x802C0EE8; // type:object size:0x13 scope:local align:4 data:string +@5892 = .data:0x802C0EFC; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802C0F18; // type:object size:0x54 scope:global align:4 +@5893 = .data:0x802C0F6C; // type:object size:0x11 scope:local align:4 data:string +@5894 = .data:0x802C0F80; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802C0F9C; // type:object size:0x54 scope:global align:4 +@5895 = .data:0x802C0FF0; // type:object size:0x10 scope:local align:4 data:string +@5896 = .data:0x802C1000; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802C101C; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802C1070; // type:object size:0x10 scope:local align:4 data:string +@5898 = .data:0x802C1080; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802C109C; // type:object size:0x54 scope:global align:4 +@5900 = .data:0x802C10F0; // type:object size:0xF scope:local align:4 data:string +@5901 = .data:0x802C1100; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802C111C; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802C1170; // type:object size:0xE scope:local align:4 data:string +@5904 = .data:0x802C1180; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802C119C; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802C11F0; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802C1204; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802C1220; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802C1274; // type:object size:0x12 scope:local align:4 data:string +@5908 = .data:0x802C1288; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802C12A4; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802C12F8; // type:object size:0xE scope:local align:4 data:string +@5910 = .data:0x802C1308; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802C1324; // type:object size:0x54 scope:global align:4 +@5911 = .data:0x802C1378; // type:object size:0xE scope:local align:4 data:string +@5912 = .data:0x802C1388; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802C13A4; // type:object size:0x54 scope:global align:4 +@5913 = .data:0x802C13F8; // type:object size:0x13 scope:local align:4 data:string +@5915 = .data:0x802C140C; // type:object size:0x15 scope:local align:4 data:string +@5916 = .data:0x802C1424; // type:object size:0x17 scope:local align:4 data:string +@5914 = .data:0x802C143C; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802C1468; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802C14DC; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802C14E8; // type:object size:0xC scope:weak align:4 +@5919 = .data:0x802C14F4; // type:object size:0xD scope:local align:4 data:string +@5920 = .data:0x802C1504; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802C1520; // type:object size:0x54 scope:global align:4 +@5922 = .data:0x802C1574; // type:object size:0xE scope:local align:4 data:string +@5923 = .data:0x802C1584; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802C15A0; // type:object size:0x54 scope:global align:4 +@5924 = .data:0x802C15F4; // type:object size:0xE scope:local align:4 data:string +@5925 = .data:0x802C1604; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802C1620; // type:object size:0x54 scope:global align:4 +@5927 = .data:0x802C1674; // type:object size:0xC scope:local align:4 data:string +@5937 = .data:0x802C16AC; // type:object size:0xF scope:local align:4 data:string +@5938 = .data:0x802C16BC; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802C16D8; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802C172C; // type:object size:0x11 scope:local align:4 data:string +@5940 = .data:0x802C1740; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802C175C; // type:object size:0x54 scope:global align:4 +@5942 = .data:0x802C17B0; // type:object size:0x12 scope:local align:4 data:string +@5943 = .data:0x802C17C4; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802C17E0; // type:object size:0x54 scope:global align:4 +@5945 = .data:0x802C1834; // type:object size:0x10 scope:local align:4 data:string +@5946 = .data:0x802C1844; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802C1860; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802C18B4; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802C1908; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802C1958; // type:object size:0x38 scope:weak align:4 +@5948 = .data:0x802C1990; // type:object size:0x11 scope:local align:4 data:string +@5950 = .data:0x802C19A4; // type:object size:0x13 scope:local align:4 data:string +@5949 = .data:0x802C19B8; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802C19C4; // type:object size:0x18 scope:global align:4 +@5996 = .data:0x802C19DC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C1A08; // type:label scope:local +@1884 = .data:0x802C1A08; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802C1A1C; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802C1A28; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802C1A38; // type:object size:0xC scope:local align:4 data:string +@2749 = .data:0x802C1A44; // type:object size:0x2C scope:local align:4 +@2761 = .data:0x802C1A70; // type:object size:0x14 scope:local align:4 data:string +@2763 = .data:0x802C1A84; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802C1A94; // type:object size:0xD scope:local align:4 data:string +@2765 = .data:0x802C1AA4; // type:object size:0xC scope:local align:4 +@2766 = .data:0x802C1AB0; // type:object size:0xA scope:local align:4 data:string +@2767 = .data:0x802C1ABC; // type:object size:0x14 scope:local align:4 +@2762 = .data:0x802C1AD0; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802C1AEC; // type:object size:0x54 scope:global align:4 +@2769 = .data:0x802C1B40; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802C1B64; // type:object size:0x18 scope:weak align:4 +@2770 = .data:0x802C1C58; // type:object size:0x1E scope:local align:4 data:string +@2772 = .data:0x802C1C78; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802C1C98; // type:object size:0x1C scope:local align:4 data:string +@2774 = .data:0x802C1CB4; // type:object size:0xC scope:local align:4 +@2775 = .data:0x802C1CC0; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802C1CE0; // type:object size:0x14 scope:local align:4 +@2771 = .data:0x802C1CF4; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802C1D10; // type:object size:0x50 scope:global align:4 +@2777 = .data:0x802C1D60; // type:object size:0x1F scope:local align:4 data:string +@2778 = .data:0x802C1D80; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802C1D9C; // type:object size:0x50 scope:global align:4 +@2779 = .data:0x802C1DEC; // type:object size:0x22 scope:local align:4 data:string +@2780 = .data:0x802C1E10; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802C1E2C; // type:object size:0x50 scope:global align:4 +@2781 = .data:0x802C1E7C; // type:object size:0x1F scope:local align:4 data:string +@2782 = .data:0x802C1E9C; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802C1EB8; // type:object size:0x50 scope:global align:4 +@2783 = .data:0x802C1F08; // type:object size:0x1D scope:local align:4 data:string +@2784 = .data:0x802C1F28; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802C1F44; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802C1F94; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802C1FE4; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802C2034; // type:object size:0x38 scope:weak align:4 +@2785 = .data:0x802C206C; // type:object size:0x26 scope:local align:4 data:string +@2786 = .data:0x802C2094; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802C20A0; // type:object size:0x18 scope:global align:4 +@2844 = .data:0x802C20B8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C20E8; // type:label scope:local +@2086 = .data:0x802C20E8; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802C20FC; // type:object size:0x10 scope:local align:4 data:string +@2632 = .data:0x802C210C; // type:object size:0x4C scope:local align:4 +@3525 = .data:0x802C2158; // type:object size:0x9 scope:local align:4 data:string +@3526 = .data:0x802C2164; // type:object size:0xA scope:local align:4 data:string +@3527 = .data:0x802C2170; // type:object size:0x9 scope:local align:4 data:string +@3529 = .data:0x802C217C; // type:object size:0xB scope:local align:4 data:string +@3531 = .data:0x802C2188; // type:object size:0xE scope:local align:4 data:string +@3532 = .data:0x802C2198; // type:object size:0x9 scope:local align:4 data:string +@3533 = .data:0x802C21A4; // type:object size:0xB scope:local align:4 data:string +@3534 = .data:0x802C21B0; // type:object size:0xD scope:local align:4 data:string +@3544 = .data:0x802C21C0; // type:object size:0x11 scope:local align:4 data:string +@3799 = .data:0x802C21D4; // type:object size:0x9 scope:local align:4 data:string +@3802 = .data:0x802C21E0; // type:object size:0x13 scope:local align:4 +@3803 = .data:0x802C21F4; // type:object size:0x17 scope:local align:4 +@3804 = .data:0x802C220C; // type:object size:0x13 scope:local align:4 data:string +@3805 = .data:0x802C2220; // type:object size:0xC scope:local align:4 data:string +@3806 = .data:0x802C222C; // type:object size:0x9 scope:local align:4 data:string +@3808 = .data:0x802C2238; // type:object size:0xC scope:local align:4 data:string +@3811 = .data:0x802C2244; // type:object size:0xA scope:local align:4 data:string +@3813 = .data:0x802C2250; // type:object size:0x16 scope:local align:4 +@3815 = .data:0x802C2268; // type:object size:0x13 scope:local align:4 +@3817 = .data:0x802C227C; // type:object size:0x14 scope:local align:4 +@3818 = .data:0x802C2290; // type:object size:0x15 scope:local align:4 +@3820 = .data:0x802C22A8; // type:object size:0x14 scope:local align:4 +@3825 = .data:0x802C22BC; // type:object size:0xA scope:local align:4 data:string +@4139 = .data:0x802C22C8; // type:object size:0x2C scope:local align:4 data:string +@4142 = .data:0x802C22F4; // type:object size:0xA scope:local align:4 data:string +@4143 = .data:0x802C2300; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802C230C; // type:object size:0xA scope:local align:4 data:string +@4145 = .data:0x802C2318; // type:object size:0xA scope:local align:4 data:string +@4146 = .data:0x802C2324; // type:object size:0xC scope:local align:4 data:string +@4147 = .data:0x802C2330; // type:object size:0xA scope:local align:4 data:string +@4148 = .data:0x802C233C; // type:object size:0xC scope:local align:4 data:string +@4149 = .data:0x802C2348; // type:object size:0x9 scope:local align:4 data:string +triNames$4141 = .data:0x802C2354; // type:object size:0x28 scope:local align:4 +@4371 = .data:0x802C237C; // type:object size:0x10 scope:local align:4 data:string +@4374 = .data:0x802C238C; // type:object size:0x9 scope:local align:4 data:string +@4375 = .data:0x802C2398; // type:object size:0xC scope:local align:4 +@4377 = .data:0x802C23A4; // type:object size:0x14 scope:local align:4 +@4372 = .data:0x802C23B8; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802C23D4; // type:object size:0x30 scope:global align:4 +@4385 = .data:0x802C2420; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802C2458; // type:label scope:local +@1158 = .data:0x802C2458; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802C2468; // type:object size:0x9 scope:local align:4 data:string +@1894 = .data:0x802C2474; // type:object size:0xB scope:local align:4 data:string +@1896 = .data:0x802C2480; // type:object size:0x23 scope:local align:4 data:string +@1897 = .data:0x802C24A4; // type:object size:0x3D scope:local align:4 data:string +@1898 = .data:0x802C24E4; // type:object size:0x29 scope:local align:4 data:string +@1900 = .data:0x802C2510; // type:object size:0x1C scope:local align:4 +@1895 = .data:0x802C252C; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802C2550; // type:object size:0x3C scope:global align:4 +@1903 = .data:0x802C258C; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802C259C; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802C25C0; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802C25FC; // type:object size:0x10 scope:local align:4 data:string +@1907 = .data:0x802C260C; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802C2630; // type:object size:0x3C scope:global align:4 +@1908 = .data:0x802C266C; // type:object size:0x11 scope:local align:4 data:string +@1909 = .data:0x802C2680; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802C26A4; // type:object size:0x3C scope:weak align:4 +@1995 = .data:0x802C26E0; // type:object size:0xE scope:local align:4 data:string +@1997 = .data:0x802C26F0; // type:object size:0x10 scope:local align:4 data:string +@1998 = .data:0x802C2700; // type:object size:0x24 scope:local align:4 +@1996 = .data:0x802C2724; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802C2750; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802C278C; // type:object size:0x3C scope:weak align:4 +@2101 = .data:0x802C27C8; // type:object size:0x10 scope:local align:4 data:string +@2102 = .data:0x802C27D8; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802C27FC; // type:object size:0x3C scope:weak align:4 +@2108 = .data:0x802C2838; // type:object size:0xB scope:local align:4 data:string +@2109 = .data:0x802C2844; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802C2868; // type:object size:0x3C scope:weak align:4 +@2115 = .data:0x802C28A4; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802C28B4; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802C28D8; // type:object size:0x3C scope:weak align:4 +@2125 = .data:0x802C2914; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802C2938; // type:object size:0x3C scope:weak align:4 +@2150 = .data:0x802C2974; // type:object size:0x10 scope:local align:4 data:string +@2151 = .data:0x802C2984; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802C29A8; // type:object size:0x3C scope:weak align:4 +@2157 = .data:0x802C29E4; // type:object size:0x10 scope:local align:4 data:string +@2158 = .data:0x802C29F4; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802C2A18; // type:object size:0x3C scope:weak align:4 +@2164 = .data:0x802C2A54; // type:object size:0x11 scope:local align:4 data:string +@2165 = .data:0x802C2A68; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802C2A8C; // type:object size:0x3C scope:weak align:4 +@2171 = .data:0x802C2AC8; // type:object size:0x10 scope:local align:4 data:string +@2172 = .data:0x802C2AD8; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802C2AFC; // type:object size:0x3C scope:weak align:4 +@2178 = .data:0x802C2B38; // type:object size:0xC scope:local align:4 data:string +@2179 = .data:0x802C2B44; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802C2B68; // type:object size:0x3C scope:weak align:4 +@2297 = .data:0x802C2BA4; // type:object size:0xB scope:local align:4 data:string +@2298 = .data:0x802C2BB0; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802C2BD4; // type:object size:0x3C scope:weak align:4 +@2318 = .data:0x802C2C10; // type:object size:0xC scope:local align:4 data:string +@2319 = .data:0x802C2C1C; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802C2C40; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802C2CE0; // type:label scope:local +@390 = .data:0x802C2CE0; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802C2CF0; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802C2CFC; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802C2D0C; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802C2D18; // type:object size:0xC scope:local align:4 +@446 = .data:0x802C2D24; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802C2D38; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802C2D44; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802C2D60; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802C2D84; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C2DD0; // type:label scope:local +@1462 = .data:0x802C2DD0; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802C2DDC; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802C2DE8; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802C2DF4; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802C2E00; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802C2E10; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802C2E1C; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802C2E28; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802C2E3C; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802C2E50; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802C2E60; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802C2E6C; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802C2E78; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802C2E8C; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802C2E98; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802C2EA4; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802C2EC8; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802C2ED8; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802C2F04; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802C2F38; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802C2FC0; // type:label scope:local +@734 = .data:0x802C2FC0; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802C2FD0; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802C2FDC; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802C2FF0; // type:object size:0xC scope:local align:4 +@793 = .data:0x802C2FFC; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802C3008; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802C301C; // type:object size:0x13 scope:local align:4 +@1047 = .data:0x802C3030; // type:object size:0x12 scope:local align:4 data:string +@1049 = .data:0x802C3044; // type:object size:0xB scope:local align:4 data:string +@1051 = .data:0x802C3050; // type:object size:0xC scope:local align:4 +@1052 = .data:0x802C305C; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802C3068; // type:object size:0x14 scope:local align:4 +@1048 = .data:0x802C307C; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802C3098; // type:object size:0x38 scope:global align:4 +@1060 = .data:0x802C30D0; // type:object size:0xC scope:local align:4 data:string +@1062 = .data:0x802C30DC; // type:object size:0x9 scope:local align:4 data:string +@1061 = .data:0x802C30E8; // type:object size:0xC scope:local align:4 +@1063 = .data:0x802C3108; // type:object size:0xA scope:local align:4 data:string +@1064 = .data:0x802C3114; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C3138; // type:label scope:local +@657 = .data:0x802C3138; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802C3148; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802C3154; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802C3168; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802C3180; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802C3194; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802C31A8; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802C31B8; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802C31C4; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802C31D0; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802C31DC; // type:object size:0xC scope:local align:4 +@905 = .data:0x802C31E8; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802C31FC; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802C320C; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802C3228; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802C3238; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802C325C; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802C3268; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802C3294; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802C32C8; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802C3314; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802C3320; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802C3354; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802C33FC; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802C3448; // type:label scope:local +@661 = .data:0x802C3448; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C3460; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802C3474; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802C3480; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802C348C; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802C3498; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802C34A4; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802C34B0; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C34BC; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802C34C8; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802C34D4; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802C34E0; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802C34EC; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802C34F8; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802C3504; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802C3510; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802C351C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802C3528; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802C3534; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802C3540; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802C354C; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802C36B4; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802C36C8; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802C36D4; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802C36E4; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802C36F0; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802C3704; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C3720; // type:label scope:local +@853 = .data:0x802C3720; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802C3730; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802C373C; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802C3748; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802C3758; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802C3768; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802C3778; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802C3784; // type:object size:0xC scope:local align:4 +@887 = .data:0x802C3790; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802C379C; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802C37B0; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802C37CC; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C3808; // type:label scope:local +@1114 = .data:0x802C3808; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802C3818; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802C3824; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C3830; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802C383C; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802C3848; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802C3854; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802C3860; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802C386C; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802C389C; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802C38B4; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802C38C8; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802C38D4; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802C38E4; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802C38F4; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802C3904; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802C3910; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802C391C; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802C3928; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802C393C; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802C3958; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802C3990; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802C399C; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802C39A8; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802C39BC; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802C39C8; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802C39D4; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802C39F8; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802C3A08; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802C3A34; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802C3A68; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802C3AE4; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802C3AF0; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802C3AFC; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802C3B1C; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802C3B38; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802C3B4C; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802C3B60; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802C3B70; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802C3B80; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802C3BBC; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802C3BD0; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802C3BDC; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802C3BE8; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802C3BF4; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802C3C08; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802C3C14; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802C3C20; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802C3C38; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802C3C48; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802C3C5C; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802C3C78; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802C3CC8; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802C3CE4; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802C3CF0; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802C3CFC; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802C3D10; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802C3D28; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802C3D3C; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802C3D48; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802C3D58; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802C3D64; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802C3D78; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802C3D84; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802C3DA8; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802C3DD4; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802C3F30; // type:label scope:local +@661 = .data:0x802C3F30; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802C3F48; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802C3F5C; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802C3F78; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802C3F8C; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C3F98; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802C3FA8; // type:object size:0xC scope:local align:4 +@713 = .data:0x802C3FB4; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802C3FC8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C3FE8; // type:label scope:local +@1206 = .data:0x802C3FE8; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802C3FF4; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802C4000; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802C400C; // type:object size:0x9 scope:local align:4 +@1288 = .data:0x802C4018; // type:object size:0xE scope:local align:4 data:string +@1290 = .data:0x802C4028; // type:object size:0xB scope:local align:4 data:string +@1292 = .data:0x802C4034; // type:object size:0xC scope:local align:4 +@1293 = .data:0x802C4040; // type:object size:0xA scope:local align:4 data:string +@1294 = .data:0x802C404C; // type:object size:0x14 scope:local align:4 +@1289 = .data:0x802C4060; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802C407C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C40B8; // type:label scope:local +@445 = .data:0x802C40B8; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C40CC; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802C40DC; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802C40F0; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802C40FC; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802C4108; // type:object size:0xC scope:global align:4 +@667 = .data:0x802C4114; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802C412C; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802C4140; // type:object size:0xC scope:local align:4 +@671 = .data:0x802C414C; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802C415C; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802C4170; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802C418C; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802C419C; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802C41AC; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802C41BC; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802C41C8; // type:label scope:local +@445 = .data:0x802C41C8; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C41DC; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802C41EC; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802C41F8; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802C4204; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802C4214; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802C4220; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802C422C; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802C423C; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802C4248; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802C4254; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802C4264; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802C4270; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802C427C; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802C4288; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802C4294; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802C42A0; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802C42AC; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802C42B8; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802C42C8; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802C42D8; // type:label scope:local +@441 = .data:0x802C42D8; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802C42E8; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802C42F4; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802C4AF8; // type:label scope:local +@410 = .data:0x802C4AF8; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802C4B08; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802C4B14; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802C4B24; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802C4B34; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802C4B74; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802C4B94; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802C4BA4; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C4BE8; // type:label scope:local +@657 = .data:0x802C4BE8; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802C4BFC; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802C4C0C; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802C4C18; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802C4C24; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802C4C30; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802C4C3C; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802C4C48; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802C4C54; // type:object size:0x18 scope:global align:4 +@864 = .data:0x802C4C6C; // type:object size:0xD scope:local align:4 data:string +@866 = .data:0x802C4C7C; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C4C88; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802C4C94; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C4CB0; // type:label scope:local +@1106 = .data:0x802C4CB0; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802C4CC8; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802C4CDC; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802C4CEC; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802C4CFC; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802C4D38; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802C4D4C; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802C4D58; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802C4D68; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802C4D74; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802C4D88; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C4DA8; // type:label scope:local +@1783 = .data:0x802C4DA8; // type:object size:0x14 scope:local align:4 data:string +@1793 = .data:0x802C4DBC; // type:object size:0x10 scope:local align:4 data:string +@1931 = .data:0x802C4DCC; // type:object size:0xD scope:local align:4 data:string +@1932 = .data:0x802C4DDC; // type:object size:0xD scope:local align:4 data:string +@1933 = .data:0x802C4DEC; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802C4E00; // type:object size:0x1A scope:local align:4 data:string +@1940 = .data:0x802C4E1C; // type:object size:0xD scope:local align:4 data:string +@2307 = .data:0x802C4E2C; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802C4E40; // type:object size:0xC scope:local align:4 data:string +@2309 = .data:0x802C4E4C; // type:object size:0xD scope:local align:4 data:string +@2310 = .data:0x802C4E5C; // type:object size:0x11 scope:local align:4 data:string +@2323 = .data:0x802C4E70; // type:object size:0x12 scope:local align:4 data:string +@2324 = .data:0x802C4E84; // type:object size:0x10 scope:local align:4 data:string +@2327 = .data:0x802C4E94; // type:object size:0x9 scope:local align:4 data:string +@2328 = .data:0x802C4EA0; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802C4EAC; // type:object size:0x14 scope:local align:4 +@2332 = .data:0x802C4EC0; // type:object size:0x1C scope:local align:4 +@2325 = .data:0x802C4EDC; // type:object size:0x24 scope:local align:4 +__vt__15PaniTestSection = .data:0x802C4F00; // type:object size:0x34 scope:global align:4 +@2341 = .data:0x802C4F34; // type:object size:0x14 scope:local align:4 data:string +@2340 = .data:0x802C4F48; // type:object size:0x24 scope:local align:4 +__vt__12PaniTestNode = .data:0x802C4F6C; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802C4FD8; // type:label scope:local +@410 = .data:0x802C4FD8; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802C4FEC; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802C4FFC; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802C5010; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802C5024; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802C5034; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802C504C; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802C5058; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C506C; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802C5080; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802C5090; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802C50A4; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802C50B0; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C50C4; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C50D8; // type:label scope:local +@1481 = .data:0x802C50D8; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802C50E8; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802C50F4; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802C5104; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802C5130; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802C513C; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802C5148; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802C5154; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802C5168; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C51A8; // type:label scope:local +@1122 = .data:0x802C51A8; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802C51C0; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802C51D4; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802C51E8; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802C51F4; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802C5200; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802C5214; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802C5230; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C5280; // type:label scope:local +@717 = .data:0x802C5280; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C5298; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802C52AC; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802C52C4; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802C52D0; // type:object size:0xC scope:local align:4 +@855 = .data:0x802C52DC; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802C52F0; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802C532C; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802C5344; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802C5358; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802C536C; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802C53A8; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802C53B8; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802C53CC; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802C53E0; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802C53FC; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802C5438; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802C544C; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802C5468; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802C54A4; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802C54BC; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802C54CC; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802C54E0; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802C54FC; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C5538; // type:label scope:local +@446 = .data:0x802C5538; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802C5554; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802C556C; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802C557C; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802C5590; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802C55A0; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802C55B0; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802C55CC; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802C55E8; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802C55F8; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802C560C; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802C5620; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802C5630; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802C564C; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802C566C; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802C567C; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802C5690; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802C56A0; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802C56AC; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802C56C8; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802C56E4; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802C56F4; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802C5708; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802C5718; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802C5728; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802C5744; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802C5760; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802C5770; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802C5788; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802C579C; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802C57AC; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802C57CC; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802C57EC; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802C5800; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802C5814; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802C5824; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802C5834; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802C5850; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802C586C; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802C587C; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802C5894; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802C58AC; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802C58C0; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802C58E0; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802C5904; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802C5918; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802C5928; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802C593C; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802C594C; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802C5960; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802C5978; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802C598C; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802C59A4; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802C59C0; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802C59D4; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802C59E8; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802C5A00; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802C5A14; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802C5A30; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802C5A48; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C5A54; // type:object size:0xC scope:local align:4 +@867 = .data:0x802C5A60; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802C5A74; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802C5A90; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C5AE0; // type:label scope:local +@698 = .data:0x802C5AE0; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802C5AEC; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802C5B00; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802C5B0C; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802C5B20; // type:object size:0xC scope:local align:4 +@853 = .data:0x802C5B2C; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802C5B40; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802C5B50; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802C5B60; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802C5B78; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802C5B84; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802C5B94; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802C5BA8; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802C5BB8; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802C5BC4; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802C5BD4; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802C5BE4; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802C5BFC; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802C5C08; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802C5C18; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802C5C30; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802C5C3C; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802C5C4C; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802C5C5C; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802C5C6C; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802C5C78; // type:object size:0xC scope:local align:4 +@922 = .data:0x802C5C84; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802C5C98; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802C5CD4; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802C5CE8; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802C5CFC; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802C5D38; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802C5D74; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802C5D84; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C5D98; // type:label scope:local +@698 = .data:0x802C5D98; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802C5DAC; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802C5DBC; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802C5DD8; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802C5DE8; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802C5E00; // type:object size:0xC scope:local align:4 +@762 = .data:0x802C5E0C; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802C5E20; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802C5E34; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802C5E4C; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802C5E60; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802C5E74; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802C5E88; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802C5E94; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802C5EA8; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802C5EC0; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802C5ECC; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802C5EE0; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C5EF8; // type:label scope:local +@717 = .data:0x802C5EF8; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C5F10; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802C5F24; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802C5F38; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802C5F44; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802C5F50; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802C5F64; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802C5FA0; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802C5FB8; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802C5FC8; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802C5FDC; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802C6018; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802C6030; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802C6044; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802C609C; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802C60B4; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802C60C8; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802C60DC; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802C60F8; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802C6134; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802C614C; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802C6160; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802C619C; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802C61B4; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802C61C8; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802C6204; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802C6220; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802C623C; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802C6278; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802C628C; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802C62A0; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802C62DC; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802C62F8; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802C630C; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802C6348; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802C635C; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802C6368; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802C6394; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802C63A8; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802C63C0; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802C63D4; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802C63F0; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802C642C; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802C6468; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802C6478; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802C648C; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C64C8; // type:label scope:local +@1231 = .data:0x802C64C8; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802C64D4; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802C64E4; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802C64F0; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802C6518; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802C6524; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802C653C; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802C654C; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802C6558; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802C6564; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802C6580; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C65A0; // type:label scope:local +@1686 = .data:0x802C65A0; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802C65B8; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802C65CC; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802C65E4; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802C65F0; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802C6600; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802C660C; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802C6620; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802C663C; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802C6650; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802C6664; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802C6680; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802C6698; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802C66A4; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802C66C0; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802C66D0; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802C66DC; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802C66F8; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802C670C; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802C6718; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802C6734; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802C676C; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802C6780; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802C678C; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802C679C; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802C67A8; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802C67BC; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802C67C8; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802C67DC; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802C67F0; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802C67FC; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802C681C; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802C6828; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802C6844; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802C685C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802C6868; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802C6884; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802C689C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802C68A8; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802C68C4; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802C68DC; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802C68F8; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802C6904; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C6920; // type:label scope:local +@1211 = .data:0x802C6920; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802C6934; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802C6944; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802C6960; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802C696C; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802C6978; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802C6994; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802C69B4; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802C69C0; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802C69DC; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802C69F0; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802C69FC; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802C6A18; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802C6A2C; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802C6A38; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802C6A54; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802C6A68; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802C6A74; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802C6A90; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802C6AA8; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802C6AB4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C6AD0; // type:label scope:local +@1730 = .data:0x802C6AD0; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802C6AE0; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802C6AEC; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802C6AF8; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802C6B08; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802C6B18; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802C6B28; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802C6B44; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802C6B50; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802C6B64; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802C6B70; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802C6B88; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802C6B9C; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802C6BB8; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802C6BD8; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802C6BF0; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802C6C04; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802C6C10; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802C6C24; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802C6C40; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802C6C54; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802C6C60; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802C6C70; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802C6C7C; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802C6C9C; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802C6CAC; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802C6CC0; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802C6CE4; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802C6CF8; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802C6D04; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802C6D20; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802C6D30; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802C6D3C; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802C6D58; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802C6D68; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802C6D74; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802C6DAC; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802C6DC0; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802C6DD0; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802C6DDC; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802C6DE8; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802C6DFC; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802C6E24; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802C6E3C; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802C6E48; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802C6E54; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802C6E68; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802C6E78; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802C6E94; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802C6EB8; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802C6EE8; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802C6F04; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802C6F28; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802C6F58; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802C6F6C; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802C6F90; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C6FC0; // type:label scope:local +@1729 = .data:0x802C6FC0; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802C6FD0; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802C6FDC; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802C6FE8; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802C6FF8; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802C7008; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802C7024; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802C7038; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802C7058; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802C7074; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802C7080; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802C7094; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802C70A8; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802C70BC; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802C70D0; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802C70E0; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802C70EC; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802C70F8; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802C710C; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802C7134; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802C7148; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802C7154; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802C7160; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802C7174; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802C7184; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802C71A0; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802C71C4; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802C71F4; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802C7210; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802C721C; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802C7230; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802C723C; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802C7254; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802C7268; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802C7284; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802C72A4; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802C72BC; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802C72C8; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802C72E4; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802C72FC; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802C7308; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802C7324; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802C7340; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802C734C; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802C7368; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802C7394; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802C73A0; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802C73BC; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802C73E4; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802C73F0; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802C740C; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802C7428; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802C7434; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802C7450; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802C7470; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802C747C; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802C7498; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802C74B8; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802C74C8; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802C74D4; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802C74F0; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802C7504; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802C7520; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802C7540; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802C7578; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802C7598; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802C75A4; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802C75C0; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802C75D4; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802C75E0; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802C75FC; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802C761C; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802C7628; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802C7644; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802C7660; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802C766C; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802C7688; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802C76A4; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802C76B0; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802C76CC; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802C76E4; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802C76F0; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802C770C; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802C7724; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802C7730; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802C774C; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802C7768; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802C7774; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802C7790; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802C77B4; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802C77C0; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802C77DC; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802C77F8; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802C7804; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802C7820; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802C784C; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802C785C; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802C7868; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802C787C; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802C7898; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802C78C0; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802C78CC; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802C78E8; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802C78FC; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802C7908; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802C7918; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802C7924; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802C7944; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802C7958; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802C7990; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802C79AC; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802C79B8; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802C79D4; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802C79F4; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802C7A00; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802C7A1C; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802C7A38; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802C7A44; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802C7A60; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802C7A80; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802C7A94; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802C7AA0; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802C7AB4; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802C7AC8; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802C7AF0; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802C7B04; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802C7B10; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802C7B48; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802C7B5C; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802C7B80; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C7BB0; // type:label scope:local +@1111 = .data:0x802C7BB0; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802C7BC8; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802C7BDC; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802C7BF8; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802C7C04; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802C7C20; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802C7C2C; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802C7C40; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802C7C5C; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802C7C74; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802C7C88; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802C7CA4; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802C7CBC; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802C7CD0; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802C7CEC; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802C7D08; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802C7D20; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802C7D2C; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802C7D48; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802C7D64; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802C7D70; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802C7D8C; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802C7D9C; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802C7DA8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C7DC8; // type:label scope:local +@1716 = .data:0x802C7DC8; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802C7DE0; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802C7DF4; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802C7E0C; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802C7E18; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802C7E2C; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802C7E38; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802C7E4C; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802C7E88; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802C7EAC; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802C7EB8; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802C7ED4; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802C7EF8; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802C7F04; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802C7F20; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802C7F30; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802C7F3C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C7F58; // type:label scope:local +@1728 = .data:0x802C7F58; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802C7F68; // type:object size:0xA scope:local align:4 data:string +@2002 = .data:0x802C7F74; // type:object size:0xD scope:local align:4 data:string +@2151 = .data:0x802C7F84; // type:object size:0x18 scope:local align:4 data:string +@2153 = .data:0x802C7F9C; // type:object size:0xA scope:local align:4 data:string +@2152 = .data:0x802C7FA8; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802C7FB4; // type:object size:0x1C scope:global align:4 +@2160 = .data:0x802C7FD0; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x802C7FE4; // type:object size:0xD scope:local align:4 data:string +@2163 = .data:0x802C7FF4; // type:object size:0xC scope:local align:4 data:string +@2164 = .data:0x802C8000; // type:object size:0xC scope:local align:4 +@2161 = .data:0x802C800C; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802C8020; // type:object size:0x28 scope:global align:4 +@2165 = .data:0x802C8048; // type:object size:0x14 scope:local align:4 data:string +@2168 = .data:0x802C805C; // type:object size:0x9 scope:local align:4 data:string +@2169 = .data:0x802C8068; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802C8074; // type:object size:0x14 scope:local align:4 +@2172 = .data:0x802C8088; // type:object size:0xF scope:local align:4 data:string +@2173 = .data:0x802C8098; // type:object size:0x1C scope:local align:4 +@2166 = .data:0x802C80B4; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802C80D8; // type:object size:0x30 scope:weak align:4 +@2180 = .data:0x802C8108; // type:object size:0x17 scope:local align:4 data:string +@2181 = .data:0x802C8120; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802C812C; // type:object size:0x1C scope:global align:4 +@2182 = .data:0x802C8148; // type:object size:0x1A scope:local align:4 data:string +@2183 = .data:0x802C8164; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802C8170; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802C818C; // type:object size:0x12 scope:local align:4 data:string +@2186 = .data:0x802C81A0; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802C81B4; // type:object size:0x28 scope:global align:4 +@2188 = .data:0x802C81F8; // type:object size:0x14 scope:local align:4 data:string +@2189 = .data:0x802C820C; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802C8230; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C8260; // type:label scope:local +@1669 = .data:0x802C8260; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802C8278; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802C828C; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802C82A8; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802C82B4; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802C82C0; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802C82DC; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802C82F8; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802C8304; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802C8320; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802C8334; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802C8340; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802C8350; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802C835C; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802C837C; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802C8398; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802C83A4; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802C83D8; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802C83F8; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802C8404; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802C8420; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802C843C; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802C8448; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802C8464; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802C8480; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802C848C; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802C84A8; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802C84BC; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802C84C8; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802C84E4; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802C84FC; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802C8508; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802C8524; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802C853C; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802C8548; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802C8564; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802C857C; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802C8588; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C85A8; // type:label scope:local +@1793 = .data:0x802C85A8; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802C85B8; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802C85C4; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802C85E0; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802C85F4; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802C8608; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802C861C; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802C862C; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802C8640; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802C8658; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802C866C; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802C867C; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802C868C; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802C86A0; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802C86BC; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802C86D8; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802C86E4; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802C86F8; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802C8704; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802C871C; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802C8730; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802C874C; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802C876C; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802C8790; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802C879C; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802C87B8; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802C87CC; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802C87D8; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802C87E8; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802C87F4; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802C882C; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802C8864; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802C8888; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802C8894; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802C88B0; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802C88D0; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802C88DC; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802C88F8; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802C8914; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802C8920; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802C893C; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802C8950; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802C8960; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802C896C; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802C8978; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802C898C; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802C89B4; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802C89C4; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802C89D0; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802C89EC; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802C89FC; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802C8A40; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802C8A54; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802C8A60; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802C8A6C; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802C8A80; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802C8A90; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802C8AAC; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802C8AD0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C8B00; // type:label scope:local +@1211 = .data:0x802C8B00; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802C8B18; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802C8B2C; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802C8B44; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802C8B50; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802C8B5C; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802C8B78; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802C8B90; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802C8B9C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C8BB8; // type:label scope:local +@1796 = .data:0x802C8BB8; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802C8BC8; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802C8BD4; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802C8BE4; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802C8BF4; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802C8C0C; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802C8C28; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802C8C34; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802C8C44; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802C8C60; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802C8C7C; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802C8C90; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802C8CB0; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802C8CC4; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802C8CE4; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802C8CF0; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802C8D08; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802C8D24; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802C8D30; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802C8D3C; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802C8D58; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802C8D70; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802C8D7C; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802C8D98; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802C8DB4; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802C8DC0; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802C8DDC; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802C8DF4; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802C8E00; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802C8E1C; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802C8E34; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802C8E40; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802C8E5C; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802C8E74; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802C8E80; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802C8E9C; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802C8EB8; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802C8EC8; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802C8ED4; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802C8EE8; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802C8F04; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802C8F20; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802C8F34; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802C8F50; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802C8F64; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802C8F74; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802C8F80; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802C8F8C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802C8FA0; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802C8FC8; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802C8FE0; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802C8FEC; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802C8FF8; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802C900C; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802C901C; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802C9038; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802C905C; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802C908C; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802C90AC; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802C90B8; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802C90D4; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802C90F0; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802C90FC; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802C9118; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802C912C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802C9140; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802C9184; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802C919C; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802C91C0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C91F0; // type:label scope:local +@1111 = .data:0x802C91F0; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802C9208; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802C921C; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802C9240; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802C924C; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802C9258; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802C9274; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802C928C; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802C9298; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802C92B4; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802C92D0; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802C92DC; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802C92F8; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802C9310; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802C931C; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802C9338; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802C9354; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802C9360; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802C937C; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802C9394; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802C93A4; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802C93B0; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802C93C4; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802C93E0; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802C93F4; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802C9400; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802C941C; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802C9434; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802C9440; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802C945C; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802C9474; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802C9488; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802C94A4; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802C94C0; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802C94D4; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802C94F4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C9510; // type:label scope:local +@1669 = .data:0x802C9510; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802C9524; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802C9534; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802C9558; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802C9564; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802C9570; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802C958C; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802C95A0; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802C95AC; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802C95C8; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802C95EC; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802C95F8; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802C9614; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802C962C; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802C963C; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802C9648; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802C9664; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802C9678; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802C9694; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802C96B4; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802C96DC; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802C96F8; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802C9718; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802C972C; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802C9738; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802C9754; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802C9778; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802C9794; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802C97B4; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802C97D0; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802C97DC; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802C97F8; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802C9810; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802C982C; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802C984C; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802C9864; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802C9880; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802C98A0; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802C98B0; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802C98BC; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802C98E0; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802C98F4; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802C9910; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802C9930; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802C9944; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802C9950; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802C996C; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802C9980; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802C999C; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802C99BC; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802C99D0; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802C99EC; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802C9A0C; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802C9A2C; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802C9A48; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802C9A68; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802C9A7C; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802C9A88; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802C9AA4; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802C9AC0; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802C9ACC; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802C9AE8; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802C9B00; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802C9B0C; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802C9B28; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802C9B40; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802C9B4C; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802C9B68; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802C9B84; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802C9B90; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802C9BAC; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802C9BC0; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802C9BCC; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802C9BE8; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802C9BFC; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802C9C08; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802C9C24; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802C9C3C; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802C9C48; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802C9C64; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802C9C80; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802C9C8C; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802C9CA8; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802C9CC4; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802C9CD0; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802C9CEC; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802C9D10; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802C9D1C; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802C9D38; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802C9D58; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802C9D64; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802C9D80; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802C9D98; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802C9DA4; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802C9DC0; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802C9DD8; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802C9DE4; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802C9E00; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802C9E14; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802C9E20; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802C9E3C; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802C9E58; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802C9E64; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C9E80; // type:label scope:local +@1736 = .data:0x802C9E80; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802C9E90; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802C9E9C; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802C9EB0; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802C9EC4; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802C9EDC; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802C9EF8; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802C9F10; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802C9F2C; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802C9F44; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802C9F60; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802C9F78; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802C9F94; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802C9FAC; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802C9FC8; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802C9FD8; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802C9FE8; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802CA00C; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802CA018; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802CA024; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802CA040; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802CA064; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802CA070; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802CA08C; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802CA0A8; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802CA0B4; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802CA0D0; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802CA0E8; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802CA0F4; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802CA110; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802CA128; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802CA134; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802CA150; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802CA16C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802CA178; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802CA194; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802CA1B4; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802CA1C0; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802CA1DC; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802CA200; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802CA20C; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802CA228; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802CA248; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802CA254; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802CA270; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802CA28C; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802CA298; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802CA2B4; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802CA2D0; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802CA2DC; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802CA2F8; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802CA318; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802CA324; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802CA340; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802CA378; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802CA38C; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802CA398; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802CA3A8; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802CA3B4; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802CA3D4; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802CA3E8; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802CA408; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802CA420; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802CA42C; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802CA448; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802CA464; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802CA470; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802CA48C; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802CA4A8; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802CA4B4; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802CA4D0; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802CA4E8; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802CA4F4; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802CA510; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802CA528; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802CA534; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802CA550; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802CA570; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802CA57C; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802CA598; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802CA5B4; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802CA5C0; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802CA5DC; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802CA5F4; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802CA600; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802CA61C; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802CA638; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802CA644; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802CA660; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802CA680; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802CA690; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802CA69C; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802CA6B8; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802CA6CC; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802CA6E8; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802CA708; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802CA728; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802CA73C; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802CA760; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802CA780; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802CA794; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802CA7A0; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802CA7B4; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802CA7C4; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802CA7D0; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802CA7DC; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802CA7F0; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802CA818; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802CA828; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802CA850; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802CA860; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802CA8A4; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802CA8B8; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802CA8C4; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802CA8D0; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802CA8E4; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802CA8F4; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802CA910; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802CA934; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CA968; // type:label scope:local +@1794 = .data:0x802CA968; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802CA978; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802CA984; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802CA9A0; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802CA9B0; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802CA9C4; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802CA9D8; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802CA9F4; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802CAA08; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802CAA24; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802CAA38; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802CAA4C; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802CAA64; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802CAA7C; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802CAA9C; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802CAABC; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802CAAD8; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802CAAE4; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802CAAF8; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802CAB04; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802CAB1C; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802CAB30; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802CAB4C; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802CAB6C; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802CAB8C; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802CAB98; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802CABB4; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802CABD0; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802CABDC; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802CABF8; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802CAC14; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802CAC20; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CAC3C; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802CAC50; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802CAC5C; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802CAC6C; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802CAC78; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802CAC98; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802CACD0; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802CACEC; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802CACF8; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802CAD14; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802CAD30; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802CAD3C; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802CAD58; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802CAD74; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802CAD80; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802CAD9C; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802CADB4; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802CADC0; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802CADDC; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802CADF8; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802CAE04; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802CAE20; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802CAE34; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802CAE6C; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802CAE84; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802CAE90; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802CAEAC; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802CAED0; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802CAEDC; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802CAEF8; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802CAF0C; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802CAF1C; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802CAF28; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802CAF34; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802CAF48; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802CAF70; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802CAF80; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802CAFC4; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802CAFDC; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802CAFE8; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802CAFF4; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802CB008; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802CB018; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802CB034; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802CB058; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802CB088; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802CB0A0; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802CB0C4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB0F8; // type:label scope:local +@1765 = .data:0x802CB0F8; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802CB104; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802CB11C; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802CB140; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802CB150; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802CB16C; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802CB178; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802CB184; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802CB1A0; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802CB1BC; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802CB1C8; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802CB1E4; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802CB1FC; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802CB208; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802CB224; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802CB240; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802CB24C; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802CB268; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802CB27C; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802CB288; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802CB2A4; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802CB2BC; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802CB2C8; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802CB2E4; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802CB2FC; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802CB30C; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802CB318; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802CB32C; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802CB340; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802CB35C; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802CB378; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802CB38C; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802CB39C; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802CB3B0; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802CB3CC; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802CB3E8; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802CB3FC; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802CB410; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802CB42C; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802CB440; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802CB44C; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802CB45C; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802CB468; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802CB488; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802CB49C; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802CB4D4; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802CB4E4; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802CB4F4; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802CB500; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802CB50C; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802CB520; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802CB564; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802CB578; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802CB584; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802CB590; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802CB5A4; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802CB5B4; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802CB5D0; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802CB5F4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB628; // type:label scope:local +@1680 = .data:0x802CB628; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802CB640; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802CB654; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802CB668; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802CB674; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802CB680; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802CB69C; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802CB6AC; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802CB6B8; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802CB6D4; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802CB6E8; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802CB6F4; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802CB710; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802CB728; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802CB734; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802CB750; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802CB764; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802CB770; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802CB78C; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802CB7A0; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802CB7AC; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802CB7C8; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802CB7DC; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802CB7E8; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802CB7F8; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802CB804; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802CB83C; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802CB85C; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802CB868; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802CB884; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802CB8A4; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802CB8B0; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802CB8CC; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802CB8E0; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802CB8F0; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802CB8FC; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802CB910; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802CB92C; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802CB958; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802CB964; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802CB980; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802CB99C; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802CB9A8; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802CB9C4; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802CB9D4; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802CB9E0; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802CB9FC; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802CBA14; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802CBA20; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802CBA3C; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802CBA54; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802CBA60; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CBA7C; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802CBA98; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802CBAA4; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CBAC0; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802CBAD0; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802CBAE4; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802CBB00; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802CBB1C; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802CBB28; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802CBB44; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802CBB58; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802CBB64; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802CBB80; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802CBB94; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802CBBA0; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802CBBBC; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802CBBCC; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802CBBD8; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802CBBF4; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802CBC08; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802CBC14; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802CBC30; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802CBC44; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802CBC50; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802CBC6C; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802CBC7C; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802CBC88; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CBCA8; // type:label scope:local +@1727 = .data:0x802CBCA8; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802CBCB8; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802CBCC4; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802CBCD4; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802CBCE8; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802CBD00; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802CBD24; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802CBD44; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802CBD58; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802CBD7C; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802CBD88; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802CBD9C; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802CBDA8; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802CBDC0; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802CBDD4; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802CBDF0; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802CBE10; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802CBE2C; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802CBE48; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802CBE68; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802CBE80; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802CBE8C; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802CBEA8; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802CBEC0; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802CBECC; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802CBEE8; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802CBF08; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802CBF14; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802CBF30; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802CBF44; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802CBF50; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802CBF60; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802CBF6C; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802CBF8C; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802CBFC4; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802CBFE0; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802CBFF0; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802CBFFC; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802CC010; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802CC02C; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802CC040; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802CC078; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802CC090; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802CC0AC; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802CC0C0; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802CC0DC; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802CC0FC; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802CC11C; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802CC128; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802CC144; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802CC158; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802CC168; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802CC174; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802CC180; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802CC194; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802CC1BC; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802CC1CC; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802CC210; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802CC22C; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802CC238; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802CC244; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802CC258; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802CC268; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802CC284; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802CC2A8; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802CC2D8; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802CC2F0; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802CC314; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CC348; // type:label scope:local +@1769 = .data:0x802CC348; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802CC358; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802CC364; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802CC378; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802CC388; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802CC3A4; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802CC3B0; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802CC3BC; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802CC3D8; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802CC3EC; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802CC3FC; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802CC408; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802CC414; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802CC428; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802CC450; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802CC468; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802CC474; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802CC480; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802CC494; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802CC4A4; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802CC4C0; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802CC4E4; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802CC514; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802CC528; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802CC54C; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802CC57C; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802CC5B4; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802CC5C8; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802CC5D4; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802CC5E4; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802CC5F0; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802CC610; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802CC624; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802CC644; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802CC658; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802CC664; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802CC698; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802CC6B8; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802CC6C4; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802CC6E0; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802CC700; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802CC70C; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802CC728; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802CC744; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802CC750; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802CC76C; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802CC780; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802CC794; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802CC7BC; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802CC7CC; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802CC810; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802CC824; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802CC848; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CC878; // type:label scope:local +@1669 = .data:0x802CC878; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802CC88C; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802CC89C; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802CC8B4; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802CC8C0; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802CC8D0; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802CC8DC; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802CC8F0; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CC90C; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802CC924; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802CC930; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802CC94C; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802CC960; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802CC96C; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802CC988; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CC9A8; // type:label scope:local +@1669 = .data:0x802CC9A8; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CC9BC; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802CC9CC; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802CC9E4; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802CC9F0; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802CCA00; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802CCA0C; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802CCA20; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCA40; // type:label scope:local +@1106 = .data:0x802CCA40; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802CCA4C; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802CCA58; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802CCA6C; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802CCA78; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802CCA88; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802CCA94; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802CCAA8; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802CCAD4; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802CCB08; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802CCB44; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802CCB88; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802CCD98; // type:label scope:local +@1206 = .data:0x802CCD98; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802CCDB4; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802CCDCC; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802CCDE4; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802CCDF0; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802CCDFC; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802CCE10; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802CCE2C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CCE78; // type:label scope:local +@1787 = .data:0x802CCE78; // type:object size:0xE scope:local align:4 data:string +@4669 = .data:0x802CCE88; // type:object size:0x11 scope:local align:4 data:string +@4671 = .data:0x802CCE9C; // type:object size:0xA scope:local align:4 data:string +@4672 = .data:0x802CCEA8; // type:object size:0xE scope:local align:4 data:string +@4673 = .data:0x802CCEB8; // type:object size:0xC scope:local align:4 +@4670 = .data:0x802CCEC4; // type:object size:0x14 scope:local align:4 +@4675 = .data:0x802CCEE4; // type:object size:0x11 scope:local align:4 data:string +@4676 = .data:0x802CCEF8; // type:object size:0x14 scope:local align:4 +@4680 = .data:0x802CCF18; // type:object size:0xC scope:local align:4 data:string +@4689 = .data:0x802CCF68; // type:object size:0xC scope:local align:4 data:string +@4691 = .data:0x802CCF74; // type:object size:0x9 scope:local align:4 data:string +@4690 = .data:0x802CCF80; // type:object size:0xC scope:local align:4 +@4692 = .data:0x802CCFA0; // type:object size:0xD scope:local align:4 data:string +@4694 = .data:0x802CCFBC; // type:object size:0x11 scope:local align:4 data:string +@4696 = .data:0x802CCFD0; // type:object size:0xC scope:local align:4 data:string +@4695 = .data:0x802CCFDC; // type:object size:0xC scope:local align:4 +@4703 = .data:0x802CD008; // type:object size:0xB scope:local align:4 data:string +@4711 = .data:0x802CD048; // type:object size:0x14 scope:local align:4 data:string +@4714 = .data:0x802CD068; // type:object size:0xC scope:local align:4 data:string +@4715 = .data:0x802CD074; // type:object size:0xD scope:local align:4 data:string +@4716 = .data:0x802CD084; // type:object size:0x9 scope:local align:4 data:string +@4717 = .data:0x802CD090; // type:object size:0x14 scope:local align:4 +@4713 = .data:0x802CD0A4; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802CD0D0; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802CD2D0; // type:label scope:local +@1379 = .data:0x802CD2D0; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802CD2E4; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802CD2F4; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802CD308; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802CD314; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802CD324; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802CD330; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802CD344; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802CD350; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802CD364; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802CD384; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802CD398; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802CD3D0; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802CD3E4; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802CD3F8; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802CD404; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802CD420; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802CD434; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802CD440; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802CD458; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802CD46C; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802CD478; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802CD490; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802CD4A4; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802CD4B0; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802CD4C8; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802CD4DC; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802CD4E8; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802CD500; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802CD514; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802CD520; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802CD53C; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802CD550; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802CD55C; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802CD574; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802CD588; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802CD594; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802CD5B4; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802CD5C8; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802CD5D4; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802CD5F0; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802CD604; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802CD610; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802CD628; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802CD63C; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802CD648; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802CD66C; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802CD680; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802CD68C; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802CD6B0; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802CD6C4; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802CD6D0; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802CD6F0; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802CD704; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802CD710; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802CD724; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802CD738; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802CD744; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802CD75C; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802CD770; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802CD77C; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802CD790; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802CD7A4; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802CD7B0; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802CD7C4; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802CD7D8; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802CD7E4; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802CD7F8; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802CD80C; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802CD818; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802CD82C; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802CD840; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802CD84C; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802CD864; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802CD878; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CD888; // type:label scope:local +@1411 = .data:0x802CD888; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802CD89C; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802CD8AC; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802CD8C0; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802CD8CC; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802CD8D8; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802CD930; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802CD940; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802CD94C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802CD978; // type:label scope:local +@1206 = .data:0x802CD978; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802CD984; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802CD990; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802CD99C; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802CD9A8; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802CDA34; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802CDAC0; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802CDAD0; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802CDADC; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802CDAEC; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802CDAFC; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802CDB10; // type:object size:0x10 scope:local align:4 data:string +@1520 = .data:0x802CDB20; // type:object size:0x9 scope:local align:4 data:string +@1521 = .data:0x802CDB2C; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802CDB38; // type:object size:0x14 scope:local align:4 +@1524 = .data:0x802CDB4C; // type:object size:0xC scope:local align:4 data:string +@1525 = .data:0x802CDB58; // type:object size:0xA scope:local align:4 data:string +@1526 = .data:0x802CDB64; // type:object size:0x24 scope:local align:4 +@1527 = .data:0x802CDB88; // type:object size:0xE scope:local align:4 data:string +@1528 = .data:0x802CDB98; // type:object size:0x2C scope:local align:4 +@1518 = .data:0x802CDBC4; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802CDBF8; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802CDC80; // type:label scope:local +@1206 = .data:0x802CDC80; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802CDC90; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802CDC9C; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802CDCA8; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802CDCBC; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802CDCC8; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802CDCD8; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802CDCE4; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802CDCF8; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802CDD24; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802CDD58; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802CDF68; // type:label scope:local +@991 = .data:0x802CDF68; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802CDF7C; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802CDF8C; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802CDF98; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802CDFA4; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802CDFB4; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802CDFC0; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802CDFCC; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802CDFDC; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802CDFF0; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802CDFFC; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802CE008; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802CE018; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802CE02C; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802CE040; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802CE054; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802CE06C; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802CE084; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802CE09C; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802CE0B4; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802CE0CC; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802CE0E4; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802CE0F8; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802CE108; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802CE118; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802CE128; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802CE138; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802CE148; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802CE15C; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802CE170; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802CE180; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802CE194; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802CE1A4; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802CE1B8; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802CE1CC; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802CE1E4; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802CE1FC; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802CE210; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802CE21C; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802CE22C; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802CE238; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802CE248; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802CE258; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802CE268; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802CE278; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802CE284; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802CE294; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802CE2A0; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802CE2B0; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802CE2C0; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802CE2D8; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802CE2F0; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802CE304; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802CE318; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802CE32C; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802CE340; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802CE354; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802CE368; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802CE374; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802CE398; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802CE3B8; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802CE3D4; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802CE3F0; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802CE404; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802CE418; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802CE424; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802CE438; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802CE44C; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802CE460; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802CE474; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802CE484; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802CE490; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802CE49C; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802CE4B0; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802CE4CC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CE518; // type:label scope:local +@991 = .data:0x802CE518; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802CE52C; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802CE53C; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802CE550; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802CE564; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802CE574; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802CE584; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802CE590; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802CE59C; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802CE5AC; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802CE5CC; // type:object size:0x1D scope:local align:4 data:string +@1200 = .data:0x802CE5EC; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802CE5FC; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802CE610; // type:label scope:local +@1106 = .data:0x802CE610; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802CE624; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802CE634; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802CE644; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802CE670; // type:label scope:local +@1022 = .data:0x802CE670; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802CE67C; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802CE688; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802CE694; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802CE6A0; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802CE6B0; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802CE6BC; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802CE6C8; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802CE6D4; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802CE6E8; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802CE704; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CE740; // type:label scope:local +@1543 = .data:0x802CE740; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802CE74C; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802CE76C; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802CE778; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802CE788; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802CE794; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802CE7A8; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802CE7C4; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802CE8E8; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802CE900; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802CE938; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802CE944; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802CE950; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802CE970; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802CE97C; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802CE98C; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802CE998; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802CE9A4; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802CE9B0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802CE9E0; // type:label scope:local +@388 = .data:0x802CE9E0; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802CE9F0; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802CE9FC; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802CEA14; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802CEA20; // type:object size:0xC scope:local align:4 +@411 = .data:0x802CEA2C; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802CEA40; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802CEA5C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CEAA8; // type:label scope:local +@856 = .data:0x802CEAA8; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802CEAB4; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802CEAC4; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802CEAD0; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802CEADC; // type:object size:0xC scope:global align:4 +@927 = .data:0x802CEAE8; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802CEAFC; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802CEB08; // type:object size:0xC scope:global align:4 +@929 = .data:0x802CEB14; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802CEB28; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802CEB34; // type:object size:0xC scope:global align:4 +@931 = .data:0x802CEB40; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802CEB50; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802CEB5C; // type:object size:0xC scope:global align:4 +@933 = .data:0x802CEB68; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802CEB74; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802CEB80; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CEB90; // type:label scope:local +@1828 = .data:0x802CEB90; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802CEB9C; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802CEBA8; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802CEBB8; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802CEBD0; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802CEBDC; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802CEBE8; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802CEBF8; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802CEC04; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802CEC10; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802CEC28; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802CEC34; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802CEC40; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802CEC50; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802CEC5C; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802CEC74; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802CEC80; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802CEC8C; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802CEC9C; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802CECAC; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802CECC8; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802CECD8; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802CECE8; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802CECF8; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802CED0C; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802CED24; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802CED38; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802CED4C; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802CED5C; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802CED68; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802CED80; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802CED8C; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802CED98; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802CEDA8; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802CEDB8; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802CEDD4; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802CEDE0; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802CEDEC; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802CEDFC; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802CEE08; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802CEE1C; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802CEE28; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802CEE34; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802CEE40; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802CEE50; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802CEE70; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802CEE80; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802CEE8C; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802CEE9C; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802CEEB0; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802CEEBC; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802CEED4; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802CEEE0; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802CEEEC; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802CEEFC; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802CEF2C; // type:object size:0x28 scope:local align:4 +@2887 = .data:0x802CEF54; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802CEF60; // type:object size:0xC scope:local align:4 +@2888 = .data:0x802CEF6C; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802CEF80; // type:object size:0x10 scope:weak align:4 +@2893 = .data:0x802CEFAC; // type:object size:0xC scope:local align:4 data:string +@2896 = .data:0x802CEFD0; // type:object size:0x14 scope:local align:4 +@2897 = .data:0x802CEFE4; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802CEFF0; // type:object size:0x24 scope:local align:4 +@2894 = .data:0x802CF014; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802CF040; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802CF0B8; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802CF0D0; // type:label scope:local +@1113 = .data:0x802CF0D0; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802CF0DC; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x802CF0E8; // type:object size:0xD scope:local align:4 data:string +@1701 = .data:0x802CF0F8; // type:object size:0xC scope:local align:4 +@1703 = .data:0x802CF104; // type:object size:0x14 scope:local align:4 +@1699 = .data:0x802CF118; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802CF134; // type:object size:0x30 scope:global align:4 +@1712 = .data:0x802CF164; // type:object size:0xC scope:local align:4 data:string +@1713 = .data:0x802CF170; // type:object size:0xD scope:local align:4 data:string +@1714 = .data:0x802CF180; // type:object size:0x9 scope:local align:4 data:string +@1715 = .data:0x802CF18C; // type:object size:0x14 scope:local align:4 +@1717 = .data:0x802CF1A0; // type:object size:0x1C scope:local align:4 +@1711 = .data:0x802CF1BC; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802CF1E0; // type:object size:0x124 scope:global align:4 +@1770 = .data:0x802CF304; // type:object size:0xA scope:local align:4 data:string +@1772 = .data:0x802CF310; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x802CF31C; // type:object size:0xC scope:local align:4 +@1773 = .data:0x802CF33C; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802CF348; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802CF368; // type:object size:0xB scope:local align:4 data:string +@1777 = .data:0x802CF374; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x802CF384; // type:object size:0x9 scope:local align:4 data:string +@1779 = .data:0x802CF390; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802CF39C; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802CF3C0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CF3F8; // type:label scope:local +spiderSE = .data:0x802CF3F8; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802CF40C; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802CF41C; // type:object size:0x9 scope:local align:4 data:string +@3168 = .data:0x802CF428; // type:object size:0x24 scope:local align:4 +@3173 = .data:0x802CF44C; // type:object size:0x14 scope:local align:4 data:string +@3172 = .data:0x802CF460; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802CF46C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CF488; // type:label scope:local +leg_index__4Kumo = .data:0x802CF488; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802CF4B8; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802CF4DC; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802CF4EC; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802CF4F8; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802CF530; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802CF550; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802CF57C; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802CF588; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802CF594; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802CF5AC; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802CF5B8; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802CF5C4; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802CF5DC; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802CF5E8; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CF600; // type:label scope:local +@1109 = .data:0x802CF600; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802CF60C; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802CF618; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802CF624; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802CF634; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802CF640; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802CF654; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802CF670; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802CF694; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802CF7B8; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802CF7D4; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802CF7E4; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802CF7F0; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802CF800; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802CF810; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802CF81C; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802CF828; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802CF848; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802CF854; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802CF874; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802CF880; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802CF88C; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802CF89C; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802CF8A8; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802CF8B4; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802CF8D8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CF910; // type:label scope:local +snakeSE = .data:0x802CF910; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802CF934; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802CF940; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802CF968; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802CF9A0; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802CF9B4; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802CF9C0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CF9D8; // type:label scope:local +@1221 = .data:0x802CF9D8; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802CF9E8; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802CF9F4; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802CFA10; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802CFA3C; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802CFA48; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802CFA54; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802CFA74; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802CFA80; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CFA98; // type:label scope:local +@1171 = .data:0x802CFA98; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802CFAA4; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802CFAB0; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802CFAE8; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802CFAF4; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802CFB04; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802CFB10; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802CFB24; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802CFB40; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802CFB64; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802CFC88; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802CFCA4; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802CFCB4; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802CFCC0; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802CFCD0; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802CFCEC; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802CFCF8; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802CFD08; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802CFD24; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802CFD30; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802CFD50; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802CFD5C; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802CFD68; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802CFD88; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802CFD94; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802CFDB4; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802CFDC0; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802CFDCC; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802CFDDC; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802CFDE8; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802CFDF4; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802CFE18; // type:object size:0x1C scope:weak align:4 +@6098 = .data:0x802CFE50; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802CFE78; // type:label scope:local +@979 = .data:0x802CFE78; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802CFE8C; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802CFE9C; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802CFEA8; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802CFEB8; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802CFEC4; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802CFED8; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802CFEF4; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D0008; // type:label scope:local +@1080 = .data:0x802D0008; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D0014; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D0020; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D002C; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D0038; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D004C; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D0068; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D0098; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D00A4; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D00B4; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D00C0; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D00D4; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D00F0; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D0114; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D0238; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D0244; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D0250; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D0270; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D027C; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D029C; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D02A8; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D02B8; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D02C4; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D02D0; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D02F4; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D0330; // type:label scope:local +kingSE = .data:0x802D0330; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D0368; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D0374; // type:object size:0x24 scope:local align:4 +@1783 = .data:0x802D0398; // type:object size:0x40 scope:local align:4 +@6169 = .data:0x802D03D8; // type:object size:0x44 scope:local align:4 +@6170 = .data:0x802D041C; // type:object size:0xC scope:local align:4 data:string +@6181 = .data:0x802D0454; // type:object size:0x14 scope:local align:4 data:string +@6180 = .data:0x802D0468; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D0474; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D0490; // type:label scope:local +@1229 = .data:0x802D0490; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D04A0; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D04AC; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D04C4; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D04F0; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D04FC; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D0508; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D0520; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D052C; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D0538; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D055C; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D059C; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D05A8; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D05B4; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D05D0; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D05DC; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D05E8; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D0608; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D0614; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D062C; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D0648; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D0654; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D0670; // type:label scope:local +@1251 = .data:0x802D0670; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D067C; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D0688; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D0694; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D06A4; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D06B0; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D06C4; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D06E0; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D0704; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D0828; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D0834; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D0840; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D0860; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D086C; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D0878; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D0888; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D0894; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D08A0; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D08C4; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D0900; // type:label scope:local +@1603 = .data:0x802D0900; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D0910; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D091C; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D0938; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D094C; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D0958; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D0964; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D097C; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D09A8; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D09B4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D09D8; // type:label scope:local +@995 = .data:0x802D09D8; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D09E4; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D09F0; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D0A00; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D0A0C; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D0A20; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D0A3C; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D0A60; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802D0B84; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802D0B90; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802D0B9C; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802D0BBC; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802D0BC8; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802D0BE8; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802D0BF4; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802D0C04; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802D0C10; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802D0C1C; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802D0C40; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D0C78; // type:label scope:local +pomSE = .data:0x802D0C78; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802D0C90; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802D0C9C; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802D0CD4; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802D0CE8; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802D0CF4; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802D0D00; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802D0D18; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802D0D44; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802D0D50; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D0D78; // type:label scope:local +@910 = .data:0x802D0D78; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802D0D88; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802D0D94; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802D0DA0; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802D0DAC; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802D0DBC; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802D0DC8; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802D0DDC; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802D0DF8; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802D0E1C; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802D0F40; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802D0F50; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802D0F5C; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802D0F6C; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802D0F78; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802D0F84; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802D0FA8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D0FE0; // type:label scope:local +@1053 = .data:0x802D0FE0; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802D0FEC; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802D0FF8; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802D1004; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802D1014; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802D1020; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802D1034; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802D1050; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802D1074; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802D1198; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802D11A4; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802D11B0; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802D11C0; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802D11CC; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802D11D8; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802D11FC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D1238; // type:label scope:local +@1668 = .data:0x802D1238; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802D1248; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802D1254; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802D1268; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802D1274; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D1290; // type:label scope:local +@1334 = .data:0x802D1290; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802D12A0; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802D12AC; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802D12B8; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802D12C4; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802D12D4; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802D12E0; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802D12F4; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802D1310; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802D1334; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802D1458; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802D1468; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802D1474; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802D1484; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802D1490; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D149C; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802D14C0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D14F8; // type:label scope:local +@1668 = .data:0x802D14F8; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802D150C; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802D151C; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802D1530; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802D153C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D1558; // type:label scope:local +@964 = .data:0x802D1558; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802D1564; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802D1570; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D157C; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D158C; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D1598; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802D15AC; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802D15C8; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802D15EC; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802D1710; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802D171C; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802D1728; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802D1738; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802D1744; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802D1750; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802D1774; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D17B0; // type:label scope:local +@1288 = .data:0x802D17B0; // type:object size:0xB scope:local align:4 data:string +@1730 = .data:0x802D17BC; // type:object size:0xC scope:local align:4 data:string +@1741 = .data:0x802D17F4; // type:object size:0x14 scope:local align:4 data:string +@1740 = .data:0x802D1808; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802D1814; // type:object size:0xC scope:global align:4 +@1742 = .data:0x802D1820; // type:object size:0x1A scope:local align:4 data:string +@1744 = .data:0x802D183C; // type:object size:0x29 scope:local align:4 data:string +@1743 = .data:0x802D1868; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802D1874; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D1898; // type:label scope:local +patternTable = .data:0x802D1898; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802D1918; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802D1944; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802D1970; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802D19D0; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802D1A30; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802D1A44; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802D1A58; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802D1AC8; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802D1B38; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802D1B50; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802D1B68; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802D1BBC; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802D1C10; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802D1C60; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802D1CB0; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802D1D00; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802D1D50; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802D1D78; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802D1DA0; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802D1DCC; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802D1DF8; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802D1E10; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802D1E28; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802D1E60; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802D1E98; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802D1EFC; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802D1F60; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802D1F98; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802D1FD0; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802D1FF0; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802D2010; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802D2028; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802D2040; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802D20AC; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802D2118; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802D21B0; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802D2248; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802D2284; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802D22C0; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802D22CC; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802D22D8; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802D23C8; // type:label scope:local +@877 = .data:0x802D23C8; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802D23D4; // type:object size:0xE scope:local align:4 data:string +@976 = .data:0x802D23E4; // type:object size:0xD scope:local align:4 data:string +@977 = .data:0x802D23F4; // type:object size:0xD scope:local align:4 data:string +@978 = .data:0x802D2404; // type:object size:0xC scope:local align:4 data:string +@1095 = .data:0x802D2410; // type:object size:0x30 scope:local align:4 +@1187 = .data:0x802D2440; // type:object size:0x1B scope:local align:4 +@1188 = .data:0x802D245C; // type:object size:0xE scope:local align:4 +@1189 = .data:0x802D246C; // type:object size:0x14 scope:local align:4 +@1190 = .data:0x802D2480; // type:object size:0x14 scope:local align:4 +@1191 = .data:0x802D2494; // type:object size:0xC scope:local align:4 +@1192 = .data:0x802D24A0; // type:object size:0x15 scope:local align:4 +@1193 = .data:0x802D24B8; // type:object size:0x17 scope:local align:4 +@1194 = .data:0x802D24D0; // type:object size:0xA scope:local align:4 +@1195 = .data:0x802D24DC; // type:object size:0x9 scope:local align:4 +@1196 = .data:0x802D24E8; // type:object size:0xC scope:local align:4 +@1197 = .data:0x802D24F4; // type:object size:0xD scope:local align:4 +@1198 = .data:0x802D2504; // type:object size:0x9 scope:local align:4 +@1200 = .data:0x802D2510; // type:object size:0x26 scope:local align:4 +@1210 = .data:0x802D2538; // type:object size:0x10 scope:local align:4 data:string +@1221 = .data:0x802D2548; // type:object size:0x13 scope:local align:4 data:string +@1224 = .data:0x802D255C; // type:object size:0x9 scope:local align:4 data:string +@1225 = .data:0x802D2568; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802D2574; // type:object size:0x14 scope:local align:4 +@1229 = .data:0x802D2588; // type:object size:0x1C scope:local align:4 +@1222 = .data:0x802D25A4; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802D25C8; // type:object size:0x34 scope:global align:4 +@1237 = .data:0x802D2630; // type:object size:0x12 scope:local align:4 data:string +@1238 = .data:0x802D2644; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802D2660; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D26B0; // type:label scope:local +@890 = .data:0x802D26B0; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802D26BC; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802D26CC; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802D2ACC; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802D2BCC; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802D2CCC; // type:object size:0x190 scope:local align:4 +@1559 = .data:0x802D2E5C; // type:object size:0x19 scope:local align:4 data:string +@1735 = .data:0x802D2E78; // type:object size:0x1C scope:local align:4 data:string +@1737 = .data:0x802D2E94; // type:object size:0xF scope:local align:4 data:string +@1738 = .data:0x802D2EA4; // type:object size:0x14 scope:local align:4 data:string +@1739 = .data:0x802D2EB8; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D2EC4; // type:object size:0x14 scope:local align:4 data:string +@1741 = .data:0x802D2ED8; // type:object size:0x1A scope:local align:4 data:string +@1742 = .data:0x802D2EF4; // type:object size:0x10 scope:local align:4 data:string +@1743 = .data:0x802D2F04; // type:object size:0x14 scope:local align:4 +@1736 = .data:0x802D2F18; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802D2F44; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802D2F54; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802D2F64; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D2F70; // type:label scope:local +@890 = .data:0x802D2F70; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802D2F7C; // type:object size:0xF scope:local align:4 data:string +@1015 = .data:0x802D2F8C; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D2FA4; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802D2FBC; // type:object size:0x16 scope:local align:4 data:string +@1018 = .data:0x802D2FD4; // type:object size:0x18 scope:local align:4 data:string +@1019 = .data:0x802D2FEC; // type:object size:0x18 scope:local align:4 data:string +@1020 = .data:0x802D3004; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D3020; // type:label scope:local +@1133 = .data:0x802D3020; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D302C; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802D303C; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802D3054; // type:object size:0x15 scope:local align:4 data:string +@1190 = .data:0x802D306C; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802D3088; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D30A0; // type:label scope:local +@1133 = .data:0x802D30A0; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802D30B4; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802D30C8; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802D30E0; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802D30F8; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802D3104; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D311C; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D3134; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D314C; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D3164; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D317C; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802D3194; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802D31A4; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D31BC; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D31D4; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D31EC; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802D3204; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802D3210; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D3228; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D3240; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802D3258; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802D3270; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D3288; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802D32A0; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D32B8; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802D32D0; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D32E8; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802D3300; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802D3318; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802D3334; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802D3350; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802D335C; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802D3374; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D338C; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D33A4; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D33BC; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D33D4; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D33EC; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D3404; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D341C; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D3434; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802D3450; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802D346C; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802D3478; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802D3494; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802D34B0; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802D34CC; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802D34DC; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D34F4; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D350C; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D3524; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D353C; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D3554; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802D356C; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802D3584; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802D359C; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802D35B4; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802D35CC; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802D35E4; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802D35FC; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802D3614; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802D362C; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802D3644; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802D365C; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802D3674; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802D368C; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802D36A4; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802D36BC; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802D36D4; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802D36EC; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802D3704; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802D371C; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802D3734; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D374C; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D3764; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D377C; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D3794; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802D37AC; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802D37C4; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802D37DC; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802D37F4; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802D380C; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802D3824; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802D383C; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802D3854; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802D386C; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802D3884; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802D389C; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802D38B4; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802D38CC; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802D38E4; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802D38FC; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802D3914; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D392C; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D3944; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D395C; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D3974; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D398C; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D39A4; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D39BC; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D39D4; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D39EC; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D3A04; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802D3A1C; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802D3A34; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802D3A4C; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802D3A64; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802D3A70; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802D3A7C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802D3A88; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802D3A94; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802D3AA0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802D3AAC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802D3AB8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802D3AC4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802D3AD0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802D3ADC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802D3AE8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802D3AF4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802D3B00; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802D3B0C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802D3B18; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802D3B24; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802D3B30; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802D3B3C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802D3B48; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802D3B54; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802D3B60; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802D3B6C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802D3B78; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802D3B84; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802D3B90; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802D3B9C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802D3BA8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802D3BB4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802D3BC0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802D3BCC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802D3BD8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802D3BE4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802D3BF0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802D3BFC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802D3C08; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802D3C14; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802D3C20; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802D3C2C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802D3C38; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802D3C44; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802D3C50; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802D3C5C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802D3C68; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802D3C74; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802D3C80; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802D3C8C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802D3C98; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802D3CA4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802D3CB0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802D3CBC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802D3CC8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802D3CD4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802D3CE0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802D3CEC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802D3CF8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802D3D04; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802D3D10; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802D3D1C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802D3D28; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802D3D34; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802D3D4C; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802D3FB8; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802D3FCC; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D3FE8; // type:label scope:local +@1133 = .data:0x802D3FE8; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802D3FF8; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802D4008; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802D4020; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802D4038; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D4050; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D4068; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D4080; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D4098; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D40B0; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802D40C8; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D40E0; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D40F8; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D4110; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802D4128; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D4140; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D4158; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802D4170; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802D4188; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802D41A0; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802D41B8; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802D41D0; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802D41E8; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802D4200; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802D4218; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802D4230; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802D4248; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802D4260; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802D4278; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D4290; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D42A8; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D42C0; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D42D8; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D42F0; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D4308; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D4320; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D4338; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802D4350; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802D4368; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802D4380; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802D4398; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802D43B0; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D43C8; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D43E0; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D43F8; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D4410; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D4428; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802D4440; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802D4458; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802D4470; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802D4488; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802D44A0; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802D44B8; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802D44D0; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802D44E8; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802D4500; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802D4518; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802D4530; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802D4548; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802D4560; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802D4578; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802D4590; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802D45A8; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802D45C0; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802D45D8; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802D45F0; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802D4608; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802D4620; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D4638; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D4650; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D4668; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802D4680; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802D4698; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802D46B0; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802D46C8; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802D46E0; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802D46F8; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802D4710; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802D4728; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802D4740; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802D4758; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802D4770; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802D4788; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802D47A0; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802D47B8; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802D47D0; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802D47E8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D4800; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D4818; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D4830; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D4848; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D4860; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D4878; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D4890; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D48A8; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D48C0; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D48D8; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802D48F0; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802D4908; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802D4920; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802D4938; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802D4950; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802D4968; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802D4980; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802D4998; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802D49B0; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802D49C8; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802D49E0; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802D49F8; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802D4A10; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802D4A28; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802D4A40; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802D4A58; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802D4A70; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802D4A88; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802D4AA0; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802D4AB8; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802D4AD0; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802D4AE8; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802D4B00; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802D4B18; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802D4B30; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802D4B48; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802D4B60; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802D4B78; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802D4B90; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802D4BA8; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802D4BC0; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802D4BD8; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802D4BF0; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802D4C08; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802D4C20; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D4C38; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802D4C50; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802D4C68; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802D4C80; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802D4C98; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802D4CB0; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802D4CC8; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802D4CE0; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802D4CF8; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802D4D10; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802D4D28; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802D4D40; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802D4D58; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802D4D70; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802D4FC4; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802D4FCC; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802D4FE4; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802D4FFC; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D5018; // type:label scope:local +@1767 = .data:0x802D5018; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802D5024; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802D5034; // type:object size:0x3C scope:local align:4 +@2034 = .data:0x802D5070; // type:object size:0x17 scope:local align:4 data:string +@2035 = .data:0x802D5088; // type:object size:0x17 scope:local align:4 data:string +@2036 = .data:0x802D50A0; // type:object size:0x17 scope:local align:4 data:string +@2037 = .data:0x802D50B8; // type:object size:0x17 scope:local align:4 data:string +@2038 = .data:0x802D50D0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D50E8; // type:label scope:local +@890 = .data:0x802D50E8; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802D50FC; // type:object size:0x14 scope:local align:4 data:string +@1461 = .data:0x802D5110; // type:object size:0x38 scope:local align:4 +@1701 = .data:0x802D5148; // type:object size:0x15 scope:local align:4 data:string +@1702 = .data:0x802D5160; // type:object size:0x15 scope:local align:4 data:string +@1703 = .data:0x802D5178; // type:object size:0x15 scope:local align:4 data:string +@1704 = .data:0x802D5190; // type:object size:0x17 scope:local align:4 data:string +@1705 = .data:0x802D51A8; // type:object size:0x17 scope:local align:4 data:string +@1706 = .data:0x802D51C0; // type:object size:0x17 scope:local align:4 data:string +@1707 = .data:0x802D51D8; // type:object size:0x17 scope:local align:4 data:string +@1708 = .data:0x802D51F0; // type:object size:0x17 scope:local align:4 data:string +@1709 = .data:0x802D5208; // type:object size:0x16 scope:local align:4 data:string +@1710 = .data:0x802D5220; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D5240; // type:label scope:local +sjis_convert_table = .data:0x802D5240; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x802D5700; // type:object size:0x499 scope:local align:32 +@1819 = .data:0x802D5B9C; // type:object size:0xE scope:local align:4 data:string +@1829 = .data:0x802D5BAC; // type:object size:0x11 scope:local align:4 data:string +@1991 = .data:0x802D5BC0; // type:object size:0x33 scope:local align:4 data:string +@2068 = .data:0x802D5BF4; // type:object size:0xC scope:local align:4 data:string +@2071 = .data:0x802D5C00; // type:object size:0x9 scope:local align:4 data:string +@2072 = .data:0x802D5C0C; // type:object size:0x17 scope:local align:4 +@1027 = .data:0x802D5C28; // type:object size:0x15 scope:local align:4 data:string +@1028 = .data:0x802D5C40; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802D5C58; // type:object size:0x4C scope:local align:4 +@2125 = .data:0x802D5CA4; // type:object size:0x4C scope:local align:4 +@2158 = .data:0x802D5CF0; // type:object size:0x38 scope:local align:4 +@2201 = .data:0x802D5D28; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802D5D48; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802D5D54; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802D5D6C; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802D5D7C; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802D5D94; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802D5DAC; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D5DC8; // type:label scope:local +@1810 = .data:0x802D5DC8; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802D5DD4; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802D5DE4; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802D5E64; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802D5E88; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802D5EAC; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802D5ED0; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802D5EF4; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802D5F0C; // type:object size:0x17 scope:local align:4 data:string +@2274 = .data:0x802D5F24; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802D5F3C; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802D5F54; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802D5F70; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802D5F88; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802D5FA0; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802D5FB8; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D5FD0; // type:label scope:local +@1133 = .data:0x802D5FD0; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802D5FDC; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802D5FEC; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D6004; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802D601C; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802D6034; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802D6080; // type:label scope:local +@1133 = .data:0x802D6080; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D608C; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802D60A0; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802D60E0; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802D6120; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802D6160; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802D6180; // type:object size:0xC scope:local align:32 +@871 = .data:0x802D6190; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D61A8; // type:label scope:local +@749 = .data:0x802D61A8; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802D61B8; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802D61CC; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D61E4; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802D61F8; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802D6214; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802D6224; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802D6238; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802D6254; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D6280; // type:label scope:local +@885 = .data:0x802D6280; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802D6294; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802D62AC; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802D62B8; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D62C4; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802D62E0; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802D62F8; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802D6308; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802D6314; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802D6328; // type:object size:0x11 scope:local align:4 +@1470 = .data:0x802D633C; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802D6350; // type:object size:0xD scope:local align:4 +@1472 = .data:0x802D6360; // type:object size:0xB scope:local align:4 +@1473 = .data:0x802D636C; // type:object size:0x21 scope:local align:4 +@1474 = .data:0x802D6390; // type:object size:0xF scope:local align:4 +@1475 = .data:0x802D63A0; // type:object size:0x1D scope:local align:4 +@1476 = .data:0x802D63C0; // type:object size:0x11 scope:local align:4 +@1477 = .data:0x802D63D4; // type:object size:0xF scope:local align:4 +@1479 = .data:0x802D63E4; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802D63F4; // type:object size:0x15 scope:local align:4 +@1481 = .data:0x802D640C; // type:object size:0xB scope:local align:4 +@1483 = .data:0x802D6418; // type:object size:0xA scope:local align:4 data:string +@1485 = .data:0x802D6424; // type:object size:0x18 scope:local align:4 data:string +@1486 = .data:0x802D643C; // type:object size:0x17 scope:local align:4 data:string +@1487 = .data:0x802D6454; // type:object size:0x16 scope:local align:4 data:string +@1494 = .data:0x802D646C; // type:object size:0x1B scope:local align:4 +@1595 = .data:0x802D6488; // type:object size:0x9 scope:local align:4 data:string +@1596 = .data:0x802D6494; // type:object size:0xC scope:local align:4 +@1600 = .data:0x802D64BC; // type:object size:0x17 scope:local align:4 data:string +@1602 = .data:0x802D64D4; // type:object size:0xD scope:local align:4 data:string +@1601 = .data:0x802D64E4; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802D64F0; // type:object size:0x10 scope:weak align:4 +@1606 = .data:0x802D6500; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802D6510; // type:object size:0xD scope:local align:4 data:string +@1607 = .data:0x802D6520; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802D652C; // type:object size:0x10 scope:weak align:4 +@1618 = .data:0x802D653C; // type:object size:0xC scope:local align:4 data:string +@1619 = .data:0x802D6548; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802D6554; // type:object size:0x10 scope:weak align:4 +@1628 = .data:0x802D6564; // type:object size:0xD scope:local align:4 data:string +@1629 = .data:0x802D6574; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802D6580; // type:object size:0x10 scope:weak align:4 +@1639 = .data:0x802D6590; // type:object size:0x10 scope:local align:4 data:string +@1640 = .data:0x802D65A0; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802D65AC; // type:object size:0x10 scope:weak align:4 +@1649 = .data:0x802D65BC; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802D65CC; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802D65D8; // type:object size:0x10 scope:weak align:4 +@1664 = .data:0x802D65E8; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802D65F8; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802D6604; // type:object size:0x10 scope:weak align:4 +@1678 = .data:0x802D6614; // type:object size:0xE scope:local align:4 data:string +@1679 = .data:0x802D6624; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802D6630; // type:object size:0x10 scope:weak align:4 +@1693 = .data:0x802D6640; // type:object size:0xC scope:local align:4 data:string +@1694 = .data:0x802D664C; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802D6658; // type:object size:0x10 scope:weak align:4 +@1703 = .data:0x802D6668; // type:object size:0xD scope:local align:4 data:string +@1704 = .data:0x802D6678; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802D6684; // type:object size:0x10 scope:weak align:4 +@1713 = .data:0x802D6694; // type:object size:0x13 scope:local align:4 data:string +@1714 = .data:0x802D66A8; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802D66B4; // type:object size:0x10 scope:weak align:4 +@1724 = .data:0x802D66C4; // type:object size:0xC scope:local align:4 data:string +@1725 = .data:0x802D66D0; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802D66DC; // type:object size:0x10 scope:weak align:4 +@1734 = .data:0x802D66EC; // type:object size:0xD scope:local align:4 data:string +@1735 = .data:0x802D66FC; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802D6708; // type:object size:0x10 scope:weak align:4 +@1744 = .data:0x802D6718; // type:object size:0xC scope:local align:4 data:string +@1745 = .data:0x802D6724; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802D6730; // type:object size:0x10 scope:weak align:4 +@1758 = .data:0x802D6740; // type:object size:0x10 scope:local align:4 data:string +@1759 = .data:0x802D6750; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802D675C; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802D676C; // type:object size:0x10 scope:local align:4 data:string +@1769 = .data:0x802D677C; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802D6788; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802D6798; // type:object size:0x10 scope:weak align:4 +@1783 = .data:0x802D67A8; // type:object size:0x29 scope:local align:4 data:string +@1785 = .data:0x802D67D4; // type:object size:0x13 scope:local align:4 data:string +@1784 = .data:0x802D67E8; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802D67F4; // type:object size:0xC scope:weak align:4 +@1786 = .data:0x802D6800; // type:object size:0x18 scope:local align:4 data:string +@1787 = .data:0x802D6818; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802D683C; // type:object size:0x10 scope:weak align:4 +@1789 = .data:0x802D684C; // type:object size:0xA scope:local align:4 data:string +@1791 = .data:0x802D6858; // type:object size:0x9 scope:local align:4 data:string +@1790 = .data:0x802D6864; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D6884; // type:object size:0xC scope:local align:4 data:string +@1793 = .data:0x802D6890; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D68B0; // type:object size:0x14 scope:local align:4 +@1794 = .data:0x802D68C4; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802D68E0; // type:object size:0x30 scope:weak align:4 +@1888 = .data:0x802D6910; // type:object size:0x1C scope:local align:4 +@1886 = .data:0x802D692C; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802D6950; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D69B8; // type:label scope:local +@1486 = .data:0x802D69B8; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802D69CC; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802D69E4; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802D69FC; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802D6A08; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802D6A30; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802D6A44; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802D6A60; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802D6A84; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D6AF0; // type:label scope:local +@749 = .data:0x802D6AF0; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802D6B00; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802D6B14; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802D6B2C; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802D6B38; // type:object size:0xC scope:local align:4 +@779 = .data:0x802D6B60; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802D6B74; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802D6B90; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802D6BB4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D6C20; // type:label scope:local +@787 = .data:0x802D6C20; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802D6C30; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802D6C3C; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802D6C54; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802D6C6C; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802D6C84; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802D6CA0; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802D6CB8; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802D6CD4; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802D6CEC; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802D6D08; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802D6D20; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802D6D3C; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802D6D58; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802D6D70; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802D6D8C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802D6DA4; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802D6DC0; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802D6DDC; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802D6DF4; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802D6E10; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802D6E2C; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802D6E48; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802D6E64; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802D6E7C; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802D6E94; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802D6EB0; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802D6ECC; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802D6EE8; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802D6F00; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802D6F1C; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802D6F38; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802D6F54; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802D6F70; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802D6F8C; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802D6FA4; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802D6FBC; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802D6FD8; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802D6FF4; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802D7010; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802D702C; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802D7048; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802D7064; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802D707C; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802D7098; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802D70B0; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802D70CC; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802D70E4; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802D7100; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802D711C; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802D7138; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802D7150; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802D716C; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802D7184; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802D71A0; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802D71BC; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802D71D8; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802D71F0; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802D720C; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802D7224; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802D7240; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802D725C; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802D7274; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802D728C; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802D72A4; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802D72B8; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802D72CC; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802D72E4; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802D7300; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802D731C; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802D7338; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802D7354; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802D7370; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802D738C; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802D73A4; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802D73BC; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802D73D8; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802D73F4; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802D7410; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802D7428; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802D7444; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802D7460; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802D7478; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802D7494; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802D74AC; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802D74C4; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802D74DC; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802D74F4; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802D750C; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802D7524; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802D753C; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802D7554; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802D756C; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802D7584; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802D759C; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802D75B4; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D75CC; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802D75E8; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802D7604; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802D761C; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802D7634; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802D7650; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802D766C; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802D7684; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802D769C; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802D76B8; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802D76D0; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802D76EC; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802D7704; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802D7720; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802D773C; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802D7758; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802D7774; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802D7790; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802D77AC; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802D77C8; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802D77E4; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802D7800; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802D781C; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802D7834; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802D784C; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802D7864; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802D787C; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802D7894; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802D78AC; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802D78C4; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802D78E0; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802D78FC; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802D7914; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802D792C; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802D7948; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802D7964; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802D7980; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802D799C; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802D79B8; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802D79D4; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802D79EC; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802D7A08; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802D7A24; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802D7A3C; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802D7A58; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802D7A74; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802D7A90; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802D7AA8; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802D7AC4; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802D7AE0; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802D7AFC; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802D7B18; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802D7B34; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802D7B50; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802D7B6C; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802D7B88; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802D7BA4; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802D7BC0; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802D7BDC; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802D7BF8; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802D7C10; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802D7C2C; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802D7C44; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802D7C60; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802D7C7C; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802D7C98; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802D7CB4; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802D7CD0; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802D7CEC; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802D7D08; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802D7D24; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802D7D40; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802D7D5C; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802D7D78; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802D7D94; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802D7DB0; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802D7DC8; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802D7DE4; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802D7E00; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802D7E1C; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802D7E38; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802D7E50; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802D7E68; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802D7E80; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802D7E98; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802D7EB4; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802D7ED0; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802D7EE8; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802D7F00; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802D7F18; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802D7F30; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802D7F4C; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802D7F68; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802D7F84; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802D7F9C; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802D7FB8; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802D7FD0; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802D7FE8; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802D8000; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802D801C; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802D8038; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802D8054; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802D8070; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802D808C; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802D80A4; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802D80BC; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802D80D4; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802D80F0; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802D8108; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802D8124; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802D8140; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802D815C; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802D8178; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802D8194; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802D81AC; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802D81C8; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802D81E4; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802D81FC; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802D8214; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802D822C; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802D8244; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D825C; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802D8278; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802D8294; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802D82B0; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802D82CC; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802D82E8; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802D8304; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802D8320; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802D833C; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802D8350; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802D8368; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802D8380; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802D8398; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802D83B0; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802D83CC; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802D83E4; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802D83FC; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802D8414; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802D8430; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802D844C; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802D8464; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802D847C; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802D8494; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802D84AC; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802D84C8; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802D84E4; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802D84FC; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802D8514; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802D852C; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802D8548; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802D8560; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802D857C; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802D8598; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802D85B4; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802D85CC; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802D85E4; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802D85FC; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802D8614; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802D8630; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802D864C; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802D8668; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802D8684; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802D869C; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802D86B8; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802D86D4; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802D86EC; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802D8704; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802D871C; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802D8734; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802D8750; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802D8768; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802D8780; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802D8798; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802D87B0; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802D87CC; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802D87E4; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802D8800; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802D881C; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802D8838; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802D8854; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802D886C; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802D8884; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802D889C; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802D88B8; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802D88D4; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802D88EC; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802D8908; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802D8924; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802D8940; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802D8958; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802D8970; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802D898C; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802D89A4; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802D89C0; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802D89DC; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802D89F8; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802D8A14; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802D8A30; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802D8A48; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802D8A60; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802D8A7C; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802D8A98; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802D8AB4; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802D8AD0; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802D8AEC; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802D8B08; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802D8B20; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802D8B38; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802D8B50; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802D8B68; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802D8B80; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802D8B98; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802D8BB0; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802D8BC8; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802D8BE0; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802D8BF8; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802D8C10; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802D8C28; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802D8C40; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802D8C5C; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802D8C78; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802D8C90; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802D8CAC; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802D8CC8; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802D8CE4; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802D8D00; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802D8D18; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802D8D30; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802D8D48; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802D8D60; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802D8D7C; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802D8D98; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802D8DB4; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802D8DD0; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802D8DEC; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802D8E04; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802D8E20; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802D8E38; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802D8E50; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802D8E68; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802D8E80; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802D8E9C; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802D8EB8; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802D8ED4; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802D8EEC; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802D8F04; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802D8F1C; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802D8F34; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802D8F4C; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802D8F68; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802D8F84; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802D8F9C; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802D8FB4; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802D8FCC; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802D8FE8; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802D9004; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802D901C; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802D9034; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802D904C; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802D9064; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802D907C; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802D9094; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802D90AC; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802D90C8; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802D90E4; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802D9100; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802D911C; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802D9138; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802D9154; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802D9170; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802D918C; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802D91A8; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802D91C4; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802D91E0; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802D91FC; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802D9214; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802D922C; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802D9244; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802D925C; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802D9274; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802D928C; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802D92A4; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802D92BC; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802D92D8; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802D92F4; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802D930C; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802D9324; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802D933C; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802D9358; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802D9374; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802D9390; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802DA320; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802DA33C; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802DA358; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802DA374; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802DA3A4; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802DA3B0; // type:object size:0xB scope:local align:4 data:string +@1629 = .data:0x802DA3BC; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802DA3C8; // type:object size:0xD scope:local align:4 data:string +@1753 = .data:0x802DA3D8; // type:object size:0xB scope:local align:4 data:string +@1756 = .data:0x802DA3E4; // type:object size:0x9 scope:local align:4 data:string +@1757 = .data:0x802DA3F0; // type:object size:0xC scope:local align:4 +@1754 = .data:0x802DA3FC; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802DA410; // type:object size:0x10 scope:weak align:4 +@1760 = .data:0x802DA420; // type:object size:0xD scope:local align:4 data:string +@1763 = .data:0x802DA440; // type:object size:0xA scope:local align:4 data:string +@1764 = .data:0x802DA44C; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802DA460; // type:object size:0x10 scope:weak align:4 +@1765 = .data:0x802DA470; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802DA48C; // type:object size:0xC scope:global align:4 +@1766 = .data:0x802DA498; // type:object size:0xC scope:local align:4 data:string +@1767 = .data:0x802DA4A4; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802DA4B8; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802DA4C8; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802DA4E4; // type:object size:0xC scope:weak align:4 +@1769 = .data:0x802DA4F0; // type:object size:0xD scope:local align:4 data:string +@1772 = .data:0x802DA500; // type:object size:0x14 scope:local align:4 +@1770 = .data:0x802DA514; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802DA530; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802DA580; // type:label scope:local +@671 = .data:0x802DA580; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802DA598; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802DA5C0; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802DA5F0; // type:object size:0xC scope:local align:4 +@705 = .data:0x802DA5FC; // type:object size:0xC scope:local align:4 +@708 = .data:0x802DA608; // type:object size:0xC scope:local align:4 +@710 = .data:0x802DA614; // type:object size:0xC scope:local align:4 +@712 = .data:0x802DA620; // type:object size:0xC scope:local align:4 +@714 = .data:0x802DA62C; // type:object size:0xC scope:local align:4 +@716 = .data:0x802DA638; // type:object size:0xC scope:local align:4 +@718 = .data:0x802DA644; // type:object size:0xC scope:local align:4 +@720 = .data:0x802DA650; // type:object size:0xC scope:local align:4 +@736 = .data:0x802DA65C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802DA678; // type:label scope:local +@409 = .data:0x802DA678; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802DA68C; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802DA69C; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802DA6AC; // type:object size:0xD scope:local align:4 data:string +@461 = .data:0x802DA6BC; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802DA6C8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DA6E8; // type:label scope:local +ami = .data:0x802DA6E8; // type:object size:0x800 scope:local align:4 +check = .data:0x802DAEE8; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802DB6E8; // type:object size:0x800 scope:local align:4 +marble = .data:0x802DBEE8; // type:object size:0x800 scope:local align:4 +noise = .data:0x802DC6E8; // type:object size:0x800 scope:local align:4 +yura = .data:0x802DCEE8; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802DD6E8; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802DD700; // type:label scope:local +@618 = .data:0x802DD700; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802DD718; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802DD72C; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802DD740; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802DD750; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802DD768; // type:object size:0xC scope:local align:4 +@715 = .data:0x802DD774; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802DD788; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802DD7A8; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802DD7B8; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802DD7D0; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802DD7E4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DD7F8; // type:label scope:local +@1344 = .data:0x802DD7F8; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802DD808; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802DD814; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802DD84C; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802DD858; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802DD86C; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802DD878; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802DD888; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802DD894; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802DD8A8; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802DD8D4; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802DD908; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802DD944; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802DDB44; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802DDB7C; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802DDB9C; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802DDBD0; // type:label scope:local +@1737 = .data:0x802DDBD0; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802DDBDC; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802DDBF0; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802DDC04; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802DDC10; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802DDC28; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802DDC44; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802DDC64; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802DDC80; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802DDC9C; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802DDCBC; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802DDCDC; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802DDCF8; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802DDD14; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802DDD34; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802DDD50; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802DDD6C; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802DDD80; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802DDD90; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802DDD9C; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802DDDA8; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802DDDB8; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802DDDC8; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802DDDD4; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802DDDE0; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802DDDF4; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802DDE1C; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802DDE2C; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802DDE38; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802DDE44; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802DDE60; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802DDE70; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802DDE7C; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802DDE98; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802DDEB0; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802DDEBC; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802DDED8; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802DDEEC; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802DDEF8; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802DDF04; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802DDF14; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802DDF28; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802DDF44; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802DDF68; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802DDF7C; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802DDF90; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802DDF9C; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802DDFAC; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802DDFC0; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802DDFDC; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802DE000; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802DE00C; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802DE024; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802DE030; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802DE03C; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802DE048; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802DE05C; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802DE06C; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802DE080; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802DE09C; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802DE0BC; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802DE0DC; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802DE0F4; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802DE100; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802DE11C; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802DE130; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802DE14C; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802DE174; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802DE190; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802DE1A8; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802DE1B4; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802DE1C8; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802DE1E8; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802DE1F8; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802DE20C; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802DE220; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802DE22C; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802DE248; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802DE26C; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802DE2AC; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802DE2C0; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802DE2CC; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802DE2D8; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802DE2EC; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802DE2FC; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802DE318; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802DE33C; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802DE36C; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802DE390; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802DE3B0; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802DE3BC; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802DE3E0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802DE440; // type:label scope:local +@1737 = .data:0x802DE440; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802DE44C; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802DE468; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802DE480; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802DE498; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802DE4AC; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802DE4C4; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802DE4DC; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802DE4FC; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802DE514; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802DE530; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802DE540; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802DE55C; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802DE578; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802DE594; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802DE5B0; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802DE5D0; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802DE5F0; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802DE60C; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802DE628; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802DE644; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802DE660; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802DE67C; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802DE68C; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802DE69C; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802DE6A8; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802DE6B4; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802DE6C4; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802DE6D4; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802DE6E0; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802DE6EC; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802DE700; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802DE728; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802DE734; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802DE740; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802DE74C; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802DE768; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802DE778; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802DE784; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802DE7A0; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802DE7C4; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802DE7D4; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802DE7E8; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802DE7F4; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802DE808; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802DE81C; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802DE83C; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802DE860; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802DE88C; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802DE8C0; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802DE8D8; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802DE900; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802DE914; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802DE924; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802DE938; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802DE954; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802DE978; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802DE988; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802DE9A0; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802DE9AC; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802DE9C4; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802DE9DC; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802DE9F0; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802DEA04; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802DEA20; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802DEA50; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802DEA5C; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802DEA70; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802DEA84; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802DEA90; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802DEAA4; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802DEAC4; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802DEAE4; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802DEAF4; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802DEB00; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802DEB14; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802DEB30; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802DEB50; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802DEB60; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802DEB88; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802DEB9C; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802DEBB0; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802DEBBC; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802DEBD0; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802DEBF0; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802DEC04; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802DEC14; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802DEC20; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802DEC34; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802DEC54; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802DEC64; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802DEC70; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802DEC84; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802DECA0; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802DECC0; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802DECD8; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802DECEC; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802DED0C; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802DED1C; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802DED28; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802DED34; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802DED44; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802DED58; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802DED74; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802DED98; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802DEDD0; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802DEDE8; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802DEDF4; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802DEE10; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802DEE20; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802DEE2C; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802DEE50; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802DEE64; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802DEE74; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802DEE80; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802DEE94; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802DEEB4; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802DEEC4; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802DEED0; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802DEEE4; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802DEF00; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802DEF38; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802DEF4C; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802DEF58; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802DEF64; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802DEF78; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802DEF88; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802DEFA4; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802DEFC8; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802DEFF8; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802DF018; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802DF038; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802DF044; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802DF090; // type:label scope:local +@1728 = .data:0x802DF090; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802DF0A4; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802DF0B4; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802DF0C8; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802DF0D4; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802DF0E0; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802DF0EC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802DF100; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802DF11C; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802DF138; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802DF144; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802DF150; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802DF170; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802DF188; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802DF194; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802DF1A0; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802DF1AC; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802DF1C0; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802DF1D4; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802DF1F0; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802DF214; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802DF230; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802DF24C; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802DF268; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802DF274; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802DF290; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802DF2A0; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802DF2AC; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802DF2C8; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802DF2E0; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802DF2EC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DF308; // type:label scope:local +@1788 = .data:0x802DF308; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802DF318; // type:object size:0x9 scope:local align:4 data:string +@3938 = .data:0x802DF324; // type:object size:0xC scope:local align:4 data:string +@3940 = .data:0x802DF330; // type:object size:0xA scope:local align:4 data:string +@3941 = .data:0x802DF33C; // type:object size:0x12 scope:local align:4 data:string +@3942 = .data:0x802DF350; // type:object size:0xC scope:local align:4 +@3939 = .data:0x802DF35C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802DF370; // type:object size:0x20 scope:global align:4 +@3949 = .data:0x802DF390; // type:object size:0xC scope:local align:4 data:string +@3950 = .data:0x802DF39C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802DF3B0; // type:object size:0x20 scope:global align:4 +@3951 = .data:0x802DF3D0; // type:object size:0xC scope:local align:4 data:string +@3952 = .data:0x802DF3DC; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802DF3F0; // type:object size:0x24 scope:global align:4 +@3953 = .data:0x802DF414; // type:object size:0x13 scope:local align:4 data:string +@3955 = .data:0x802DF428; // type:object size:0xF scope:local align:4 data:string +@3954 = .data:0x802DF438; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802DF44C; // type:object size:0x2C scope:global align:4 +@3956 = .data:0x802DF478; // type:object size:0x1E scope:local align:4 data:string +@3958 = .data:0x802DF498; // type:object size:0x11 scope:local align:4 data:string +@3959 = .data:0x802DF4AC; // type:object size:0x14 scope:local align:4 +@3957 = .data:0x802DF4C0; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802DF4E4; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802DF514; // type:object size:0x24 scope:global align:4 +@3960 = .data:0x802DF538; // type:object size:0x16 scope:local align:4 data:string +@3961 = .data:0x802DF550; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802DF55C; // type:object size:0x1C scope:global align:4 +@3962 = .data:0x802DF578; // type:object size:0xF scope:local align:4 data:string +@3963 = .data:0x802DF588; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802DF594; // type:object size:0x20 scope:global align:4 +@3964 = .data:0x802DF5B4; // type:object size:0x1D scope:local align:4 data:string +@3965 = .data:0x802DF5D4; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802DF5E8; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802DF604; // type:object size:0xE scope:local align:4 data:string +@3967 = .data:0x802DF614; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802DF628; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802DF644; // type:object size:0xD scope:local align:4 data:string +@3970 = .data:0x802DF654; // type:object size:0x11 scope:local align:4 data:string +@3971 = .data:0x802DF668; // type:object size:0x14 scope:local align:4 +@3969 = .data:0x802DF67C; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802DF698; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802DF6B4; // type:object size:0xD scope:local align:4 data:string +@3973 = .data:0x802DF6C4; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802DF6D8; // type:object size:0x20 scope:global align:4 +@3974 = .data:0x802DF6F8; // type:object size:0xB scope:local align:4 data:string +@3976 = .data:0x802DF704; // type:object size:0x11 scope:local align:4 data:string +@3977 = .data:0x802DF718; // type:object size:0x14 scope:local align:4 +@3975 = .data:0x802DF72C; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802DF748; // type:object size:0x24 scope:global align:4 +@3978 = .data:0x802DF76C; // type:object size:0x9 scope:local align:4 data:string +@3979 = .data:0x802DF778; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802DF78C; // type:object size:0x20 scope:global align:4 +@3980 = .data:0x802DF7AC; // type:object size:0x16 scope:local align:4 data:string +@3981 = .data:0x802DF7C4; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802DF7E0; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802DF800; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802DF81C; // type:object size:0xF scope:local align:4 data:string +@3983 = .data:0x802DF82C; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802DF840; // type:object size:0x1C scope:global align:4 +@3984 = .data:0x802DF85C; // type:object size:0x9 scope:local align:4 data:string +@3985 = .data:0x802DF868; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802DF874; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802DF890; // type:object size:0x20 scope:global align:4 +@3987 = .data:0x802DF8B0; // type:object size:0xF scope:local align:4 data:string +@3988 = .data:0x802DF8C0; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802DF8D4; // type:object size:0x1C scope:global align:4 +@3989 = .data:0x802DF8F0; // type:object size:0x22 scope:local align:4 data:string +@3990 = .data:0x802DF914; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802DF928; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802DF948; // type:object size:0x1C scope:local align:4 data:string +@3992 = .data:0x802DF964; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802DF978; // type:object size:0x24 scope:global align:4 +@3993 = .data:0x802DF99C; // type:object size:0xD scope:local align:4 data:string +@3994 = .data:0x802DF9AC; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802DF9C0; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802DF9E0; // type:object size:0x19 scope:local align:4 data:string +@3996 = .data:0x802DF9FC; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802DFA08; // type:object size:0x1C scope:global align:4 +@3997 = .data:0x802DFA24; // type:object size:0x1F scope:local align:4 data:string +@3998 = .data:0x802DFA44; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802DFA50; // type:object size:0x1C scope:global align:4 +@3999 = .data:0x802DFA6C; // type:object size:0xF scope:local align:4 data:string +@4000 = .data:0x802DFA7C; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802DFA98; // type:object size:0x24 scope:global align:4 +@4001 = .data:0x802DFABC; // type:object size:0x1D scope:local align:4 data:string +@4002 = .data:0x802DFADC; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802DFAE8; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802DFB04; // type:object size:0x12 scope:local align:4 data:string +@4005 = .data:0x802DFB18; // type:object size:0xB scope:local align:4 data:string +@4006 = .data:0x802DFB24; // type:object size:0xC scope:local align:4 +@4007 = .data:0x802DFB30; // type:object size:0x13 scope:local align:4 data:string +@4008 = .data:0x802DFB44; // type:object size:0x14 scope:local align:4 +@4004 = .data:0x802DFB58; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802DFB74; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DFB90; // type:label scope:local +@1116 = .data:0x802DFB90; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802DFBA0; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802DFBAC; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802DFBBC; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802DFBC8; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802DFBDC; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802DFBE8; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802DFBFC; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802DFC1C; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802DFC38; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802DFC44; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DFC80; // type:label scope:local +@1569 = .data:0x802DFC80; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802DFC90; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802DFC9C; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802DFCB0; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802DFCBC; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802DFCC8; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802DFCE4; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802DFCF8; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802DFD04; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802DFD20; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802DFD30; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802DFD3C; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802DFD60; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802DFD74; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802DFD80; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802DFDA0; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802DFDB4; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802DFDC0; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802DFDDC; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802DFDF4; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802DFE00; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802DFE20; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802DFE30; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802DFE3C; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802DFE58; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802DFE68; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802DFE74; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802DFE90; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802DFEB0; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802DFEBC; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802DFED8; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802DFEF8; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802DFF04; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802DFF20; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802DFF3C; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802DFF48; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802DFF6C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802DFF88; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802DFFA0; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802DFFAC; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802DFFC0; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802DFFE8; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E0000; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E0014; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E003C; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E0064; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E0074; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E0084; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E0090; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E00A4; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E00C4; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E00D4; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E00E8; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E0108; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E0120; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E012C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E0148; // type:label scope:local +@1718 = .data:0x802E0148; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E0158; // type:object size:0xB scope:local align:4 data:string +@2312 = .data:0x802E0164; // type:object size:0xC scope:local align:4 data:string +@2314 = .data:0x802E0170; // type:object size:0xA scope:local align:4 data:string +@2315 = .data:0x802E017C; // type:object size:0x12 scope:local align:4 data:string +@2316 = .data:0x802E0190; // type:object size:0xC scope:local align:4 +@2313 = .data:0x802E019C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E01B0; // type:object size:0x20 scope:global align:4 +@2323 = .data:0x802E01D0; // type:object size:0x13 scope:local align:4 data:string +@2324 = .data:0x802E01E4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E01F8; // type:object size:0x24 scope:global align:4 +@2325 = .data:0x802E021C; // type:object size:0x1A scope:local align:4 data:string +@2326 = .data:0x802E0238; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E024C; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E0270; // type:object size:0xD scope:local align:4 data:string +@2329 = .data:0x802E0280; // type:object size:0xB scope:local align:4 data:string +@2330 = .data:0x802E028C; // type:object size:0xC scope:local align:4 +@2328 = .data:0x802E0298; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E02AC; // type:object size:0x24 scope:global align:4 +@2331 = .data:0x802E02D0; // type:object size:0xE scope:local align:4 data:string +@2333 = .data:0x802E02E0; // type:object size:0xA scope:local align:4 data:string +@2332 = .data:0x802E02EC; // type:object size:0xC scope:local align:4 +@2335 = .data:0x802E0310; // type:object size:0xF scope:local align:4 data:string +@2336 = .data:0x802E0320; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E032C; // type:object size:0x20 scope:global align:4 +@2338 = .data:0x802E034C; // type:object size:0xF scope:local align:4 data:string +@2339 = .data:0x802E035C; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E0370; // type:object size:0x24 scope:global align:4 +@2340 = .data:0x802E0394; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E03A4; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E03B0; // type:object size:0x1C scope:global align:4 +@2342 = .data:0x802E03CC; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E03DC; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E03E8; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E0404; // type:object size:0x1C scope:local align:4 data:string +@2346 = .data:0x802E0420; // type:object size:0xF scope:local align:4 data:string +@2347 = .data:0x802E0430; // type:object size:0x14 scope:local align:4 +@2345 = .data:0x802E0444; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E0460; // type:object size:0x24 scope:global align:4 +@2349 = .data:0x802E0484; // type:object size:0xC scope:local align:4 data:string +@2359 = .data:0x802E04BC; // type:object size:0x15 scope:local align:4 data:string +@2360 = .data:0x802E04D4; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E04E8; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E0510; // type:label scope:local +@579 = .data:0x802E0510; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E0524; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E0534; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E0558; // type:label scope:local +@658 = .data:0x802E0558; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E0568; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E0578; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E0584; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E05A8; // type:label scope:local +@581 = .data:0x802E05A8; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E05BC; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E05CC; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E05DC; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E05EC; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E05F8; // type:object size:0x24 scope:global align:4 +__vt__7P2DPane = .data:0x802E0620; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E0660; // type:label scope:local +@655 = .data:0x802E0660; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E0670; // type:object size:0xB scope:local align:4 data:string +@1152 = .data:0x802E067C; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E0688; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E06C8; // type:label scope:local +@765 = .data:0x802E06C8; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E06D8; // type:object size:0xA scope:local align:4 data:string +@840 = .data:0x802E06E4; // type:object size:0x50 scope:local align:4 +@879 = .data:0x802E0734; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E0740; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802E0780; // type:label scope:local +@641 = .data:0x802E0780; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E0790; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E079C; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E07A8; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E07E8; // type:label scope:local +@636 = .data:0x802E07E8; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E07F8; // type:object size:0xB scope:local align:4 data:string +@728 = .data:0x802E0804; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E0810; // type:object size:0x3C scope:global align:4 +@878 = .data:0x802E0850; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E08B0; // type:label scope:local +@570 = .data:0x802E08B0; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E08BC; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E08C8; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E08D4; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E08E0; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E08EC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E0910; // type:label scope:local +@1273 = .data:0x802E0910; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E0924; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E0934; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E094C; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E0964; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E097C; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E0994; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E09AC; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E09C4; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E09DC; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E09F4; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E0A0C; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E0A24; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E0A3C; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E0A54; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E0A6C; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E0A84; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E0A9C; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E0AB4; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E0ACC; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E0AE4; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E0AFC; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E0B48; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E0B60; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E0B78; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E0B90; // type:object size:0x18 scope:local align:4 data:string +@2587 = .data:0x802E0BA8; // type:object size:0x18 scope:local align:4 data:string +@2589 = .data:0x802E0BC0; // type:object size:0xF scope:local align:4 data:string +@2590 = .data:0x802E0BD0; // type:object size:0x14 scope:local align:4 data:string +@2591 = .data:0x802E0BE4; // type:object size:0x1A scope:local align:4 data:string +@2592 = .data:0x802E0C00; // type:object size:0x10 scope:local align:4 data:string +@2593 = .data:0x802E0C10; // type:object size:0x14 scope:local align:4 +@2588 = .data:0x802E0C24; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E0C48; // type:object size:0x10 scope:weak align:4 +@2658 = .data:0x802E0C58; // type:object size:0x1D scope:local align:4 data:string +@2659 = .data:0x802E0C78; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E0C94; // type:object size:0x10 scope:weak align:4 +@2703 = .data:0x802E0CA4; // type:object size:0x1C scope:local align:4 data:string +@2704 = .data:0x802E0CC0; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E0CDC; // type:object size:0x10 scope:weak align:4 +@2707 = .data:0x802E0CEC; // type:object size:0x1B scope:local align:4 data:string +@2708 = .data:0x802E0D08; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E0D24; // type:object size:0x10 scope:weak align:4 +@2717 = .data:0x802E0D34; // type:object size:0x1C scope:local align:4 data:string +@2718 = .data:0x802E0D50; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E0D6C; // type:object size:0x10 scope:weak align:4 +@2741 = .data:0x802E0D7C; // type:object size:0x1C scope:local align:4 data:string +@2743 = .data:0x802E0D98; // type:object size:0x13 scope:local align:4 data:string +@2742 = .data:0x802E0DAC; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E0DD0; // type:object size:0x10 scope:weak align:4 +@2814 = .data:0x802E0DE0; // type:object size:0x1C scope:local align:4 data:string +@2816 = .data:0x802E0DFC; // type:object size:0x13 scope:local align:4 data:string +@2815 = .data:0x802E0E10; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E0E3C; // type:object size:0x10 scope:weak align:4 +@2898 = .data:0x802E0E4C; // type:object size:0x1C scope:local align:4 data:string +@2899 = .data:0x802E0E68; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E0E8C; // type:object size:0x10 scope:weak align:4 +@2945 = .data:0x802E0E9C; // type:object size:0x1E scope:local align:4 data:string +@2946 = .data:0x802E0EBC; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E0ED8; // type:object size:0x10 scope:weak align:4 +@2963 = .data:0x802E0EE8; // type:object size:0x1B scope:local align:4 data:string +@2964 = .data:0x802E0F04; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E0F28; // type:object size:0x1C scope:weak align:4 +@2997 = .data:0x802E0F44; // type:object size:0x1E scope:local align:4 data:string +@2999 = .data:0x802E0F64; // type:object size:0x16 scope:local align:4 data:string +@3000 = .data:0x802E0F7C; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802E0F88; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E0FB4; // type:object size:0x10 scope:weak align:4 +@3001 = .data:0x802E0FC4; // type:object size:0x23 scope:local align:4 data:string +@3002 = .data:0x802E0FE8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E1004; // type:object size:0x10 scope:weak align:4 +@3038 = .data:0x802E1014; // type:object size:0x1C scope:local align:4 data:string +@3039 = .data:0x802E1030; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E104C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E1078; // type:label scope:local +@708 = .data:0x802E1078; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802E108C; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802E109C; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802E10AC; // type:object size:0x15 scope:local align:4 data:string +@1769 = .data:0x802E10C4; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802E10D0; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802E10DC; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802E10EC; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802E1104; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802E111C; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802E1134; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802E114C; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802E1164; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802E117C; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802E1194; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802E11AC; // type:object size:0x17 scope:local align:4 data:string +@2884 = .data:0x802E11C4; // type:object size:0x13 scope:local align:4 data:string +@2886 = .data:0x802E11D8; // type:object size:0x14 scope:local align:4 data:string +@2887 = .data:0x802E11EC; // type:object size:0x1A scope:local align:4 data:string +@2888 = .data:0x802E1208; // type:object size:0x10 scope:local align:4 data:string +@2889 = .data:0x802E1218; // type:object size:0x14 scope:local align:4 +@2885 = .data:0x802E122C; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802E1248; // type:object size:0x10 scope:weak align:4 +@2915 = .data:0x802E1258; // type:object size:0x15 scope:local align:4 data:string +@2917 = .data:0x802E1270; // type:object size:0x18 scope:local align:4 data:string +@2916 = .data:0x802E1288; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802E12AC; // type:object size:0x10 scope:weak align:4 +@2961 = .data:0x802E12BC; // type:object size:0x19 scope:local align:4 data:string +@2962 = .data:0x802E12D8; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802E12FC; // type:object size:0x10 scope:weak align:4 +@2996 = .data:0x802E130C; // type:object size:0x1C scope:local align:4 data:string +@2998 = .data:0x802E1328; // type:object size:0xF scope:local align:4 data:string +@2999 = .data:0x802E1338; // type:object size:0x14 scope:local align:4 data:string +@3000 = .data:0x802E134C; // type:object size:0xC scope:local align:4 +@2997 = .data:0x802E1358; // type:object size:0x2C scope:local align:4 +@3001 = .data:0x802E13B0; // type:object size:0x9 scope:local align:4 data:string +@3002 = .data:0x802E13BC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E13E8; // type:label scope:local +@637 = .data:0x802E13E8; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802E13F8; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E1404; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802E1410; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802E1420; // type:object size:0x11 scope:local align:4 data:string +@1537 = .data:0x802E1434; // type:object size:0x14 scope:local align:4 data:string +@1538 = .data:0x802E1448; // type:object size:0x1A scope:local align:4 data:string +@1539 = .data:0x802E1464; // type:object size:0x10 scope:local align:4 data:string +@1540 = .data:0x802E1474; // type:object size:0x14 scope:local align:4 +@1536 = .data:0x802E1488; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802E14A4; // type:object size:0x10 scope:global align:4 +@1542 = .data:0x802E14D0; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802E14E0; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E14F0; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802E1508; // type:label scope:local +@635 = .data:0x802E1508; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802E1518; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802E1524; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802E153C; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802E1550; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802E1560; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802E156C; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E157C; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802E159C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802E15AC; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802E15C4; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802E15D0; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802E15E4; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802E1600; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802E1610; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802E1624; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E1680; // type:label scope:local +@659 = .data:0x802E1680; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802E1690; // type:object size:0x9 scope:local align:4 data:string +@1825 = .data:0x802E169C; // type:object size:0xE scope:local align:4 data:string +@1827 = .data:0x802E16AC; // type:object size:0x10 scope:local align:4 data:string +@1826 = .data:0x802E16BC; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802E16C8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E16D8; // type:label scope:local +@1607 = .data:0x802E16D8; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802E16EC; // type:object size:0x10 scope:local align:4 data:string +@2302 = .data:0x802E16FC; // type:object size:0x11 scope:local align:4 data:string +@2304 = .data:0x802E1710; // type:object size:0x29 scope:local align:4 data:string +@2303 = .data:0x802E173C; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802E1748; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802E1754; // type:object size:0x15 scope:local align:4 data:string +@2306 = .data:0x802E176C; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802E1778; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802E1784; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802E1798; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802E17A4; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802E17B0; // type:label scope:local +@1756 = .data:0x802E17B0; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802E17C0; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802E17CC; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802E17D8; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802E17F0; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802E1804; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802E1814; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802E1824; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802E1838; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802E1848; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802E1854; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802E1860; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802E1874; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802E1884; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802E1890; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E189C; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802E18B0; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802E18D8; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802E18F8; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802E1904; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802E1920; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802E192C; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802E1940; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802E1964; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802E1978; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802E1984; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802E19A0; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802E19B0; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802E19D8; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802E19EC; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802E19F8; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802E1A04; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802E1A14; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802E1A28; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802E1A44; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802E1A68; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802E1AA0; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802E1AB4; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802E1AC0; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802E1ADC; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802E1B00; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802E1B14; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802E1B20; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802E1B30; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802E1B44; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802E1B60; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802E1B7C; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802E1BA0; // type:object size:0x24 scope:weak align:4 +@3152 = .data:0x802E1BC4; // type:object size:0x15 scope:local align:4 data:string +@3153 = .data:0x802E1BDC; // type:object size:0xC scope:local align:4 +@3186 = .data:0x802E1C04; // type:object size:0xF scope:local align:4 data:string +@3187 = .data:0x802E1C14; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802E1C28; // type:object size:0x1C scope:weak align:4 +@3741 = .data:0x802E1C44; // type:object size:0x1E scope:local align:4 data:string +@3743 = .data:0x802E1C64; // type:object size:0x17 scope:local align:4 data:string +@3744 = .data:0x802E1C7C; // type:object size:0xC scope:local align:4 +@3745 = .data:0x802E1C88; // type:object size:0x18 scope:local align:4 data:string +@3746 = .data:0x802E1CA0; // type:object size:0x14 scope:local align:4 +@3742 = .data:0x802E1CB4; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802E1CD0; // type:object size:0x28 scope:weak align:4 +@3752 = .data:0x802E1CF8; // type:object size:0x16 scope:local align:4 data:string +@3753 = .data:0x802E1D10; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802E1D1C; // type:object size:0x1C scope:weak align:4 +@3820 = .data:0x802E1D38; // type:object size:0x12 scope:local align:4 data:string +@3821 = .data:0x802E1D4C; // type:object size:0xC scope:local align:4 +@3834 = .data:0x802E1D78; // type:object size:0x11 scope:local align:4 data:string +@3836 = .data:0x802E1D8C; // type:object size:0xB scope:local align:4 data:string +@3837 = .data:0x802E1D98; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802E1DA4; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802E1DB8; // type:object size:0x20 scope:weak align:4 +@3841 = .data:0x802E1DD8; // type:object size:0x10 scope:local align:4 data:string +@3843 = .data:0x802E1DE8; // type:object size:0xA scope:local align:4 data:string +@3844 = .data:0x802E1DF4; // type:object size:0x14 scope:local align:4 +@3842 = .data:0x802E1E08; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802E1E24; // type:object size:0x1C scope:weak align:4 +@3855 = .data:0x802E1E40; // type:object size:0xF scope:local align:4 data:string +@3856 = .data:0x802E1E50; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802E1E5C; // type:object size:0x1C scope:weak align:4 +@3881 = .data:0x802E1E94; // type:object size:0x14 scope:local align:4 data:string +@3884 = .data:0x802E1EA8; // type:object size:0x9 scope:local align:4 data:string +@3885 = .data:0x802E1EB4; // type:object size:0xC scope:local align:4 +@3887 = .data:0x802E1EC0; // type:object size:0x14 scope:local align:4 +@3888 = .data:0x802E1ED4; // type:object size:0xF scope:local align:4 data:string +@3889 = .data:0x802E1EE4; // type:object size:0x1C scope:local align:4 +@3882 = .data:0x802E1F00; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802E1F24; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E1F58; // type:label scope:local +@635 = .data:0x802E1F58; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802E1F6C; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802E1F7C; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802E1F8C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802E1FA0; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802E1FBC; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802E1FCC; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802E1FE0; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802E1FFC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E2028; // type:label scope:local +@1737 = .data:0x802E2028; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E2038; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802E2044; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802E205C; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802E206C; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802E2084; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802E2098; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802E20B8; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802E20DC; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802E20FC; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802E211C; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802E2140; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802E2164; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802E2184; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802E21A4; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802E21C8; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802E21E8; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802E2208; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802E2220; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802E2230; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802E223C; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802E2248; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802E2258; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802E2264; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802E2270; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802E228C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802E229C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802E22A8; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802E22C4; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802E22D8; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802E22EC; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802E22F8; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802E230C; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802E232C; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802E2340; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802E2354; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802E2394; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802E23B4; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802E23C8; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802E23D4; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802E23EC; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802E2400; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802E241C; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802E2444; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802E2458; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802E2480; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802E2494; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802E24A0; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802E24BC; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802E24D0; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802E24DC; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802E24E8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802E24FC; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802E2534; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802E2548; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802E2558; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802E2564; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802E2570; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802E2584; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802E25AC; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802E25C4; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802E25D0; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802E25DC; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802E25F0; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802E2600; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802E261C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802E2640; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E2670; // type:label scope:local +@1737 = .data:0x802E2670; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E2680; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802E268C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802E26A4; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802E26B4; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802E26CC; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802E26E0; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802E26F4; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802E2708; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802E2728; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802E274C; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802E276C; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802E278C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802E27B0; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802E27D4; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802E27F4; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802E2814; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802E2838; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802E2858; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802E2878; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802E2890; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802E28A0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802E28AC; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802E28B8; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802E28C8; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802E28D4; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802E28FC; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802E290C; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802E2934; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802E2948; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802E295C; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802E2968; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802E297C; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802E299C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802E29B0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802E29C4; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802E2A04; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802E2A24; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802E2A38; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802E2A44; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802E2A5C; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802E2A70; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802E2A8C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802E2AB4; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802E2AC8; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802E2AF0; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802E2B04; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802E2B2C; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802E2B40; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802E2B54; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802E2B68; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802E2B84; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E2BA8; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E2BBC; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802E2BC8; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E2BD4; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802E2C20; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802E2C34; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802E2C44; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802E2C50; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802E2C5C; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802E2C70; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802E2C98; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802E2CB0; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802E2CBC; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802E2CC8; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802E2CDC; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802E2CEC; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802E2D08; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802E2D2C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E2D60; // type:label scope:local +@1737 = .data:0x802E2D60; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E2D70; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802E2D7C; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802E2D94; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802E2DA4; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802E2DCC; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802E2DF4; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802E2E0C; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802E2E28; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802E2E40; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802E2E54; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802E2E68; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802E2E7C; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802E2E9C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802E2EC0; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802E2EE0; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802E2F00; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802E2F24; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802E2F48; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802E2F68; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802E2F88; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802E2FAC; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802E2FCC; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802E2FEC; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802E3004; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802E3014; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802E3020; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802E302C; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802E303C; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802E3048; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802E3070; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802E3080; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802E30A8; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802E30BC; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802E30D0; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802E30DC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802E30F0; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802E3110; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802E3124; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802E3138; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802E3178; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802E3198; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802E31AC; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802E31B8; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802E31D0; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802E31E4; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802E3200; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802E3228; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802E323C; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802E3264; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802E3278; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E32A0; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802E32B4; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802E32C8; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802E32E4; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802E32FC; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802E330C; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802E3318; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802E3328; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802E333C; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802E3358; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802E3378; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802E3394; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802E33AC; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802E33B8; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802E33CC; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802E33E8; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802E3404; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802E3418; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802E3434; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802E344C; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802E345C; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802E3468; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802E347C; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802E349C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802E34B4; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802E34E0; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802E34EC; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802E3504; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802E3518; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802E352C; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802E3548; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802E3560; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802E3570; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802E3584; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802E35A0; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802E35C0; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802E35E0; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802E35F4; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802E3608; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802E361C; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802E3638; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802E365C; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802E3670; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802E367C; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802E3688; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802E36D4; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802E36E8; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802E36F8; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802E3704; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802E3710; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802E3724; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802E374C; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802E3764; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802E3770; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802E377C; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802E3790; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802E37A0; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802E37BC; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802E37E0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E3810; // type:label scope:local +@1737 = .data:0x802E3810; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E3820; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802E382C; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802E3844; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802E385C; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802E387C; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802E389C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802E38BC; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802E38DC; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802E3900; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802E3924; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802E3944; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802E3964; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802E3984; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802E39A4; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802E39C4; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802E39D8; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802E39E8; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802E39F4; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802E3A00; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802E3A18; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802E3A24; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802E3A30; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802E3A4C; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802E3A58; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802E3A64; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802E3A70; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802E3A84; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802E3AA0; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802E3AB8; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802E3ACC; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802E3AD8; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802E3AEC; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802E3B2C; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802E3B3C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802E3B50; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802E3B88; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E3B9C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802E3BAC; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802E3BB8; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802E3BC4; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802E3BD8; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802E3C00; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802E3C14; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802E3C20; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802E3C2C; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802E3C40; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802E3C50; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802E3C6C; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802E3C90; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E3CC0; // type:label scope:local +@1737 = .data:0x802E3CC0; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E3CD0; // type:object size:0xA scope:local align:4 data:string +@2114 = .data:0x802E3CDC; // type:object size:0xF scope:local align:4 +@2117 = .data:0x802E3CEC; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802E3CFC; // type:object size:0x1D scope:local align:4 +@2120 = .data:0x802E3D1C; // type:object size:0x19 scope:local align:4 +@2122 = .data:0x802E3D38; // type:object size:0xF scope:local align:4 +@2124 = .data:0x802E3D48; // type:object size:0x15 scope:local align:4 +@2771 = .data:0x802E3D60; // type:object size:0x1D scope:local align:4 data:string +@2772 = .data:0x802E3D80; // type:object size:0x1F scope:local align:4 data:string +@2773 = .data:0x802E3DA0; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802E3DC0; // type:object size:0x1E scope:local align:4 data:string +@2775 = .data:0x802E3DE0; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E3E04; // type:object size:0x21 scope:local align:4 data:string +@2777 = .data:0x802E3E28; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802E3E48; // type:object size:0x1E scope:local align:4 data:string +@2779 = .data:0x802E3E68; // type:object size:0x1F scope:local align:4 data:string +@2780 = .data:0x802E3E88; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802E3EA8; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802E3EC8; // type:object size:0x13 scope:local align:4 data:string +@2784 = .data:0x802E3EDC; // type:object size:0xD scope:local align:4 data:string +@2783 = .data:0x802E3EEC; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802E3EF8; // type:object size:0xC scope:global align:4 +@2785 = .data:0x802E3F04; // type:object size:0x12 scope:local align:4 data:string +@2787 = .data:0x802E3F18; // type:object size:0xD scope:local align:4 data:string +@2788 = .data:0x802E3F28; // type:object size:0xC scope:local align:4 data:string +@2789 = .data:0x802E3F34; // type:object size:0xC scope:local align:4 +@2786 = .data:0x802E3F40; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802E3F54; // type:object size:0x28 scope:global align:4 +@2790 = .data:0x802E3F7C; // type:object size:0x12 scope:local align:4 data:string +@2792 = .data:0x802E3F90; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802E3F9C; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802E3FA8; // type:object size:0x1C scope:weak align:4 +@2810 = .data:0x802E3FC4; // type:object size:0x14 scope:local align:4 data:string +@2811 = .data:0x802E3FD8; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802E3FE4; // type:object size:0x1C scope:weak align:4 +@2900 = .data:0x802E4000; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E4010; // type:object size:0x12 scope:local align:4 data:string +@2903 = .data:0x802E4024; // type:object size:0xC scope:local align:4 +@2904 = .data:0x802E4030; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802E4040; // type:object size:0x14 scope:local align:4 +@2901 = .data:0x802E4054; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802E4070; // type:object size:0x20 scope:weak align:4 +@3001 = .data:0x802E4090; // type:object size:0xC scope:local align:4 data:string +@3011 = .data:0x802E40C8; // type:object size:0x19 scope:local align:4 data:string +@3012 = .data:0x802E40E4; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802E40F8; // type:object size:0x1C scope:weak align:4 +@3066 = .data:0x802E4114; // type:object size:0x10 scope:local align:4 data:string +@3067 = .data:0x802E4124; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802E4138; // type:object size:0x1C scope:weak align:4 +@3087 = .data:0x802E4154; // type:object size:0x11 scope:local align:4 data:string +@3089 = .data:0x802E4168; // type:object size:0x1C scope:local align:4 data:string +@3090 = .data:0x802E4184; // type:object size:0x14 scope:local align:4 +@3088 = .data:0x802E4198; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802E41B4; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802E41D8; // type:object size:0xF scope:local align:4 data:string +@3134 = .data:0x802E41E8; // type:object size:0xC scope:local align:4 +@3136 = .data:0x802E4210; // type:object size:0xF scope:local align:4 data:string +@3138 = .data:0x802E4220; // type:object size:0x9 scope:local align:4 data:string +@3139 = .data:0x802E422C; // type:object size:0x14 scope:local align:4 +@3137 = .data:0x802E4240; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802E425C; // type:object size:0x20 scope:weak align:4 +@3166 = .data:0x802E427C; // type:object size:0x13 scope:local align:4 data:string +@3168 = .data:0x802E4290; // type:object size:0xB scope:local align:4 data:string +@3169 = .data:0x802E429C; // type:object size:0xC scope:local align:4 +@3170 = .data:0x802E42A8; // type:object size:0xD scope:local align:4 data:string +@3171 = .data:0x802E42B8; // type:object size:0x14 scope:local align:4 +@3167 = .data:0x802E42CC; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802E42E8; // type:object size:0x24 scope:weak align:4 +@3178 = .data:0x802E430C; // type:object size:0x15 scope:local align:4 data:string +@3180 = .data:0x802E4324; // type:object size:0xF scope:local align:4 data:string +@3181 = .data:0x802E4334; // type:object size:0x1C scope:local align:4 +@3179 = .data:0x802E4350; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802E4374; // type:object size:0x24 scope:weak align:4 +@3221 = .data:0x802E4398; // type:object size:0xE scope:local align:4 data:string +@3223 = .data:0x802E43A8; // type:object size:0xA scope:local align:4 data:string +@3222 = .data:0x802E43B4; // type:object size:0xC scope:local align:4 +@3225 = .data:0x802E43D8; // type:object size:0x12 scope:local align:4 data:string +@3226 = .data:0x802E43EC; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802E43F8; // type:object size:0x1C scope:weak align:4 +@3492 = .data:0x802E4414; // type:object size:0x10 scope:local align:4 data:string +@3494 = .data:0x802E4424; // type:object size:0xA scope:local align:4 data:string +@3495 = .data:0x802E4430; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802E4444; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802E4460; // type:object size:0x1C scope:weak align:4 +@3558 = .data:0x802E447C; // type:object size:0xF scope:local align:4 data:string +@3559 = .data:0x802E448C; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802E4498; // type:object size:0x1C scope:weak align:4 +@3565 = .data:0x802E44D0; // type:object size:0x14 scope:local align:4 data:string +@3568 = .data:0x802E44E4; // type:object size:0x9 scope:local align:4 data:string +@3569 = .data:0x802E44F0; // type:object size:0xC scope:local align:4 +@3571 = .data:0x802E44FC; // type:object size:0x14 scope:local align:4 +@3572 = .data:0x802E4510; // type:object size:0xF scope:local align:4 data:string +@3573 = .data:0x802E4520; // type:object size:0x1C scope:local align:4 +@3566 = .data:0x802E453C; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802E4560; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E4590; // type:label scope:local +@1737 = .data:0x802E4590; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E45A0; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802E45AC; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802E45BC; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802E45CC; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802E45E8; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802E4608; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802E4628; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802E4648; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802E4668; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802E4688; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802E46A8; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802E46C8; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802E46E8; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802E4708; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802E4728; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802E473C; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802E474C; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802E4758; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802E4764; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802E4778; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802E4788; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802E4794; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802E47A0; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802E47B4; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802E47DC; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802E47F0; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802E47FC; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802E4810; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802E481C; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802E4830; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802E484C; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802E4864; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802E4878; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802E4884; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802E4898; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802E48D8; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802E48E8; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802E48F4; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802E492C; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802E4940; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802E494C; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802E4958; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802E496C; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802E497C; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802E4998; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802E49BC; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802E49EC; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802E4A10; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802E4A30; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802E4A3C; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802E4A60; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E4AC0; // type:label scope:local +@1716 = .data:0x802E4AC0; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802E4AD0; // type:object size:0xB scope:local align:4 data:string +@1808 = .data:0x802E4ADC; // type:object size:0x13 scope:local align:4 data:string +@1810 = .data:0x802E4AF0; // type:object size:0xA scope:local align:4 data:string +@1809 = .data:0x802E4AFC; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802E4B08; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802E4B28; // type:label scope:local +@1737 = .data:0x802E4B28; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E4B38; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802E4B44; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802E4B58; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802E4B6C; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802E4B8C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E4BA4; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802E4BB8; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802E4BD0; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802E4BE4; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802E4C04; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802E4C24; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802E4C44; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802E4C64; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802E4C88; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802E4CAC; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802E4CCC; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802E4CEC; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802E4D0C; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802E4D2C; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802E4D4C; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802E4D60; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802E4D70; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802E4D7C; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802E4D88; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802E4D9C; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802E4DAC; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802E4DB8; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802E4DC4; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802E4DD8; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802E4E00; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802E4E14; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802E4E20; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802E4E34; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802E4E40; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802E4E54; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802E4E70; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802E4E8C; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802E4E98; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802E4EB4; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802E4EC4; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802E4ED0; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802E4EDC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802E4EF0; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802E4F10; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802E4F48; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802E4F5C; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802E4F7C; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802E4F88; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802E4F9C; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802E4FB8; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802E4FD0; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802E4FDC; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802E4FF8; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802E500C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802E5020; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802E503C; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802E5050; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802E505C; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802E5078; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802E508C; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802E50B8; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802E50D4; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802E50EC; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802E50F8; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802E510C; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802E5144; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802E5158; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802E5174; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802E5188; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802E51A4; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802E51C8; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802E51E0; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802E51F0; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802E51FC; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802E5210; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802E5230; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802E5248; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802E525C; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802E5268; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802E527C; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802E529C; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802E52AC; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802E52D4; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802E52EC; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802E52F8; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802E5314; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802E5328; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802E533C; // type:object size:0x1C scope:weak align:4 +@3686 = .data:0x802E5358; // type:object size:0x12 scope:local align:4 data:string +@3687 = .data:0x802E536C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802E5380; // type:object size:0x1C scope:weak align:4 +@3693 = .data:0x802E539C; // type:object size:0x1B scope:local align:4 data:string +@3695 = .data:0x802E53B8; // type:object size:0x15 scope:local align:4 data:string +@3696 = .data:0x802E53D0; // type:object size:0xC scope:local align:4 +@3694 = .data:0x802E53DC; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802E53F0; // type:object size:0x20 scope:weak align:4 +@3700 = .data:0x802E5410; // type:object size:0x28 scope:local align:4 data:string +@3702 = .data:0x802E5438; // type:object size:0x22 scope:local align:4 data:string +@3703 = .data:0x802E545C; // type:object size:0x14 scope:local align:4 +@3701 = .data:0x802E5470; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802E548C; // type:object size:0x20 scope:weak align:4 +@3714 = .data:0x802E54AC; // type:object size:0x1C scope:local align:4 data:string +@3716 = .data:0x802E54C8; // type:object size:0x11 scope:local align:4 data:string +@3717 = .data:0x802E54DC; // type:object size:0x14 scope:local align:4 +@3718 = .data:0x802E54F0; // type:object size:0x16 scope:local align:4 data:string +@3719 = .data:0x802E5508; // type:object size:0x1C scope:local align:4 +@3715 = .data:0x802E5524; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802E5548; // type:object size:0x20 scope:weak align:4 +@3730 = .data:0x802E5568; // type:object size:0x10 scope:local align:4 data:string +@3732 = .data:0x802E5578; // type:object size:0xA scope:local align:4 data:string +@3733 = .data:0x802E5584; // type:object size:0x14 scope:local align:4 +@3731 = .data:0x802E5598; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802E55B4; // type:object size:0x1C scope:weak align:4 +@3753 = .data:0x802E55D0; // type:object size:0xF scope:local align:4 data:string +@3754 = .data:0x802E55E0; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802E55EC; // type:object size:0x1C scope:weak align:4 +@3757 = .data:0x802E5624; // type:object size:0x14 scope:local align:4 data:string +@3760 = .data:0x802E5638; // type:object size:0x9 scope:local align:4 data:string +@3761 = .data:0x802E5644; // type:object size:0xC scope:local align:4 +@3763 = .data:0x802E5650; // type:object size:0x14 scope:local align:4 +@3764 = .data:0x802E5664; // type:object size:0xF scope:local align:4 data:string +@3765 = .data:0x802E5674; // type:object size:0x1C scope:local align:4 +@3758 = .data:0x802E5690; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802E56B4; // type:object size:0x30 scope:weak align:4 +@722 = .data:0x802E56E8; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802E5700; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E5710; // type:label scope:local +@1134 = .data:0x802E5710; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802E5724; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802E5734; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802E574C; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802E5764; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802E577C; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802E5794; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802E57AC; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802E57C4; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802E57DC; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802E57F4; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802E580C; // type:object size:0x14 scope:local align:4 data:string +@3696 = .data:0x802E5820; // type:object size:0x24 scope:local align:4 +@6977 = .data:0x802E5844; // type:object size:0x1C scope:local align:4 data:string +@6979 = .data:0x802E5860; // type:object size:0xF scope:local align:4 data:string +@6980 = .data:0x802E5870; // type:object size:0x14 scope:local align:4 data:string +@6981 = .data:0x802E5884; // type:object size:0xC scope:local align:4 +@6982 = .data:0x802E5890; // type:object size:0x14 scope:local align:4 data:string +@6983 = .data:0x802E58A4; // type:object size:0x1A scope:local align:4 data:string +@6984 = .data:0x802E58C0; // type:object size:0x10 scope:local align:4 data:string +@6985 = .data:0x802E58D0; // type:object size:0x14 scope:local align:4 +@6978 = .data:0x802E58E4; // type:object size:0x2C scope:local align:4 +@6987 = .data:0x802E5920; // type:object size:0x24 scope:local align:4 data:string +@6988 = .data:0x802E5944; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802E5968; // type:object size:0x10 scope:weak align:4 +@818 = .data:0x802E5998; // type:object size:0x15 scope:local align:4 data:string +@768 = .data:0x802E59B0; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802E59C8; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802E59E0; // type:label scope:local +@1135 = .data:0x802E59E0; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802E59EC; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802E59FC; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802E5A08; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E5A30; // type:label scope:local +@660 = .data:0x802E5A30; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802E5A40; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802E5A4C; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802E5A64; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802E5A7C; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802E5A94; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802E5AAC; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802E5AC4; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802E5ADC; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802E5AF4; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802E5B0C; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802E5B28; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802E5B44; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802E5B60; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802E5B78; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802E5B94; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802E5BB0; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802E5BCC; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802E5BE8; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802E5C00; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802E5C18; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802E5C30; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802E5C4C; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802E5C64; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802E5C7C; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802E5C98; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802E5CB4; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802E5CD0; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802E5CE8; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802E5D04; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802E5D20; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802E5D3C; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802E5D58; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802E5D74; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802E5D90; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802E5DAC; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802E5DC8; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802E5DE4; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802E5E00; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802E5E1C; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802E5E38; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802E5E50; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802E5E6C; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802E5E88; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802E5EA4; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802E5EC0; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802E5EDC; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802E5EF8; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802E5F14; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802E5F2C; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802E5F48; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802E5F60; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802E5F7C; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802E5F98; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802E5FB0; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802E5FC8; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802E5FE0; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802E5FF8; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802E6010; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802E6028; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802E6040; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802E605C; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802E6074; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802E608C; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802E60A4; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802E6314; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802E6338; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E6350; // type:label scope:local +@1737 = .data:0x802E6350; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E6360; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802E636C; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802E6388; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802E63A8; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802E63C8; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802E63E8; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802E6408; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802E6428; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802E6448; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802E6468; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802E6488; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802E64A8; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802E64C8; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802E64DC; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802E64EC; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802E64F8; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802E6504; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802E6514; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802E6520; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802E652C; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802E6538; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802E654C; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802E6584; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802E6598; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802E65A8; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802E65B4; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E65C0; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802E65D4; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802E65FC; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802E6610; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802E661C; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802E6628; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802E663C; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802E664C; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802E6668; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802E668C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E66C0; // type:label scope:local +@1737 = .data:0x802E66C0; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E66D0; // type:object size:0x9 scope:local align:4 data:string +@1938 = .data:0x802E66DC; // type:object size:0x17 scope:local align:4 +@1941 = .data:0x802E66F4; // type:object size:0x17 scope:local align:4 +@2297 = .data:0x802E670C; // type:object size:0x1C scope:local align:4 data:string +@2298 = .data:0x802E6728; // type:object size:0x1E scope:local align:4 data:string +@2299 = .data:0x802E6748; // type:object size:0x1D scope:local align:4 data:string +@2300 = .data:0x802E6768; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802E6788; // type:object size:0x20 scope:local align:4 data:string +@2302 = .data:0x802E67A8; // type:object size:0x20 scope:local align:4 data:string +@2303 = .data:0x802E67C8; // type:object size:0x1D scope:local align:4 data:string +@2304 = .data:0x802E67E8; // type:object size:0x1D scope:local align:4 data:string +@2305 = .data:0x802E6808; // type:object size:0x1E scope:local align:4 data:string +@2306 = .data:0x802E6828; // type:object size:0x1D scope:local align:4 data:string +@2307 = .data:0x802E6848; // type:object size:0x1D scope:local align:4 data:string +@2308 = .data:0x802E6868; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802E687C; // type:object size:0xD scope:local align:4 data:string +@2309 = .data:0x802E688C; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802E6898; // type:object size:0xC scope:global align:4 +@2311 = .data:0x802E68A4; // type:object size:0x11 scope:local align:4 data:string +@2313 = .data:0x802E68B8; // type:object size:0xA scope:local align:4 data:string +@2314 = .data:0x802E68C4; // type:object size:0x12 scope:local align:4 data:string +@2315 = .data:0x802E68D8; // type:object size:0xC scope:local align:4 +@2312 = .data:0x802E68E4; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802E68F8; // type:object size:0x1C scope:weak align:4 +@2590 = .data:0x802E6914; // type:object size:0x12 scope:local align:4 data:string +@2591 = .data:0x802E6928; // type:object size:0xC scope:local align:4 +@2604 = .data:0x802E6954; // type:object size:0x10 scope:local align:4 data:string +@2606 = .data:0x802E6964; // type:object size:0x1A scope:local align:4 data:string +@2607 = .data:0x802E6980; // type:object size:0x14 scope:local align:4 +@2605 = .data:0x802E6994; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802E69B0; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E69D4; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E69E8; // type:object size:0x1F scope:local align:4 data:string +@2620 = .data:0x802E6A08; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E6A14; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802E6A28; // type:object size:0x1C scope:weak align:4 +@2631 = .data:0x802E6A44; // type:object size:0xE scope:local align:4 data:string +@2632 = .data:0x802E6A54; // type:object size:0x14 scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802E6A68; // type:object size:0x1C scope:weak align:4 +@2693 = .data:0x802E6AA0; // type:object size:0x11 scope:local align:4 data:string +@2695 = .data:0x802E6AB4; // type:object size:0xD scope:local align:4 data:string +@2696 = .data:0x802E6AC4; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802E6AD0; // type:object size:0xC scope:local align:4 +@2694 = .data:0x802E6ADC; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802E6AF0; // type:object size:0x28 scope:weak align:4 +@2698 = .data:0x802E6B18; // type:object size:0x13 scope:local align:4 data:string +@2701 = .data:0x802E6B2C; // type:object size:0x9 scope:local align:4 data:string +@2702 = .data:0x802E6B38; // type:object size:0xC scope:local align:4 +@2704 = .data:0x802E6B44; // type:object size:0x14 scope:local align:4 +@2705 = .data:0x802E6B58; // type:object size:0xF scope:local align:4 data:string +@2706 = .data:0x802E6B68; // type:object size:0x1C scope:local align:4 +@2699 = .data:0x802E6B84; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802E6BA8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E6BD8; // type:label scope:local +@1092 = .data:0x802E6BD8; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802E6BF0; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802E6C04; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802E6C10; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E6C28; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802E6C40; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802E6C58; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802E6C70; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802E6C84; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802E6C94; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802E6CA8; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802E6CB4; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802E6CC8; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802E6CF8; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802E6D04; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802E6D10; // type:object size:0xC scope:local align:4 data:4byte +@649 = .data:0x802E6D20; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802E6D2C; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802E6D38; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802E6D44; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802E6D50; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802E6D5C; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802E6D68; // type:object size:0xC scope:local align:4 data:4byte +...data.0 = .data:0x802E6D78; // type:label scope:local +@635 = .data:0x802E6D78; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802E6D88; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802E6D94; // type:object size:0xC scope:local align:4 +@650 = .data:0x802E6DA0; // type:object size:0xC scope:local align:4 +@652 = .data:0x802E6DAC; // type:object size:0xC scope:local align:4 +@727 = .data:0x802E6DB8; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802E6DC4; // type:object size:0xC scope:local align:4 +@817 = .data:0x802E6DD0; // type:object size:0xC scope:local align:4 +@824 = .data:0x802E6DDC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E6DE8; // type:label scope:local +@866 = .data:0x802E6DE8; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802E6DFC; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802E6E0C; // type:object size:0x16 scope:local align:4 data:string +@1118 = .data:0x802E6E24; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802E6E3C; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802E6E54; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802E6E60; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802E6E6C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802E6E78; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802E6E84; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802E6E90; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802E6E9C; // type:object size:0x17 scope:local align:4 data:string +@1363 = .data:0x802E6EB4; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E6ECC; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802E6ED8; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802E6EE4; // type:object size:0xC scope:weak align:4 +@1364 = .data:0x802E6EF0; // type:object size:0x1C scope:local align:4 data:string +@1366 = .data:0x802E6F0C; // type:object size:0xF scope:local align:4 data:string +@1367 = .data:0x802E6F1C; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802E6F30; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802E6F3C; // type:object size:0x14 scope:local align:4 data:string +@1370 = .data:0x802E6F50; // type:object size:0x1A scope:local align:4 data:string +@1371 = .data:0x802E6F6C; // type:object size:0x10 scope:local align:4 data:string +@1372 = .data:0x802E6F7C; // type:object size:0x14 scope:local align:4 +@1365 = .data:0x802E6F90; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E6FE8; // type:label scope:local +@660 = .data:0x802E6FE8; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802E6FFC; // type:object size:0xD scope:local align:4 data:string +@897 = .data:0x802E700C; // type:object size:0xC scope:local align:4 +@899 = .data:0x802E7018; // type:object size:0xC scope:local align:4 +@901 = .data:0x802E7024; // type:object size:0xC scope:local align:4 +@903 = .data:0x802E7030; // type:object size:0x12 scope:local align:4 data:string +@905 = .data:0x802E7044; // type:object size:0x10 scope:local align:4 data:string +@904 = .data:0x802E7054; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802E7060; // type:object size:0x2C scope:global align:4 +@901 = .data:0x802E7090; // type:object size:0x16 scope:local align:4 data:string +@977 = .data:0x802E70A8; // type:object size:0x15 scope:local align:4 data:string +@731 = .data:0x802E70C0; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802E70D8; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802E70F0; // type:object size:0x28 scope:local align:4 +@1152 = .data:0x802E7118; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802E7140; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802E7150; // type:object size:0xD scope:local align:4 data:string +@1446 = .data:0x802E7160; // type:object size:0x1C scope:local align:4 +@1466 = .data:0x802E717C; // type:object size:0x1C scope:local align:4 +@1481 = .data:0x802E7198; // type:object size:0x1C scope:local align:4 +@913 = .data:0x802E71B8; // type:object size:0x28 scope:local align:4 +@951 = .data:0x802E71E0; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802E7208; // type:label scope:local +@51 = .data:0x802E7208; // type:object size:0x1E scope:local align:4 data:string +@52 = .data:0x802E7228; // type:object size:0x16 scope:local align:4 data:string +@53 = .data:0x802E7240; // type:object size:0xC scope:local align:4 data:string +@54 = .data:0x802E724C; // type:object size:0x9 scope:local align:4 data:string +@55 = .data:0x802E7258; // type:object size:0x10 scope:local align:4 data:string +@56 = .data:0x802E7268; // type:object size:0xB scope:local align:4 data:string +@57 = .data:0x802E7274; // type:object size:0xE scope:local align:4 data:string +@58 = .data:0x802E7284; // type:object size:0xD scope:local align:4 data:string +@59 = .data:0x802E7294; // type:object size:0xD scope:local align:4 data:string +@60 = .data:0x802E72A4; // type:object size:0xD scope:local align:4 data:string +@61 = .data:0x802E72B4; // type:object size:0x12 scope:local align:4 data:string +@62 = .data:0x802E72C8; // type:object size:0xE scope:local align:4 data:string +@63 = .data:0x802E72D8; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802E72F0; // type:object size:0x3C scope:local align:4 +@97 = .data:0x802E732C; // type:object size:0x1B scope:local align:4 data:string +@98 = .data:0x802E7348; // type:object size:0x2E scope:local align:4 data:string +@99 = .data:0x802E7378; // type:object size:0x2F scope:local align:4 data:string +@100 = .data:0x802E73A8; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802E73C8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802E7448; // type:label scope:local +@69 = .data:0x802E7448; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802E7474; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802E748C; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802E74A8; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802E74D8; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802E7514; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802E754C; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802E758C; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802E75B8; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802E75D8; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802E75F4; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802E7610; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802E762C; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802E7644; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802E7678; // type:label scope:local +@59 = .data:0x802E7678; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802E76BC; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802E76EC; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802E771C; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802E774C; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802E7760; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802E7784; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802E7798; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802E77B4; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802E77C8; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802E77E8; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802E7810; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802E782C; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802E7850; // type:label scope:local +@10 = .data:0x802E7850; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802E7868; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802E7890; // type:object size:0x1C scope:local align:4 data:string +@29 = .data:0x802E78AC; // type:object size:0x1D scope:local align:4 data:string +@30 = .data:0x802E78CC; // type:object size:0x17 scope:local align:4 data:string +@32 = .data:0x802E78E4; // type:object size:0x30 scope:local align:4 data:string +@33 = .data:0x802E7914; // type:object size:0x60 scope:local align:4 data:string +@34 = .data:0x802E7974; // type:object size:0x4C scope:local align:4 data:string +@35 = .data:0x802E79C0; // type:object size:0x62 scope:local align:4 data:string +@36 = .data:0x802E7A24; // type:object size:0x60 scope:local align:4 data:string +InterruptPrioTable = .data:0x802E7A88; // type:object size:0x2C scope:local align:4 data:4byte +@99 = .data:0x802E7AB4; // type:object size:0x6C scope:local align:4 +...data.0 = .data:0x802E7B20; // type:label scope:local +Si = .data:0x802E7B20; // type:object size:0x14 scope:local align:4 data:4byte +...data.0 = .data:0x802E7B38; // type:label scope:local +@794 = .data:0x802E7B38; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802E7B98; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802E7BA4; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802E7C04; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802E7C4C; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802E7CCC; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802E7D4C; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802E7DC8; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802E7E44; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802E7E98; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802E7F0C; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802E7F48; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802E7F94; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802E7FE8; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802E803C; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802E8098; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802E80DC; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802E8118; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802E8154; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802E8198; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802E81DC; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802E8218; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802E8258; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802E82C0; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802E8308; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802E8348; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802E8378; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802E83A8; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802E83C0; // type:label scope:local +@117 = .data:0x802E83C0; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802E8488; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802E84C0; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802E84F4; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802E8524; // type:object size:0x27 scope:local align:4 data:string +@328 = .data:0x802E854C; // type:object size:0x66 scope:local align:4 data:string +@329 = .data:0x802E85B4; // type:object size:0x55 scope:local align:4 data:string +@330 = .data:0x802E860C; // type:object size:0x5C scope:local align:4 data:string +@361 = .data:0x802E8668; // type:object size:0x61 scope:local align:4 data:string +@362 = .data:0x802E86CC; // type:object size:0x50 scope:local align:4 data:string +@363 = .data:0x802E871C; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802E8778; // type:label scope:local +@13 = .data:0x802E8778; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802E8790; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802E879C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802E87B8; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802E87C4; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802E87E4; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802E8824; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802E8858; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802E8890; // type:object size:0x40 scope:local align:4 data:4byte +...data.0 = .data:0x802E88D0; // type:label scope:local +@36 = .data:0x802E88D0; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802E88EC; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802E8904; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802E8918; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802E892C; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802E8940; // type:label scope:local +timing = .data:0x802E8940; // type:object size:0x10A scope:local align:4 +taps = .data:0x802E8A4C; // type:object size:0x32 scope:local align:4 +@87 = .data:0x802E8A80; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802E8AA8; // type:label scope:local +ResetFunctionInfo = .data:0x802E8AA8; // type:object size:0x10 scope:local align:4 +XYNTSC = .data:0x802E8AB8; // type:object size:0x18 scope:local align:4 +XYPAL = .data:0x802E8AD0; // type:object size:0x18 scope:local align:4 +@414 = .data:0x802E8AE8; // type:object size:0x26 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802E8B10; // type:object size:0x10 scope:local align:4 +SectorSizeTable = .data:0x802E8B20; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802E8B40; // type:object size:0x20 scope:local align:4 +@124 = .data:0x802E8B60; // type:object size:0x68 scope:local align:4 +@183 = .data:0x802E8BC8; // type:object size:0x68 scope:local align:4 +@292 = .data:0x802E8C30; // type:object size:0x44 scope:local align:4 +@319 = .data:0x802E8C74; // type:object size:0x44 scope:local align:4 +@489 = .data:0x802E8CB8; // type:object size:0x1C scope:local align:4 +@488 = .data:0x802E8CD4; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802E8D28; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802E8D64; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802E8DA0; // type:object size:0x3C scope:global align:4 data:byte +@133 = .data:0x802E8DE0; // type:object size:0xF4 scope:local align:4 +@163 = .data:0x802E8ED4; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802E8F10; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802E8F38; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802E8F58; // type:label scope:local +__files = .data:0x802E8F58; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802E9030; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802E9060; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802E90E4; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802E9168; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802E9238; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802E9280; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802E9350; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802E9394; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802E93D8; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802E93DC; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802E93E0; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802E93E8; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802E93F0; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802E93F8; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802E9400; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802E9408; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802E9410; // type:label scope:local +__four_over_pi_m1 = .data:0x802E9410; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802E9420; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802E94A8; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802E94C4; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802E94E0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802E94EC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802E94FC; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802E9510; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802E9550; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802E9570; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802E95A0; // type:label scope:local +dac = .bss:0x802E95A0; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802E95AC; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802E95C0; // type:label scope:local +audioproc_mq = .bss:0x802E95C0; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802E95E0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802E9620; // type:label scope:local +finfo$42 = .bss:0x802E9620; // type:object size:0x3C scope:local align:4 +cmd$43 = .bss:0x802E965C; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802E9690; // type:label scope:local +dsp_buf = .bss:0x802E9690; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802E96A0; // type:label scope:local +dsp_buf = .bss:0x802E96A0; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802E96B0; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802E96B0; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802E9770; // type:label scope:local +mq = .bss:0x802E9770; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802E9790; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802E9990; // type:object size:0x8000 scope:local align:4 +finfo$221 = .bss:0x802F1990; // type:object size:0x3C scope:local align:4 +req$222 = .bss:0x802F19CC; // type:object size:0x80 scope:local align:4 +finfo$264 = .bss:0x802F1A4C; // type:object size:0x3C scope:local align:4 +req$265 = .bss:0x802F1A88; // type:object size:0x20 scope:local align:4 +finfo$272 = .bss:0x802F1AA8; // type:object size:0x3C scope:local align:4 +req$273 = .bss:0x802F1AE4; // type:object size:0x20 scope:local align:4 +finfo$290 = .bss:0x802F1B04; // type:object size:0x3C scope:local align:4 +finfo$307 = .bss:0x802F1B40; // type:object size:0x3C scope:local align:4 +finfo$312 = .bss:0x802F1B7C; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802F1BB8; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802F23B8; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F2440; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802F2440; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802F24C0; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x803064C0; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x80306540; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x803065C0; // type:label scope:local +DSPCH = .bss:0x803065C0; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x803069C0; // type:object size:0x6000 scope:local align:32 +FX_BUF = .bss:0x8030C9C0; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x8030CA40; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x8030CE40; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x8030D240; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x8030D640; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x8030D840; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x8030DA40; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x8030DE48; // type:label scope:local +FH_TO_FAT = .bss:0x8030DE48; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x8030E248; // type:object size:0x800 scope:local align:4 +fattmp = .bss:0x8030EA48; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x8030F248; // type:label scope:local +JV_DIR_NAME = .bss:0x8030F248; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x8030F648; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x8030F848; // type:object size:0x40 scope:local align:4 +finfo$150 = .bss:0x8030F888; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x8030F8E0; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x8031F8E0; // type:label scope:local +TRACK_LIST = .bss:0x8031F8E0; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x8031F9E0; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x8031FA00; // type:label scope:local +seq = .bss:0x8031FA00; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x80362E00; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x80363200; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x80363240; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x80363640; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x80363650; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x803636BC; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80363728; // type:label scope:local +player_se$123 = .bss:0x80363728; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x80363794; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x80363800; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x80363840; // type:label scope:local +bgm = .bss:0x80363840; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x80364578; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x803645E8; // type:label scope:local +seq_loadbuffer = .bss:0x803645E8; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x803649E8; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x80368D28; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x80368D68; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x80368E00; // type:label scope:local +SC = .bss:0x80368E00; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x8038A850; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x8038A868; // type:label scope:local +interleavebuf = .bss:0x8038A868; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x8038A8A0; // type:label scope:local +filename = .bss:0x8038A8A0; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x8038A8E0; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x8038A8EC; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x8038A930; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x8038A948; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x8038AC60; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x8038BC60; // type:label scope:local +clipTable = .bss:0x8038BC60; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x8038BE60; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x8038BEA0; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x8038C6A0; // type:label scope:local +fnVerts = .bss:0x8038C6A0; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x8038DEA0; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x8038F6A0; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x803906A0; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x803907A0; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x803947A0; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x803987A0; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x803987E0; // type:label scope:local +@588 = .bss:0x803987E0; // type:object size:0xC scope:local align:4 +sys = .bss:0x803987EC; // type:object size:0x334 scope:global align:4 +dvdMesgQueue = .bss:0x80398B20; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x80398B40; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x80398B60; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x80398B80; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x80398B94; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x80398C94; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x80398CE8; // type:object size:0x20 scope:local align:4 +mMemoryTable$1026 = .bss:0x80398D08; // type:object size:0xC scope:local align:4 +Thread = .bss:0x80398D18; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x80399040; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x8039B040; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x8039B360; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x8039D360; // type:label scope:local +sControllerPad = .bss:0x8039D360; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x8039D390; // type:label scope:local +GColors = .bss:0x8039D390; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x8039D398; // type:label scope:local +CardThread = .bss:0x8039D398; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x8039D6A8; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x8039D718; // type:label scope:local +gameflow = .bss:0x8039D718; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x8039DA80; // type:label scope:local +flowCont = .bss:0x8039DA80; // type:object size:0x25C scope:global align:4 data:4byte +...bss.0 = .bss:0x8039DCE0; // type:label scope:local +resultTable = .bss:0x8039DCE0; // type:object size:0x40 scope:local align:4 data:4byte +...bss.0 = .bss:0x8039DD20; // type:label scope:local +collExtents = .bss:0x8039DD20; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x8039DD38; // type:label scope:local +bcs = .bss:0x8039DD38; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x8039E140; // type:label scope:local +cst = .bss:0x8039E140; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x8039E1C0; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803A81C0; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803CE1C0; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D01C0; // type:label scope:local +YtexObj = .bss:0x803D01C0; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D01E0; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D0200; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D0510; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803D1510; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803D1550; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D1D50; // type:label scope:local +pikiInfMgr = .bss:0x803D1D50; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D1D78; // type:label scope:local +pikiColors__4Piki = .bss:0x803D1D78; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803D1D90; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803D1DA8; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803D1DA8; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D1DB8; // type:label scope:local +deadPikis__8GameStat = .bss:0x803D1DB8; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803D1DC4; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803D1DD0; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803D1DDC; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803D1DE8; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803D1DF4; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803D1E00; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803D1E0C; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803D1E18; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803D1E24; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803D1E30; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803D1E40; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803D2240; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803D2240; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D2268; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803D2268; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803D22C0; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803D22E8; // type:object size:0x28 scope:global align:4 data:4byte +OSErrorTable = .bss:0x803D2310; // type:object size:0x3C scope:local align:4 +Ecb = .bss:0x803D2350; // type:object size:0xA8 scope:local align:4 +...bss.0 = .bss:0x803D2400; // type:label scope:local +Header = .bss:0x803D2400; // type:object size:0x20 scope:global align:32 +...bss.0 = .bss:0x803D2420; // type:label scope:local +Scb = .bss:0x803D2420; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803D2478; // type:label scope:local +Packet = .bss:0x803D2478; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803D24F8; // type:object size:0xA0 scope:local align:8 +...bss.0 = .bss:0x803D2598; // type:label scope:local +RunQueue = .bss:0x803D2598; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803D2698; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803D29A8; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803D2CB8; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803D2F80; // type:label scope:local +CommandList = .bss:0x803D2F80; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803D2FC0; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803D2FE8; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803D3010; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803D3038; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803D3044; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803D3060; // type:label scope:local +tmpBuffer = .bss:0x803D3060; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803D30E0; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803D3110; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803D3138; // type:label scope:local +WaitingQueue = .bss:0x803D3138; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803D3158; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803D3198; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803D31C8; // type:label scope:local +regs = .bss:0x803D31C8; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803D3240; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803D32B8; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x803D3310; // type:label scope:local +PADType = .bss:0x803D3310; // type:object size:0x10 scope:local align:4 +Type = .bss:0x803D3320; // type:object size:0x10 scope:local align:4 data:4byte +Origin = .bss:0x803D3330; // type:object size:0x30 scope:local align:4 +cmdProbeDevice = .bss:0x803D3360; // type:object size:0x10 scope:local align:4 +cmdFixDevice = .bss:0x803D3370; // type:object size:0x10 scope:local align:4 +__CARDBlock = .bss:0x803D3380; // type:object size:0x210 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803D3590; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803D35B0; // type:label scope:local +gxData = .bss:0x803D35B0; // type:object size:0x4F4 scope:local align:4 +FifoObj = .bss:0x803D3AA4; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803D3B28; // type:label scope:local +DisplayListFifo = .bss:0x803D3B28; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803D3B4C; // type:object size:0x4F4 scope:local align:4 +fragmentinfo = .bss:0x803D4040; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803D4050; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803D4150; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803D4250; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803D4278; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803D4280; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803D5C30; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803D5C44; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803D5C48; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803D5C50; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803D5C54; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803D5CE8; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803D5CF8; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803D5DA0; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803D61D0; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803D61D8; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D61E0; // type:label scope:local +Ecb = .bss:0x803D61E0; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803D61F8; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803D6220; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803D8B60; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803D8B60; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803D9B60; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803D9E80; // type:object size:0x1000 scope:global align:32 +EX_DSPTASK = .bss:0x803DAE80; // type:object size:0x40 scope:global align:4 +CGRP_ARRAY = .bss:0x803DAEC0; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803DAF00; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803DAF2C; // type:object size:0x1B40 scope:global align:4 +CAMERA = .bss:0x803DAF2C; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803DCA90; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803DCC40; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803DCC80; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803DCC84; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803DCC88; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803DCC8C; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803DCC90; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803DCC98; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803DCC9C; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$81 = .sdata:0x803DCCA0; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$82 = .sdata:0x803DCCA8; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803DCCB0; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803DCCB4; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803DCCB8; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803DCCBC; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803DCCC0; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803DCCC8; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803DCCD0; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803DCCD1; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803DCCD4; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803DCCD8; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803DCCE0; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803DCCE8; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803DCCEC; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803DCCF0; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803DCCF8; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803DCD00; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803DCD08; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803DCD10; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803DCD18; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803DCD20; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803DCD28; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803DCD30; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803DCD38; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803DCD40; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803DCD48; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803DCD50; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803DCD58; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803DCD60; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803DCD64; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803DCD68; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803DCD6C; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803DCD6E; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803DCD70; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803DCD74; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803DCD78; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803DCD7C; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803DCD84; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803DCD88; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803DCD90; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803DCD98; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803DCDA0; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803DCDA8; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803DCDB0; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803DCDB8; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803DCDC0; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803DCDC4; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803DCDC8; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803DCDD0; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803DCDD8; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803DCDE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DCDE8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DCDF0; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803DCDF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DCE00; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803DCE08; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803DCE10; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DCE18; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803DCE20; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DCE28; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DCE30; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803DCE38; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803DCE40; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803DCE44; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803DCE48; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803DCE4C; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803DCE50; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803DCE54; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803DCE58; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803DCE5C; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803DCE60; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803DCE64; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803DCE68; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803DCE6C; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803DCE70; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803DCE74; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803DCE7C; // type:object size:0x8 scope:local align:4 data:string +@1666 = .sdata:0x803DCE84; // type:object size:0x1 scope:local align:4 +@1777 = .sdata:0x803DCE88; // type:object size:0x8 scope:local align:4 data:string +@1857 = .sdata:0x803DCE90; // type:object size:0x6 scope:local align:4 data:string +@1866 = .sdata:0x803DCE98; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata:0x803DCE9C; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata:0x803DCEA0; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata:0x803DCEA4; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata:0x803DCEA8; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata:0x803DCEAC; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata:0x803DCEB0; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata:0x803DCEB4; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata:0x803DCEB8; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata:0x803DCEBC; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata:0x803DCEC0; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata:0x803DCEC4; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803DCEC8; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata:0x803DCECC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803DCED0; // type:object size:0x8 scope:local align:4 +@2166 = .sdata:0x803DCED8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803DCEE0; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803DCEE8; // type:object size:0x8 scope:local align:4 +@2168 = .sdata:0x803DCEF0; // type:object size:0x8 scope:local align:4 data:string +@2170 = .sdata:0x803DCEF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DCF00; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DCF08; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803DCF10; // type:object size:0x8 scope:local align:4 +@2174 = .sdata:0x803DCF18; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803DCF20; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803DCF28; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803DCF30; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803DCF38; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803DCF40; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803DCF44; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803DCF48; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803DCF4C; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803DCF50; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803DCF54; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803DCF58; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803DCF5C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803DCF60; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803DCF64; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803DCF6C; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803DCF74; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DCF7C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DCF84; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803DCF8C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DCF98; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DCF9C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DCFA0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DCFA4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DCFA8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DCFAC; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803DCFB0; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803DCFB4; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803DCFB8; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803DCFBC; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803DCFC4; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803DCFC8; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803DCFCC; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803DCFD0; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803DCFD8; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803DCFDC; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803DCFE4; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803DCFEC; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803DCFF0; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803DCFF4; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803DCFFC; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803DD004; // type:object size:0x8 scope:local align:4 data:string +@1683 = .sdata:0x803DD00C; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803DD014; // type:object size:0x5 scope:local align:4 data:string +@1685 = .sdata:0x803DD01C; // type:object size:0x7 scope:local align:4 data:string +@1686 = .sdata:0x803DD024; // type:object size:0x6 scope:local align:4 data:string +@2218 = .sdata:0x803DD02C; // type:object size:0x6 scope:local align:4 data:string +@2328 = .sdata:0x803DD034; // type:object size:0x7 scope:local align:4 data:string +@2780 = .sdata:0x803DD03C; // type:object size:0x5 scope:local align:4 data:string +@2786 = .sdata:0x803DD044; // type:object size:0x8 scope:local align:4 data:string +@3626 = .sdata:0x803DD04C; // type:object size:0x5 scope:local align:4 data:string +@3667 = .sdata:0x803DD054; // type:object size:0x7 scope:local align:4 data:string +@4269 = .sdata:0x803DD05C; // type:object size:0x5 scope:local align:4 data:string +@4270 = .sdata:0x803DD064; // type:object size:0x5 scope:local align:4 data:string +@4308 = .sdata:0x803DD06C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803DD074; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803DD07C; // type:object size:0x8 scope:local align:4 +@4573 = .sdata:0x803DD084; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD08C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD094; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803DD09C; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803DD0A4; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803DD0AC; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803DD0B4; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803DD0BC; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803DD0C4; // type:object size:0x8 scope:local align:4 +@4590 = .sdata:0x803DD0CC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803DD0D4; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803DD0DC; // type:object size:0x8 scope:local align:4 +@4595 = .sdata:0x803DD0E4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803DD0EC; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803DD0F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803DD0FC; // type:object size:0x8 scope:local align:4 +@4600 = .sdata:0x803DD104; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803DD10C; // type:object size:0x8 scope:local align:4 +@4602 = .sdata:0x803DD114; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803DD11C; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803DD124; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803DD12C; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803DD138; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803DD140; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803DD144; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803DD148; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803DD150; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803DD158; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803DD15C; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803DD164; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803DD168; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803DD170; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803DD178; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803DD180; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803DD184; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803DD188; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803DD18C; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803DD190; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803DD198; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803DD1A0; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803DD1A4; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803DD1A8; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803DD1B0; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803DD1B8; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803DD1BC; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803DD1C0; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803DD1C4; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803DD1CC; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803DD1D0; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803DD1D4; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803DD1DC; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803DD1E4; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DD1E8; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DD1EC; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DD1F0; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DD1F4; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803DD1F8; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803DD1FC; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803DD204; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803DD20C; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803DD214; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803DD21C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD224; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD22C; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803DD234; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803DD23C; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803DD244; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803DD24C; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803DD258; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803DD25C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803DD260; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803DD264; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803DD268; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803DD26C; // type:object size:0x4 scope:global align:4 data:float +@870 = .sdata:0x803DD270; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803DD278; // type:object size:0x1 scope:local align:4 +@691 = .sdata:0x803DD27C; // type:object size:0x3 scope:local align:4 data:string +@844 = .sdata:0x803DD280; // type:object size:0x8 scope:local align:4 data:string +@952 = .sdata:0x803DD288; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803DD290; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803DD298; // type:object size:0x8 scope:local align:4 +@1004 = .sdata:0x803DD2A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD2A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD2B0; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803DD2B8; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803DD2C0; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803DD2C8; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803DD2D0; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803DD2D8; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803DD2E0; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803DD2E8; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803DD2F0; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803DD2F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD300; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD308; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803DD310; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803DD318; // type:object size:0x8 scope:local align:4 +@424 = .sdata:0x803DD320; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD328; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD330; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803DD338; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD340; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803DD348; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803DD350; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803DD354; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803DD358; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803DD35C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803DD360; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803DD364; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803DD368; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803DD36C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803DD370; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803DD374; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803DD378; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803DD37C; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803DD380; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803DD384; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803DD388; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803DD38C; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803DD390; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803DD394; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803DD398; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803DD39C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803DD3A0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803DD3A4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803DD3A8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803DD3AC; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803DD3B0; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803DD3B4; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803DD3B8; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803DD3BC; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803DD3C0; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803DD3C4; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803DD3C8; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803DD3CC; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803DD3D0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD3D8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD3E0; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803DD3E8; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803DD3F0; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803DD3F8; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803DD400; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803DD404; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803DD40C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803DD410; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803DD418; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803DD420; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD428; // type:object size:0x8 scope:local align:4 +@587 = .sdata:0x803DD430; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803DD438; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803DD43C; // type:object size:0x4 scope:global align:4 data:4byte +@686 = .sdata:0x803DD440; // type:object size:0x1 scope:local align:4 +@687 = .sdata:0x803DD444; // type:object size:0x3 scope:local align:4 data:string +@688 = .sdata:0x803DD448; // type:object size:0x7 scope:local align:4 data:string +@908 = .sdata:0x803DD450; // type:object size:0x6 scope:local align:4 data:string +@909 = .sdata:0x803DD458; // type:object size:0x7 scope:local align:4 data:string +@910 = .sdata:0x803DD460; // type:object size:0x5 scope:local align:4 data:string +@911 = .sdata:0x803DD468; // type:object size:0x3 scope:local align:4 data:string +@912 = .sdata:0x803DD46C; // type:object size:0x7 scope:local align:4 data:string +@950 = .sdata:0x803DD474; // type:object size:0x5 scope:local align:4 data:string +@981 = .sdata:0x803DD47C; // type:object size:0x7 scope:local align:4 data:string +@1087 = .sdata:0x803DD484; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803DD488; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803DD490; // type:object size:0x8 scope:local align:4 +@1275 = .sdata:0x803DD498; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD4A0; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803DD4A8; // type:object size:0x8 scope:local align:4 +@1278 = .sdata:0x803DD4B0; // type:object size:0x4 scope:local align:4 data:string +@1297 = .sdata:0x803DD4B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD4BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD4C4; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803DD4CC; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803DD4D4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD4DC; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803DD4E4; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803DD4EC; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803DD4F4; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803DD4FC; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803DD508; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803DD510; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803DD518; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803DD51C; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803DD520; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803DD524; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803DD528; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803DD52C; // type:object size:0x8 scope:local align:4 data:byte +@1357 = .sdata:0x803DD534; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803DD538; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803DD53C; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803DD540; // type:object size:0x4 scope:local align:4 data:float +@1441 = .sdata:0x803DD544; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata:0x803DD548; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata:0x803DD54C; // type:object size:0x4 scope:local align:4 data:float +@1447 = .sdata:0x803DD550; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata:0x803DD554; // type:object size:0x6 scope:local align:4 data:string +@2095 = .sdata:0x803DD55C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD564; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD56C; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803DD574; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803DD57C; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803DD584; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803DD58C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DD598; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DD59C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DD5A0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DD5A4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DD5A8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DD5AC; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DD5B0; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DD5B4; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DD5B8; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DD5BC; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803DD5C0; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DD5C4; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803DD5C8; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803DD5CC; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803DD5D0; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803DD5D4; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803DD5D8; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803DD5DC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803DD5E0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803DD5E4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803DD5E8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803DD5EC; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803DD5F0; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803DD5F4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803DD5F8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803DD5FC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803DD600; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803DD604; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803DD608; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803DD60C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803DD610; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803DD614; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803DD618; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803DD61C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD624; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD62C; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803DD634; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD63C; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DD644; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803DD650; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803DD658; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803DD65C; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803DD660; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803DD664; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803DD668; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803DD66C; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803DD674; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803DD67C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803DD680; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803DD688; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD690; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD698; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803DD6A0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DD6A8; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803DD6B0; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803DD6B8; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803DD6C0; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803DD6C8; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803DD6D0; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803DD6D8; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803DD6E0; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803DD6E8; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803DD6F0; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803DD6F8; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803DD700; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803DD708; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803DD710; // type:object size:0x1 scope:local align:4 +@2270 = .sdata:0x803DD714; // type:object size:0x4 scope:local align:4 data:4byte +@2272 = .sdata:0x803DD718; // type:object size:0x4 scope:local align:4 data:4byte +@2274 = .sdata:0x803DD71C; // type:object size:0x4 scope:local align:4 data:4byte +@2276 = .sdata:0x803DD720; // type:object size:0x4 scope:local align:4 data:4byte +@2277 = .sdata:0x803DD724; // type:object size:0x4 scope:local align:4 data:4byte +@2279 = .sdata:0x803DD728; // type:object size:0x4 scope:local align:4 data:4byte +@2281 = .sdata:0x803DD72C; // type:object size:0x4 scope:local align:4 data:4byte +@2283 = .sdata:0x803DD730; // type:object size:0x4 scope:local align:4 data:4byte +@2285 = .sdata:0x803DD734; // type:object size:0x4 scope:local align:4 data:4byte +@2287 = .sdata:0x803DD738; // type:object size:0x4 scope:local align:4 data:4byte +@2289 = .sdata:0x803DD73C; // type:object size:0x4 scope:local align:4 data:4byte +@2290 = .sdata:0x803DD740; // type:object size:0x4 scope:local align:4 data:4byte +@2291 = .sdata:0x803DD744; // type:object size:0x4 scope:local align:4 data:4byte +@2292 = .sdata:0x803DD748; // type:object size:0x5 scope:local align:4 data:string +@2293 = .sdata:0x803DD750; // type:object size:0x5 scope:local align:4 data:string +@2295 = .sdata:0x803DD758; // type:object size:0x7 scope:local align:4 data:string +@2458 = .sdata:0x803DD760; // type:object size:0x4 scope:local align:4 data:string +@2459 = .sdata:0x803DD764; // type:object size:0x7 scope:local align:4 data:string +@2461 = .sdata:0x803DD76C; // type:object size:0x8 scope:local align:4 data:string +@2496 = .sdata:0x803DD774; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD77C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD784; // type:object size:0x8 scope:local align:4 +@2499 = .sdata:0x803DD78C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD794; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803DD79C; // type:object size:0x8 scope:local align:4 +@2510 = .sdata:0x803DD7A4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD7AC; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803DD7B4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DD7BC; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803DD7C4; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DD7CC; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803DD7D4; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803DD7DC; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803DD7E4; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803DD7EC; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803DD7F8; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803DD800; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803DD804; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803DD808; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803DD80C; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803DD814; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803DD81C; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803DD824; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803DD82C; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803DD830; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803DD838; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803DD840; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD848; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD850; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803DD858; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD860; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803DD868; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD870; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803DD878; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803DD880; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803DD888; // type:object size:0x8 scope:local align:4 +@972 = .sdata:0x803DD890; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD898; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD8A0; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803DD8A8; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803DD8B0; // type:object size:0x8 scope:local align:4 +@1146 = .sdata:0x803DD8B8; // type:object size:0x1 scope:local align:4 +@1188 = .sdata:0x803DD8BC; // type:object size:0x7 scope:local align:4 data:string +@1190 = .sdata:0x803DD8C4; // type:object size:0x6 scope:local align:4 data:string +@1203 = .sdata:0x803DD8CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD8D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD8DC; // type:object size:0x8 scope:local align:4 +@1206 = .sdata:0x803DD8E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD8EC; // type:object size:0x8 scope:local align:4 +@1208 = .sdata:0x803DD8F4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD8FC; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803DD904; // type:object size:0x8 scope:local align:4 +@1220 = .sdata:0x803DD90C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD914; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD91C; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803DD924; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803DD930; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803DD938; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD940; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD948; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803DD950; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD958; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803DD960; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803DD968; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803DD96C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD974; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803DD97C; // type:object size:0x8 scope:local align:4 +@1333 = .sdata:0x803DD988; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803DD98C; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803DD994; // type:object size:0x8 scope:local align:4 data:string +@1430 = .sdata:0x803DD99C; // type:object size:0x1 scope:local align:4 +@1465 = .sdata:0x803DD9A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD9A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD9B0; // type:object size:0x8 scope:local align:4 +@1470 = .sdata:0x803DD9B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD9C0; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803DD9C8; // type:object size:0x8 scope:local align:4 +@1571 = .sdata:0x803DD9D0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD9D8; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803DD9E0; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DD9E8; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803DD9F0; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803DD9F8; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803DDA00; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803DDA04; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803DDA08; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803DDA0C; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803DDA10; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803DDA14; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803DDA18; // type:object size:0x1 scope:local align:4 +@2295 = .sdata:0x803DDA1C; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803DDA20; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803DDA24; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803DDA28; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803DDA2C; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803DDA30; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata:0x803DDA34; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata:0x803DDA38; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata:0x803DDA3C; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata:0x803DDA40; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata:0x803DDA44; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata:0x803DDA48; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata:0x803DDA4C; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803DDA50; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803DDA54; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803DDA58; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata:0x803DDA5C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803DDA60; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata:0x803DDA64; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata:0x803DDA68; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata:0x803DDA6C; // type:object size:0x4 scope:local align:4 data:float +@2814 = .sdata:0x803DDA70; // type:object size:0x4 scope:local align:4 data:float +@2815 = .sdata:0x803DDA74; // type:object size:0x4 scope:local align:4 data:float +@2816 = .sdata:0x803DDA78; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata:0x803DDA7C; // type:object size:0x7 scope:local align:4 data:string +@3086 = .sdata:0x803DDA84; // type:object size:0x4 scope:local align:4 data:string +@3089 = .sdata:0x803DDA88; // type:object size:0x5 scope:local align:4 data:string +@3090 = .sdata:0x803DDA90; // type:object size:0x6 scope:local align:4 data:string +@3091 = .sdata:0x803DDA98; // type:object size:0x7 scope:local align:4 data:string +@3093 = .sdata:0x803DDAA0; // type:object size:0x6 scope:local align:4 data:string +@3094 = .sdata:0x803DDAA8; // type:object size:0x8 scope:local align:4 data:string +@3115 = .sdata:0x803DDAB0; // type:object size:0x4 scope:local align:4 data:string +@3116 = .sdata:0x803DDAB4; // type:object size:0x6 scope:local align:4 data:string +@3142 = .sdata:0x803DDABC; // type:object size:0x3 scope:local align:4 data:string +@3144 = .sdata:0x803DDAC0; // type:object size:0x3 scope:local align:4 data:string +@3145 = .sdata:0x803DDAC4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803DDACC; // type:object size:0x8 scope:local align:4 +@3175 = .sdata:0x803DDAD4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDADC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDAE4; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803DDAEC; // type:object size:0x8 scope:local align:4 +@3182 = .sdata:0x803DDAF4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDAFC; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803DDB04; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803DDB0C; // type:object size:0x8 scope:local align:4 +@3360 = .sdata:0x803DDB14; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDB1C; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803DDB24; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803DDB2C; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803DDB34; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803DDB3C; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803DDB44; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803DDB4C; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803DDB54; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803DDB5C; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803DDB68; // type:object size:0x4 scope:local align:4 data:float +@1227 = .sdata:0x803DDB6C; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata:0x803DDB70; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803DDB74; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803DDB78; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803DDB7C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803DDB80; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803DDB84; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803DDB88; // type:object size:0x4 scope:local align:4 data:float +@1243 = .sdata:0x803DDB8C; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803DDB90; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803DDB94; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803DDB98; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803DDB9C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803DDBA0; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803DDBA4; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803DDBAC; // type:object size:0x6 scope:local align:4 data:string +@1310 = .sdata:0x803DDBB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDBBC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDBC4; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803DDBCC; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803DDBD4; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803DDBDC; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803DDBE4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDBEC; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803DDBF4; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803DDBFC; // type:object size:0x8 scope:local align:4 +@1418 = .sdata:0x803DDC04; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDC0C; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803DDC14; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803DDC20; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803DDC28; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803DDC2C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDC34; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDC3C; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803DDC44; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDC4C; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803DDC54; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDC5C; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803DDC64; // type:object size:0x8 scope:local align:4 +@724 = .sdata:0x803DDC70; // type:object size:0x4 scope:local align:4 data:float +@725 = .sdata:0x803DDC74; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata:0x803DDC78; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata:0x803DDC7C; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803DDC80; // type:object size:0x1 scope:local align:4 +@863 = .sdata:0x803DDC84; // type:object size:0x4 scope:local align:4 data:float +@864 = .sdata:0x803DDC88; // type:object size:0x4 scope:local align:4 data:float +@865 = .sdata:0x803DDC8C; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803DDC90; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803DDC94; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata:0x803DDC98; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata:0x803DDC9C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803DDCA0; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata:0x803DDCA4; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803DDCA8; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803DDCAC; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803DDCB0; // type:object size:0x4 scope:local align:4 data:float +@956 = .sdata:0x803DDCB4; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata:0x803DDCB8; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803DDCC0; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DDCC4; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DDCC8; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DDCCC; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DDCD0; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DDCD4; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803DDCD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDCE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDCE8; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803DDCF0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDCF8; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DDD00; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803DDD08; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803DDD10; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DDD18; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803DDD20; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DDD28; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DDD30; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803DDD38; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803DDD40; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803DDD48; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803DDD50; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803DDD54; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803DDD5C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDD64; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDD6C; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803DDD74; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDD7C; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803DDD84; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DDD90; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803DDD98; // type:object size:0x4 scope:local align:4 data:string +@802 = .sdata:0x803DDD9C; // type:object size:0x8 scope:local align:4 data:string +@804 = .sdata:0x803DDDA4; // type:object size:0x8 scope:local align:4 data:string +@830 = .sdata:0x803DDDAC; // type:object size:0x4 scope:local align:4 data:string +@861 = .sdata:0x803DDDB0; // type:object size:0x4 scope:local align:4 data:string +@868 = .sdata:0x803DDDB4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DDDBC; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803DDDC4; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803DDDCC; // type:object size:0x8 scope:local align:4 +@872 = .sdata:0x803DDDD4; // type:object size:0x8 scope:local align:4 data:string +@874 = .sdata:0x803DDDDC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDDE4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDDEC; // type:object size:0x8 scope:local align:4 +@877 = .sdata:0x803DDDF4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDDFC; // type:object size:0x8 scope:local align:4 +@879 = .sdata:0x803DDE04; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803DDE0C; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803DDE14; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803DDE1C; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803DDE28; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803DDE2C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803DDE30; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata:0x803DDE34; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803DDE38; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803DDE3C; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata:0x803DDE40; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803DDE44; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803DDE48; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803DDE4C; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803DDE50; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803DDE54; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803DDE58; // type:object size:0x4 scope:local align:4 data:float +@1288 = .sdata:0x803DDE5C; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803DDE60; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803DDE64; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803DDE68; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803DDE6C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803DDE70; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803DDE74; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata:0x803DDE78; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803DDE7C; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803DDE80; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803DDE84; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803DDE88; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803DDE8C; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DDE90; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803DDE94; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803DDE98; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata:0x803DDE9C; // type:object size:0x7 scope:local align:4 data:string +@1483 = .sdata:0x803DDEA4; // type:object size:0x7 scope:local align:4 data:string +@1508 = .sdata:0x803DDEAC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDEB4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDEBC; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DDEC4; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803DDECC; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803DDED4; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803DDEDC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDEE4; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803DDEEC; // type:object size:0x8 scope:local align:4 +@1769 = .sdata:0x803DDEF4; // type:object size:0x1 scope:local align:4 +@1799 = .sdata:0x803DDEF8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDF00; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803DDF08; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803DDF10; // type:object size:0x8 scope:local align:4 +@941 = .sdata:0x803DDF18; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803DDF20; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDF28; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDF30; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803DDF38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDF40; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803DDF48; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803DDF50; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDF58; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803DDF60; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DDF68; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DDF6C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DDF70; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DDF74; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DDF78; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DDF7C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803DDF80; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803DDF84; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803DDF88; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803DDF8C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803DDF90; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803DDF94; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803DDF98; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803DDF9C; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803DDFA0; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803DDFA4; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803DDFA8; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803DDFAC; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803DDFB0; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803DDFB4; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803DDFB8; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803DDFBC; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803DDFC0; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803DDFC4; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803DDFC8; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803DDFCC; // type:object size:0x4 scope:local align:4 data:float +@2552 = .sdata:0x803DDFD0; // type:object size:0x5 scope:local align:4 data:string +@2555 = .sdata:0x803DDFD8; // type:object size:0x3 scope:local align:4 data:string +@2557 = .sdata:0x803DDFDC; // type:object size:0x3 scope:local align:4 data:string +@2565 = .sdata:0x803DDFE0; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata:0x803DDFE4; // type:object size:0x4 scope:local align:4 data:float +@2567 = .sdata:0x803DDFE8; // type:object size:0x4 scope:local align:4 data:float +@2568 = .sdata:0x803DDFEC; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803DDFF0; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803DDFF4; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803DDFF8; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803DDFFC; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803DE000; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803DE004; // type:object size:0x5 scope:local align:4 data:string +@2884 = .sdata:0x803DE00C; // type:object size:0x7 scope:local align:4 data:string +@2887 = .sdata:0x803DE014; // type:object size:0x6 scope:local align:4 data:string +@2927 = .sdata:0x803DE01C; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803DE020; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803DE024; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803DE028; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803DE02C; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803DE030; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803DE034; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803DE038; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803DE03C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803DE040; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803DE044; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803DE048; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803DE04C; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803DE050; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata:0x803DE054; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata:0x803DE058; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803DE05C; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803DE060; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803DE064; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803DE068; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803DE06C; // type:object size:0x4 scope:local align:4 data:float +@3300 = .sdata:0x803DE070; // type:object size:0x4 scope:local align:4 data:float +@3301 = .sdata:0x803DE074; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata:0x803DE078; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata:0x803DE07C; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata:0x803DE080; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803DE084; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata:0x803DE088; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata:0x803DE08C; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata:0x803DE090; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata:0x803DE094; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata:0x803DE098; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata:0x803DE09C; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata:0x803DE0A0; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803DE0A4; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803DE0A8; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata:0x803DE0AC; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata:0x803DE0B0; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata:0x803DE0B4; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata:0x803DE0B8; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata:0x803DE0BC; // type:object size:0x8 scope:local align:4 data:string +@3804 = .sdata:0x803DE0C4; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata:0x803DE0C8; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata:0x803DE0CC; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata:0x803DE0D0; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata:0x803DE0D4; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata:0x803DE0D8; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata:0x803DE0DC; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata:0x803DE0E0; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata:0x803DE0E4; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata:0x803DE0E8; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata:0x803DE0EC; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata:0x803DE0F0; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata:0x803DE0F4; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata:0x803DE0F8; // type:object size:0x4 scope:local align:4 data:float +@4597 = .sdata:0x803DE0FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE104; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE10C; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803DE114; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803DE11C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE124; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803DE12C; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803DE134; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803DE13C; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803DE144; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DE14C; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803DE154; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803DE15C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803DE164; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DE16C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DE174; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803DE17C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803DE184; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803DE18C; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803DE194; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803DE19C; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803DE1A8; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803DE1AC; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803DE1B0; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803DE1B4; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803DE1B8; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803DE1BC; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803DE1C0; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DE1C4; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DE1C8; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DE1CC; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DE1D0; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803DE1D4; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DE1D8; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803DE1DC; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803DE1E0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803DE1E4; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803DE1E8; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803DE1EC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803DE1F0; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803DE1F4; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803DE1F8; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803DE1FC; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803DE200; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803DE204; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803DE208; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803DE20C; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803DE210; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803DE214; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803DE218; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803DE21C; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803DE220; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803DE224; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803DE228; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803DE22C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803DE230; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803DE234; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803DE238; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803DE23C; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803DE240; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803DE244; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803DE248; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803DE24C; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803DE250; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803DE254; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803DE258; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803DE25C; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803DE260; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803DE268; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803DE26C; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803DE270; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803DE274; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803DE278; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803DE280; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803DE284; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803DE28C; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803DE294; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803DE29C; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803DE2A4; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803DE2AC; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803DE2B4; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803DE2B8; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803DE2C0; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803DE2C8; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803DE2D0; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803DE2D8; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803DE2E0; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803DE2E4; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803DE2E8; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803DE2EC; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803DE2F0; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803DE2F4; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803DE2F8; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803DE2FC; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803DE300; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803DE304; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803DE308; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803DE30C; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803DE310; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803DE314; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803DE318; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803DE31C; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803DE320; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803DE324; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803DE328; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803DE32C; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803DE330; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803DE334; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803DE33C; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803DE344; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803DE348; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803DE350; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803DE358; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803DE35C; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803DE360; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803DE364; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803DE368; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803DE36C; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803DE370; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803DE378; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803DE380; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803DE388; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803DE38C; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803DE390; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803DE398; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803DE3A0; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803DE3A8; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803DE3B0; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803DE3B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE3C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE3C8; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803DE3D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE3D8; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803DE3E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803DE3E8; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803DE3F0; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803DE3F8; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803DE400; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803DE408; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803DE410; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803DE418; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803DE420; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803DE428; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803DE430; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803DE438; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803DE43C; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803DE444; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803DE448; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803DE450; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803DE458; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803DE460; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803DE468; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803DE470; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803DE478; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803DE47C; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803DE484; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803DE48C; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803DE494; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803DE49C; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803DE4A0; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803DE4A4; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803DE4A8; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803DE4AC; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803DE4B0; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803DE4B4; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803DE4B8; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803DE4BC; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803DE4C0; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803DE4C4; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803DE4C8; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803DE4CC; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803DE4D0; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803DE4D4; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803DE4D8; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803DE4DC; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803DE4E0; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803DE4E4; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803DE4E8; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803DE4EC; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803DE4F0; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803DE4F4; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803DE4F8; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803DE4FC; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803DE500; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803DE504; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803DE508; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803DE50C; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803DE510; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803DE514; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803DE518; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803DE51C; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803DE520; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803DE524; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803DE528; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803DE52C; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803DE530; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803DE534; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803DE538; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803DE53C; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803DE540; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803DE544; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803DE548; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803DE54C; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803DE550; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803DE554; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803DE558; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803DE55C; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803DE560; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803DE564; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803DE568; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803DE56C; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803DE570; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803DE574; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803DE578; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803DE57C; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803DE580; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803DE584; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803DE588; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803DE58C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803DE590; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803DE594; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803DE598; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803DE59C; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803DE5A0; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803DE5A4; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803DE5A8; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803DE5AC; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803DE5B0; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803DE5B4; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803DE5B8; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803DE5BC; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803DE5C0; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803DE5C4; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803DE5C8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803DE5CC; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803DE5D0; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803DE5D4; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803DE5D8; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803DE5DC; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803DE5E0; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803DE5E4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803DE5E8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803DE5EC; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803DE5F0; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803DE5F4; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803DE5F8; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803DE5FC; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803DE600; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803DE604; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803DE608; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803DE60C; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803DE610; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803DE614; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803DE618; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803DE61C; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803DE620; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803DE624; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803DE628; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803DE62C; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803DE630; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803DE634; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803DE638; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803DE63C; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803DE640; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803DE644; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803DE648; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803DE64C; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803DE650; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803DE654; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803DE658; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803DE65C; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803DE660; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803DE664; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803DE668; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803DE66C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803DE670; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803DE674; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803DE678; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803DE67C; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803DE680; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803DE684; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803DE688; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803DE68C; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803DE690; // type:object size:0x4 scope:local align:4 data:float +@2533 = .sdata:0x803DE694; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE69C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE6A4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803DE6AC; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803DE6B4; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803DE6BC; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803DE6C4; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803DE6D0; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803DE6D4; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803DE6D8; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803DE6DC; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803DE6E0; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803DE6E4; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803DE6E8; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803DE6EC; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803DE6F0; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803DE6F4; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803DE6FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE704; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE70C; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803DE714; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE71C; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803DE724; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803DE730; // type:object size:0x4 scope:local align:4 data:4byte +@1204 = .sdata:0x803DE734; // type:object size:0x7 scope:local align:4 data:string +@1205 = .sdata:0x803DE73C; // type:object size:0x8 scope:local align:4 data:string +@1497 = .sdata:0x803DE744; // type:object size:0x7 scope:local align:4 data:string +@1696 = .sdata:0x803DE74C; // type:object size:0x3 scope:local align:4 data:string +@2019 = .sdata:0x803DE750; // type:object size:0x7 scope:local align:4 data:string +@2254 = .sdata:0x803DE758; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE760; // type:object size:0x8 scope:local align:4 +@2259 = .sdata:0x803DE768; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DE770; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DE778; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803DE780; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803DE784; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803DE788; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803DE78C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803DE790; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803DE794; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803DE798; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803DE79C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE7A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE7AC; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803DE7B4; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803DE7C0; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803DE7C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE7D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE7D8; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803DE7E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE7E8; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803DE7F0; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803DE7F8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DE800; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803DE808; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803DE810; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803DE814; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803DE818; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803DE81C; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803DE820; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803DE824; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DE828; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803DE82C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803DE830; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803DE838; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803DE840; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803DE848; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803DE850; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803DE858; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803DE860; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DE864; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DE868; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803DE86C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE874; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE87C; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803DE884; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803DE890; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803DE894; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803DE898; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803DE89C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata:0x803DE8A0; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata:0x803DE8A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DE8A8; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803DE8B0; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803DE8B8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803DE8C0; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803DE8C8; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803DE8D0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803DE8D8; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803DE8E0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803DE8E8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803DE8F0; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803DE8F8; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803DE900; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803DE908; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803DE910; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803DE918; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803DE920; // type:object size:0x8 scope:local align:4 +@641 = .sdata:0x803DE928; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata:0x803DE92C; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata:0x803DE930; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803DE934; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803DE938; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DE93C; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803DE944; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803DE94C; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803DE958; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803DE960; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803DE968; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803DE970; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803DE974; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803DE978; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803DE97C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DE980; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803DE988; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803DE990; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803DE998; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803DE9A0; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803DE9A8; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803DE9B0; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803DE9B8; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803DE9C0; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803DE9C8; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803DE9D0; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803DE9D8; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803DE9E0; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803DE9E4; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803DE9E8; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803DE9EC; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803DE9F0; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803DE9F4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__22Receiver<10AICreature> = .sdata:0x803DE9F8; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803DEA00; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803DEA08; // type:object size:0x8 scope:local align:4 +@1155 = .sdata:0x803DEA10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEA18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEA20; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803DEA28; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803DEA30; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803DEA38; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803DEA40; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803DEA48; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DEA50; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DEA58; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DEA60; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803DEA68; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803DEA70; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803DEA78; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803DEA7C; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata:0x803DEA80; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803DEA84; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803DEA88; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803DEA8C; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803DEA90; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803DEA94; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803DEA98; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803DEA9C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803DEAA0; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803DEAA4; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803DEAA8; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803DEAAC; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803DEAB0; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803DEAB4; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803DEAB8; // type:object size:0x4 scope:local align:4 data:float +@1603 = .sdata:0x803DEABC; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803DEAC0; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803DEAC4; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803DEAC8; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803DEACC; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803DEAD0; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803DEAD4; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803DEAD8; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803DEADC; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata:0x803DEAE0; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803DEAE4; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803DEAE8; // type:object size:0x4 scope:local align:4 data:float +@1702 = .sdata:0x803DEAEC; // type:object size:0x4 scope:local align:4 data:float +@1704 = .sdata:0x803DEAF0; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803DEAF4; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803DEAF8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803DEAFC; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803DEB04; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803DEB0C; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803DEB14; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803DEB1C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DEB24; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803DEB2C; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803DEB38; // type:object size:0x4 scope:global align:4 data:4byte +@2093 = .sdata:0x803DEB3C; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata:0x803DEB40; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata:0x803DEB44; // type:object size:0x4 scope:local align:4 data:float +@2556 = .sdata:0x803DEB48; // type:object size:0x6 scope:local align:4 data:string +@2557 = .sdata:0x803DEB50; // type:object size:0x7 scope:local align:4 data:string +@2558 = .sdata:0x803DEB58; // type:object size:0x6 scope:local align:4 data:string +@2559 = .sdata:0x803DEB60; // type:object size:0x7 scope:local align:4 data:string +@2560 = .sdata:0x803DEB68; // type:object size:0x8 scope:local align:4 data:string +@2561 = .sdata:0x803DEB70; // type:object size:0x2 scope:local align:4 data:string +@2563 = .sdata:0x803DEB74; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803DEB78; // type:object size:0x4 scope:local align:4 data:float +@2565 = .sdata:0x803DEB7C; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803DEB80; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803DEB84; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata:0x803DEB88; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata:0x803DEB8C; // type:object size:0x4 scope:local align:4 data:float +@2573 = .sdata:0x803DEB90; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803DEB94; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803DEB98; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803DEB9C; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata:0x803DEBA0; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata:0x803DEBA4; // type:object size:0x4 scope:local align:4 data:float +@2579 = .sdata:0x803DEBA8; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803DEBAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DEBB0; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803DEBB8; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803DEBC0; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803DEBC8; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803DEBD0; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803DEBD4; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803DEBD8; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803DEBDC; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803DEBE0; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803DEBE4; // type:object size:0x8 scope:local align:4 data:string +@1309 = .sdata:0x803DEBEC; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803DEBF0; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803DEBF4; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803DEBF8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803DEBFC; // type:object size:0x8 scope:local align:4 +@1360 = .sdata:0x803DEC04; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEC0C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEC14; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803DEC1C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DEC24; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803DEC2C; // type:object size:0x8 scope:local align:4 +@1085 = .sdata:0x803DEC38; // type:object size:0x4 scope:local align:4 data:string +@1086 = .sdata:0x803DEC3C; // type:object size:0x3 scope:local align:4 data:string +@1087 = .sdata:0x803DEC40; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803DEC48; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803DEC50; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803DEC54; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803DEC58; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803DEC5C; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803DEC60; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803DEC64; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803DEC68; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803DEC6C; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803DEC70; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803DEC74; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803DEC78; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803DEC7C; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803DEC80; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803DEC84; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803DEC88; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803DEC8C; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803DEC90; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803DEC94; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803DEC98; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803DEC9C; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803DECA0; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803DECA4; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803DECA8; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803DECAC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803DECB4; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803DECBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DECC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DECCC; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803DECD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DECDC; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803DECE4; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803DECF0; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803DECF8; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803DED00; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803DED08; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803DED10; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803DED18; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803DED20; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803DED28; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803DED30; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DED38; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DED40; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803DED48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DED50; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803DED58; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803DED60; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803DED68; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803DED69; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803DED6A; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803DED6B; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803DED6C; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803DED70; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803DED74; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803DED78; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803DED79; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803DED7A; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803DED7B; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803DED7C; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803DED80; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803DED88; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803DED90; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803DED98; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803DED9C; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803DEDA4; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803DEDB0; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803DEDB4; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803DEDB8; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803DEDBC; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803DEDC0; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803DEDC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DEDD0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DEDD8; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803DEDE0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DEDE8; // type:object size:0x8 scope:local align:4 +@405 = .sdata:0x803DEDF0; // type:object size:0x8 scope:local align:4 data:string +@549 = .sdata:0x803DEDF8; // type:object size:0x8 scope:local align:4 data:string +@551 = .sdata:0x803DEE00; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEE08; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEE10; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803DEE18; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803DEE20; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803DEE28; // type:object size:0x5 scope:local align:4 data:string +@1677 = .sdata:0x803DEE30; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803DEE34; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803DEE38; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803DEE3C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803DEE40; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803DEE44; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803DEE48; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803DEE4C; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803DEE50; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803DEE54; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803DEE58; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803DEE5C; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803DEE60; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803DEE64; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803DEE68; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803DEE6C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803DEE70; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803DEE74; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803DEE78; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803DEE7C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803DEE80; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803DEE84; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803DEE88; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803DEE8C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803DEE90; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803DEE94; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803DEE98; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803DEE9C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803DEEA0; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803DEEA4; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803DEEA8; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803DEEAC; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803DEEB0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803DEEB4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803DEEB8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803DEEBC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803DEEC0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803DEEC4; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803DEEC8; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803DEECC; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803DEED0; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803DEED4; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803DEED8; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803DEEDC; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803DEEE0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803DEEE4; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803DEEE8; // type:object size:0x4 scope:local align:4 data:float +@2911 = .sdata:0x803DEEEC; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata:0x803DEEF0; // type:object size:0x4 scope:local align:4 data:float +@2913 = .sdata:0x803DEEF4; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803DEEF8; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803DEEFC; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803DEF00; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803DEF04; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803DEF08; // type:object size:0x4 scope:local align:4 data:float +@3186 = .sdata:0x803DEF0C; // type:object size:0x4 scope:local align:4 data:float +@3187 = .sdata:0x803DEF10; // type:object size:0x4 scope:local align:4 data:float +@3188 = .sdata:0x803DEF14; // type:object size:0x4 scope:local align:4 data:float +@3189 = .sdata:0x803DEF18; // type:object size:0x4 scope:local align:4 data:float +@3190 = .sdata:0x803DEF1C; // type:object size:0x4 scope:local align:4 data:float +@3191 = .sdata:0x803DEF20; // type:object size:0x4 scope:local align:4 data:float +@3192 = .sdata:0x803DEF24; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803DEF28; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803DEF2C; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803DEF30; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803DEF34; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803DEF38; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803DEF3C; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803DEF40; // type:object size:0x4 scope:local align:4 data:float +@3205 = .sdata:0x803DEF44; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803DEF48; // type:object size:0x4 scope:local align:4 data:float +@3207 = .sdata:0x803DEF4C; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata:0x803DEF50; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803DEF54; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803DEF58; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803DEF5C; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803DEF60; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803DEF64; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803DEF68; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803DEF6C; // type:object size:0x4 scope:local align:4 data:float +@3217 = .sdata:0x803DEF70; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803DEF74; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803DEF78; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803DEF7C; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803DEF80; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803DEF84; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803DEF88; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata:0x803DEF8C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803DEF90; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DEF98; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DEFA0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DEFA8; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803DEFB0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803DEFB4; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803DEFB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEFC0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEFC8; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803DEFD0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DEFD8; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DEFE0; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DEFE8; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803DEFF0; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DEFF8; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DEFFC; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DF000; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DF004; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DF008; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DF00C; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803DF010; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803DF014; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803DF018; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803DF01C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803DF020; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803DF024; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803DF028; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803DF02C; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803DF030; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803DF034; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803DF038; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803DF03C; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803DF040; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803DF044; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803DF048; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata:0x803DF04C; // type:object size:0x7 scope:local align:4 data:string +@1783 = .sdata:0x803DF054; // type:object size:0x5 scope:local align:4 data:string +@1784 = .sdata:0x803DF05C; // type:object size:0x4 scope:local align:4 data:string +@1907 = .sdata:0x803DF060; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803DF064; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803DF068; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803DF06C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803DF070; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803DF074; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803DF078; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803DF07C; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803DF080; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803DF084; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803DF088; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata:0x803DF08C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803DF090; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803DF094; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata:0x803DF098; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata:0x803DF09C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata:0x803DF0A0; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803DF0A4; // type:object size:0x4 scope:local align:4 data:float +@2168 = .sdata:0x803DF0A8; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803DF0AC; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803DF0B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803DF0B4; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803DF0BC; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803DF0C8; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803DF0CC; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803DF0D0; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803DF0D4; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803DF0D8; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803DF0DC; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803DF0E0; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803DF0E4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803DF0E8; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803DF0EC; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803DF0F0; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803DF0F4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803DF0F8; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803DF0FC; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803DF100; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803DF104; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803DF108; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803DF10C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803DF110; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DF114; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803DF118; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803DF11C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF124; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF12C; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF134; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803DF13C; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803DF144; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803DF150; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803DF154; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803DF158; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803DF15C; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803DF160; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803DF164; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803DF168; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803DF16C; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803DF170; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803DF174; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803DF178; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803DF17C; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803DF180; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803DF184; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803DF188; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803DF18C; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803DF190; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803DF194; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803DF198; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803DF19C; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata:0x803DF1A0; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803DF1A4; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803DF1A8; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803DF1AC; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803DF1B0; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803DF1B4; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803DF1B8; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803DF1BC; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803DF1C0; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803DF1C4; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803DF1C8; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803DF1CC; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803DF1D0; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803DF1D4; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803DF1D8; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803DF1DC; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803DF1E0; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803DF1E4; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata:0x803DF1E8; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803DF1EC; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803DF1F0; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803DF1F4; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803DF1F8; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803DF1FC; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803DF200; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803DF204; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF20C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF214; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF21C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF224; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803DF22C; // type:object size:0x8 scope:local align:4 +@1963 = .sdata:0x803DF234; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF23C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF244; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803DF24C; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803DF258; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF260; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF268; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803DF270; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803DF278; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803DF27C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803DF288; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF290; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF298; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803DF2A0; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803DF2A8; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803DF2B0; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803DF2B8; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803DF2C0; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803DF2C8; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803DF2D0; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803DF2D4; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803DF2DC; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803DF2E4; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803DF2EC; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803DF2F4; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803DF2FC; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803DF304; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803DF30C; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803DF314; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803DF31C; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803DF324; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803DF32C; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803DF330; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803DF338; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803DF340; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803DF344; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803DF34C; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803DF354; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803DF35C; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803DF364; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803DF36C; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803DF374; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803DF37C; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803DF380; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803DF384; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803DF388; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803DF38C; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803DF390; // type:object size:0x4 scope:local align:4 data:string +@1491 = .sdata:0x803DF394; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803DF398; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803DF39C; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803DF3A0; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803DF3A4; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803DF3A8; // type:object size:0x4 scope:local align:4 data:4byte +@1498 = .sdata:0x803DF3AC; // type:object size:0x4 scope:local align:4 data:4byte +@1500 = .sdata:0x803DF3B0; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803DF3B4; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803DF3B8; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803DF3BC; // type:object size:0x4 scope:local align:4 data:4byte +@1505 = .sdata:0x803DF3C0; // type:object size:0x4 scope:local align:4 data:4byte +@1507 = .sdata:0x803DF3C4; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803DF3C8; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803DF3CC; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803DF3D0; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803DF3D4; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803DF3D8; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803DF3DC; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803DF3E0; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803DF3E4; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803DF3E8; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803DF3EC; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DF3F0; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DF3F4; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803DF3F8; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803DF3FC; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803DF400; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803DF404; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803DF408; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803DF40C; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803DF410; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803DF414; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803DF418; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803DF41C; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803DF420; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803DF424; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803DF428; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803DF42C; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata:0x803DF430; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803DF434; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803DF438; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata:0x803DF43C; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803DF440; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803DF444; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata:0x803DF448; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata:0x803DF44C; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata:0x803DF450; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata:0x803DF454; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata:0x803DF458; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803DF45C; // type:object size:0x4 scope:local align:4 data:float +@2375 = .sdata:0x803DF460; // type:object size:0x4 scope:local align:4 data:float +@2376 = .sdata:0x803DF464; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803DF468; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803DF46C; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803DF470; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803DF474; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803DF478; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata:0x803DF47C; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata:0x803DF480; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803DF484; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803DF488; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803DF48C; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803DF490; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803DF494; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803DF498; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803DF49C; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803DF4A0; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803DF4A4; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata:0x803DF4A8; // type:object size:0x4 scope:local align:4 data:float +@2871 = .sdata:0x803DF4AC; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803DF4B0; // type:object size:0x8 scope:local align:4 data:string +@3069 = .sdata:0x803DF4B8; // type:object size:0x1 scope:local align:4 +@3070 = .sdata:0x803DF4BC; // type:object size:0x4 scope:local align:4 data:string +@3071 = .sdata:0x803DF4C0; // type:object size:0x4 scope:local align:4 data:string +@3072 = .sdata:0x803DF4C4; // type:object size:0x4 scope:local align:4 data:string +@3074 = .sdata:0x803DF4C8; // type:object size:0x4 scope:local align:4 data:string +@3077 = .sdata:0x803DF4CC; // type:object size:0x4 scope:local align:4 data:string +@3079 = .sdata:0x803DF4D0; // type:object size:0x7 scope:local align:4 data:string +@3328 = .sdata:0x803DF4D8; // type:object size:0x6 scope:local align:4 data:string +@3329 = .sdata:0x803DF4E0; // type:object size:0x5 scope:local align:4 data:string +@3396 = .sdata:0x803DF4E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF4F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF4F8; // type:object size:0x8 scope:local align:4 +@3398 = .sdata:0x803DF500; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF508; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DF510; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803DF518; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803DF520; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803DF528; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803DF530; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803DF538; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803DF540; // type:object size:0x8 scope:local align:4 +@3435 = .sdata:0x803DF548; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DF550; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DF558; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF560; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF568; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF570; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803DF578; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803DF580; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803DF588; // type:object size:0x8 scope:local align:4 +@3480 = .sdata:0x803DF590; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803DF598; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803DF5A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803DF5A8; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803DF5B0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF5B8; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803DF5C0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF5C8; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803DF5D0; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803DF5D4; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803DF5DC; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803DF5E0; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803DF5E8; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803DF5F0; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803DF5F8; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803DF600; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803DF604; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803DF608; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803DF60C; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803DF610; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803DF614; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803DF61C; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803DF624; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803DF62C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF634; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF63C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF644; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803DF64C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF654; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF660; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803DF668; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DF670; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DF678; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803DF680; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803DF688; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803DF690; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803DF698; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803DF6A0; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803DF6A8; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803DF6B0; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803DF6B4; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803DF6B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803DF6BC; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803DF6C4; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803DF6CC; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803DF6D4; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803DF6DC; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803DF6E4; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803DF6EC; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803DF6F4; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803DF6FC; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803DF704; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803DF70C; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803DF718; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803DF71C; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803DF724; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803DF72C; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803DF730; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DF734; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DF738; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803DF73C; // type:object size:0x4 scope:local align:4 data:4byte +@1560 = .sdata:0x803DF740; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803DF744; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803DF748; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803DF74C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803DF750; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata:0x803DF754; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata:0x803DF758; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata:0x803DF75C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803DF760; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata:0x803DF764; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803DF768; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803DF76C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803DF770; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803DF774; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803DF778; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803DF77C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803DF780; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803DF784; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803DF788; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803DF78C; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803DF790; // type:object size:0x4 scope:local align:4 data:float +@2451 = .sdata:0x803DF794; // type:object size:0x4 scope:local align:4 data:float +@2492 = .sdata:0x803DF798; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803DF79C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803DF7A0; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803DF7A4; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803DF7A8; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata:0x803DF7AC; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803DF7B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DF7B4; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803DF7BC; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803DF7C4; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803DF7CC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DF7D4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DF7DC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF7E4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF7EC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803DF7F4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803DF7FC; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803DF804; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803DF80C; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803DF814; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803DF81C; // type:object size:0x8 scope:local align:4 +@3076 = .sdata:0x803DF824; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF82C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF834; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803DF83C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF844; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DF84C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DF854; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803DF85C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF864; // type:object size:0x8 scope:local align:4 +@3101 = .sdata:0x803DF86C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DF874; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DF87C; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803DF884; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF88C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DF894; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803DF89C; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803DF8A4; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803DF8AC; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803DF8B8; // type:object size:0x4 scope:global align:4 data:4byte +@1898 = .sdata:0x803DF8BC; // type:object size:0x7 scope:local align:4 data:string +@2161 = .sdata:0x803DF8C4; // type:object size:0x3 scope:local align:4 data:string +@3232 = .sdata:0x803DF8C8; // type:object size:0x6 scope:local align:4 data:string +@3235 = .sdata:0x803DF8D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF8D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF8E0; // type:object size:0x8 scope:local align:4 +@3240 = .sdata:0x803DF8E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF8F0; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803DF8F8; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803DF900; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803DF908; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803DF910; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803DF918; // type:object size:0x6 scope:local align:4 data:string +@644 = .sdata:0x803DF920; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803DF928; // type:object size:0x3 scope:local align:4 data:string +@751 = .sdata:0x803DF92C; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803DF934; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF93C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF944; // type:object size:0x8 scope:local align:4 +@756 = .sdata:0x803DF94C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803DF954; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803DF95C; // type:object size:0x8 scope:local align:4 +@760 = .sdata:0x803DF964; // type:object size:0x6 scope:local align:4 data:string +@762 = .sdata:0x803DF96C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF974; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803DF97C; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803DF988; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803DF990; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803DF994; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803DF998; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803DF99C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803DF9A4; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803DF9AC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF9B4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF9BC; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803DF9C4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF9CC; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803DF9D4; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803DF9E0; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803DF9E8; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803DF9F0; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803DF9F8; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803DFA00; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803DFA08; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803DFA10; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803DFA14; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803DFA18; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803DFA1C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803DFA20; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803DFA24; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803DFA28; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803DFA2C; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803DFA30; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803DFA34; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803DFA38; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803DFA3C; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803DFA40; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803DFA44; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803DFA48; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803DFA4C; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803DFA50; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803DFA54; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803DFA58; // type:object size:0x6 scope:local align:4 data:string +@2049 = .sdata:0x803DFA60; // type:object size:0x6 scope:local align:4 data:string +@2050 = .sdata:0x803DFA68; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803DFA70; // type:object size:0x7 scope:local align:4 data:string +@2052 = .sdata:0x803DFA78; // type:object size:0x6 scope:local align:4 data:string +@2053 = .sdata:0x803DFA80; // type:object size:0x6 scope:local align:4 data:string +@2054 = .sdata:0x803DFA88; // type:object size:0x6 scope:local align:4 data:string +@2055 = .sdata:0x803DFA90; // type:object size:0x5 scope:local align:4 data:string +@2056 = .sdata:0x803DFA98; // type:object size:0x5 scope:local align:4 data:string +@2057 = .sdata:0x803DFAA0; // type:object size:0x5 scope:local align:4 data:string +@2083 = .sdata:0x803DFAA8; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803DFAB0; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803DFAB4; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803DFAB8; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803DFABC; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803DFAC0; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803DFAC4; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803DFAC8; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803DFAD0; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803DFAD4; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803DFAD8; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803DFADC; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803DFAE4; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803DFAE8; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803DFAEC; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803DFAF0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803DFAF4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803DFAF8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803DFAFC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803DFB00; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803DFB04; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803DFB08; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803DFB0C; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803DFB10; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803DFB14; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803DFB18; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803DFB1C; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803DFB20; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata:0x803DFB24; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803DFB28; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803DFB2C; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803DFB30; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803DFB34; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803DFB38; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803DFB3C; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803DFB40; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803DFB44; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803DFB48; // type:object size:0x7 scope:local align:4 data:string +@2105 = .sdata:0x803DFB50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DFB58; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DFB60; // type:object size:0x8 scope:local align:4 +@2108 = .sdata:0x803DFB68; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DFB70; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DFB78; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803DFB80; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DFB88; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803DFB90; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DFB94; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DFB98; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803DFB9C; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803DFBA0; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803DFBA4; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803DFBA8; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803DFBAC; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803DFBB0; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803DFBB4; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803DFBB8; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803DFBBC; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803DFBC0; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803DFBC4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803DFBC8; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803DFBD0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFBD8; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803DFBE0; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803DFBE8; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803DFBF0; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803DFBF4; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803DFBF8; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803DFBFC; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803DFC00; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803DFC04; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803DFC08; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803DFC0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803DFC10; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803DFC18; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFC20; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803DFC28; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803DFC30; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803DFC38; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803DFC40; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803DFC48; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803DFC50; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803DFC58; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFC60; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803DFC68; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803DFC70; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803DFC78; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803DFC80; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803DFC84; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803DFC88; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803DFC8C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803DFC90; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803DFC94; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803DFC98; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803DFC9C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803DFCA0; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803DFCA4; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803DFCA8; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803DFCAC; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803DFCB0; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803DFCB4; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803DFCB8; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803DFCBC; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803DFCC0; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803DFCC4; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803DFCC8; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803DFCCC; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803DFCD0; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803DFCD4; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803DFCD8; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803DFCDC; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803DFCE0; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803DFCE4; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803DFCE8; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803DFCEC; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803DFCF0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFCF4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFCFC; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803DFD04; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFD0C; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803DFD14; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803DFD1C; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803DFD24; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803DFD30; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803DFD34; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803DFD38; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803DFD3C; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803DFD44; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803DFD48; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803DFD4C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFD50; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFD58; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803DFD60; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFD68; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803DFD70; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803DFD78; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803DFD80; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803DFD88; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803DFD90; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803DFD98; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFDA0; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803DFDA8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFDB0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803DFDB8; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803DFDC0; // type:object size:0x4 scope:local align:4 data:string +@1410 = .sdata:0x803DFDC4; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803DFDC8; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803DFDCC; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803DFDD0; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803DFDD4; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803DFDD8; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803DFDDC; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803DFDE0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803DFDE8; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803DFDF0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFDF8; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803DFE00; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803DFE08; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803DFE10; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803DFE18; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803DFE1C; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803DFE24; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803DFE28; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803DFE2C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFE30; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFE38; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803DFE40; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFE48; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803DFE50; // type:object size:0x8 scope:local align:4 +@1455 = .sdata:0x803DFE58; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata:0x803DFE5C; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803DFE60; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803DFE64; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803DFE68; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803DFE6C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFE70; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFE78; // type:object size:0x8 scope:local align:4 +@1513 = .sdata:0x803DFE80; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFE88; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803DFE90; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803DFE98; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803DFE9C; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803DFEA0; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803DFEA4; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803DFEA8; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803DFEAC; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803DFEB0; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803DFEB4; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803DFEB8; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803DFEBC; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803DFEC0; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803DFEC4; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803DFEC8; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803DFECC; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803DFED0; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803DFED4; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803DFED8; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803DFEDC; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803DFEE0; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803DFEE4; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803DFEE8; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803DFEEC; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803DFEF0; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803DFEF4; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803DFEF8; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803DFEFC; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803DFF00; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803DFF04; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803DFF08; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803DFF0C; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata:0x803DFF10; // type:object size:0x4 scope:local align:4 data:float +@2748 = .sdata:0x803DFF14; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803DFF18; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803DFF1C; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803DFF20; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803DFF24; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata:0x803DFF28; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803DFF2C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803DFF30; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803DFF34; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803DFF38; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata:0x803DFF3C; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803DFF40; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803DFF44; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata:0x803DFF48; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803DFF4C; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803DFF50; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803DFF54; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803DFF58; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803DFF5C; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803DFF60; // type:object size:0x4 scope:local align:4 data:float +@3066 = .sdata:0x803DFF64; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803DFF68; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803DFF6C; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803DFF70; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803DFF74; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803DFF78; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803DFF7C; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata:0x803DFF80; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803DFF84; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803DFF88; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata:0x803DFF8C; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803DFF90; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803DFF94; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803DFF98; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata:0x803DFF9C; // type:object size:0x3 scope:local align:4 data:string +@4060 = .sdata:0x803DFFA0; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata:0x803DFFA8; // type:object size:0x5 scope:local align:4 data:string +@4062 = .sdata:0x803DFFB0; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata:0x803DFFB8; // type:object size:0x5 scope:local align:4 data:string +@4064 = .sdata:0x803DFFC0; // type:object size:0x5 scope:local align:4 data:string +@4065 = .sdata:0x803DFFC8; // type:object size:0x4 scope:local align:4 data:string +@4067 = .sdata:0x803DFFCC; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata:0x803DFFD4; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata:0x803DFFDC; // type:object size:0x6 scope:local align:4 data:string +@4231 = .sdata:0x803DFFE4; // type:object size:0x2 scope:local align:4 data:string +@4238 = .sdata:0x803DFFE8; // type:object size:0x3 scope:local align:4 data:string +@4241 = .sdata:0x803DFFEC; // type:object size:0x4 scope:local align:4 data:float +@4242 = .sdata:0x803DFFF0; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata:0x803DFFF4; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata:0x803DFFF8; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata:0x803DFFFC; // type:object size:0x4 scope:local align:4 data:float +@4246 = .sdata:0x803E0000; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata:0x803E0004; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata:0x803E0008; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata:0x803E000C; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata:0x803E0010; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata:0x803E0014; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata:0x803E0018; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E001C; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E0020; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E0024; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata:0x803E0028; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata:0x803E002C; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata:0x803E0030; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata:0x803E0034; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata:0x803E0038; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata:0x803E003C; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata:0x803E0040; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata:0x803E0044; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata:0x803E0048; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E004C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0054; // type:object size:0x8 scope:local align:4 +@4430 = .sdata:0x803E005C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0064; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E006C; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E0078; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E0080; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E0084; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E0088; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E008C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E0090; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E0094; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E0098; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E009C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E00A0; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E00A4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E00A8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E00AC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E00B0; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E00B4; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E00B8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E00BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E00C0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E00C8; // type:object size:0x8 scope:local align:4 +@2378 = .sdata:0x803E00D0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E00D8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E00E0; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E00E8; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E00EC; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E00F0; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E00F4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E00F8; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E0100; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0108; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E0110; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E0118; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E0120; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E0128; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E012C; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E0134; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E0138; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E013C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E0140; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E0144; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E0148; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata:0x803E014C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E0150; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E0154; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E0158; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E015C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E0160; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E0164; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E0168; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E016C; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E0170; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E0174; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E0178; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata:0x803E017C; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E0180; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E0184; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata:0x803E0188; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata:0x803E018C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E0190; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E0194; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E019C; // type:object size:0x8 scope:local align:4 +@2431 = .sdata:0x803E01A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E01AC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E01B4; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E01C0; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E01C4; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E01C8; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E01CC; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E01D0; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E01D4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E01D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E01DC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E01E4; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E01EC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E01F4; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E01FC; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E0208; // type:object size:0x6 scope:local align:4 data:string +@1487 = .sdata:0x803E0210; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata:0x803E0214; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803E0218; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E021C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E0220; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E0224; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata:0x803E0228; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E022C; // type:object size:0x8 scope:local align:4 +@1630 = .sdata:0x803E0234; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E023C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E0244; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E0250; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E0254; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E0258; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E025C; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E0260; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E0264; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E0268; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E0270; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0278; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E0280; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0288; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E0290; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E0298; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E02A0; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E02A8; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E02B0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E02B4; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E02B8; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E02BC; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E02C0; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E02C4; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E02C8; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E02CC; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E02D0; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E02D4; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E02D8; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E02DC; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E02E0; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E02E4; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E02E8; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E02EC; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E02F0; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E02F4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E02FC; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E0304; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E030C; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E0314; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E0320; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E0324; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E0328; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E032C; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E0330; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E0334; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E0338; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0340; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0348; // type:object size:0x8 scope:local align:4 +@1343 = .sdata:0x803E0350; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0358; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E0360; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E0368; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E036C; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E0370; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E0374; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E0378; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E037C; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E0380; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E0384; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E0388; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E038C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E0390; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0394; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E039C; // type:object size:0x8 scope:local align:4 +@1778 = .sdata:0x803E03A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E03AC; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E03B4; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E03C0; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E03C8; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E03CC; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E03D0; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E03D4; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E03D8; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E03DC; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E03E0; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E03E4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E03EC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E03F4; // type:object size:0x8 scope:local align:4 +@1901 = .sdata:0x803E03FC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0404; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E040C; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E0418; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E041C; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E0420; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E0424; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E0428; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0430; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E0438; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0440; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E0448; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E0450; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E0458; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E0460; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E0464; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E0468; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E046C; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E0470; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E0474; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E0478; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E047C; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E0480; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E0484; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E0488; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E048C; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E0494; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E049C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E04A4; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E04B0; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E04B4; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E04B8; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E04BC; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E04C0; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E04C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E04C8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E04D0; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E04D8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E04E0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E04E8; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E04F0; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E04F8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0500; // type:object size:0x8 scope:local align:4 +@1141 = .sdata:0x803E0508; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0510; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0518; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E0520; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E0528; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E0530; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E0538; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E0540; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E0544; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E0548; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E054C; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E0550; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E0554; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E0558; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E055C; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E0560; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E0564; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E0568; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E056C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E0570; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E0578; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0580; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E0588; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0590; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E0598; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E05A0; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E05A8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E05B0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E05B8; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E05C0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E05C8; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E05D0; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E05D8; // type:object size:0x8 scope:local align:4 data:string +@2112 = .sdata:0x803E05E0; // type:object size:0x4 scope:local align:4 data:float +@2113 = .sdata:0x803E05E4; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E05E8; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata:0x803E05EC; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata:0x803E05F0; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E05F4; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E05F8; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E05FC; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E0600; // type:object size:0x4 scope:local align:4 data:float +@2226 = .sdata:0x803E0604; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E0608; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E060C; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata:0x803E0610; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata:0x803E0614; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata:0x803E0618; // type:object size:0x4 scope:local align:4 data:float +@2486 = .sdata:0x803E061C; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E0620; // type:object size:0x4 scope:local align:4 data:float +@2606 = .sdata:0x803E0624; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata:0x803E0628; // type:object size:0x4 scope:local align:4 data:float +@2608 = .sdata:0x803E062C; // type:object size:0x4 scope:local align:4 data:float +@2609 = .sdata:0x803E0630; // type:object size:0x4 scope:local align:4 data:float +@2610 = .sdata:0x803E0634; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E0638; // type:object size:0x8 scope:local align:4 +@2653 = .sdata:0x803E0640; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0648; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E0650; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0658; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E0660; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E0668; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E066C; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E0670; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E0674; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E0678; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E067C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E0680; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E0684; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E0688; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E068C; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E0690; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E0694; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E0698; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E069C; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E06A0; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E06A4; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E06A8; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E06AC; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E06B0; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E06B4; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E06B8; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E06C0; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E06C8; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E06CC; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E06D4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E06DC; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E06E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E06EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E06F4; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E06FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E0704; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E0710; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E0718; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E071C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E0720; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E0724; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E0728; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E072C; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E0730; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E0734; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E0738; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E073C; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E0740; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0744; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E074C; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E0754; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E075C; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E0764; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E0770; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E0778; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E077C; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E0780; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E0784; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E0788; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0790; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E0798; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E07A0; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E07A8; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E07B0; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E07B4; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E07B8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E07BC; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E07C0; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E07C4; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E07C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E07CC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E07D4; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E07DC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E07E4; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E07EC; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E07F4; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E07FC; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E0808; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E080C; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E0810; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E0814; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E0818; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E081C; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E0824; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E082C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E0834; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E083C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E0844; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E084C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E0854; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E0860; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E0864; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E0868; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E086C; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E0870; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E0874; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E0878; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E087C; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E0880; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E0884; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E0888; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E088C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E0890; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E0894; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E0898; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E089C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E08A4; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E08AC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E08B4; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E08BC; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E08C8; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E08CC; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E08D4; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E08DC; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E08E4; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E08EC; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E08F4; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E08F8; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E0900; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0908; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E0910; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0918; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E0920; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0928; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E0930; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E0938; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0940; // type:object size:0x8 scope:local align:4 +@1577 = .sdata:0x803E0948; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata:0x803E094C; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E0950; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E0954; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E0958; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E095C; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E0960; // type:object size:0x8 scope:local align:4 data:string +@1606 = .sdata:0x803E0968; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E096C; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E0970; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata:0x803E0974; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E097C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E0984; // type:object size:0x8 scope:local align:4 +@1871 = .sdata:0x803E098C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E0994; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E099C; // type:object size:0x8 scope:local align:4 +@1877 = .sdata:0x803E09A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E09AC; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E09B4; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E09BC; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E09C4; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E09CC; // type:object size:0x8 scope:local align:4 +@2367 = .sdata:0x803E09D8; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata:0x803E09DC; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E09E0; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata:0x803E09E4; // type:object size:0x4 scope:local align:4 data:float +@3707 = .sdata:0x803E09E8; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata:0x803E09EC; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata:0x803E09F0; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata:0x803E09F4; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata:0x803E09F8; // type:object size:0x4 scope:local align:4 data:float +@4382 = .sdata:0x803E09FC; // type:object size:0x4 scope:local align:4 data:float +@4431 = .sdata:0x803E0A00; // type:object size:0x4 scope:local align:4 data:float +@4432 = .sdata:0x803E0A04; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata:0x803E0A08; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata:0x803E0A0C; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata:0x803E0A10; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E0A14; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803E0A18; // type:object size:0x7 scope:local align:4 data:string +@5110 = .sdata:0x803E0A20; // type:object size:0x5 scope:local align:4 data:string +@5111 = .sdata:0x803E0A28; // type:object size:0x5 scope:local align:4 data:string +@5112 = .sdata:0x803E0A30; // type:object size:0x7 scope:local align:4 data:string +@5113 = .sdata:0x803E0A38; // type:object size:0x6 scope:local align:4 data:string +@5114 = .sdata:0x803E0A40; // type:object size:0x5 scope:local align:4 data:string +@5117 = .sdata:0x803E0A48; // type:object size:0x7 scope:local align:4 data:string +@5118 = .sdata:0x803E0A50; // type:object size:0x7 scope:local align:4 data:string +@5119 = .sdata:0x803E0A58; // type:object size:0x8 scope:local align:4 data:string +@5120 = .sdata:0x803E0A60; // type:object size:0x7 scope:local align:4 data:string +@5122 = .sdata:0x803E0A68; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E0A70; // type:object size:0x4 scope:local align:4 data:string +@5147 = .sdata:0x803E0A74; // type:object size:0x8 scope:local align:4 data:string +@5149 = .sdata:0x803E0A7C; // type:object size:0x5 scope:local align:4 data:string +@5150 = .sdata:0x803E0A84; // type:object size:0x4 scope:local align:4 data:string +@5151 = .sdata:0x803E0A88; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E0A90; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E0A98; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E0AA0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E0AA8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0AB0; // type:object size:0x8 scope:local align:4 +@5405 = .sdata:0x803E0AB8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E0AC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E0AC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E0AD0; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E0AD8; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E0AE0; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E0AE4; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E0AE8; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E0AEC; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E0AF0; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E0AF4; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E0AFC; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E0B00; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E0B04; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E0B08; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E0B0C; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E0B10; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E0B14; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E0B18; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E0B1C; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E0B20; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E0B24; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E0B28; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E0B2C; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E0B30; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E0B34; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E0B38; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E0B3C; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E0B40; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E0B44; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E0B48; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E0B4C; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E0B50; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E0B54; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E0B58; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E0B5C; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E0B60; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E0B64; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E0B68; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E0B6C; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E0B70; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E0B74; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E0B78; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E0B7C; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E0B80; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E0B84; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E0B88; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E0B8C; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E0B90; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E0B94; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E0B98; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E0B9C; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E0BA0; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E0BA4; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E0BA8; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E0BAC; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E0BB0; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E0BB4; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E0BB8; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E0BBC; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E0BC0; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E0BC4; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E0BC8; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E0BCC; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E0BD0; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E0BD4; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E0BD8; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E0BDC; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E0BE0; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E0BE4; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E0BE8; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E0BEC; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E0BF0; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E0BF4; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E0BF8; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E0BFC; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E0C00; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E0C04; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E0C08; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E0C0C; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E0C10; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E0C14; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E0C18; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E0C1C; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E0C20; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E0C24; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E0C28; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E0C2C; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E0C30; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E0C38; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E0C40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E0C48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E0C50; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E0C58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E0C60; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E0C68; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E0C70; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E0C78; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E0C80; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E0C88; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E0C90; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E0C98; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E0CA0; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E0CA8; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E0CAC; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E0CB0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E0CB4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E0CB8; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E0CBC; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E0CC4; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E0CCC; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E0CD0; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E0CD4; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E0CD8; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E0CE0; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E0CE4; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E0CE8; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E0CEC; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E0CF0; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E0CF4; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E0CF8; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E0CFC; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E0D00; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E0D04; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E0D08; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E0D0C; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E0D10; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E0D14; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E0D1C; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E0D20; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E0D24; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E0D28; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E0D2C; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E0D30; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E0D34; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E0D38; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E0D3C; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E0D40; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E0D44; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E0D48; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E0D4C; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E0D50; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E0D54; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E0D58; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E0D5C; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E0D64; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E0D6C; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E0D74; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E0D7C; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E0D80; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E0D84; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E0D88; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E0D8C; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E0D90; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E0D94; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E0D98; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E0D9C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E0DA0; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E0DA8; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E0DAC; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E0DB0; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E0DB4; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E0DB8; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E0DBC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E0DC0; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E0DC4; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E0DC8; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E0DCC; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E0DD0; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E0DD8; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E0DE0; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E0DE4; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E0DE8; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E0DEC; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E0DF0; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E0DF8; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E0E00; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E0E04; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E0E08; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E0E0C; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E0E10; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E0E14; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E0E18; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E0E1C; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E0E20; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E0E24; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E0E28; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E0E2C; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E0E30; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E0E38; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E0E3C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E0E40; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E0E44; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E0E48; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E0E4C; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E0E50; // type:object size:0x7 scope:local align:4 data:string +@4625 = .sdata:0x803E0E58; // type:object size:0x5 scope:local align:4 data:string +@4655 = .sdata:0x803E0E60; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata:0x803E0E64; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803E0E68; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E0E6C; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E0E70; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E0E74; // type:object size:0x4 scope:local align:4 data:float +@4686 = .sdata:0x803E0E78; // type:object size:0x7 scope:local align:4 data:string +@4703 = .sdata:0x803E0E80; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata:0x803E0E84; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata:0x803E0E88; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E0E8C; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E0E90; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E0E94; // type:object size:0x4 scope:local align:4 data:float +@4734 = .sdata:0x803E0E98; // type:object size:0x5 scope:local align:4 data:string +@4751 = .sdata:0x803E0EA0; // type:object size:0x5 scope:local align:4 data:string +@4760 = .sdata:0x803E0EA8; // type:object size:0x4 scope:local align:4 data:float +@4894 = .sdata:0x803E0EAC; // type:object size:0x5 scope:local align:4 data:string +@4902 = .sdata:0x803E0EB4; // type:object size:0x4 scope:local align:4 data:float +@4924 = .sdata:0x803E0EB8; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata:0x803E0EBC; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803E0EC0; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803E0EC4; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803E0EC8; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803E0ECC; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803E0ED0; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803E0ED4; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803E0ED8; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata:0x803E0EDC; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata:0x803E0EE0; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803E0EE4; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E0EE8; // type:object size:0x7 scope:local align:4 data:string +@4971 = .sdata:0x803E0EF0; // type:object size:0x4 scope:local align:4 data:float +@4972 = .sdata:0x803E0EF4; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803E0EF8; // type:object size:0x4 scope:local align:4 data:float +@4974 = .sdata:0x803E0EFC; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803E0F00; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803E0F04; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803E0F08; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803E0F0C; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803E0F10; // type:object size:0x4 scope:local align:4 data:float +@5045 = .sdata:0x803E0F14; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata:0x803E0F18; // type:object size:0x4 scope:local align:4 data:float +@5047 = .sdata:0x803E0F1C; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803E0F20; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803E0F24; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803E0F28; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803E0F2C; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803E0F30; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803E0F34; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata:0x803E0F38; // type:object size:0x8 scope:local align:4 data:string +@5085 = .sdata:0x803E0F40; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata:0x803E0F44; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata:0x803E0F48; // type:object size:0x4 scope:local align:4 data:float +@5104 = .sdata:0x803E0F4C; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803E0F50; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803E0F54; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803E0F58; // type:object size:0x4 scope:local align:4 data:float +@5138 = .sdata:0x803E0F5C; // type:object size:0x6 scope:local align:4 data:string +@5152 = .sdata:0x803E0F64; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata:0x803E0F68; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata:0x803E0F6C; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata:0x803E0F70; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803E0F74; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803E0F78; // type:object size:0x4 scope:local align:4 data:float +@5172 = .sdata:0x803E0F7C; // type:object size:0x5 scope:local align:4 data:string +@5178 = .sdata:0x803E0F84; // type:object size:0x4 scope:local align:4 data:float +@5179 = .sdata:0x803E0F88; // type:object size:0x4 scope:local align:4 data:float +@5180 = .sdata:0x803E0F8C; // type:object size:0x4 scope:local align:4 data:float +@5181 = .sdata:0x803E0F90; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803E0F94; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803E0F98; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata:0x803E0F9C; // type:object size:0x4 scope:local align:4 data:float +@5195 = .sdata:0x803E0FA0; // type:object size:0x4 scope:local align:4 data:float +@5196 = .sdata:0x803E0FA4; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803E0FA8; // type:object size:0x8 scope:local align:4 data:string +@5328 = .sdata:0x803E0FB0; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata:0x803E0FB4; // type:object size:0x4 scope:local align:4 data:float +@5330 = .sdata:0x803E0FB8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E0FBC; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803E0FC4; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803E0FCC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803E0FD4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803E0FDC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803E0FE4; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803E0FEC; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803E0FF4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803E0FFC; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803E1004; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803E100C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803E1014; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803E101C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803E1024; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803E102C; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803E1034; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803E103C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803E1044; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803E104C; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803E1054; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803E105C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803E1064; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803E106C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803E1074; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803E107C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803E1084; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803E108C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803E1094; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803E109C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803E10A4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803E10AC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803E10B4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803E10BC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803E10C4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803E10CC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803E10D4; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803E10DC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803E10E4; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803E10F0; // type:object size:0x1 scope:global align:1 data:byte +@1610 = .sdata:0x803E10F4; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E10F8; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E10FC; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E1100; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E1104; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E1108; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E110C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803E1110; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata:0x803E1114; // type:object size:0x4 scope:local align:4 data:float +@1711 = .sdata:0x803E1118; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803E111C; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E1120; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E1124; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803E1128; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata:0x803E112C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E1130; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E1134; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803E1138; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E113C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E1140; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E1144; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803E1148; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803E114C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803E1150; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata:0x803E1154; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata:0x803E1158; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803E115C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata:0x803E1160; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata:0x803E1164; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E1168; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E116C; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E1170; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E1174; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E1178; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E117C; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata:0x803E1180; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803E1184; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E1188; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803E118C; // type:object size:0x2 scope:local align:4 data:string +@1994 = .sdata:0x803E1190; // type:object size:0x2 scope:local align:4 data:string +@1995 = .sdata:0x803E1194; // type:object size:0x2 scope:local align:4 data:string +@2063 = .sdata:0x803E1198; // type:object size:0x5 scope:local align:4 data:string +@2135 = .sdata:0x803E11A0; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803E11A4; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803E11A8; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803E11AC; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata:0x803E11B0; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata:0x803E11B4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E11B8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E11C0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E11C8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E11D0; // type:object size:0x8 scope:local align:4 +@2307 = .sdata:0x803E11D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803E11E0; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803E11E8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E11F0; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803E11F8; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803E1200; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803E1208; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803E1210; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803E1214; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803E1218; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803E121C; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803E1220; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803E1224; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E1228; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E122C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E1230; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E1238; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803E1240; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803E1244; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E1248; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E124C; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E1250; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E1254; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E1258; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E125C; // type:object size:0x5 scope:local align:4 +@2236 = .sdata:0x803E1264; // type:object size:0x5 scope:local align:4 +@2255 = .sdata:0x803E126C; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E1270; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E1274; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata:0x803E1278; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803E127C; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803E1280; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata:0x803E1284; // type:object size:0x7 scope:local align:4 data:string +@2801 = .sdata:0x803E128C; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E1290; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E1294; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata:0x803E1298; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803E129C; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E12A0; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata:0x803E12A4; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E12A8; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E12AC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E12B0; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E12B4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E12B8; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803E12C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E12C8; // type:object size:0x8 scope:local align:4 +@3006 = .sdata:0x803E12D0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803E12D8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803E12E0; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803E12E8; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E12F0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803E12F8; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803E1300; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803E1308; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803E1310; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E1318; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803E1320; // type:object size:0x8 scope:local align:4 +@3032 = .sdata:0x803E1328; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1330; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1338; // type:object size:0x8 scope:local align:4 +@3035 = .sdata:0x803E1340; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E1348; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803E1350; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803E1358; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E1360; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803E1368; // type:object size:0x1 scope:local align:4 +@1540 = .sdata:0x803E136C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E1374; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E137C; // type:object size:0x8 scope:local align:4 +@1557 = .sdata:0x803E1384; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E138C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1394; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803E139C; // type:object size:0x8 scope:local align:4 +@1213 = .sdata:0x803E13A8; // type:object size:0x7 scope:local align:4 data:string +@1987 = .sdata:0x803E13B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E13B8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E13C0; // type:object size:0x8 scope:local align:4 +@1990 = .sdata:0x803E13C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E13D0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E13D8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E13E0; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E13E8; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803E13F0; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E13F8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E1400; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803E1408; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1410; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E1418; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E141C; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803E1420; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E1424; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E1428; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E142C; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E1430; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E1434; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803E1438; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803E143C; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E1440; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E1444; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E1448; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E144C; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E1450; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata:0x803E1454; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata:0x803E1458; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata:0x803E145C; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E1460; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E1464; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E146C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1474; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E147C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1484; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E148C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1494; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803E149C; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803E14A4; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803E14AC; // type:object size:0x8 scope:local align:4 +@1450 = .sdata:0x803E14B4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803E14BC; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803E14C8; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E14CC; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E14D0; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803E14D4; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E14D8; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803E14DC; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E14E0; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E14E4; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E14E8; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E14EC; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E14F0; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E14F4; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E14F8; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803E14FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1500; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1508; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1510; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1518; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1520; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1528; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803E1530; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803E1538; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803E1540; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803E1544; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803E1548; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E154C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E1550; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E1554; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803E1558; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803E155C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803E1560; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803E1564; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803E1568; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E156C; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E1570; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E1574; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E1578; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E157C; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E1580; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803E1584; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803E1588; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803E158C; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E1590; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803E1594; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E1598; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E159C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E15A4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E15AC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E15B4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E15BC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E15C4; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803E15CC; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803E15D8; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803E15DC; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803E15E0; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E15E4; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E15E8; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E15EC; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E15F0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E15F4; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803E15F8; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803E15FC; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E1600; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E1604; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E1608; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E160C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E1610; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E1614; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E1618; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E161C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E1620; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803E1624; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E1628; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E162C; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803E1630; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803E1634; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803E1638; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803E163C; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803E1640; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803E1644; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E1648; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803E164C; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803E1650; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803E1654; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803E1658; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E165C; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E1660; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E1664; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E1668; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E166C; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E1670; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E1674; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E1678; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E167C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E1680; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E1684; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E1688; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803E168C; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E1690; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E1694; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E1698; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E169C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E16A0; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E16A4; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E16A8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803E16AC; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803E16B0; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803E16B4; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803E16B8; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E16BC; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E16C0; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E16C4; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E16C8; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E16CC; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E16D0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E16D4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E16DC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E16E4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E16EC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E16F4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E16FC; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E1704; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E170C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803E1714; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803E1720; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803E1728; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803E1730; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803E1738; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803E1740; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803E1748; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803E1750; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803E1758; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803E1760; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803E1768; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E1770; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E1778; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803E1780; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803E1788; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E178C; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E1790; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1794; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E179C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E17A4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E17AC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E17B4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E17BC; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803E17C4; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803E17D0; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E17D4; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803E17D8; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803E17DC; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803E17E0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E17E4; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E17E8; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E17EC; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E17F0; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E17F4; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E17F8; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E17FC; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E1800; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803E1804; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata:0x803E1808; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E180C; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803E1810; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E1814; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803E1818; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata:0x803E181C; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803E1820; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata:0x803E1824; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E1828; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E182C; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata:0x803E1830; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803E1834; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E183C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1844; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E184C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1854; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E185C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1864; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E186C; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803E1874; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E1880; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E1884; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E1888; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803E188C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E1890; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E1894; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E1898; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E189C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E18A0; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E18A4; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata:0x803E18A8; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803E18AC; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803E18B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E18B4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E18BC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E18C4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E18CC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E18D4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E18DC; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803E18E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E18EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E18F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E18FC; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803E1908; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E190C; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803E1910; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803E1914; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E1918; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E191C; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1920; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1928; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1930; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1938; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1940; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1948; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803E1950; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803E1958; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803E1960; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1968; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1970; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1978; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E1980; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803E1988; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E1990; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E1994; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E1998; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E19A0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E19A8; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803E19B0; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E19B8; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803E19BC; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803E19C0; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803E19C4; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803E19C8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E19CC; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803E19D4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E19DC; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E19E4; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803E19EC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E19F4; // type:object size:0x8 scope:local align:4 +@2780 = .sdata:0x803E1A00; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E1A04; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata:0x803E1A08; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata:0x803E1A0C; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata:0x803E1A10; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E1A14; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E1A18; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E1A1C; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803E1A20; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803E1A24; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803E1A2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803E1A34; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803E1A3C; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E1A44; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E1A4C; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803E1A54; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803E1A5C; // type:object size:0x8 scope:local align:4 +@3258 = .sdata:0x803E1A64; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1A6C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1A74; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E1A7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803E1A84; // type:object size:0x8 scope:local align:4 +@3264 = .sdata:0x803E1A8C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803E1A94; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803E1A9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803E1AA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803E1AAC; // type:object size:0x8 scope:local align:4 +@3272 = .sdata:0x803E1AB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803E1ABC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803E1AC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803E1ACC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803E1AD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803E1ADC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803E1AE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803E1AEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803E1AF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803E1AFC; // type:object size:0x8 scope:local align:4 +@3291 = .sdata:0x803E1B04; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803E1B0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803E1B14; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803E1B1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803E1B24; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803E1B2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803E1B34; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803E1B3C; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803E1B44; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803E1B4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803E1B54; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803E1B5C; // type:object size:0x8 scope:local align:4 +@3326 = .sdata:0x803E1B64; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803E1B6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803E1B74; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803E1B7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803E1B84; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803E1B8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803E1B94; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803E1B9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803E1BA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803E1BAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803E1BB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803E1BBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803E1BC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803E1BCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803E1BD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803E1BDC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803E1BE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803E1BEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803E1BF4; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803E1BFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803E1C04; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803E1C0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803E1C14; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803E1C1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803E1C24; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803E1C2C; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E1C34; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803E1C3C; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E1C48; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803E1C50; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E1C58; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803E1C60; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803E1C64; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803E1C68; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803E1C6C; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803E1C70; // type:object size:0x4 scope:local align:4 data:string +@2507 = .sdata:0x803E1C74; // type:object size:0x5 scope:local align:4 data:string +@2509 = .sdata:0x803E1C7C; // type:object size:0x6 scope:local align:4 data:string +@2515 = .sdata:0x803E1C84; // type:object size:0x5 scope:local align:4 data:string +@2521 = .sdata:0x803E1C8C; // type:object size:0x5 scope:local align:4 data:string +@2539 = .sdata:0x803E1C94; // type:object size:0x5 scope:local align:4 data:string +@2766 = .sdata:0x803E1C9C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E1CA0; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E1CA4; // type:object size:0x4 scope:local align:4 data:float +@3063 = .sdata:0x803E1CA8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1CB0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1CB8; // type:object size:0x8 scope:local align:4 +@3065 = .sdata:0x803E1CC0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E1CC8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E1CD0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E1CD8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E1CE0; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803E1CE8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E1CF0; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803E1CF8; // type:object size:0x8 scope:local align:4 +@3092 = .sdata:0x803E1D00; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803E1D08; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803E1D10; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E1D18; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803E1D20; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1D28; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1D30; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1D38; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1D40; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1D48; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1D50; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803E1D58; // type:object size:0x8 scope:local align:4 +@3176 = .sdata:0x803E1D60; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803E1D68; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803E1D70; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803E1D78; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803E1D80; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803E1D88; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803E1D90; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803E1D98; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803E1DA0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E1DA8; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803E1DB0; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803E1DB8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E1DC0; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803E1DC8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803E1DD0; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803E1DD8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1DE0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1DE8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1DF0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1DF8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1E00; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1E08; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803E1E10; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803E1E18; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803E1E20; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803E1E28; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803E1E30; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803E1E38; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803E1E40; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1E48; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1E50; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1E58; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1E60; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1E68; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1E70; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803E1E78; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E1E80; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E1E84; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E1E88; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E1E8C; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E1E90; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E1E94; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E1E98; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803E1E9C; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803E1EA0; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803E1EA4; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E1EA8; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E1EAC; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803E1EB0; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803E1EB4; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E1EB8; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E1EBC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E1EC4; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803E1ECC; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E1ED8; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E1EE0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E1EE8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E1EF0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803E1EF8; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803E1F00; // type:object size:0x1 scope:global align:1 data:byte +@2701 = .sdata:0x803E1F04; // type:object size:0x4 scope:local align:4 data:string +@2703 = .sdata:0x803E1F08; // type:object size:0x4 scope:local align:4 data:string +@2704 = .sdata:0x803E1F0C; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803E1F10; // type:object size:0x4 scope:local align:4 data:string +@2708 = .sdata:0x803E1F14; // type:object size:0x4 scope:local align:4 data:string +@2710 = .sdata:0x803E1F18; // type:object size:0x4 scope:local align:4 data:4byte +@2712 = .sdata:0x803E1F1C; // type:object size:0x4 scope:local align:4 data:4byte +@2714 = .sdata:0x803E1F20; // type:object size:0x4 scope:local align:4 data:4byte +@2716 = .sdata:0x803E1F24; // type:object size:0x4 scope:local align:4 data:4byte +@2718 = .sdata:0x803E1F28; // type:object size:0x4 scope:local align:4 data:4byte +@2720 = .sdata:0x803E1F2C; // type:object size:0x4 scope:local align:4 data:4byte +@2722 = .sdata:0x803E1F30; // type:object size:0x4 scope:local align:4 data:4byte +@2724 = .sdata:0x803E1F34; // type:object size:0x4 scope:local align:4 data:4byte +@2726 = .sdata:0x803E1F38; // type:object size:0x4 scope:local align:4 data:4byte +@2728 = .sdata:0x803E1F3C; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803E1F40; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803E1F44; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803E1F48; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803E1F4C; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803E1F50; // type:object size:0x4 scope:local align:4 data:4byte +@2736 = .sdata:0x803E1F54; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803E1F58; // type:object size:0x4 scope:local align:4 data:4byte +@2740 = .sdata:0x803E1F5C; // type:object size:0x4 scope:local align:4 data:4byte +@2742 = .sdata:0x803E1F60; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803E1F64; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803E1F68; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803E1F6C; // type:object size:0x4 scope:local align:4 data:4byte +@2747 = .sdata:0x803E1F70; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803E1F74; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803E1F78; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803E1F7C; // type:object size:0x4 scope:local align:4 data:4byte +@2753 = .sdata:0x803E1F80; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803E1F84; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803E1F88; // type:object size:0x4 scope:local align:4 data:4byte +@2758 = .sdata:0x803E1F8C; // type:object size:0x4 scope:local align:4 data:4byte +@2760 = .sdata:0x803E1F90; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803E1F94; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803E1F98; // type:object size:0x4 scope:local align:4 data:4byte +@2765 = .sdata:0x803E1F9C; // type:object size:0x4 scope:local align:4 data:4byte +@2767 = .sdata:0x803E1FA0; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803E1FA4; // type:object size:0x4 scope:local align:4 data:4byte +@2769 = .sdata:0x803E1FA8; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803E1FAC; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803E1FB0; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803E1FB4; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803E1FB8; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803E1FBC; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803E1FC0; // type:object size:0x4 scope:local align:4 data:4byte +@2777 = .sdata:0x803E1FC4; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803E1FC8; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803E1FCC; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803E1FD0; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803E1FD4; // type:object size:0x4 scope:local align:4 data:4byte +@2784 = .sdata:0x803E1FD8; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803E1FDC; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803E1FE0; // type:object size:0x4 scope:local align:4 data:4byte +@2790 = .sdata:0x803E1FE4; // type:object size:0x4 scope:local align:4 data:4byte +@2792 = .sdata:0x803E1FE8; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803E1FEC; // type:object size:0x4 scope:local align:4 data:4byte +@2794 = .sdata:0x803E1FF0; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803E1FF4; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803E1FF8; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803E1FFC; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803E2000; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803E2004; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803E2008; // type:object size:0x4 scope:local align:4 data:4byte +@2855 = .sdata:0x803E200C; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E2010; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803E2014; // type:object size:0x4 scope:local align:4 data:float +@2914 = .sdata:0x803E2018; // type:object size:0x4 scope:local align:4 data:float +@2915 = .sdata:0x803E201C; // type:object size:0x4 scope:local align:4 data:float +@2916 = .sdata:0x803E2020; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E2024; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E2028; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803E202C; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E2030; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E2034; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E2038; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E203C; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E2040; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E2044; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E2048; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E204C; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E2050; // type:object size:0x4 scope:local align:4 data:float +@3018 = .sdata:0x803E2054; // type:object size:0x1 scope:local align:4 +@3020 = .sdata:0x803E2058; // type:object size:0x8 scope:local align:4 data:string +@3060 = .sdata:0x803E2060; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata:0x803E2064; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata:0x803E2068; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803E206C; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E2070; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E2074; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E2078; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E207C; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803E2080; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E2084; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata:0x803E2088; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803E208C; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata:0x803E2090; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata:0x803E2094; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata:0x803E2098; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E209C; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata:0x803E20A0; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata:0x803E20A4; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata:0x803E20A8; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata:0x803E20AC; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata:0x803E20B0; // type:object size:0x4 scope:local align:4 data:float +@4653 = .sdata:0x803E20B4; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata:0x803E20B8; // type:object size:0x4 scope:local align:4 data:float +@4746 = .sdata:0x803E20BC; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata:0x803E20C0; // type:object size:0x3 scope:local align:4 data:string +@4813 = .sdata:0x803E20C4; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata:0x803E20C8; // type:object size:0x4 scope:local align:4 data:float +@4875 = .sdata:0x803E20CC; // type:object size:0x4 scope:local align:4 data:float +@4876 = .sdata:0x803E20D0; // type:object size:0x4 scope:local align:4 data:float +@4906 = .sdata:0x803E20D4; // type:object size:0x4 scope:local align:4 data:float +@4907 = .sdata:0x803E20D8; // type:object size:0x4 scope:local align:4 data:float +@4908 = .sdata:0x803E20DC; // type:object size:0x4 scope:local align:4 data:float +@4909 = .sdata:0x803E20E0; // type:object size:0x4 scope:local align:4 data:float +@4910 = .sdata:0x803E20E4; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803E20E8; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803E20EC; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803E20F0; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803E20F4; // type:object size:0x4 scope:local align:4 data:float +@5200 = .sdata:0x803E20F8; // type:object size:0x4 scope:local align:4 data:float +@5201 = .sdata:0x803E20FC; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata:0x803E2100; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata:0x803E2104; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata:0x803E2108; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803E210C; // type:object size:0x4 scope:local align:4 data:float +@5219 = .sdata:0x803E2110; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata:0x803E2114; // type:object size:0x4 scope:local align:4 data:float +@5464 = .sdata:0x803E2118; // type:object size:0x4 scope:local align:4 data:float +@5465 = .sdata:0x803E211C; // type:object size:0x4 scope:local align:4 data:float +@5665 = .sdata:0x803E2120; // type:object size:0x4 scope:local align:4 data:float +@6189 = .sdata:0x803E2124; // type:object size:0x4 scope:local align:4 data:float +@6190 = .sdata:0x803E2128; // type:object size:0x4 scope:local align:4 data:float +@6191 = .sdata:0x803E212C; // type:object size:0x4 scope:local align:4 data:float +@6376 = .sdata:0x803E2130; // type:object size:0x4 scope:local align:4 data:float +@6377 = .sdata:0x803E2134; // type:object size:0x4 scope:local align:4 data:float +@6378 = .sdata:0x803E2138; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803E213C; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803E2140; // type:object size:0x4 scope:local align:4 data:float +@6386 = .sdata:0x803E2144; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E2148; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803E2150; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803E2158; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E2160; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E2168; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E2170; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E2178; // type:object size:0x8 scope:local align:4 +@6740 = .sdata:0x803E2180; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2188; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2190; // type:object size:0x8 scope:local align:4 +@6743 = .sdata:0x803E2198; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E21A0; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803E21A8; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E21B0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E21B8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E21C0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E21C8; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803E21D0; // type:object size:0x8 scope:local align:4 +@6773 = .sdata:0x803E21D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E21E0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E21E8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E21F0; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803E21F8; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803E2200; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803E2204; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803E2208; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E220C; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E2210; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E2214; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803E2218; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803E221C; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803E2220; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803E2224; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803E2228; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803E222C; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803E2230; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803E2234; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803E2238; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803E223C; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803E2240; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803E2244; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E2248; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E224C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E2250; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E2254; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E2258; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E225C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803E2260; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803E2264; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803E2268; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803E226C; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803E2270; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803E2274; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803E2278; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803E227C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803E2280; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E2284; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata:0x803E2288; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata:0x803E228C; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata:0x803E2290; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata:0x803E2294; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata:0x803E2298; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata:0x803E229C; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata:0x803E22A0; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803E22A4; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803E22A8; // type:object size:0x4 scope:local align:4 data:float +@3515 = .sdata:0x803E22AC; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata:0x803E22B0; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata:0x803E22B4; // type:object size:0x4 scope:local align:4 data:float +@3518 = .sdata:0x803E22B8; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata:0x803E22BC; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata:0x803E22C0; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E22C4; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E22C8; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E22CC; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E22D0; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E22D4; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E22D8; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E22DC; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803E22E0; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata:0x803E22E4; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E22E8; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E22EC; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata:0x803E22F0; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata:0x803E22F4; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata:0x803E22F8; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata:0x803E22FC; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata:0x803E2300; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata:0x803E2304; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata:0x803E2308; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata:0x803E230C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata:0x803E2310; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E2314; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata:0x803E2318; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata:0x803E231C; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata:0x803E2320; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata:0x803E2324; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata:0x803E2328; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata:0x803E232C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata:0x803E2330; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata:0x803E2334; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata:0x803E2338; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata:0x803E233C; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata:0x803E2340; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata:0x803E2344; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata:0x803E2348; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803E234C; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata:0x803E2350; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata:0x803E2354; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata:0x803E2358; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata:0x803E235C; // type:object size:0x4 scope:local align:4 data:float +@4779 = .sdata:0x803E2360; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata:0x803E2364; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata:0x803E2368; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata:0x803E236C; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata:0x803E2370; // type:object size:0x4 scope:local align:4 data:float +@4937 = .sdata:0x803E2374; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E2378; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata:0x803E237C; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata:0x803E2380; // type:object size:0x4 scope:local align:4 data:float +@5070 = .sdata:0x803E2384; // type:object size:0x4 scope:local align:4 data:float +@5071 = .sdata:0x803E2388; // type:object size:0x4 scope:local align:4 data:float +@5072 = .sdata:0x803E238C; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata:0x803E2390; // type:object size:0x4 scope:local align:4 data:float +@5074 = .sdata:0x803E2394; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata:0x803E2398; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata:0x803E239C; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E23A0; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803E23A4; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata:0x803E23A8; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata:0x803E23AC; // type:object size:0x4 scope:local align:4 data:float +@5223 = .sdata:0x803E23B0; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E23B4; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata:0x803E23B8; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata:0x803E23BC; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata:0x803E23C0; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata:0x803E23C4; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata:0x803E23C8; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata:0x803E23CC; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata:0x803E23D0; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata:0x803E23D4; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata:0x803E23D8; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata:0x803E23DC; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata:0x803E23E0; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata:0x803E23E4; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata:0x803E23E8; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata:0x803E23EC; // type:object size:0x4 scope:local align:4 data:float +@5572 = .sdata:0x803E23F0; // type:object size:0x4 scope:local align:4 data:float +@5573 = .sdata:0x803E23F4; // type:object size:0x4 scope:local align:4 data:float +@5574 = .sdata:0x803E23F8; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803E23FC; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803E2400; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803E2404; // type:object size:0x4 scope:local align:4 data:float +@5587 = .sdata:0x803E2408; // type:object size:0x4 scope:local align:4 data:float +@5588 = .sdata:0x803E240C; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata:0x803E2410; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803E2414; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803E2418; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata:0x803E241C; // type:object size:0x4 scope:local align:4 data:float +@5632 = .sdata:0x803E2420; // type:object size:0x4 scope:local align:4 data:float +@5634 = .sdata:0x803E2424; // type:object size:0x4 scope:local align:4 data:float +@5691 = .sdata:0x803E2428; // type:object size:0x4 scope:local align:4 data:float +@5692 = .sdata:0x803E242C; // type:object size:0x4 scope:local align:4 data:float +@5693 = .sdata:0x803E2430; // type:object size:0x4 scope:local align:4 data:float +@5694 = .sdata:0x803E2434; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata:0x803E2438; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata:0x803E243C; // type:object size:0x4 scope:local align:4 data:float +@5712 = .sdata:0x803E2440; // type:object size:0x4 scope:local align:4 data:float +@5718 = .sdata:0x803E2444; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata:0x803E2448; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata:0x803E244C; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata:0x803E2450; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata:0x803E2454; // type:object size:0x4 scope:local align:4 data:float +@5723 = .sdata:0x803E2458; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata:0x803E245C; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata:0x803E2460; // type:object size:0x4 scope:local align:4 data:float +@5775 = .sdata:0x803E2464; // type:object size:0x4 scope:local align:4 data:float +@5776 = .sdata:0x803E2468; // type:object size:0x4 scope:local align:4 data:float +@5777 = .sdata:0x803E246C; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata:0x803E2470; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803E2474; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803E2478; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803E247C; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803E2480; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata:0x803E2484; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata:0x803E2488; // type:object size:0x4 scope:local align:4 data:float +@5818 = .sdata:0x803E248C; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata:0x803E2490; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata:0x803E2494; // type:object size:0x4 scope:local align:4 data:float +@5821 = .sdata:0x803E2498; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata:0x803E249C; // type:object size:0x4 scope:local align:4 data:float +@5823 = .sdata:0x803E24A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E24A4; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E24AC; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E24B4; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803E24BC; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803E24C4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803E24CC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803E24D4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803E24DC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803E24E4; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803E24EC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803E24F4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803E24FC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803E2504; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803E250C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803E2514; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803E251C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803E2524; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803E252C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803E2534; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803E253C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803E2544; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803E254C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803E2554; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803E255C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803E2564; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803E256C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803E2574; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803E257C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803E2584; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803E258C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803E2594; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803E259C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803E25A4; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803E25AC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803E25B4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803E25BC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803E25C4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803E25CC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803E25D4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803E25DC; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E25E4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803E25EC; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803E25F8; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E25FC; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803E2600; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E2604; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E2608; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E260C; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E2610; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E2614; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E2618; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E261C; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E2620; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803E2624; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803E2628; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E262C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E2630; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E2634; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E263C; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E2644; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803E264C; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803E2654; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803E265C; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803E2664; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803E266C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803E2674; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803E267C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803E2684; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803E268C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803E2694; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803E269C; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803E26A8; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E26AC; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E26B0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E26B4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E26B8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E26BC; // type:object size:0x4 scope:local align:4 data:float +@3309 = .sdata:0x803E26C0; // type:object size:0x1 scope:local align:4 +@3391 = .sdata:0x803E26C4; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E26C8; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E26CC; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E26D0; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E26D4; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E26D8; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E26DC; // type:object size:0x5 scope:local align:4 data:string +@3530 = .sdata:0x803E26E4; // type:object size:0x8 scope:local align:4 data:string +@3535 = .sdata:0x803E26EC; // type:object size:0x5 scope:local align:4 data:string +@3536 = .sdata:0x803E26F4; // type:object size:0x5 scope:local align:4 data:string +@3537 = .sdata:0x803E26FC; // type:object size:0x7 scope:local align:4 data:string +@3538 = .sdata:0x803E2704; // type:object size:0x6 scope:local align:4 data:string +@3539 = .sdata:0x803E270C; // type:object size:0x5 scope:local align:4 data:string +@3540 = .sdata:0x803E2714; // type:object size:0x5 scope:local align:4 data:string +@3541 = .sdata:0x803E271C; // type:object size:0x7 scope:local align:4 data:string +@3542 = .sdata:0x803E2724; // type:object size:0x8 scope:local align:4 data:string +@3543 = .sdata:0x803E272C; // type:object size:0x6 scope:local align:4 data:string +@3800 = .sdata:0x803E2734; // type:object size:0x4 scope:local align:4 data:string +@3807 = .sdata:0x803E2738; // type:object size:0x7 scope:local align:4 +@3809 = .sdata:0x803E2740; // type:object size:0x5 scope:local align:4 data:string +@3810 = .sdata:0x803E2748; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata:0x803E2750; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata:0x803E2758; // type:object size:0x5 scope:local align:4 data:string +@3816 = .sdata:0x803E2760; // type:object size:0x6 scope:local align:4 data:string +@3819 = .sdata:0x803E2768; // type:object size:0x6 scope:local align:4 data:string +@3821 = .sdata:0x803E2770; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata:0x803E2778; // type:object size:0x8 scope:local align:4 data:string +@4150 = .sdata:0x803E2780; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata:0x803E2788; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2790; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2798; // type:object size:0x8 scope:local align:4 +@4376 = .sdata:0x803E27A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E27A8; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803E27B0; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E27B8; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E27C0; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803E27C4; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803E27C8; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803E27CC; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E27D0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E27D4; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E27D8; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E27DC; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803E27E0; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E27E4; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803E27E8; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E27EC; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E27F0; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E27F4; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E27F8; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E27FC; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E2800; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803E2804; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E2808; // type:object size:0x4 scope:local align:4 data:float +@1733 = .sdata:0x803E280C; // type:object size:0x4 scope:local align:4 data:float +@1734 = .sdata:0x803E2810; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E2814; // type:object size:0x4 scope:local align:4 data:float +@1820 = .sdata:0x803E2818; // type:object size:0x4 scope:local align:4 data:float +@1821 = .sdata:0x803E281C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803E2820; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E2828; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E2830; // type:object size:0x8 scope:local align:4 +@1899 = .sdata:0x803E2838; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803E2840; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803E2848; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803E2850; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803E2858; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803E2860; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803E2868; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803E2870; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803E2878; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803E2880; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803E2888; // type:object size:0x8 scope:local align:4 +@2124 = .sdata:0x803E2890; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803E2898; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803E28A0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803E28A8; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803E28B0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803E28B8; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803E28C0; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803E28C8; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803E28D0; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803E28D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E28E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E28E8; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803E28F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E28F8; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E2900; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803E2908; // type:object size:0x8 scope:local align:4 +@736 = .sdata:0x803E2910; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E2914; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E2918; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E291C; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E2920; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803E2924; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803E2928; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803E292C; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803E2930; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803E2938; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803E2940; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2948; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2950; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803E2958; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2960; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E2968; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E2970; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E2978; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803E2980; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803E2988; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803E298C; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803E2990; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803E2994; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803E2998; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E299C; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803E29A0; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803E29A4; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803E29A8; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803E29AC; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803E29B0; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803E29B4; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803E29B8; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E29C0; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E29C8; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803E29D0; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803E29D4; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803E29D8; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803E29DC; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803E29E0; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803E29E4; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803E29E8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803E29EC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803E29F0; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803E29F4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E29F8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E29FC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E2A00; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E2A04; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803E2A08; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803E2A0C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803E2A10; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803E2A14; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803E2A18; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803E2A1C; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803E2A20; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803E2A24; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803E2A28; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E2A2C; // type:object size:0x8 scope:local align:4 +@1050 = .sdata:0x803E2A34; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2A3C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2A44; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803E2A4C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2A54; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803E2A60; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E2A64; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E2A68; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E2A6C; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803E2A70; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803E2A74; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803E2A78; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803E2A7C; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803E2A80; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803E2A84; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803E2A88; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803E2A8C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803E2A90; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E2A94; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2A9C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2AA4; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803E2AAC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2AB4; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E2ABC; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E2AC4; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803E2ACC; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803E2AD4; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803E2ADC; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E2AE8; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803E2AEC; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803E2AF4; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803E2AFC; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803E2B04; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803E2B0C; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803E2B14; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E2B1C; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803E2B24; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803E2B2C; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803E2B34; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803E2B3C; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803E2B44; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803E2B4C; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803E2B54; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803E2B5C; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803E2B64; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803E2B6C; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803E2B74; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803E2B7C; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803E2B84; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803E2B8C; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803E2B94; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803E2B9C; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803E2BA4; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803E2BAC; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803E2BB4; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803E2BBC; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803E2BC4; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803E2BCC; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803E2BD4; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803E2BDC; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803E2BE4; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803E2BEC; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803E2BF4; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803E2BFC; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803E2C04; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803E2C0C; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803E2C14; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803E2C1C; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803E2C24; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803E2C28; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803E2C30; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803E2C38; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803E2C40; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803E2C48; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803E2C50; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803E2C58; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803E2C60; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803E2C68; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803E2C70; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803E2C78; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803E2C80; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803E2C88; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803E2C90; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803E2C98; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803E2CA0; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803E2CA4; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803E2CAC; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803E2CB4; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803E2CBC; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803E2CC4; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803E2CCC; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803E2CD4; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E2CDC; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E2CE4; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E2CEC; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803E2CF4; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803E2CFC; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803E2D04; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803E2D08; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803E2D10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E2D18; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E2D20; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803E2D28; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E2D30; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803E2D38; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2D40; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2D48; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803E2D50; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803E2D58; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E2D60; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E2D68; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803E2D6C; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803E2D70; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803E2D74; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803E2D78; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803E2D7C; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803E2D84; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803E2D8C; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803E2D94; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803E2D98; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803E2DA0; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803E2DA8; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803E2DB0; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803E2DB4; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803E2DB8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E2DC0; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803E2DC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2DD0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2DD8; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803E2DE0; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E2DE8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2DF0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2DF8; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803E2E00; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2E08; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E2E10; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E2E18; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E2E20; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803E2E28; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2E30; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803E2E38; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803E2E40; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803E2E48; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803E2E50; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E2E58; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803E2E60; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803E2E68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E2E70; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E2E78; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803E2E80; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803E2E88; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E2E90; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E2E98; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E2EA0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E2EA8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E2EB0; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803E2EB8; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E2EC0; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E2EC4; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E2EC8; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E2ECC; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E2ED0; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E2ED4; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E2ED8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E2EDC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E2EE4; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803E2EEC; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E2EF8; // type:object size:0x8 scope:local align:4 +@1291 = .sdata:0x803E2F00; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2F08; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2F10; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803E2F18; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803E2F20; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803E2F28; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803E2F30; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803E2F38; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803E2F40; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803E2F48; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E2F4C; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803E2F50; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803E2F54; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803E2F5C; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803E2F64; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803E2F6C; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803E2F74; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803E2F7C; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803E2F84; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803E2F8C; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E2F98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803E2FA0; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803E2FA8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803E2FB0; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803E2FB8; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E2FBC; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803E2FC0; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803E2FC4; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803E2FC8; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803E2FCC; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803E2FD0; // type:object size:0x4 scope:global align:4 data:float +degreePerRadian__6NMathF = .sdata:0x803E2FD4; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803E2FD8; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803E2FDC; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803E2FE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803E2FE8; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803E2FF0; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E2FF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E3000; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803E3008; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E3010; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E3018; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803E3020; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803E3028; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803E3030; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803E3038; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E3040; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803E3048; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803E3050; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803E3058; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803E3060; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803E3068; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803E3070; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803E3078; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803E3080; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E3088; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E3090; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803E3098; // type:object size:0x8 scope:local align:4 +@1799 = .sdata:0x803E30A0; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E30A4; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E30A8; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata:0x803E30AC; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata:0x803E30B0; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata:0x803E30B4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata:0x803E30B8; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E30BC; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E30C0; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E30C4; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E30C8; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E30CC; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803E30D0; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E30D4; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E30D8; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E30DC; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E30E0; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803E30E4; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E30E8; // type:object size:0x7 scope:local align:4 data:string +@1937 = .sdata:0x803E30F0; // type:object size:0x8 scope:local align:4 data:string +@1938 = .sdata:0x803E30F8; // type:object size:0x8 scope:local align:4 data:string +@2237 = .sdata:0x803E3100; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E3104; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E3108; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E310C; // type:object size:0x1 scope:local align:4 +@2311 = .sdata:0x803E3110; // type:object size:0x8 scope:local align:4 data:string +@2326 = .sdata:0x803E3118; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3120; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3128; // type:object size:0x8 scope:local align:4 +@2329 = .sdata:0x803E3130; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3138; // type:object size:0x8 scope:local align:4 +@2331 = .sdata:0x803E3140; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3148; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniTestSection = .sdata:0x803E3150; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E3158; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniTestNode = .sdata:0x803E3160; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803E3168; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E3170; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803E3178; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E3180; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803E3188; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E3190; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803E3198; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803E31A0; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803E31A8; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803E31B0; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E31B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E31C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E31C8; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E31D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E31D8; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803E31E0; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803E31E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E31F0; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E31F8; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803E3200; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803E3208; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E3210; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803E3218; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803E3220; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E3228; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803E3230; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E3238; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803E3240; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3248; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3250; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803E3258; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3260; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803E3268; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E3270; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803E3278; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803E3280; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803E3288; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803E3290; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803E3298; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803E32A0; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803E32A8; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803E32B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E32B8; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E32C0; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E32C8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E32D0; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E32D8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E32E0; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803E32E8; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803E32F0; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803E32F8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803E3300; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803E3308; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803E3310; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E3318; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E3320; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E3328; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803E3330; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803E3338; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E3340; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803E3348; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803E3350; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803E3358; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803E3360; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803E3368; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803E3370; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E3378; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803E3380; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803E3388; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803E3390; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3398; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E33A0; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803E33A8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E33B0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803E33B8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E33C0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E33C8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803E33D0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803E33D8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803E33E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803E33E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803E33F0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E33F8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3400; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803E3408; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803E3410; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803E3418; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803E3420; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803E3428; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803E3430; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3438; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803E3440; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803E3448; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803E3450; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803E3458; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803E3460; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803E3468; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3470; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E3478; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3480; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803E3488; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E3490; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803E3498; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E34A0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E34A8; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803E34B0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803E34B8; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803E34C0; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803E34C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E34D0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E34D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803E34E0; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E34E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E34F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E34F8; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803E3500; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3508; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3510; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803E3518; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803E3520; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803E3528; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E3530; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803E3534; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803E3538; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803E353C; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803E3540; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803E3544; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803E3548; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803E354C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803E3550; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803E3554; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803E3558; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E355C; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E3560; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803E3564; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E356C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803E3574; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803E357C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3584; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E358C; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803E3594; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E359C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E35A4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803E35AC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E35B4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E35BC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E35C4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803E35CC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803E35D4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803E35DC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803E35E4; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803E35EC; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803E35F4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803E35FC; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803E3604; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E360C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3614; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803E361C; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803E3624; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803E362C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803E3634; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803E363C; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803E3644; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803E364C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803E3654; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803E365C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803E3664; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803E366C; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E3674; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803E367C; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803E3684; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E368C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3694; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803E369C; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803E36A4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803E36AC; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803E36B4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803E36BC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803E36C4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803E36CC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E36D8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803E36E0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803E36E8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803E36F0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803E36F8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803E3700; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803E3708; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803E3710; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3718; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E3720; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3728; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803E3730; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803E3738; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803E3740; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3748; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E374C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3750; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3754; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3758; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E375C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3760; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E3764; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E3768; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E376C; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803E3770; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803E3774; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803E3778; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E377C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803E3784; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E378C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3794; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803E379C; // type:object size:0x8 scope:local align:4 +@2167 = .sdata:0x803E37A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E37AC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E37B4; // type:object size:0x8 scope:local align:4 +@2170 = .sdata:0x803E37BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E37C4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E37CC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803E37D4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803E37DC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803E37E4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803E37EC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803E37F4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3800; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803E3808; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803E3810; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3818; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3820; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803E3828; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803E3830; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803E3838; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803E3840; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803E3848; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803E3850; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803E3858; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803E3860; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E3868; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803E386C; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803E3870; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803E3874; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803E3878; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803E387C; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803E3880; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3884; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E388C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3894; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803E389C; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803E38A4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E38AC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E38B4; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803E38BC; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803E38C4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803E38CC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E38D4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E38DC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803E38E4; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803E38EC; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803E38F4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E38FC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3904; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803E390C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3914; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E391C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803E3924; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3930; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803E3938; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803E3940; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3948; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E394C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3950; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3954; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3958; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E395C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3960; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803E3964; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803E3968; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803E396C; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803E3970; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803E3974; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803E3978; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803E397C; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803E3980; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803E3984; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3988; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803E3990; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803E3998; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803E39A0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803E39A8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803E39B0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803E39B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E39C0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803E39C8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803E39D0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E39D8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E39E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803E39E8; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803E39F0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E39F8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3A00; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E3A08; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3A10; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3A18; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803E3A20; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803E3A28; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803E3A30; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803E3A38; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803E3A40; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E3A48; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3A4C; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E3A50; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3A54; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E3A58; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E3A5C; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3A60; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803E3A68; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803E3A70; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803E3A78; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803E3A80; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803E3A88; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3A90; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803E3A98; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803E3AA0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803E3AA8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803E3AB0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3AB8; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803E3AC0; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803E3AC4; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803E3AC8; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803E3ACC; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803E3AD0; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803E3AD4; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803E3AD8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3ADC; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803E3AE4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803E3AEC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803E3AF4; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3AFC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3B04; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803E3B0C; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803E3B14; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803E3B1C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803E3B24; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803E3B2C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803E3B34; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803E3B3C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3B44; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803E3B4C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803E3B54; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803E3B5C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803E3B64; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803E3B6C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803E3B74; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803E3B7C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803E3B84; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803E3B8C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803E3B94; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803E3B9C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803E3BA4; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803E3BAC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803E3BB4; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803E3BBC; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803E3BC4; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803E3BCC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803E3BD4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803E3BDC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803E3BE4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803E3BEC; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3BF8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E3BFC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3C00; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3C04; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3C08; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3C0C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3C10; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803E3C14; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803E3C18; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803E3C1C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3C20; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803E3C28; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803E3C30; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803E3C38; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803E3C40; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803E3C48; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803E3C50; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803E3C58; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803E3C60; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803E3C68; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803E3C70; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803E3C78; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803E3C80; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3C88; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3C90; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803E3C98; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803E3CA0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803E3CA8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803E3CB0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803E3CB8; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803E3CC0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803E3CC8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803E3CD0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803E3CD8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3CE0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3CE8; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803E3CF0; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803E3CF8; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803E3D00; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3D08; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3D10; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803E3D18; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803E3D20; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3D28; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3D30; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803E3D38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3D40; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3D48; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803E3D50; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3D58; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E3D5C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3D60; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3D64; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3D68; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3D6C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3D70; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E3D74; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E3D78; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E3D7C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E3D80; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E3D84; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E3D88; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803E3D8C; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803E3D90; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3D94; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E3D9C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3DA4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803E3DAC; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803E3DB4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803E3DBC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803E3DC4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3DCC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3DD4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803E3DDC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803E3DE4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803E3DEC; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803E3DF4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803E3DFC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803E3E04; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803E3E0C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3E14; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3E1C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803E3E24; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803E3E2C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3E34; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3E3C; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803E3E44; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3E4C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3E54; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803E3E5C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803E3E64; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E3E70; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E3E74; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E3E78; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E3E7C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3E80; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803E3E88; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803E3E90; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803E3E98; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803E3EA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803E3EA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803E3EB0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3EB8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E3EC0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803E3EC8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E3ED0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803E3ED8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803E3EE0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3EE8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3EF0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3EF8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3F00; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803E3F08; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803E3F10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3F18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3F20; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803E3F28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3F30; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3F38; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803E3F40; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3F48; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803E3F50; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803E3F58; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803E3F60; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803E3F68; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E3F70; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803E3F78; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3F80; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3F88; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803E3F90; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803E3F98; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3FA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E3FA8; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803E3FB0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803E3FB8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803E3FC0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803E3FC8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803E3FD0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803E3FD8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E3FE0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803E3FE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803E3FF0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803E3FF8; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803E4000; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803E4008; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803E4010; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803E4018; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E4020; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803E4024; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803E4028; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E402C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E4030; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E4038; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E4040; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803E4048; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803E4050; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803E4058; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803E4060; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803E4068; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4070; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4078; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E4080; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803E4088; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E4090; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803E4098; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803E40A0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E40A8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E40B0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803E40B8; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803E40C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E40C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E40D0; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803E40D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E40E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E40E8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803E40F0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803E40F8; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803E4100; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E4104; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E4108; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E410C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803E4114; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E411C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E4124; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803E412C; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803E4134; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E413C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4144; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803E414C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4154; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E415C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803E4164; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803E416C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4174; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E417C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803E4184; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803E418C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803E4194; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803E419C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803E41A4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803E41AC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E41B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E41C0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803E41C8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803E41D0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803E41D8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E41E0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E41E8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803E41F0; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803E41F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E4200; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4208; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4210; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4218; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4220; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803E4228; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E4230; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E4238; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E4240; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E4248; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803E4250; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803E4258; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803E4260; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4268; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4270; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803E4278; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4280; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803E4288; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E4290; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E4294; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E4298; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E429C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E42A0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E42A4; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E42A8; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803E42AC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803E42B0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803E42B4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803E42B8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803E42BC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803E42C0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803E42C4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803E42C8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803E42CC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803E42D0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803E42D4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803E42D8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803E42DC; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803E42E0; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803E42E4; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803E42E8; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803E42EC; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803E42F0; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803E42F4; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803E42F8; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803E42FC; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803E4300; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803E4304; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803E4308; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803E430C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E4310; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E4314; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E4318; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E431C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E4320; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803E4324; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803E4328; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E432C; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E4330; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E4334; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E4338; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803E433C; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803E4340; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803E4344; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E4348; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E434C; // type:object size:0x4 scope:local align:4 data:float +@4342 = .sdata:0x803E4350; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803E4354; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803E4358; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata:0x803E435C; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803E4360; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803E4364; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803E4368; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803E436C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803E4370; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803E4374; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803E4378; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803E437C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E4380; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4388; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4390; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E4398; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E43A0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E43A8; // type:object size:0x8 scope:local align:4 +@4712 = .sdata:0x803E43B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E43B8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E43C0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E43C8; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803E43D0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E43D8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E43E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803E43E8; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803E43F0; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803E43F8; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803E4400; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803E4408; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803E4410; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803E4418; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803E4420; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803E4428; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803E4430; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803E4438; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803E4440; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803E4448; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803E4450; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803E4458; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803E4460; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803E4468; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803E4470; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803E4478; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803E4480; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803E4488; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803E4490; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E4498; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803E44A0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803E44A8; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803E44B0; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803E44B8; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803E44C0; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803E44C8; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803E44D0; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803E44D8; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803E44E0; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E44E8; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803E44F0; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803E44F8; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803E4500; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803E4508; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803E4510; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803E4518; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E4520; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E4528; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803E4530; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E4538; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E453C; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803E4544; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803E454C; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803E4554; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803E455C; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803E4564; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803E456C; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803E4574; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803E457C; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803E4584; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803E458C; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803E4594; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803E459C; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803E45A4; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803E45AC; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E45B4; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803E45B8; // type:object size:0x6 scope:local align:4 data:string +@1517 = .sdata:0x803E45C0; // type:object size:0x8 scope:local align:4 data:string +@1519 = .sdata:0x803E45C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E45D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E45D8; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E45E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E45E8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E45F0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E45F8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E4600; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803E4608; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803E4610; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E4618; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4620; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4628; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4630; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4638; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E4640; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E4648; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803E4650; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803E4658; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803E4660; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803E4668; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803E4670; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803E4678; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4680; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4688; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803E4690; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4698; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E46A0; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803E46A8; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803E46B0; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803E46B4; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803E46B8; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803E46BC; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803E46C0; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803E46C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803E46C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E46D0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E46D8; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803E46E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E46E8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E46F0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803E46F8; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803E4700; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803E4708; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803E470C; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803E4710; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803E4714; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803E4718; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803E471C; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803E4720; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803E4724; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803E4728; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803E472C; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803E4730; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E4734; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803E4738; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803E473C; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803E4740; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803E4744; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803E4748; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803E474C; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803E4750; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803E4754; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803E4758; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803E475C; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803E4760; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803E4764; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803E4768; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803E476C; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803E4770; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803E4774; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803E4778; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803E477C; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803E4780; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E4784; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E4788; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E478C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E4790; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E4794; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E4798; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E479C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803E47A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E47A4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E47AC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E47B4; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803E47BC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E47C4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E47CC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E47D4; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803E47E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E47E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E47F0; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803E47F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4800; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803E4808; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4810; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803E4818; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803E4820; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803E4828; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803E4830; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803E4838; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803E4840; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803E4848; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803E4850; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803E4858; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803E4860; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803E4868; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803E4870; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803E4878; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803E4880; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803E4888; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803E488C; // type:object size:0x5 scope:local align:4 data:string +@2889 = .sdata:0x803E4894; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E489C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E48A4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803E48AC; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E48B4; // type:object size:0x8 scope:local align:4 +@2895 = .sdata:0x803E48BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E48C4; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E48CC; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803E48D4; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803E48E0; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803E48E8; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E48EC; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E48F0; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E48F4; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E48F8; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E48FC; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E4900; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E4904; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803E4908; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803E490C; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E4910; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E4914; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E4918; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E491C; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803E4920; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E4924; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803E4928; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803E492C; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803E4930; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E4934; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E4938; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E493C; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E4940; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E4944; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E4948; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E494C; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E4950; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E4954; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E4958; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E495C; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803E4960; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803E4964; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803E4968; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803E496C; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803E4970; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803E4974; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803E4978; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803E497C; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803E4980; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803E4984; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803E4988; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803E498C; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803E4990; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803E4994; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803E4998; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803E499C; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803E49A0; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803E49A4; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803E49A8; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803E49AC; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803E49B0; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803E49B4; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803E49B8; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E49BC; // type:object size:0x1 scope:local align:4 +@1700 = .sdata:0x803E49C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E49C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E49D0; // type:object size:0x8 scope:local align:4 +@1702 = .sdata:0x803E49D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E49E0; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803E49E8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E49F0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E49F8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4A00; // type:object size:0x8 scope:local align:4 +@1716 = .sdata:0x803E4A08; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4A10; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803E4A18; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4A20; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4A28; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4A30; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803E4A38; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4A40; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803E4A48; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803E4A50; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E4A54; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803E4A58; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803E4A5C; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803E4A60; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803E4A64; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803E4A68; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803E4A6C; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803E4A70; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803E4A74; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803E4A78; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803E4A7C; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803E4A80; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803E4A84; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803E4A88; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803E4A8C; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803E4A90; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803E4A94; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803E4A98; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803E4A9C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803E4AA0; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803E4AA4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4AA8; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803E4AB0; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803E4AB8; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803E4AC0; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803E4AC8; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E4AD0; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E4AD4; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803E4AD8; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E4ADC; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803E4AE0; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803E4AE4; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803E4AE8; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803E4AEC; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803E4AF0; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803E4AF4; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E4AF8; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803E4AFC; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803E4B00; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803E4B04; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803E4B08; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803E4B0C; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803E4B10; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803E4B14; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803E4B18; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803E4B1C; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803E4B20; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803E4B24; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E4B28; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E4B2C; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E4B30; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803E4B34; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E4B38; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803E4B3C; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E4B40; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E4B44; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E4B48; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803E4B4C; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803E4B50; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E4B54; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E4B58; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E4B5C; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E4B60; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803E4B64; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E4B68; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803E4B6C; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803E4B70; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803E4B74; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803E4B78; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E4B7C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E4B80; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E4B84; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E4B88; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E4B8C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E4B90; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4B98; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4BA0; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803E4BA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4BB0; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803E4BB8; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E4BC0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803E4BC8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4BD0; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803E4BD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4BE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4BE8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4BF0; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4BF8; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803E4C00; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E4C08; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803E4C10; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803E4C14; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E4C18; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E4C1C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803E4C20; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4C24; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803E4C2C; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803E4C38; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E4C3C; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E4C40; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E4C44; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E4C48; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E4C4C; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E4C50; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E4C54; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E4C58; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803E4C5C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E4C60; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E4C64; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E4C68; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803E4C6C; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803E4C70; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803E4C74; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4C78; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803E4C80; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803E4C88; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803E4C90; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803E4C94; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803E4C98; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803E4C9C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803E4CA0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803E4CA4; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E4CA8; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803E4CB0; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E4CB4; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E4CB8; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E4CBC; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E4CC0; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E4CC4; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803E4CC8; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E4CCC; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E4CD0; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E4CD4; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E4CD8; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E4CDC; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803E4CE0; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E4CE4; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803E4CE8; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E4CEC; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E4CF0; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E4CF4; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803E4CF8; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E4CFC; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E4D00; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E4D04; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803E4D08; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E4D0C; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E4D10; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803E4D14; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803E4D18; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E4D1C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E4D20; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4D28; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4D30; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E4D38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4D40; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803E4D48; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E4D50; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803E4D58; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803E4D60; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803E4D68; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4D70; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803E4D78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4D80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4D88; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4D90; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4D98; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803E4DA0; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803E4DA8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E4DAC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803E4DB0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803E4DB4; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E4DB8; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E4DBC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E4DC0; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E4DC4; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803E4DC8; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803E4DCC; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803E4DD0; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E4DD4; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E4DD8; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E4DDC; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803E4DE0; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803E4DE4; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803E4DE8; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E4DEC; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803E4DF0; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803E4DF8; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803E4DFC; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803E4E00; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E4E04; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E4E08; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E4E0C; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E4E10; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803E4E14; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4E18; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4E20; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4E28; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803E4E30; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803E4E38; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803E4E40; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803E4E44; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803E4E48; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803E4E4C; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803E4E50; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E4E54; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E4E58; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803E4E5C; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E4E60; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E4E64; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E4E68; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803E4E6C; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E4E70; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E4E74; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E4E78; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E4E7C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E4E80; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E4E84; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E4E88; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803E4E8C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E4E90; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E4E94; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803E4E98; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E4E9C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E4EA0; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E4EA4; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E4EA8; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E4EAC; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803E4EB0; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803E4EB4; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E4EB8; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803E4EBC; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803E4EC0; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803E4EC4; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803E4EC8; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803E4ECC; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803E4ED0; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803E4ED4; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803E4ED8; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803E4EDC; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803E4EE0; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803E4EE4; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E4EE8; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803E4EEC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4EF4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4EFC; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E4F04; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4F0C; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803E4F14; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4F1C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4F24; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4F2C; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803E4F34; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4F3C; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803E4F44; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4F4C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4F54; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4F5C; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803E4F64; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803E4F70; // type:object size:0x7 scope:local align:4 data:string +@3371 = .sdata:0x803E4F78; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata:0x803E4F7C; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata:0x803E4F80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4F84; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803E4F8C; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803E4F98; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803E4F9C; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803E4FA0; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803E4FA4; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803E4FA8; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803E4FAC; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803E4FB0; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803E4FB4; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803E4FB8; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803E4FBC; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803E4FC0; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803E4FC4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E4FC8; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E4FCC; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803E4FD0; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803E4FD4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E4FD8; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803E4FDC; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803E4FE0; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803E4FE4; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E4FE8; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E4FEC; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E4FF0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E4FF4; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E4FF8; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E4FFC; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E5000; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E5004; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E5008; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E500C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E5010; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E5014; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803E5018; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803E501C; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803E5020; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E5024; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E5028; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803E502C; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803E5030; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803E5034; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E5038; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E503C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803E5040; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E5044; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E5048; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E504C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803E5050; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E5054; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803E5058; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803E505C; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803E5060; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803E5064; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E5068; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E506C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E5070; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E5074; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E5078; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E507C; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E5080; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5084; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803E508C; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803E5094; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E509C; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803E50A4; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803E50AC; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803E50B4; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803E50BC; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E50C8; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803E50D0; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E50D4; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E50D8; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803E50DC; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E50E0; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803E50E4; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E50E8; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E50EC; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E50F0; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E50F4; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E50F8; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803E50FC; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803E5100; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803E5104; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803E5108; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E510C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5114; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E511C; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803E5124; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E512C; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803E5134; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E513C; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803E5144; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E514C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5154; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E515C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5164; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803E516C; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803E5178; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803E5180; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E5184; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803E5188; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E518C; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803E5190; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803E5194; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803E5198; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803E519C; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803E51A0; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803E51A4; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803E51A8; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803E51AC; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E51B0; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E51B4; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E51B8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E51BC; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803E51C0; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E51C4; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E51C8; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803E51CC; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803E51D0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E51D4; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E51D8; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803E51DC; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E51E0; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E51E4; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803E51E8; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803E51EC; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803E51F0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E51F4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E51F8; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803E51FC; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E5200; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5204; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803E520C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5214; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803E521C; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803E5228; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803E522C; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803E5230; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803E5234; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803E5238; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803E523C; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803E5240; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803E5244; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803E5248; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803E524C; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803E5250; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803E5254; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803E5258; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E525C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5264; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E526C; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803E5274; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E527C; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803E5284; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E528C; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E5294; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803E529C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E52A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E52AC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E52B4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E52BC; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803E52C4; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E52D0; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803E52D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E52DC; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803E52E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E52EC; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803E52F4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5300; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5308; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5310; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803E5318; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5320; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803E5328; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803E5330; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5338; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5340; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E5348; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5350; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803E5358; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803E5360; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803E5368; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803E536C; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803E5370; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E5374; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E537C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5384; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803E538C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5394; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803E539C; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803E53A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E53AC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E53B4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E53BC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E53C4; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803E53CC; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E53D8; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803E53E0; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803E53E8; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803E53EC; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803E53F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E53F4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E53FC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5404; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803E540C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5414; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803E541C; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803E5424; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E542C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5434; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E543C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5444; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803E544C; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803E5458; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E545C; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803E5464; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803E5470; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E5478; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5480; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5488; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803E5490; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5498; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803E54A0; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803E54A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E54B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E54B8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E54C0; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E54C8; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803E54D0; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803E54D8; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803E54E0; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803E54E4; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803E54E8; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803E54EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E54F0; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803E54F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5500; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803E5508; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803E5510; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803E5514; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803E5518; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803E551C; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803E5520; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803E5524; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803E5528; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803E552C; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803E5530; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803E5534; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803E5538; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803E553C; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803E5540; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803E5544; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803E5548; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803E554C; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803E5550; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803E5554; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803E5558; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803E555C; // type:object size:0x4 scope:local align:4 +@975 = .sdata:0x803E5560; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E5568; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata:0x803E556C; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata:0x803E5570; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E5574; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E5578; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E557C; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E5580; // type:object size:0x3 scope:local align:4 +@1220 = .sdata:0x803E5584; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E558C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5594; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E559C; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803E55A4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E55AC; // type:object size:0x8 scope:local align:4 +@1228 = .sdata:0x803E55B4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E55BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803E55C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803E55CC; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803E55D8; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803E55E0; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803E55E4; // type:object size:0x7 scope:local align:4 data:string +@1534 = .sdata:0x803E55EC; // type:object size:0x3 scope:local align:4 data:string +@1535 = .sdata:0x803E55F0; // type:object size:0x3 scope:local align:4 data:string +@1536 = .sdata:0x803E55F4; // type:object size:0x7 scope:local align:4 data:string +@1616 = .sdata:0x803E55FC; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803E5600; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803E5604; // type:object size:0x2 scope:local align:4 data:string +@1619 = .sdata:0x803E5608; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803E560C; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803E5610; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803E5614; // type:object size:0x3 scope:local align:4 data:string +@1623 = .sdata:0x803E5618; // type:object size:0x3 scope:local align:4 data:string +@1624 = .sdata:0x803E561C; // type:object size:0x3 scope:local align:4 data:string +@1625 = .sdata:0x803E5620; // type:object size:0x3 scope:local align:4 data:string +@1626 = .sdata:0x803E5624; // type:object size:0x3 scope:local align:4 data:string +@1627 = .sdata:0x803E5628; // type:object size:0x3 scope:local align:4 data:string +@1628 = .sdata:0x803E562C; // type:object size:0x3 scope:local align:4 data:string +@1629 = .sdata:0x803E5630; // type:object size:0x3 scope:local align:4 data:string +@1630 = .sdata:0x803E5634; // type:object size:0x3 scope:local align:4 data:string +@1631 = .sdata:0x803E5638; // type:object size:0x3 scope:local align:4 data:string +@1632 = .sdata:0x803E563C; // type:object size:0x3 scope:local align:4 data:string +@1633 = .sdata:0x803E5640; // type:object size:0x3 scope:local align:4 data:string +@1634 = .sdata:0x803E5644; // type:object size:0x3 scope:local align:4 data:string +@1635 = .sdata:0x803E5648; // type:object size:0x3 scope:local align:4 data:string +@1636 = .sdata:0x803E564C; // type:object size:0x2 scope:local align:4 data:string +@1734 = .sdata:0x803E5650; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803E5654; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E565C; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E5664; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E566C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E5674; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803E567C; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803E5688; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803E5690; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803E5694; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803E569C; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803E56A4; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803E56AC; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803E56B4; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803E56BC; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803E56C4; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803E56CC; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803E56D4; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803E56DC; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803E56E4; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803E56EC; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803E56F4; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803E56FC; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803E5704; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803E570C; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803E5714; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803E571C; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803E5724; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803E572C; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803E5734; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803E573C; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803E5744; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803E574C; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803E5754; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803E575C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803E5764; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803E576C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803E5774; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803E577C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803E5784; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803E578C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803E5794; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803E579C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803E57A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803E57AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803E57B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803E57BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803E57C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803E57CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803E57D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803E57DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803E57E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803E57EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803E57F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803E57FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803E5804; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803E580C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803E5814; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803E581C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803E5824; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803E582C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803E5834; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803E583C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803E5844; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803E584C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803E5854; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803E585C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803E5864; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803E586C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803E5874; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803E587C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803E5884; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803E588C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803E5894; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803E589C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803E58A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803E58AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803E58B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803E58BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803E58C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803E58CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803E58D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803E58DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803E58E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803E58EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803E58F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803E58FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803E5904; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803E590C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803E5914; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803E591C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803E5924; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803E592C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803E5934; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803E593C; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803E5944; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803E5950; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E5958; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E595C; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E5960; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E5964; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E5968; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E596C; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E5970; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata:0x803E5974; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E5978; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803E597C; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803E5980; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803E5984; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803E5988; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803E598C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5990; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803E5994; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803E5998; // type:object size:0x4 scope:local align:4 data:float +@1878 = .sdata:0x803E59A0; // type:object size:0x1 scope:local align:4 +@1936 = .sdata:0x803E59A4; // type:object size:0x4 scope:local align:4 data:string +@1969 = .sdata:0x803E59A8; // type:object size:0x2 scope:local align:4 data:string +@1970 = .sdata:0x803E59AC; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E59B0; // type:object size:0x5 scope:local align:4 data:string +@1993 = .sdata:0x803E59B8; // type:object size:0x3 scope:local align:4 data:string +@2038 = .sdata:0x803E59BC; // type:object size:0x7 scope:local align:4 data:string +@2073 = .sdata:0x803E59C4; // type:object size:0x7 scope:local align:4 data:string +@2074 = .sdata:0x803E59CC; // type:object size:0x7 scope:local align:4 data:string +@2075 = .sdata:0x803E59D4; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E59DC; // type:object size:0x7 scope:local align:4 data:string +@2077 = .sdata:0x803E59E4; // type:object size:0x7 scope:local align:4 data:string +@2078 = .sdata:0x803E59EC; // type:object size:0x7 scope:local align:4 data:string +@1367 = .sdata:0x803E59F8; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803E59FC; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803E5A00; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803E5A08; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803E5A10; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803E5A18; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803E5A1C; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803E5A20; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803E5A24; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E5A28; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803E5A30; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803E5A38; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803E5A40; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803E5A48; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E5A4C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E5A50; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E5A54; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E5A58; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803E5A5C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803E5A60; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803E5A64; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E5A68; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E5A6C; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E5A70; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803E5A78; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803E5A80; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803E5A88; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803E5A90; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803E5A98; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803E5A9C; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803E5AA0; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803E5AA4; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803E5AA8; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803E5AAC; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803E5AB0; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803E5AB4; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803E5AB8; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803E5ABC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E5AC0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E5AC8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E5AD0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803E5AD8; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803E5AE0; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803E5AE4; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803E5AE8; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803E5AEC; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803E5AF0; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E5AF4; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E5AF8; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803E5AFC; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803E5B00; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803E5B04; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803E5B0C; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803E5B10; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803E5B14; // type:object size:0x5 scope:local align:4 data:string +@1597 = .sdata:0x803E5B1C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5B24; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5B2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803E5B34; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803E5B3C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803E5B44; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803E5B4C; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803E5B54; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803E5B5C; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803E5B64; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803E5B6C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803E5B74; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803E5B7C; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803E5B84; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803E5B8C; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803E5B94; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803E5B9C; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803E5BA4; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803E5BAC; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803E5BB4; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803E5BBC; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E5BC4; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803E5BCC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5BD4; // type:object size:0x8 scope:local align:4 +@1795 = .sdata:0x803E5BDC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5BE4; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803E5BEC; // type:object size:0x8 scope:local align:4 +@1887 = .sdata:0x803E5BF4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5BFC; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803E5C04; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803E5C10; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803E5C18; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5C20; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5C28; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E5C30; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5C38; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803E5C40; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5C48; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803E5C50; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803E5C58; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803E5C60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5C68; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5C70; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803E5C78; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5C80; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803E5C88; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5C90; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803E5C98; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803E5CA0; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803E5CA4; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803E5CA8; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803E5CAC; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803E5CB0; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803E5CB4; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E5CB8; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803E5CBC; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E5CC0; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803E5CC4; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803E5CC8; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E5CCC; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803E5CD0; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803E5CD4; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E5CD8; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803E5CDC; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803E5CE0; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803E5CE4; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata:0x803E5CE8; // type:object size:0x1 scope:local align:4 +@1627 = .sdata:0x803E5CEC; // type:object size:0x8 scope:local align:4 data:string +@1755 = .sdata:0x803E5CF4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5CFC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5D04; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803E5D0C; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803E5D14; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803E5D1C; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803E5D24; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803E5D2C; // type:object size:0x8 scope:local align:4 +@1771 = .sdata:0x803E5D34; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5D3C; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803E5D44; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803E5D60; // type:object size:0x8 scope:local align:32 +@2019 = .sdata:0x803E5D68; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5D6C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E5D70; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E5D74; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E5D78; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E5D7C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803E5D80; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803E5D88; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803E5D90; // type:object size:0x4 scope:global align:4 data:float +@595 = .sdata:0x803E5D98; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803E5D9C; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803E5DA0; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803E5DA4; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E5DA8; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E5DAC; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803E5DB0; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803E5DB4; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E5DB8; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E5DBC; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803E5DC0; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803E5DC4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803E5DC8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803E5DD0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803E5DD8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803E5DE0; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803E5DE8; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803E5DEC; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803E5DF0; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803E5DF4; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803E5DF8; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803E5DFC; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E5E00; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E5E04; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E5E08; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803E5E0C; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E5E10; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803E5E14; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803E5E18; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E5E1C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E5E20; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E5E28; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5E30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5E38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5E40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5E48; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803E5E50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E5E58; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803E5E60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E5E68; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803E5E70; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E5E78; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803E5E80; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E5E84; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E5E88; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803E5E8C; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803E5E90; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803E5E94; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803E5E98; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803E5E9C; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803E5EA0; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803E5EA4; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803E5EAC; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803E5EB0; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E5EB4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E5EB8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803E5EC0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E5EC8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E5ED0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803E5ED8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E5EE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803E5EE8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803E5EF0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803E5EF8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E5F00; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E5F08; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803E5F10; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E5F18; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E5F20; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803E5F28; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803E5F30; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803E5F38; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803E5F40; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803E5F48; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E5F50; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803E5F58; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803E5F60; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E5F68; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803E5F70; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E5F78; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803E5F80; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803E5F88; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803E5F90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5F98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5FA0; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803E5FA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5FB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E5FB8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803E5FC0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E5FC8; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803E5FD0; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803E5FD8; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803E5FDC; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803E5FE0; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803E5FE4; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803E5FE8; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E5FEC; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803E5FF0; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803E5FF4; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803E5FF8; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803E5FFC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6000; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803E6008; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6010; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6018; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803E6020; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6028; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803E6030; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803E6038; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803E6040; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6048; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803E6050; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803E6058; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803E6060; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E6068; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803E6070; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803E6078; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803E6080; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803E6088; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803E6090; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6098; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803E60A0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803E60A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803E60B0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E60B8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803E60C0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E60C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803E60D0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803E60D8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803E60E0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803E60E8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E60F0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E60F8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803E6100; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803E6108; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6110; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E6118; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803E6120; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6128; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803E6130; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803E6138; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6140; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6148; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803E6150; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6158; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6160; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803E6168; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E6170; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803E6178; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6180; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803E6188; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803E6190; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803E6198; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E61A0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E61A8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803E61B0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803E61B8; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803E61C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803E61C8; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803E61D0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803E61D8; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803E61E0; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803E61E4; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803E61E8; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803E61EC; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803E61F0; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803E61F4; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803E61F8; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E61FC; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803E6200; // type:object size:0x4 scope:local align:4 data:float +@2465 = .sdata:0x803E6204; // type:object size:0x4 scope:local align:4 data:float +@2525 = .sdata:0x803E6208; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803E620C; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803E6210; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803E6214; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E6218; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E621C; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata:0x803E6220; // type:object size:0x4 scope:local align:4 data:float +@2873 = .sdata:0x803E6224; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803E6228; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E622C; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E6230; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803E6234; // type:object size:0x4 scope:local align:4 data:float +@3106 = .sdata:0x803E6238; // type:object size:0x4 scope:local align:4 data:float +@3454 = .sdata:0x803E623C; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata:0x803E6240; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata:0x803E6244; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803E6248; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803E624C; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata:0x803E6250; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata:0x803E6254; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata:0x803E6258; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata:0x803E625C; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata:0x803E6260; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata:0x803E6264; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata:0x803E6268; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata:0x803E626C; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata:0x803E6270; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E6274; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E627C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803E6284; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803E628C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803E6294; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803E629C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803E62A4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803E62AC; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803E62B4; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803E62BC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E62C4; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803E62CC; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803E62D4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803E62DC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803E62E4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803E62EC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E62F4; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803E62FC; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803E6304; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803E630C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803E6314; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803E631C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803E6324; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803E632C; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803E6334; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803E633C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803E6344; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803E634C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803E6354; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803E635C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6364; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803E636C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803E6374; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6380; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6388; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6390; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6398; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E63A0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803E63A8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803E63B0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E63B8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E63C0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803E63C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E63D0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803E63D8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803E63E0; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803E63E8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803E63F0; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803E63F8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E6400; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803E6408; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803E6410; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803E6418; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803E6420; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803E6428; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803E6430; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E6438; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E643C; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E6440; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E6444; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E6448; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E644C; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803E6450; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E6454; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E6458; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E645C; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E6460; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E6464; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E6468; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6470; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803E6478; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6480; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E6488; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6490; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6498; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E64A0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E64A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E64B0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803E64B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803E64C0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E64C8; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803E64D0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E64D8; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803E64E0; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803E64E8; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803E64F0; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803E64F8; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803E64FC; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803E6500; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803E6504; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803E6508; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803E650C; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803E6510; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803E6514; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803E6518; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803E651C; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803E6520; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803E6524; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803E6528; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803E652C; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803E6530; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803E6534; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803E6538; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803E653C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803E6540; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803E6548; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803E6550; // type:object size:0x8 scope:local align:4 data:string +@667 = .sdata:0x803E6558; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata:0x803E655C; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803E6560; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata:0x803E6564; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata:0x803E6568; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803E656C; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata:0x803E6570; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E6574; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E6578; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803E657C; // type:object size:0x8 scope:local align:4 +@1153 = .sdata:0x803E6588; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E6590; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803E6598; // type:object size:0x8 scope:local align:4 +@880 = .sdata:0x803E65A0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E65A8; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803E65B0; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E65B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E65C0; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803E65C8; // type:object size:0x8 scope:local align:4 +@729 = .sdata:0x803E65D0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E65D8; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803E65E0; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E65E8; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803E65EC; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E65F0; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803E65F8; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803E6600; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803E6608; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6610; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E6618; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6620; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803E6628; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803E6630; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803E6638; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803E6640; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803E6648; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803E6650; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803E6658; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803E6660; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803E6668; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803E6670; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803E6678; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803E6680; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E6688; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803E6690; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803E6698; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803E66A0; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803E66A8; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803E66B0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803E66B4; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E66B8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E66BC; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E66C0; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E66C4; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E66C8; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803E66CC; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803E66D0; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803E66D4; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803E66DC; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803E66E4; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803E66EC; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803E66F4; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803E66FC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6704; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E670C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6714; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803E671C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803E6724; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803E672C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803E6734; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E673C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E6744; // type:object size:0x8 scope:local align:4 +@3003 = .sdata:0x803E674C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6754; // type:object size:0x8 scope:local align:4 +@1335 = .sdata:0x803E6760; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata:0x803E6764; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803E6768; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803E676C; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E6770; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6774; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E677C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6784; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803E678C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803E6794; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803E67A0; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E67A4; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E67A8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803E67B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803E67B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E67C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E67C8; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E67D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E67D8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E67E0; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803E67E8; // type:object size:0x4 scope:local align:4 +@769 = .sdata:0x803E67EC; // type:object size:0x4 scope:local align:4 +@1298 = .sdata:0x803E67F0; // type:object size:0x7 scope:local align:4 data:string +@1299 = .sdata:0x803E67F8; // type:object size:0x7 scope:local align:4 data:string +@1300 = .sdata:0x803E6800; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803E6808; // type:object size:0x7 scope:local align:4 data:string +@1302 = .sdata:0x803E6810; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803E6818; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803E6820; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803E6828; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803E6830; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803E6834; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803E6838; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803E683C; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803E6840; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803E6844; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803E6848; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E684C; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803E6850; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E6854; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E6858; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803E685C; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803E6860; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E6864; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E6868; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E686C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E6870; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803E6878; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803E6880; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803E6888; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803E6890; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803E6894; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E6898; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803E689C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E68A0; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E68A4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803E68A8; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803E68AC; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803E68B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E68B4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803E68BC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E68C4; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E68CC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803E68D4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E68DC; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803E68E4; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803E68EC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803E68F4; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E68FC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6904; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803E690C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803E6914; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E691C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6924; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803E692C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803E6934; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803E693C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E6944; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803E694C; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803E6954; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803E695C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803E6964; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803E696C; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6974; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803E697C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803E6984; // type:object size:0x8 scope:local align:4 +@3883 = .sdata:0x803E698C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6994; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E699C; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803E69A4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E69AC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E69B4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803E69BC; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803E69C8; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803E69CC; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803E69D0; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803E69D4; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803E69D8; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803E69DC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E69E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E69EC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E69F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803E69FC; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6A08; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6A0C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6A10; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6A14; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6A18; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6A1C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6A20; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803E6A28; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6A30; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803E6A38; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803E6A40; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6A48; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803E6A50; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803E6A58; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6A60; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6A68; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803E6A70; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803E6A78; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6A80; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803E6A88; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6A90; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6A98; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803E6AA0; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803E6AA8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6AB0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6AB8; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803E6AC0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6AC8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6AD0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803E6AD8; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6AE0; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6AE4; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6AE8; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6AEC; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6AF0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6AF4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6AF8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803E6B00; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6B08; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6B10; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803E6B18; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803E6B20; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6B28; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6B30; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803E6B38; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6B40; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803E6B48; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6B50; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6B58; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6B60; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803E6B68; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803E6B70; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6B78; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6B80; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803E6B88; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6B90; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6B98; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803E6BA0; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6BA8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6BAC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6BB0; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6BB4; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6BB8; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6BBC; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803E6BC0; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803E6BC4; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803E6BC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6BCC; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803E6BD4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6BDC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6BE4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803E6BEC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803E6BF4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6BFC; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6C04; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803E6C0C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803E6C14; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803E6C1C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803E6C24; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803E6C2C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803E6C34; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803E6C3C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803E6C44; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E6C4C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803E6C54; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E6C5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803E6C64; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803E6C6C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803E6C74; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803E6C7C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6C84; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803E6C8C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6C94; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6C9C; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6CA4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803E6CAC; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803E6CB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6CBC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6CC4; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803E6CCC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6CD4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6CDC; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803E6CE4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E6CF0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803E6CF8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6D00; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803E6D08; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6D10; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803E6D18; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6D20; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803E6D28; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803E6D30; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6D38; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6D40; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803E6D48; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803E6D50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6D58; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6D60; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803E6D68; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6D70; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6D78; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803E6D80; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803E6D88; // type:object size:0x4 scope:local align:4 +@1853 = .sdata:0x803E6D8C; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata:0x803E6D90; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803E6D94; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803E6D98; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803E6D9C; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803E6DA0; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata:0x803E6DA4; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata:0x803E6DA8; // type:object size:0x4 scope:local align:4 data:float +@2446 = .sdata:0x803E6DAC; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803E6DB0; // type:object size:0x4 scope:local align:4 data:float +@2452 = .sdata:0x803E6DB4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6DB8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803E6DC0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6DC8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6DD0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803E6DD8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6DE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803E6DE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803E6DF0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6DF8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6E00; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803E6E08; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803E6E10; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803E6E18; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803E6E20; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803E6E28; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803E6E30; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803E6E38; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6E40; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6E48; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803E6E50; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803E6E58; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803E6E60; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6E68; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803E6E70; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6E78; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803E6E80; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803E6E88; // type:object size:0x8 scope:local align:4 +@3567 = .sdata:0x803E6E90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6E98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6EA0; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803E6EA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6EB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6EB8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803E6EC0; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803E6EC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6ECC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803E6ED4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6EDC; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6EE4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803E6EEC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6EF4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6EFC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803E6F04; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6F0C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803E6F14; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803E6F1C; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803E6F24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6F2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6F34; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803E6F3C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6F44; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6F4C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803E6F54; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E6F5C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803E6F64; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803E6F70; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803E6F74; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E6F7C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E6F88; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803E6F90; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6F98; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6FA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803E6FA8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6FB0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6FB8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803E6FC0; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803E6FC8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6FD0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803E6FD8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803E6FE0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803E6FE8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803E6FF0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803E6FF8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803E7000; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803E7008; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803E7010; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E7018; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803E7020; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E7028; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803E7030; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E7038; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803E7040; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803E7048; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803E7050; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803E7058; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E7060; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803E7068; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803E7070; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803E7078; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E7080; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803E7088; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803E7090; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E7098; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803E70A0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803E70A8; // type:object size:0x8 scope:local align:4 +@3759 = .sdata:0x803E70B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E70B8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E70C0; // type:object size:0x8 scope:local align:4 +@3762 = .sdata:0x803E70C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E70D0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E70D8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803E70E0; // type:object size:0x8 scope:local align:4 +@918 = .sdata:0x803E70E8; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803E70F0; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803E70F8; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803E7100; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E7104; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E7108; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E710C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E7110; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E7114; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E7118; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803E711C; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803E7120; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803E7124; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803E7128; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803E712C; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E7130; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803E7134; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803E7138; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803E713C; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803E7140; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803E7144; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803E7148; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803E714C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803E7150; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803E7154; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803E7158; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803E715C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803E7160; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803E7164; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803E7168; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803E716C; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803E7170; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E7174; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E7178; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E717C; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E7180; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E7184; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E7188; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E718C; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7190; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7194; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7198; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803E719C; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803E71A0; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E71A4; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803E71A8; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E71AC; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803E71B0; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803E71B4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E71B8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803E71BC; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803E71C0; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803E71C4; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803E71C8; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803E71CC; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E71D0; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803E71D4; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E71D8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E71DC; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803E71E0; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E71E4; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803E71E8; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E71EC; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E71F0; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E71F4; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E71F8; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E71FC; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E7200; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E7204; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E7208; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E720C; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E7210; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803E7214; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E7218; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E721C; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E7220; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E7224; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803E7228; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E722C; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803E7230; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E7234; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E7238; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E723C; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E7240; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E7244; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E7248; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E724C; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803E7250; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803E7254; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803E7258; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803E725C; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803E7260; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803E7264; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803E7268; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803E726C; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E7270; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E7274; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803E7278; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E727C; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E7280; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E7284; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803E7288; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803E728C; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803E7290; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803E7298; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E72A0; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803E72A8; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803E72B0; // type:object size:0x7 scope:local align:4 data:string +@2816 = .sdata:0x803E72B8; // type:object size:0x7 scope:local align:4 data:string +@2817 = .sdata:0x803E72C0; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803E72C8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803E72D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E72D8; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E72E0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E72E8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E72F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803E72F8; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803E7300; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803E7308; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803E7310; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E7318; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803E7320; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803E7324; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803E7328; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803E732C; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803E7330; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E7338; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803E733C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803E7340; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803E7344; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803E7348; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E734C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E7350; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803E7358; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E7360; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E7368; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803E7370; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E7378; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E7380; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803E7388; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803E7390; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7398; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E73A0; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803E73A8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E73B0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E73B8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803E73C0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E73C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803E73D0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E73D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E73E0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803E73E8; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E73F0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803E73F8; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803E7400; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803E7408; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803E7410; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E7418; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E7420; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803E7428; // type:object size:0x8 scope:local align:4 +@2700 = .sdata:0x803E7430; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7438; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7440; // type:object size:0x8 scope:local align:4 +@2703 = .sdata:0x803E7448; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7450; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E7458; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803E7460; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E7468; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803E746C; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803E7470; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803E7474; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803E7478; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803E747C; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E7480; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E7484; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E7488; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E748C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803E7490; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E7494; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803E7498; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803E74A0; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E74A4; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803E74A8; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803E74AC; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803E74B0; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803E74B4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803E74B8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E74BC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E74C0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E74C4; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E74C8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803E74CC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803E74D0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E74D4; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E74D8; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803E74DC; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803E74E0; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803E74E4; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803E74E8; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803E74EC; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803E74F0; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803E74F4; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803E74F8; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803E74FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803E7500; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803E7508; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803E7510; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803E7518; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803E7520; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803E7524; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803E752C; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803E7534; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803E753C; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803E7544; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803E7548; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803E7550; // type:object size:0x6 scope:local align:4 data:string +@1274 = .sdata:0x803E7558; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803E755C; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803E7560; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803E7564; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E7568; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803E756C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803E7574; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803E757C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E7584; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E758C; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E7594; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E759C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E75A4; // type:object size:0x8 scope:local align:4 +@765 = .sdata:0x803E75B0; // type:object size:0x7 scope:local align:4 data:string +@766 = .sdata:0x803E75B8; // type:object size:0x7 scope:local align:4 data:string +@767 = .sdata:0x803E75C0; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803E75C8; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803E75D0; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803E75D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803E75DC; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E75E8; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803E75F0; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803E75F8; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803E7600; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803E7608; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803E7610; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803E7618; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803E7620; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E7628; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803E7630; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803E7638; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803E7640; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803E7648; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803E7650; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803E7658; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803E7660; // type:object size:0x4 scope:local align:4 data:4byte +@31 = .sdata:0x803E7668; // type:object size:0x2 scope:local align:4 data:string +fontEncode$55 = .sdata:0x803E7670; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803E7678; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803E7680; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803E7688; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803E7690; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803E7698; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803E76A0; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803E76A4; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803E76A8; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803E76B0; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803E76B8; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803E76BC; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803E76C0; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803E76C4; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803E76C8; // type:object size:0x4 scope:local align:4 data:4byte +cmdReadOrigin = .sdata:0x803E76CC; // type:object size:0x4 scope:local align:4 +cmdCalibrate = .sdata:0x803E76D0; // type:object size:0x4 scope:local align:4 +@413 = .sdata:0x803E76D4; // type:object size:0x6 scope:local align:4 data:string +Chan = .sdata:0x803E76E0; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803E76E8; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$208 = .sdata:0x803E76F0; // type:object size:0x4 scope:local align:4 +tbl2$209 = .sdata:0x803E76F4; // type:object size:0x4 scope:local align:4 +tbl3$210 = .sdata:0x803E76F8; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803E7700; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803E7708; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803E7710; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803E7718; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803E7720; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803E7728; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803E7730; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803E7738; // type:object size:0x6 scope:local align:4 +fragmentID = .sdata:0x803E7740; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803E7748; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803E7750; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803E7758; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803E7760; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803E7764; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803E7768; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803E7770; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803E7778; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803E7780; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803E7784; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803E7788; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803E778C; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803E7790; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803E7794; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803E7798; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803E779C; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803E77A0; // type:object size:0x1 scope:local align:1 data:byte +dacp$240 = .sbss:0x803E77A4; // type:object size:0x4 scope:local align:4 data:4byte +init$241 = .sbss:0x803E77A8; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803E77B0; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803E77B4; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803E77B8; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803E77BC; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803E77C0; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803E77C4; // type:object size:0x4 scope:local align:4 data:4byte +first$70 = .sbss:0x803E77C8; // type:object size:0x4 scope:local align:4 data:4byte +init$71 = .sbss:0x803E77CC; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803E77D0; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803E77D4; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803E77D8; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803E77DC; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803E77E0; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803E77E1; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803E77E2; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803E77E4; // type:object size:0x4 scope:local align:4 data:4byte +cur$194 = .sbss:0x803E77E8; // type:object size:0x4 scope:local align:4 data:4byte +init$195 = .sbss:0x803E77EC; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803E77F0; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803E77F1; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803E77F2; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803E77F8; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803E77FC; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803E7800; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803E7804; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803E7808; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803E780C; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803E7810; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803E7814; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803E781C; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803E7820; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803E7824; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803E782C; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803E7830; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$223 = .sbss:0x803E7834; // type:object size:0x4 scope:local align:4 data:4byte +init$224 = .sbss:0x803E7838; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803E783C; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803E7840; // type:object size:0x4 scope:global align:4 data:4byte +TASK_READPTR = .sbss:0x803E7848; // type:object size:0x1 scope:local align:1 data:byte +TASK_WRITEPTR = .sbss:0x803E7849; // type:object size:0x1 scope:local align:1 data:byte +TASK_REMAIN = .sbss:0x803E784A; // type:object size:0x1 scope:local align:1 data:byte +cur_waits = .sbss:0x803E7850; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803E7854; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803E7858; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803E7860; // type:object size:0x4 scope:local align:4 data:4byte +inited$64 = .sbss:0x803E7868; // type:object size:0x4 scope:local align:4 data:4byte +init$65 = .sbss:0x803E786C; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803E7870; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803E7874; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803E7878; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803E7880; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803E7888; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803E7890; // type:object size:0x4 scope:local align:4 data:4byte +first$164 = .sbss:0x803E7894; // type:object size:0x4 scope:local align:4 data:4byte +init$165 = .sbss:0x803E7898; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803E78A0; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803E78A8; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803E78AC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803E78B0; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803E78B4; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803E78B8; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803E78BC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803E78C0; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803E78C8; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803E78CC; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803E78D0; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803E78D4; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803E78D8; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803E78DC; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803E78E0; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803E78E4; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803E78E8; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803E78EC; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803E78F0; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803E78F8; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803E7900; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803E7904; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803E7908; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803E7910; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803E7914; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803E7918; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803E7919; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803E791A; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803E791C; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803E7920; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803E7924; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803E7928; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803E792C; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803E792D; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803E7930; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803E7934; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803E7938; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803E793C; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803E793E; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803E7940; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803E7942; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803E7944; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803E7946; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803E7948; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803E794C; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803E7950; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803E7954; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803E7958; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803E795C; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803E7960; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803E7964; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803E7968; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803E796C; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803E7970; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803E7978; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803E797C; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803E7980; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803E7984; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803E7988; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803E798C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803E7990; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803E7994; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803E7998; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803E799C; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803E79A0; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803E79A4; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803E79A8; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803E79B0; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803E79B4; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803E79B8; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803E79BC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803E79C0; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803E79C4; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803E79C8; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803E79CC; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803E79CD; // type:object size:0x1 scope:local align:1 data:byte +demo_parts_num = .sbss:0x803E79CE; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803E79CF; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803E79D0; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803E79D8; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803E79E0; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803E79E8; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803E79EC; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803E79F0; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803E79F4; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803E79F8; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803E79FC; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803E7A00; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803E7A04; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803E7A08; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803E7A0C; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803E7A14; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803E7A18; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803E7A1C; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803E7A20; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803E7A24; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803E7A28; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803E7A2C; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803E7A30; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803E7A34; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803E7A38; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803E7A40; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803E7A44; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803E7A48; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803E7A4C; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803E7A50; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803E7A58; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803E7A60; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803E7A68; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803E7A6C; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803E7A70; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803E7A74; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803E7A78; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803E7A7C; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803E7A80; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803E7A84; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803E7A88; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803E7A8C; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803E7A90; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803E7A94; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803E7A98; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803E7A9C; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803E7AA0; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803E7AA4; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803E7AA8; // type:object size:0x4 scope:local align:4 data:4byte +videoModeAsIs$643 = .sbss:0x803E7AAC; // type:object size:0x4 scope:local align:4 data:4byte +init$644 = .sbss:0x803E7AB0; // type:object size:0x1 scope:local align:1 data:byte +gfx__11DGXGraphics = .sbss:0x803E7AB4; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803E7AB8; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803E7AB9; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803E7ABA; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803E7AC0; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803E7AC4; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803E7AC8; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803E7AD0; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803E7AD4; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803E7AD8; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803E7ADC; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803E7AE0; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803E7AE4; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803E7AE8; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803E7AEC; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803E7AF0; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803E7AF4; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803E7AF8; // type:object size:0x4 scope:local align:4 data:4byte +memcardWindow = .sbss:0x803E7AFC; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803E7B00; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803E7B01; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803E7B02; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803E7B04; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803E7B08; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803E7B0C; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803E7B0D; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803E7B10; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803E7B18; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803E7B1C; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803E7B20; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803E7B24; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803E7B28; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803E7B2C; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803E7B30; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803E7B38; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803E7B3C; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803E7B40; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803E7B44; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803E7B48; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803E7B4C; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B50; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B54; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B58; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B5C; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B60; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B64; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B68; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B6C; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B70; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7B74; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803E7B78; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803E7B80; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803E7B84; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803E7B88; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803E7B8C; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803E7B90; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803E7B98; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803E7B9A; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803E7B9C; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803E7BA0; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803E7BA8; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803E7BB0; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803E7BB4; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803E7BB8; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803E7BBC; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803E7BC0; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803E7BC4; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803E7BC8; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803E7BD0; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803E7BD4; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803E7BD8; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803E7BDC; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803E7BE0; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803E7BE4; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803E7BE8; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803E7BEC; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803E7BF0; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803E7BF8; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803E7C00; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803E7C08; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803E7C0C; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803E7C10; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803E7C18; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803E7C20; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803E7C21; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803E7C24; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803E7C28; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803E7C29; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803E7C2A; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803E7C2B; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803E7C2C; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803E7C30; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803E7C34; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803E7C38; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803E7C3C; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803E7C40; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803E7C44; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803E7C48; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803E7C4C; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803E7C50; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803E7C54; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803E7C58; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803E7C5C; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803E7C60; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803E7C64; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803E7C68; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803E7C70; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803E7C74; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803E7C78; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803E7C80; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803E7C88; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803E7C8C; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803E7C90; // type:object size:0x1 scope:global align:1 data:byte +count$1859 = .sbss:0x803E7C94; // type:object size:0x4 scope:local align:4 data:4byte +init$1860 = .sbss:0x803E7C98; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803E7C9C; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803E7CA0; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803E7CA8; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803E7CAC; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803E7CB0; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803E7CB8; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803E7CC0; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803E7CC4; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803E7CC8; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803E7CCC; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803E7CD0; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803E7CD8; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803E7CE0; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803E7CE8; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803E7CEC; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803E7CED; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803E7CEE; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803E7CEF; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803E7CF0; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803E7CF4; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803E7CF8; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803E7CFC; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803E7D00; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803E7D04; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803E7D08; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803E7D0C; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803E7D10; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803E7D14; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803E7D18; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803E7D20; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803E7D28; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803E7D2C; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803E7D30; // type:object size:0x4 scope:local align:4 data:float +ang$5655 = .sbss:0x803E7D34; // type:object size:0x4 scope:local align:4 data:float +init$5656 = .sbss:0x803E7D38; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803E7D40; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803E7D41; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803E7D44; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803E7D48; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803E7D4C; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803E7D50; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803E7D54; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803E7D58; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803E7D5C; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803E7D60; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803E7D64; // type:object size:0x4 scope:global align:4 data:4byte +timer$4155 = .sbss:0x803E7D68; // type:object size:0x4 scope:local align:4 data:4byte +init$4156 = .sbss:0x803E7D6C; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803E7D70; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803E7D74; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803E7D78; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803E7D7C; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803E7D80; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803E7D84; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803E7D88; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803E7D90; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803E7D94; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803E7D98; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803E7DA0; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803E7DA8; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803E7DAC; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803E7DAD; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803E7DB0; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803E7DB8; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803E7DC0; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803E7DC8; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803E7DD0; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803E7DD8; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803E7DE0; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803E7DE8; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803E7DF0; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803E7DF4; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803E7DF8; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803E7E00; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803E7E08; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803E7E10; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803E7E14; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803E7E18; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803E7E1C; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803E7E20; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803E7E28; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803E7E2C; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803E7E30; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803E7E38; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803E7E40; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803E7E48; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803E7E4C; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803E7E50; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803E7E54; // type:object size:0x4 scope:local align:4 data:4byte +AlarmQueue = .sbss:0x803E7E58; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803E7E60; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803E7E64; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803E7E68; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803E7E6C; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803E7E70; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803E7E78; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803E7E80; // type:object size:0x4 scope:global align:4 data:4byte +ResetFunctionQueue = .sbss:0x803E7E88; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803E7E90; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803E7E94; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803E7E98; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803E7EA0; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803E7EA8; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x803E7EB0; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803E7EB4; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803E7EB8; // type:object size:0x4 scope:local align:4 data:4byte +serEnabled = .sbss:0x803E7EC0; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803E7EC8; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803E7ECC; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803E7ED0; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803E7ED4; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803E7ED8; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803E7EDC; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803E7EE0; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803E7EE8; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803E7EEC; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803E7EF0; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803E7EF4; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803E7EF8; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803E7F00; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803E7F08; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803E7F10; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803E7F14; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803E7F18; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803E7F1C; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803E7F20; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803E7F24; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803E7F28; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803E7F2C; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803E7F30; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803E7F38; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803E7F3C; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803E7F40; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803E7F44; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803E7F48; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803E7F4C; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803E7F50; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803E7F54; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803E7F58; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803E7F5C; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803E7F60; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803E7F64; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803E7F68; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803E7F6C; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803E7F70; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803E7F74; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803E7F78; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803E7F7C; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803E7F80; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803E7F84; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803E7F88; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803E7F90; // type:object size:0x4 scope:local align:4 data:4byte +changeMode = .sbss:0x803E7F94; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803E7F98; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803E7F9C; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803E7FA4; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803E7FA8; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803E7FAC; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803E7FB0; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803E7FB2; // type:object size:0x2 scope:local align:2 data:2byte +changed = .sbss:0x803E7FB8; // type:object size:0x8 scope:local align:8 data:4byte +shdwChanged = .sbss:0x803E7FC0; // type:object size:0x8 scope:local align:8 data:4byte +FBSet = .sbss:0x803E7FC8; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803E7FD0; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803E7FD4; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803E7FD8; // type:object size:0x4 scope:local align:4 data:4byte +ProbingBits = .sbss:0x803E7FDC; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803E7FE0; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803E7FE4; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803E7FE8; // type:object size:0x4 scope:local align:4 data:4byte +cmdTypeAndStatus = .sbss:0x803E7FEC; // type:object size:0x4 scope:local align:4 +recalibrated$595 = .sbss:0x803E7FF0; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803E7FF4; // type:object size:0x4 scope:global align:4 data:4byte +__PADFixBits = .sbss:0x803E7FF8; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803E8000; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803E8004; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803E8008; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803E800C; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803E8010; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803E8018; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803E8020; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803E8028; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803E8030; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803E8038; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803E8040; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803E8044; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803E8048; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803E804C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803E8050; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803E8054; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803E8058; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803E805C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803E8060; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803E8064; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803E8068; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803E806C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803E8070; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803E8074; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803E8078; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803E807C; // type:object size:0x4 scope:local align:4 data:4byte +__CARDDiskID = .sbss:0x803E8080; // type:object size:0x4 scope:global align:4 data:4byte +ExiCallback = .sbss:0x803E8088; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803E808C; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803E8090; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803E8098; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803E809C; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803E80A0; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803E80A4; // type:object size:0x4 scope:global align:4 data:4byte +__GXCurrentThread = .sbss:0x803E80A8; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803E80AC; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803E80B0; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803E80B4; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803E80B8; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803E80BC; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803E80C0; // type:object size:0x4 scope:global align:4 data:4byte +TokenCB = .sbss:0x803E80C8; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803E80CC; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803E80D0; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803E80D4; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803E80E0; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803E80E8; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803E80F0; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803E80F4; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803E80F8; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803E80FC; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803E8100; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803E8108; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803E8110; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803E8118; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803E811C; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803E8120; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803E8128; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803E812C; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803E8130; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803E8134; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803E8138; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803E813C; // type:object size:0x1 scope:local align:1 data:byte +@225 = .sdata2:0x803E8140; // type:object size:0x7 scope:local align:4 data:string +@226 = .sdata2:0x803E8148; // type:object size:0x7 scope:local align:4 data:string +@103 = .sdata2:0x803E8150; // type:object size:0x8 scope:local align:4 data:string +@32 = .sdata2:0x803E8158; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x803E8160; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x803E8168; // type:object size:0x7 scope:local align:4 data:string +@79 = .sdata2:0x803E8170; // type:object size:0x4 scope:local align:4 data:float +@52 = .sdata2:0x803E8178; // type:object size:0x4 scope:local align:4 data:float +@202 = .sdata2:0x803E817C; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803E8180; // type:object size:0x4 scope:local align:4 data:float +@216 = .sdata2:0x803E8184; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x803E8188; // type:object size:0x4 scope:local align:4 data:float +@346 = .sdata2:0x803E8190; // type:object size:0x8 scope:local align:8 data:double +@262 = .sdata2:0x803E8198; // type:object size:0x4 scope:local align:4 data:float +@264 = .sdata2:0x803E81A0; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x803E81A8; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803E81AC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803E81B0; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x803E81B8; // type:object size:0x8 scope:local align:8 data:double +@196 = .sdata2:0x803E81C0; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803E81C4; // type:object size:0x4 scope:local align:4 data:float +@198 = .sdata2:0x803E81C8; // type:object size:0x4 scope:local align:4 data:float +@199 = .sdata2:0x803E81CC; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803E81D0; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803E81D8; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803E81E0; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803E81E8; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803E81F0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803E81F8; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803E81FC; // type:object size:0x4 scope:local align:4 data:float +@124 = .sdata2:0x803E8200; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803E8208; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803E8210; // type:object size:0x2 scope:local align:4 data:string +@116 = .sdata2:0x803E8218; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803E821C; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x803E8220; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803E8228; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x803E8230; // type:object size:0x4 scope:local align:4 data:float +@147 = .sdata2:0x803E8234; // type:object size:0x4 scope:local align:4 data:float +@148 = .sdata2:0x803E8238; // type:object size:0x4 scope:local align:4 data:float +@530 = .sdata2:0x803E823C; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata2:0x803E8240; // type:object size:0x4 scope:local align:4 data:float +@730 = .sdata2:0x803E8244; // type:object size:0x4 scope:local align:4 data:float +@731 = .sdata2:0x803E8248; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803E824C; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803E8250; // type:object size:0x7 scope:local align:4 data:4byte +@1027 = .sdata2:0x803E8258; // type:object size:0x7 scope:local align:4 data:4byte +@146 = .sdata2:0x803E8260; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803E8268; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803E826C; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803E8270; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803E8278; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803E827C; // type:object size:0x4 scope:local align:4 data:float +@72 = .sdata2:0x803E8280; // type:object size:0x4 scope:local align:4 data:float +@73 = .sdata2:0x803E8284; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803E8288; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803E8290; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803E8298; // type:object size:0x4 scope:local align:4 data:float +@65 = .sdata2:0x803E829C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803E82A0; // type:object size:0x4 scope:local align:4 data:float +@310 = .sdata2:0x803E82A8; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x803E82B0; // type:object size:0x4 scope:local align:4 data:float +@558 = .sdata2:0x803E82B8; // type:object size:0x8 scope:local align:8 data:double +@570 = .sdata2:0x803E82C0; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803E82C8; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803E82CC; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803E82D0; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803E82D4; // type:object size:0x4 scope:local align:4 data:float +@151 = .sdata2:0x803E82D8; // type:object size:0x4 scope:local align:4 data:float +@152 = .sdata2:0x803E82DC; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x803E82E0; // type:object size:0x4 scope:local align:4 data:float +@154 = .sdata2:0x803E82E4; // type:object size:0x4 scope:local align:4 data:float +@155 = .sdata2:0x803E82E8; // type:object size:0x4 scope:local align:4 data:float +@156 = .sdata2:0x803E82EC; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803E82F0; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803E82F8; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803E8300; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803E8304; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803E8308; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803E8310; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803E8314; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803E8318; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803E8320; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x803E8328; // type:object size:0x4 scope:local align:4 data:float +@328 = .sdata2:0x803E832C; // type:object size:0x4 scope:local align:4 data:float +@329 = .sdata2:0x803E8330; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803E8334; // type:object size:0x4 scope:local align:4 data:float +@513 = .sdata2:0x803E8338; // type:object size:0x4 scope:local align:4 data:float +@79 = .sdata2:0x803E8340; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803E8348; // type:object size:0x4 scope:local align:4 data:float +@315 = .sdata2:0x803E834C; // type:object size:0x4 scope:local align:4 data:float +@317 = .sdata2:0x803E8350; // type:object size:0x8 scope:local align:8 data:double +@513 = .sdata2:0x803E8358; // type:object size:0x4 scope:local align:4 data:float +@307 = .sdata2:0x803E8360; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803E8368; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803E836C; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803E8370; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803E8378; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803E837C; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E8380; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803E8384; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803E8388; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E838C; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803E8390; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E8398; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803E83A0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E83A4; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x803E83A8; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803E83B0; // type:object size:0x8 scope:local align:8 data:double +@1659 = .sdata2:0x803E83B8; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803E83BC; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E83C0; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803E83C4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803E83C8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803E83D0; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803E83D4; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803E83D8; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803E83DC; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803E83E0; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803E83E4; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803E83E8; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E83EC; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803E83F0; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803E83F4; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803E83F8; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803E83FC; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803E8400; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803E8404; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803E8408; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803E840C; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803E8410; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803E8414; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803E8418; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803E841C; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803E8420; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803E8424; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E8428; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E842C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803E8430; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803E8434; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803E8438; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803E843C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803E8440; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803E8444; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803E8448; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803E844C; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803E8450; // type:object size:0x4 scope:local align:4 data:float +@2477 = .sdata2:0x803E8454; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata2:0x803E8458; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x803E845C; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x803E8460; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x803E8464; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x803E8468; // type:object size:0x8 scope:local align:8 data:double +@3580 = .sdata2:0x803E8470; // type:object size:0x8 scope:local align:8 data:double +@4433 = .sdata2:0x803E8478; // type:object size:0x8 scope:local align:4 data:4byte +@4498 = .sdata2:0x803E8480; // type:object size:0x8 scope:local align:8 data:double +@4499 = .sdata2:0x803E8488; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803E8490; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803E8498; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803E84A0; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803E84A8; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803E84B0; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803E84B4; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803E84B8; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803E84BC; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803E84C0; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803E84C4; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803E84C8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803E84CC; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E84D0; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803E84D8; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803E84E0; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803E84E4; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803E84E8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803E84EC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803E84F0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803E84F8; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803E8500; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803E8508; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803E8510; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803E8518; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803E851C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803E8520; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803E8524; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803E8528; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803E8530; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803E8534; // type:object size:0x4 scope:local align:4 data:float +@414 = .sdata2:0x803E8538; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803E8540; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803E8548; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803E854C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803E8550; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803E8554; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803E8558; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803E8560; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803E8568; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803E856C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E8570; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803E8578; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803E8580; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E8584; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803E8588; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803E858C; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803E8590; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803E8598; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803E85A0; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803E85A8; // type:object size:0x8 scope:local align:8 data:double +@694 = .sdata2:0x803E85B0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803E85B8; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata2:0x803E85BC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803E85C0; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x803E85C8; // type:object size:0x8 scope:local align:8 data:double +@724 = .sdata2:0x803E85D0; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E85D8; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803E85E0; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803E85E4; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803E85E8; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803E85EC; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803E85F0; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803E85F4; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803E85F8; // type:object size:0x8 scope:local align:8 data:double +@1315 = .sdata2:0x803E8600; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803E8608; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803E860C; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803E8610; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803E8614; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803E8618; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803E861C; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803E8620; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803E8624; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803E8628; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803E8630; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E8638; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803E863C; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803E8640; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803E8644; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803E8648; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803E8650; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803E8658; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803E865C; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata2:0x803E8660; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803E8664; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803E8668; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803E866C; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803E8670; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803E8674; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803E8678; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803E867C; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata2:0x803E8680; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803E8684; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803E8688; // type:object size:0x4 scope:local align:4 data:float +@2464 = .sdata2:0x803E868C; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803E8690; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803E8698; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803E869C; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803E86A0; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803E86A4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803E86A8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803E86AC; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata2:0x803E86B0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803E86B8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803E86BC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803E86C0; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803E86C4; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803E86C8; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803E86CC; // type:object size:0x4 scope:local align:4 data:float +@2283 = .sdata2:0x803E86D0; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803E86D4; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803E86D8; // type:object size:0x4 scope:local align:4 data:float +@2426 = .sdata2:0x803E86DC; // type:object size:0x4 scope:local align:4 data:float +@2986 = .sdata2:0x803E86E0; // type:object size:0x4 scope:local align:4 data:float +@2987 = .sdata2:0x803E86E4; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803E86E8; // type:object size:0x4 scope:local align:4 data:float +@3087 = .sdata2:0x803E86EC; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata2:0x803E86F0; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata2:0x803E86F4; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803E86F8; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803E86FC; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x803E8700; // type:object size:0x4 scope:local align:4 data:float +@3345 = .sdata2:0x803E8704; // type:object size:0x4 scope:local align:4 data:float +@3346 = .sdata2:0x803E8708; // type:object size:0x4 scope:local align:4 data:float +@3347 = .sdata2:0x803E870C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803E8710; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x803E8718; // type:object size:0x8 scope:local align:8 data:double +@1300 = .sdata2:0x803E8720; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x803E8724; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803E8728; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata2:0x803E872C; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803E8730; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803E8738; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803E8740; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803E8744; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803E8748; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803E874C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803E8750; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803E8754; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803E8758; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803E875C; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803E8760; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata2:0x803E8764; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803E8768; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803E8770; // type:object size:0x8 scope:local align:8 data:double +@809 = .sdata2:0x803E8778; // type:object size:0x4 scope:local align:4 data:float +@810 = .sdata2:0x803E877C; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803E8780; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803E8784; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803E8788; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E878C; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803E8790; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803E8794; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803E8798; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803E879C; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803E87A0; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803E87A4; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803E87A8; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803E87AC; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803E87B0; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803E87B4; // type:object size:0x4 scope:local align:4 data:float +@1171 = .sdata2:0x803E87B8; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803E87C0; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803E87C4; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803E87C8; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803E87CC; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803E87D0; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803E87D4; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803E87D8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803E87DC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803E87E0; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E87E4; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803E87E8; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803E87EC; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803E87F0; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803E87F8; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803E8800; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803E8804; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803E8808; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803E8810; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803E8814; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803E8818; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803E881C; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803E8820; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803E8824; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E8828; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803E882C; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803E8830; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803E8834; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E8838; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803E8840; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803E8844; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E8848; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803E884C; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803E8850; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E8854; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E8858; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E885C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E8860; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803E8864; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803E8868; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803E886C; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803E8870; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803E8874; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803E8878; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803E887C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803E8880; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803E8884; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803E8888; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803E8890; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803E8894; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803E8898; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803E88A0; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803E88A8; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803E88AC; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803E88B0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E88B4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803E88B8; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E88BC; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803E88C0; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803E88C4; // type:object size:0x4 scope:local align:4 data:float +@2499 = .sdata2:0x803E88C8; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803E88CC; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803E88D0; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x803E88D4; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803E88D8; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803E88DC; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x803E88E0; // type:object size:0x4 scope:local align:4 data:float +@3268 = .sdata2:0x803E88E4; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803E88E8; // type:object size:0x8 scope:local align:8 data:double +@3487 = .sdata2:0x803E88F0; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x803E88F4; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803E88F8; // type:object size:0x8 scope:local align:8 data:double +@3789 = .sdata2:0x803E8900; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803E8904; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x803E8908; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x803E890C; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x803E8910; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x803E8914; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x803E8918; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x803E891C; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x803E8920; // type:object size:0x4 scope:local align:4 data:float +@4393 = .sdata2:0x803E8924; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x803E8928; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x803E892C; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x803E8930; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803E8938; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803E893C; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803E8940; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803E8944; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803E8948; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803E894C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803E8950; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803E8954; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803E8958; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803E8960; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803E8968; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803E896C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803E8970; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803E8974; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803E8978; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803E897C; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803E8980; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803E8984; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803E8988; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803E8990; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803E8994; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803E8998; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803E89A0; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803E89A8; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803E89AC; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x803E89B0; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803E89B4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803E89B8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803E89BC; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803E89C0; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803E89C4; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803E89C8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803E89CC; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803E89D0; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803E89D8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803E89DC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803E89E0; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803E89E8; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803E89EC; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803E89F0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803E89F4; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803E89F8; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803E89FC; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8A00; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803E8A08; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803E8A10; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803E8A14; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803E8A18; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803E8A1C; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803E8A20; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803E8A24; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803E8A28; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E8A30; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E8A34; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803E8A38; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803E8A3C; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803E8A40; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803E8A48; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803E8A50; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803E8A58; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803E8A60; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803E8A64; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803E8A68; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E8A6C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803E8A70; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803E8A74; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803E8A78; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803E8A7C; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803E8A80; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803E8A84; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803E8A88; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803E8A8C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803E8A90; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803E8A94; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata2:0x803E8A98; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803E8AA0; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803E8AA4; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803E8AA8; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803E8AB0; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803E8AB4; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803E8AB8; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata2:0x803E8ABC; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata2:0x803E8AC0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803E8AC8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803E8ACC; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803E8AD0; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803E8AD4; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E8AD8; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803E8ADC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E8AE0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E8AE4; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803E8AE8; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803E8AEC; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803E8AF0; // type:object size:0x8 scope:local align:8 data:double +@1599 = .sdata2:0x803E8AF8; // type:object size:0x4 scope:local align:4 data:float +@1600 = .sdata2:0x803E8B00; // type:object size:0x8 scope:local align:8 data:double +@1601 = .sdata2:0x803E8B08; // type:object size:0x8 scope:local align:8 data:double +@1681 = .sdata2:0x803E8B10; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803E8B14; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803E8B18; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803E8B1C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E8B20; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata2:0x803E8B24; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803E8B28; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803E8B2C; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803E8B34; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803E8B38; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803E8B3C; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803E8B40; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803E8B44; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803E8B48; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803E8B4C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803E8B50; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803E8B58; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803E8B60; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803E8B64; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803E8B68; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803E8B6C; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803E8B70; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803E8B74; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803E8B78; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803E8B80; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803E8B88; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803E8B90; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803E8B98; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803E8B9C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E8BA0; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata2:0x803E8BA4; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata2:0x803E8BA8; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803E8BAC; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata2:0x803E8BB0; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803E8BB8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803E8BBC; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803E8BC0; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803E8BC8; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803E8BD0; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8BD4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803E8BD8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E8BDC; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803E8BE0; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803E8BE4; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803E8BE8; // type:object size:0x4 scope:local align:4 data:float +@2437 = .sdata2:0x803E8BEC; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803E8BF0; // type:object size:0x4 scope:local align:4 data:float +@2501 = .sdata2:0x803E8BF4; // type:object size:0x4 scope:local align:4 data:float +@2502 = .sdata2:0x803E8BF8; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x803E8BFC; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x803E8C00; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x803E8C04; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata2:0x803E8C08; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803E8C0C; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803E8C10; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E8C18; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803E8C1C; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803E8C20; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803E8C24; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803E8C28; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803E8C2C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803E8C30; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803E8C34; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803E8C38; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803E8C3C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E8C40; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E8C44; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803E8C48; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803E8C4C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803E8C50; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803E8C54; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E8C58; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E8C60; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803E8C68; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803E8C6C; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803E8C70; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803E8C78; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803E8C80; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803E8C88; // type:object size:0x8 scope:local align:8 data:double +@1453 = .sdata2:0x803E8C90; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata2:0x803E8C94; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata2:0x803E8C98; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803E8C9C; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803E8CA0; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E8CA4; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803E8CA8; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803E8CAC; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803E8CB0; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803E8CB4; // type:object size:0x4 scope:local align:4 data:float +@1331 = .sdata2:0x803E8CB8; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata2:0x803E8CBC; // type:object size:0x4 scope:local align:4 data:float +@1333 = .sdata2:0x803E8CC0; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803E8CC4; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata2:0x803E8CC8; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803E8CD0; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803E8CD4; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803E8CD8; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803E8CDC; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803E8CE0; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803E8CE4; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E8CE8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803E8CEC; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E8CF0; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803E8CF4; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803E8CF8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803E8CFC; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803E8D00; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803E8D04; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803E8D08; // type:object size:0x8 scope:local align:8 data:double +@1438 = .sdata2:0x803E8D10; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803E8D18; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803E8D1C; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803E8D20; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803E8D28; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803E8D30; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803E8D38; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803E8D40; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E8D48; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803E8D4C; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E8D50; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E8D54; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803E8D58; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata2:0x803E8D5C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E8D60; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E8D64; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803E8D68; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E8D6C; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803E8D70; // type:object size:0x8 scope:local align:8 data:double +@2016 = .sdata2:0x803E8D78; // type:object size:0x8 scope:local align:8 data:double +@2036 = .sdata2:0x803E8D80; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803E8D88; // type:object size:0x8 scope:local align:8 data:double +@2081 = .sdata2:0x803E8D90; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803E8D94; // type:object size:0x4 scope:local align:4 data:float +@2754 = .sdata2:0x803E8D98; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803E8D9C; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata2:0x803E8DA0; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803E8DA4; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803E8DA8; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E8DAC; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803E8DB0; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803E8DB4; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803E8DB8; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803E8DBC; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata2:0x803E8DC0; // type:object size:0x4 scope:local align:4 data:float +@3075 = .sdata2:0x803E8DC4; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata2:0x803E8DC8; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata2:0x803E8DCC; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803E8DD0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803E8DD4; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803E8DD8; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803E8DDC; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803E8DE0; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803E8DE4; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803E8DE8; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803E8DEC; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803E8DF0; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803E8DF8; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803E8E00; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803E8E04; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E8E08; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E8E10; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803E8E14; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E8E18; // type:object size:0x8 scope:local align:8 data:double +@1749 = .sdata2:0x803E8E20; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803E8E24; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E8E28; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803E8E30; // type:object size:0x8 scope:local align:8 data:double +@2332 = .sdata2:0x803E8E38; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata2:0x803E8E3C; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata2:0x803E8E40; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata2:0x803E8E44; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803E8E48; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803E8E4C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803E8E50; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata2:0x803E8E54; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata2:0x803E8E58; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803E8E5C; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803E8E60; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803E8E64; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803E8E68; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803E8E70; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata2:0x803E8E74; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803E8E78; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803E8E80; // type:object size:0x8 scope:local align:8 data:double +@1322 = .sdata2:0x803E8E88; // type:object size:0x8 scope:local align:8 data:double +@3137 = .sdata2:0x803E8E90; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803E8E94; // type:object size:0x4 scope:local align:4 data:float +@3153 = .sdata2:0x803E8E98; // type:object size:0x4 scope:local align:4 data:float +@3228 = .sdata2:0x803E8E9C; // type:object size:0x4 scope:local align:4 data:float +@3229 = .sdata2:0x803E8EA0; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata2:0x803E8EA4; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x803E8EA8; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803E8EB0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803E8EB4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803E8EB8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803E8EBC; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803E8EC0; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803E8EC8; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803E8ECC; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803E8ED0; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803E8ED8; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8EDC; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E8EE0; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803E8EE8; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803E8EF0; // type:object size:0x8 scope:local align:8 data:double +@2047 = .sdata2:0x803E8EF8; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803E8EFC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803E8F00; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803E8F04; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803E8F08; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803E8F0C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803E8F10; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E8F14; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803E8F18; // type:object size:0x8 scope:local align:8 data:double +@1914 = .sdata2:0x803E8F20; // type:object size:0x8 scope:local align:8 data:double +@1950 = .sdata2:0x803E8F28; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803E8F2C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803E8F30; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803E8F34; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803E8F38; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E8F40; // type:object size:0x8 scope:local align:8 data:double +@2101 = .sdata2:0x803E8F48; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803E8F4C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803E8F50; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E8F58; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803E8F60; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803E8F68; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803E8F6C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803E8F70; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803E8F74; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803E8F78; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803E8F7C; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803E8F80; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803E8F84; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803E8F88; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E8F8C; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803E8F90; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803E8F94; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803E8F98; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803E8FA0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803E8FA4; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803E8FA8; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803E8FAC; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803E8FB0; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803E8FB4; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803E8FB8; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803E8FC0; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803E8FC8; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803E8FD0; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E8FD8; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803E8FDC; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803E8FE0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803E8FE8; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803E8FF0; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803E8FF4; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803E8FF8; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803E8FFC; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803E9000; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803E9004; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803E9008; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803E900C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803E9010; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803E9018; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803E9020; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803E9028; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803E902C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803E9030; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E9034; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803E9038; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803E903C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803E9040; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803E9044; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803E9048; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803E904C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E9050; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803E9058; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803E905C; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803E9060; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803E9064; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803E9068; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803E9070; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9074; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803E9078; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803E9080; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803E9084; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803E9088; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803E908C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E9090; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E9094; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803E9098; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E909C; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata2:0x803E90A0; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803E90A8; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803E90AC; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803E90B0; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803E90B4; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803E90B8; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803E90C0; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803E90C4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803E90C8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803E90CC; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803E90D0; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803E90D4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803E90D8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803E90DC; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803E90E0; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803E90E4; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803E90E8; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803E90F0; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803E90F4; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803E90F8; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803E90FC; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803E9100; // type:object size:0x8 scope:local align:8 data:double +@1376 = .sdata2:0x803E9108; // type:object size:0x8 scope:local align:8 data:double +@1377 = .sdata2:0x803E9110; // type:object size:0x8 scope:local align:8 data:double +@1378 = .sdata2:0x803E9118; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803E911C; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803E9120; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E9124; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803E9128; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803E912C; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803E9130; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803E9138; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803E9140; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803E9148; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803E914C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803E9150; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803E9158; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803E9160; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803E9164; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803E9168; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803E916C; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803E9170; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803E9174; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803E9178; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803E917C; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803E9180; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803E9184; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803E9188; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803E918C; // type:object size:0x4 scope:local align:4 data:float +@3056 = .sdata2:0x803E9190; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803E9194; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803E9198; // type:object size:0x4 scope:local align:4 data:float +@3289 = .sdata2:0x803E919C; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x803E91A0; // type:object size:0x4 scope:local align:4 data:float +@3291 = .sdata2:0x803E91A4; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803E91A8; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x803E91AC; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x803E91B0; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x803E91B4; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x803E91B8; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x803E91BC; // type:object size:0x4 scope:local align:4 data:float +@4236 = .sdata2:0x803E91C0; // type:object size:0x4 scope:local align:4 data:float +@4237 = .sdata2:0x803E91C4; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803E91C8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803E91CC; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803E91D0; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803E91D4; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803E91D8; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E91DC; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E91E0; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803E91E4; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803E91E8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803E91EC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803E91F0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E91F4; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803E91F8; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803E9200; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803E9208; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803E920C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803E9210; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803E9218; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803E921C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803E9220; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803E9224; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803E9228; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803E9230; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803E9238; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803E9240; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803E9248; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803E9250; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803E9254; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803E9258; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803E925C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803E9260; // type:object size:0x4 scope:local align:4 data:float +@2351 = .sdata2:0x803E9268; // type:object size:0x8 scope:local align:8 data:double +@2352 = .sdata2:0x803E9270; // type:object size:0x8 scope:local align:8 data:double +@2353 = .sdata2:0x803E9278; // type:object size:0x4 scope:local align:4 data:float +@2354 = .sdata2:0x803E927C; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803E9280; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata2:0x803E9284; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata2:0x803E9288; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803E928C; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803E9290; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803E9294; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803E9298; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803E929C; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803E92A0; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803E92A4; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803E92A8; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803E92AC; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803E92B0; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803E92B4; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803E92B8; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803E92C0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E92C4; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803E92C8; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803E92CC; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803E92D0; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803E92D8; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803E92E0; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803E92E4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E92E8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E92EC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E92F0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803E92F8; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803E9300; // type:object size:0x8 scope:local align:8 data:double +@1433 = .sdata2:0x803E9308; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803E9310; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803E9314; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803E9318; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803E931C; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803E9320; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803E9324; // type:object size:0x4 scope:local align:4 data:float +@1447 = .sdata2:0x803E9328; // type:object size:0x8 scope:local align:8 data:double +@1476 = .sdata2:0x803E9330; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803E9334; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803E9338; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata2:0x803E933C; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803E9340; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803E9344; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803E9348; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803E9350; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803E9354; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E9358; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E935C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803E9360; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E9368; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803E9370; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803E9378; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803E9380; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803E9388; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803E9390; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803E9394; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803E9398; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803E939C; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803E93A0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E93A4; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803E93A8; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E93AC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803E93B0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803E93B8; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803E93C0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E93C8; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803E93CC; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803E93D0; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803E93D8; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803E93DC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803E93E0; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803E93E4; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803E93E8; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803E93F0; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803E93F8; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803E9400; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803E9408; // type:object size:0x8 scope:local align:8 data:double +@1531 = .sdata2:0x803E9410; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E9414; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E9418; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata2:0x803E941C; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata2:0x803E9420; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803E9424; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E9428; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E942C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E9430; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E9434; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E9438; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803E9440; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803E9444; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803E9448; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803E944C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803E9450; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E9454; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E9458; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E945C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803E9460; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803E9468; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E946C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E9470; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803E9474; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E9478; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803E9480; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803E9484; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803E9488; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803E9490; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803E9498; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803E949C; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E94A0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E94A4; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803E94A8; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803E94B0; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803E94B8; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803E94C0; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803E94C4; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803E94C8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803E94CC; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803E94D0; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803E94D4; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803E94D8; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803E94DC; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803E94E0; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803E94E8; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803E94EC; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803E94F0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803E94F4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803E94F8; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E94FC; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E9500; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803E9508; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803E9510; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803E9514; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803E9518; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803E9520; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803E9524; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803E9528; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803E952C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803E9530; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803E9534; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803E9538; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803E9540; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E9544; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803E9548; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803E9550; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E9554; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803E9558; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803E955C; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803E9560; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803E9564; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803E9568; // type:object size:0x8 scope:local align:8 data:double +@1994 = .sdata2:0x803E9570; // type:object size:0x8 scope:local align:8 data:double +@2178 = .sdata2:0x803E9578; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803E957C; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata2:0x803E9580; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803E9584; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803E9588; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803E958C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803E9590; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803E9598; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803E959C; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803E95A0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803E95A4; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803E95A8; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803E95AC; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803E95B0; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803E95B8; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803E95C0; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803E95C4; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803E95C8; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803E95CC; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803E95D0; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803E95D4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E95D8; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803E95DC; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803E95E0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803E95E8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803E95F0; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E95F8; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803E95FC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E9600; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803E9604; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E9608; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803E960C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803E9610; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803E9614; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803E9618; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803E961C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803E9620; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803E9624; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803E9628; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803E962C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803E9630; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803E9638; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803E963C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803E9640; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803E9644; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E9648; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803E964C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803E9650; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803E9658; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803E9660; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803E9668; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E966C; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803E9670; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803E9674; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803E9678; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803E9680; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803E9688; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803E9690; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E9698; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803E96A0; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803E96A8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803E96AC; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803E96B0; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803E96B4; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803E96B8; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803E96BC; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E96C0; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803E96C4; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803E96C8; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803E96CC; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803E96D0; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803E96D4; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803E96D8; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803E96E0; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803E96E4; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803E96E8; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803E96F0; // type:object size:0x8 scope:local align:8 data:double +@2235 = .sdata2:0x803E96F8; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803E9700; // type:object size:0x8 scope:local align:8 data:double +@2237 = .sdata2:0x803E9708; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803E9710; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803E9714; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803E9718; // type:object size:0x8 scope:local align:8 data:double +@2538 = .sdata2:0x803E9720; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803E9724; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata2:0x803E9728; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803E972C; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803E9730; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803E9734; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803E9738; // type:object size:0x4 scope:local align:4 data:float +@3328 = .sdata2:0x803E973C; // type:object size:0x4 scope:local align:4 data:float +@3330 = .sdata2:0x803E9740; // type:object size:0x8 scope:local align:8 data:double +@3660 = .sdata2:0x803E9748; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x803E974C; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803E9750; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x803E9754; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x803E9758; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x803E975C; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata2:0x803E9760; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x803E9764; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x803E9768; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x803E976C; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803E9770; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x803E9774; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x803E9778; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x803E977C; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata2:0x803E9780; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803E9788; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803E978C; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803E9790; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803E9798; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803E97A0; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803E97A4; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803E97A8; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803E97B0; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803E97B4; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803E97B8; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803E97BC; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803E97C0; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803E97C4; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803E97C8; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803E97CC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803E97D0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803E97D4; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803E97D8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803E97DC; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803E97E0; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803E97E4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803E97E8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803E97EC; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E97F0; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E97F4; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803E97F8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E97FC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E9800; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803E9804; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803E9808; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803E980C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803E9810; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803E9814; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803E9818; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E981C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803E9820; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803E9824; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803E9828; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803E982C; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803E9830; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803E9834; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803E9838; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803E983C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E9840; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E9844; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803E9848; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E984C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803E9850; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803E9854; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803E9858; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803E985C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803E9860; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803E9868; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803E9870; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803E9874; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803E9878; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803E987C; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803E9880; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803E9884; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803E9888; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803E988C; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803E9890; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803E9898; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803E98A0; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803E98A8; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803E98AC; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803E98B0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803E98B4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803E98B8; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803E98BC; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803E98C0; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803E98C4; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803E98C8; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803E98CC; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803E98D0; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803E98D4; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803E98D8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803E98DC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803E98E0; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803E98E4; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803E98E8; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803E98EC; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803E98F0; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803E98F4; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803E98F8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803E98FC; // type:object size:0x4 scope:local align:4 data:float +@4802 = .sdata2:0x803E9900; // type:object size:0x4 scope:local align:4 data:float +@5043 = .sdata2:0x803E9904; // type:object size:0x8 scope:local align:4 data:4byte +@5193 = .sdata2:0x803E990C; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x803E9910; // type:object size:0x8 scope:local align:4 data:4byte +@5225 = .sdata2:0x803E9918; // type:object size:0x8 scope:local align:4 data:4byte +@5323 = .sdata2:0x803E9920; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803E9928; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803E992C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803E9930; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E9934; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803E9938; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803E993C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E9940; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803E9948; // type:object size:0x8 scope:local align:8 data:double +@1704 = .sdata2:0x803E9950; // type:object size:0x8 scope:local align:8 data:double +@1705 = .sdata2:0x803E9958; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803E995C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E9960; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803E9964; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803E9968; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803E996C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E9970; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803E9974; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803E9978; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803E997C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803E9980; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E9984; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803E9988; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803E998C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803E9990; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E9994; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803E9998; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803E999C; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803E99A0; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803E99A4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata2:0x803E99A8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803E99AC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803E99B0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803E99B4; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803E99B8; // type:object size:0x8 scope:local align:8 data:double +@2231 = .sdata2:0x803E99C0; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata2:0x803E99C4; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803E99C8; // type:object size:0x4 scope:local align:4 data:float +@2675 = .sdata2:0x803E99CC; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803E99D0; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803E99D4; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803E99D8; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803E99DC; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803E99E0; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E99E8; // type:object size:0x8 scope:local align:8 data:double +@945 = .sdata2:0x803E99F0; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E99F4; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E99F8; // type:object size:0x8 scope:local align:8 data:double +@1096 = .sdata2:0x803E9A00; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803E9A08; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803E9A10; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803E9A14; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803E9A18; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E9A20; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803E9A24; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803E9A28; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803E9A30; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803E9A38; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803E9A3C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803E9A40; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803E9A44; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803E9A48; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803E9A50; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803E9A58; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803E9A60; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803E9A68; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803E9A6C; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803E9A70; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803E9A74; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803E9A78; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803E9A7C; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803E9A80; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803E9A88; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803E9A90; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803E9A94; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803E9A98; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803E9AA0; // type:object size:0x8 scope:local align:8 data:double +@1337 = .sdata2:0x803E9AA8; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803E9AAC; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803E9AB0; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803E9AB8; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E9ABC; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E9AC0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803E9AC4; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803E9AC8; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803E9AD0; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803E9AD4; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803E9AD8; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803E9ADC; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803E9AE0; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803E9AE4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E9AE8; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803E9AF0; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803E9AF4; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803E9AF8; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803E9AFC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803E9B00; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803E9B04; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803E9B08; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803E9B0C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803E9B10; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803E9B14; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E9B18; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803E9B1C; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803E9B20; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803E9B28; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803E9B30; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803E9B34; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803E9B38; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803E9B3C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803E9B40; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803E9B44; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803E9B48; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803E9B4C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803E9B50; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803E9B54; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803E9B58; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803E9B60; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803E9B68; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803E9B6C; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803E9B70; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803E9B74; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803E9B78; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803E9B7C; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803E9B80; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803E9B84; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803E9B88; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803E9B8C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803E9B90; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata2:0x803E9B98; // type:object size:0x8 scope:local align:8 data:double +@1755 = .sdata2:0x803E9BA0; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803E9BA4; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803E9BA8; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E9BB0; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E9BB8; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803E9BC0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803E9BC4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803E9BC8; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803E9BCC; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803E9BD0; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803E9BD8; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803E9BDC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803E9BE0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803E9BE4; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803E9BE8; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9BF0; // type:object size:0x8 scope:local align:8 data:double +@1489 = .sdata2:0x803E9BF8; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803E9BFC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803E9C00; // type:object size:0x8 scope:local align:8 data:double +@1616 = .sdata2:0x803E9C08; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803E9C10; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803E9C18; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803E9C1C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803E9C20; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803E9C28; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803E9C30; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803E9C38; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803E9C3C; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803E9C40; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803E9C44; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803E9C48; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803E9C4C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803E9C50; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803E9C54; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803E9C58; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803E9C5C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E9C60; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803E9C68; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803E9C6C; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803E9C70; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803E9C74; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803E9C78; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9C7C; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803E9C80; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803E9C84; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803E9C88; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803E9C90; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803E9C98; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803E9C9C; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803E9CA0; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803E9CA4; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803E9CA8; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803E9CAC; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803E9CB0; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803E9CB4; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803E9CB8; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803E9CBC; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803E9CC0; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E9CC4; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803E9CC8; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803E9CD0; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803E9CD4; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803E9CD8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803E9CE0; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803E9CE8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803E9CEC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803E9CF0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803E9CF4; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803E9CF8; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803E9D00; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803E9D04; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803E9D08; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803E9D0C; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803E9D10; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803E9D18; // type:object size:0x8 scope:local align:8 data:double +@2766 = .sdata2:0x803E9D20; // type:object size:0x8 scope:local align:8 data:double +@2785 = .sdata2:0x803E9D28; // type:object size:0x4 scope:local align:4 data:float +@2994 = .sdata2:0x803E9D2C; // type:object size:0x4 scope:local align:4 data:float +@2995 = .sdata2:0x803E9D30; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803E9D34; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x803E9D38; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803E9D3C; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803E9D40; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata2:0x803E9D44; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803E9D48; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803E9D4C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803E9D50; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E9D54; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E9D58; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803E9D5C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803E9D60; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803E9D64; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803E9D68; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803E9D6C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803E9D70; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803E9D78; // type:object size:0x8 scope:local align:8 data:double +@2761 = .sdata2:0x803E9D80; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803E9D84; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803E9D88; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803E9D8C; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803E9D90; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803E9D98; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803E9D9C; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803E9DA0; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803E9DA8; // type:object size:0x8 scope:local align:8 data:double +@2212 = .sdata2:0x803E9DB0; // type:object size:0x8 scope:local align:8 data:double +@2213 = .sdata2:0x803E9DB8; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803E9DBC; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803E9DC0; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x803E9DC4; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x803E9DC8; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata2:0x803E9DCC; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata2:0x803E9DD0; // type:object size:0x4 scope:local align:4 data:float +@2715 = .sdata2:0x803E9DD4; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata2:0x803E9DD8; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata2:0x803E9DDC; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata2:0x803E9DE0; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata2:0x803E9DE4; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x803E9DE8; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803E9DEC; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803E9DF0; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803E9DF4; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803E9DF8; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803E9DFC; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803E9E00; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803E9E04; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata2:0x803E9E08; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata2:0x803E9E0C; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803E9E10; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803E9E14; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E9E18; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803E9E1C; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803E9E20; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803E9E24; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x803E9E28; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803E9E2C; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803E9E30; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803E9E34; // type:object size:0x4 scope:local align:4 data:float +@2787 = .sdata2:0x803E9E38; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803E9E3C; // type:object size:0x4 scope:local align:4 data:float +@2791 = .sdata2:0x803E9E40; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803E9E44; // type:object size:0x8 scope:local align:4 data:4byte +@2875 = .sdata2:0x803E9E4C; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata2:0x803E9E50; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x803E9E58; // type:object size:0x8 scope:local align:8 data:double +@3019 = .sdata2:0x803E9E60; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x803E9E64; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata2:0x803E9E68; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x803E9E6C; // type:object size:0x4 scope:local align:4 data:float +@4295 = .sdata2:0x803E9E70; // type:object size:0x4 scope:local align:4 data:float +@4623 = .sdata2:0x803E9E74; // type:object size:0x4 scope:local align:4 data:float +@4624 = .sdata2:0x803E9E78; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x803E9E7C; // type:object size:0x4 scope:local align:4 data:float +@4803 = .sdata2:0x803E9E80; // type:object size:0x4 scope:local align:4 data:float +@4805 = .sdata2:0x803E9E84; // type:object size:0x4 scope:local align:4 data:float +@4845 = .sdata2:0x803E9E88; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x803E9E8C; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata2:0x803E9E90; // type:object size:0x4 scope:local align:4 data:float +@5448 = .sdata2:0x803E9E94; // type:object size:0x4 scope:local align:4 data:float +@5449 = .sdata2:0x803E9E98; // type:object size:0x4 scope:local align:4 data:float +@5450 = .sdata2:0x803E9E9C; // type:object size:0x4 scope:local align:4 data:float +@5451 = .sdata2:0x803E9EA0; // type:object size:0x4 scope:local align:4 data:float +@5452 = .sdata2:0x803E9EA4; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803E9EA8; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803E9EAC; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803E9EB0; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803E9EB4; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata2:0x803E9EB8; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata2:0x803E9EBC; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata2:0x803E9EC0; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata2:0x803E9EC4; // type:object size:0x4 scope:local align:4 data:float +@6692 = .sdata2:0x803E9EC8; // type:object size:0x4 scope:local align:4 data:float +@6693 = .sdata2:0x803E9ECC; // type:object size:0x4 scope:local align:4 data:float +@6694 = .sdata2:0x803E9ED0; // type:object size:0x4 scope:local align:4 data:float +@6695 = .sdata2:0x803E9ED4; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803E9ED8; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803E9EDC; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803E9EE0; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803E9EE4; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803E9EE8; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803E9EEC; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803E9EF0; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803E9EF4; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803E9EF8; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803E9F00; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803E9F08; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803E9F10; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803E9F18; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803E9F1C; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803E9F20; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803E9F24; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803E9F28; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803E9F2C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803E9F30; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x803E9F34; // type:object size:0x4 scope:local align:4 data:float +@3444 = .sdata2:0x803E9F38; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x803E9F3C; // type:object size:0x4 scope:local align:4 data:float +@3446 = .sdata2:0x803E9F40; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x803E9F44; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x803E9F48; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x803E9F4C; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x803E9F50; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x803E9F54; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x803E9F58; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x803E9F5C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x803E9F60; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x803E9F64; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803E9F68; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x803E9F6C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x803E9F70; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x803E9F74; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x803E9F78; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x803E9F7C; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x803E9F80; // type:object size:0x4 scope:local align:4 data:float +@4155 = .sdata2:0x803E9F84; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x803E9F88; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x803E9F8C; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata2:0x803E9F90; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata2:0x803E9F94; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x803E9F98; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x803E9F9C; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x803E9FA0; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x803E9FA4; // type:object size:0x4 scope:local align:4 data:float +@5686 = .sdata2:0x803E9FA8; // type:object size:0x4 scope:local align:4 data:float +@5687 = .sdata2:0x803E9FAC; // type:object size:0x4 scope:local align:4 data:float +@5766 = .sdata2:0x803E9FB0; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803E9FB8; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803E9FBC; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803E9FC0; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803E9FC8; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803E9FD0; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803E9FD4; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803E9FD8; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803E9FDC; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803E9FE0; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803E9FE4; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803E9FE8; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803E9FEC; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803E9FF0; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803E9FF8; // type:object size:0x8 scope:local align:8 data:double +@2434 = .sdata2:0x803EA000; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EA004; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EA008; // type:object size:0x4 scope:local align:4 data:float +@2479 = .sdata2:0x803EA010; // type:object size:0x4 scope:local align:4 data:float +@3308 = .sdata2:0x803EA014; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x803EA018; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x803EA01C; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x803EA020; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803EA028; // type:object size:0x8 scope:local align:8 data:double +@4361 = .sdata2:0x803EA030; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EA038; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EA03C; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803EA040; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EA044; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EA048; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EA04C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EA050; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EA054; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EA058; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EA05C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EA060; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EA064; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EA068; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EA070; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803EA078; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803EA080; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803EA084; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803EA088; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803EA090; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EA094; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EA098; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EA09C; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803EA0A0; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EA0A4; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EA0A8; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803EA0AC; // type:object size:0x4 scope:local align:4 data:float +@2097 = .sdata2:0x803EA0B0; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803EA0B8; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803EA0C0; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EA0C8; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803EA0CC; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EA0D0; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803EA0D8; // type:object size:0x8 scope:local align:8 data:double +@957 = .sdata2:0x803EA0E0; // type:object size:0x4 scope:local align:4 data:float +@958 = .sdata2:0x803EA0E4; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EA0E8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EA0EC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EA0F0; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EA0F4; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803EA0F8; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803EA0FC; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EA100; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803EA108; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EA10C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EA110; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EA118; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803EA120; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EA128; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EA12C; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EA130; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EA134; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EA138; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EA13C; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803EA140; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803EA144; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803EA148; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EA150; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803EA154; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EA158; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EA160; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803EA168; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803EA170; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803EA178; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803EA17C; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803EA180; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803EA184; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EA188; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803EA18C; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803EA190; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803EA198; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EA1A0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EA1A4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EA1A8; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803EA1B0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803EA1B8; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803EA1C0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA1C8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA1CC; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA1D0; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EA1D4; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EA1D8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA1DC; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EA1E0; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EA1E4; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EA1E8; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EA1EC; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata2:0x803EA1F0; // type:object size:0x8 scope:local align:8 data:double +@495 = .sdata2:0x803EA1F8; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EA200; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EA204; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EA208; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EA20C; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EA210; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EA214; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EA218; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EA220; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803EA228; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EA22C; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EA230; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803EA234; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803EA238; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803EA240; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EA244; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EA248; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EA24C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EA250; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EA254; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EA258; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EA25C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803EA260; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803EA264; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803EA268; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EA26C; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EA270; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EA274; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EA278; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EA27C; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EA280; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803EA288; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EA28C; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803EA290; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803EA294; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803EA298; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803EA29C; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803EA2A0; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803EA2A4; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EA2A8; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803EA2AC; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803EA2B0; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EA2B4; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EA2B8; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803EA2BC; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803EA2C0; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EA2C4; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EA2C8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EA2CC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803EA2D0; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EA2D4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EA2D8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EA2DC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EA2E0; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EA2E4; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EA2E8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EA2EC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EA2F0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EA2F4; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EA2F8; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EA2FC; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EA300; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EA304; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EA308; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EA30C; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803EA310; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803EA314; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EA318; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803EA31C; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803EA320; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EA328; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803EA32C; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EA330; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803EA338; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EA340; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803EA348; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EA34C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EA350; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EA358; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803EA360; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EA364; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EA368; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EA36C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EA370; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EA374; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EA378; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EA37C; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EA380; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EA384; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EA388; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EA38C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EA390; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EA394; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EA398; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA39C; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EA3A0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EA3A4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA3A8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EA3AC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EA3B0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EA3B4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA3B8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA3BC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA3C0; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803EA3C4; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803EA3C8; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EA3CC; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803EA3D0; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803EA3D4; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EA3D8; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EA3E0; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA3E4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA3E8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EA3EC; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA3F0; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA3F4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA3F8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA3FC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EA400; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EA404; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EA408; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EA40C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EA410; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EA414; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EA418; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EA41C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EA420; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EA424; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EA428; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EA42C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EA430; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EA434; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EA438; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EA43C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EA440; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803EA444; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803EA448; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EA450; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EA454; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803EA458; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803EA45C; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EA460; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803EA464; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EA468; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EA46C; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EA470; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EA474; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EA478; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EA47C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EA480; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803EA484; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EA488; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EA490; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EA494; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EA498; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EA49C; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EA4A0; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EA4A4; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EA4A8; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EA4AC; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EA4B0; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EA4B4; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EA4B8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EA4BC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EA4C0; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EA4C4; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EA4C8; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EA4CC; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EA4D0; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EA4D4; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EA4D8; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EA4DC; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EA4E0; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EA4E4; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EA4E8; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EA4EC; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EA4F0; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EA4F4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EA4F8; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EA4FC; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803EA500; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803EA504; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803EA508; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803EA510; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803EA518; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803EA520; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EA528; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EA52C; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EA530; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EA534; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EA538; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EA53C; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EA540; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EA544; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803EA548; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EA54C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EA550; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EA554; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EA558; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EA55C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EA560; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EA564; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EA568; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803EA56C; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803EA570; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803EA578; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803EA580; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803EA584; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EA588; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803EA590; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803EA594; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EA598; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EA59C; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EA5A0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EA5A8; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EA5AC; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EA5B0; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EA5B4; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803EA5B8; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EA5BC; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EA5C0; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EA5C4; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EA5C8; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803EA5CC; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EA5D0; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803EA5D4; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803EA5D8; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803EA5DC; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EA5E0; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803EA5E4; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EA5E8; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EA5EC; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803EA5F0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EA5F4; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803EA5F8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EA5FC; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803EA600; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803EA604; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EA608; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EA60C; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EA610; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EA614; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EA618; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803EA61C; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803EA620; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803EA624; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803EA628; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803EA62C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803EA630; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EA634; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803EA638; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803EA63C; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803EA640; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803EA644; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803EA648; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803EA650; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803EA658; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803EA65C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803EA660; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EA664; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EA668; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803EA66C; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EA670; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EA674; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EA678; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EA67C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EA680; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EA684; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EA688; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EA68C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EA690; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EA694; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EA698; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EA69C; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EA6A0; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EA6A4; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EA6A8; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EA6AC; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EA6B0; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803EA6B4; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EA6B8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EA6BC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EA6C0; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EA6C4; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803EA6C8; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803EA6CC; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EA6D0; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EA6D4; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803EA6D8; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803EA6DC; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803EA6E0; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803EA6E4; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803EA6E8; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803EA6EC; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803EA6F0; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803EA6F8; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803EA700; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803EA708; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803EA710; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803EA714; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EA718; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EA71C; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803EA720; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803EA724; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803EA728; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803EA72C; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803EA730; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EA734; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803EA738; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EA73C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EA740; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EA744; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803EA748; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803EA750; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803EA758; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EA75C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EA760; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EA768; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803EA770; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EA774; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA778; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA77C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EA780; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA784; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA788; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA78C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EA790; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA794; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EA798; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EA79C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EA7A0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA7A4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EA7A8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EA7AC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EA7B0; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EA7B4; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EA7B8; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EA7BC; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EA7C0; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EA7C4; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EA7C8; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EA7CC; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EA7D0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EA7D4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EA7D8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EA7DC; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EA7E0; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803EA7E4; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803EA7E8; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803EA7EC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803EA7F0; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803EA7F8; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803EA800; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803EA804; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EA808; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803EA80C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803EA810; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803EA814; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803EA818; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803EA81C; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803EA820; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803EA824; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803EA828; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803EA82C; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EA830; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803EA834; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EA838; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803EA83C; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803EA840; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EA848; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EA84C; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EA850; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EA854; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EA858; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EA860; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803EA868; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EA86C; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EA870; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803EA878; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803EA880; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803EA884; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803EA888; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EA890; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EA894; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EA898; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803EA8A0; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803EA8A8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EA8AC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EA8B0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EA8B4; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EA8B8; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803EA8BC; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803EA8C0; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803EA8C4; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803EA8C8; // type:object size:0x8 scope:local align:8 data:double +@3867 = .sdata2:0x803EA8D0; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x803EA8D4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EA8D8; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803EA8DC; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EA8E0; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803EA8E8; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803EA8EC; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EA8F0; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EA8F4; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803EA8F8; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803EA8FC; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803EA900; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803EA904; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803EA908; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803EA90C; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803EA910; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803EA914; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803EA918; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803EA91C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803EA920; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803EA924; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803EA928; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803EA92C; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803EA930; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EA934; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803EA938; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803EA93C; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803EA940; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803EA944; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EA948; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803EA94C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EA950; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EA954; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803EA958; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803EA95C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EA960; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803EA964; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EA968; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EA96C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EA970; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EA974; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803EA978; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803EA97C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803EA980; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803EA984; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EA988; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EA990; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EA994; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EA998; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EA99C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EA9A0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803EA9A4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803EA9A8; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803EA9B0; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EA9B8; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803EA9BC; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EA9C0; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EA9C4; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EA9C8; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803EA9CC; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803EA9D0; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EA9D4; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EA9D8; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EA9DC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803EA9E0; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EA9E4; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EA9E8; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EA9EC; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803EA9F4; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EA9F8; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EA9FC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EAA00; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EAA04; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EAA08; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EAA0C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EAA10; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803EAA14; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EAA18; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EAA1C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EAA20; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EAA24; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EAA28; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EAA2C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803EAA30; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803EAA34; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803EAA38; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803EAA3C; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803EAA40; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EAA44; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EAA48; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EAA4C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EAA50; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EAA54; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EAA58; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EAA5C; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EAA60; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EAA64; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EAA68; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803EAA6C; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EAA70; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EAA74; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EAA78; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EAA7C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803EAA80; // type:object size:0x8 scope:local align:8 data:double +@2035 = .sdata2:0x803EAA88; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EAA8C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EAA90; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EAA94; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata2:0x803EAA98; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata2:0x803EAA9C; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EAAA0; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata2:0x803EAAA4; // type:object size:0x4 scope:local align:4 data:float +@2184 = .sdata2:0x803EAAA8; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803EAAAC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EAAB0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EAAB4; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EAAB8; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EAAC0; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803EAAC8; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EAACC; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EAAD0; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EAAD8; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803EAAE0; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EAAE4; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803EAAE8; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803EAAEC; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803EAAF0; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803EAAF4; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803EAAF8; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803EAAFC; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803EAB00; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EAB04; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EAB08; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803EAB0C; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803EAB10; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803EAB14; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803EAB18; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803EAB1C; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803EAB20; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803EAB24; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803EAB28; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803EAB2C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803EAB30; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803EAB34; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EAB38; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EAB3C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EAB40; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EAB44; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803EAB48; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EAB4C; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EAB50; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EAB54; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EAB58; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EAB5C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EAB60; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EAB64; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EAB68; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EAB6C; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EAB70; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EAB74; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EAB78; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EAB7C; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803EAB80; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803EAB84; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EAB88; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EAB8C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EAB90; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803EAB94; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EAB98; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EAB9C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EABA0; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EABA4; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803EABA8; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803EABAC; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803EABB0; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803EABB4; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803EABB8; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803EABBC; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EABC0; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803EABC8; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EABCC; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803EABD0; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803EABD4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EABD8; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803EABDC; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803EABE0; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803EABE4; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803EABE8; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803EABF0; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803EABF4; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803EABF8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803EABFC; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803EAC00; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803EAC04; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EAC08; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EAC0C; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803EAC10; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803EAC18; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803EAC1C; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803EAC20; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EAC28; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EAC2C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EAC30; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EAC34; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EAC38; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EAC3C; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAC40; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAC44; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAC48; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EAC4C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EAC50; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803EAC54; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EAC58; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EAC5C; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803EAC60; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803EAC64; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EAC68; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803EAC6C; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803EAC70; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EAC74; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EAC78; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803EAC80; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803EAC88; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803EAC90; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EAC98; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803EAC9C; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EACA0; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803EACA8; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EACB0; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EACB4; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EACB8; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803EACBC; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803EACC0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EACC4; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803EACC8; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803EACCC; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803EACD0; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803EACD4; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803EACD8; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803EACDC; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803EACE0; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803EACE4; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EACE8; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803EACEC; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803EACF0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803EACF4; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803EACF8; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803EACFC; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803EAD00; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803EAD04; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x803EAD08; // type:object size:0x4 scope:local align:4 data:float +@4550 = .sdata2:0x803EAD0C; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x803EAD10; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x803EAD14; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803EAD18; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803EAD1C; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803EAD20; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803EAD28; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803EAD30; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EAD34; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803EAD38; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EAD3C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803EAD40; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803EAD44; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EAD48; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EAD4C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EAD50; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EAD54; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EAD58; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EAD5C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803EAD60; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EAD64; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAD68; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAD6C; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAD70; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803EAD74; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EAD78; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EAD7C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EAD80; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EAD84; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803EAD88; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EAD8C; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803EAD90; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803EAD94; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EAD98; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EAD9C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EADA0; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EADA4; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EADA8; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EADB0; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803EADB4; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EADB8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EADBC; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EADC0; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata2:0x803EADC4; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EADC8; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EADCC; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803EADD0; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803EADD4; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EADD8; // type:object size:0x8 scope:local align:8 data:double +@2306 = .sdata2:0x803EADE0; // type:object size:0x4 scope:local align:4 data:float +@2411 = .sdata2:0x803EADE4; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EADE8; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803EADEC; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x803EADF0; // type:object size:0x4 scope:local align:4 data:float +@3124 = .sdata2:0x803EADF4; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EADF8; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x803EADFC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x803EAE00; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x803EAE04; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803EAE08; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803EAE0C; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x803EAE10; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803EAE18; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EAE1C; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EAE20; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EAE24; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EAE28; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EAE30; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803EAE38; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803EAE40; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803EAE44; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803EAE48; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803EAE4C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803EAE50; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EAE54; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803EAE58; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EAE5C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EAE60; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EAE64; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803EAE68; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EAE6C; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EAE70; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAE74; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAE78; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAE7C; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EAE80; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EAE84; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EAE88; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803EAE8C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EAE90; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803EAE94; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EAE98; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803EAEA0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EAEA4; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803EAEA8; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803EAEAC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803EAEB0; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803EAEB8; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EAEBC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EAEC0; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EAEC4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EAEC8; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EAECC; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EAED0; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EAED4; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803EAED8; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803EAEDC; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803EAEE0; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803EAEE4; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803EAEE8; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EAEF0; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803EAEF4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803EAEF8; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EAEFC; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803EAF00; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EAF04; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EAF08; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EAF0C; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EAF10; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803EAF14; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803EAF18; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803EAF1C; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803EAF20; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803EAF28; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EAF2C; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803EAF30; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EAF34; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EAF38; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803EAF3C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EAF40; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803EAF48; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803EAF4C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EAF50; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803EAF58; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EAF60; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EAF64; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EAF68; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EAF6C; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EAF70; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EAF74; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EAF78; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EAF7C; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EAF80; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EAF84; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EAF88; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803EAF8C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EAF90; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EAF94; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EAF98; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EAFA0; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EAFA4; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803EAFA8; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EAFAC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EAFB0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAFB4; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803EAFB8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EAFC0; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EAFC4; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803EAFC8; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803EAFCC; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803EAFD0; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803EAFD4; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EAFD8; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EAFE0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803EAFE4; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803EAFE8; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata2:0x803EAFEC; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EAFF0; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EAFF4; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EAFF8; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EAFFC; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803EB000; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803EB004; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803EB008; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803EB010; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803EB018; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EB020; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803EB024; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803EB028; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EB02C; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EB030; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803EB034; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803EB038; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata2:0x803EB03C; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EB040; // type:object size:0x4 scope:local align:4 data:float +@1185 = .sdata2:0x803EB044; // type:object size:0x4 scope:local align:4 data:float +@1186 = .sdata2:0x803EB048; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata2:0x803EB050; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803EB058; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EB05C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EB060; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EB064; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803EB068; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803EB070; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803EB078; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803EB080; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803EB084; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EB088; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803EB08C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EB090; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803EB098; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803EB09C; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803EB0A0; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata2:0x803EB0A4; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803EB0A8; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EB0AC; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803EB0B0; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EB0B4; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EB0B8; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EB0BC; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EB0C0; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803EB0C8; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EB0CC; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EB0D0; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803EB0D4; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803EB0D8; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803EB0DC; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803EB0E0; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803EB0E4; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803EB0E8; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803EB0F0; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803EB0F8; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803EB0FC; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803EB100; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata2:0x803EB104; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803EB108; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EB110; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803EB114; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803EB118; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803EB11C; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803EB120; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803EB124; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803EB128; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803EB12C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EB130; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EB134; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EB138; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803EB13C; // type:object size:0x4 scope:local align:4 data:float +@2110 = .sdata2:0x803EB140; // type:object size:0x4 scope:local align:4 data:float +@2583 = .sdata2:0x803EB144; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EB148; // type:object size:0x8 scope:local align:8 data:double +@2684 = .sdata2:0x803EB150; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803EB154; // type:object size:0x4 scope:local align:4 data:float +@2686 = .sdata2:0x803EB158; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803EB160; // type:object size:0x8 scope:local align:8 data:double +@2703 = .sdata2:0x803EB168; // type:object size:0x8 scope:local align:8 data:double +@2758 = .sdata2:0x803EB170; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EB174; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EB178; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EB17C; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EB180; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EB184; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EB188; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EB18C; // type:object size:0x4 scope:local align:4 data:float +@3028 = .sdata2:0x803EB190; // type:object size:0x4 scope:local align:4 data:4byte +@3048 = .sdata2:0x803EB194; // type:object size:0x4 scope:local align:4 data:float +@3049 = .sdata2:0x803EB198; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x803EB19C; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EB1A0; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB1A4; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB1A8; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803EB1B0; // type:object size:0x8 scope:local align:8 data:double +@1044 = .sdata2:0x803EB1B8; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata2:0x803EB1BC; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata2:0x803EB1C0; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803EB1C8; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803EB1CC; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803EB1D0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EB1D4; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EB1D8; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803EB1DC; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803EB1E0; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803EB1E4; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EB1E8; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803EB1EC; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803EB1F0; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803EB1F8; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EB1FC; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EB200; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EB204; // type:object size:0x3 scope:local align:4 data:2byte +@2069 = .sdata2:0x803EB208; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EB20C; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EB210; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata2:0x803EB214; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata2:0x803EB218; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803EB21C; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803EB220; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803EB224; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803EB228; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata2:0x803EB22C; // type:object size:0x4 scope:local align:4 data:4byte +@2258 = .sdata2:0x803EB230; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata2:0x803EB234; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803EB238; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB240; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB244; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803EB248; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803EB24C; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EB250; // type:object size:0x8 scope:local align:8 data:double +@2123 = .sdata2:0x803EB258; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EB25C; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803EB260; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803EB264; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EB268; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803EB270; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803EB278; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803EB27C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EB280; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EB284; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EB288; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EB28C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EB290; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803EB294; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803EB298; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EB29C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EB2A0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EB2A4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EB2A8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EB2AC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EB2B0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EB2B8; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EB2BC; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803EB2C0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803EB2C4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EB2C8; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EB2CC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EB2D0; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EB2D4; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EB2D8; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EB2DC; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EB2E0; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EB2E4; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EB2E8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EB2EC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EB2F0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EB2F4; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803EB2F8; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803EB2FC; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803EB300; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803EB304; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803EB308; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803EB30C; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803EB310; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803EB314; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803EB318; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803EB320; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803EB324; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EB328; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EB32C; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803EB330; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803EB338; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803EB33C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803EB340; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EB344; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EB348; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803EB34C; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EB350; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803EB354; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803EB358; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EB35C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EB360; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EB364; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803EB368; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EB370; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EB378; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803EB37C; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803EB380; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803EB384; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803EB388; // type:object size:0x8 scope:local align:8 data:double +@1562 = .sdata2:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EB3A8; // type:object size:0x8 scope:local align:8 data:double +@1891 = .sdata2:0x803EB3B0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EB3B4; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EB3B8; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EB3BC; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EB3C0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EB3C4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EB3C8; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803EB3CC; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803EB3D0; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803EB3D8; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EB3DC; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803EB3E0; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803EB3E4; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803EB3E8; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803EB3EC; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EB3F0; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EB3F4; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EB3F8; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803EB400; // type:object size:0x8 scope:local align:8 data:double +@1027 = .sdata2:0x803EB408; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803EB40C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB410; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB414; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803EB418; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EB420; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EB424; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803EB428; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803EB430; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803EB434; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803EB438; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EB43C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EB440; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EB444; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803EB448; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803EB44C; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EB450; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EB454; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EB458; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EB460; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803EB468; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803EB46C; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803EB470; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EB474; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EB478; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EB47C; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EB480; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803EB484; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EB488; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803EB490; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803EB498; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803EB49C; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803EB4A0; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803EB4A8; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803EB4B0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803EB4B4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EB4B8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EB4BC; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EB4C0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EB4C8; // type:object size:0x8 scope:local align:8 data:double +@770 = .sdata2:0x803EB4D0; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803EB4D4; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803EB4D8; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EB4E0; // type:object size:0x8 scope:local align:8 data:double +@1317 = .sdata2:0x803EB4E8; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803EB4F0; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803EB4F8; // type:object size:0x8 scope:local align:8 data:double +@1405 = .sdata2:0x803EB500; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EB508; // type:object size:0x8 scope:local align:8 data:double +@2012 = .sdata2:0x803EB510; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EB514; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EB518; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EB51C; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EB520; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803EB528; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803EB52C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803EB530; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803EB534; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803EB538; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EB540; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803EB548; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803EB54C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EB550; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EB558; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803EB560; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803EB568; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803EB570; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803EB574; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803EB578; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EB57C; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EB580; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803EB584; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EB588; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EB58C; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803EB590; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803EB594; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EB598; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EB59C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EB5A0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EB5A4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EB5A8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EB5AC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EB5B0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EB5B4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EB5B8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EB5BC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EB5C0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EB5C4; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803EB5C8; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EB5CC; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EB5D0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EB5D4; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EB5D8; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EB5DC; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803EB5E0; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EB5E4; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EB5E8; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803EB5EC; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EB5F0; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EB5F4; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803EB5F8; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803EB5FC; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803EB600; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803EB608; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803EB610; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EB614; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803EB618; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EB620; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EB624; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803EB628; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EB62C; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803EB630; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803EB634; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EB638; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EB63C; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803EB640; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EB644; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EB648; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EB64C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803EB650; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803EB654; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803EB658; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803EB65C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803EB660; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803EB664; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EB668; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EB66C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EB670; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803EB674; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EB678; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803EB67C; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803EB680; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803EB684; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EB688; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803EB68C; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803EB690; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803EB694; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EB698; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EB69C; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EB6A0; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803EB6A4; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803EB6A8; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803EB6B0; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803EB6B4; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803EB6B8; // type:object size:0x4 scope:local align:4 data:float +@3261 = .sdata2:0x803EB6BC; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803EB6C0; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803EB6C4; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803EB6C8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803EB6CC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EB6D0; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803EB6D8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803EB6DC; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EB6E0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803EB6E4; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EB6E8; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803EB6F0; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803EB6F8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EB700; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803EB708; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803EB710; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803EB714; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803EB718; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803EB71C; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803EB720; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803EB724; // type:object size:0x4 scope:local align:4 data:float +@2418 = .sdata2:0x803EB728; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803EB72C; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803EB730; // type:object size:0x4 scope:local align:4 data:float +@3346 = .sdata2:0x803EB734; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x803EB738; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x803EB73C; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x803EB740; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x803EB744; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x803EB748; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x803EB74C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803EB750; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803EB758; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803EB760; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803EB764; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803EB768; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803EB76C; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata2:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@1806 = .sdata2:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EB780; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EB784; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803EB788; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803EB790; // type:object size:0x8 scope:local align:8 data:double +@1967 = .sdata2:0x803EB798; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EB79C; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803EB7A0; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803EB7A4; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803EB7A8; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803EB7B0; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803EB7B8; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803EB7BC; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803EB7C0; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EB7C4; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EB7C8; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803EB7D0; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803EB7D4; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803EB7D8; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803EB7DC; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803EB7E0; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803EB7E4; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata2:0x803EB7E8; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata2:0x803EB7F0; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EB7F8; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EB7FC; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803EB800; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EB808; // type:object size:0x8 scope:local align:8 data:double +@887 = .sdata2:0x803EB810; // type:object size:0x8 scope:local align:8 data:double +@1065 = .sdata2:0x803EB818; // type:object size:0x4 scope:local align:4 data:4byte +@1079 = .sdata2:0x803EB81C; // type:object size:0x4 scope:local align:4 data:4byte +@725 = .sdata2:0x803EB820; // type:object size:0x4 scope:local align:4 data:float +@726 = .sdata2:0x803EB824; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EB828; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803EB830; // type:object size:0x8 scope:local align:8 data:double +@648 = .sdata2:0x803EB838; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata2:0x803EB840; // type:object size:0x8 scope:local align:8 data:double +@877 = .sdata2:0x803EB848; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803EB850; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803EB858; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803EB860; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803EB868; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803EB870; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803EB874; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803EB878; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803EB87C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803EB880; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803EB884; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803EB888; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EB890; // type:object size:0x8 scope:local align:8 data:double +@2312 = .sdata2:0x803EB898; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803EB89C; // type:object size:0x4 scope:local align:4 data:float +@2439 = .sdata2:0x803EB8A0; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803EB8A4; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803EB8A8; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata2:0x803EB8AC; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata2:0x803EB8B0; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803EB8B4; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803EB8B8; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803EB8BC; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803EB8C0; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803EB8C8; // type:object size:0x8 scope:local align:8 data:double +@2700 = .sdata2:0x803EB8D0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EB8D4; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803EB8D8; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803EB8DC; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803EB8E0; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata2:0x803EB8E4; // type:object size:0x4 scope:local align:4 data:float +@2805 = .sdata2:0x803EB8E8; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803EB8EC; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803EB8F0; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803EB8F4; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803EB8F8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EB8FC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EB900; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EB904; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EB908; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803EB90C; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803EB910; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803EB914; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803EB918; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803EB91C; // type:object size:0x4 scope:local align:4 data:float +@2961 = .sdata2:0x803EB920; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803EB924; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803EB928; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x803EB92C; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803EB930; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803EB934; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803EB938; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803EB93C; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803EB940; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803EB944; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803EB948; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803EB94C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EB950; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EB954; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803EB958; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803EB960; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803EB968; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803EB96C; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803EB970; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803EB974; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EB978; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EB97C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EB980; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EB984; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803EB988; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803EB98C; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803EB990; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803EB994; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803EB998; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803EB9A0; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EB9A4; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EB9A8; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803EB9AC; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803EB9B0; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803EB9B4; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata2:0x803EB9B8; // type:object size:0x8 scope:local align:8 data:double +@2200 = .sdata2:0x803EB9C0; // type:object size:0x8 scope:local align:8 data:double +@2552 = .sdata2:0x803EB9C8; // type:object size:0x4 scope:local align:4 data:float +@2553 = .sdata2:0x803EB9CC; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803EB9D0; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803EB9D4; // type:object size:0x4 scope:local align:4 data:float +@2959 = .sdata2:0x803EB9D8; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803EB9E0; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803EB9E4; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803EB9E8; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EB9EC; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EB9F0; // type:object size:0x8 scope:local align:8 data:double +@1482 = .sdata2:0x803EB9F8; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803EBA00; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803EBA08; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EBA0C; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EBA10; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EBA14; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EBA18; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EBA1C; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803EBA20; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EBA24; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EBA28; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EBA2C; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803EBA30; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803EBA34; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803EBA38; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803EBA40; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803EBA44; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803EBA48; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803EBA4C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803EBA50; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EBA58; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803EBA60; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803EBA64; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EBA68; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803EBA6C; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803EBA70; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EBA74; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EBA78; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EBA7C; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EBA80; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803EBA84; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EBA88; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EBA8C; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803EBA90; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EBA94; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803EBA98; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803EBA9C; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803EBAA0; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EBAA4; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803EBAA8; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803EBAB0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803EBAB4; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803EBAB8; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata2:0x803EBAC0; // type:object size:0x8 scope:local align:8 data:double +@962 = .sdata2:0x803EBAC8; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803EBACC; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803EBAD0; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803EBAD4; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EBAD8; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata2:0x803EBAE0; // type:object size:0x8 scope:local align:8 data:double +@1546 = .sdata2:0x803EBAE8; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata2:0x803EBAEC; // type:object size:0x4 scope:local align:4 data:float +@1797 = .sdata2:0x803EBAF0; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803EBAF8; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803EBAFC; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803EBB00; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803EBB08; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803EBB10; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803EBB14; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EBB18; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803EBB20; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803EBB24; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803EBB28; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803EBB2C; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803EBB30; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803EBB34; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803EBB38; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803EBB3C; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803EBB40; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803EBB44; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803EBB48; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803EBB4C; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EBB50; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803EBB54; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803EBB58; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803EBB5C; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803EBB60; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803EBB64; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803EBB68; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803EBB6C; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803EBB70; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803EBB74; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EBB78; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803EBB7C; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803EBB80; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803EBB84; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803EBB88; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803EBB8C; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EBB90; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EBB94; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803EBB98; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803EBBA0; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803EBBA8; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803EBBAC; // type:object size:0x4 scope:local align:4 data:float +@3133 = .sdata2:0x803EBBB0; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803EBBB4; // type:object size:0x4 scope:local align:4 data:float +@3136 = .sdata2:0x803EBBB8; // type:object size:0x8 scope:local align:8 data:double +@3730 = .sdata2:0x803EBBC0; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x803EBBC4; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803EBBC8; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803EBBCC; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803EBBD0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x803EBBD4; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803EBBD8; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803EBBDC; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803EBBE0; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803EBBE4; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803EBBE8; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803EBBEC; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EBBF0; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803EBBF4; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EBBF8; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803EBBFC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EBC00; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803EBC04; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803EBC08; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EBC10; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803EBC18; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EBC1C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EBC20; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EBC24; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803EBC28; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803EBC2C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EBC30; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EBC34; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EBC38; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EBC3C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EBC40; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EBC44; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EBC48; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EBC4C; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EBC50; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBC54; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBC58; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EBC5C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBC60; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EBC64; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EBC68; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EBC6C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EBC70; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBC74; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBC78; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBC7C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBC80; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBC84; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBC88; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBC8C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBC90; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBC98; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBC9C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBCA0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBCA4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBCA8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBCAC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBCB0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBCB4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBCB8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBCBC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBCC0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EBCC4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EBCC8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EBCCC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EBCD0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EBCD4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EBCD8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EBCDC; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803EBCE0; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EBCE4; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EBCE8; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EBCEC; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EBCF0; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EBCF4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EBCF8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EBCFC; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EBD00; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803EBD04; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803EBD08; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803EBD0C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EBD10; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803EBD14; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EBD18; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EBD1C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803EBD20; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803EBD24; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803EBD28; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EBD2C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EBD30; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EBD34; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EBD38; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EBD3C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EBD40; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EBD44; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EBD48; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EBD4C; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EBD50; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EBD54; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EBD58; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EBD5C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EBD60; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803EBD64; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803EBD68; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803EBD6C; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803EBD70; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803EBD74; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EBD78; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803EBD7C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803EBD80; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803EBD84; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803EBD88; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803EBD8C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803EBD90; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803EBD94; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803EBD98; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EBD9C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EBDA0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EBDA4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EBDA8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EBDAC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EBDB0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EBDB4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EBDB8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EBDBC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EBDC0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EBDC4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EBDC8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EBDCC; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803EBDD0; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803EBDD8; // type:object size:0x8 scope:local align:8 data:double +@2115 = .sdata2:0x803EBDE0; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803EBDE4; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EBDE8; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EBDEC; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EBDF0; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803EBDF4; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803EBDF8; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803EBDFC; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803EBE00; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803EBE04; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803EBE08; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803EBE0C; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803EBE10; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EBE14; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803EBE18; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803EBE1C; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803EBE20; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803EBE24; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803EBE28; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EBE2C; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EBE30; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803EBE34; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803EBE38; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803EBE3C; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803EBE40; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata2:0x803EBE44; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EBE48; // type:object size:0x4 scope:local align:4 data:float +@3162 = .sdata2:0x803EBE4C; // type:object size:0x4 scope:local align:4 data:float +@3164 = .sdata2:0x803EBE50; // type:object size:0x8 scope:local align:8 data:double +@3471 = .sdata2:0x803EBE58; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x803EBE5C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EBE60; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EBE64; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBE68; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBE6C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EBE70; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBE74; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EBE78; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EBE7C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EBE80; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EBE84; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBE88; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBE8C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBE90; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBE94; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBE98; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBE9C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBEA0; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBEA4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EBEA8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EBEAC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EBEB0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EBEB4; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803EBEB8; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803EBEBC; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EBEC0; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803EBEC8; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803EBED0; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EBED8; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803EBEE0; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803EBEE4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EBEE8; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803EBEEC; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803EBEF0; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803EBEF4; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803EBEF8; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EBEFC; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EBF00; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803EBF04; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EBF08; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EBF0C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EBF10; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803EBF14; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803EBF18; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803EBF1C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803EBF20; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803EBF24; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803EBF28; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EBF2C; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EBF30; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EBF34; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803EBF38; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EBF3C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803EBF40; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803EBF44; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803EBF48; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803EBF4C; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803EBF50; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803EBF54; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803EBF58; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803EBF60; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803EBF68; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803EBF6C; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803EBF70; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803EBF74; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803EBF78; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803EBF7C; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EBF80; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803EBF88; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803EBF8C; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803EBF90; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803EBF94; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803EBF98; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803EBF9C; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803EBFA0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EBFA8; // type:object size:0x8 scope:local align:8 data:double +@881 = .sdata2:0x803EBFB0; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803EBFB8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EBFBC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EBFC0; // type:object size:0x4 scope:local align:4 data:float +@2819 = .sdata2:0x803EBFC4; // type:object size:0x4 scope:local align:4 data:float +@2820 = .sdata2:0x803EBFC8; // type:object size:0x4 scope:local align:4 data:float +@2821 = .sdata2:0x803EBFCC; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803EBFD0; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata2:0x803EBFD8; // type:object size:0x8 scope:local align:8 data:double +@3072 = .sdata2:0x803EBFE0; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803EBFE4; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803EBFE8; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x803EBFEC; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x803EBFF0; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x803EBFF4; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x803EBFF8; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x803EBFFC; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803EC000; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x803EC004; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x803EC008; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803EC00C; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x803EC010; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x803EC018; // type:object size:0x8 scope:local align:8 data:double +@4097 = .sdata2:0x803EC020; // type:object size:0x8 scope:local align:8 data:double +@4098 = .sdata2:0x803EC028; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x803EC02C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803EC030; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803EC034; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x803EC038; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x803EC03C; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803EC040; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata2:0x803EC044; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x803EC048; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x803EC04C; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x803EC050; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x803EC054; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x803EC058; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x803EC05C; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x803EC060; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803EC064; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803EC068; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x803EC06C; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x803EC070; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x803EC074; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x803EC078; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x803EC07C; // type:object size:0x4 scope:local align:4 data:float +@5369 = .sdata2:0x803EC080; // type:object size:0x4 scope:local align:4 data:float +@5606 = .sdata2:0x803EC084; // type:object size:0x4 scope:local align:4 data:float +@6607 = .sdata2:0x803EC088; // type:object size:0x4 scope:local align:4 data:float +@6608 = .sdata2:0x803EC08C; // type:object size:0x4 scope:local align:4 data:float +@6609 = .sdata2:0x803EC090; // type:object size:0x4 scope:local align:4 data:float +@6787 = .sdata2:0x803EC094; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x803EC098; // type:object size:0x4 scope:local align:4 data:float +@820 = .sdata2:0x803EC0A0; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EC0A4; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803EC0A8; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803EC0AC; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EC0B0; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803EC0B4; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EC0B8; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EC0BC; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EC0C0; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803EC0C4; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EC0C8; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803EC0CC; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803EC0D0; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EC0D4; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata2:0x803EC0D8; // type:object size:0x8 scope:local align:8 data:double +@1106 = .sdata2:0x803EC0E0; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803EC0E8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EC0EC; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803EC0F0; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EC0F4; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803EC0F8; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803EC0FC; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EC100; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EC108; // type:object size:0x8 scope:local align:8 data:double +@825 = .sdata2:0x803EC110; // type:object size:0x4 scope:local align:4 data:float +@869 = .sdata2:0x803EC114; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803EC118; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EC11C; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EC120; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EC124; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803EC128; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803EC12C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803EC130; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803EC134; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803EC138; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803EC13C; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803EC140; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803EC144; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803EC148; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EC14C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803EC150; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803EC154; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EC158; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EC15C; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EC160; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803EC164; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803EC168; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803EC16C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EC170; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803EC178; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EC17C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EC180; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EC184; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803EC188; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803EC18C; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803EC190; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803EC194; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EC198; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EC19C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803EC1A0; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803EC1A4; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803EC1A8; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803EC1AC; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803EC1B0; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803EC1B4; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803EC1B8; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803EC1BC; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803EC1C0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EC1C4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EC1C8; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EC1CC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EC1D0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EC1D4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EC1D8; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803EC1DC; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803EC1E0; // type:object size:0x8 scope:local align:8 data:double +@1939 = .sdata2:0x803EC1E8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EC1EC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EC1F0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EC1F4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EC1F8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EC1FC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EC200; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EC204; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EC208; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EC20C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EC210; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EC214; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EC218; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EC21C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EC220; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EC224; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EC228; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EC22C; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EC230; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EC234; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EC238; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EC23C; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EC240; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EC244; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EC248; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EC250; // type:object size:0x8 scope:local align:8 data:double +@2689 = .sdata2:0x803EC258; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803EC25C; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EC260; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803EC264; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803EC268; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803EC26C; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EC270; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EC278; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803EC280; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EC288; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EC290; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EC298; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803EC29C; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EC2A0; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803EC2A4; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803EC2A8; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803EC2AC; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803EC2B0; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803EC2B4; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EC2B8; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803EC2BC; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EC2C0; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803EC2C4; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EC2C8; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803EC2D0; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EC2D4; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803EC2D8; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803EC2DC; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803EC2E0; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EC2E4; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803EC2E8; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EC2EC; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803EC2F0; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803EC2F8; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803EC300; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EC304; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803EC308; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803EC30C; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803EC310; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803EC314; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803EC318; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803EC31C; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata2:0x803EC320; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803EC328; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EC32C; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EC330; // type:object size:0x4 scope:local align:4 data:float +@770 = .sdata2:0x803EC334; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata2:0x803EC338; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EC340; // type:object size:0x8 scope:local align:8 data:double +@890 = .sdata2:0x803EC348; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803EC350; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803EC354; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803EC358; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EC35C; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803EC360; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803EC364; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803EC368; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803EC370; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803EC378; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803EC37C; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803EC380; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803EC384; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EC388; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EC38C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803EC390; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803EC398; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803EC39C; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803EC3A0; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EC3A4; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803EC3A8; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803EC3AC; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803EC3B0; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803EC3B4; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803EC3B8; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EC3BC; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803EC3C0; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803EC3C4; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803EC3C8; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803EC3D0; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803EC3D4; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803EC3D8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EC3DC; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EC3E0; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EC3E4; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803EC3E8; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803EC3EC; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803EC3F0; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803EC3F8; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803EC400; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803EC404; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803EC408; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803EC40C; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803EC410; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803EC418; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803EC41C; // type:object size:0x4 scope:local align:4 data:float +@203 = .sdata2:0x803EC420; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x803EC424; // type:object size:0x4 scope:local align:4 data:float +@207 = .sdata2:0x803EC428; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803EC430; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803EC434; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803EC438; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803EC43C; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803EC440; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803EC444; // type:object size:0x4 scope:local align:4 data:float +@111 = .sdata2:0x803EC448; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803EC450; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x803EC458; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803EC460; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803EC464; // type:object size:0x4 scope:local align:4 data:float +@114 = .sdata2:0x803EC468; // type:object size:0x8 scope:local align:8 data:double +@15 = .sdata2:0x803EC470; // type:object size:0x4 scope:local align:4 data:4byte +@16 = .sdata2:0x803EC474; // type:object size:0x4 scope:local align:4 data:4byte +@17 = .sdata2:0x803EC478; // type:object size:0x4 scope:local align:4 data:4byte +@158 = .sdata2:0x803EC47C; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC480; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x803EC484; // type:object size:0x4 scope:local align:4 data:float +@162 = .sdata2:0x803EC488; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x803EC490; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EC498; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EC4A0; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803EC4A4; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803EC4A8; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803EC4B0; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803EC4B8; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC4C0; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x803EC4C8; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803EC4D0; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803EC4D4; // type:object size:0x4 scope:local align:4 data:float +@189 = .sdata2:0x803EC4D8; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803EC4DC; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803EC4E0; // type:object size:0x4 scope:local align:4 data:float +@192 = .sdata2:0x803EC4E4; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803EC4E8; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803EC4EC; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803EC4F0; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803EC4F8; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803EC500; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803EC508; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803EC510; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803EC518; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803EC51C; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EC520; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803EC528; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803EC530; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803EC538; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803EC540; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803EC548; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803EC550; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803EC558; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803EC560; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803EC568; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803EC570; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803EC578; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803EC580; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803EC588; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803EC590; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803EC598; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803EC5A0; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803EC5A8; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803EC5B0; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803EC5B8; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803EC5C0; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803EC5C8; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803EC5D0; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803EC5D8; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803EC5E0; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803EC5E8; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803EC5F0; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803EC5F8; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803EC600; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803EC608; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803EC610; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803EC618; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803EC620; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803EC628; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803EC630; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803EC638; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803EC640; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803EC648; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803EC650; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803EC658; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803EC660; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803EC668; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803EC670; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803EC678; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803EC680; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803EC688; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803EC690; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803EC698; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803EC6A0; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803EC6A8; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803EC6B0; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803EC6B8; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803EC6C0; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803EC6C8; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803EC6D0; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803EC6D8; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803EC6E0; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803EC6E8; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803EC6F0; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803EC6F8; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803EC700; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803EC708; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803EC710; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803EC718; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803EC720; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803EC728; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803EC730; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803EC734; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803EC738; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC73C; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803EC740; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803EC744; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803EC748; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803EC74C; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803EC750; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803EC754; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803EC758; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803EC760; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803EC768; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803EC770; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803EC778; // type:object size:0x8 scope:local align:8 data:double diff --git a/config/GPIE01_01/build.sha1 b/config/GPIE01_01/build.sha1 new file mode 100644 index 00000000..67af1b19 --- /dev/null +++ b/config/GPIE01_01/build.sha1 @@ -0,0 +1 @@ +02204260b7efe8742d34572e58ba3dfecd92e4e9 build/GPIE01_01/main.dol diff --git a/config/GPIE01_01/config.yml b/config/GPIE01_01/config.yml new file mode 100644 index 00000000..0f31d55f --- /dev/null +++ b/config/GPIE01_01/config.yml @@ -0,0 +1,10 @@ +object: orig/GPIE01_01/sys/main.dol +hash: 02204260b7efe8742d34572e58ba3dfecd92e4e9 + +# Generated from dataDir/build.map +symbols: config/GPIE01_01/symbols.txt +splits: config/GPIE01_01/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPIE01_01/splits.txt b/config/GPIE01_01/splits.txt new file mode 100644 index 00000000..f9ffc7ba --- /dev/null +++ b/config/GPIE01_01/splits.txt @@ -0,0 +1,3110 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:4 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:8 + .bss type:bss align:32 + .sdata type:data align:32 + .sbss type:bss align:8 + .sdata2 type:rodata align:32 + +sysBootup.cpp: + .text start:0x80005560 end:0x80005600 + .data start:0x80222DC0 end:0x80222DE0 + +jaudio/dummyprobe.c: + .text start:0x80005600 end:0x80005640 + +jaudio/memory.c: + .text start:0x80005640 end:0x80005720 + +jaudio/aictrl.c: + .text start:0x80005720 end:0x80005F00 + .rodata start:0x80221FE0 end:0x80221FF8 + .bss start:0x802E9640 end:0x802E9660 + .sbss start:0x803E7820 end:0x803E7850 + .sdata2 start:0x803E8200 end:0x803E8210 + +jaudio/sample.c: + .text start:0x80005F00 end:0x800061A0 + +jaudio/dummyrom.c: + .text start:0x800061A0 end:0x800062C0 + .bss start:0x803D6298 end:0x803D62C0 align:4 common + .sbss start:0x803E7850 end:0x803E7860 + +jaudio/audiothread.c: + .text start:0x800062C0 end:0x800067E0 + .rodata start:0x80221FF8 end:0x80222008 + .bss start:0x802E9660 end:0x802E96C0 + .bss start:0x803D62C0 end:0x803DAF20 align:4 common + .sbss start:0x803E7860 end:0x803E7880 + .sdata2 start:0x803E8210 end:0x803E8218 + +jaudio/streamctrl.c: + .text start:0x800067E0 end:0x80006B80 + .data start:0x80222DE0 end:0x80222EB0 + .bss start:0x802E96C0 end:0x802E9730 + .sdata2 start:0x803E8218 end:0x803E8228 + +jaudio/dspbuf.c: + .text start:0x80006B80 end:0x80006EE0 + .rodata start:0x80222008 end:0x80222020 + .bss start:0x802E9730 end:0x802E9740 + .sbss start:0x803E7880 end:0x803E7890 + +jaudio/cpubuf.c: + .text start:0x80006EE0 end:0x80007120 + .bss start:0x802E9740 end:0x802E9750 + .sbss start:0x803E7890 end:0x803E7898 + +jaudio/playercall.c: + .text start:0x80007120 end:0x800073E0 + .bss start:0x802E9750 end:0x802E9810 + +jaudio/dvdthread.c: + .text start:0x800073E0 end:0x80008160 + .data start:0x80222EB0 end:0x80222EE0 + .bss start:0x802E9810 end:0x802F24E0 + .sbss start:0x803E7898 end:0x803E78E0 + +jaudio/rate.c: + .sdata start:0x803DCD20 end:0x803DCD30 + .sbss start:0x803E78E0 end:0x803E78E8 + +jaudio/audiomesg.c: + .text start:0x80008160 end:0x800082C0 + +jaudio/stackchecker.c: + .text start:0x800082C0 end:0x80008300 + +jaudio/dspboot.c: + .text start:0x80008300 end:0x800086C0 + .rodata start:0x80222020 end:0x80222040 + .data start:0x80222EE0 end:0x802248E0 + .sdata2 start:0x803E8228 end:0x803E8230 + +jaudio/dspproc.c: + .text start:0x800086C0 end:0x80008A00 + .rodata start:0x80222040 end:0x802220C8 + .sdata start:0x803DCD30 end:0x803DCD38 + .sdata2 start:0x803E8230 end:0x803E8238 + +jaudio/ipldec.c: + .text start:0x80008A00 end:0x80008BE0 + .bss start:0x803DAF20 end:0x803DAF60 align:4 common + .sbss start:0x803E78E8 end:0x803E78F0 + +jaudio/dsp_cardunlock.c: + .text start:0x80008BE0 end:0x80009400 + .rodata start:0x802220C8 end:0x80222108 + +jaudio/driverinterface.c: + .text start:0x80009400 end:0x8000AD00 + .data start:0x802248E0 end:0x80224978 + .bss start:0x802F24E0 end:0x80306660 + .sdata start:0x803DCD38 end:0x803DCD40 + .sbss start:0x803E78F0 end:0x803E7900 + .sdata2 start:0x803E8238 end:0x803E8258 + +jaudio/dspdriver.c: + .text start:0x8000AD00 end:0x8000B560 + .data start:0x80224978 end:0x802249A0 + .bss start:0x80306660 end:0x80306A60 + .sbss start:0x803E7900 end:0x803E7908 + .sdata2 start:0x803E8258 end:0x803E8268 + +jaudio/dspinterface.c: + .text start:0x8000B560 end:0x8000BCC0 + .data start:0x802249A0 end:0x80224E00 + .bss start:0x80306A60 end:0x8030CAE0 + .sdata start:0x803DCD40 end:0x803DCD50 + +jaudio/fxinterface.c: + .text start:0x8000BCC0 end:0x8000BE00 + .data start:0x80224E00 end:0x80224E18 + +jaudio/tables.c: + .data start:0x80224E18 end:0x80225018 + +jaudio/bankread.c: + .text start:0x8000BE00 end:0x8000C200 + .bss start:0x8030CAE0 end:0x8030CEE0 + +jaudio/waveread.c: + .text start:0x8000C200 end:0x8000C860 + .bss start:0x8030CEE0 end:0x8030D6E0 + .bss start:0x803DAF60 end:0x803DAFA0 align:4 common + +jaudio/connect.c: + .text start:0x8000C860 end:0x8000CFC0 + .bss start:0x8030D6E0 end:0x8030DAE0 + +jaudio/bankdrv.c: + .text start:0x8000CFC0 end:0x8000D740 + .data start:0x80225018 end:0x80225028 + .sdata2 start:0x803E8268 end:0x803E8290 + +jaudio/random.c: + .text start:0x8000D740 end:0x8000D8A0 + .sdata start:0x803DCD50 end:0x803DCD58 + .sdata2 start:0x803E8290 end:0x803E82A0 + +jaudio/aramcall.c: + .text start:0x8000D8A0 end:0x8000DC20 + .data start:0x80225028 end:0x80225068 + .bss start:0x803DAFA0 end:0x803DAFCC align:4 common + .sdata start:0x803DCD58 end:0x803DCD60 + .sbss start:0x803E7908 end:0x803E7910 + +jaudio/ja_calc.c: + .text start:0x8000DC20 end:0x8000DDE0 + .bss start:0x8030DAE0 end:0x8030DEE8 + .sdata2 start:0x803E82A0 end:0x803E82D0 + +jaudio/fat.c: + .text start:0x8000DDE0 end:0x8000E300 + .bss start:0x8030DEE8 end:0x8030F2E8 + .sbss start:0x803E7910 end:0x803E7920 + +jaudio/cmdstack.c: + .text start:0x8000E300 end:0x8000E580 + .sbss start:0x803E7920 end:0x803E7930 + +jaudio/virload.c: + .text start:0x8000E580 end:0x8000E9C0 + .bss start:0x8030F2E8 end:0x8030F980 + .sbss start:0x803E7930 end:0x803E7940 + .sdata2 start:0x803E82D0 end:0x803E82D8 + +jaudio/heapctrl.c: + .text start:0x8000E9C0 end:0x8000F400 + .rodata start:0x80222108 end:0x80222118 + .bss start:0x8030F980 end:0x8031F980 + .sbss start:0x803E7940 end:0x803E7948 + +jaudio/jammain_2.c: + .text start:0x8000F400 end:0x80013840 + .data start:0x80225068 end:0x80225328 + .bss start:0x8031F980 end:0x8031FAA0 + .sdata start:0x803DCD60 end:0x803DCD68 + .sbss start:0x803E7948 end:0x803E7958 + .sdata2 start:0x803E82D8 end:0x803E8320 + +jaudio/midplay.c: + .data start:0x80225328 end:0x80225728 + +jaudio/noteon.c: + .text start:0x80013840 end:0x80013DA0 + .sdata2 start:0x803E8320 end:0x803E8328 + +jaudio/seqsetup.c: + .text start:0x80013DA0 end:0x80014BC0 + .bss start:0x8031FAA0 end:0x803636E0 + .sbss start:0x803E7958 end:0x803E7968 + .sdata2 start:0x803E8328 end:0x803E8338 + +jaudio/centcalc.c: + .text start:0x80014BC0 end:0x80014CA0 + .data start:0x80225728 end:0x80225828 + .sdata2 start:0x803E8338 end:0x803E8350 + +jaudio/jamosc.c: + .text start:0x80014CA0 end:0x80015140 + .data start:0x80225828 end:0x80225910 + .sdata2 start:0x803E8350 end:0x803E8358 + +jaudio/oneshot.c: + .text start:0x80015140 end:0x80016900 + .data start:0x80225910 end:0x80225950 + .sdata start:0x803DCD68 end:0x803DCD70 + .sdata2 start:0x803E8358 end:0x803E8388 + +jaudio/interface.c: + .text start:0x80016900 end:0x80016A60 + .bss start:0x803636E0 end:0x803636F0 + .sdata start:0x803DCD70 end:0x803DCD78 + .sbss start:0x803E7968 end:0x803E7970 + +jaudio/verysimple.c: + .text start:0x80016A60 end:0x80017460 + .rodata start:0x80222118 end:0x80222278 + .data start:0x80225950 end:0x80225A68 + .bss start:0x803636F0 end:0x803637C8 + .sbss start:0x803E7970 end:0x803E7998 + .sdata2 start:0x803E8388 end:0x803E8398 + +jaudio/app_inter.c: + .text start:0x80017460 end:0x800175E0 + .sbss start:0x803E7998 end:0x803E79A0 + +jaudio/pikiinter.c: + .text start:0x800175E0 end:0x80018120 + .data start:0x80225A68 end:0x80226130 + .bss start:0x803DAFCC end:0x803DCB30 align:4 common + .sbss start:0x803E79A0 end:0x803E79B0 + .sdata2 start:0x803E8398 end:0x803E83B8 + +jaudio/piki_player.c: + .text start:0x80018120 end:0x80018980 + .bss start:0x803637C8 end:0x803638E0 + .sbss start:0x803E79B0 end:0x803E7A18 + .sdata2 start:0x803E83B8 end:0x803E83D0 + +jaudio/piki_bgm.c: + .text start:0x80018980 end:0x80019760 + .rodata start:0x80222278 end:0x802222A0 + .data start:0x80226130 end:0x80226248 + .bss start:0x803638E0 end:0x80364618 + .sdata start:0x803DCD78 end:0x803DCE00 + .sbss start:0x803E7A18 end:0x803E7A28 + .sdata2 start:0x803E83D0 end:0x803E83E0 + +jaudio/piki_scene.c: + .text start:0x80019760 end:0x8001A0E0 + .data start:0x80226248 end:0x802264B0 + .sdata start:0x803DCE00 end:0x803DCE10 + .sbss start:0x803E7A28 end:0x803E7A50 + .sdata2 start:0x803E83E0 end:0x803E83E8 + +jaudio/pikidemo.c: + .text start:0x8001A0E0 end:0x8001B3E0 + .data start:0x802264B0 end:0x80226F70 + .bss start:0x80364618 end:0x80364688 + .sdata start:0x803DCE10 end:0x803DCE48 + .sbss start:0x803E7A50 end:0x803E7A78 + .sdata2 start:0x803E83E8 end:0x803E8400 + +jaudio/file_seq.c: + .text start:0x8001B3E0 end:0x8001B960 + .bss start:0x80364688 end:0x80368EA0 + .sdata start:0x803DCE48 end:0x803DCE50 + .sbss start:0x803E7A78 end:0x803E7A80 + +jaudio/cmdqueue.c: + .text start:0x8001B960 end:0x8001BB60 + +jaudio/filter3d.c: + .text start:0x8001BB60 end:0x8001BBE0 + .sdata2 start:0x803E8400 end:0x803E8408 + +jaudio/syncstream.c: + .text start:0x8001BBE0 end:0x8001D9A0 + .data start:0x80226F70 end:0x80226FE0 + .bss start:0x80368EA0 end:0x8038A908 + .sdata start:0x803DCE50 end:0x803DCE58 + .sbss start:0x803E7A80 end:0x803E7A88 + .sdata2 start:0x803E8408 end:0x803E8420 + +jaudio/pikiseq.c: + .data start:0x80226FE0 end:0x802272C0 + +jaudio/bankloader.c: + .text start:0x8001D9A0 end:0x8001DA80 + +jaudio/interleave.c: + .text start:0x8001DA80 end:0x8001DC80 + .bss start:0x8038A908 end:0x8038A940 + .sdata start:0x803DCE58 end:0x803DCE60 + +jaudio/hvqm_play.c: + .text start:0x8001DC80 end:0x8001EC3C + .bss start:0x8038A940 end:0x8038BD00 + .bss start:0x803DCB30 end:0x803DCD10 align:4 common + .sdata start:0x803DCE60 end:0x803DCE70 + .sbss start:0x803E7A88 end:0x803E7AE0 + .sdata2 start:0x803E8420 end:0x803E8428 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001EC3C end:0x800246E4 + .rodata start:0x802222A0 end:0x802222B8 + .data start:0x802272C0 end:0x802272D0 + .bss start:0x8038BD00 end:0x8038C740 + .sbss start:0x803E7AE0 end:0x803E7AE8 + +sysCommon/ayuStack.cpp: + .text start:0x800246E4 end:0x80024DFC + +sysCommon/baseApp.cpp: + .text start:0x80024DFC end:0x800250B0 + .data start:0x802272D0 end:0x80227398 + .sdata start:0x803DCE70 end:0x803DCEB0 + +sysCommon/stream.cpp: + .text start:0x800250B0 end:0x80025500 + .data start:0x80227398 end:0x802273F0 + .sdata start:0x803DCEB0 end:0x803DCEC0 + +sysCommon/streamBufferedInput.cpp: + .text start:0x80025500 end:0x800258F0 + .data start:0x802273F0 end:0x80227540 + .sdata start:0x803DCEC0 end:0x803DCEE0 + +sysCommon/string.cpp: + .text start:0x800258F0 end:0x80025914 + +sysCommon/graphics.cpp: + .text start:0x80025914 end:0x80029A48 + .data start:0x80227540 end:0x802282A0 + .sdata start:0x803DCEE0 end:0x803DCFE0 + .sdata2 start:0x803E8428 end:0x803E8490 + +sysCommon/grLight.cpp: + .text start:0x80029A48 end:0x80029F98 + .data start:0x802282A0 end:0x80228320 + .sdata start:0x803DCFE0 end:0x803DD038 + .sdata2 start:0x803E8490 end:0x803E84E0 + +sysCommon/shapeBase.cpp: + .text start:0x80029F98 end:0x80035B38 + .ctors start:0x80221F64 end:0x80221F68 + .rodata start:0x802222B8 end:0x80222318 + .data start:0x80228320 end:0x802289D8 + .bss start:0x8038C740 end:0x80390840 + .sdata start:0x803DD038 end:0x803DD1D8 + .sbss start:0x803E7AE8 end:0x803E7AF8 + .sdata2 start:0x803E84E0 end:0x803E8550 + +sysCommon/shpLightFlares.cpp: + .text start:0x80035B38 end:0x80036124 + .data start:0x802289D8 end:0x802289F0 + .sdata start:0x803DD1D8 end:0x803DD220 + .sdata2 start:0x803E8550 end:0x803E8570 + +sysCommon/shpObjColl.cpp: + .text start:0x80036124 end:0x80036474 + .data start:0x802289F0 end:0x80228A00 + .sdata start:0x803DD220 end:0x803DD258 + .sdata2 start:0x803E8570 end:0x803E8578 + +sysCommon/shpRoutes.cpp: + .text start:0x80036474 end:0x8003756C + .data start:0x80228A00 end:0x80228BF0 + .sdata start:0x803DD258 end:0x803DD2F8 + .sdata2 start:0x803E8578 end:0x803E85A0 + +sysCommon/sysMath.cpp: + .text start:0x8003756C end:0x8003DDBC + .sdata start:0x803DD2F8 end:0x803DD310 + .sdata2 start:0x803E85A0 end:0x803E85E0 + +sysCommon/matMath.cpp: + .text start:0x8003DDBC end:0x8003EE34 + .ctors start:0x80221F68 end:0x80221F6C + .bss start:0x80390840 end:0x80398880 + .sdata start:0x803DD310 end:0x803DD318 + .sdata2 start:0x803E85E0 end:0x803E85F0 + +sysCommon/stdSystem.cpp: + .text start:0x8003EE34 end:0x800405D8 + .data start:0x80228BF0 end:0x80228D80 + .sdata start:0x803DD318 end:0x803DD380 + .sdata2 start:0x803E85F0 end:0x803E85F8 + +sysCommon/node.cpp: + .text start:0x800405D8 end:0x80040984 + .data start:0x80228D80 end:0x80228E50 + .sdata start:0x803DD380 end:0x803DD3C0 + .sbss start:0x803E7AF8 end:0x803E7B00 + +sysCommon/timers.cpp: + .text start:0x80040984 end:0x800409B0 + +sysCommon/controller.cpp: + .text start:0x800409B0 end:0x80040B7C + .data start:0x80228E50 end:0x80228EE8 + .sdata start:0x803DD3C0 end:0x803DD3F0 + .sdata2 start:0x803E85F8 end:0x803E8608 + +sysCommon/cmdStream.cpp: + .text start:0x80040B7C end:0x80041584 + .sbss start:0x803E7B00 end:0x803E7B08 + +sysCommon/camera.cpp: + .text start:0x80041584 end:0x800438EC + .data start:0x80228EE8 end:0x80228F00 + .sdata start:0x803DD3F0 end:0x803DD470 + .sdata2 start:0x803E8608 end:0x803E8660 + +sysCommon/atx.cpp: + .text start:0x800438EC end:0x80043E5C + .data start:0x80228F00 end:0x80229020 + .sdata start:0x803DD470 end:0x803DD498 + +sysCommon/id32.cpp: + .text start:0x80043E5C end:0x80044194 + +sysDolphin/texture.cpp: + .text start:0x80044194 end:0x800447DC + .data start:0x80229020 end:0x802290C0 + .sdata start:0x803DD498 end:0x803DD4D0 + .sdata2 start:0x803E8660 end:0x803E8678 + +sysDolphin/system.cpp: + .text start:0x800447DC end:0x80047004 + .ctors start:0x80221F6C end:0x80221F70 + .data start:0x802290C0 end:0x802A56A8 + .bss start:0x80398880 end:0x8039D400 + .sdata start:0x803DD4D0 end:0x803DD5A8 + .sbss start:0x803E7B08 end:0x803E7B30 + .sdata2 start:0x803E8678 end:0x803E8698 + +sysDolphin/sysNew.cpp: + .text start:0x80047004 end:0x800471B4 + +sysDolphin/controllerMgr.cpp: + .text start:0x800471B4 end:0x800474B8 + .data start:0x802A56A8 end:0x802A56E8 + .bss start:0x8039D400 end:0x8039D430 + .sdata start:0x803DD5A8 end:0x803DD5B0 + +sysDolphin/dgxGraphics.cpp: + .text start:0x800474B8 end:0x8004C908 + .ctors start:0x80221F70 end:0x80221F74 + .data start:0x802A56E8 end:0x802A5EB0 + .bss start:0x8039D430 end:0x8039D438 + .sdata start:0x803DD5B0 end:0x803DD638 + .sbss start:0x803E7B30 end:0x803E7B60 + .sdata2 start:0x803E8698 end:0x803E86C8 + +sysDolphin/gameApp.cpp: + .text start:0x8004C908 end:0x8004C93C + +plugPikiColin/cardutil.cpp: + .text start:0x8004C93C end:0x8004DC00 + .data start:0x802A5EB0 end:0x802A5ED8 + .bss start:0x8039D438 end:0x8039D7B8 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004DC00 end:0x80050024 + .rodata start:0x80222318 end:0x80222378 + .data start:0x802A5ED8 end:0x802A5FC0 + .sdata start:0x803DD638 end:0x803DD6F0 + .sdata2 start:0x803E86C8 end:0x803E86E0 + +plugPikiColin/animMgr.cpp: + .text start:0x80050024 end:0x80051478 + .data start:0x802A5FC0 end:0x802A6128 + .sdata start:0x803DD6F0 end:0x803DD770 + .sdata2 start:0x803E86E0 end:0x803E86F8 + +plugPikiColin/gameflow.cpp: + .text start:0x80051478 end:0x8005315C + .ctors start:0x80221F74 end:0x80221F78 + .data start:0x802A6128 end:0x802A66D0 + .bss start:0x8039D7B8 end:0x8039DB20 + .sdata start:0x803DD770 end:0x803DD898 + .sbss start:0x803E7B60 end:0x803E7B68 + .sdata2 start:0x803E86F8 end:0x803E8750 + +plugPikiColin/game.cpp: + .text start:0x8005315C end:0x80053C5C + .ctors start:0x80221F78 end:0x80221F7C + .data start:0x802A66D0 end:0x802A6918 + .bss start:0x8039DB20 end:0x8039DD80 + .sdata start:0x803DD898 end:0x803DD930 + .sdata2 start:0x803E8750 end:0x803E8758 + +plugPikiColin/gamePrefs.cpp: + .text start:0x80053C5C end:0x80054B34 + .data start:0x802A6918 end:0x802A69A8 + .sdata start:0x803DD930 end:0x803DD958 + +plugPikiColin/gameSetup.cpp: + .text start:0x80054B34 end:0x8005503C + .data start:0x802A69A8 end:0x802A7660 + .sdata start:0x803DD958 end:0x803DD9D0 + +plugPikiColin/cardSelect.cpp: + .text start:0x8005503C end:0x8005570C + .data start:0x802A7660 end:0x802A7820 + .sdata start:0x803DD9D0 end:0x803DDA28 + .sbss start:0x803E7B68 end:0x803E7B70 + .sdata2 start:0x803E8758 end:0x803E8768 + +plugPikiColin/mapSelect.cpp: + .text start:0x8005570C end:0x80056B00 + .data start:0x802A7820 end:0x802A7AE0 + .sdata start:0x803DDA28 end:0x803DDAA0 + .sbss start:0x803E7B70 end:0x803E7B78 + .sdata2 start:0x803E8768 end:0x803E8778 + +plugPikiColin/newPikiGame.cpp: + .text start:0x80056B00 end:0x8005AE1C + .rodata start:0x80222378 end:0x802223A0 + .data start:0x802A7AE0 end:0x802A7F68 + .bss start:0x8039DD80 end:0x8039DDC0 + .sdata start:0x803DDAA0 end:0x803DDC08 + .sbss start:0x803E7B78 end:0x803E7BB0 + .sdata2 start:0x803E8778 end:0x803E87E0 + +plugPikiColin/introGame.cpp: + .text start:0x8005AE1C end:0x8005B690 + .data start:0x802A7F68 end:0x802A81C0 + .sdata start:0x803DDC08 end:0x803DDCC0 + .sbss start:0x803E7BB0 end:0x803E7BB8 + .sdata2 start:0x803E87E0 end:0x803E8800 + +plugPikiColin/gameExit.cpp: + .text start:0x8005B690 end:0x8005B780 + .data start:0x802A81C0 end:0x802A82E0 + .sdata start:0x803DDCC0 end:0x803DDD10 + +plugPikiColin/gauges.cpp: + .text start:0x8005B780 end:0x8005D0E8 + .ctors start:0x80221F7C end:0x80221F80 + .data start:0x802A82E0 end:0x802A82F8 + .sdata start:0x803DDD10 end:0x803DDD60 + .sbss start:0x803E7BB8 end:0x803E7BD0 + .sdata2 start:0x803E8800 end:0x803E8880 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005D0E8 end:0x8005D6F8 + .data start:0x802A82F8 end:0x802A8540 + .sdata start:0x803DDD60 end:0x803DDDE0 + .sbss start:0x803E7BD0 end:0x803E7BD8 + .sdata2 start:0x803E8880 end:0x803E8890 + +plugPikiColin/gui.cpp: + .text start:0x8005D6F8 end:0x8005EA80 + .data start:0x802A8540 end:0x802A8680 + .sdata start:0x803DDDE0 end:0x803DDE30 + .sdata2 start:0x803E8890 end:0x803E88C0 + +plugPikiColin/parameters.cpp: + .text start:0x8005EA80 end:0x8005EDF0 + .data start:0x802A8680 end:0x802A86B0 + .sdata start:0x803DDE30 end:0x803DDE38 + +plugPikiColin/plugPiki.cpp: + .text start:0x8005EDF0 end:0x8005F804 + .data start:0x802A86B0 end:0x802A8920 + .sdata start:0x803DDE38 end:0x803DDEC8 + .sdata2 start:0x803E88C0 end:0x803E88D0 + +plugPikiColin/titles.cpp: + .text start:0x8005F804 end:0x80061250 + .data start:0x802A8920 end:0x802A8BF8 + .sdata start:0x803DDEC8 end:0x803DDFB8 + .sbss start:0x803E7BD8 end:0x803E7C18 + .sdata2 start:0x803E88D0 end:0x803E8938 + +plugPikiColin/ninLogo.cpp: + .text start:0x80061250 end:0x800617C0 + .data start:0x802A8BF8 end:0x802A8D68 + .sdata start:0x803DDFB8 end:0x803DE008 + .sbss start:0x803E7C18 end:0x803E7C20 + .sdata2 start:0x803E8938 end:0x803E8950 + +plugPikiColin/mapMgr.cpp: + .text start:0x800617C0 end:0x800697FC + .ctors start:0x80221F80 end:0x80221F84 + .data start:0x802A8D68 end:0x802A9480 + .bss start:0x8039DDC0 end:0x8039DDD8 + .sdata start:0x803DE008 end:0x803DE248 + .sbss start:0x803E7C20 end:0x803E7C38 + .sdata2 start:0x803E8950 end:0x803E89F8 + +plugPikiColin/dayMgr.cpp: + .text start:0x800697FC end:0x8006FA1C + .data start:0x802A9480 end:0x802A9D00 + .sdata start:0x803DE248 end:0x803DE4D8 + .sdata2 start:0x803E89F8 end:0x803E8A50 + +plugPikiColin/cinePlayer.cpp: + .text start:0x8006FA1C end:0x80073164 + .data start:0x802A9D00 end:0x802A9F60 + .bss start:0x8039DDD8 end:0x8039E1E0 + .sdata start:0x803DE4D8 end:0x803DE770 + .sdata2 start:0x803E8A50 end:0x803E8A78 + +plugPikiColin/lightPool.cpp: + .text start:0x80073164 end:0x800738C8 + .data start:0x802A9F60 end:0x802AA020 + .sdata start:0x803DE770 end:0x803DE7D0 + .sdata2 start:0x803E8A78 end:0x803E8AA8 + +plugPikiColin/memoryCard.cpp: + .text start:0x800738C8 end:0x80076E34 + .data start:0x802AA020 end:0x802ABD08 + .bss start:0x8039E1E0 end:0x803D0260 + .sdata start:0x803DE7D0 end:0x803DE820 + +plugPikiColin/moviePlayer.cpp: + .text start:0x80076E34 end:0x80077EF0 + .data start:0x802ABD08 end:0x802AC8D8 + .sdata start:0x803DE820 end:0x803DE860 + .sdata2 start:0x803E8AA8 end:0x803E8AC8 + +plugPikiColin/movSample.cpp: + .text start:0x80077EF0 end:0x80078DB0 + .data start:0x802AC8D8 end:0x802ACB08 + .bss start:0x803D0260 end:0x803D15B0 + .sdata start:0x803DE860 end:0x803DE8B0 + .sbss start:0x803E7C38 end:0x803E7C40 + .sdata2 start:0x803E8AC8 end:0x803E8AF0 + +plugPikiKando/omake.cpp: + .text start:0x80078DB0 end:0x8007B564 + .data start:0x802ACB08 end:0x802ACC08 + .sdata start:0x803DE8B0 end:0x803DE8F0 + .sbss start:0x803E7C40 end:0x803E7C48 + .sdata2 start:0x803E8AF0 end:0x803E8B48 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007B564 end:0x8007B7C8 + .data start:0x802ACC08 end:0x802ACC98 + .sdata start:0x803DE8F0 end:0x803DE930 + .sbss start:0x803E7C48 end:0x803E7C50 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007B7C8 end:0x8007C89C + .data start:0x802ACC98 end:0x802AD140 + .sdata start:0x803DE930 end:0x803DE9C8 + .sdata2 start:0x803E8B48 end:0x803E8B58 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007C89C end:0x8007C9F8 + .data start:0x802AD140 end:0x802AD200 + .sdata start:0x803DE9C8 end:0x803DE9F8 + .sdata2 start:0x803E8B58 end:0x803E8B60 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007C9F8 end:0x8007CB38 + .data start:0x802AD200 end:0x802AD2B8 + .sdata start:0x803DE9F8 end:0x803DEA10 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007CB38 end:0x8007CDFC + .data start:0x802AD2B8 end:0x802AD330 + .sdata start:0x803DEA10 end:0x803DEA30 + .sdata2 start:0x803E8B60 end:0x803E8B70 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007CDFC end:0x8007D26C + .data start:0x802AD330 end:0x802AD718 + .sdata start:0x803DEA30 end:0x803DEA80 + .sbss start:0x803E7C50 end:0x803E7C70 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007D26C end:0x8007DF5C + .data start:0x802AD718 end:0x802ADBA0 + .sdata start:0x803DEA80 end:0x803DEB18 + .sdata2 start:0x803E8B70 end:0x803E8B88 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007DF5C end:0x8007F2B4 + .data start:0x802ADBA0 end:0x802ADCD8 + .sdata start:0x803DEB18 end:0x803DEBD8 + .sdata2 start:0x803E8B88 end:0x803E8BE0 + +plugPikiKando/globalShapes.cpp: + .text start:0x8007F2B4 end:0x8007F3B8 + .data start:0x802ADCD8 end:0x802ADD78 + .sbss start:0x803E7C70 end:0x803E7C88 + +plugPikiKando/playerState.cpp: + .text start:0x8007F3B8 end:0x80081C10 + .rodata start:0x802223A0 end:0x802223D0 + .data start:0x802ADD78 end:0x802ADE20 + .sdata start:0x803DEBD8 end:0x803DEC60 + .sbss start:0x803E7C88 end:0x803E7C90 + .sdata2 start:0x803E8BE0 end:0x803E8BE8 + +plugPikiKando/gameDemo.cpp: + .text start:0x80081C10 end:0x80082818 + .data start:0x802ADE20 end:0x802AE1A0 + .sdata start:0x803DEC60 end:0x803DECD8 + .sbss start:0x803E7C90 end:0x803E7C98 + .sdata2 start:0x803E8BE8 end:0x803E8C08 + +plugPikiKando/demoInvoker.cpp: + .text start:0x80082818 end:0x8008313C + .sdata2 start:0x803E8C08 end:0x803E8C20 + +plugPikiKando/demoEvent.cpp: + .text start:0x8008313C end:0x8008358C + .data start:0x802AE1A0 end:0x802AE1E0 + .sbss start:0x803E7C98 end:0x803E7CA0 + +plugPikiKando/resultFlag.cpp: + .text start:0x8008358C end:0x80083E60 + .rodata start:0x802223D0 end:0x802223E0 + .data start:0x802AE1E0 end:0x802AE6C0 + .sdata start:0x803DECD8 end:0x803DECE8 + +plugPikiKando/aiConstants.cpp: + .text start:0x80083E60 end:0x80084340 + .data start:0x802AE6C0 end:0x802AE7E0 + .sdata start:0x803DECE8 end:0x803DED90 + .sbss start:0x803E7CA0 end:0x803E7CA8 + .sdata2 start:0x803E8C20 end:0x803E8C30 + +plugPikiKando/kio.cpp: + .text start:0x80084340 end:0x800846C0 + .sdata start:0x803DED90 end:0x803DEDA0 + .sbss start:0x803E7CA8 end:0x803E7CB8 + +plugPikiKando/keyConfig.cpp: + .text start:0x800846C0 end:0x800849E8 + .data start:0x802AE7E0 end:0x802AE920 + .sdata start:0x803DEDA0 end:0x803DEE08 + .sbss start:0x803E7CB8 end:0x803E7CC0 + +plugPikiKando/aiPerf.cpp: + .text start:0x800849E8 end:0x800864A8 + .rodata start:0x802223E0 end:0x802223F8 + .data start:0x802AE920 end:0x802AEE38 + .sdata start:0x803DEE08 end:0x803DEE50 + .sbss start:0x803E7CC0 end:0x803E7CF8 + .sdata2 start:0x803E8C30 end:0x803E8C40 + +plugPikiKando/courseDebug.cpp: + .text start:0x800864A8 end:0x80086690 + .data start:0x802AEE38 end:0x802AEF48 + .sdata start:0x803DEE50 end:0x803DEE90 + .sbss start:0x803E7CF8 end:0x803E7D08 + +plugPikiKando/memStat.cpp: + .text start:0x80086690 end:0x80086CC4 + .data start:0x802AEF48 end:0x802AEFF0 + .sdata start:0x803DEE90 end:0x803DEEC8 + .sbss start:0x803E7D08 end:0x803E7D10 + +plugPikiKando/collInfo.cpp: + .text start:0x80086CC4 end:0x8008A02C + .ctors start:0x80221F84 end:0x80221F88 + .data start:0x802AEFF0 end:0x802AF070 + .bss start:0x803D15B0 end:0x803D15F0 + .sdata start:0x803DEEC8 end:0x803DEED8 + .sdata2 start:0x803E8C40 end:0x803E8C78 + +plugPikiKando/complexCreature.cpp: + .text start:0x8008A02C end:0x8008A040 + +plugPikiKando/creature.cpp: + .text start:0x8008A040 end:0x8008D954 + .data start:0x802AF070 end:0x802AF1E8 + .bss start:0x803D15F0 end:0x803D1DF0 + .sdata start:0x803DEED8 end:0x803DF050 + .sbss start:0x803E7D10 end:0x803E7D20 + .sdata2 start:0x803E8C78 end:0x803E8CD8 + +plugPikiKando/creatureCollision.cpp: + .text start:0x8008D954 end:0x8008E0BC + .sdata start:0x803DF050 end:0x803DF058 + .sdata2 start:0x803E8CD8 end:0x803E8CF0 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x8008E0BC end:0x8008E2CC + .data start:0x802AF1E8 end:0x802AF328 + .sdata start:0x803DF058 end:0x803DF098 + +plugPikiKando/creatureMove.cpp: + .text start:0x8008E2CC end:0x8008F9C4 + .sdata start:0x803DF098 end:0x803DF0E8 + .sdata2 start:0x803E8CF0 end:0x803E8D38 + +plugPikiKando/creatureStick.cpp: + .text start:0x8008F9C4 end:0x80091EC0 + .data start:0x802AF328 end:0x802AF408 + .sdata start:0x803DF0E8 end:0x803DF168 + .sdata2 start:0x803E8D38 end:0x803E8D60 + +plugPikiKando/dualCreature.cpp: + .text start:0x80091EC0 end:0x80092808 + .data start:0x802AF408 end:0x802AF730 + .sdata start:0x803DF168 end:0x803DF1F0 + .sdata2 start:0x803E8D60 end:0x803E8D90 + +plugPikiKando/dynCreature.cpp: + .text start:0x80092808 end:0x80093FA8 + .data start:0x802AF730 end:0x802AF9B0 + .sdata start:0x803DF1F0 end:0x803DF2F8 + .sbss start:0x803E7D20 end:0x803E7D28 + .sdata2 start:0x803E8D90 end:0x803E8DE8 + +plugPikiKando/eventListener.cpp: + .text start:0x80093FA8 end:0x80094098 + .data start:0x802AF9B0 end:0x802AFA50 + .sdata start:0x803DF2F8 end:0x803DF318 + +plugPikiKando/fastGrid.cpp: + .text start:0x80094098 end:0x800946A4 + .sdata start:0x803DF318 end:0x803DF328 + .sbss start:0x803E7D28 end:0x803E7D30 + +plugPikiKando/ropeCreature.cpp: + .text start:0x800946A4 end:0x80094A38 + .data start:0x802AFA50 end:0x802AFBF0 + .sdata start:0x803DF328 end:0x803DF348 + .sdata2 start:0x803E8DE8 end:0x803E8E08 + +plugPikiKando/objectTypes.cpp: + .text start:0x80094A38 end:0x80094B14 + .data start:0x802AFBF0 end:0x802AFF18 + .sdata start:0x803DF348 end:0x803DF420 + +plugPikiKando/pelletMgr.cpp: + .text start:0x80094B14 end:0x80099548 + .rodata start:0x802223F8 end:0x80222418 + .data start:0x802AFF18 end:0x802B0748 + .sdata start:0x803DF420 end:0x803DF670 + .sbss start:0x803E7D30 end:0x803E7D40 + .sdata2 start:0x803E8E08 end:0x803E8E90 + +plugPikiKando/animPellet.cpp: + .text start:0x80099548 end:0x80099D1C + .data start:0x802B0748 end:0x802B08E8 + .sdata start:0x803DF670 end:0x803DF700 + .sdata2 start:0x803E8E90 end:0x803E8E98 + +plugPikiKando/genPellet.cpp: + .text start:0x80099D1C end:0x8009A02C + .data start:0x802B08E8 end:0x802B09C0 + .sdata start:0x803DF700 end:0x803DF728 + +plugPikiKando/pelletState.cpp: + .text start:0x8009A02C end:0x8009B104 + .data start:0x802B09C0 end:0x802B0E88 + .sdata start:0x803DF728 end:0x803DF7B8 + .sdata2 start:0x803E8E98 end:0x803E8ED0 + +plugPikiKando/workObject.cpp: + .text start:0x8009B104 end:0x8009F5E4 + .data start:0x802B0E88 end:0x802B1AB0 + .sdata start:0x803DF7B8 end:0x803DF958 + .sbss start:0x803E7D40 end:0x803E7D48 + .sdata2 start:0x803E8ED0 end:0x803E8F30 + +plugPikiKando/routeMgr.cpp: + .text start:0x8009F5E4 end:0x800A3428 + .data start:0x802B1AB0 end:0x802B1B70 + .sdata start:0x803DF958 end:0x803DF9A0 + .sbss start:0x803E7D48 end:0x803E7D50 + .sdata2 start:0x803E8F30 end:0x803E8F70 + +plugPikiKando/seMgr.cpp: + .text start:0x800A3428 end:0x800A3B04 + .data start:0x802B1B70 end:0x802B1D10 + .sdata start:0x803DF9A0 end:0x803DFA28 + .sbss start:0x803E7D50 end:0x803E7D58 + .sdata2 start:0x803E8F70 end:0x803E8F88 + +plugPikiKando/seConstants.cpp: + .text start:0x800A3B04 end:0x800A3C5C + .data start:0x802B1D10 end:0x802B1E10 + .sdata start:0x803DFA28 end:0x803DFA80 + .sdata2 start:0x803E8F88 end:0x803E8F98 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A3C5C end:0x800A5444 + .rodata start:0x80222418 end:0x80222440 + .data start:0x802B1E10 end:0x802B4E30 + .sdata start:0x803DFA80 end:0x803DFB50 + .sbss start:0x803E7D58 end:0x803E7D60 + .sdata2 start:0x803E8F98 end:0x803E8FC0 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A5444 end:0x800A5710 + .sbss start:0x803E7D60 end:0x803E7D78 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803E7D78 end:0x803E7D80 + +plugPikiKando/cPlate.cpp: + .text start:0x800A5710 end:0x800A6D94 + .data start:0x802B4E30 end:0x802B4F68 + .sdata start:0x803DFB50 end:0x803DFC30 + .sdata2 start:0x803E8FC0 end:0x803E9010 + +plugPikiKando/aiStone.cpp: + .text start:0x800A6D94 end:0x800A79F8 + .data start:0x802B4F68 end:0x802B5070 + .sdata start:0x803DFC30 end:0x803DFC90 + .sdata2 start:0x803E9010 end:0x803E9060 + +plugPikiKando/aiActions.cpp: + .text start:0x800A79F8 end:0x800A82E8 + .data start:0x802B5070 end:0x802B5358 + .sdata start:0x803DFC90 end:0x803DFD18 + .sdata2 start:0x803E9060 end:0x803E9098 + +plugPikiKando/aiAttack.cpp: + .text start:0x800A82E8 end:0x800AA51C + .data start:0x802B5358 end:0x802B5598 + .sdata start:0x803DFD18 end:0x803DFDD0 + .sdata2 start:0x803E9098 end:0x803E90F8 + +plugPikiKando/aiBore.cpp: + .text start:0x800AA51C end:0x800AC30C + .rodata start:0x80222440 end:0x802224A0 + .data start:0x802B5598 end:0x802B59C0 + .sdata start:0x803DFDD0 end:0x803DFE40 + .sdata2 start:0x803E90F8 end:0x803E9130 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AC30C end:0x800AC79C + .data start:0x802B59C0 end:0x802B5B10 + .sdata start:0x803DFE40 end:0x803DFE60 + .sdata2 start:0x803E9130 end:0x803E9140 + +plugPikiKando/aiBou.cpp: + .text start:0x800AC79C end:0x800ACEA0 + .data start:0x802B5B10 end:0x802B5BE0 + .sdata start:0x803DFE60 end:0x803DFEA8 + .sdata2 start:0x803E9140 end:0x803E9168 + +plugPikiKando/aiBridge.cpp: + .text start:0x800ACEA0 end:0x800AE13C + .rodata start:0x802224A0 end:0x802224B0 + .data start:0x802B5BE0 end:0x802B5D48 + .sdata start:0x803DFEA8 end:0x803DFEF8 + .sdata2 start:0x803E9168 end:0x803E91B0 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800AE13C end:0x800AEC80 + .data start:0x802B5D48 end:0x802B5EB0 + .sdata start:0x803DFEF8 end:0x803DFF38 + .sdata2 start:0x803E91B0 end:0x803E91E8 + +plugPikiKando/aiTransport.cpp: + .text start:0x800AEC80 end:0x800B4570 + .rodata start:0x802224B0 end:0x802224D8 + .data start:0x802B5EB0 end:0x802B6030 + .sdata start:0x803DFF38 end:0x803E0118 + .sdata2 start:0x803E91E8 end:0x803E9288 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B4570 end:0x800B5688 + .data start:0x802B6030 end:0x802B6188 + .sdata start:0x803E0118 end:0x803E0188 + .sdata2 start:0x803E9288 end:0x803E92D8 + +plugPikiKando/aiChase.cpp: + .text start:0x800B5688 end:0x800B5AAC + .data start:0x802B6188 end:0x802B62B8 + .sdata start:0x803E0188 end:0x803E01C8 + .sdata2 start:0x803E92D8 end:0x803E9310 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B5AAC end:0x800B77AC + .data start:0x802B62B8 end:0x802B63C8 + .sdata start:0x803E01C8 end:0x803E0260 + .sdata2 start:0x803E9310 end:0x803E9380 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800B77AC end:0x800B7F64 + .data start:0x802B63C8 end:0x802B64D8 + .sdata start:0x803E0260 end:0x803E02A8 + .sdata2 start:0x803E9380 end:0x803E93B8 + +plugPikiKando/aiEnter.cpp: + .text start:0x800B7F64 end:0x800B8828 + .data start:0x802B64D8 end:0x802B65E8 + .sdata start:0x803E02A8 end:0x803E02F0 + .sdata2 start:0x803E93B8 end:0x803E9410 + +plugPikiKando/aiEscape.cpp: + .text start:0x800B8828 end:0x800B8D68 + .data start:0x802B65E8 end:0x802B6728 + .sdata start:0x803E02F0 end:0x803E0348 + .sdata2 start:0x803E9410 end:0x803E9450 + +plugPikiKando/aiExit.cpp: + .text start:0x800B8D68 end:0x800B92C0 + .data start:0x802B6728 end:0x802B67F8 + .sdata start:0x803E0348 end:0x803E03C0 + .sdata2 start:0x803E9450 end:0x803E9488 + +plugPikiKando/aiMine.cpp: + .text start:0x800B92C0 end:0x800B98D8 + .data start:0x802B67F8 end:0x802B6938 + .sdata start:0x803E03C0 end:0x803E0408 + .sdata2 start:0x803E9488 end:0x803E9498 + +plugPikiKando/aiFormation.cpp: + .text start:0x800B98D8 end:0x800BA600 + .data start:0x802B6938 end:0x802B6A60 + .sdata start:0x803E0408 end:0x803E0460 + .sdata2 start:0x803E9498 end:0x803E9500 + +plugPikiKando/aiFree.cpp: + .text start:0x800BA600 end:0x800BAF68 + .data start:0x802B6A60 end:0x802B6B78 + .sdata start:0x803E0460 end:0x803E04B8 + .sdata2 start:0x803E9500 end:0x803E9528 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BAF68 end:0x800BB534 + .data start:0x802B6B78 end:0x802B6C88 + .sdata start:0x803E04B8 end:0x803E0500 + .sdata2 start:0x803E9528 end:0x803E9560 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BB534 end:0x800BCAFC + .data start:0x802B6C88 end:0x802B6D60 + .sdata start:0x803E0500 end:0x803E0550 + .sdata2 start:0x803E9560 end:0x803E95A8 + +plugPikiKando/aiPick.cpp: + .text start:0x800BCAFC end:0x800BD364 + .data start:0x802B6D60 end:0x802B6F70 + .sdata start:0x803E0550 end:0x803E05A0 + .sdata2 start:0x803E95A8 end:0x803E95B8 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800BD364 end:0x800BD670 + .data start:0x802B6F70 end:0x802B7168 + .sdata start:0x803E05A0 end:0x803E05E0 + +plugPikiKando/aiPullout.cpp: + .text start:0x800BD670 end:0x800BDFF0 + .data start:0x802B7168 end:0x802B7370 + .sdata start:0x803E05E0 end:0x803E0640 + .sdata2 start:0x803E95B8 end:0x803E95E0 + +plugPikiKando/aiPush.cpp: + .text start:0x800BDFF0 end:0x800BE9F4 + .data start:0x802B7370 end:0x802B74E0 + .sdata start:0x803E0640 end:0x803E0678 + .sdata2 start:0x803E95E0 end:0x803E9610 + +plugPikiKando/aiPut.cpp: + .text start:0x800BE9F4 end:0x800C0A10 + .data start:0x802B74E0 end:0x802B76B8 + .sdata start:0x803E0678 end:0x803E0708 + .sdata2 start:0x803E9610 end:0x803E9658 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C0A10 end:0x800C12E8 + .data start:0x802B76B8 end:0x802B7860 + .sdata start:0x803E0708 end:0x803E07B0 + .sdata2 start:0x803E9658 end:0x803E9698 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C12E8 end:0x800C1E24 + .data start:0x802B7860 end:0x802B7980 + .sdata start:0x803E07B0 end:0x803E0810 + .sdata2 start:0x803E9698 end:0x803E96D8 + +plugPikiKando/aiRope.cpp: + .text start:0x800C1E24 end:0x800C216C + .data start:0x802B7980 end:0x802B7A50 + .sdata start:0x803E0810 end:0x803E0850 + .sdata2 start:0x803E96D8 end:0x803E96F8 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C216C end:0x800C2C54 + .data start:0x802B7A50 end:0x802B7C38 + .sdata start:0x803E0850 end:0x803E08A8 + .sdata2 start:0x803E96F8 end:0x803E9728 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C2C54 end:0x800C30A8 + .data start:0x802B7C38 end:0x802B7DB0 + .sdata start:0x803E08A8 end:0x803E0900 + .sdata2 start:0x803E9728 end:0x803E9750 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C30A8 end:0x800C3AE4 + .data start:0x802B7DB0 end:0x802B7EB0 + .sdata start:0x803E0900 end:0x803E0968 + .sdata2 start:0x803E9750 end:0x803E97A0 + +plugPikiKando/aiAction.cpp: + .text start:0x800C3AE4 end:0x800C56D4 + .data start:0x802B7EB0 end:0x802B8230 + .sdata start:0x803E0968 end:0x803E09E8 + .sdata2 start:0x803E97A0 end:0x803E97A8 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C56D4 end:0x800C6558 + .ctors start:0x80221F88 end:0x80221F8C + .data start:0x802B8230 end:0x802B8428 + .bss start:0x803D1DF0 end:0x803D1E18 + .sdata start:0x803E09E8 end:0x803E0A78 + .sdata2 start:0x803E97A8 end:0x803E97B8 + +plugPikiKando/piki.cpp: + .text start:0x800C6558 end:0x800CD804 + .ctors start:0x80221F8C end:0x80221F90 + .data start:0x802B8428 end:0x802B8A50 + .bss start:0x803D1E18 end:0x803D1E48 + .sdata start:0x803E0A78 end:0x803E0B80 + .sbss start:0x803E7D80 end:0x803E7D88 + .sdata2 start:0x803E97B8 end:0x803E9848 + +plugPikiKando/odoMeter.cpp: + .text start:0x800CD804 end:0x800CD950 + .sdata2 start:0x803E9848 end:0x803E9860 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800CD950 end:0x800CDCD0 + .sdata2 start:0x803E9860 end:0x803E9870 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800CDCD0 end:0x800CF0E8 + .data start:0x802B8A50 end:0x802B8CC0 + .sdata start:0x803E0B80 end:0x803E0D40 + .sbss start:0x803E7D88 end:0x803E7D90 + .sdata2 start:0x803E9870 end:0x803E9918 + +plugPikiKando/pikiState.cpp: + .text start:0x800CF0E8 end:0x800D8894 + .rodata start:0x802224D8 end:0x80222580 + .data start:0x802B8CC0 end:0x802BA320 + .sdata start:0x803E0D40 end:0x803E1190 + .sdata2 start:0x803E9918 end:0x803E99E8 + +plugPikiKando/viewPiki.cpp: + .text start:0x800D8894 end:0x800DAC28 + .rodata start:0x80222580 end:0x80222598 + .data start:0x802BA320 end:0x802BA5A0 + .bss start:0x803D1E48 end:0x803D1E58 + .sdata start:0x803E1190 end:0x803E1290 + .sdata2 start:0x803E99E8 end:0x803E9A70 + +plugPikiKando/conditions.cpp: + .text start:0x800DAC28 end:0x800DACB4 + .data start:0x802BA5A0 end:0x802BA620 + .sdata start:0x803E1290 end:0x803E12B0 + +plugPikiKando/generator.cpp: + .text start:0x800DACB4 end:0x800DED68 + .data start:0x802BA620 end:0x802BABF8 + .sdata start:0x803E12B0 end:0x803E1408 + .sbss start:0x803E7D90 end:0x803E7DB8 + .sdata2 start:0x803E9A70 end:0x803E9AA0 + +plugPikiKando/generatorCache.cpp: + .text start:0x800DED68 end:0x800E0228 + .data start:0x802BABF8 end:0x802BAD98 + .sdata start:0x803E1408 end:0x803E1448 + .sbss start:0x803E7DB8 end:0x803E7DC0 + .sdata2 start:0x803E9AA0 end:0x803E9AB0 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E0228 end:0x800E2FB4 + .data start:0x802BAD98 end:0x802BB0F8 + .sdata start:0x803E1448 end:0x803E14A0 + .sdata2 start:0x803E9AB0 end:0x803E9AD0 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E2FB4 end:0x800E4338 + .data start:0x802BB0F8 end:0x802BB170 + .sdata start:0x803E14A0 end:0x803E14B0 + .sdata2 start:0x803E9AD0 end:0x803E9AE0 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E4338 end:0x800E4390 + .data start:0x802BB170 end:0x802BB1B0 + .sdata start:0x803E14B0 end:0x803E14B8 + +plugPikiKando/itemGem.cpp: + .text start:0x800E4390 end:0x800E467C + .data start:0x802BB1B0 end:0x802BB240 + .sdata2 start:0x803E9AE0 end:0x803E9B10 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E467C end:0x800E5DD8 + .data start:0x802BB240 end:0x802BB968 + .sdata start:0x803E14B8 end:0x803E1568 + .sdata2 start:0x803E9B10 end:0x803E9B78 + +plugPikiKando/kusaItem.cpp: + .text start:0x800E5DD8 end:0x800E6668 + .data start:0x802BB968 end:0x802BBD70 + .sdata start:0x803E1568 end:0x803E15E0 + .sdata2 start:0x803E9B78 end:0x803E9B90 + +plugPikiKando/fishItem.cpp: + .text start:0x800E6668 end:0x800E7018 + .data start:0x802BBD70 end:0x802BBFE0 + .sdata start:0x803E15E0 end:0x803E1678 + .sdata2 start:0x803E9B90 end:0x803E9BC0 + +plugPikiKando/ufoItem.cpp: + .text start:0x800E7018 end:0x800E97AC + .rodata start:0x80222598 end:0x80222640 + .data start:0x802BBFE0 end:0x802BC4A8 + .sdata start:0x803E1678 end:0x803E17C0 + .sdata2 start:0x803E9BC0 end:0x803E9C10 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800E97AC end:0x800EA190 + .data start:0x802BC4A8 end:0x802BC5D8 + .sdata start:0x803E17C0 end:0x803E1828 + .sdata2 start:0x803E9C10 end:0x803E9C28 + +plugPikiKando/bombItem.cpp: + .text start:0x800EA190 end:0x800EA714 + .data start:0x802BC5D8 end:0x802BC858 + .sdata start:0x803E1828 end:0x803E1870 + .sdata2 start:0x803E9C28 end:0x803E9C38 + +plugPikiKando/goalItem.cpp: + .text start:0x800EA714 end:0x800EC4C8 + .rodata start:0x80222640 end:0x80222668 + .data start:0x802BC858 end:0x802BCD10 + .sdata start:0x803E1870 end:0x803E1920 + .sbss start:0x803E7DC0 end:0x803E7DC8 + .sdata2 start:0x803E9C38 end:0x803E9C98 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800EC4C8 end:0x800ED204 + .data start:0x802BCD10 end:0x802BD0A0 + .sdata start:0x803E1920 end:0x803E19A8 + .sdata2 start:0x803E9C98 end:0x803E9CD8 + +plugPikiKando/keyItem.cpp: + .text start:0x800ED204 end:0x800ED9DC + .data start:0x802BD0A0 end:0x802BD438 + .sdata start:0x803E19A8 end:0x803E1A08 + .sdata2 start:0x803E9CD8 end:0x803E9D28 + +plugPikiKando/ropeItem.cpp: + .text start:0x800ED9DC end:0x800EDDD0 + .data start:0x802BD438 end:0x802BD600 + .sdata start:0x803E1A08 end:0x803E1A30 + .sdata2 start:0x803E9D28 end:0x803E9D38 + +plugPikiKando/seedItem.cpp: + .text start:0x800EDDD0 end:0x800EE320 + .data start:0x802BD600 end:0x802BD798 + .sdata start:0x803E1A30 end:0x803E1A58 + .sdata2 start:0x803E9D38 end:0x803E9D90 + +plugPikiKando/genItem.cpp: + .text start:0x800EE320 end:0x800EECE8 + .data start:0x802BD798 end:0x802BD900 + .sdata start:0x803E1A58 end:0x803E1AA0 + .sdata2 start:0x803E9D90 end:0x803E9DA8 + +plugPikiKando/itemAI.cpp: + .text start:0x800EECE8 end:0x800F2978 + .rodata start:0x80222668 end:0x80222680 + .data start:0x802BD900 end:0x802BE4F8 + .sdata start:0x803E1AA0 end:0x803E1CE8 + .sdata2 start:0x803E9DA8 end:0x803E9E08 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F2978 end:0x800F7958 + .data start:0x802BE4F8 end:0x802BF1C0 + .sdata start:0x803E1CE8 end:0x803E1E80 + .sbss start:0x803E7DC8 end:0x803E7DD0 + .sdata2 start:0x803E9E08 end:0x803E9E50 + +plugPikiKando/itemObject.cpp: + .text start:0x800F7958 end:0x800F7CB0 + .data start:0x802BF1C0 end:0x802BFC68 + .sdata start:0x803E1E80 end:0x803E1EE8 + +plugPikiKando/mizuItem.cpp: + .text start:0x800F7CB0 end:0x800F7E8C + .data start:0x802BFC68 end:0x802BFEE0 + .sdata start:0x803E1EE8 end:0x803E1F20 + .sdata2 start:0x803E9E50 end:0x803E9E58 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800F7E8C end:0x800F8130 + .data start:0x802BFEE0 end:0x802BFFB8 + .sdata start:0x803E1F20 end:0x803E1F78 + +plugPikiKando/genNavi.cpp: + .text start:0x800F8130 end:0x800F82E8 + .data start:0x802BFFB8 end:0x802C0098 + .sdata start:0x803E1F78 end:0x803E1FA0 + +plugPikiKando/navi.cpp: + .text start:0x800F82E8 end:0x80101140 + .data start:0x802C0098 end:0x802C0680 + .sdata start:0x803E1FA0 end:0x803E22A0 + .sbss start:0x803E7DD0 end:0x803E7DE0 + .sdata2 start:0x803E9E58 end:0x803E9F98 + +plugPikiKando/naviState.cpp: + .text start:0x80101140 end:0x8010B0E0 + .rodata start:0x80222680 end:0x802226A0 + .data start:0x802C0680 end:0x802C1AA8 + .sdata start:0x803E22A0 end:0x803E2698 + .sdata2 start:0x803E9F98 end:0x803EA078 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010B0E0 end:0x8010CE6C + .data start:0x802C1AA8 end:0x802C2188 + .sdata start:0x803E2698 end:0x803E2748 + .sdata2 start:0x803EA078 end:0x803EA0D0 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x8010CE6C end:0x80111E14 + .data start:0x802C2188 end:0x802C24F8 + .sdata start:0x803E2748 end:0x803E2858 + .sbss start:0x803E7DE0 end:0x803E7E10 + .sdata2 start:0x803EA0D0 end:0x803EA0F8 + +plugPikiKando/gmWin.cpp: + .text start:0x80111E14 end:0x801124B8 + .sbss start:0x803E7E10 end:0x803E7E18 + +plugPikiKando/gameStat.cpp: + .text start:0x801124B8 end:0x801126C4 + .ctors start:0x80221F90 end:0x80221F94 + .bss start:0x803D1E58 end:0x803D1EE0 + .sbss start:0x803E7E18 end:0x803E7E30 + +plugPikiKando/kmath.cpp: + .text start:0x801126C4 end:0x80113164 + .sdata start:0x803E2858 end:0x803E2860 + .sdata2 start:0x803EA0F8 end:0x803EA150 + +plugPikiKando/uteffect.cpp: + .text start:0x80113164 end:0x80115B8C + .data start:0x802C24F8 end:0x802C2D80 + .sdata start:0x803E2860 end:0x803E2978 + .sbss start:0x803E7E30 end:0x803E7E38 + .sdata2 start:0x803EA150 end:0x803EA180 + +plugPikiKando/kontroller.cpp: + .text start:0x80115B8C end:0x80116080 + .data start:0x802C2D80 end:0x802C2E70 + .sdata start:0x803E2978 end:0x803E29B0 + .sbss start:0x803E7E38 end:0x803E7E40 + +plugPikiKando/mapcode.cpp: + .text start:0x80116080 end:0x80116110 + .sdata2 start:0x803EA180 end:0x803EA188 + +plugPikiKando/utkando.cpp: + .text start:0x80116110 end:0x801171C4 + .sdata start:0x803E29B0 end:0x803E29D0 + .sdata2 start:0x803EA188 end:0x803EA1A8 + +plugPikiKando/naviMgr.cpp: + .text start:0x801171C4 end:0x8011785C + .data start:0x802C2E70 end:0x802C3060 + .sdata start:0x803E29D0 end:0x803E2A28 + .sbss start:0x803E7E40 end:0x803E7E48 + +plugPikiKando/genMapParts.cpp: + .text start:0x8011785C end:0x801184A8 + .data start:0x802C3060 end:0x802C31D8 + .sdata start:0x803E2A28 end:0x803E2B00 + .sbss start:0x803E7E48 end:0x803E7E50 + .sdata2 start:0x803EA1A8 end:0x803EA1B8 + +plugPikiKando/mapParts.cpp: + .text start:0x801184A8 end:0x80118D04 + .data start:0x802C31D8 end:0x802C34E8 + .sdata start:0x803E2B00 end:0x803E2B88 + .sdata2 start:0x803EA1B8 end:0x803EA1C8 + +plugPikiKando/panipikianimator.cpp: + .text start:0x80118D04 end:0x80119A10 + .data start:0x802C34E8 end:0x802C37C0 + .sdata start:0x803E2B88 end:0x803E2DD0 + +plugPikiKando/actor.cpp: + .text start:0x80119A10 end:0x80119AB4 + +plugPikiKando/actorMgr.cpp: + .text start:0x80119AB4 end:0x80119B30 + .sbss start:0x803E7E50 end:0x803E7E58 + +plugPikiKando/genActor.cpp: + .text start:0x80119B30 end:0x80119CE4 + .data start:0x802C37C0 end:0x802C38A8 + .sdata start:0x803E2DD0 end:0x803E2DF8 + +plugPikiKando/pikiInfo.cpp: + .text start:0x80119CE4 end:0x80119D3C + .sbss start:0x803E7E58 end:0x803E7E60 + +plugPikiKando/plantMgr.cpp: + .text start:0x80119D3C end:0x8011B148 + .data start:0x802C38A8 end:0x802C3FD0 + .sdata start:0x803E2DF8 end:0x803E2F60 + .sbss start:0x803E7E60 end:0x803E7E68 + .sdata2 start:0x803EA1C8 end:0x803EA200 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x8011B148 end:0x8011B2CC + .data start:0x802C3FD0 end:0x802C4088 + .sdata start:0x803E2F60 end:0x803E2F98 + +plugPikiNakata/genteki.cpp: + .text start:0x8011B2CC end:0x8011B6AC + .data start:0x802C4088 end:0x802C4158 + .sdata start:0x803E2F98 end:0x803E2FC0 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8011B6AC end:0x8011B6E4 + .sbss start:0x803E7E68 end:0x803E7E70 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x8011B6E4 end:0x8011BC80 + .data start:0x802C4158 end:0x802C4268 + .sdata start:0x803E2FC0 end:0x803E2FE8 + .sdata2 start:0x803EA200 end:0x803EA210 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x8011BC80 end:0x8011D3FC + .data start:0x802C4268 end:0x802C4358 + .sdata start:0x803E2FE8 end:0x803E3038 + .sdata2 start:0x803EA210 end:0x803EA238 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x8011D3FC end:0x8011D95C + .data start:0x802C4358 end:0x802C4378 + .sdata start:0x803E3038 end:0x803E3058 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x8011D95C end:0x8011DB48 + .sdata start:0x803E3058 end:0x803E3070 + .sdata2 start:0x803EA238 end:0x803EA240 + +plugPikiNakata/nlibmath.cpp: + .text start:0x8011DB48 end:0x8011DE60 + .data start:0x802C4378 end:0x802C4B98 + .sdata start:0x803E3070 end:0x803E3080 + .sdata2 start:0x803EA240 end:0x803EA260 + +plugPikiNakata/nlibspline.cpp: + .text start:0x8011DE60 end:0x8011E0F8 + +plugPikiNakata/nlibsystem.cpp: + .text start:0x8011E0F8 end:0x8011EF58 + .data start:0x802C4B98 end:0x802C4C88 + .sdata start:0x803E3080 end:0x803E30B0 + .sbss start:0x803E7E70 end:0x803E7E78 + .sdata2 start:0x803EA260 end:0x803EA270 + +plugPikiNakata/panianimator.cpp: + .text start:0x8011EF58 end:0x8011F8A0 + .data start:0x802C4C88 end:0x802C4D50 + .sdata start:0x803E30B0 end:0x803E30C0 + .sdata2 start:0x803EA270 end:0x803EA280 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x8011F8A0 end:0x8011FC54 + .sbss start:0x803E7E78 end:0x803E7E80 + .sdata2 start:0x803EA280 end:0x803EA288 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x8011FC54 end:0x8011FEF8 + .data start:0x802C4D50 end:0x802C4E48 + .sdata start:0x803E30C0 end:0x803E3140 + +plugPikiNakata/panitestsection.cpp: + .text start:0x8011FEF8 end:0x801215A4 + .data start:0x802C4E48 end:0x802C5078 + .sdata start:0x803E3140 end:0x803E3208 + .sdata2 start:0x803EA288 end:0x803EA2B8 + +plugPikiNakata/paraparameters.cpp: + .text start:0x801215A4 end:0x80121BB8 + .data start:0x802C5078 end:0x802C5178 + .sdata start:0x803E3208 end:0x803E3230 + .sdata2 start:0x803EA2B8 end:0x803EA2C0 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x80121BB8 end:0x80123C54 + .data start:0x802C5178 end:0x802C5248 + .sdata start:0x803E3230 end:0x803E3258 + .sdata2 start:0x803EA2C0 end:0x803EA300 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x80123C54 end:0x801241A8 + .data start:0x802C5248 end:0x802C5320 + .sdata start:0x803E3258 end:0x803E3288 + .sdata2 start:0x803EA300 end:0x803EA320 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x801241A8 end:0x801249C4 + .data start:0x802C5320 end:0x802C55D8 + .sdata start:0x803E3288 end:0x803E32D8 + .sdata2 start:0x803EA320 end:0x803EA350 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x801249C4 end:0x80125540 + .data start:0x802C55D8 end:0x802C5B80 + .sdata start:0x803E32D8 end:0x803E3310 + .sdata2 start:0x803EA350 end:0x803EA3E8 + +plugPikiNakata/peve.cpp: + .text start:0x80125540 end:0x80125C68 + .data start:0x802C5B80 end:0x802C5E38 + .sdata start:0x803E3310 end:0x803E3380 + .sdata2 start:0x803EA3E8 end:0x803EA400 + +plugPikiNakata/peveconditions.cpp: + .text start:0x80125C68 end:0x80125F04 + .data start:0x802C5E38 end:0x802C5F98 + .sdata start:0x803E3380 end:0x803E33B0 + .sdata2 start:0x803EA400 end:0x803EA408 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x80125F04 end:0x80126E04 + .data start:0x802C5F98 end:0x802C6568 + .sdata start:0x803E33B0 end:0x803E3438 + .sdata2 start:0x803EA408 end:0x803EA410 + +plugPikiNakata/tai.cpp: + .text start:0x80126E04 end:0x80127604 + .data start:0x802C6568 end:0x802C6640 + .sdata start:0x803E3438 end:0x803E3460 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x80127604 end:0x801283A8 + .data start:0x802C6640 end:0x802C69C0 + .sdata start:0x803E3460 end:0x803E34D8 + .sdata2 start:0x803EA410 end:0x803EA420 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x801283A8 end:0x80128520 + .data start:0x802C69C0 end:0x802C6B70 + .sdata start:0x803E34D8 end:0x803E3510 + +plugPikiNakata/taichappy.cpp: + .text start:0x80128520 end:0x8012AAC0 + .data start:0x802C6B70 end:0x802C7060 + .sdata start:0x803E3510 end:0x803E35D0 + .sdata2 start:0x803EA420 end:0x803EA4A0 + +plugPikiNakata/taicollec.cpp: + .text start:0x8012AAC0 end:0x8012E48C + .data start:0x802C7060 end:0x802C7C50 + .sdata start:0x803E35D0 end:0x803E3778 + .sdata2 start:0x803EA4A0 end:0x803EA510 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x8012E48C end:0x8012E5A8 + .data start:0x802C7C50 end:0x802C7E68 + .sdata start:0x803E3778 end:0x803E37B8 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x8012E5A8 end:0x8012E6C8 + .data start:0x802C7E68 end:0x802C7FF8 + .sdata start:0x803E37B8 end:0x803E37E8 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x8012E6C8 end:0x8012F4CC + .data start:0x802C7FF8 end:0x802C8300 + .sdata start:0x803E37E8 end:0x803E38A0 + .sdata2 start:0x803EA510 end:0x803EA548 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x8012F4CC end:0x8012FB98 + .data start:0x802C8300 end:0x802C8648 + .sdata start:0x803E38A0 end:0x803E3908 + .sdata2 start:0x803EA548 end:0x803EA550 + +plugPikiNakata/taikinoko.cpp: + .text start:0x8012FB98 end:0x80131EF8 + .data start:0x802C8648 end:0x802C8BA0 + .sdata start:0x803E3908 end:0x803E39D0 + .sdata2 start:0x803EA550 end:0x803EA5E8 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x80131EF8 end:0x80131F64 + .data start:0x802C8BA0 end:0x802C8C58 + .sdata start:0x803E39D0 end:0x803E39E8 + +plugPikiNakata/taimizinko.cpp: + .text start:0x80131F64 end:0x80134018 + .data start:0x802C8C58 end:0x802C9290 + .sdata start:0x803E39E8 end:0x803E3AE8 + .sdata2 start:0x803EA5E8 end:0x803EA640 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80134018 end:0x80134560 + .data start:0x802C9290 end:0x802C95B0 + .sdata start:0x803E3AE8 end:0x803E3B60 + .sdata2 start:0x803EA640 end:0x803EA650 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x80134560 end:0x80135C20 + .data start:0x802C95B0 end:0x802C9F20 + .sdata start:0x803E3B60 end:0x803E3C98 + .sdata2 start:0x803EA650 end:0x803EA668 + +plugPikiNakata/tainapkid.cpp: + .text start:0x80135C20 end:0x8013A500 + .data start:0x802C9F20 end:0x802CAA08 + .sdata start:0x803E3C98 end:0x803E3DF8 + .sdata2 start:0x803EA668 end:0x803EA720 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x8013A500 end:0x8013DAB4 + .data start:0x802CAA08 end:0x802CB198 + .sdata start:0x803E3DF8 end:0x803E3F10 + .sdata2 start:0x803EA720 end:0x803EA7D8 + +plugPikiNakata/taipalm.cpp: + .text start:0x8013DAB4 end:0x8013EBD8 + .data start:0x802CB198 end:0x802CB6C8 + .sdata start:0x803E3F10 end:0x803E3FE8 + .sdata2 start:0x803EA7D8 end:0x803EA820 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x8013EBD8 end:0x8013F304 + .data start:0x802CB6C8 end:0x802CBD48 + .sdata start:0x803E3FE8 end:0x803E40C0 + .sdata2 start:0x803EA820 end:0x803EA830 + +plugPikiNakata/taiswallow.cpp: + .text start:0x8013F304 end:0x80141FD0 + .data start:0x802CBD48 end:0x802CC3E8 + .sdata start:0x803E40C0 end:0x803E41A0 + .sdata2 start:0x803EA830 end:0x803EA8C0 + +plugPikiNakata/taishell.cpp: + .text start:0x80141FD0 end:0x801436D0 + .data start:0x802CC3E8 end:0x802CC918 + .sdata start:0x803E41A0 end:0x803E4258 + .sdata2 start:0x803EA8C0 end:0x803EA908 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x801436D0 end:0x80143A9C + .data start:0x802CC918 end:0x802CCA48 + .sdata start:0x803E4258 end:0x803E4280 + .sdata2 start:0x803EA908 end:0x803EA928 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x80143A9C end:0x80143BF0 + .data start:0x802CCA48 end:0x802CCAE0 + .sdata start:0x803E4280 end:0x803E4298 + .sdata2 start:0x803EA928 end:0x803EA948 + +plugPikiNakata/teki.cpp: + .text start:0x80143BF0 end:0x80143E48 + .data start:0x802CCAE0 end:0x802CCE38 + .sdata start:0x803E4298 end:0x803E4300 + .sdata2 start:0x803EA948 end:0x803EA950 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80143E48 end:0x80143F5C + .data start:0x802CCE38 end:0x802CCF18 + .sdata start:0x803E4300 end:0x803E4330 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80143F5C end:0x80149BC0 + .data start:0x802CCF18 end:0x802CD370 + .sdata start:0x803E4330 end:0x803E4478 + .sdata2 start:0x803EA950 end:0x803EA998 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x80149BC0 end:0x8014A398 + .data start:0x802CD370 end:0x802CD928 + .sdata start:0x803E4478 end:0x803E4538 + .sdata2 start:0x803EA998 end:0x803EA9A0 + +plugPikiNakata/tekievent.cpp: + .text start:0x8014A398 end:0x8014A40C + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x8014A40C end:0x8014A58C + .data start:0x802CD928 end:0x802CDA18 + .sdata start:0x803E4538 end:0x803E4550 + +plugPikiNakata/tekimgr.cpp: + .text start:0x8014A58C end:0x8014B124 + .data start:0x802CDA18 end:0x802CDD20 + .sdata start:0x803E4550 end:0x803E46B0 + .sbss start:0x803E7E80 end:0x803E7E88 + +plugPikiNakata/tekinakata.cpp: + .text start:0x8014B124 end:0x8014B9F8 + +plugPikiNakata/tekinteki.cpp: + .text start:0x8014B9F8 end:0x8014BD48 + .data start:0x802CDD20 end:0x802CE008 + .sdata start:0x803E46B0 end:0x803E46F8 + .sdata2 start:0x803EA9A0 end:0x803EA9A8 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x8014BD48 end:0x8014CA60 + .data start:0x802CE008 end:0x802CE5B8 + .sdata start:0x803E46F8 end:0x803E4748 + .sdata2 start:0x803EA9A8 end:0x803EA9E8 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x8014CA60 end:0x8014D1A4 + .data start:0x802CE5B8 end:0x802CE6B0 + .sdata start:0x803E4748 end:0x803E4770 + .sdata2 start:0x803EA9E8 end:0x803EAA00 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x8014D1A4 end:0x8014D2D0 + .data start:0x802CE6B0 end:0x802CE710 + .sdata start:0x803E4770 end:0x803E4778 + +plugPikiNishimura/genBoss.cpp: + .text start:0x8014D2D0 end:0x8014D8CC + .data start:0x802CE710 end:0x802CE7E0 + .sdata start:0x803E4778 end:0x803E47A0 + +plugPikiNishimura/Boss.cpp: + .text start:0x8014D8CC end:0x8014FA68 + .data start:0x802CE7E0 end:0x802CEA80 + .sdata start:0x803E47A0 end:0x803E4880 + .sdata2 start:0x803EAA00 end:0x803EAA60 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x8014FA68 end:0x8014FAFC + .data start:0x802CEA80 end:0x802CEB48 + .sdata start:0x803E4880 end:0x803E48B0 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x8014FAFC end:0x8014FD88 + .data start:0x802CEB48 end:0x802CEC30 + .sdata start:0x803E48B0 end:0x803E48E0 + .sdata2 start:0x803EAA60 end:0x803EAA78 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x8014FD88 end:0x80152684 + .data start:0x802CEC30 end:0x802CF158 + .sdata start:0x803E48E0 end:0x803E4980 + .sbss start:0x803E7E88 end:0x803E7E90 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x80152684 end:0x80152794 + .data start:0x802CF158 end:0x802CF170 + .sdata2 start:0x803EAA78 end:0x803EAA80 + +plugPikiNishimura/Spider.cpp: + .text start:0x80152794 end:0x80153840 + .data start:0x802CF170 end:0x802CF498 + .sdata start:0x803E4980 end:0x803E4AE0 + .sdata2 start:0x803EAA80 end:0x803EAB20 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80153840 end:0x80155A08 + .data start:0x802CF498 end:0x802CF528 + .sdata start:0x803E4AE0 end:0x803E4AF0 + .sdata2 start:0x803EAB20 end:0x803EAB70 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x80155A08 end:0x8015A2C4 + .rodata start:0x802226A0 end:0x802226F0 + .data start:0x802CF528 end:0x802CF6A0 + .sdata start:0x803E4AF0 end:0x803E4B68 + .sbss start:0x803E7E90 end:0x803E7E98 + .sdata2 start:0x803EAB70 end:0x803EABF8 + +plugPikiNishimura/Snake.cpp: + .text start:0x8015A2C4 end:0x8015B1F0 + .data start:0x802CF6A0 end:0x802CF9B0 + .sdata start:0x803E4B68 end:0x803E4CA8 + .sdata2 start:0x803EABF8 end:0x803EAC70 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x8015B1F0 end:0x8015FCA8 + .rodata start:0x802226F0 end:0x80222708 + .data start:0x802CF9B0 end:0x802CFA78 + .sdata start:0x803E4CA8 end:0x803E4CD8 + .sdata2 start:0x803EAC70 end:0x803EACB0 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x8015FCA8 end:0x80163714 + .rodata start:0x80222708 end:0x80222748 + .data start:0x802CFA78 end:0x802CFB38 + .sdata start:0x803E4CD8 end:0x803E4D30 + .sdata2 start:0x803EACB0 end:0x803EACE8 + +plugPikiNishimura/Slime.cpp: + .text start:0x80163714 end:0x80164B80 + .data start:0x802CFB38 end:0x802CFEF0 + .sdata start:0x803E4D30 end:0x803E4E48 + .sdata2 start:0x803EACE8 end:0x803EAD58 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x80164B80 end:0x8016A630 + .data start:0x802CFEF0 end:0x802CFF18 + .sdata start:0x803E4E48 end:0x803E4E98 + .sdata2 start:0x803EAD58 end:0x803EADD8 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x8016A630 end:0x8016B278 + .sdata start:0x803E4E98 end:0x803E4EB8 + .sdata2 start:0x803EADD8 end:0x803EADF8 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x8016B278 end:0x8016B4A4 + .data start:0x802CFF18 end:0x802D00A8 + .sdata start:0x803E4EB8 end:0x803E4ED8 + .sdata2 start:0x803EADF8 end:0x803EAE08 + +plugPikiNishimura/King.cpp: + .text start:0x8016B4A4 end:0x8016C2B0 + .data start:0x802D00A8 end:0x802D03D0 + .sdata start:0x803E4ED8 end:0x803E5010 + .sdata2 start:0x803EAE08 end:0x803EAE70 + +plugPikiNishimura/KingAi.cpp: + .text start:0x8016C2B0 end:0x80172D84 + .data start:0x802D03D0 end:0x802D0530 + .sdata start:0x803E5010 end:0x803E5038 + .sdata2 start:0x803EAE70 end:0x803EAED8 + +plugPikiNishimura/KingBody.cpp: + .text start:0x80172D84 end:0x80175A30 + .data start:0x802D0530 end:0x802D0710 + .sdata start:0x803E5038 end:0x803E5168 + .sdata2 start:0x803EAED8 end:0x803EAF20 + +plugPikiNishimura/Kogane.cpp: + .text start:0x80175A30 end:0x80176104 + .data start:0x802D0710 end:0x802D09A0 + .sdata start:0x803E5168 end:0x803E5218 + .sdata2 start:0x803EAF20 end:0x803EAF60 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x80176104 end:0x80177DE0 + .rodata start:0x80222748 end:0x80222758 + .data start:0x802D09A0 end:0x802D0A78 + .sdata start:0x803E5218 end:0x803E52C8 + .sdata2 start:0x803EAF60 end:0x803EAFB0 + +plugPikiNishimura/Pom.cpp: + .text start:0x80177DE0 end:0x80178558 + .data start:0x802D0A78 end:0x802D0D18 + .sdata start:0x803E52C8 end:0x803E5370 + .sdata2 start:0x803EAFB0 end:0x803EAFE8 + +plugPikiNishimura/PomAi.cpp: + .text start:0x80178558 end:0x80179E08 + .data start:0x802D0D18 end:0x802D0E18 + .sdata start:0x803E5370 end:0x803E53A0 + .sdata2 start:0x803EAFE8 end:0x803EB038 + +plugPikiNishimura/KingBack.cpp: + .text start:0x80179E08 end:0x8017A1AC + .data start:0x802D0E18 end:0x802D1080 + .sdata start:0x803E53A0 end:0x803E5400 + .sdata2 start:0x803EB038 end:0x803EB048 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x8017A1AC end:0x8017A544 + .data start:0x802D1080 end:0x802D12D8 + .sdata start:0x803E5400 end:0x803E5478 + .sdata2 start:0x803EB048 end:0x803EB060 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x8017A544 end:0x8017A954 + .data start:0x802D12D8 end:0x802D1330 + .sdata start:0x803E5478 end:0x803E5488 + .sdata2 start:0x803EB060 end:0x803EB068 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x8017A954 end:0x8017AD44 + .data start:0x802D1330 end:0x802D1598 + .sdata start:0x803E5488 end:0x803E54F8 + .sdata2 start:0x803EB068 end:0x803EB080 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x8017AD44 end:0x8017B3D4 + .data start:0x802D1598 end:0x802D15F8 + .sdata start:0x803E54F8 end:0x803E5510 + .sdata2 start:0x803EB080 end:0x803EB088 + +plugPikiNishimura/Mizu.cpp: + .text start:0x8017B3D4 end:0x8017B858 + .data start:0x802D15F8 end:0x802D1850 + .sdata start:0x803E5510 end:0x803E5578 + .sdata2 start:0x803EB088 end:0x803EB0A0 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x8017B858 end:0x8017C2C8 + .data start:0x802D1850 end:0x802D1938 + .sdata start:0x803E5578 end:0x803E55B0 + .sdata2 start:0x803EB0A0 end:0x803EB0B8 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802D1938 end:0x802D2468 + .sdata start:0x803E55B0 end:0x803E5600 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x8017C2C8 end:0x8017C868 + .sdata2 start:0x803EB0B8 end:0x803EB0E0 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x8017C868 end:0x8017D680 + .sbss start:0x803E7E98 end:0x803E7EA0 + .sdata2 start:0x803EB0E0 end:0x803EB0F0 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x8017D680 end:0x8017D744 + .sdata2 start:0x803EB0F0 end:0x803EB0F8 + +plugPikiOgawa/ogTest.cpp: + .text start:0x8017D744 end:0x8017E850 + .data start:0x802D2468 end:0x802D2750 + .sdata start:0x803E5600 end:0x803E5678 + .sdata2 start:0x803EB0F8 end:0x803EB118 + +plugPikiOgawa/ogSub.cpp: + .text start:0x8017E850 end:0x80181090 + .data start:0x802D2750 end:0x802D3010 + .bss start:0x803D1EE0 end:0x803D22E0 + .sdata start:0x803E5678 end:0x803E5728 + .sdata2 start:0x803EB118 end:0x803EB158 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x80181090 end:0x80182318 + .data start:0x802D3010 end:0x802D30C0 + .sdata start:0x803E5728 end:0x803E5730 + .sdata2 start:0x803EB158 end:0x803EB168 + +plugPikiOgawa/ogPause.cpp: + .text start:0x80182318 end:0x80182B94 + .data start:0x802D30C0 end:0x802D3128 + .sdata2 start:0x803EB168 end:0x803EB180 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x80182B94 end:0x80182DE0 + .data start:0x802D3128 end:0x802D3140 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802D3140 end:0x802D4058 + .sdata start:0x803E5730 end:0x803E59F0 + +plugPikiOgawa/ogMap.cpp: + .text start:0x80182DE0 end:0x80183408 + .data start:0x802D4058 end:0x802D4088 + .sdata2 start:0x803EB180 end:0x803EB1A0 + +plugPikiOgawa/ogResult.cpp: + .text start:0x80183408 end:0x801850A0 + .data start:0x802D4088 end:0x802D50B8 + .sdata start:0x803E59F0 end:0x803E59F8 + .sdata2 start:0x803EB1A0 end:0x803EB1D0 + +plugPikiOgawa/ogRader.cpp: + .text start:0x801850A0 end:0x80187790 + .data start:0x802D50B8 end:0x802D5188 + .sdata2 start:0x803EB1D0 end:0x803EB260 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x80187790 end:0x8018BB50 + .data start:0x802D5188 end:0x802D52E0 + .sdata start:0x803E59F8 end:0x803E5A40 + .sdata2 start:0x803EB260 end:0x803EB2B8 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x8018BB50 end:0x8018D04C + .data start:0x802D52E0 end:0x802D5CC8 + .sdata start:0x803E5A40 end:0x803E5A98 + .sdata2 start:0x803EB2B8 end:0x803EB300 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x8018D04C end:0x8018F1F4 + .data start:0x802D5CC8 end:0x802D5DE8 + .sdata start:0x803E5A98 end:0x803E5AA8 + .sdata2 start:0x803EB300 end:0x803EB328 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x8018F1F4 end:0x80191294 + .data start:0x802D5DE8 end:0x802D5E68 + .bss start:0x803D22E0 end:0x803D2308 + .sdata start:0x803E5AA8 end:0x803E5AE8 + .sdata2 start:0x803EB328 end:0x803EB378 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x80191294 end:0x80193594 + .data start:0x802D5E68 end:0x802D6010 + .sdata start:0x803E5AE8 end:0x803E5B18 + .sdata2 start:0x803EB378 end:0x803EB3E8 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x80193594 end:0x8019399C + .data start:0x802D6010 end:0x802D6028 + .sdata2 start:0x803EB3E8 end:0x803EB3F8 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x8019399C end:0x80194204 + .data start:0x802D6028 end:0x802D6058 + .sdata2 start:0x803EB3F8 end:0x803EB418 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x80194204 end:0x80195740 + .data start:0x802D6058 end:0x802D6070 + .sdata start:0x803E5B18 end:0x803E5B38 + .sdata2 start:0x803EB418 end:0x803EB438 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80195740 end:0x80196864 + .data start:0x802D6070 end:0x802D6120 + .sdata2 start:0x803EB438 end:0x803EB458 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x80196864 end:0x8019719C + .sdata2 start:0x803EB458 end:0x803EB478 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x8019719C end:0x80197AD8 + .sdata start:0x803E5B38 end:0x803E5B50 + .sdata2 start:0x803EB478 end:0x803EB4A8 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x80197AD8 end:0x80197F28 + .sdata start:0x803E5B50 end:0x803E5B60 + .sdata2 start:0x803EB4A8 end:0x803EB4E0 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x80197F28 end:0x80198988 + .data start:0x802D6120 end:0x802D6230 + .sdata2 start:0x803EB4E0 end:0x803EB4F0 + +plugPikiOgawa/ogStart.cpp: + .text start:0x80198988 end:0x80198D2C + .data start:0x802D6230 end:0x802D6248 + .sdata2 start:0x803EB4F0 end:0x803EB510 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x80198D2C end:0x80199414 + .data start:0x802D6248 end:0x802D6320 + .sdata start:0x803E5B60 end:0x803E5B80 + .sdata2 start:0x803EB510 end:0x803EB528 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x80199414 end:0x8019B804 + .data start:0x802D6320 end:0x802D6A58 + .sdata start:0x803E5B80 end:0x803E5CB0 + .sdata2 start:0x803EB528 end:0x803EB558 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x8019B804 end:0x8019B888 + .data start:0x802D6A58 end:0x802D6B90 + .sdata start:0x803E5CB0 end:0x803E5CF8 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x8019B888 end:0x8019B920 + .data start:0x802D6B90 end:0x802D6CC0 + .sdata start:0x803E5CF8 end:0x803E5D40 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019B920 end:0x8019BC60 + .sdata start:0x803E5D40 end:0x803E5D58 + .sdata2 start:0x803EB558 end:0x803EB570 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x8019BC60 end:0x8019CD0C + .data start:0x802D6CC0 end:0x802DA620 + .sdata start:0x803E5D58 end:0x803E5E00 + .sbss start:0x803E7EA0 end:0x803E7EA8 + .sdata2 start:0x803EB570 end:0x803EB590 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x8019CD0C end:0x801A0F24 + .data start:0x802DA620 end:0x802DA718 + .sdata start:0x803E5E00 end:0x803E5E20 + .sdata2 start:0x803EB590 end:0x803EB5E0 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x801A0F24 end:0x801A1100 + .data start:0x802DA718 end:0x802DA788 + .sdata start:0x803E5E20 end:0x803E5E30 + +plugPikiYamashita/solidField.cpp: + .data start:0x802DA788 end:0x802DD7A0 + +plugPikiYamashita/particleManager.cpp: + .text start:0x801A1100 end:0x801A17D4 + .sdata start:0x803E5E30 end:0x803E5E38 + .sdata2 start:0x803EB5E0 end:0x803EB5E8 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x801A17D4 end:0x801A1E10 + .data start:0x802DD7A0 end:0x802DD898 + .sdata start:0x803E5E38 end:0x803E5E88 + .sdata2 start:0x803EB5E8 end:0x803EB5F0 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A1E10 end:0x801A226C + .sdata2 start:0x803EB5F0 end:0x803EB608 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A226C end:0x801A2754 + .sdata2 start:0x803EB608 end:0x803EB630 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A2754 end:0x801A30F8 + .data start:0x802DD898 end:0x802DDC70 + .sdata start:0x803E5E88 end:0x803E5F20 + .sdata2 start:0x803EB630 end:0x803EB658 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A30F8 end:0x801A3594 + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A3594 end:0x801A35D0 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A35D0 end:0x801A5774 + .ctors start:0x80221F94 end:0x80221F98 + .data start:0x802DDC70 end:0x802DE4E0 + .sdata start:0x803E5F20 end:0x803E6078 + .sbss start:0x803E7EA8 end:0x803E7EB0 + .sdata2 start:0x803EB658 end:0x803EB6E0 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801A5774 end:0x801A8490 + .ctors start:0x80221F98 end:0x80221F9C + .data start:0x802DE4E0 end:0x802DF130 + .sdata start:0x803E6078 end:0x803E6220 + .sbss start:0x803E7EB0 end:0x803E7EC0 + .sdata2 start:0x803EB6E0 end:0x803EB788 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801A8490 end:0x801A8C2C + .data start:0x802DF130 end:0x802DF3A8 + .sdata start:0x803E6220 end:0x803E6280 + .sdata2 start:0x803EB788 end:0x803EB798 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801A8C2C end:0x801ACC54 + .data start:0x802DF3A8 end:0x802DFC30 + .sdata start:0x803E6280 end:0x803E6420 + .sdata2 start:0x803EB798 end:0x803EB810 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801ACC54 end:0x801AD094 + .data start:0x802DFC30 end:0x802DFD20 + .sdata start:0x803E6420 end:0x803E6440 + .sdata2 start:0x803EB810 end:0x803EB820 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801AD094 end:0x801AE19C + .data start:0x802DFD20 end:0x802E01E8 + .sdata start:0x803E6440 end:0x803E64D8 + .sdata2 start:0x803EB820 end:0x803EB830 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801AE19C end:0x801AF7AC + .data start:0x802E01E8 end:0x802E05B0 + .sdata start:0x803E64D8 end:0x803E6580 + .sdata2 start:0x803EB830 end:0x803EB860 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801AF7AC end:0x801AFCF0 + .data start:0x802E05B0 end:0x802E05F8 + .sdata start:0x803E6580 end:0x803E6588 + .sdata2 start:0x803EB860 end:0x803EB870 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801AFCF0 end:0x801B0190 + .data start:0x802E05F8 end:0x802E0648 + .sdata start:0x803E6588 end:0x803E6598 + .sdata2 start:0x803EB870 end:0x803EB880 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801B0190 end:0x801B069C + .data start:0x802E0648 end:0x802E06C0 + .sdata start:0x803E6598 end:0x803E65F0 + .sdata2 start:0x803EB880 end:0x803EB8A8 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801B069C end:0x801B18C4 + .data start:0x802E06C0 end:0x802E0700 + .sdata start:0x803E65F0 end:0x803E6628 + .sdata2 start:0x803EB8A8 end:0x803EB8B8 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B18C4 end:0x801B2B50 + .data start:0x802E0700 end:0x802E0768 + .sdata start:0x803E6628 end:0x803E6640 + .sdata2 start:0x803EB8B8 end:0x803EB8E0 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B2B50 end:0x801B3274 + .data start:0x802E0768 end:0x802E0820 + .sdata start:0x803E6640 end:0x803E6658 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B3274 end:0x801B33C8 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B33C8 end:0x801B3628 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B3628 end:0x801B37F0 + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B37F0 end:0x801B44AC + .data start:0x802E0820 end:0x802E0888 + .sdata start:0x803E6658 end:0x803E6670 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B44AC end:0x801B49A4 + .data start:0x802E0888 end:0x802E08F0 + .sdata start:0x803E6670 end:0x803E6688 + .sdata2 start:0x803EB8E0 end:0x803EB8E8 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B49A4 end:0x801B5C64 + .data start:0x802E08F0 end:0x802E0950 + .sdata2 start:0x803EB8E8 end:0x803EB910 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801B5C64 end:0x801B6338 + .data start:0x802E0950 end:0x802E09B0 + .sdata start:0x803E6688 end:0x803E66A0 + .sdata2 start:0x803EB910 end:0x803EB938 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801B6338 end:0x801BA13C + .data start:0x802E09B0 end:0x802E1118 + .sdata start:0x803E66A0 end:0x803E6748 + .sbss start:0x803E7EC0 end:0x803E7EC8 + .sdata2 start:0x803EB938 end:0x803EB9F0 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801BA13C end:0x801BA600 + .sdata start:0x803E6748 end:0x803E6750 + .sdata2 start:0x803EB9F0 end:0x803EBA28 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801BA600 end:0x801BF574 + .data start:0x802E1118 end:0x802E1488 + .bss start:0x803D2308 end:0x803D2360 + .sdata start:0x803E6750 end:0x803E6800 + .sbss start:0x803E7EC8 end:0x803E7ED0 + .sdata2 start:0x803EBA28 end:0x803EBAA0 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801BF574 end:0x801C0310 + .data start:0x802E1488 end:0x802E1590 + .bss start:0x803D2360 end:0x803D23B0 + .sdata start:0x803E6800 end:0x803E6840 + .sdata2 start:0x803EBAA0 end:0x803EBAF0 + +plugPikiYamashita/zenController.cpp: + .text start:0x801C0310 end:0x801C049C + .sbss start:0x803E7ED0 end:0x803E7ED8 + .sdata2 start:0x803EBAF0 end:0x803EBB00 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801C049C end:0x801C10A0 + .data start:0x802E1590 end:0x802E15A8 + .sdata start:0x803E6840 end:0x803E6850 + .sdata2 start:0x803EBB00 end:0x803EBB50 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801C10A0 end:0x801C1140 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801C1140 end:0x801C277C + .data start:0x802E15A8 end:0x802E1720 + .sdata start:0x803E6850 end:0x803E6888 + .sdata2 start:0x803EBB50 end:0x803EBB70 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C277C end:0x801C4960 + .data start:0x802E1720 end:0x802E1778 + .sdata start:0x803E6888 end:0x803E68D0 + .sdata2 start:0x803EBB70 end:0x803EBBB8 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C4960 end:0x801C59D4 + .data start:0x802E1778 end:0x802E1850 + .sdata start:0x803E68D0 end:0x803E6930 + .sdata2 start:0x803EBBB8 end:0x803EBBE0 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801C59D4 end:0x801C94CC + .data start:0x802E1850 end:0x802E1FF8 + .sdata start:0x803E6930 end:0x803E6A68 + .sdata2 start:0x803EBBE0 end:0x803EBC98 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801C94CC end:0x801CA2A8 + .data start:0x802E1FF8 end:0x802E20C8 + .sdata start:0x803E6A68 end:0x803E6AA8 + .sdata2 start:0x803EBC98 end:0x803EBCF8 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801CA2A8 end:0x801CBB68 + .data start:0x802E20C8 end:0x802E2710 + .sdata start:0x803E6AA8 end:0x803E6B80 + .sdata2 start:0x803EBCF8 end:0x803EBD58 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801CBB68 end:0x801CD720 + .data start:0x802E2710 end:0x802E2E00 + .sdata start:0x803E6B80 end:0x803E6C48 + .sdata2 start:0x803EBD58 end:0x803EBDB8 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801CD720 end:0x801CFE0C + .data start:0x802E2E00 end:0x802E38B0 + .sdata start:0x803E6C48 end:0x803E6D90 + .sdata2 start:0x803EBDB8 end:0x803EBE38 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801CFE0C end:0x801D0FBC + .data start:0x802E38B0 end:0x802E3D60 + .sdata start:0x803E6D90 end:0x803E6E28 + .sdata2 start:0x803EBE38 end:0x803EBEA0 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801D0FBC end:0x801D4800 + .data start:0x802E3D60 end:0x802E4630 + .sdata start:0x803E6E28 end:0x803E6F68 + .sdata2 start:0x803EBEA0 end:0x803EBF20 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801D4800 end:0x801D5E50 + .ctors start:0x80221F9C end:0x80221FA0 + .data start:0x802E4630 end:0x802E4B60 + .sdata start:0x803E6F68 end:0x803E7010 + .sbss start:0x803E7ED8 end:0x803E7EE0 + .sdata2 start:0x803EBF20 end:0x803EBF98 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801D5E50 end:0x801D624C + .data start:0x802E4B60 end:0x802E4BC8 + .sdata start:0x803E7010 end:0x803E7028 + .sdata2 start:0x803EBF98 end:0x803EBFA0 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801D624C end:0x801DA088 + .data start:0x802E4BC8 end:0x802E5788 + .sdata start:0x803E7028 end:0x803E7188 + .sdata2 start:0x803EBFA0 end:0x803EC038 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801DA088 end:0x801DA250 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801DA250 end:0x801DA814 + .data start:0x802E5788 end:0x802E57B0 + .sdata2 start:0x803EC038 end:0x803EC048 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801DA814 end:0x801DB14C + .sdata start:0x803E7188 end:0x803E7190 + .sdata2 start:0x803EC048 end:0x803EC078 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801DB14C end:0x801E7AB0 + .data start:0x802E57B0 end:0x802E5A38 + .sdata start:0x803E7190 end:0x803E73A0 + .sbss start:0x803E7EE0 end:0x803E7EE8 + .sdata2 start:0x803EC078 end:0x803EC160 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801E7AB0 end:0x801E8900 + .data start:0x802E5A38 end:0x802E5A50 + .sdata start:0x803E73A0 end:0x803E73A8 + .sdata2 start:0x803EC160 end:0x803EC1A8 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801E8900 end:0x801E9654 + .data start:0x802E5A50 end:0x802E5A80 + .sdata start:0x803E73A8 end:0x803E73B0 + .sdata2 start:0x803EC1A8 end:0x803EC218 + +plugPikiYamashita/yai.cpp: + .text start:0x801E9654 end:0x801E98C0 + .data start:0x802E5A80 end:0x802E5AD0 + .sdata start:0x803E73B0 end:0x803E73C0 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801E98C0 end:0x801E9CF8 + .data start:0x802E5AD0 end:0x802E63D8 + .sdata start:0x803E73C0 end:0x803E73D8 + .sdata2 start:0x803EC218 end:0x803EC238 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801E9CF8 end:0x801E9FA0 + .data start:0x802E63D8 end:0x802E63F0 + .sdata2 start:0x803EC238 end:0x803EC248 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801E9FA0 end:0x801EAA70 + .data start:0x802E63F0 end:0x802E6760 + .sdata start:0x803E73D8 end:0x803E7468 + .sdata2 start:0x803EC248 end:0x803EC2A8 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801EAA70 end:0x801EC478 + .data start:0x802E6760 end:0x802E6C78 + .sdata start:0x803E7468 end:0x803E7508 + .sdata2 start:0x803EC2A8 end:0x803EC320 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801EC478 end:0x801ED480 + .data start:0x802E6C78 end:0x802E6D98 + .sdata start:0x803E7508 end:0x803E75B8 + .sdata2 start:0x803EC320 end:0x803EC348 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801ED480 end:0x801ED8AC + .data start:0x802E6D98 end:0x802E6DC0 + .sdata start:0x803E75B8 end:0x803E75C0 + .sdata2 start:0x803EC348 end:0x803EC378 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801ED8AC end:0x801EE2E8 + .data start:0x802E6DC0 end:0x802E6E18 + .sdata start:0x803E75C0 end:0x803E75E8 + .sdata2 start:0x803EC378 end:0x803EC398 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801EE2E8 end:0x801EEB68 + .data start:0x802E6E18 end:0x802E6E88 + .sdata start:0x803E75E8 end:0x803E75F0 + .sdata2 start:0x803EC398 end:0x803EC3C8 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801EEB68 end:0x801F014C + .data start:0x802E6E88 end:0x802E7088 + .sdata start:0x803E75F0 end:0x803E7650 + .sdata2 start:0x803EC3C8 end:0x803EC3E8 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801F014C end:0x801F0A80 + .data start:0x802E7088 end:0x802E7130 + .sdata start:0x803E7650 end:0x803E7688 + .sdata2 start:0x803EC3E8 end:0x803EC410 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801F0A80 end:0x801F14F4 + .data start:0x802E7130 end:0x802E7148 + .sdata start:0x803E7688 end:0x803E76B8 + .sdata2 start:0x803EC410 end:0x803EC418 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801F14F4 end:0x801F19D8 + .sdata2 start:0x803EC418 end:0x803EC438 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F19D8 end:0x801F1D60 + .sdata2 start:0x803EC438 end:0x803EC448 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F1D60 end:0x801F2424 + .data start:0x802E7148 end:0x802E7160 + .sdata start:0x803E76B8 end:0x803E76C8 + .sdata2 start:0x803EC448 end:0x803EC458 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F2424 end:0x801F265C + .sdata start:0x803E76C8 end:0x803E76D0 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F265C end:0x801F3560 + .data start:0x802E7160 end:0x802E71E0 + .sdata2 start:0x803EC458 end:0x803EC490 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F3560 end:0x801F3A38 + .data start:0x802E71E0 end:0x802E71F0 + .sdata2 start:0x803EC490 end:0x803EC4A8 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F3A38 end:0x801F5500 + .data start:0x802E71F0 end:0x802E7258 + .sdata start:0x803E76D0 end:0x803E76F8 + .sdata2 start:0x803EC4A8 end:0x803EC4D8 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801F5500 end:0x801F5944 + .data start:0x802E7258 end:0x802E72A8 + +base/PPCArch.c: + .text start:0x801F5944 end:0x801F59A8 + +os/OS.c: + .text start:0x801F59A8 end:0x801F60C0 + .data start:0x802E72A8 end:0x802E7468 + .sbss start:0x803E7EE8 end:0x803E7EF8 + +os/OSAlarm.c: + .text start:0x801F60C0 end:0x801F67AC + .sbss start:0x803E7EF8 end:0x803E7F00 + +os/OSAlloc.c: + .text start:0x801F67AC end:0x801F6918 + .sdata start:0x803E76F8 end:0x803E7700 + .sbss start:0x803E7F00 end:0x803E7F10 + +os/OSArena.c: + .text start:0x801F6918 end:0x801F6938 + .sdata start:0x803E7700 end:0x803E7708 + .sbss start:0x803E7F10 end:0x803E7F18 + +os/OSAudioSystem.c: + .text start:0x801F6938 end:0x801F6BA4 + .data start:0x802E7468 end:0x802E74E8 + +os/OSCache.c: + .text start:0x801F6BA4 end:0x801F7028 + .data start:0x802E74E8 end:0x802E7718 + +os/OSContext.c: + .text start:0x801F7028 end:0x801F7890 + .data start:0x802E7718 end:0x802E78F0 + +os/OSError.c: + .text start:0x801F7890 end:0x801F7BCC + .data start:0x802E78F0 end:0x802E7B28 + .bss start:0x803D23B0 end:0x803D23F0 + .sdata start:0x803E7708 end:0x803E7710 + +os/OSExi.c: + .text start:0x801F7BCC end:0x801F8F24 + .bss start:0x803D23F0 end:0x803D24A0 + +os/OSFont.c: + .text start:0x801F8F24 end:0x801F8F7C + .sdata start:0x803E7710 end:0x803E7718 + +os/OSInterrupt.c: + .text start:0x801F8F7C end:0x801F979C + .data start:0x802E7B28 end:0x802E7BC0 + .sbss start:0x803E7F18 end:0x803E7F20 + +os/OSLink.c: + .text start:0x801F979C end:0x801F97B4 + +os/OSMessage.c: + .text start:0x801F97B4 end:0x801F99B8 + +os/OSMutex.c: + .text start:0x801F99B8 end:0x801F9EC4 + +os/OSReboot.c: + .text start:0x801F9EC4 end:0x801FA0C0 + .bss start:0x803D24A0 end:0x803D24C0 + .sbss start:0x803E7F20 end:0x803E7F28 + +os/OSReset.c: + .text start:0x801FA0C0 end:0x801FA3B4 + .sbss start:0x803E7F28 end:0x803E7F30 + +os/OSResetSW.c: + .text start:0x801FA3B4 end:0x801FA69C + .sbss start:0x803E7F30 end:0x803E7F50 + +os/OSRtc.c: + .text start:0x801FA69C end:0x801FAFA8 + .bss start:0x803D24C0 end:0x803D2518 + +os/OSSerial.c: + .text start:0x801FAFA8 end:0x801FB928 + .data start:0x802E7BC0 end:0x802E7BD8 + .bss start:0x803D2518 end:0x803D2638 + +os/OSSync.c: + .text start:0x801FB928 end:0x801FB9AC + +os/OSThread.c: + .text start:0x801FB9AC end:0x801FD3A0 + .data start:0x802E7BD8 end:0x802E83E8 + .bss start:0x803D2638 end:0x803D3020 + .sdata start:0x803E7718 end:0x803E7720 + .sbss start:0x803E7F50 end:0x803E7F60 + +os/OSTime.c: + .text start:0x801FD3A0 end:0x801FD7C4 + .data start:0x802E83E8 end:0x802E8448 + +os/OSUartExi.c: + .text start:0x801FD7C4 end:0x801FDA14 + .sbss start:0x803E7F60 end:0x803E7F68 + +os/__start.c: + .init start:0x80003100 end:0x800032CC + .text start:0x801FDA14 end:0x801FDA14 + +os/__ppc_eabi_init.cpp: + .init start:0x800032CC end:0x80003320 + .text start:0x801FDA14 end:0x801FDAA8 + +db/db.c: + .text start:0x801FDAA8 end:0x801FDB94 + .data start:0x802E8448 end:0x802E8460 + .sbss start:0x803E7F68 end:0x803E7F70 + +mtx/mtx.c: + .text start:0x801FDB94 end:0x801FDF20 + .sdata start:0x803E7720 end:0x803E7728 + .sdata2 start:0x803EC4D8 end:0x803EC4F0 + +mtx/mtx44.c: + .text start:0x801FDF20 end:0x801FE088 + .sdata2 start:0x803EC4F0 end:0x803EC508 + +mtx/vec.c: + .text start:0x801FE088 end:0x801FE12C + .sdata2 start:0x803EC508 end:0x803EC520 + +dvd/dvdlow.c: + .text start:0x801FE12C end:0x801FEF80 + .bss start:0x803D3020 end:0x803D3100 + .sdata start:0x803E7728 end:0x803E7730 + .sbss start:0x803E7F70 end:0x803E7FB8 + +dvd/dvdfs.c: + .text start:0x801FEF80 end:0x801FF964 + .data start:0x802E8460 end:0x802E8818 + .sdata start:0x803E7730 end:0x803E7738 + .sbss start:0x803E7FB8 end:0x803E7FD8 + +dvd/dvd.c: + .text start:0x801FF964 end:0x80201F04 + .data start:0x802E8818 end:0x802E8930 + .bss start:0x803D3100 end:0x803D31D8 + .sdata start:0x803E7738 end:0x803E7740 + .sbss start:0x803E7FD8 end:0x803E8020 + +dvd/dvdqueue.c: + .text start:0x80201F04 end:0x802020FC + .bss start:0x803D31D8 end:0x803D31F8 + +dvd/dvderror.c: + .text start:0x802020FC end:0x80202254 + .data start:0x802E8930 end:0x802E8970 + +dvd/fstload.c: + .text start:0x80202254 end:0x8020247C + .data start:0x802E8970 end:0x802E89E0 + .bss start:0x803D31F8 end:0x803D3268 + .sdata start:0x803E7740 end:0x803E7750 + .sbss start:0x803E8020 end:0x803E8030 + +vi/vi.c: + .text start:0x8020247C end:0x80203BCC + .data start:0x802E89E0 end:0x802E8B48 + .bss start:0x803D3268 end:0x803D33B0 + .sbss start:0x803E8030 end:0x803E8078 + +pad/Padclamp.c: + .text start:0x80203BCC end:0x80203E04 + .sdata start:0x803E7750 end:0x803E7758 + +pad/Pad.c: + .text start:0x80203E04 end:0x80206004 + .data start:0x802E8B48 end:0x802E8BB0 + .bss start:0x803D33B0 end:0x803D3420 + .sdata start:0x803E7758 end:0x803E7780 + .sbss start:0x803E8078 end:0x803E80A8 + +ai/ai.c: + .text start:0x80206004 end:0x8020690C + .sbss start:0x803E80A8 end:0x803E80E8 + +ar/ar.c: + .text start:0x8020690C end:0x80207A80 + .sbss start:0x803E80E8 end:0x803E8100 + .sdata2 start:0x803EC520 end:0x803EC530 + +ar/arq.c: + .text start:0x80207A80 end:0x80207E14 + .sbss start:0x803E8100 end:0x803E8128 + +dsp/dsp.c: + .text start:0x80207E14 end:0x80207E60 + +card/CARDBios.c: + .text start:0x80207E60 end:0x80209214 + .data start:0x802E8BB0 end:0x802E8BC0 + .bss start:0x803D3420 end:0x803D3650 + .sbss start:0x803E8128 end:0x803E8130 + +card/CARDRdwr.c: + .text start:0x80209214 end:0x802094AC + +card/CARDBlock.c: + .text start:0x802094AC end:0x802098B0 + +card/CARDDir.c: + .text start:0x802098B0 end:0x80209B14 + +card/CARDCheck.c: + .text start:0x80209B14 end:0x8020AAA4 + +card/CARDMount.c: + .text start:0x8020AAA4 end:0x8020B29C + .data start:0x802E8BC0 end:0x802E8C00 + +card/CARDFormat.c: + .text start:0x8020B29C end:0x8020BA80 + +card/CARDOpen.c: + .text start:0x8020BA80 end:0x8020BEE8 + +card/CARDCreate.c: + .text start:0x8020BEE8 end:0x8020C278 + +card/CARDRead.c: + .text start:0x8020C278 end:0x8020C6EC + +card/CARDWrite.c: + .text start:0x8020C6EC end:0x8020CA64 + +card/CARDDelete.c: + .text start:0x8020CA64 end:0x8020CC78 + +card/CARDStat.c: + .text start:0x8020CC78 end:0x8020D150 + +card/CARDRename.c: + .text start:0x8020D150 end:0x8020D388 + +hio/hio.c: + .text start:0x8020D388 end:0x8020DB60 + .sdata start:0x803E7780 end:0x803E7788 + .sbss start:0x803E8130 end:0x803E8140 + +gx/GXInit.c: + .text start:0x8020DB60 end:0x8020EB40 + .bss start:0x803D3650 end:0x803D3BC8 + .sdata start:0x803E7788 end:0x803E7790 + .sbss start:0x803E8140 end:0x803E8150 + .sdata2 start:0x803EC530 end:0x803EC550 + +gx/GXFifo.c: + .text start:0x8020EB40 end:0x8020F2A8 + .sbss start:0x803E8150 end:0x803E8170 + +gx/GXAttr.c: + .text start:0x8020F2A8 end:0x80210770 + .data start:0x802E8C00 end:0x802E8DC8 + .sdata start:0x803E7790 end:0x803E77A0 + +gx/GXMisc.c: + .text start:0x80210770 end:0x80210B48 + .sbss start:0x803E8170 end:0x803E8188 + +gx/GXGeometry.c: + .text start:0x80210B48 end:0x80210F00 + +gx/GXFrameBuf.c: + .text start:0x80210F00 end:0x8021197C + .data start:0x802E8DC8 end:0x802E8E80 + .sdata2 start:0x803EC550 end:0x803EC560 + +gx/GXLight.c: + .text start:0x8021197C end:0x80212104 + .sdata2 start:0x803EC560 end:0x803EC580 + +gx/GXTexture.c: + .text start:0x80212104 end:0x80212BC8 + .data start:0x802E8E80 end:0x802E8FB0 + .sdata start:0x803E77A0 end:0x803E77E0 + .sdata2 start:0x803EC580 end:0x803EC5A8 + +gx/GXBump.c: + .text start:0x80212BC8 end:0x80212F9C + +gx/GXTev.c: + .text start:0x80212F9C end:0x80213998 + .data start:0x802E8FB0 end:0x802E8FD8 + +gx/GXPixel.c: + .text start:0x80213998 end:0x802140E4 + .data start:0x802E8FD8 end:0x802E8FF8 + .sdata2 start:0x803EC5A8 end:0x803EC5D8 + +gx/GXStubs.c: + .text start:0x802140E4 end:0x802140E8 + +gx/GXDisplayList.c: + .text start:0x802140E8 end:0x802142F4 + .bss start:0x803D3BC8 end:0x803D40E0 + .sbss start:0x803E8188 end:0x803E8190 + +gx/GXTransform.c: + .text start:0x802142F4 end:0x80214870 + .sdata2 start:0x803EC5D8 end:0x803EC5E8 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x80214870 end:0x80214964 + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x80214964 end:0x802149C4 + .dtors start:0x80221FC8 end:0x80221FCC + .sbss start:0x803E8190 end:0x803E8198 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x802149C4 end:0x802149F4 + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x800054C0 end:0x80005500 + extabindex start:0x80005500 end:0x80005530 + .text start:0x802149F4 end:0x80214D30 + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x80214D30 end:0x80214D58 + .rodata start:0x80222758 end:0x80222768 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x80214D58 end:0x80214DC8 + .bss start:0x803D40E0 end:0x803D40F0 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x80214DC8 end:0x802154C0 + .rodata start:0x80222768 end:0x80222780 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x802154C0 end:0x8021553C + .ctors start:0x80221F60 end:0x80221F64 + .dtors start:0x80221FC0 end:0x80221FC8 + .sdata start:0x803E77E0 end:0x803E77E8 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802E8FF8 end:0x802E90D0 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x8021553C end:0x80215648 + .bss start:0x803D40F0 end:0x803D42F0 + .sbss start:0x803E8198 end:0x803E81B0 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803E81B0 end:0x803E81B8 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x80215648 end:0x80215CA0 + .rodata start:0x80222780 end:0x80222808 + .sdata start:0x803E77E8 end:0x803E77F0 + .sdata2 start:0x803EC5E8 end:0x803EC618 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x80215CA0 end:0x80215CB0 + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x80215CB0 end:0x80215DB0 + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x80215DB0 end:0x80215DB4 + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x80215DB4 end:0x80215E04 + .rodata start:0x80222808 end:0x80222B08 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x80222B08 end:0x80222B10 + .data start:0x802E90D0 end:0x802E9100 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x80215E04 end:0x802160E0 + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x802160E0 end:0x8021616C + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003320 end:0x80003464 + .text start:0x8021616C end:0x802162B8 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x802162B8 end:0x80216594 + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x80216594 end:0x80216598 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x80216598 end:0x80218068 + .rodata start:0x80222B10 end:0x80222B20 + .data start:0x802E9100 end:0x802E9320 + .sdata start:0x803E77F0 end:0x803E77F8 + .sdata2 start:0x803EC618 end:0x803EC620 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x80218068 end:0x80218094 + .sdata start:0x803E77F8 end:0x803E7800 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x80218094 end:0x802190E8 + .rodata start:0x80222B20 end:0x80222B48 + .data start:0x802E9320 end:0x802E93F0 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x802190E8 end:0x8021942C + .sdata start:0x803E7800 end:0x803E7808 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x8021942C end:0x80219B9C + .rodata start:0x80222B48 end:0x80222B78 + .sdata2 start:0x803EC620 end:0x803EC630 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x80219B9C end:0x8021A510 + .data start:0x802E93F0 end:0x802E9478 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802E9478 end:0x802E94B0 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8021A510 end:0x8021A690 + .sbss start:0x803E81B8 end:0x803E81C0 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8021A690 end:0x8021A710 + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8021A710 end:0x8021A718 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x8021A718 end:0x8021A9B0 + .sdata2 start:0x803EC630 end:0x803EC688 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x8021A9B0 end:0x8021B1E8 + .rodata start:0x80222B78 end:0x80222BA8 + .sdata2 start:0x803EC688 end:0x803EC798 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x8021B1E8 end:0x8021B268 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x8021B268 end:0x8021B4A8 + .rodata start:0x80222BA8 end:0x80222C40 + .sdata2 start:0x803EC798 end:0x803EC7C0 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x8021B4A8 end:0x8021B4D4 + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x8021B4D4 end:0x8021B570 + .sdata2 start:0x803EC7C0 end:0x803EC7C8 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x8021B570 end:0x8021B6E8 + .sdata2 start:0x803EC7C8 end:0x803EC7F0 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x8021B6E8 end:0x8021B708 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x8021B708 end:0x8021B728 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x8021B728 end:0x8021B730 + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x8021B730 end:0x8021BAD0 + .rodata start:0x80222C40 end:0x80222CF8 + .sdata2 start:0x803EC7F0 end:0x803EC810 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x8021BAD0 end:0x8021BEBC + .ctors start:0x80221FA0 end:0x80221FA4 + .rodata start:0x80222CF8 end:0x80222D08 + .data start:0x802E94B0 end:0x802E94C0 + .sdata2 start:0x803EC810 end:0x803EC828 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x80222D08 end:0x80222D50 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x8021BEBC end:0x8021BF4C + .sdata2 start:0x803EC828 end:0x803EC840 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x8021BF4C end:0x8021C0B4 + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x8021C0B4 end:0x8021C310 + .bss start:0x803D42F0 end:0x803D4318 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x8021C310 end:0x8021C4A4 + .rodata start:0x80222D50 end:0x80222D70 + .bss start:0x803D4318 end:0x803D4320 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x8021C4A4 end:0x8021C4CC + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x8021C4CC end:0x8021CD14 + .bss start:0x803D4320 end:0x803D5CD0 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x8021CD14 end:0x8021CEDC + .bss start:0x803D5CD0 end:0x803D5CE8 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x8021CEDC end:0x8021CEE0 + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x8021CEE0 end:0x8021CF78 + .data start:0x802E94C0 end:0x802E9548 + .bss start:0x803D5CE8 end:0x803D5CF0 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x8021CF78 end:0x8021E21C + .data start:0x802E9548 end:0x802E9580 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x8021E21C end:0x8021E698 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x8021E698 end:0x8021E6B0 + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x8021E6B0 end:0x8021E788 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x8021E788 end:0x8021E7C0 + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003464 end:0x800034B8 + .text start:0x8021E7C0 end:0x8021E884 + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x8021E884 end:0x8021FE60 + .rodata start:0x80222D70 end:0x80222DBC + .data start:0x802E9580 end:0x802E95B0 + .bss start:0x803D5CF0 end:0x803D6270 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x800034B8 end:0x800053EC + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x800053EC end:0x8000540C + .text start:0x8021FE60 end:0x802200A0 + .data start:0x802E95B0 end:0x802E95F0 + .bss start:0x803D6270 end:0x803D6278 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x802200A0 end:0x80220418 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x80220418 end:0x80220460 + .bss start:0x803D6278 end:0x803D6280 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x80220460 end:0x802207B8 + .data start:0x802E95F0 end:0x802E9610 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x802207B8 end:0x802207EC + +amcExi2/AmcExi.c: + .text start:0x802207EC end:0x80220E2C + .bss start:0x803D6280 end:0x803D6298 + .sdata start:0x803E7808 end:0x803E7810 + +amcExi2/AmcExi2Comm.c: + .text start:0x80220E2C end:0x802214D0 + .data start:0x802E9610 end:0x802E9629 + .sdata start:0x803E7810 end:0x803E7818 + .sbss start:0x803E81C0 end:0x803E81D0 + +amcnotstub/amcnotstub.c: + .text start:0x802214D0 end:0x802214D8 + +OdemuExi2/DebuggerDriver.c: + .text start:0x802214D8 end:0x80221F58 + .sdata start:0x803E7818 end:0x803E7819 + .sbss start:0x803E81D0 end:0x803E81E5 + +odenotstub/odenotstub.c: + .text start:0x80221F58 end:0x80221F60 diff --git a/config/GPIE01_01/symbols.txt b/config/GPIE01_01/symbols.txt new file mode 100644 index 00000000..46838cd0 --- /dev/null +++ b/config/GPIE01_01/symbols.txt @@ -0,0 +1,29571 @@ +__start = .init:0x80003100; // type:function size:0xF0 scope:weak align:4 +__init_registers = .init:0x800031F0; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x8000320C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800032CC; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x800032EC; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003320; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x80003350; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003414; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x80003464; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x80003488; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x800034B8; // type:label scope:global +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x800053EC; // type:label scope:global +__TRK_reset = .init:0x800053EC; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x8000540C; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x80005490; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x800054C0; // type:object size:0x8 scope:local align:4 +@174 = extab:0x800054C8; // type:object size:0x18 scope:local align:4 +@182 = extab:0x800054E0; // type:object size:0x8 scope:local align:4 +@201 = extab:0x800054E8; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005500; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000550C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005518; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005524; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005530; // type:object size:0x20 scope:global +main = .text:0x80005560; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005600; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005620; // type:function size:0x4 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005640; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x800056C0; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x80005720; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005780; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x80005800; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x800058C0; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x800059A0; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005A80; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005B80; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005C20; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005DC0; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005E80; // type:function size:0x8 scope:global align:32 +Jac_GetOutputMode = .text:0x80005EA0; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005EC0; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005F00; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80005F40; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80005F80; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006080; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x800060C0; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x800061A0; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x800061C0; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x80006220; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x800062C0; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x800062E0; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x80006300; // type:function size:0x44 scope:local align:32 +StopAudioThread = .text:0x80006360; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x800063C0; // type:function size:0x80 scope:local align:32 +__DspSync__FsP9OSContext = .text:0x80006440; // type:function size:0x68 scope:local align:32 +__DspReg__Fv = .text:0x800064C0; // type:function size:0x44 scope:local align:32 +audioproc__FPv = .text:0x80006520; // type:function size:0x130 scope:local align:32 +OSInitFastCast = .text:0x80006660; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x800066A0; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x800067E0; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006B80; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006BA0; // type:function size:0x250 scope:global align:32 +UpdateDSP__Fv = .text:0x80006E00; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006E60; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006EA0; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006EE0; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x800070E0; // type:function size:0x24 scope:global align:32 +ResetPlayerCallback = .text:0x80007120; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80007160; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x800071C0; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x80007220; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x800072E0; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x80007360; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x800073E0; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x80007440; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x800074E0; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x80007540; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x800075C0; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x80007640; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x80007680; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x80007720; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x80007780; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x800077E0; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x80007820; // type:function size:0xD0 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007900; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x800079A0; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x800079E0; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x80007A20; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007A60; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007AC0; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007B80; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007BA0; // type:function size:0x22C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007DE0; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007E80; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007F00; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80007F80; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80007FC0; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80008000; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x80008100; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x80008160; // type:function size:0x18 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008180; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x80008200; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x80008260; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x800082C0; // type:function size:0x3C scope:global align:32 +__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x80008300; // type:function size:0x280 scope:global align:32 +DSPInit = .text:0x80008580; // type:function size:0x4 scope:global align:32 +DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x800085A0; // type:function size:0x98 scope:global align:32 +DspBoot__Fv = .text:0x80008640; // type:function size:0x74 scope:global align:32 +DSPSendCommands__FPUlUl = .text:0x800086C0; // type:function size:0xA8 scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008780; // type:function size:0x48 scope:global align:32 +DSPWaitFinish__Fv = .text:0x800087E0; // type:function size:0x58 scope:global align:32 +DsetupTable__FUlUlUlUlUl = .text:0x80008840; // type:function size:0x48 scope:global align:32 +DsetMixerLevel__Ff = .text:0x800088A0; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800088E0; // type:function size:0x48 scope:global align:32 +DwaitFrame__Fv = .text:0x80008940; // type:function size:0x34 scope:global align:32 +DiplSec__FUl = .text:0x80008980; // type:function size:0x3C scope:global align:32 +DagbSec__FUl = .text:0x800089C0; // type:function size:0x3C scope:global align:32 +WriteTask__FUcUlPvPFPv_v = .text:0x80008A00; // type:function size:0x70 scope:local align:32 +DoTask__Fv = .text:0x80008A80; // type:function size:0xC0 scope:local align:32 +DspExtraTaskCheck__Fv = .text:0x80008B40; // type:function size:0x24 scope:global align:32 +Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x80008B80; // type:function size:0x4C scope:global align:32 +exnor_1st__FUlUl = .text:0x80008BE0; // type:function size:0x38 scope:local align:32 +exnor__FUlUl = .text:0x80008C20; // type:function size:0x38 scope:local align:32 +bitrev__FUl = .text:0x80008C60; // type:function size:0x7C scope:local align:32 +ReadArrayUnlock__FlUlPvli = .text:0x80008CE0; // type:function size:0x17C scope:local align:32 +GetInitVal__Fv = .text:0x80008E60; // type:function size:0x44 scope:local align:32 +DummyLen__Fv = .text:0x80008EC0; // type:function size:0x8C scope:local align:32 +__CARDUnlock = .text:0x80008F60; // type:function size:0x2B0 scope:global align:32 +DoneCallback__FPv = .text:0x80009220; // type:function size:0x1E0 scope:local align:32 +Channel_SetMixerLevel__Ff = .text:0x80009400; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x80009440; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80009460; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80009480; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x80009500; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x80009540; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x800095A0; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x800095C0; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80009660; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x800096C0; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x800097C0; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x800098C0; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x80009940; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x80009A60; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009BA0; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009BE0; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x80009C60; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x80009D40; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x80009E20; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x80009E60; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x8000A1C0; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x8000A240; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8000A2E0; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A680; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A700; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A740; // type:function size:0x180 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A8C0; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A940; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000AA00; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000AA80; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000AB80; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000AC60; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000ACC0; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000AD00; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000AD60; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000AE80; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000AF60; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000B080; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000B160; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000B1E0; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000B2A0; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000B360; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000B560; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000B580; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000B5A0; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000B5E0; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000B600; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000B660; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B6C0; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B700; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B720; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B7E0; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B820; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B840; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B8A0; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B920; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B940; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000B980; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000B9C0; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000BA00; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000BA60; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000BAE0; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000BB20; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000BB60; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000BBA0; // type:function size:0x50 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000BC00; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000BC60; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000BCC0; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BE00; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000BE40; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000C0C0; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000C140; // type:function size:0x24 scope:global align:32 +Bank_Init__Fv = .text:0x8000C180; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000C1C0; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000C200; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000C240; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000C4E0; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000C580; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000C5C0; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C640; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C6E0; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C720; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C760; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C7E0; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C820; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C860; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C900; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CA80; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CB20; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000CC80; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000CCE0; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000CE00; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000CE80; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000CEA0; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000CEC0; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000CF20; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000CF80; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000CFC0; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000D000; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000D040; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000D0A0; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000D140; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000D1C0; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000D2E0; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000D340; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D740; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D7C0; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D800; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D840; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D8A0; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D920; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000D9A0; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000D9E0; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000DA20; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000DAA0; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000DBA0; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000DBE0; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000DC20; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000DC40; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000DCC0; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000DD00; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000DDA0; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000DDE0; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000DE40; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000DF00; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000DFE0; // type:function size:0x190 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000E180; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000E1E0; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000E220; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000E300; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000E340; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000E360; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000E3E0; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000E420; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000E480; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000E4E0; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000E520; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000E540; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000E580; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E6C0; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E740; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E7C0; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E800; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E8E0; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000E9C0; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000EA00; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000EB00; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000EC00; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000EC60; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000ECA0; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000EDA0; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000EDE0; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000EE40; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000F000; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000F1C0; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000F240; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000F320; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000F400; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000F460; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000F4C0; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000F520; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000F5A0; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F600; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F680; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F6E0; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F740; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F820; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F8C0; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F8E0; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000FAA0; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000FB60; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000FC00; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x800100A0; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x80010220; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x80010280; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x800102E0; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x80010340; // type:function size:0x3C scope:global align:32 +Jam_WritePortAppDirect = .text:0x80010380; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x80010400; // type:function size:0x30 scope:global align:32 +Jam_CheckPortAppDirect = .text:0x80010440; // type:function size:0x6C scope:global align:32 +Jam_InitRegistTrack = .text:0x800104C0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x80010500; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x800105C0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010660; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800106C0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800106E0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010720; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010780; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800107E0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x800108A0; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800108E0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010920; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010960; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x800109A0; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x800109E0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010A20; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010A60; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010A80; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x80010AE0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010E00; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010E20; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x800112E0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x80011400; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x800114E0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011620; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011720; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011760; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x80011800; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011840; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x800118A0; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800118E0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x800119E0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011A20; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011A80; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x80011AA0; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x80011AC0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011B20; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x80011BA0; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011C00; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011C40; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x80011CA0; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011D00; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011D40; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011D80; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x80011DC0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011E20; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011E60; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011E80; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x80011EC0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80011F00; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80011F80; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x80011FE0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80012060; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x800120A0; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x800120E0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80012120; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80012140; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x800121A0; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x800121E0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x80012200; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80012220; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80012260; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x800122A0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x800122E0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80012320; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80012380; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x800123C0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x80012400; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80012440; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x800124A0; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x80012500; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x800125E0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x80012600; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800126C0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012760; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800127C0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012820; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x80012900; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012940; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x800129E0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012A20; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x80012AA0; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x80012CC0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012E00; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x80012EC0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013780; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013840; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x80013BE0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013C80; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x80013CC0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013D20; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x80013DA0; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013E40; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x80013EE0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80013F60; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x80013FC0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80014020; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80014040; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x800143C0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80014460; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x800144C0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x80014500; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014680; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800146C0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014780; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800148E0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x800149A0; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x80014AC0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x80014BC0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x80014CA0; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014D40; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014D80; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x80014DC0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014E40; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014E60; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x80014EC0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80014F60; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80015020; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80015140; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80015180; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x800151C0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80015220; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x800152A0; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x800153E0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x800154C0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80015540; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x800155C0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800156E0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015840; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x800158A0; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x80015900; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015940; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015960; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80015AC0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x80015BC0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015C40; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015C80; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x80015CC0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015D40; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80015DC0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015E00; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x80015EA0; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80015F80; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x80015FA0; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x80015FE0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x800160A0; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80016280; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80016320; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x800165A0; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800167C0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x80016900; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016920; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016940; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016960; // type:function size:0x48 scope:global align:32 +Jac_SetProcessStatus = .text:0x800169C0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016A60; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x80016AE0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016B00; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016B20; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x80016BA0; // type:function size:0x3A0 scope:global align:32 +Jac_StopSystemSe = .text:0x80016F40; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x80016FC0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80017020; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80017040; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x80017100; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80017180; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x800171A0; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x800171C0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80017320; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80017380; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x800173C0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x800173E0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80017420; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80017460; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x800174E0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80017540; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80017560; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x800175E0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017640; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x800176A0; // type:function size:0xEC scope:global align:32 +Jac_EventFrameCheck = .text:0x800177A0; // type:function size:0xBC scope:global align:32 +Jac_UpdateCamera = .text:0x80017860; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x800179A0; // type:function size:0x118 scope:global align:32 +Jac_UpdateEventPosition = .text:0x80017AC0; // type:function size:0x5C scope:global align:32 +Jac_PlayEventAction = .text:0x80017B20; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017E00; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x80017EC0; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017F40; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x80017FA0; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80018040; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x80018080; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x800180C0; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80018120; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x80018200; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x800183A0; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x80018600; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018640; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x80018680; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018740; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x800187C0; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x80018980; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x800189C0; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018B40; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018B80; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x80018BE0; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018C80; // type:function size:0x244 scope:global align:32 +Jac_ChangeBgmMode = .text:0x80018EE0; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018F40; // type:function size:0xA8 scope:global align:32 +Jac_BgmFrameWork = .text:0x80019000; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80019140; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x80019200; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x80019380; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80019420; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x80019500; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x80019600; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x800196E0; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019720; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x80019760; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x800197A0; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019840; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x80019860; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x80019880; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019CE0; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019DE0; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019E00; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x80019E80; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019F00; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019F40; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x80019F80; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x8001A020; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x8001A0E0; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x8001A100; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x8001A120; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x8001A180; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x8001A1E0; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x8001A260; // type:function size:0x7C scope:global align:32 +DoSequence__FUlUl = .text:0x8001A2E0; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x8001A460; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x8001A4C0; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x8001A520; // type:function size:0x4F0 scope:global align:32 +Jac_DemoSound = .text:0x8001AA20; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001AA60; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001AAC0; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001AB40; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001ABA0; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001AC80; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001ADA0; // type:function size:0xA8 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001AE60; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001AE80; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001AEA0; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001B060; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001B120; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001B200; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001B260; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001B300; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001B380; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001B3A0; // type:function size:0x18 scope:global align:32 +Jac_SetDemoPartsCount = .text:0x8001B3C0; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001B3E0; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001B4C0; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001B500; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B5A0; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B5C0; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B5E0; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B680; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B6C0; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B700; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B780; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B7A0; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B7E0; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B920; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B960; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B9A0; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue_Noblock = .text:0x8001BA00; // type:function size:0x30 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001BA40; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001BAA0; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001BB20; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001BB60; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001BBA0; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001BBE0; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001BC20; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001BD00; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001BD20; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001BD40; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001BD80; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001BDE0; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001BF40; // type:function size:0x190 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001C0E0; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001C100; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001C140; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001C460; // type:function size:0x8A8 scope:local align:32 +RegisterStreamCallback = .text:0x8001CD20; // type:function size:0x8 scope:global align:32 +Jac_Decode_ADPCM = .text:0x8001CD40; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001CEE0; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CFC0; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001D000; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001D1A0; // type:function size:0x54 scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001D200; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001D340; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001D380; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001D3E0; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001D440; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001D4A0; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D500; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D5C0; // type:function size:0x124 scope:local align:32 +StreamChgVolume = .text:0x8001D700; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D740; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D780; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D920; // type:function size:0x3C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D960; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D9A0; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001DA80; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001DB20; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001DB40; // type:function size:0x20 scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001DB60; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001DC20; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001DC80; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001DDA0; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001DE20; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DFC0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001E020; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001E3E0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001E440; // type:function size:0x394 scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E7E0; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E860; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001EAA0; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001EAE0; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001EB40; // type:function size:0xFC scope:local align:32 +init_global_constants = .text:0x8001EC3C; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001EF9C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001F0B8; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001F384; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001F3E8; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F6AC; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F7E8; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F828; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F898; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001FC3C; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001FDD4; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001FE1C; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x800201EC; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x80020668; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x800207AC; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020880; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x8002095C; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x800209E8; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020A84; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x80020C30; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x80020DCC; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80021078; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x80021A78; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021E94; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x80022700; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022BC4; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x80022D28; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022E80; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x800232B0; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x800236EC; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x8002370C; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x80023730; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x800237A4; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x80023C08; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x80024118; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x8002413C; // type:function size:0x5A8 scope:global align:4 +reset__8AyuStackFi = .text:0x800246E4; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x800247A0; // type:function size:0x114 scope:global align:4 +pop__8AyuStackFv = .text:0x800248B4; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x80024908; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x8002497C; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x800249E4; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x80024B7C; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x80024C9C; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024DB0; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024DC8; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x80024DFC; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024ED4; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024EDC; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024F24; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x80024FC8; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80024FCC; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80024FD0; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x80024FD8; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80024FE0; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x80025010; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x80025014; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x80025040; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x8002506C; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x80025098; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x8002509C; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x800250A4; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x800250A8; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x800250B0; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x800250E8; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x80025120; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x80025158; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80025190; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x8002520C; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x80025244; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x800252E8; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x80025320; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x80025358; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x80025390; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x800253C8; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x80025404; // type:function size:0xD4 scope:global align:4 +read__6StreamFPvi = .text:0x800254D8; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x800254DC; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x800254E0; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x800254E8; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x800254F0; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x800254F4; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x800254F8; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x80025500; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x80025598; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x80025658; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x800256E0; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x80025724; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x80025828; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x80025858; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x80025860; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x8002588C; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x80025894; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x800258F0; // type:function size:0x24 scope:global align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x80025914; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x80025A34; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x80025ECC; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x800260C4; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x80026564; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x8002676C; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x80026B1C; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x80026E14; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x800273B8; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x800275A0; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x800275B8; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x800276D8; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x8002772C; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x80027730; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x80027738; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027970; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027A90; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027CB8; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x80027F88; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x80027FB4; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x80027FC0; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x80028058; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80028134; // type:function size:0xE0 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x80028214; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x8002826C; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x80028280; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x800282B4; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x800282E4; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x800284AC; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x800284B8; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x80028508; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x80028514; // type:function size:0x1C scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x80028530; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x80028548; // type:function size:0x184 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x800286CC; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x8002876C; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x80028808; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x80028938; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x80028990; // type:function size:0x3EC scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028D7C; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x80028F24; // type:function size:0x1E4 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x80029108; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x800291B4; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x80029470; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x8002966C; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x800297DC; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x800298F0; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x800298F4; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x80029970; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x80029974; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x80029978; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x8002997C; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x80029984; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x8002998C; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x80029994; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x80029998; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x80029A14; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029A44; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x80029A48; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x80029C48; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029C5C; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029D40; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x80029EC8; // type:function size:0xD0 scope:global align:4 +read__8DispListFR18RandomAccessStream = .text:0x80029F98; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x8002A098; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x8002A1D4; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x8002A268; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x8002A378; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x8002A38C; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x8002A430; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A70C; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A758; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002A91C; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002A998; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002ACCC; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002AF30; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002BC7C; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002BD1C; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002BF10; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002BF4C; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002C2BC; // type:function size:0x150 scope:global align:4 +detach__8AnimDataFv = .text:0x8002C40C; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C448; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C458; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C6B4; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002CA88; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002CABC; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D548; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D69C; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002D7A8; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002DBC4; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002E8A8; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002E9FC; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002EC1C; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002ECE8; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002F04C; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002F09C; // type:function size:0xF4 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002F190; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002F378; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F684; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002F7F0; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002F8B4; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002F92C; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002FC38; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002FC3C; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002FC48; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002FCF4; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8003046C; // type:function size:0x1A0 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x8003060C; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x80030A18; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030A74; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030B40; // type:function size:0x2590 scope:global align:4 +__ct__9CollGroupFv = .text:0x800330D0; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x800330E8; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x800331CC; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x80033220; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x80033234; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033560; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033658; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x80033808; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x80033868; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x800338B4; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x800338B8; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x80033B00; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x80033D58; // type:function size:0xBA8 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x80034900; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034A50; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x80034B38; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x80034D18; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x80034DF4; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80034FB8; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x80034FE8; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x80034FF8; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x80035030; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x80035064; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x800350F8; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x8003516C; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x80035314; // type:function size:0x2E0 scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x800355F4; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x80035784; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x800358C4; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x800359BC; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x80035A1C; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035A4C; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035A50; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035A54; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x80035A58; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035A5C; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035A60; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035A64; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x80035A68; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035A6C; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035A9C; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x80035B24; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x80035B38; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80035F58; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x80036124; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x80036474; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x800365F8; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x8003677C; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x8003711C; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x80037138; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x80037198; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x80037564; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x80037568; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x8003756C; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x8003760C; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x800376B8; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x8003774C; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037810; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x800378BC; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x80037DA0; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x80037E44; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80037F30; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x80038004; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x80038084; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x80038104; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x80038184; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x800382E8; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x80038588; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x800385B4; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x80038628; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x80038678; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x80038834; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x800388F8; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80038F3C; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x80039024; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x80039284; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x8003942C; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x8003949C; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x800394C8; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x8003958C; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003AE50; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B678; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003D414; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003D87C; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003DDBC; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003DE08; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003DEC8; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003DF34; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003E0D4; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E0F4; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003E290; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E43C; // type:function size:0x380 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003E7BC; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003E880; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003EB80; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003EC80; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003ED04; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003EE30; // type:function size:0x4 scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003EE34; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003EE64; // type:function size:0x144 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003EFA8; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003EFB4; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003F01C; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003F020; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003F034; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003F068; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003F078; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003F108; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003F1FC; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003F204; // type:function size:0x1A8 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003F3AC; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F44C; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F4F0; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F5AC; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F664; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003F68C; // type:function size:0x9C scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003F728; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003F7B0; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003F7F8; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003F8CC; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003F8DC; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003F9E4; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003FA4C; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003FA68; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003FA74; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003FAAC; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003FB88; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x8003FDD4; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x80040334; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x80040338; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x80040340; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x8004039C; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x800403E4; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x80040428; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x80040478; // type:function size:0xE0 scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x80040558; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x8004055C; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x80040560; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x80040564; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x80040568; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x8004056C; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x80040570; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x800405A0; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x800405A4; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x800405D4; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x800405D8; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x80040610; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x80040680; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x800406A0; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x8004073C; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x80040764; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x800407D0; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x8004082C; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040858; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x800408D4; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040938; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x80040974; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040978; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x8004097C; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x80040984; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x80040994; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x800409A4; // type:function size:0x4 scope:global align:4 +_stop__6TimersFPc = .text:0x800409A8; // type:function size:0x4 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x800409AC; // type:function size:0x4 scope:global align:4 +reset__10ControllerFUl = .text:0x800409B0; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x800409D4; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x80040A70; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x80040A9C; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x80040AD4; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x80040B0C; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x80040B44; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x80040B7C; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x80040C2C; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x80040D18; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x80040D58; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80040ECC; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80040F1C; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x800410B0; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x800413D4; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x80041488; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x80041584; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x800415F0; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x800425AC; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x80042A18; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x80042C54; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x80042DA4; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x8004300C; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x80043048; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x800431C4; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x80043314; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x800433E4; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x800438EC; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x80043924; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x800439FC; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80043A90; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x80043B24; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x80043BA4; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x80043C18; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x80043C74; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x80043D0C; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80043DB8; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x80043E34; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x80043E44; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x80043E4C; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x80043E54; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x80043E5C; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80043E94; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80043EC4; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80043EE8; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x80043F90; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x80043FB4; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x80043FE0; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x80043FF4; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80044008; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x8004409C; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x80044158; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x8004415C; // type:function size:0x38 scope:global align:4 +__ct__7TextureFv = .text:0x80044194; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x80044204; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x800442D8; // type:function size:0x168 scope:global align:4 +detach__7TextureFv = .text:0x80044440; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x8004444C; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x80044564; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x80044648; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x80044758; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x800447D8; // type:function size:0x4 scope:weak align:4 +openFile__6SystemFPcbb = .text:0x800447DC; // type:function size:0x254 scope:global align:4 +initSoftReset__6SystemFv = .text:0x80044A30; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80044A78; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80044B6C; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80044B90; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x80044BB4; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x80044C14; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80044C6C; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x80044DA8; // type:function size:0x39C scope:global align:4 +read__9DVDStreamFPvi = .text:0x80045144; // type:function size:0x8C scope:weak align:4 +getPending__9DVDStreamFv = .text:0x800451D0; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x800451D8; // type:function size:0x648 scope:local align:4 +hardReset__6SystemFv = .text:0x80045820; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x80045934; // type:function size:0xF8 scope:global align:4 +initBigFont__Fv = .text:0x80045A2C; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x80045B9C; // type:function size:0x180 scope:global align:4 +Initialise__6SystemFv = .text:0x80045D1C; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x800461B4; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x800461B8; // type:function size:0x4C scope:global align:4 +loadFunc__FPv = .text:0x80046204; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x8004654C; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80046550; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80046554; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x800465E8; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x8004661C; // type:function size:0x78 scope:global align:4 +doneDMA__FUl = .text:0x80046694; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x800466E0; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x800466F0; // type:function size:0x104 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x800467F4; // type:function size:0xC4 scope:global align:4 +freeBuffer__FUl = .text:0x800468B8; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x80046978; // type:function size:0xCC scope:global align:4 +dvdFunc__FPv = .text:0x80046A44; // type:function size:0x224 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x80046C68; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80046C9C; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x80046CF4; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x80046D54; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x80046E70; // type:function size:0x3C scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x80046EAC; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x80046EDC; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80046F80; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80046F88; // type:function size:0x7C scope:weak align:4 +alloc__6SystemFUl = .text:0x80047004; // type:function size:0x164 scope:global align:4 +__nwa__FUli = .text:0x80047168; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x800471AC; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x800471B0; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x800471B4; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80047278; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80047298; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x800472C0; // type:function size:0x1F8 scope:global align:4 +__ct__11DGXGraphicsFb = .text:0x800474B8; // type:function size:0x2F8 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x800477B0; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x80047844; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x800478D8; // type:function size:0x74 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x8004794C; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x8004798C; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x800479CC; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x800479D4; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x800479DC; // type:function size:0x1C scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x800479F8; // type:function size:0x4C8 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x80047EC0; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x8004806C; // type:function size:0x38 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x800480A4; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x800480D4; // type:function size:0xC4 scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80048198; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x80048208; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x8004828C; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80048294; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x800482C0; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x80048310; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x8004836C; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x800483E4; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80048484; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x80048654; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x80048998; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x80048A30; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x80048BCC; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x80048C08; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x80048CA0; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x80048CD0; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x80048CD4; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x80048DA4; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x80048F0C; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x80048F60; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x80049058; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x800491A0; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x80049A04; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x80049BD8; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x80049E38; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x8004A07C; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x8004A12C; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x8004A1C8; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x8004A1D4; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x8004A234; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x8004A240; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x8004A274; // type:function size:0xB4 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x8004A328; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x8004A368; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004A4CC; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004A904; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004A9BC; // type:function size:0x328 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004ACE4; // type:function size:0x27C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004AF60; // type:function size:0x128 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004B088; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004B17C; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004B3A0; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B778; // type:function size:0x21C scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B994; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004BB5C; // type:function size:0x46C scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BFC8; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C1A4; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004C350; // type:function size:0x404 scope:global align:4 +__ct__5ShapeFv = .text:0x8004C754; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004C790; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004C8CC; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004C8D0; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004C8D4; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004C8D8; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004C8DC; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004C908; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004C93C; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004CA40; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004CB3C; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004D108; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004D6B4; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004D764; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004D774; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004D7A8; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004D7DC; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004D7F8; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004D838; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004D86C; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004D8A0; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004D8D4; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004D910; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004DB6C; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004DC00; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004DF0C; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004DF10; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004E0CC; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004E11C; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8004EEAC; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x8004EF18; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x8004F264; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x8004F5FC; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x8004F7B4; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x8004F894; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x8004F898; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x8004FA80; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x8004FBBC; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x8004FBC4; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x8004FC7C; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x8004FE30; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x8004FEB0; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x8004FF98; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x80050004; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x80050014; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x80050018; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x80050020; // type:function size:0x4 scope:weak align:4 +checkAnimData__8AnimInfoFv = .text:0x80050024; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x80050100; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x8005037C; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x800503C4; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x800503E8; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x8005040C; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x80050430; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80050454; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x8005048C; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x800504C4; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x800504FC; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x800507F4; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x80050814; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x80050824; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x800508A4; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x80050AD8; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x80050AE4; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x80050B04; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x80050CEC; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x80050D78; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x80050D98; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x80050F70; // type:function size:0x21C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x8005118C; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80051190; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x800511C0; // type:function size:0x5C scope:global align:4 +animate__8AnimatorFf = .text:0x8005121C; // type:function size:0x23C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80051458; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x80051460; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051468; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051470; // type:function size:0x8 scope:weak align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80051478; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x800515C8; // type:function size:0x254 scope:global align:4 +setTime__10WorldClockFf = .text:0x8005181C; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x800518C4; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x800519BC; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x80051A4C; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x80051AAC; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x80051B0C; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x80051B6C; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x80051BCC; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x80051C2C; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x80051C8C; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x80051D2C; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x80051DD8; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x80051E84; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x80051EA8; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x80051FEC; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80052088; // type:function size:0x60C scope:global align:4 +Initialise__12GameHiscoresFv = .text:0x80052694; // type:function size:0xC8 scope:weak align:4 +softReset__8GameFlowFv = .text:0x8005275C; // type:function size:0x548 scope:global align:4 +__ct__4NodeFPc = .text:0x80052CA4; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x80052D10; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x80052D34; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x80052D60; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80052E30; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x80052E90; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x80052E94; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80052EC4; // type:function size:0x1CC scope:local align:4 +Initialise__9GamePrefsFv = .text:0x80053090; // type:function size:0x84 scope:weak align:4 +__ct__17GameRecChalCourseFv = .text:0x80053114; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80053130; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x8005313C; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80053148; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x8005315C; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80053160; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x800532C8; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x80053640; // type:function size:0x52C scope:global align:4 +__sinit_game_cpp = .text:0x80053B6C; // type:function size:0xF0 scope:local align:4 +openStage__9PlayStateFi = .text:0x80053C5C; // type:function size:0x40 scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x80053C9C; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x80053CDC; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x80053D1C; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x80053DB8; // type:function size:0xB8 scope:global align:4 +setChildMode__9GamePrefsFb = .text:0x80053E70; // type:function size:0x54 scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x80053EC4; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR17GameChalQuickInfo = .text:0x80053F2C; // type:function size:0x174 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x800540A0; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x800543EC; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x80054564; // type:function size:0xB8 scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x8005461C; // type:function size:0x330 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x8005494C; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x80054A40; // type:function size:0xF4 scope:global align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x80054B34; // type:function size:0x190 scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x80054CC4; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80054F48; // type:function size:0x1C scope:global align:4 +init__16GameSetupSectionFv = .text:0x80054F64; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x80054F68; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x80054F78; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x80054F80; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x80054F88; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x80054F90; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x80054F98; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x80054FEC; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x8005503C; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80055278; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x80055510; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80055708; // type:function size:0x4 scope:weak align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x8005570C; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x80055A74; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80055D44; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x80055E50; // type:function size:0x46C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x800562BC; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80056550; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x80056878; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x80056A9C; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x80056AA0; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x80056AD0; // type:function size:0x30 scope:weak align:4 +createMenuWindow__Fv = .text:0x80056B00; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x80056C18; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x80056DC8; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80056E84; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80056F9C; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x800571E0; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x800571E4; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x8005730C; // type:function size:0x640 scope:global align:4 +message__13GameInterfaceFii = .text:0x8005794C; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x80057950; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x800579C8; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x80057C5C; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80057FBC; // type:function size:0x474 scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x80058430; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x80058680; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x800589E8; // type:function size:0x410 scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x80058DF8; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x80059050; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x8005918C; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x8005924C; // type:function size:0x428 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x80059674; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x800596C0; // type:function size:0x724 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x80059DE4; // type:function size:0x160 scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x80059F44; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x8005A0F8; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005A118; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x8005A11C; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x8005A120; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x8005A124; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005A178; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005A2B0; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005A2BC; // type:function size:0x83C scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005AAF8; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005AAFC; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005AB00; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005AB3C; // type:function size:0x11C scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005AC58; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005AD20; // type:function size:0x78 scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005AD98; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005ADA4; // type:function size:0x74 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005AE18; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005AE1C; // type:function size:0x298 scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005B0B4; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005B134; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005B138; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005B144; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005B1A0; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005B1D0; // type:function size:0x4BC scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005B68C; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005B690; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005B72C; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005B77C; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005B780; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005B8D0; // type:function size:0x210 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005BAE0; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005BD50; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005BE40; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005BE94; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005BED4; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005BF3C; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005BF9C; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005C074; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005C0A4; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005CF6C; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005D0B4; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005D0E4; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005D0E8; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005D128; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005D190; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005D220; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005D260; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005D264; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005D26C; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005D514; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005D528; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005D678; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005D68C; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005D6A8; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005D6AC; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005D6E0; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005D6E4; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005D6E8; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005D6EC; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005D6F0; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005D6F4; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005D6F8; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005D8C0; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005D954; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005DA1C; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005DA20; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005DA68; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005DAAC; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005DAD8; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005DAFC; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005DB1C; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005DCB0; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005DE34; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005DF84; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005DFA0; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005DFBC; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005E214; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x8005E410; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x8005EA1C; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8005EA80; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x8005EAEC; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x8005EB94; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x8005EB98; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x8005EC6C; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005EC70; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005ECB0; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005ECE8; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005ED28; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x8005ED60; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x8005EDB8; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x8005EDF0; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x8005EF50; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x8005EF90; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x8005EFDC; // type:function size:0x4BC scope:global align:4 +idle__11PlugPikiAppFv = .text:0x8005F498; // type:function size:0x144 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x8005F5DC; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x8005F724; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x8005F788; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x8005F790; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x8005F804; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x8005F890; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x8005F8C8; // type:function size:0x87C scope:global align:4 +update__17TitleSetupSectionFv = .text:0x80060144; // type:function size:0x734 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x80060878; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x80061134; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80061220; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80061250; // type:function size:0x180 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x800613D0; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x800614C0; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x800616D4; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x800617C0; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x80061A28; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80061DF4; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x80061E38; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x80061ECC; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x80061F14; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x80061F50; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80061FB4; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80061FE8; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x800621A4; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x800621C8; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x80062204; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x800623AC; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x800623D8; // type:function size:0x184 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x8006255C; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x8006258C; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800625BC; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062774; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x8006292C; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x80063194; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x80063A3C; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x80063B34; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x80063F1C; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x800640C8; // type:function size:0x1E0 scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x800642A8; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x80064510; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x800648B4; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x80064DEC; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x8006549C; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x800654B4; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x800654E4; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x800658A8; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x800658C8; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x800658CC; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x800659C8; // type:function size:0x1D4 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x80065B9C; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x80065BA4; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x80065C98; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x80065E34; // type:function size:0x438 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x8006626C; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80066300; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x80066360; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x80066AEC; // type:function size:0x160 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x80066C4C; // type:function size:0xEDC scope:global align:4 +updatePos__6MapMgrFff = .text:0x80067B28; // type:function size:0x270 scope:global align:4 +getLight__6MapMgrFff = .text:0x80067D98; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x80067DA0; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x80067F04; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80068068; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x800681D8; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x80068334; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x80068620; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80068E4C; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x80068E50; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x80068E54; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x80069424; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x80069494; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x80069530; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x80069664; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x80069690; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x800696CC; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x80069704; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x80069740; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x80069744; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x80069748; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x8006974C; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80069754; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x80069758; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x8006975C; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x80069760; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x80069798; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x8006979C; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x800697A4; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x800697FC; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x80069854; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x800698AC; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x80069900; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x800699A4; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x80069A48; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x80069A98; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x80069AE8; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x80069B38; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x80069B84; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x80069BD8; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x80069C2C; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x80069C80; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x80069CD4; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x80069D2C; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x80069D84; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006A1B8; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006A610; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006A664; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006A6BC; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006A714; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006AE40; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006B3FC; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006B458; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006B4B4; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006D034; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006D560; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006E090; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x8006E3A4; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x8006E3FC; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x8006E454; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x8006E4D8; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x8006E55C; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x8006EF94; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x8006EFE8; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x8006F06C; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x8006F92C; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x8006F95C; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x8006F98C; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x8006F9BC; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x8006F9EC; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x8006FA1C; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x8006FBD8; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x8006FD88; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x8006FEB8; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x800705D8; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x8007068C; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x8007071C; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x800707BC; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x800708F4; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x80070978; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x80070EEC; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80070FB0; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x80071058; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x800711E8; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x800712AC; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x80071468; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x80072234; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x80073144; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80073160; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80073164; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x800732D0; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x800738C8; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x800738D4; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x800738E0; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x80073A5C; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x80073ACC; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x80073C00; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x80073C38; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80073DF4; // type:function size:0xFC scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80073EF0; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80074064; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x80074114; // type:function size:0x1DC scope:global align:4 +loadOptions__10MemoryCardFv = .text:0x800742F0; // type:function size:0xA4 scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x80074394; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80074468; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x80074514; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x80074938; // type:function size:0x128 scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x80074A60; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x80074AD0; // type:function size:0x3B0 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x80074E80; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80075090; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x800754A4; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x800754B4; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x800757C8; // type:function size:0x454 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x80075C1C; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x80075C88; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x80075CBC; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80075EE8; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x8007645C; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x800764FC; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x80076A28; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x80076A68; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x80076E00; // type:function size:0x34 scope:global align:4 +__ct__11MoviePlayerFv = .text:0x80076E34; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x80076EF0; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x80076FD0; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x80077060; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80077160; // type:function size:0x49C scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x800775FC; // type:function size:0x104 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x80077700; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x80077824; // type:function size:0x64 scope:global align:4 +update__11MoviePlayerFv = .text:0x80077888; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80077C54; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x80077D00; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x80077D1C; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x80077E1C; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x80077E7C; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80077EF0; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x800782E0; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x80078314; // type:function size:0x258 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x8007856C; // type:function size:0x14C scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x800786B8; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x80078DB0; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x80078F98; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x80079434; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079460; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x80079464; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x800794B4; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x800795A4; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x800795AC; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x800795B0; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x800795B8; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079614; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079618; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x8007961C; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x800798A4; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x80079C6C; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x80079EF4; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007A304; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007A714; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007AA4C; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007AD84; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007AD98; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007ADAC; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007ADE8; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007AE24; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007AFAC; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007B12C; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007B140; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007B17C; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007B34C; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007B360; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007B39C; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007B564; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007B62C; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007B714; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007B784; // type:function size:0x44 scope:global align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007B7C8; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007B968; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007BA28; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007BA94; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007BB14; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007BB18; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007BB8C; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007BB90; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007BCB0; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007BD64; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007BDE0; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007BDE8; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007BEF0; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007BF4C; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007C038; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007C040; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007C1CC; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007C210; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007C218; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007C3A0; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007C3A8; // type:function size:0x2F0 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007C698; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007C6A0; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007C6E8; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007C714; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007C84C; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007C854; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007C85C; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007C864; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007C86C; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007C874; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007C87C; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007C884; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007C88C; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007C894; // type:function size:0x8 scope:weak align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007C89C; // type:function size:0x3C scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007C8D8; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007C9F8; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007CA34; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007CB38; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007CB40; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007CDFC; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007CF58; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007CF98; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007CFD8; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007D018; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007D058; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007D088; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007D0B8; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007D0E8; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007D128; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007D12C; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007D130; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007D134; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007D138; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007D13C; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007D140; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007D144; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007D148; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007D14C; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007D150; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007D154; // type:function size:0x118 scope:weak align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007D26C; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007D310; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007D37C; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007D3DC; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007D490; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007D494; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007D498; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007D4C8; // type:function size:0x1C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007D4E4; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007D508; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007D570; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007D578; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007D660; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007D758; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007D784; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007D85C; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007D860; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007D868; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007D86C; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007D8E8; // type:function size:0xF8 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007D9E0; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007D9E8; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007DAF4; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007DB98; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007DB9C; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007DC10; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007DCB0; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007DCE8; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007DCEC; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007DCF0; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007DCF4; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007DCFC; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007DD04; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007DD0C; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007DD10; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007DD14; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007DD1C; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007DD24; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007DD2C; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007DD30; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007DD34; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007DD38; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007DD40; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007DD48; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007DD50; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007DD58; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007DD5C; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007DD60; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007DD64; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007DD68; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007DD84; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007DDA0; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007DDA8; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007DDB0; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007DDB8; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007DDD0; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007DDD8; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007DDE0; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007DDE8; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007DE00; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007DE04; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007DE08; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007DE0C; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007DE10; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007DE14; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007DE18; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007DE1C; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007DE20; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007DE24; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007DE2C; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007DE34; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007DE3C; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007DE40; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007DE44; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007DE48; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007DE4C; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007DE50; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007DE54; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007DE58; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007DE5C; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007DE60; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DE90; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DE94; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007DEEC; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007DF54; // type:function size:0x8 scope:weak align:4 +getCreature__12FormationMgrFi = .text:0x8007DF5C; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007DF6C; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007DF74; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007DF7C; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x8007DF98; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x8007E078; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8007E120; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x8007E128; // type:function size:0x1E4 scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x8007E30C; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x8007E500; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x8007E6A0; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x8007E9A0; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x8007EC58; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x8007ED44; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x8007EFB0; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x8007F2AC; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x8007F2B4; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x8007F2D4; // type:function size:0xE4 scope:global align:4 +isEnding__11PlayerStateFv = .text:0x8007F3B8; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x8007F410; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x8007F5AC; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x8007F778; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x8007FAA8; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x8007FAD4; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x8007FB44; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x8007FB84; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x8007FBA0; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x8007FC14; // type:function size:0xC scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x8007FC20; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x8007FC28; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x8007FCAC; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x800800A8; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x80080474; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x800804B8; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x800804E4; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x8008054C; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x800805CC; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x800805EC; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x80080604; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x80080660; // type:function size:0xE4 scope:global align:4 +initCourse__11PlayerStateFv = .text:0x80080744; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x800808F4; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x800809C4; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x80080A58; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80080A60; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x80080BB0; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x80080BC4; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x80080BCC; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80080BF4; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80080C1C; // type:function size:0x4C scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80080C68; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80080C70; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80080C78; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80080CC8; // type:function size:0xC4 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x80080D8C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x80080E00; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x80080FF0; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x800810C0; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80081144; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x8008120C; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x80081318; // type:function size:0x458 scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x80081770; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x800817C8; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x800818C8; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x80081914; // type:function size:0x2FC scope:global align:4 +__ct__9DemoFlagsFv = .text:0x80081C10; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x80082204; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x8008225C; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x80082270; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x80082368; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x800823D8; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x80082448; // type:function size:0x7C scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x800824C4; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x800824F4; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x8008251C; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80082750; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x80082780; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x800827C8; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x800827E4; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x800827F4; // type:function size:0x24 scope:weak align:4 +demoCheck__4NaviFv = .text:0x80082818; // type:function size:0x6D8 scope:global align:4 +demoCheck__4PikiFv = .text:0x80082EF0; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x8008313C; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x80083140; // type:function size:0x44C scope:global align:4 +__ct__11ResultFlagsFv = .text:0x8008358C; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x80083748; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x800838C0; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x80083964; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x80083A00; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80083A50; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x80083A74; // type:function size:0xA0 scope:global align:4 +getDocument__11ResultFlagsFRi = .text:0x80083B14; // type:function size:0x180 scope:global align:4 +dump__11ResultFlagsFv = .text:0x80083C94; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x80083DA0; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80083DD0; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x80083E60; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x80083EAC; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x8008431C; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x80084340; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x80084350; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x80084374; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x800843D0; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x80084444; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x80084520; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x80084558; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x800845BC; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x800845D8; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x800846C0; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x8008470C; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x800848E8; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x800849A8; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x800849E8; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x80084A14; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x80085634; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x800856BC; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x80085734; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x800857AC; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x80085824; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x8008589C; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x80085914; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x8008598C; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x80085A04; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80085A7C; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x80085AF4; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80085B6C; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80085BB8; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80085C04; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x80085D64; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x80085D9C; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x80085F0C; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x80085FC4; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x800860D8; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x80086470; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x80086478; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x800864A8; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x800865D4; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x80086660; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x80086664; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x8008668C; // type:function size:0x4 scope:weak align:4 +__ct__7MemStatFv = .text:0x80086690; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x80086710; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x80086738; // type:function size:0x110 scope:global align:4 +end__7MemStatFPc = .text:0x80086848; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x800868C0; // type:function size:0x34 scope:global align:4 +getInfo__7MemStatFPc = .text:0x800868F4; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x80086918; // type:function size:0x238 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x80086B50; // type:function size:0x174 scope:global align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x80086CC4; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80086FA0; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x80087360; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x8008738C; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x800876C8; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x800877AC; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x80087890; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x80087AC8; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x80087BC0; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x80087CE4; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x80087D40; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80087D90; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x80087DC4; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x80087DEC; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x80087E48; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x80087E84; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x80087EA0; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x80087EDC; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x80087F18; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x8008807C; // type:function size:0x4A4 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x80088520; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x80088B8C; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x80088C30; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x80088CD0; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x80088D04; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x80088D38; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x80088EF8; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x80088F00; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x80088F28; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x8008954C; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x80089574; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x800895A8; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x80089708; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x80089710; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x80089770; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x800898EC; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x80089A1C; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x80089AEC; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x80089B50; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x80089B64; // type:function size:0xA4 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x80089C08; // type:function size:0xB0 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x80089CB8; // type:function size:0x78 scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x80089D30; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x80089EEC; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x80089F30; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x8008A028; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x8008A02C; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x8008A038; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x8008A03C; // type:function size:0x4 scope:weak align:4 +finishFixPosition__8CreatureFv = .text:0x8008A040; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x8008A050; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x8008A098; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008A170; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008A248; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008A264; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008A2A8; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008A2CC; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008A314; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008A35C; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008A3CC; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008A42C; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008A504; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008A5B4; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008A5EC; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008A624; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008A718; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008A78C; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008A7F8; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008A854; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008A874; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008A89C; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008A9D4; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008AA3C; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008AA84; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008AC04; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008AC68; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008AC9C; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008ACE0; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008AED8; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008B198; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008B208; // type:function size:0x580 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008B788; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008B97C; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008BA30; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008BB20; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008BC3C; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008C324; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008C3C4; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008C3CC; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008C40C; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008C6C0; // type:function size:0x7BC scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008CE7C; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008CF10; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008CFFC; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008D53C; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008D544; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8008D890; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x8008D8E4; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x8008D954; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8008E0BC; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x8008E0C0; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x8008E160; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x8008E1C8; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x8008E2C4; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x8008E2C8; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x8008E2CC; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x8008E4CC; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x8008E5DC; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x8008F33C; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x8008F43C; // type:function size:0x588 scope:global align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x8008F9C4; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x8008FB24; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x8008FC98; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x8008FDBC; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x8008FED8; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x8008FF40; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x8008FF50; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x8008FF98; // type:function size:0x84 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x8009001C; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x8009005C; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x8009036C; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x800906B8; // type:function size:0x1C0 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80090878; // type:function size:0x6C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x800908E4; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x800909DC; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x80090AC8; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x80090BEC; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80090C84; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x80090CDC; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80090D0C; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x80090DD8; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x80090DE0; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x80090DE8; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80090E04; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x80091058; // type:function size:0xBC scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x80091114; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x80091300; // type:function size:0x360 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x80091660; // type:function size:0x3BC scope:global align:4 +updateStickRope__8CreatureFv = .text:0x80091A1C; // type:function size:0x4A4 scope:global align:4 +__ct__12DualCreatureFv = .text:0x80091EC0; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x80091F54; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80091F88; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x80091FE8; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x80092038; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x8009208C; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x800920DC; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x80092120; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x800921E4; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x80092218; // type:function size:0x21C scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x80092434; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x80092484; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x8009248C; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x80092494; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x800924F4; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x800926BC; // type:function size:0x14C scope:global align:4 +__ct__11DynParticleFv = .text:0x80092808; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x800928E0; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x800928F0; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x800928F4; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x800928F8; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x80092AEC; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x80092BE0; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x80092BFC; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x80092C14; // type:function size:0x100 scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x80092D14; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80092D7C; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80092F08; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x80092F44; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x80093AA8; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80093C58; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80093F0C; // type:function size:0x68 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80093F74; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80093F94; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x80093FA8; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x80094038; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80094094; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x80094098; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x800940BC; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x80094134; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x80094160; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x80094190; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x80094338; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x800943F0; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x80094520; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x800945BC; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x800946A4; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x800946FC; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x800948A4; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x80094978; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x80094A2C; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x80094A30; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x80094A38; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x80094A80; // type:function size:0x94 scope:global align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x80094B14; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x80094B58; // type:function size:0x18 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80094B70; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x80094F00; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x80094F74; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x8009513C; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x800953AC; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x800953E8; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80095478; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x800954A8; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x80095538; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x80095554; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x8009558C; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x80095594; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x800955DC; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x8009562C; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x800956AC; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x80095A4C; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x80095ACC; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x80095B84; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x80095C34; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x80095C38; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x80095C3C; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x80095DA8; // type:function size:0x108 scope:global align:4 +getCentre__6PelletFv = .text:0x80095EB0; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x80095ECC; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x80095F14; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x80095F8C; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x80095FA8; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x80095FB0; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x80096094; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x80096128; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x8009629C; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x80096304; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80096360; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x800963CC; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x8009652C; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x80096604; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x800967A4; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x8009681C; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x80096850; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x80096884; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x800968C8; // type:function size:0xE0 scope:global align:4 +startCarryMotion__6PelletFf = .text:0x800969A8; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x800969EC; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x800969F0; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x800969F4; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x80096A58; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x80096A5C; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x80096AF4; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x80096B28; // type:function size:0x248 scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x80096D70; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x80096DE8; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80096E7C; // type:function size:0x3B8 scope:global align:4 +doAnimation__6PelletFv = .text:0x80097234; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x80097294; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x80097298; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x80097320; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x800973A8; // type:function size:0x94C scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x80097CF4; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x80097D30; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x80097D34; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x80097D84; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x80097DA4; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x80097E18; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x80098110; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x800982CC; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x80098330; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x80098478; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x800984D0; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x80098538; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x800985B0; // type:function size:0x154 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x80098704; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x80098798; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x800987EC; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x80098A40; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x80098A98; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x80098B04; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x80098BF4; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x80098C48; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x80098C88; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x80098D24; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x80098D5C; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x80098DA0; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x80098E5C; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x80098F18; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x80098FEC; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x800990C8; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x800992D8; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x800992DC; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x80099360; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x80099368; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x80099370; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x80099378; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x8009937C; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x80099380; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80099384; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009938C; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x80099394; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x80099398; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x800993D4; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x800994EC; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x800994F0; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x800994F4; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x800994F8; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x800994FC; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x80099500; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x80099504; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x80099508; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x8009950C; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x80099510; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x80099514; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x80099518; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80099520; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x80099528; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x80099530; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x80099538; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x80099540; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x80099548; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x800996C8; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009979C; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x8009982C; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x8009996C; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x800999A4; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x80099A10; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80099A68; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x80099AC0; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x80099AE8; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x80099B44; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x80099B90; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x80099CD8; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x80099D14; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x80099D1C; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x80099D9C; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x80099E28; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x80099E7C; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x80099EEC; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x80099F2C; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x8009A02C; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009A42C; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009A478; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009A484; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009A4F4; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009A524; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009A540; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009A58C; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009A590; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009A594; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009A598; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009A5E0; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009A5E4; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009A5E8; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009A5EC; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009A63C; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009A640; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009A67C; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009A6A0; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009A6EC; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009A71C; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009A74C; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009A818; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009A81C; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009A878; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009ADF4; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009B0C8; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009B0CC; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009B0FC; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009B100; // type:function size:0x4 scope:weak align:4 +beginPush__10HinderRockFv = .text:0x8009B104; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009B114; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009B12C; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009B238; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009B23C; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009B260; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009B370; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009B3C4; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009B458; // type:function size:0x12C scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009B584; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009B60C; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009B614; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009B61C; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009B660; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B684; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B724; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009B7C4; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009B930; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B9BC; // type:function size:0x20C scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009BBC8; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009BD7C; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009BD9C; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009BF1C; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009C094; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009C108; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009C26C; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009C2AC; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009C2B4; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009C2C8; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009C390; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009C458; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009C550; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009C8F8; // type:function size:0xA0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009C998; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009CA0C; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009CA24; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009CAE4; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009CC00; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x8009D430; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x8009D5C8; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x8009D71C; // type:function size:0x2C4 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x8009D9E0; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x8009DA54; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x8009DB38; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x8009DC18; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x8009DF18; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x8009E0A4; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x8009E124; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x8009E1D4; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x8009E23C; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x8009E2A4; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x8009E30C; // type:function size:0x40 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x8009E34C; // type:function size:0x9C scope:global align:4 +flatten__6BridgeFv = .text:0x8009E3E8; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x8009E48C; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x8009E5B4; // type:function size:0x394 scope:global align:4 +getStagePos__6BridgeFi = .text:0x8009E948; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x8009EA10; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x8009EA74; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x8009EB5C; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x8009EBBC; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x8009EC1C; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x8009ED18; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x8009ED20; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x8009ED28; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x8009F14C; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x8009F1EC; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x8009F4D4; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x8009F500; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x8009F508; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x8009F51C; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x8009F528; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x8009F530; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x8009F538; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x8009F540; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x8009F548; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x8009F550; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x8009F554; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x8009F558; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x8009F5C4; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x8009F5CC; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x8009F5D4; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x8009F5DC; // type:function size:0x8 scope:weak align:4 +__ct__Q210PathFinder6BufferFv = .text:0x8009F5E4; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009F5F8; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x8009F6AC; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x8009F734; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x8009F80C; // type:function size:0x340 scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x8009FB4C; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009FBD0; // type:function size:0x230 scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x8009FE00; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x8009FE14; // type:function size:0x1FC scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x800A0010; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x800A0058; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x800A0108; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A0154; // type:function size:0x3B8 scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A050C; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A0980; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A10E8; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A1254; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A13C0; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A153C; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A1678; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A16D4; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A1770; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A1784; // type:function size:0x274 scope:global align:4 +__ct__8WayPointFv = .text:0x800A19F8; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A1A0C; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A1B40; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A1B88; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A1BB4; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A1C44; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A2000; // type:function size:0x580 scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A2580; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A27E4; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A2D10; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A2E44; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A3068; // type:function size:0x3C0 scope:global align:4 +__ct__5SeMgrFv = .text:0x800A3428; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A35A8; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A35D0; // type:function size:0x34 scope:global align:4 +update__5SeMgrFv = .text:0x800A3604; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A3608; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A3618; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A363C; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A3674; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A3758; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A3A3C; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A3AB8; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A3B04; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A3C38; // type:function size:0x24 scope:weak align:4 +__ct__9SeContextFv = .text:0x800A3C5C; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A3CCC; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A3D34; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A3DD0; // type:function size:0xD4 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A3EA4; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A3EEC; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A3F80; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A3FD8; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A40F8; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A410C; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A4184; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A41FC; // type:function size:0x20C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A4408; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A4434; // type:function size:0x394 scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A47C8; // type:function size:0x108 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A48D0; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A4918; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A4AD0; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A4DA0; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A4E58; // type:function size:0x368 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A51C0; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A51C8; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A52C4; // type:function size:0x18 scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A52DC; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A5374; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A53A8; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A53DC; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A5410; // type:function size:0x34 scope:global align:4 +__ct__13UpdateContextFv = .text:0x800A5444; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A5458; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A54A4; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A54D4; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A5520; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A553C; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A5560; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A5590; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A5624; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A56B4; // type:function size:0x5C scope:global align:4 +getCreature__6CPlateFi = .text:0x800A5710; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A5724; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A5950; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A5980; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A5988; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A598C; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A5B4C; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A5D08; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A5DB8; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A5E08; // type:function size:0x144 scope:global align:4 +validSlot__6CPlateFi = .text:0x800A5F4C; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A5F70; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A6394; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A6670; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A67F8; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A6A2C; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A6A64; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800A6D30; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800A6D38; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800A6D40; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800A6D58; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800A6D7C; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800A6D84; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800A6D8C; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800A6D94; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800A6DE8; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800A6E40; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800A6EB4; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800A6F00; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800A6F84; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800A7114; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800A7120; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800A72E4; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800A7378; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A74EC; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800A77F8; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800A7864; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800A7868; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800A786C; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800A7870; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800A7874; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800A7878; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800A7880; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800A78AC; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800A78B0; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800A78B4; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800A78B8; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800A78BC; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800A78C0; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800A78C4; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800A78C8; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800A78CC; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800A78D0; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800A78D4; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800A78D8; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A79F0; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800A79F8; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800A7A78; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A7A7C; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800A7B50; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800A7C08; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800A7C48; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800A7CFC; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800A7D00; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800A7D0C; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800A7D10; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800A7DE8; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800A7E54; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800A7E68; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800A8068; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800A807C; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800A8198; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800A81FC; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800A8210; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800A8274; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A82E0; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800A82E8; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800A83B0; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800A8414; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800A8564; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800A8660; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800A866C; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800A86C0; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800A86C8; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800A86D0; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800A8A0C; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800A8A70; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800A8AD0; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800A8C9C; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800A8D38; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800A8D54; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800A8FBC; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800A9E28; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800A9E74; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800A9EA0; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800A9FCC; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AA424; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AA490; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AA50C; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AA514; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800AA51C; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800AA624; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800AA718; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800AA79C; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800AA8A4; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800AA8A8; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800AA920; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800AABF8; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800AACFC; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800AADF0; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800AADFC; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800AAF80; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800AAF84; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800AAFFC; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800AB0B8; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AB390; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AB410; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AB4F8; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AB70C; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AB834; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AB838; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AB85C; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AB860; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AB868; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AB86C; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AB870; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AB8F0; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AB928; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800ABA08; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800ABA24; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800ABA28; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800ABA40; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800ABAC0; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800ABB4C; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800ABC34; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800ABF1C; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800ABF20; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800AC024; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800AC0A4; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800AC124; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800AC188; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AC208; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AC26C; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AC2D0; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AC2E4; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AC2F8; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AC30C; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AC360; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AC3A0; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AC440; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AC4A4; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AC5D0; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AC684; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AC68C; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC6B0; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AC728; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC794; // type:function size:0x8 scope:weak align:4 +__ct__6ActBouFP4Piki = .text:0x800AC79C; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AC808; // type:function size:0xA8 scope:global align:4 +exec__6ActBouFv = .text:0x800AC8B0; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AC8FC; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800ACB0C; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800ACC8C; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800ACD94; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800ACE3C; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800ACEA0; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800ACF4C; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800AD028; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800AD094; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800AD128; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AD150; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800AD200; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800AD224; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800AD584; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800AD664; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800AD970; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800ADA40; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800AE0A8; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AE128; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800AE13C; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800AE1AC; // type:function size:0x154 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800AE300; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AE3C4; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800AE554; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800AE69C; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800AE6BC; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800AE784; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800AE814; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800AE908; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800AEBEC; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800AEC08; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800AEC0C; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AEC78; // type:function size:0x8 scope:weak align:4 +turnOver__12ActTransportFv = .text:0x800AEC80; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800AEF10; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800AF060; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800AF1F0; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800AF2E4; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800AF444; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800AF5A4; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800AF5F0; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800AF784; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800AFC74; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B03B4; // type:function size:0x664 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B0A18; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B0B80; // type:function size:0x8B4 scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B1434; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B1CDC; // type:function size:0x318 scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B1FF4; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B21AC; // type:function size:0x1D8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B2384; // type:function size:0x8C scope:global align:4 +crInit__12ActTransportFv = .text:0x800B2410; // type:function size:0x514 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B2924; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B29A4; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B2CD0; // type:function size:0x94C scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B361C; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B3DE0; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B44DC; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B455C; // type:function size:0x14 scope:weak align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B4570; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B4614; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B4694; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B4700; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B4780; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B48A8; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B48B4; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B4A74; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B4CFC; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B5558; // type:function size:0x98 scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B55F0; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B55F4; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B5674; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B5688; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B56F4; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B56F8; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B57CC; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B580C; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B5A48; // type:function size:0x64 scope:weak align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B5AAC; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B5BA8; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B5BB0; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B5BDC; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B5D38; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B5E1C; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B5E50; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B5F6C; // type:function size:0xFC scope:global align:4 +exec__8ActCrowdFv = .text:0x800B6068; // type:function size:0x164C scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800B76B4; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800B770C; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800B7710; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800B7790; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800B7798; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800B77AC; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800B7800; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800B7978; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800B79D4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B79D8; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800B79DC; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800B7EF0; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B7F5C; // type:function size:0x8 scope:weak align:4 +__ct__8ActEnterFP4Piki = .text:0x800B7F64; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800B7FC4; // type:function size:0x1F0 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800B81B4; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800B8280; // type:function size:0xE8 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800B8368; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800B83C0; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800B856C; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800B87A0; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800B87C4; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800B8828; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800B88A4; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800B88A8; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800B89A0; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800B89E0; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800B8CAC; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800B8D04; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800B8D68; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800B8DC8; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800B8E88; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800B8EB4; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800B919C; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800B925C; // type:function size:0x64 scope:weak align:4 +__ct__7ActMineFP4Piki = .text:0x800B92C0; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800B9340; // type:function size:0x64 scope:global align:4 +initWatch__7ActMineFv = .text:0x800B93A4; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800B9434; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800B9580; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800B9780; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B9784; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800B9844; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B98C4; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800B98D8; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800B9C04; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800B9C60; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800B9DA8; // type:function size:0xF4 scope:global align:4 +cleanup__12ActFormationFv = .text:0x800B9E9C; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800B9EE8; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BA58C; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BA5F8; // type:function size:0x8 scope:weak align:4 +__ct__7ActFreeFP4Piki = .text:0x800BA600; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BA6CC; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BA79C; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BA960; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BAC54; // type:function size:0xAC scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BAD00; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BAD04; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BADF4; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BAECC; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BAF4C; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BAF54; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BAF68; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BAFB4; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BB030; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BB104; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BB144; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BB4BC; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BB520; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BB534; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BB5B8; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BB67C; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BB798; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BB7A4; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BBEC0; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BC0B4; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BC1B0; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BC408; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800BC600; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800BC688; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800BC710; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800BC8D4; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800BCA98; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800BCAFC; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800BCBDC; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800BCD5C; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800BCE0C; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800BCEF4; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800BCF34; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BD090; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800BD1B0; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800BD1E8; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800BD25C; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800BD2DC; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BD350; // type:function size:0x14 scope:weak align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800BD364; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800BD430; // type:function size:0x20 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800BD450; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800BD4B4; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800BD538; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800BD5AC; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800BD5B8; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800BD5F8; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800BD5FC; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800BD670; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800BD770; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800BD9C0; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800BDA9C; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800BDAEC; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDB60; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800BDBD8; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800BDC34; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800BDCC8; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800BDF08; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800BDF74; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDFE8; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800BDFF0; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800BE090; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800BE128; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800BE1F4; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800BE304; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800BE440; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE654; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800BE928; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800BE960; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE9E0; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800BE9F4; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800BEA94; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800BEB1C; // type:function size:0x48C scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800BEFA8; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800BF168; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800BF174; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800BF34C; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800BF4B0; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800BF61C; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800BF8E8; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800BF8F4; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800BF978; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800BFAC4; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800BFD00; // type:function size:0x210 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800BFF10; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800BFF48; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800BFF4C; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800BFFA8; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C03B4; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C06F4; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C0760; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C08D8; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C0918; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C097C; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C09FC; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C0A10; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C0D08; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C0D94; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C0D98; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C0E80; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C0E84; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C1240; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C1284; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C12E8; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C1380; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C13C4; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C1510; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C157C; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C15E0; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C16C4; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C1750; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C17C8; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C194C; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C1AB8; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C1AD8; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C1D8C; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C1D90; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C1E10; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C1E24; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C1E84; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C1FFC; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C206C; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C2108; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C216C; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C228C; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C233C; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C24B4; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C2680; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C26C0; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C2700; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C27AC; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C2808; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C2890; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C2B6C; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C2BD8; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C2C4C; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C2C54; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C2C58; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C2D1C; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C2D20; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C2E68; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C2EB0; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C2EE8; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C3044; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C30A8; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C30FC; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C3154; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C31B4; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C31E0; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C3250; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C3430; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C343C; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C3650; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C36DC; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C37BC; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C3A70; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C3ADC; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C3AE4; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C3D24; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C3DD0; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C3E08; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C3E80; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C3F00; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C3F0C; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C3F14; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C3FF4; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C4140; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C4220; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C4370; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C4494; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C44A4; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C4514; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C45F0; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C4C3C; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C4CC4; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C4DAC; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C5344; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C53C8; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C5414; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C5460; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C54AC; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C553C; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C55C8; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C5604; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C564C; // type:function size:0x88 scope:weak align:4 +initGame__10PikiInfMgrFv = .text:0x800C56D4; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C56FC; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C5774; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C57E4; // type:function size:0x34 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C5818; // type:function size:0x1C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C5834; // type:function size:0x34 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C5868; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C5894; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C58F0; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C58F4; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C5950; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C5954; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C59F4; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C5AE8; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C5BAC; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C5CC4; // type:function size:0x14 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C5CD8; // type:function size:0x14 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C5CEC; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C5E5C; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C5F2C; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C5F84; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C5FCC; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C5FF0; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C6014; // type:function size:0xC4 scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C60D8; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800C61A4; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800C61D0; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800C62A4; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800C6384; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800C63E4; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800C6414; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800C6478; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800C6500; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800C6520; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800C6524; // type:function size:0x34 scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800C6558; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800C6858; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800C6904; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800C6908; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800C69A8; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800C69AC; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800C6A80; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800C6A88; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800C6AB8; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800C6ABC; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800C6B00; // type:function size:0x35C scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800C6E5C; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800C7028; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800C74E8; // type:function size:0x700 scope:global align:4 +crGetPoint__4PikiFi = .text:0x800C7BE8; // type:function size:0xB8 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800C7CA0; // type:function size:0x68 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800C7D08; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800C7D68; // type:function size:0x108 scope:global align:4 +hasBomb__4PikiFv = .text:0x800C7E70; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800C7E8C; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800C7F1C; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800C7F80; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800C80BC; // type:function size:0x404 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800C84C0; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800C84C8; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800C8514; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800C8538; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800C8554; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800C8560; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800C8578; // type:function size:0x1300 scope:global align:4 +initColor__4PikiFi = .text:0x800C9878; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800C9950; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800C9980; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800C99D0; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800C9A68; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800C9B04; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800C9B9C; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800C9D44; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800C9DBC; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800C9DE4; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800C9E7C; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800C9EB8; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800C9F2C; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800C9FA0; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800CA02C; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800CA030; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800CA10C; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CA110; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CA1EC; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CA250; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CA308; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CA310; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CA420; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CA4E4; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CA528; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CA580; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CA584; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CA604; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CA6E4; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CA71C; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CA9D8; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CAC0C; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CAC54; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CADE4; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CB95C; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CB964; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CBD64; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CBDD8; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CBE9C; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CBF78; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CBF98; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800CBFDC; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800CC044; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800CC330; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800CC334; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800CC36C; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800CC380; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800CC6CC; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800CC6D4; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800CC724; // type:function size:0x448 scope:global align:4 +realAI__4PikiFv = .text:0x800CCB6C; // type:function size:0x53C scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800CD0A8; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800CD0E4; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800CD0E8; // type:function size:0xE4 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800CD1CC; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800CD418; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800CD668; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800CD684; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800CD688; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800CD68C; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800CD73C; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800CD740; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800CD744; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CD7FC; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800CD804; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800CD814; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800CD82C; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800CD950; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800CDCD0; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800CDD8C; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800CDFE4; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800CED74; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800CED8C; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800CEE08; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800CEE28; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800CEE48; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800CEE78; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800CEEBC; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800CF054; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800CF0D8; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800CF0E0; // type:function size:0x8 scope:weak align:4 +init__16PikiStateMachineFP4Piki = .text:0x800CF0E8; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D0510; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D053C; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D0540; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D0620; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D0650; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D069C; // type:function size:0xA0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D073C; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D0948; // type:function size:0x2C scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D0974; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D0A28; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D0A70; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D0AF8; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D0B24; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D0B90; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D0B94; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D0B98; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D0BAC; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D0CA0; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D0CEC; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D0D90; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D0E78; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D0F88; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D0F8C; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D0FE8; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D11F0; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D15CC; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D15D0; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D177C; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D17D8; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D187C; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D1AE4; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D1B28; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D1B2C; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D22E4; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D2308; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D2354; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D2480; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D25D4; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D2654; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D26A0; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D2784; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D28D8; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D28DC; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D292C; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D293C; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D2A40; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D2A58; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D2AA4; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D2B14; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D2F04; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D2F64; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D2F68; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D2FB4; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D311C; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D32BC; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D3550; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D3648; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D3694; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D37B8; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D3850; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D39C0; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D3BF0; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D3C90; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D3CE0; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D3D64; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D3D68; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D3FF0; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D3FF4; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D4040; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D40C8; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D40CC; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D4148; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D421C; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D4220; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D427C; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D43B4; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D43F0; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D4594; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D4A38; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D4A3C; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D4A88; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D4AE4; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D4C58; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D4C5C; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D4CA8; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D4CE0; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D4D94; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D4DD8; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D4DFC; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D4E4C; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D4E84; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D4F38; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D4F7C; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D4FA0; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D4FEC; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D5090; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D50D0; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D50E0; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D516C; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D5220; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D52AC; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D52D0; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D52F4; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D53A4; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D5764; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D57A8; // type:function size:0x6DC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D5E84; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D5E88; // type:function size:0xE8 scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800D5F70; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800D5FBC; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800D6038; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800D603C; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800D6040; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800D6084; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800D60D4; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800D6180; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800D61AC; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800D6224; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800D6228; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800D62BC; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800D6308; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800D63D0; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800D6468; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800D646C; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800D65A0; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800D65EC; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800D65F0; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800D65F4; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800D65F8; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800D6628; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800D662C; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800D6674; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800D66C0; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800D6748; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800D6898; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800D68A4; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800D68D4; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800D68D8; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800D6910; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800D6988; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800D69D8; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800D6A68; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800D6B5C; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800D6B68; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800D6B98; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800D6B9C; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800D6C40; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800D6C44; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800D6CC4; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800D6D10; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800D6D14; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800D6F14; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800D6F18; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800D6F68; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800D70B4; // type:function size:0x78 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800D712C; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800D7130; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800D717C; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800D7228; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800D722C; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800D7490; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800D7620; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800D7670; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800D774C; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800D77C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800D77C8; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800D7864; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800D78B0; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800D78D4; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800D7908; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800D7A48; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800D7A4C; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800D7A98; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800D7BB4; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800D7BE8; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800D7BEC; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800D7C7C; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800D7CC8; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800D7CFC; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800D7D98; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800D7DB4; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800D7E14; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800D8598; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800D859C; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800D8754; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800D8788; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800D880C; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800D8814; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800D881C; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800D8824; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800D882C; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800D8834; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800D883C; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800D8844; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800D884C; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800D8854; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800D885C; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800D8864; // type:function size:0x30 scope:weak align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800D8894; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800D88BC; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800D88E4; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800D8920; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800D8AD4; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800D8B70; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800D8B90; // type:function size:0x128 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800D8CB8; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800D8D18; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800D8DCC; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800D9038; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800D909C; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800D90A0; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800D921C; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800D9624; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800D96C4; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800D96DC; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800D96F0; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800D9A68; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800DA0E0; // type:function size:0xB48 scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DAC28; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DAC58; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DAC88; // type:function size:0x2C scope:global align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DACB4; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DACE4; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DACF0; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DAD10; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DAD30; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DAD34; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DAE30; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DAE80; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DAFFC; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DB12C; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DB288; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB2D8; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB344; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB3B0; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB470; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB530; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB5B8; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB640; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB6E4; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DB788; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DB804; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DB880; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DB958; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DB9F0; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DBA40; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DBA80; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DBAE0; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DBC50; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800DBDA4; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBDDC; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBEE0; // type:function size:0x78 scope:global align:4 +init__9GeneratorFv = .text:0x800DBF58; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800DC194; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800DC198; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800DC19C; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800DC224; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800DC228; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800DC3D4; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800DC3D8; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800DC3DC; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800DCB10; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800DCB7C; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800DCBE8; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800DCC54; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800DD3B4; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800DD8C8; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800DD908; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800DD924; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800DD9C4; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800DDA10; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800DDA6C; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDCE0; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDD4C; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800DDDB8; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800DDFCC; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800DE070; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800DE228; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800DE390; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800DE398; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800DE47C; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800DE5B4; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800DE5BC; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800DE700; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800DE838; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800DE8C0; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800DE8C4; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800DEA68; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800DEB98; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800DEBF0; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800DEC28; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800DEC98; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800DED48; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800DED50; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800DED54; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800DED5C; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800DED60; // type:function size:0x8 scope:weak align:4 +__ct__14GeneratorCacheFv = .text:0x800DED68; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800DEE98; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800DEEB0; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800DEF68; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DF05C; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DF190; // type:function size:0x23C scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF3CC; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF4D8; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800DF5E4; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800DF60C; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800DF76C; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800DF894; // type:function size:0x19C scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800DFA30; // type:function size:0x90 scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800DFAC0; // type:function size:0x80 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800DFB40; // type:function size:0x160 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFCA0; // type:function size:0x118 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFDB8; // type:function size:0x11C scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800DFED4; // type:function size:0x124 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800DFFF8; // type:function size:0x168 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E0160; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E01BC; // type:function size:0x6C scope:global align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E0228; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E0334; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E0458; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E0564; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E0568; // type:function size:0x264 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E07CC; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E0938; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E0A54; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E0CB0; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E0F24; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E104C; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E10F0; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E11A4; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E125C; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E12F8; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E1388; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E1474; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E1520; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E15A4; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E15E0; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E1638; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E1694; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E16B0; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E1A38; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E1D44; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E1FA4; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E2020; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E2128; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E21D4; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E2270; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E2318; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E231C; // type:function size:0x88 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E23A4; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E240C; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E2420; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E253C; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E25BC; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E2600; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E2658; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E26B4; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E26D0; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E26F8; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E29B8; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E2DBC; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E2E44; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E2E4C; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E2E54; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E2E98; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E2EBC; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E2F28; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E2F30; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E2F9C; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E2FA4; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E2FAC; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E2FB4; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E2FB8; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E3424; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E3C10; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E3C80; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E3E58; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E3E94; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E3EF4; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E40DC; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E42E0; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E430C; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E4314; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E431C; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E4338; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E4350; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E435C; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E436C; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E4390; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E4474; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E4670; // type:function size:0xC scope:weak align:4 +workable__7RockGenFv = .text:0x800E467C; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E469C; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E46B4; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E46CC; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E46EC; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E4704; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E471C; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E4978; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E4BD4; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E4C74; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E4EF8; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E4F0C; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E4F1C; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E4F78; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E4F88; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E4FC4; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E5044; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E5070; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E5200; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E5208; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E52E8; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E5388; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E55CC; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E55E0; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E55F0; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E564C; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E5678; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E5808; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E5810; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E58F0; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E58F4; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E58F8; // type:function size:0x1CC scope:global align:4 +startAI__4WeedFi = .text:0x800E5AC4; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800E5AE8; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800E5BB4; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800E5C50; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800E5D58; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800E5D6C; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800E5D74; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800E5D88; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800E5D90; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800E5DA4; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800E5DAC; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800E5DB4; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800E5DC8; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800E5DD0; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800E5DD8; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800E5E7C; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800E5F94; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800E5FF4; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800E602C; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800E6048; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800E6050; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800E6058; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800E6090; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800E61D4; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800E62AC; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800E6358; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800E6388; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800E6390; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800E6398; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800E644C; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800E6538; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800E6648; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800E6650; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800E6658; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800E6660; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800E6668; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800E6718; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800E6738; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800E68EC; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800E6A2C; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800E6F80; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800E7018; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800E70CC; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800E71F0; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800E733C; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800E73F4; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800E74C8; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800E7714; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800E7840; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800E7864; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800E79BC; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800E7A34; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800E7DC4; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800E7DE0; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800E7E38; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800E7E9C; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800E7EE0; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800E7F64; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800E8020; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800E80CC; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800E8178; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E82A8; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800E86FC; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800E8704; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800E88F8; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800E890C; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800E8914; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800E89D4; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800E8C90; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800E8C98; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800E8CA0; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800E8D50; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800E8EC0; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800E8F08; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800E8F74; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800E908C; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800E91A4; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800E9288; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800E978C; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800E9794; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800E979C; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E97A4; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800E97AC; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800E9904; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800E992C; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800E9BDC; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800E9C18; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800E9C74; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800E9D18; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800E9D50; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800E9D60; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800E9D74; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800E9DBC; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800E9EDC; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800EA020; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800EA0A8; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800EA128; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800EA190; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800EA238; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800EA290; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800EA298; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EA2F0; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800EA39C; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800EA484; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800EA48C; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800EA494; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800EA56C; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800EA570; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800EA608; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800EA6B0; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800EA6B4; // type:function size:0x60 scope:global align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800EA714; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800EA754; // type:function size:0x760 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EAEB4; // type:function size:0xB4 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EAF68; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EB0E0; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EB138; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EB140; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EB164; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EB258; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EB31C; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EB33C; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EB5B8; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EB5C0; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EB6D0; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EB6EC; // type:function size:0x44 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EB730; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EB7AC; // type:function size:0x104 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800EB8B0; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800EB8E0; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800EB8F4; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800EBD88; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800EBDFC; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800EBE28; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800EBE30; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800EBE38; // type:function size:0x2D4 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800EC10C; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800EC484; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800EC4A0; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800EC4A8; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800EC4B0; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800EC4B8; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EC4C0; // type:function size:0x8 scope:weak align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800EC4C8; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800EC528; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800EC558; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800EC5CC; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800EC624; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800EC62C; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800EC694; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EC69C; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800EC828; // type:function size:0x150 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800EC978; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800ECA04; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800ECA90; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800ECA98; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800ECAA0; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800ECAA8; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800ECFF4; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800ED0FC; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800ED1FC; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800ED204; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800ED2AC; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800ED2B4; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800ED308; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800ED314; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800ED334; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800ED370; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800ED47C; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800ED480; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800ED488; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800ED5D4; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800ED634; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800ED654; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800ED670; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800ED6C4; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800ED6D0; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800ED778; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800ED798; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800ED7A0; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800ED7C0; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800ED9C4; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800ED9CC; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800ED9D4; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800ED9DC; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800EDA8C; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800EDA94; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800EDA9C; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800EDAE8; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800EDD78; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800EDD7C; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800EDDB0; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800EDDB8; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800EDDC0; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800EDDC8; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800EDDD0; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800EDEAC; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800EDEB4; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800EDEF8; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800EDF0C; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800EDF14; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800EDF50; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800EE18C; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800EE19C; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800EE2D4; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800EE310; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800EE318; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE320; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE3C8; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800EE470; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800EE5C8; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800EE654; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800EE770; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800EE870; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800EE8A0; // type:function size:0x448 scope:global align:4 +__ct__8SluiceAIFv = .text:0x800EECE8; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800EF024; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800EF060; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800EF0CC; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800EF0DC; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800EF168; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800EF1F4; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800EF260; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800EF76C; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800EF880; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800EF8C4; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800EF8EC; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800EF910; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800EF91C; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800EF950; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800EF9D8; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800EFA58; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800EFACC; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800EFB24; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800EFBFC; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800EFD2C; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800EFE74; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800EFEA8; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800EFF24; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800EFF7C; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800EFFA4; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F0334; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F03B4; // type:function size:0x70 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F0424; // type:function size:0xE3C scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F1260; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F1294; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F12A0; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F1320; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F1344; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F13C0; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F17A0; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F17C8; // type:function size:0xB8 scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F1880; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F18B8; // type:function size:0x460 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F1D18; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F1D1C; // type:function size:0x32C scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F2048; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F204C; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F20C4; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F2184; // type:function size:0x178 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F22FC; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F2394; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F25E8; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F2628; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F2650; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F2828; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F287C; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F28FC; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F2924; // type:function size:0x54 scope:weak align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F2978; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F29B8; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F2AF4; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F2C38; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F2D4C; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F310C; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F326C; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F35E0; // type:function size:0x2BC scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F389C; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F3990; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F4368; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F4370; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800F58AC; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800F5974; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800F59E4; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800F59EC; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800F59F4; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800F5A00; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800F5A08; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800F5A34; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800F5A7C; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800F5AC8; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800F5B20; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800F5B7C; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800F5BB0; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800F5BF4; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800F5C30; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800F5C78; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800F5E98; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800F5F0C; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800F5F4C; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800F5F8C; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800F5FC0; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800F6000; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800F6040; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800F6314; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800F6374; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F65E4; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800F6728; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800F678C; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800F6954; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800F69E4; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800F6A44; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800F6A98; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800F6C3C; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800F6C40; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800F6C88; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800F6D34; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800F6EB0; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800F6ED4; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800F6FF4; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800F705C; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800F70C4; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800F72C8; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800F732C; // type:function size:0x64 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800F7390; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800F7568; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800F7608; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800F7668; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800F77B4; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800F7838; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800F78BC; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800F7940; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800F7948; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800F7950; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800F7958; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800F7994; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800F799C; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800F79A4; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800F79A8; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800F7A24; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800F7A54; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800F7AC0; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800F7B2C; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800F7B98; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800F7C04; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800F7C0C; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800F7C10; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800F7C18; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800F7C48; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800F7C50; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800F7C80; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F7CB0; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800F7D18; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800F7D88; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800F7D90; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800F7E20; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800F7E8C; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800F80F4; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800F8130; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800F81A0; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800F822C; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800F8230; // type:function size:0xB8 scope:global align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800F82E8; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800F8384; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800F83E0; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800F8408; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800F8410; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800F8418; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800F8440; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800F84F0; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800F84F4; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800F84F8; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800F8530; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800F8544; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800F8558; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800F8564; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800F8570; // type:function size:0x410 scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800F8980; // type:function size:0x228 scope:global align:4 +__ct__8NaviPropFv = .text:0x800F8BA8; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800F97C8; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800F97E8; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800F9808; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800F9828; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800F982C; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800F9834; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800F9A68; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800F9B88; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800F9B8C; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FA1F4; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FA248; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FA288; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FA690; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FA69C; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FA6E4; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FA870; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FA8A8; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FA8F8; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FACB4; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FACE8; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FB1E8; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FB3DC; // type:function size:0x7C4 scope:global align:4 +callDebugs__4NaviFf = .text:0x800FBBA0; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x800FBF1C; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x800FC6F8; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x800FC7BC; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x800FC7F8; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x800FC7FC; // type:function size:0xA40 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x800FD23C; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x800FD278; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x800FD2D0; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x800FD2D4; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x800FD320; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x800FD36C; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x800FD3BC; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x800FD594; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x800FD904; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x800FD908; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x800FDAF0; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x800FE3EC; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x800FEC44; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x800FF1EC; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x800FF2D4; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x800FF5AC; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x800FF7A8; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x800FF7AC; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x800FF7E8; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x800FF824; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x800FF93C; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x800FF940; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x800FF944; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x800FF948; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x800FF94C; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x800FF950; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x800FF954; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x800FF958; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x800FF95C; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x800FF960; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x800FF964; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x800FF968; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x800FF9DC; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x800FFAA0; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x800FFB9C; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x800FFC30; // type:function size:0x114 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x800FFD44; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x800FFEE8; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x800FFFF8; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x801001B0; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x801002C8; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x80100348; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x8010048C; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x8010057C; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x8010066C; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x8010072C; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80100960; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x801009BC; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x801009D0; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x80100D10; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x8010108C; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x801010B0; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x801010B4; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x801010B8; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x801010FC; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x80101104; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x8010110C; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x80101110; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x80101118; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x80101120; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x80101128; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x80101130; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x80101138; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x80101140; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x80101148; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x8010271C; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x80102760; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x801027CC; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x801029CC; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x80102A1C; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x80102A4C; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x80102A90; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x80102AE4; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x80102BAC; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x80102C98; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x80102D1C; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x80102D60; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x80102D64; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x80102D80; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x80102D84; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x80102DD8; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80102E68; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x801031A8; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x801031AC; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x80103200; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x8010330C; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x8010361C; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x801039F0; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x801039F4; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x80103A34; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x80103AB8; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x80103AE4; // type:function size:0xDE8 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x801048CC; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x801048F0; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x80104950; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x80104964; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x80104970; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x801049C4; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80104A4C; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x80104B04; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80104F6C; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x80104FB4; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x80104FE4; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x80105090; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x80105294; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x801052C4; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x801052DC; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x801053C4; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x801055AC; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x801055D4; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x8010560C; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x80105650; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x80105654; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x801056C4; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x80105710; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x80105734; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x80105778; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x801057EC; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x80105A48; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x80105A4C; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x80105A90; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x80105B6C; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x80105B70; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x80105B74; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x80105BA4; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x80105BE8; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x80105C7C; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x80105C98; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x80105CDC; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x80105CE0; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x80105D24; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x80105DF0; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x80105F2C; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x80105F90; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x80105F9C; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x80105FE0; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x80106104; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x8010627C; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x801063CC; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x80106400; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x80106454; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x80106594; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x801067A8; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x801068C8; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x8010695C; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x80106990; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x801069D4; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x80106A00; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x80106A30; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x80106B68; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x80107154; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x801071BC; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x80107228; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x8010726C; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x8010730C; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x8010739C; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x801073A0; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x80107430; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x80107474; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x801074A0; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x801074D0; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x8010789C; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x80107928; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x80107EC4; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x80108030; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x80108034; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x80108078; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x8010811C; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x80108128; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x80108270; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x80108368; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x8010836C; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x801083B0; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x80108440; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x80108688; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x8010869C; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x80108790; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x80108794; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x801087D8; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x80108868; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x80108A10; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x80108A14; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x80108AF8; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x80108B04; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x80108B48; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x80108CCC; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x80108DDC; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x80108E14; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x80108F40; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x80108FA0; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x80108FCC; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x80108FFC; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x801091E0; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x8010963C; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x8010964C; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x80109690; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x801096A0; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x80109794; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x80109798; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x801097DC; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x80109850; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x80109854; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x80109858; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x8010989C; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x80109940; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x80109944; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x80109948; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x8010998C; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x801099B8; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x801099E8; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x80109AB4; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x80109ED8; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x80109EDC; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x80109F5C; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x80109FA0; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x80109FA4; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x80109FA8; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x80109FAC; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x80109FF0; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x8010A094; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x8010A098; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x8010A0E8; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x8010A0EC; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x8010A130; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x8010A134; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010A150; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010A154; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010A198; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010A19C; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010A2F0; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010A30C; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010A310; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010A364; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010A3A8; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010A440; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010A494; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010A498; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010A49C; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010A508; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010A77C; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010A858; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010AAFC; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010AB30; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010ABB4; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010ABF8; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010ACFC; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010AD4C; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010AD98; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010AE40; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010AE84; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010AF54; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010AFA4; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010AFCC; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010B044; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010B04C; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010B054; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010B05C; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010B064; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010B06C; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010B074; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010B07C; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010B084; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010B08C; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010B090; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010B098; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010B0A0; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010B0A8; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010B0B0; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010B0B8; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010B0CC; // type:function size:0x14 scope:weak align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010B0E0; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B558; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B5E8; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B934; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B964; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010BA14; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010BA18; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BA1C; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010BB48; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BB4C; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BBD0; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BBD4; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BBD8; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BC54; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BCF0; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BCF4; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BDB4; // type:function size:0x2C8 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010C07C; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C080; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C0F8; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010C0FC; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C100; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C178; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C17C; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x8010C180; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x8010C254; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x8010C454; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x8010C8F4; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CA54; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CA90; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x8010CA94; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x8010CCAC; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CCE0; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CD1C; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x8010CE34; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x8010CE38; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x8010CE3C; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x8010CE40; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x8010CE44; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010CE48; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x8010CE4C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x8010CE50; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x8010CE54; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x8010CE58; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x8010CE5C; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE60; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE64; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CE68; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x8010CE6C; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x8010CEAC; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x8010CF98; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFi = .text:0x8010D3FC; // type:function size:0x254 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x8010D650; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x8010D7A0; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x8010D928; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x8010DAA4; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x8010DDC4; // type:function size:0xD94 scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x8010EB58; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x8010EC88; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x8010ED18; // type:function size:0xCD4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x8010F9EC; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x8010FE4C; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x801107F0; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x80110AA0; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x80110AAC; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x80110AE4; // type:function size:0x568 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x8011104C; // type:function size:0x5A4 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x801115F0; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x80111850; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x80111E14; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x80111E20; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80111E6C; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x80112008; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x8011202C; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x8011207C; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x801120FC; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x8011217C; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x801121D4; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x8011223C; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x801122D4; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x8011237C; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80112414; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x801124B8; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x80112560; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x80112624; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x80112628; // type:function size:0x9C scope:local align:4 +isNan__Ff = .text:0x801126C4; // type:function size:0x5C scope:global align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x80112720; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x801127BC; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x8011296C; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x80112B2C; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x80112CE4; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x80112F10; // type:function size:0x254 scope:global align:4 +__ct__11SlimeEffectFv = .text:0x80113164; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x801131CC; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x801131E8; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x80113204; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80113294; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x80113330; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x8011337C; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x801142D0; // type:function size:0x10 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x801142E0; // type:function size:0x44 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x80114324; // type:function size:0x44 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x80114368; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x8011439C; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x80114428; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x8011445C; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x801144DC; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x801144F8; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x80114514; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x80114560; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x801145E0; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x801145FC; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x80114618; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x80114634; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x80114680; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x801147B4; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x80114848; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x8011487C; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x801148B0; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x801148CC; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x801148E8; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x80114A34; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x80114AA4; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x80114AAC; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x80114C70; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x80114C8C; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x80114CD8; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x80114DB8; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80114E28; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x80115174; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x8011524C; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x80115250; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x80115340; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x80115344; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x80115388; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x801153C0; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x801153C8; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x80115488; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x8011553C; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x80115570; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x801155A4; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x801155D8; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x8011560C; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x80115708; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011579C; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x80115B00; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x80115B38; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115B74; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115B7C; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115B84; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x80115B8C; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x80115C58; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x80115CA8; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x80115CF8; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x80115E60; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x80115E68; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x80115F74; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x80116080; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x8011608C; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x801160A8; // type:function size:0x68 scope:global align:4 +selectRandomly__FP6Choicei = .text:0x80116110; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x801161C0; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x801161D0; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x80116228; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x80116298; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x80116308; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x8011635C; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x80116384; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x801163B4; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x801163EC; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x801163F8; // type:function size:0x28 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x80116420; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x8011658C; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x801169B0; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x80116C1C; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x80116E04; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x801171C4; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x80117344; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x801173A4; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x801173C4; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x80117438; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x80117450; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x8011756C; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x8011767C; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x80117798; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x801177C8; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x8011784C; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x80117854; // type:function size:0x8 scope:weak align:4 +makeObjectMapParts__Fv = .text:0x8011785C; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x80117A1C; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x80117AAC; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x80117BC4; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x80118228; // type:function size:0x27C scope:global align:4 +init__8MapPartsFv = .text:0x801184A4; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x801184A8; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x801184C0; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x8011851C; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x80118594; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x80118694; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x80118764; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x801187A4; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x80118B10; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x80118CFC; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x80118D00; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x80118D04; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x801199D4; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x80119A10; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x80119AB4; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x80119B30; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x80119BA8; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x80119C34; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x80119C74; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x80119CE4; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x80119D08; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x80119D2C; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x80119D3C; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x80119E04; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x80119E4C; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x80119F04; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x80119F3C; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x80119FE0; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011A3A0; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011A3A4; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011A450; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011A4E4; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011A548; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011A9C0; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011AAAC; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011AB84; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011ABB4; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011ACCC; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011AD44; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011ADD0; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011AE10; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011AEDC; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x8011B06C; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x8011B098; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x8011B11C; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8011B124; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8011B134; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x8011B13C; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x8011B148; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x8011B290; // type:function size:0x3C scope:global align:4 +makeObjectTeki__Fv = .text:0x8011B2CC; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x8011B30C; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x8011B394; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B420; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B4B4; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x8011B51C; // type:function size:0x70 scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8011B58C; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8011B6AC; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x8011B6E4; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x8011B70C; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x8011B820; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x8011B878; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x8011B8F4; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x8011B91C; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x8011B9AC; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x8011BAE0; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x8011BB38; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x8011BB74; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x8011BB94; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x8011BBD8; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BC80; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BCD8; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x8011BCF8; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x8011BD78; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x8011BD98; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x8011BE08; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x8011BE98; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x8011BF04; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x8011BF28; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8011BF4C; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8011BF9C; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x8011C014; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x8011C0E8; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x8011C134; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x8011C388; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x8011C3A4; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x8011C3E0; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x8011C410; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x8011C430; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x8011C440; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x8011C4E8; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x8011C58C; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x8011C620; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C6C0; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C730; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x8011C764; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x8011C838; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x8011C86C; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x8011C8D0; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x8011C994; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x8011C9F8; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x8011CA00; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x8011CA80; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x8011CB08; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x8011CCA4; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x8011CCD0; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x8011CCF4; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x8011CDC0; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x8011CDD0; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x8011CDF8; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x8011CE28; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x8011CE54; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x8011CE80; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x8011CEC0; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x8011CEDC; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x8011CF1C; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CF2C; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CF6C; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x8011CFA0; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x8011D014; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x8011D018; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x8011D100; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x8011D1DC; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x8011D1E8; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x8011D380; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D3FC; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D46C; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x8011D4A0; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x8011D560; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x8011D5C4; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x8011D660; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x8011D6AC; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D6E4; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D74C; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D79C; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x8011D878; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x8011D938; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x8011D95C; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x8011D9E0; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x8011DAB0; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x8011DB48; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x8011DE08; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x8011DE60; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DE6C; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DF4C; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x8011E03C; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x8011E0F8; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x8011E1C4; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x8011E1FC; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x8011E238; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x8011E270; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x8011E2A8; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x8011E2E0; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x8011E330; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x8011E444; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x8011E484; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x8011E4B4; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x8011E4EC; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x8011E53C; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x8011E58C; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x8011E5BC; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x8011E610; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x8011E648; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x8011E680; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x8011E6B4; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x8011E7F0; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x8011E86C; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x8011E89C; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x8011E8A4; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x8011E938; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x8011E96C; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x8011E99C; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x8011E9D4; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x8011EA18; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x8011EA6C; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x8011EAA8; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x8011EBE4; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x8011EC34; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x8011ED48; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x8011ED78; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x8011EDAC; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x8011EDDC; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x8011EE10; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x8011EE60; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x8011EE94; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x8011EEE4; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x8011EF14; // type:function size:0x44 scope:weak align:4 +__ct__14PaniMotionInfoFi = .text:0x8011EF58; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EF8C; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EFBC; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x8011EFC8; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x8011EFFC; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x8011F008; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x8011F074; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x8011F0E0; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8011F124; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x8011F190; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x8011F198; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F1C0; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F230; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x8011F2E0; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x8011F3EC; // type:function size:0xD0 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x8011F4BC; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x8011F67C; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x8011F7A0; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x8011F7F4; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x8011F8A0; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x8011F8DC; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x8011F958; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8011F9B8; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8011FA10; // type:function size:0x58 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8011FA68; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x8011FAC0; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x8011FB44; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x8011FC04; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x8011FC54; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x8011FEBC; // type:function size:0x3C scope:global align:4 +__ct__12PaniTestNodeFv = .text:0x8011FEF8; // type:function size:0x554 scope:global align:4 +setTestMode__12PaniTestNodeFi = .text:0x8012044C; // type:function size:0x84 scope:global align:4 +update__12PaniTestNodeFv = .text:0x801204D0; // type:function size:0x48C scope:global align:4 +updatePikis__12PaniTestNodeFv = .text:0x8012095C; // type:function size:0x2B4 scope:global align:4 +updateTekis__12PaniTestNodeFv = .text:0x80120C10; // type:function size:0x1BC scope:global align:4 +animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80120DCC; // type:function size:0x6C scope:global align:4 +draw__12PaniTestNodeFR8Graphics = .text:0x80120E38; // type:function size:0x684 scope:global align:4 +drawPiki__12PaniTestNodeFP8ViewPikiR8Graphics = .text:0x801214BC; // type:function size:0x34 scope:global align:4 +drawTeki__12PaniTestNodeFP4TekiR8Graphics = .text:0x801214F0; // type:function size:0x34 scope:global align:4 +init__15PaniTestSectionFv = .text:0x80121524; // type:function size:0x78 scope:global align:4 +@32@animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x8012159C; // type:function size:0x8 scope:weak align:4 +read__15ParaParametersIFR6Stream = .text:0x801215A4; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x80121624; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x801216A4; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x801216FC; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x8012177C; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x801217FC; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x80121854; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x801218FC; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x8012198C; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x80121A1C; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x80121A90; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x80121AF0; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x80121B50; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x80121BA0; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80121BA4; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80121BA8; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x80121BAC; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80121BB0; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80121BB4; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x80121BB8; // type:function size:0x4 scope:global align:4 +__ct__15PcamControlInfoFv = .text:0x80121BBC; // type:function size:0x24 scope:global align:4 +init__15PcamControlInfoFbbbbbbbfff = .text:0x80121BE0; // type:function size:0x2C scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x80121C0C; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x80121D40; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x80121D68; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x80121EF4; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x80121F2C; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x80122008; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x801224D4; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x801224E4; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x80122638; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x801227B4; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x801227E0; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x801228F0; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x80122C90; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x80122CD8; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x80122F00; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x80122F30; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFii = .text:0x80122FB4; // type:function size:0x44 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80122FF8; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x80123074; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x80123144; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x801231B0; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x80123210; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x80123224; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x80123288; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x801232A0; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80123300; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x8012335C; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x801233F0; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x80123410; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x80123458; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x801236C4; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x80123778; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x801237CC; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x80123808; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x80123944; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x80123994; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x80123AA8; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x80123AD8; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x80123B0C; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x80123B5C; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x80123B90; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x80123BE0; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x80123C10; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x80123C54; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x80123E4C; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x80123E70; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x80123EC0; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x80123F58; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x80123F90; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x80123F94; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x80123F98; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x80123FD8; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x80124120; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x80124158; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x8012415C; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x801241A8; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x80124274; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x8012434C; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x801243C4; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x80124448; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x801244C0; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x80124530; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x801247C0; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x80124884; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x801248F4; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x8012498C; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x8012499C; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x801249AC; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x801249BC; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x801249C4; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x8012543C; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x80125454; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x80125468; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x80125540; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x80125550; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x80125598; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x8012561C; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x801256A0; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x8012571C; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x80125770; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x801257D8; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x801258A4; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x80125918; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x80125968; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x80125970; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x801259D0; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x801259DC; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x80125AB8; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x80125AD4; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x80125AF0; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x80125B10; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x80125B30; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x80125B8C; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80125BE8; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80125C08; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x80125C28; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x80125C48; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x80125C68; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x80125CB0; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x80125CC0; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x80125DCC; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x80125E6C; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x80125E78; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x80125E80; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x80125E8C; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x80125EA8; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x80125EB4; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x80125ECC; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x80125EFC; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x80125F00; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x80125F04; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x80125F44; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x80125F58; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x801260D4; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x80126148; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x801261F8; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x8012622C; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x80126278; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x80126390; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x801263EC; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x80126414; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x80126464; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x80126598; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x80126644; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x801266C8; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x801266D4; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x80126794; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x801268B8; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x801269A4; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x80126B20; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x80126B7C; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x80126C18; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x80126CA0; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x80126DA0; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x80126DC4; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x80126DCC; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x80126DD4; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x80126DDC; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x80126DE4; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x80126DEC; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x80126DF4; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x80126E04; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x80126E60; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x80126EA4; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x80126EA8; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x80126F28; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x80126F2C; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x80126FD4; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x80126FDC; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x80127090; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x80127098; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x801270E4; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x80127164; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x801271E4; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x801272D0; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x801272F0; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x801273E4; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x80127448; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x80127494; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x801274A8; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x80127574; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x80127604; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x801276B0; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x8012773C; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x801277F4; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x80127834; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x80127844; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x80127EA4; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x80127EB4; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x80127ECC; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x80127EE4; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x80128010; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x80128098; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x8012816C; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x80128194; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x801281D8; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x8012820C; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x80128288; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x801282E0; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x80128364; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x801283A0; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x801283A8; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x801283B4; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x801283D4; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x80128434; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x8012846C; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x801284A4; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x801284E8; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x80128520; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x801285A4; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x80128948; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x80128CE8; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x80128D6C; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x80129108; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x8012A674; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x8012A7BC; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x8012A804; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x8012A85C; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x8012A8EC; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012A970; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x8012A978; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x8012A9D8; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x8012AA38; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x8012AAC0; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x8012AB44; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x8012AFC8; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x8012C764; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x8012C8CC; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x8012C9DC; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x8012CBCC; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x8012CC0C; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x8012CCB8; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x8012CCE8; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x8012CD58; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x8012CDCC; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x8012CF24; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x8012D004; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x8012D068; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x8012D164; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x8012D220; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x8012D330; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x8012D380; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x8012D3B4; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x8012D3E8; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x8012D41C; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012D4D4; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012D4FC; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x8012D524; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x8012D5C4; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x8012D664; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D7C0; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D8A0; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012D8E0; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012D99C; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012D9E0; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012DBF4; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x8012DC48; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012DCE8; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012DCFC; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x8012DDE4; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x8012DE48; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x8012DEA0; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x8012DF18; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x8012DF68; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x8012DFD4; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x8012E02C; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x8012E0BC; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x8012E144; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x8012E208; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x8012E260; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x8012E2EC; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x8012E34C; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x8012E3AC; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x8012E41C; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x8012E48C; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x8012E4A0; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x8012E4B4; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x8012E4C8; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x8012E4DC; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x8012E518; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x8012E554; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x8012E5A8; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x8012E5E0; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x8012E60C; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x8012E638; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x8012E6C4; // type:function size:0x4 scope:global align:4 +__ct__19TaiIwagonParametersFv = .text:0x8012E6C8; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x8012E7D0; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x8012E854; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x8012ED14; // type:function size:0x114 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x8012EE28; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x8012EE98; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x8012EEB4; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x8012EED4; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x8012EFEC; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x8012F1FC; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x8012F278; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x8012F2BC; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x8012F334; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x8012F4CC; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x8012F51C; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x8012F56C; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x8012F5BC; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x8012F630; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x8012F6EC; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x8012F7AC; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x8012F858; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x8012F948; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x8012FA70; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x8012FB98; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x8012FC1C; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x80130134; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x801313CC; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x8013147C; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x80131630; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x80131754; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x801317CC; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80131820; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80131824; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x80131984; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x80131D54; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x80131DAC; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80131E5C; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x80131E8C; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x80131EBC; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x80131EF8; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x80131F24; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x80131F64; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x80132014; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x80132190; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x8013221C; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x80132380; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x80132388; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x80132440; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x801327C0; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x80132844; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x801330F8; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x801331A0; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x801332AC; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x801332C0; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x8013333C; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x8013338C; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x80133414; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x801337D8; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x80133CF4; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x80133DF8; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x80133EA0; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80134018; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x80134050; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x80134070; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x8013416C; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x801341E0; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x80134204; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x80134250; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x80134270; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x8013427C; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x801342B8; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x80134314; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x801343E8; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x801343EC; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x80134450; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x80134454; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x80134478; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x801344B4; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x80134560; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x80134588; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x80134600; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x8013461C; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x80134638; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x801346B8; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x80134738; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x80134808; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x801348D8; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x8013490C; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x80134940; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x80134974; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x801349A8; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x80134A50; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x80134AF8; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x80134B84; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x80134BA4; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x80134C50; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134C80; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134CC4; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134CC8; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80134E04; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x80134E74; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x80134EFC; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x80134F00; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x80134F78; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x80134FBC; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x80135108; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x80135264; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x801353F8; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x801354C8; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x801355F8; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x80135624; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x801356D0; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x80135A3C; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x80135A80; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x80135AA0; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x80135C20; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x80135CA4; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x80136208; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x801384CC; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x80138550; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013860C; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x8013885C; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x80138918; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x801389B8; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80138A0C; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80138AB8; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x80138B60; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x80138C18; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x80138CC0; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x80138D48; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x80138DF0; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x80138E88; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x80139124; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x8013913C; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x80139260; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x801392C0; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x801392E4; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x80139350; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x801396B4; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x80139830; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x80139AFC; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x80139BE0; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x80139CC4; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x80139E5C; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x80139F88; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x8013A15C; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013A220; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x8013A3C8; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x8013A3D0; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x8013A3E4; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x8013A4BC; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x8013A500; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x8013A584; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x8013AAC4; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x8013AB48; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x8013B084; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x8013C6A0; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013C768; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013C884; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x8013CA48; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x8013CA9C; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x8013CBC4; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013CD0C; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013D124; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013D1A8; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013D2D4; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013D438; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013D4BC; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x8013D518; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x8013D578; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x8013D5AC; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x8013D608; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x8013D824; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x8013D82C; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013D834; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013D838; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x8013D8E8; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x8013D8F0; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x8013D9E0; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x8013DA38; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x8013DAB4; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x8013DB38; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x8013DD2C; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x8013E21C; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x8013E4D0; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x8013E508; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x8013E650; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x8013E750; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x8013E7B4; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x8013E838; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x8013E898; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x8013E910; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x8013E964; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x8013E9CC; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x8013EA04; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x8013EA38; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x8013EA9C; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x8013EAA0; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x8013EB30; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x8013EBD8; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x8013EBF4; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x8013EC00; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x8013EC14; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x8013EC44; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x8013EC9C; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x8013ECC0; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x8013ECE4; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x8013ED30; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x8013ED7C; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x8013ED88; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x8013EDC8; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x8013EDE0; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x8013EE04; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x8013EE8C; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x8013EF64; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x8013EFA4; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x8013EFC4; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x8013F05C; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x8013F198; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x8013F1D8; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x8013F228; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x8013F298; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x8013F2B4; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x8013F2D0; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x8013F304; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x8013F388; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x8013F7D0; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x8013FC0C; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x801412F8; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x8014137C; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x80141478; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x801415A0; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801415C4; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x801415F8; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x80141614; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x801417F0; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x80141834; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x80141868; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x801418E4; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x80141AC0; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x80141CB0; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x80141CD8; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x80141D00; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x80141DC4; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80141E1C; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x80141EE0; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x80141F34; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x80141FD0; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x80142054; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x801421E0; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x801426D4; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x80142760; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x80142954; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x80142A24; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x80142A5C; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x80142AD4; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x80142C7C; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x80142CF4; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x80142DF8; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x80142FC8; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x8014304C; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x80143194; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x801432E0; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x8014364C; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x8014366C; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x801436D0; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x801436F0; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80143718; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x801437C0; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x801437E0; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x80143888; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x801438B0; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x80143934; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x80143988; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x80143A9C; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x80143B0C; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x80143BF0; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x80143C74; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x80143D00; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x80143D08; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x80143D14; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x80143D24; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x80143D34; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80143D3C; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80143D48; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x80143D60; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x80143D7C; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x80143D98; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x80143DB4; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x80143DD0; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80143DEC; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x80143E00; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x80143E08; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x80143E10; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80143E18; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x80143E20; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80143E28; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x80143E30; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80143E38; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x80143E40; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80143E48; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x80143EDC; // type:function size:0x80 scope:global align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80143F5C; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x80143FC0; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x80143FC8; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x80143FF4; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x80144040; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x8014405C; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80144074; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x8014408C; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x80144130; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x80144154; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x80144160; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x8014416C; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x8014421C; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x8014422C; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x8014427C; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80144290; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x80144338; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x80144570; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x80144598; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x80144930; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x80144994; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x80144D0C; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x80144E28; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x80144EA8; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x80144F48; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x80145010; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x80145074; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x8014510C; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x8014513C; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x801451E0; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x80145260; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x80145440; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x8014544C; // type:function size:0x258 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x801456A4; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x80145738; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x80145888; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x80145908; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x801459B4; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x80145A88; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x80145AFC; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x80145B98; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x80145BC4; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x80145BF4; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x80145C40; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x80145C64; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x80145DB4; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x80145E68; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x80146004; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x801462AC; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x80146498; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x801464D8; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x801465B0; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x80146740; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x80146990; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x801469AC; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x801469C8; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x801469E8; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x80146A08; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x80146A10; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x80146A14; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x80146AC8; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x80146BB0; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x80146BD0; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x80146C58; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x80146D14; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x80146EA4; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x80146FF8; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x8014714C; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x80147300; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x801473F0; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x801475CC; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x80147694; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x801476E0; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x80147934; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x80147A10; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x80147B18; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x80147B94; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x80147C24; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x80147D74; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x80147DA8; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x80147DEC; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x80147E54; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x80148000; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x80148068; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x801482EC; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x80148460; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x801485A8; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x801485FC; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x8014863C; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x801486D4; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x801486F0; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x80148740; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x80148790; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x801487E0; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x80148928; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x80148934; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x80148960; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x80148994; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x801489D8; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x80148A4C; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x80148AE4; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x80148B18; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x80148B4C; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x80148B7C; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x80148BA8; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x80148BE8; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x80148C54; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x80148DC8; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x80149004; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x801490B4; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x80149374; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x8014946C; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x80149560; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x801495E8; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x80149728; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x801497A8; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x801497CC; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x801497F0; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x80149848; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x801498F0; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x80149934; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x8014997C; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x801499D8; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x801499F8; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x80149A1C; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x80149A40; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x80149A70; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x80149AA0; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x80149B80; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80149BAC; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x80149BC0; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x80149C14; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x80149C40; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x80149C6C; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x80149C9C; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x80149CB0; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x80149CD0; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x80149CF4; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x80149D9C; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x80149E0C; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x80149E7C; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x80149E90; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x80149F38; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x80149F4C; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x8014A030; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x8014A0A0; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x8014A0B8; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x8014A1FC; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014A220; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x8014A244; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014A280; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x8014A33C; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x8014A398; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x8014A3CC; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x8014A3FC; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x8014A40C; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x8014A450; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x8014A4E0; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x8014A524; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x8014A52C; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x8014A584; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x8014A58C; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x8014A598; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x8014A898; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x8014AA88; // type:function size:0x20 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x8014AAA8; // type:function size:0xA4 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x8014AB4C; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x8014ABC8; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x8014ACD4; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x8014AD18; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x8014AD2C; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x8014AD3C; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x8014AD4C; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x8014AD5C; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x8014AE78; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x8014AF20; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x8014AFC8; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x8014AFD4; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x8014B044; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x8014B098; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x8014B11C; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x8014B124; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x8014B368; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x8014B9F8; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x8014BB0C; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x8014BCE0; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014BD34; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x8014BD48; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x8014C69C; // type:function size:0x3C4 scope:global align:4 +__ct__15TekiPersonalityFv = .text:0x8014CA60; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x8014CC58; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x8014CD84; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x8014CE24; // type:function size:0x2F0 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x8014D114; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x8014D1A4; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x8014D1B4; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x8014D1B8; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x8014D1BC; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x8014D1C0; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x8014D1C4; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x8014D1F8; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x8014D22C; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x8014D260; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x8014D264; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x8014D2D0; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x8014D35C; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x8014D3E4; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x8014D4D0; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D4F0; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D510; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D530; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014D5B0; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x8014D640; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x8014D790; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x8014D8CC; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x8014DE78; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x8014DF64; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x8014E078; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x8014E110; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x8014E3B0; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x8014E514; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x8014E548; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x8014E598; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x8014E5C8; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x8014E70C; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x8014E9DC; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x8014ECB8; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x8014EE10; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x8014EE70; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x8014EED0; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x8014EF94; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x8014F04C; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x8014F078; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x8014F1D0; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x8014F328; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x8014F370; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x8014F3C0; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x8014F42C; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x8014F52C; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x8014F5B8; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x8014F5BC; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x8014F628; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x8014F658; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x8014F76C; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x8014F774; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x8014F7B0; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x8014F834; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x8014F838; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x8014F948; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x8014F9B4; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x8014F9BC; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x8014F9C4; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x8014F9CC; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x8014F9D4; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x8014F9DC; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x8014F9E4; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x8014FA00; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x8014FA08; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x8014FA10; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x8014FA14; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x8014FA18; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x8014FA1C; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x8014FA20; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x8014FA24; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x8014FA68; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x8014FAFC; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x8014FB3C; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x8014FC04; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x8014FC74; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x8014FCF0; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x8014FD88; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x8014FEF4; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x8014FEFC; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x8014FF04; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x8014FF50; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x8014FFD0; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x80150050; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x80150344; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x80150388; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x801503A0; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x80150D6C; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x80150F24; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x801513E4; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x80152198; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x80152258; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x80152308; // type:function size:0x110 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x80152418; // type:function size:0x158 scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x80152570; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x801525F4; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x80152600; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x80152610; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x8015267C; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x80152684; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x80152794; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x8015315C; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x8015329C; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x801532A4; // type:function size:0xC4 scope:global align:4 +doKill__6SpiderFv = .text:0x80153368; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x801533C0; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x801533E8; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x80153454; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x801535A0; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x80153618; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x8015363C; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x80153680; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x801537E0; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x801537E8; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x80153838; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80153840; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x80153860; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x80153908; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x80153984; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80153A2C; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x80153A4C; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x80153A60; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x80153A70; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x80153AB4; // type:function size:0x2FC scope:global align:4 +dieState__8SpiderAiFv = .text:0x80153DB0; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x80154010; // type:function size:0x19F8 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x80155A08; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x80155B8C; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x80155D68; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x80155F90; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x80156050; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x801563D4; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x8015668C; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x801567D8; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x801568B8; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x80156AF0; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x80156C44; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x80156C60; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x80156C7C; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x80156C98; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x80156E28; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x80156EB8; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x80157020; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x80157074; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x801571AC; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x80157360; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x80157704; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x801579EC; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x80157B54; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x80157CBC; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x80157E8C; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x8015814C; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x80158358; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x801584CC; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x801585FC; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x80158844; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x80158A74; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x80158D38; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x80158E78; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x801590E8; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x8015976C; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x80159A58; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x8015A0FC; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x8015A138; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8015A2A0; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x8015A2C4; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x8015ABB4; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x8015ACB8; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x8015ACC0; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x8015ACCC; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x8015ACD4; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x8015AD8C; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x8015ADD8; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x8015AE00; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x8015AE64; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x8015AF0C; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x8015AF84; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x8015AFF8; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x8015B01C; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x8015B070; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x8015B0E4; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x8015B198; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x8015B1E8; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x8015B1F0; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x8015B2C0; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x8015B35C; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x8015B3D8; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x8015B4E0; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x8015B558; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x8015B604; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x8015B614; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x8015B658; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x8015B75C; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x8015BFE4; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x8015C114; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x8015C184; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x8015C2E8; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015C318; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015C5B0; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x8015C848; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x8015CAA4; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x8015CD00; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x8015D114; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x8015D5EC; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x8015D964; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x8015DCEC; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x8015DEF4; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x8015DF40; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x8015DF60; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x8015E0EC; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x8015E6B4; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x8015E6BC; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x8015E86C; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x8015FCA8; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x8015FEC8; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x8015FF30; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x80160088; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x80160124; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x8016014C; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x80160464; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x80160758; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x80160AC0; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x80160D14; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x80160F58; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x801610E8; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x80161538; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x80161730; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x801618C8; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x80161BBC; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x80161F74; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x80162498; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x801629D8; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x80162AE4; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x80162CC4; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x8016367C; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x801636E0; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x80163714; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x80163C8C; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x80163E60; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x80163EB4; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80163F08; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80163F14; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x80163F1C; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x80164198; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x801641CC; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x801641D0; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x80164274; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x8016431C; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x801643BC; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x801643E0; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x80164404; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x8016456C; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x8016458C; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x801649CC; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x801649EC; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x801649F8; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x80164A18; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80164B28; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80164B78; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x80164B80; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x80164B88; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x80164C30; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x80164C44; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x80164F54; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x80165018; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x8016517C; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x801654B8; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x801655A0; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x801656B8; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x801657FC; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x80165920; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x80165A08; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x80165B0C; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x80165D8C; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x8016600C; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x801662A8; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x80166414; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x8016671C; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x80166A28; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x80166BC0; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x80166EA4; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x801673E0; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x80167874; // type:function size:0x2D88 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x8016A5FC; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x8016A630; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x8016A76C; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016AA10; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x8016ACFC; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x8016B160; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x8016B278; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x8016B2F0; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x8016B370; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x8016B378; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x8016B380; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x8016B39C; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x8016B3C0; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x8016B3F0; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x8016B420; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x8016B440; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x8016B444; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x8016B448; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x8016B494; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x8016B498; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x8016B49C; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x8016B4A4; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x8016BC60; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x8016BDA8; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x8016BDB0; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x8016BDD0; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x8016BE54; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8016BEB4; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x8016BEDC; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x8016BF40; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x8016C0B8; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x8016C10C; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x8016C184; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x8016C1A8; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x8016C1FC; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x8016C250; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x8016C258; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x8016C2A8; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x8016C2B0; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x8016C2F8; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x8016C404; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x8016C480; // type:function size:0x1D0 scope:global align:4 +keyAction1__6KingAiFv = .text:0x8016C650; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x8016C734; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x8016C784; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x8016C798; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x8016C828; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x8016C86C; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x8016C8AC; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x8016CA00; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x8016CA14; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x8016CA28; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x8016CEA8; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x8016D308; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x8016D5B0; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x8016D5DC; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x8016D86C; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x8016DD24; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x8016DE44; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x8016E0C8; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x8016E1E0; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x8016E2AC; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x8016E2F4; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x8016E3C0; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x8016E6C0; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x8016E9CC; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x8016EDAC; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x8016F1F4; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x8016F4AC; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x8016F63C; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x8016FA48; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x8016FB94; // type:function size:0x16C scope:global align:4 +update__6KingAiFv = .text:0x8016FD00; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x80172D84; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x80172E60; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x801730AC; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x801732BC; // type:function size:0x250 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x8017350C; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x801735E8; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x80173824; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x80173840; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x8017385C; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x80173A98; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x80173AC0; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x80173CA0; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x80173DE0; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x80173F78; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x801744F0; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80174720; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x8017538C; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80175528; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801755A8; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x80175754; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x80175770; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x8017578C; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801757B8; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x801759B8; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x80175A30; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x80175D60; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x80175DE4; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x80175DEC; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x80175E40; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x80175E8C; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x80175EB4; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x80175ED4; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x80175F6C; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x80175FD8; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x80176010; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x80176054; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x801760AC; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x801760FC; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x80176104; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x801762B0; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x801762E8; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x8017635C; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x8017646C; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x801764E8; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x80176544; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x801765EC; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x80176600; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x80176628; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x80176664; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x80176740; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x80176928; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x80176B54; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x80176CFC; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x80176EDC; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x80176FA0; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x80177340; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x80177514; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80177DB8; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x80177DE0; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x80178094; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x8017812C; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x80178134; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x80178184; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x80178220; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x8017826C; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x80178294; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x801782E0; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x801783C0; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x80178444; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x80178468; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x801784AC; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x80178500; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x80178550; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x80178558; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x801785CC; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x80178760; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x801787DC; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x80178820; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x8017883C; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x80178850; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x80178918; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x8017895C; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x80178994; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x80178B48; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x80178BA8; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x80178D7C; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x80178FA4; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x80179180; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x80179380; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x8017954C; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x80179DE4; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x80179E08; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x80179E98; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x80179F04; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x80179F0C; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x80179F58; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x80179F94; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x80179F98; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x80179FE4; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x8017A088; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x8017A0F4; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017A110; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x8017A154; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x8017A1A4; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x8017A1AC; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x8017A23C; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x8017A2C0; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x8017A2C8; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x8017A328; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x8017A35C; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x8017A360; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x8017A380; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x8017A418; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x8017A484; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x8017A4A8; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x8017A4EC; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x8017A53C; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x8017A544; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x8017A564; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x8017A5D8; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x8017A654; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x8017A658; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x8017A65C; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x8017A670; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x8017A680; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x8017A684; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x8017A954; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x8017A9E4; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x8017AA68; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017AA70; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x8017AAD4; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x8017AB08; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x8017AB0C; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x8017AB2C; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x8017ABC4; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017AC30; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x8017AC54; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x8017AC98; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017ACEC; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017AD3C; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x8017AD44; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x8017AD64; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x8017ADD8; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x8017AE54; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x8017AE58; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x8017AE5C; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x8017AE70; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x8017AE80; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x8017AE84; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x8017AE90; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x8017B3D4; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x8017B464; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x8017B4E8; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x8017B544; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x8017B54C; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x8017B58C; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x8017B5CC; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x8017B618; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x8017B640; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x8017B68C; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x8017B724; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x8017B790; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x8017B7B4; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x8017B7F8; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x8017B800; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x8017B850; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x8017B858; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x8017B8D8; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x8017B990; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x8017BA48; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x8017BA4C; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x8017BAC8; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x8017BB84; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x8017BC54; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x8017BEC0; // type:function size:0x358 scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x8017C218; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x8017C2C8; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x8017C388; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x8017C524; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x8017C81C; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x8017C868; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x8017C890; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x8017C8F0; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x8017C9EC; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x8017CA88; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x8017CBA8; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x8017CD48; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x8017CDD4; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x8017CEF4; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x8017D0B8; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x8017D1F8; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x8017D364; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x8017D680; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x8017D694; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x8017D6BC; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x8017D744; // type:function size:0x2EC scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x8017DA30; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x8017DF0C; // type:function size:0x188 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x8017E094; // type:function size:0x6A8 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x8017E73C; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x8017E7D0; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x8017E850; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x8017E87C; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x8017E8E4; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x8017EA58; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x8017EA94; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x8017EAF8; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x8017EB80; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x8017EEA8; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x8017EF14; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x8017EF98; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x8017F01C; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x8017F134; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x8017F224; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x8017F314; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x8017F67C; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x8017F6A0; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x8017F700; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x8017F748; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x8017FAA0; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x8017FB20; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x8017FB88; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x8017FC00; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x8017FD40; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x8017FD64; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x8017FEDC; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x8017FFD0; // type:function size:0x14C scope:global align:4 +getSpecialNumber__3zenFi = .text:0x8018011C; // type:function size:0x30 scope:global align:4 +setSpecialNumber__3zenFii = .text:0x8018014C; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x80180178; // type:function size:0x218 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x80180390; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x80180420; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x80180494; // type:function size:0x160 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x801805F4; // type:function size:0x3A8 scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x8018099C; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x80180AA0; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x80180E54; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x80180E5C; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x80181054; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x80181090; // type:function size:0x4A8 scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x80181538; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x8018161C; // type:function size:0x9F8 scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x80182014; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x801820AC; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x80182170; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x80182244; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x80182318; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x8018263C; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x801826C8; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x80182A88; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x80182B38; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x80182B94; // type:function size:0x80 scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x80182C14; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x80182CD0; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x80182D00; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x80182DE0; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x80182EB4; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80183080; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x8018331C; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x8018337C; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x80183408; // type:function size:0xDE0 scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x801841E8; // type:function size:0x17C scope:global align:4 +__ct__Q23zen14ogScrResultMgrFPQ23zen10EnumResult = .text:0x80184364; // type:function size:0x170 scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x801844D4; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x80184C18; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x80184F9C; // type:function size:0x104 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x801850A0; // type:function size:0x970 scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x80185A10; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x80185A9C; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x80185B34; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x80185D54; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x80186238; // type:function size:0x5D4 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x8018680C; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x80186854; // type:function size:0x128 scope:global align:4 +MapOn__Q23zen10ogRaderMgrFv = .text:0x8018697C; // type:function size:0x24 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x801869A0; // type:function size:0x168 scope:global align:4 +AreaScroll__Q23zen10ogRaderMgrFPfPfff = .text:0x80186B08; // type:function size:0x100 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x80186C08; // type:function size:0x298 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x80186EA0; // type:function size:0x748 scope:global align:4 +end__Q23zen10ogRaderMgrFv = .text:0x801875E8; // type:function size:0x3C scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x80187624; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x80187790; // type:function size:0x140 scope:global align:4 +getCardFileInfos__Q23zen18ogScrFileSelectMgrFv = .text:0x801878D0; // type:function size:0x1F4 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x80187AC4; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x80187AE4; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x80187BC4; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x80187C78; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x80187C8C; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x80187D7C; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x8018825C; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x80188588; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x801886EC; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x80188C0C; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x80188DC4; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x801890B4; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x801893F4; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x801896BC; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x80189FB4; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x80189FC0; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x8018A178; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x8018A330; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x8018A3E8; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x8018A470; // type:function size:0x404 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8018A874; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018ABE0; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018ADDC; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x8018AFB0; // type:function size:0xA20 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x8018B9D0; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x8018B9F4; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x8018BB50; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BB98; // type:function size:0x11C scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x8018BCB4; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x8018BD34; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BD90; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x8018BDE8; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018BE3C; // type:function size:0x1DC scope:global align:4 +cnvSingleMulti__Q23zen15ogScrMessageMgrFPc = .text:0x8018C018; // type:function size:0x18C scope:global align:4 +cnvButtonIcon__Q23zen15ogScrMessageMgrFPc = .text:0x8018C1A4; // type:function size:0x184 scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x8018C328; // type:function size:0x234 scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018C55C; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x8018C5A4; // type:function size:0x2A4 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x8018C848; // type:function size:0x170 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x8018C9B8; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x8018C9CC; // type:function size:0x57C scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x8018CF48; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x8018D04C; // type:function size:0x9D0 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x8018DA1C; // type:function size:0x258 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x8018DC74; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x8018DCB8; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x8018DCF0; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x8018DD28; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x8018DF4C; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x8018E0DC; // type:function size:0xEC4 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x8018EFA0; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x8018F0B0; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x8018F1F4; // type:function size:0x150 scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x8018F344; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x8018F440; // type:function size:0x178 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x8018F5B8; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F84C; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F8E8; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018F9B0; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x8018FA50; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x8018FA74; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x8018FBCC; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x8018FE64; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x8019011C; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x8019054C; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x80190714; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x80190820; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x80190924; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x801911A4; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x80191294; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x80191354; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x801916A4; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x801916E4; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x8019195C; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x80191D78; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x801922CC; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x801925CC; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x801929C8; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x80192C34; // type:function size:0x598 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x801931CC; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x80193594; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x801936A4; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x801936F4; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x80193748; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x801938E0; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x8019399C; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80193CFC; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x80193DE8; // type:function size:0x354 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x8019413C; // type:function size:0xA8 scope:global align:4 +checkTypingAll__Q23zen19ogScrMakeDefaultMgrFv = .text:0x801941E4; // type:function size:0x20 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x80194204; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80194C10; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80194C4C; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x80194DDC; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x80194E80; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x8019556C; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80195740; // type:function size:0x73C scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x80195E7C; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x80195F3C; // type:function size:0x834 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x80196770; // type:function size:0xF4 scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x80196864; // type:function size:0x3E4 scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x80196C48; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x80196DB0; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x80196E04; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x80196E58; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x8019719C; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x801972A8; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80197650; // type:function size:0x488 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x80197AD8; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80197B3C; // type:function size:0x3EC scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x80197F28; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x80197FEC; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x801982F0; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x80198610; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x801988AC; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x80198988; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x80198A80; // type:function size:0x38 scope:global align:4 +stop__Q23zen13ogScrStartMgrFv = .text:0x80198AB8; // type:function size:0x28 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x80198AE0; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x80198CA0; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80198D2C; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x80198E18; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80198EDC; // type:function size:0x538 scope:global align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x80199414; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x80199474; // type:function size:0xD38 scope:global align:4 +__ct__12CMresultModeFv = .text:0x8019A1AC; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x8019A258; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x8019A2D0; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x8019A458; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x8019A488; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x8019A4C8; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x8019A54C; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x8019A570; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x8019A5F0; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x8019A614; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x8019A6D4; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x8019A6F8; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x8019A778; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x8019A79C; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x8019A880; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x8019A8A4; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x8019A978; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x8019A99C; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x8019AACC; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x8019AAF0; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x8019AB70; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x8019AB94; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x8019AC1C; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x8019AC40; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x8019ACD0; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019ACF4; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x8019AD74; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x8019AD98; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x8019AE18; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x8019AE3C; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x8019AEEC; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x8019AF10; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x8019AF90; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x8019AFB4; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019B034; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x8019B058; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x8019B098; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x8019B09C; // type:function size:0x154 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x8019B1F0; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x8019B298; // type:function size:0x358 scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x8019B5F0; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x8019B7AC; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x8019B7D0; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x8019B7D4; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x8019B804; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x8019B884; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x8019B888; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019B91C; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019B920; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019BAE0; // type:function size:0x180 scope:global align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x8019BC60; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x8019BF7C; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x8019C0B0; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x8019C1AC; // type:function size:0x64C scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x8019C7F8; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x8019C938; // type:function size:0x7C scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x8019C9B4; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x8019C9F0; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x8019CB08; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CB38; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CB7C; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x8019CBBC; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x8019CC00; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x8019CCA8; // type:function size:0x64 scope:global align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019CD0C; // type:function size:0x24C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x8019CF58; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x8019D0AC; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x8019D224; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x8019DD7C; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019E074; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019EF74; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x8019F6C8; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x8019FD10; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x8019FED4; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x801A00B0; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0758; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0794; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A07D0; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A080C; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0860; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A08BC; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A0918; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x801A09A4; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x801A0AB4; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x801A0BFC; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0CC8; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0CFC; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x801A0DEC; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x801A0E5C; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x801A0EB0; // type:function size:0x74 scope:global align:4 +load__Q23zen14particleLoaderFPcb = .text:0x801A0F24; // type:function size:0x158 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x801A107C; // type:function size:0x84 scope:global align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x801A1100; // type:function size:0x13C scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x801A123C; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A1288; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x801A12FC; // type:function size:0x110 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x801A140C; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x801A1480; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x801A1528; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x801A15C4; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x801A165C; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x801A1710; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x801A1740; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x801A17D4; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A1904; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A1960; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A1A08; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A1A64; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A1BE4; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A1C2C; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A1D40; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A1DA8; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A1E10; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A1EAC; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A226C; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A244C; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A26D8; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A2754; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A284C; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A28D0; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A29F0; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A2A48; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A2AC8; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A2AFC; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A2C4C; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A2D48; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A2E5C; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A3000; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A30C8; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A30D0; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A30D8; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A30E0; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A30E8; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A30EC; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A30F0; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A30F8; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A3278; // type:function size:0x31C scope:global align:4 +addAnimation__12TAIanimationFPc = .text:0x801A3594; // type:function size:0x3C scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A35D0; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A3654; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A39B8; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A45CC; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A46EC; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A47B0; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A4EAC; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A4EB4; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A4EC0; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A4EC8; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A4F90; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A4FA0; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A4FEC; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A5004; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A501C; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A52A4; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A52C4; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A52DC; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A52FC; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A5314; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A5334; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A5354; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A536C; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A5384; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A5394; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A5400; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A5554; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A559C; // type:function size:0x1D8 scope:weak align:4 +__ct__16TAImarSoundTableFv = .text:0x801A5774; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801A57F8; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801A5C38; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801A6A20; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801A6BEC; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801A6CB0; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801A6FDC; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801A6FE8; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801A6FF0; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801A7060; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A7068; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A7080; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801A7098; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801A70E4; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A7104; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A710C; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801A7124; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801A7398; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801A75D0; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A75D8; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801A75F0; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801A75F8; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801A7610; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801A761C; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801A7678; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801A7680; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801A774C; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801A7764; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801A7768; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801A7780; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801A78B4; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801A78CC; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801A7908; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801A799C; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A79A4; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A79B0; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801A7AA0; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801A7AB8; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801A7B00; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801A7DD0; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A7DE0; // type:function size:0x208 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A7FE8; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801A8028; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A8480; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A8488; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801A8490; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801A84E0; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801A84FC; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801A852C; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801A8624; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801A86D0; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801A8714; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801A8858; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801A889C; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801A897C; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801A8984; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801A89CC; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801A8A34; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801A8B34; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801A8BDC; // type:function size:0x50 scope:global align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801A8C2C; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801A8CC0; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A8E64; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A8FA4; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801A8FAC; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801A915C; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801A91A8; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801A92C0; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A93AC; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A94AC; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A94B4; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A94D4; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A94F8; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801A9608; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801A9640; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801A9748; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A9760; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A9798; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A9834; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A98EC; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A9904; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A993C; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A99C4; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801A99DC; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801A9AB8; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801A9DD4; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801A9EA0; // type:function size:0x1E8 scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801AA088; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801AA100; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801AA15C; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801AA244; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801AA344; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801AA364; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801AA418; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801AA530; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801AA5A8; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801AA62C; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801AA6C4; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801AA6CC; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801AA748; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801AA9F8; // type:function size:0x354 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801AAD4C; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801AAD54; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801AAD8C; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801AAEF0; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801AAF08; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801AB018; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801AB0DC; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801AB114; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AB204; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AB23C; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801AB32C; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801AB358; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801AB3D0; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801AB40C; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801AB5BC; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801AB9EC; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801ABA3C; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801ABD6C; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801ABD74; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABD8C; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABE0C; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801ABE54; // type:function size:0x348 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801AC19C; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801AC1D8; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801AC578; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801AC598; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801AC618; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801AC8D4; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801AC8EC; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801AC8F4; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801AC984; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801ACA94; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801ACA98; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801ACB28; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801ACC40; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801ACC54; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801ACC78; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801ACCC4; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801ACCE0; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801ACD04; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801ACEB8; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801ACF40; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801ACF74; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801AD08C; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801AD094; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801AD098; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801AD298; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801AD31C; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801AD3A0; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801AD40C; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801AD474; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801AD544; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD614; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD7EC; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801AD7F4; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801AD7FC; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801AD930; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801ADA2C; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801ADAB8; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801ADC1C; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801ADC9C; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801ADDE8; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801ADE80; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801ADECC; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801ADF6C; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801ADF74; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801ADFCC; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801AE0B4; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801AE0C8; // type:function size:0xD4 scope:global align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801AE19C; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801AE1D8; // type:function size:0x254 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801AE42C; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801AE434; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801AE558; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801AE55C; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801AE564; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801AE77C; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE7E4; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE828; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AE844; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801AE8E4; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801AE970; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801AEAC8; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AEB40; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801AEB48; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AEC20; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801AEC28; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801AED50; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801AED58; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801AEDEC; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801AEE6C; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801AEF04; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801AEF98; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801AF034; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801AF0CC; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF0D4; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF148; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF218; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF6CC; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801AF6D4; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801AF6DC; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801AF6FC; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801AF77C; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801AF7A4; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801AF7AC; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801AF860; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801AF92C; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801AFAA0; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801AFB40; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801AFB54; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801AFB78; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801AFC24; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801AFC50; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801AFC9C; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801AFCEC; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801AFCF0; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801AFDB4; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801AFE8C; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801AFEC8; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801B0134; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801B0190; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801B0214; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801B0274; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801B02A0; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801B040C; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801B04A0; // type:function size:0x1FC scope:global align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801B069C; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801B06A4; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801B06B8; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B0700; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B0730; // type:function size:0x14 scope:global align:4 +update__7P2DPaneFv = .text:0x801B0744; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801B0878; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801B0880; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801B09CC; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B0B34; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801B0DC4; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801B0EA4; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801B1348; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801B1394; // type:function size:0xA4 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801B1438; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801B1694; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801B17A0; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801B17A4; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801B17A8; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801B180C; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801B1814; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801B1838; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801B185C; // type:function size:0x68 scope:weak align:4 +makeResident__10P2DPictureFv = .text:0x801B18C4; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B1938; // type:function size:0x58 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B1990; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B1A44; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B1B78; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B1C24; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B1CC0; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B1D14; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B1D7C; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B1DF4; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B2458; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B268C; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B2B3C; // type:function size:0x14 scope:global align:4 +update__9P2DScreenFv = .text:0x801B2B50; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B2B9C; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B2C00; // type:function size:0x12C scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B2D2C; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B2ECC; // type:function size:0x8 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B2ED4; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B31FC; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B322C; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B324C; // type:function size:0x28 scope:global align:4 +getResource__9P2DStreamFi = .text:0x801B3274; // type:function size:0xC4 scope:global align:4 +align__9P2DStreamFi = .text:0x801B3338; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B33C8; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B33E0; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B3440; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B34A8; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B34BC; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B3578; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B3628; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B364C; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B3670; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B36A4; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B3724; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B3768; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B3784; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B37C0; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B37F0; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B3878; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B39D8; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B3C30; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B3C98; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B3D30; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B40C4; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B4250; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B4350; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B43F0; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B4448; // type:function size:0x64 scope:weak align:4 +makeResident__10P2DTextBoxFv = .text:0x801B44AC; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B44E4; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B4534; // type:function size:0x20C scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B4740; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B47A8; // type:function size:0x198 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B4940; // type:function size:0x64 scope:weak align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B49A4; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B49EC; // type:function size:0x100 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B4AEC; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B4B40; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B4B68; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B4BAC; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B4DFC; // type:function size:0x5C8 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801B53C4; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801B59E8; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801B5B5C; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801B5C64; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801B5DB4; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801B5E70; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801B5F48; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801B5F6C; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801B6030; // type:function size:0x308 scope:global align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801B6338; // type:function size:0x1FCC scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801B8304; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801B8524; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801B8534; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801B8544; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801B8580; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801B89D4; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B8AC4; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B8B40; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B8BC0; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B8C70; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801B8D24; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801B8F48; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B917C; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B9184; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801B91AC; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801B9218; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801B9320; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801B95F4; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801B98D8; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801B9A90; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801B9B08; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801B9C54; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801B9DE8; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801B9F00; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801BA0F8; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BA134; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801BA13C; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801BA594; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801BA600; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801BD2AC; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801BD2C0; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801BD388; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801BD3F0; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801BD484; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801BD5D4; // type:function size:0x4B8 scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801BDA8C; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801BDBF0; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801BDC28; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801BE848; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801BED74; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801BF138; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801BF194; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801BF29C; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801BF414; // type:function size:0x160 scope:weak align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801BF574; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801BF67C; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801BF6A0; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801BF6F0; // type:function size:0xB4 scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BF7A4; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801BF8BC; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801BF8C4; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BF8D8; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BF9C4; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801BF9F4; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BFB14; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801BFB30; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801BFBA0; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801BFCC4; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801BFE2C; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801C01C8; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801C02A4; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801C0310; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801C03A4; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801C049C; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801C07A4; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801C08B4; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801C09E0; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801C0B8C; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801C0D84; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801C1044; // type:function size:0x5C scope:global align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801C10A0; // type:function size:0x24 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801C10C4; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801C1140; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C25B4; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C26D8; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C2704; // type:function size:0x78 scope:global align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C277C; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C2828; // type:function size:0xF4 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C291C; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C2EE0; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C2F68; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C2F74; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C2F80; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C2F8C; // type:function size:0x170 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C30FC; // type:function size:0xAFC scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C3BF8; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C3C4C; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C3CB8; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C4054; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C43E0; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C44D4; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C48E0; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C490C; // type:function size:0x2C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C4938; // type:function size:0x28 scope:global align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C4960; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C4998; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C4B78; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801C4D14; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C5098; // type:function size:0x1E8 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C5280; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801C55A0; // type:function size:0x434 scope:global align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801C59D4; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801C5A58; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801C5E70; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801C6D64; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801C6EA4; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801C72C0; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801C72E4; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801C72FC; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801C7320; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801C743C; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7470; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7504; // type:function size:0x8D4 scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7DD8; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C7DF4; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801C7E0C; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801C7EAC; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C8F5C; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C8F7C; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801C8F94; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801C9184; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801C91A8; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801C9308; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801C9364; // type:function size:0x160 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801C94C4; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801C94CC; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801C9A78; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801C9E2C; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801C9EA0; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801C9EF0; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801CA2A8; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801CA32C; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801CA698; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801CB11C; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801CB818; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801CB870; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801CB8C8; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801CB8E0; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB8F8; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB918; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB938; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB950; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CB968; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801CBAD4; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801CBB08; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801CBB68; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801CBBEC; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801CBFAC; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801CCDE8; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801CD4E4; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801CD4FC; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD514; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD534; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD554; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD56C; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CD584; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CD6F0; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CD708; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801CD720; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801CD7A4; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801CDC1C; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801CEEB8; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801CF5B4; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801CF5CC; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF5E4; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF604; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF624; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF63C; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CF654; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801CF7C0; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801CF828; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801CFA0C; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801CFA24; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801CFA2C; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801CFA68; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801CFAA4; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CFACC; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CFB94; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801CFDC4; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CFDDC; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CFDF4; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801CFE0C; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801CFE90; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801D0184; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801D0460; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801D0B5C; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801D0B80; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801D0BCC; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801D0D40; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0D50; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0E0C; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D0E68; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801D0E70; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801D0ED4; // type:function size:0xE8 scope:weak align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801D0FBC; // type:function size:0x1E4 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801D11A0; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801D1224; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801D15E4; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D20B4; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D247C; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D249C; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D254C; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D2694; // type:function size:0x8C scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D2720; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D2E1C; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D2E34; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D2E94; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D3068; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D3088; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D3418; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D3484; // type:function size:0x298 scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D371C; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D3768; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D3838; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D3960; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D3968; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D39FC; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D3A04; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D3A50; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D3AAC; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D3B64; // type:function size:0x87C scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D43E0; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D4570; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801D479C; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801D47F8; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801D4800; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801D4884; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801D4B7C; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801D4D64; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801D4EEC; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801D4F28; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801D5624; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801D5660; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801D5944; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801D595C; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801D59C0; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801D59C8; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801D59D8; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801D5A40; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801D5B94; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801D5D70; // type:function size:0xE0 scope:weak align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801D5E50; // type:function size:0xB8 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801D5F08; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801D5FA8; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801D6010; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D6050; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D61FC; // type:function size:0x50 scope:global align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801D624C; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801D62D0; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801D66D4; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801D80A0; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801D8164; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801D8860; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801D8898; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801D8944; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801D8978; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801D8A30; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801D8B80; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801D8B90; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801D8C38; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801D8E0C; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801D8E44; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801D8F6C; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801D9054; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801D90B8; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801D917C; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801D92F0; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801D9300; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801D9320; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801D9338; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801D9350; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801D93A0; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801D94C8; // type:function size:0x900 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801D9DC8; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801D9E24; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D9E80; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D9ECC; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D9EE4; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D9F30; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801D9F48; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801D9F7C; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801DA06C; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801DA080; // type:function size:0x8 scope:weak align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801DA088; // type:function size:0x1C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801DA0A4; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801DA0D8; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801DA114; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801DA150; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801DA194; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801DA20C; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801DA250; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801DA404; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801DA4DC; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801DA52C; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801DA7CC; // type:function size:0x48 scope:global align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801DA814; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801DABA8; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801DAC18; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801DAC3C; // type:function size:0x374 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801DAFB0; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801DB0B8; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801DB104; // type:function size:0x48 scope:global align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801DB14C; // type:function size:0x246C scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801DD5B8; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801DD72C; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DD740; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801DD76C; // type:function size:0x67C scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801DDDE8; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801DDE94; // type:function size:0x11C scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801DDFB0; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801DE0B4; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801DE1A0; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801DE304; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801DE3BC; // type:function size:0x164 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801DE520; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801DE554; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801DE6DC; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801DE714; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DF328; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801DF584; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801DF670; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801DF750; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801DFAA8; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801E00D0; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801E0420; // type:function size:0xD0 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E04F0; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E0984; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801E0D38; // type:function size:0x134 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801E0E6C; // type:function size:0x1B78 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E29E4; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E2AAC; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E2DC4; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E2E0C; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E3288; // type:function size:0x2744 scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801E59CC; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801E5BE0; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801E6184; // type:function size:0x868 scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801E69EC; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801E7000; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801E71C8; // type:function size:0x154 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801E731C; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E73F8; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801E751C; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E7728; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801E7948; // type:function size:0x168 scope:weak align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801E7AB0; // type:function size:0x1F8 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801E7CA8; // type:function size:0x10 scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801E7CB8; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801E7E60; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801E88D0; // type:function size:0x30 scope:global align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801E8900; // type:function size:0x334 scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801E8C34; // type:function size:0x15C scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801E8D90; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801E8DCC; // type:function size:0xE8 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801E8EB4; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801E8FE8; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801E9100; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801E9614; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801E9654; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801E96B8; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801E9704; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801E9748; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801E97F4; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801E98A0; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801E98C0; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801E9B3C; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801E9B88; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801E9BAC; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801E9CD4; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801E9CF8; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801E9DA0; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801E9E00; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801E9F7C; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801E9FA0; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801EA234; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801EA930; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801EA9C0; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801EAA70; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801EAAF4; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801EAE30; // type:function size:0x530 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801EB360; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801EBA5C; // type:function size:0x384 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801EBDE0; // type:function size:0x3D4 scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801EC1B4; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801EC244; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801EC2D8; // type:function size:0xC0 scope:weak align:4 +act__13TAIAwaitOtamaFR4Teki = .text:0x801EC398; // type:function size:0xE0 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801EC478; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801EC630; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801EC8D8; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801ECC7C; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801ECD04; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801ECF98; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801ED018; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801ED134; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801ED178; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801ED208; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801ED210; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801ED310; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801ED478; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801ED480; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801ED5D8; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801ED608; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801ED654; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801ED6A0; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801ED6A8; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801ED7C8; // type:function size:0xE4 scope:global align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801ED8AC; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801ED9FC; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801EDA04; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801EDEE8; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801EDF84; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801EDFF8; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801EE074; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EE0B0; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801EE114; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EE228; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801EE230; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801EE2AC; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801EE2C0; // type:function size:0x28 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801EE2E8; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801EE418; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801EE50C; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801EE514; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801EE738; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801EE778; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801EE79C; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801EE818; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801EE83C; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801EE860; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801EE868; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801EE870; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801EE8CC; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801EEAA0; // type:function size:0xC8 scope:weak align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801EEB68; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801EF5BC; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801EF688; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801EF6D8; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801EF770; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801EF8E0; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801EF99C; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801EFB08; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EFB10; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EFB5C; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801EFC34; // type:function size:0xFC scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801EFD30; // type:function size:0xA4 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801EFDD4; // type:function size:0x378 scope:global align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801F014C; // type:function size:0x438 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F0584; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801F05F4; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801F0614; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801F07B4; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F07E8; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F07F0; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801F0A04; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801F0A80; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801F0E58; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801F0F84; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801F1134; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801F11B8; // type:function size:0x33C scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801F14F4; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801F1500; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801F15A8; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F19D8; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F1A20; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F1C2C; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F1D10; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F1D60; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F1E4C; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F1F7C; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F2130; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F2164; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F21CC; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F2218; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F2424; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F25E0; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F265C; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F29A4; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F29C8; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F2A18; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F2A60; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F2A84; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F3328; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F3390; // type:function size:0x1D0 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F3560; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F3654; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F3844; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F3880; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F38D4; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F396C; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F39A0; // type:function size:0x98 scope:global align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F3A38; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801F44F8; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801F46CC; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801F4804; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801F4808; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801F4EF4; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801F50C8; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801F5138; // type:function size:0x1A4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801F52DC; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801F5414; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801F5438; // type:function size:0xC8 scope:global align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801F5500; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F554C; // type:function size:0x188 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801F56D4; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F5740; // type:function size:0x94 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801F57D4; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801F57FC; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801F5824; // type:function size:0x120 scope:global align:4 +PPCMfmsr = .text:0x801F5944; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801F594C; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801F5954; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801F595C; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801F5964; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801F596C; // type:function size:0x8 scope:global align:4 +PPCSync = .text:0x801F5974; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801F597C; // type:function size:0x14 scope:global align:4 +PPCMfhid2 = .text:0x801F5990; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801F5998; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801F59A0; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801F59A8; // type:function size:0x28 scope:global align:4 +OSInit = .text:0x801F59D0; // type:function size:0x2DC scope:global align:4 +OSExceptionInit = .text:0x801F5CAC; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801F5F2C; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801F5F2C; // type:label scope:global +__OSDBJump = .text:0x801F5F50; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801F5F50; // type:label scope:global +__OSDBJUMPEND = .text:0x801F5F54; // type:label scope:global +__OSSetExceptionHandler = .text:0x801F5F54; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801F5F70; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801F5F84; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801F5F84; // type:label scope:global +__DBVECTOR = .text:0x801F5FDC; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801F5FEC; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801F601C; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801F6020; // type:function size:0x54 scope:local align:4 +__OSPSInit = .text:0x801F6074; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801F60AC; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801F60C0; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801F610C; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801F6118; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801F6368; // type:function size:0x68 scope:global align:4 +OSSetAbsAlarm = .text:0x801F63D0; // type:function size:0x64 scope:global align:4 +OSCancelAlarm = .text:0x801F6434; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801F6550; // type:function size:0x210 scope:local align:4 +DecrementerExceptionHandler = .text:0x801F6760; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801F67AC; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801F68A8; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801F6918; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801F6920; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801F6928; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801F6930; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801F6938; // type:function size:0x194 scope:global align:4 +__OSStopAudioSystem = .text:0x801F6ACC; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801F6BA4; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801F6BB8; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801F6BE8; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801F6C1C; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801F6C50; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801F6C80; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801F6CB0; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801F6CE0; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801F6D18; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801F6D28; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x801F6D3C; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801F6DD4; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801F6F34; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801F7028; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801F714C; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801F7274; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801F72D0; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801F72DC; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801F735C; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801F7434; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801F743C; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801F7460; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801F751C; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801F77C4; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801F7848; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801F7890; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801F7910; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801F7A3C; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801F7A58; // type:function size:0x174 scope:global align:4 +SetExiInterruptMask = .text:0x801F7BCC; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x801F7CC0; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x801F7F1C; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x801F7FBC; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x801F80A8; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x801F82B0; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x801F82F8; // type:function size:0x7C scope:global align:4 +EXIProbe = .text:0x801F8374; // type:function size:0x168 scope:global align:4 +EXIProbeEx = .text:0x801F84DC; // type:function size:0x60 scope:global align:4 +EXIAttach = .text:0x801F853C; // type:function size:0xE4 scope:global align:4 +EXIDetach = .text:0x801F8620; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x801F86DC; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x801F8808; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x801F8918; // type:function size:0x80 scope:local align:4 +TCIntrruptHandler = .text:0x801F8998; // type:function size:0x1F4 scope:local align:4 +EXTIntrruptHandler = .text:0x801F8B8C; // type:function size:0xAC scope:local align:4 +EXIInit = .text:0x801F8C38; // type:function size:0x104 scope:global align:4 +EXILock = .text:0x801F8D3C; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x801F8E30; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x801F8F0C; // type:function size:0x18 scope:global align:4 +OSGetFontEncode = .text:0x801F8F24; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801F8F7C; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801F8F7C; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801F8F8C; // type:label scope:global +OSEnableInterrupts = .text:0x801F8F90; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801F8FA4; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801F8FC8; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801F8FE4; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801F8FF8; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801F906C; // type:function size:0x2B0 scope:local align:4 +__OSMaskInterrupts = .text:0x801F931C; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801F93A4; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801F942C; // type:function size:0x324 scope:global align:4 +ExternalInterruptHandler = .text:0x801F9750; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801F979C; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801F97B4; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801F9814; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801F98DC; // type:function size:0xDC scope:global align:4 +OSInitMutex = .text:0x801F99B8; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x801F99F0; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x801F9ACC; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x801F9B94; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x801F9C04; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x801F9C24; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x801F9CF8; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x801F9D18; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x801F9E18; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x801F9E50; // type:function size:0x74 scope:global align:4 +Run = .text:0x801F9EC4; // type:function size:0x40 scope:local align:4 +Callback = .text:0x801F9F04; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x801F9F10; // type:function size:0x1B0 scope:global align:4 +OSRegisterResetFunction = .text:0x801FA0C0; // type:function size:0x84 scope:global align:4 +Reset = .text:0x801FA144; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x801FA1B4; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x801FA1FC; // type:function size:0x1B8 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x801FA3B4; // type:function size:0xF4 scope:global align:4 +OSGetResetSwitchState = .text:0x801FA4A8; // type:function size:0x1F4 scope:global align:4 +WriteSramCallback = .text:0x801FA69C; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x801FA6FC; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x801FA814; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x801FA948; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x801FA9A4; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x801FAA00; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x801FAD08; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x801FAD2C; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x801FAD50; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x801FAD60; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x801FADE0; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x801FAE84; // type:function size:0x80 scope:global align:4 +OSSetProgressiveMode = .text:0x801FAF04; // type:function size:0xA4 scope:global align:4 +SIBusy = .text:0x801FAFA8; // type:function size:0x20 scope:global align:4 +CompleteTransfer = .text:0x801FAFC8; // type:function size:0x244 scope:local align:4 +SIIntrruptHandler = .text:0x801FB20C; // type:function size:0x118 scope:local align:4 +SIInit = .text:0x801FB324; // type:function size:0x74 scope:global align:4 +__SITransfer = .text:0x801FB398; // type:function size:0x208 scope:local align:4 +SIGetStatus = .text:0x801FB5A0; // type:function size:0x10 scope:global align:4 +SISetCommand = .text:0x801FB5B0; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x801FB5C4; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x801FB5D4; // type:function size:0x60 scope:global align:4 +SIEnablePolling = .text:0x801FB634; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x801FB6D0; // type:function size:0x6C scope:global align:4 +SIGetResponse = .text:0x801FB73C; // type:function size:0x24 scope:global align:4 +AlarmHandler = .text:0x801FB760; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x801FB7EC; // type:function size:0x13C scope:global align:4 +SystemCallVector = .text:0x801FB928; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x801FB928; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x801FB944; // type:label scope:global +__OSInitSystemCall = .text:0x801FB948; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x801FB9AC; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x801FBAD4; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x801FBAE4; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x801FBAF0; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x801FBB24; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x801FBB64; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x801FBBA4; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x801FBC0C; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x801FBC48; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x801FBE08; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x801FBE58; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x801FC058; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x801FC088; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x801FC0C4; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x801FC1E4; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x801FC2C8; // type:function size:0x1BC scope:global align:4 +OSJoinThread = .text:0x801FC484; // type:function size:0x140 scope:global align:4 +OSResumeThread = .text:0x801FC5C4; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x801FC84C; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x801FC9BC; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x801FCAA8; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x801FCBAC; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x801FCBB4; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x801FCC50; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x801FD3A0; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x801FD3B8; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x801FD3C0; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x801FD424; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x801FD5C0; // type:function size:0x204 scope:global align:4 +InitializeUART = .text:0x801FD7C4; // type:function size:0x48 scope:global align:4 +ReadUARTN = .text:0x801FD80C; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x801FD814; // type:function size:0x200 scope:global align:4 +__init_user = .text:0x801FDA14; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x801FDA34; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x801FDA88; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x801FDAA8; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x801FDAD0; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x801FDB18; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x801FDB28; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x801FDB44; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x801FDB94; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x801FDBC0; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x801FDC8C; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x801FDCDC; // type:function size:0x104 scope:global align:4 +MTXTrans = .text:0x801FDDE0; // type:function size:0x3C scope:global align:4 +MTXScale = .text:0x801FDE1C; // type:function size:0x38 scope:global align:4 +MTXLightPerspective = .text:0x801FDE54; // type:function size:0xCC scope:global align:4 +MTXPerspective = .text:0x801FDF20; // type:function size:0xD0 scope:global align:4 +MTXOrtho = .text:0x801FDFF0; // type:function size:0x98 scope:global align:4 +PSVECSquareMag = .text:0x801FE088; // type:function size:0x1C scope:global align:4 +VECMag = .text:0x801FE0A4; // type:function size:0x88 scope:global align:4 +__DVDInitWA = .text:0x801FE12C; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x801FE16C; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x801FE460; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x801FE4E4; // type:function size:0x70 scope:local align:4 +Read = .text:0x801FE554; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x801FE664; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x801FE6E4; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x801FE97C; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x801FEA10; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x801FEA3C; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x801FEAE0; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x801FEB6C; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x801FEBF8; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x801FEC94; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x801FED2C; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x801FEDB8; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x801FEE54; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x801FEF10; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x801FEF24; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x801FEF3C; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x801FEF80; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x801FEFB8; // type:function size:0x2E0 scope:global align:4 +DVDFastOpen = .text:0x801FF298; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x801FF30C; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x801FF3D4; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x801FF3F8; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x801FF558; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x801FF61C; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x801FF6DC; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x801FF70C; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x801FF824; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x801FF848; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x801FF934; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x801FF964; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x801FFA60; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x801FFAB4; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x801FFB34; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x801FFBDC; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x801FFC78; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x801FFCA0; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x801FFD54; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x801FFFE8; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x80200050; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x802000E8; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x80200110; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x80200268; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x8020034C; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x80200380; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x802003B8; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x802004CC; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x80200570; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x8020066C; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x802006B0; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x8020077C; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x802007AC; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x8020081C; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x80200844; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x80200928; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x80200B70; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x80200E30; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x80201404; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x802014C0; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x8020159C; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x8020166C; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x80201740; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x80201804; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x802018A4; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x802018CC; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x80201910; // type:function size:0xAC scope:global align:4 +DVDCancelAsync = .text:0x802019BC; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x80201C2C; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x80201CD8; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x80201CFC; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x80201D04; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x80201DE8; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x80201F04; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x80201F3C; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x80201FA4; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x80202044; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x8020209C; // type:function size:0x60 scope:global align:4 +__DVDStoreErrorCode = .text:0x802020FC; // type:function size:0x158 scope:global align:4 +cb = .text:0x80202254; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x8020232C; // type:function size:0x150 scope:global align:4 +__VIRetraceHandler = .text:0x8020247C; // type:function size:0x210 scope:local align:4 +VISetPostRetraceCallback = .text:0x8020268C; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x802026D0; // type:function size:0x68 scope:local align:4 +__VIInit = .text:0x80202738; // type:function size:0x1E8 scope:global align:4 +VIInit = .text:0x80202920; // type:function size:0x438 scope:global align:4 +VIWaitForRetrace = .text:0x80202D58; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x80202DAC; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x80203080; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x80203220; // type:function size:0x69C scope:global align:4 +VIFlush = .text:0x802038BC; // type:function size:0x11C scope:global align:4 +VISetNextFrameBuffer = .text:0x802039D8; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x80203A44; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x80203AC0; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x80203AC8; // type:function size:0xBC scope:local align:4 +VIGetTvFormat = .text:0x80203B84; // type:function size:0xC scope:global align:4 +VIGetDTVStatus = .text:0x80203B90; // type:function size:0x3C scope:global align:4 +ClampStick = .text:0x80203BCC; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x80203CFC; // type:function size:0x108 scope:global align:4 +DoReset = .text:0x80203E04; // type:function size:0xD4 scope:local align:4 +PADProbeCallback = .text:0x80203ED8; // type:function size:0x1DC scope:local align:4 +UpdateOrigin = .text:0x802040B4; // type:function size:0x194 scope:local align:4 +PADOriginCallback = .text:0x80204248; // type:function size:0x11C scope:local align:4 +PADOriginUpdateCallback = .text:0x80204364; // type:function size:0x3C scope:local align:4 +PADFixCallback = .text:0x802043A0; // type:function size:0x254 scope:local align:4 +PADResetCallback = .text:0x802045F4; // type:function size:0x730 scope:local align:4 +PADReset = .text:0x80204D24; // type:function size:0x16C scope:global align:4 +PADRecalibrate = .text:0x80204E90; // type:function size:0x154 scope:global align:4 +PADInit = .text:0x80204FE4; // type:function size:0x1C4 scope:global align:4 +PADReceiveCheckCallback = .text:0x802051A8; // type:function size:0x15C scope:local align:4 +PADRead = .text:0x80205304; // type:function size:0x338 scope:global align:4 +PADSetSamplingRate = .text:0x8020563C; // type:function size:0xB0 scope:global align:4 +PADControlMotor = .text:0x802056EC; // type:function size:0xBC scope:global align:4 +PADSetSpec = .text:0x802057A8; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x80205808; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x8020597C; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x80205AF0; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x80205EE8; // type:function size:0x11C scope:local align:4 +AIRegisterDMACallback = .text:0x80206004; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x80206048; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x802060D0; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x802060E8; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x802060F8; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x80206110; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x80206120; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x802061F8; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x80206208; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x802062E8; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x802062FC; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x80206324; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x802063F8; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x80206408; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x80206424; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x80206434; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x80206450; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x80206460; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x802065C4; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x80206640; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x802066D0; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x80206728; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x8020690C; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x80206950; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x80206A40; // type:function size:0xF4 scope:global align:4 +ARGetBaseAddress = .text:0x80206B34; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x80206B3C; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x80206BB4; // type:function size:0xECC scope:local align:4 +__ARQServiceQueueLo = .text:0x80207A80; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x80207B80; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x80207B84; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x80207C50; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x80207CB8; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x80207E14; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x80207E24; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x80207E34; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x80207E4C; // type:function size:0x14 scope:global align:4 +__CARDDefaultApiCallback = .text:0x80207E60; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x80207E64; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x80207E98; // type:function size:0xCC scope:global align:4 +__CARDExiHandler = .text:0x80207F64; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x8020807C; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x80208124; // type:function size:0x84 scope:global align:4 +__CARDReadNintendoID = .text:0x802081A8; // type:function size:0x10C scope:global align:4 +__CARDEnableInterrupt = .text:0x802082B4; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x80208374; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x80208464; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x80208510; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x802085B4; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x802087E0; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x802088F0; // type:function size:0x1A0 scope:local align:4 +__CARDReadSegment = .text:0x80208A90; // type:function size:0x138 scope:global align:4 +__CARDWritePage = .text:0x80208BC8; // type:function size:0x120 scope:global align:4 +__CARDEraseSector = .text:0x80208CE8; // type:function size:0xDC scope:global align:4 +CARDInit = .text:0x80208DC4; // type:function size:0x90 scope:global align:4 +__CARDSetDiskID = .text:0x80208E54; // type:function size:0x1C scope:global align:4 +__CARDGetControlBlock = .text:0x80208E70; // type:function size:0xB0 scope:global align:4 +__CARDPutControlBlock = .text:0x80208F20; // type:function size:0x50 scope:global align:4 +CARDGetResultCode = .text:0x80208F70; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x80208FA0; // type:function size:0x120 scope:global align:4 +CARDGetSectorSize = .text:0x802090C0; // type:function size:0x6C scope:global align:4 +__CARDSync = .text:0x8020912C; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x802091C4; // type:function size:0x50 scope:local align:4 +BlockReadCallback = .text:0x80209214; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x802092F0; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x80209354; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x80209430; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x80209494; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x802094AC; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x802094B4; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x80209588; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x80209650; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x80209768; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x80209804; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x802098B0; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x802098B8; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x80209988; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x80209A50; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x80209B14; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x80209CC4; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x80209F48; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x8020A188; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8020A40C; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x8020A498; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x8020AA28; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x8020AA50; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x8020AAA4; // type:function size:0x20 scope:global align:4 +DoMount = .text:0x8020AAC4; // type:function size:0x3B8 scope:local align:4 +__CARDMountCallback = .text:0x8020AE7C; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x8020AF84; // type:function size:0x188 scope:global align:4 +CARDMount = .text:0x8020B10C; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x8020B154; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x8020B1F0; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x8020B29C; // type:function size:0x144 scope:local align:4 +CARDFormatAsync = .text:0x8020B3E0; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x8020BA38; // type:function size:0x48 scope:global align:4 +__CARDCompareFileName = .text:0x8020BA80; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x8020BAE8; // type:function size:0x8C scope:global align:4 +__CARDIsPublic = .text:0x8020BB74; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x8020BBA4; // type:function size:0x174 scope:global align:4 +CARDOpen = .text:0x8020BD18; // type:function size:0x174 scope:global align:4 +CARDClose = .text:0x8020BE8C; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x8020BEE0; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x8020BEE8; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x8020C018; // type:function size:0x218 scope:global align:4 +CARDCreate = .text:0x8020C230; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x8020C278; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x8020C430; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x8020C560; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x8020C6A4; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x8020C6EC; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x8020C85C; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x8020C90C; // type:function size:0x110 scope:global align:4 +CARDWrite = .text:0x8020CA1C; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x8020CA64; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x8020CB08; // type:function size:0x128 scope:global align:4 +CARDFastDelete = .text:0x8020CC30; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x8020CC78; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x8020CE70; // type:function size:0x128 scope:global align:4 +CARDSetStatusAsync = .text:0x8020CF98; // type:function size:0x170 scope:global align:4 +CARDSetStatus = .text:0x8020D108; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x8020D150; // type:function size:0x1F0 scope:global align:4 +CARDRename = .text:0x8020D340; // type:function size:0x48 scope:global align:4 +ExtHandler = .text:0x8020D388; // type:function size:0xC scope:local align:4 +ExiHandler = .text:0x8020D394; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x8020D3C4; // type:function size:0x3C scope:local align:4 +HIOEnumDevices = .text:0x8020D400; // type:function size:0x1C4 scope:global align:4 +HIOInit = .text:0x8020D5C4; // type:function size:0x234 scope:global align:4 +HIOReadMailbox = .text:0x8020D7F8; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x8020D928; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x8020DA1C; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x8020DB60; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x8020DBDC; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x8020DC00; // type:function size:0xF40 scope:global align:4 +GXCPInterruptHandler = .text:0x8020EB40; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x8020EC7C; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x8020ECE8; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x8020ED58; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x8020ED64; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x8020EE74; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x8020EFEC; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x8020F00C; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x8020F0E8; // type:function size:0x44 scope:global align:4 +__GXFifoReadEnable = .text:0x8020F12C; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x8020F154; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x8020F178; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x8020F1BC; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x8020F208; // type:function size:0x4C scope:local align:4 +GXSetCurrentGXThread = .text:0x8020F254; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x8020F2A0; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x8020F2A8; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x8020F400; // type:function size:0x338 scope:global align:4 +GXSetVtxDescv = .text:0x8020F738; // type:function size:0x35C scope:global align:4 +__GXSetVCD = .text:0x8020FA94; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x8020FBFC; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x8020FC48; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x8020FFA4; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x80210320; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x802103BC; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x80210448; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x80210458; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80210728; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x80210770; // type:function size:0x68 scope:global align:4 +GXDrawDone = .text:0x802107D8; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x80210858; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x8021087C; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x80210890; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x802108A4; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x802108C0; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80210948; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x80210964; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x80210978; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x80210994; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x802109BC; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80210A44; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x80210AC8; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x80210B48; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80210BD4; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x80210CB0; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x80210D38; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x80210D90; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80210DE4; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x80210E48; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x80210E98; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x80210EDC; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x80210F00; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x80210FC0; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x80211080; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x802110C4; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x80211234; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x80211260; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x802112DC; // type:function size:0xBC scope:global align:4 +GXSetCopyClear = .text:0x80211398; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x80211400; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x80211628; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x80211644; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x802117B4; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80211944; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x8021197C; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x80211998; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x802119A8; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x802119C4; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x80211A98; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x80211AC0; // type:function size:0x144 scope:global align:4 +GXSetChanAmbColor = .text:0x80211C04; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x80211D6C; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x80211ED4; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x80211F20; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x80212104; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x802121CC; // type:function size:0x254 scope:global align:4 +GXInitTexObjLOD = .text:0x80212420; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x802125B4; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x802125BC; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x80212764; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x802127B8; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x802128D8; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x80212920; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x80212968; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x8021297C; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x80212990; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x80212A5C; // type:function size:0x16C scope:global align:4 +GXSetTevIndirect = .text:0x80212BC8; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x80212C64; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x80212E38; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x80212E64; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x80212EAC; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x80212F78; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x80212F9C; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x80213140; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x802131C0; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x80213244; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x80213304; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x802133C4; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x80213438; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x802134AC; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x80213520; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x8021358C; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x802135F8; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x80213650; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x802136F0; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x80213740; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x802137C4; // type:function size:0x1A0 scope:global align:4 +GXSetNumTevStages = .text:0x80213964; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x80213998; // type:function size:0x1B4 scope:global align:4 +GXSetFogRangeAdj = .text:0x80213B4C; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x80213C4C; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x80213D50; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x80213D90; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x80213DD0; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x80213E48; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x80213E88; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x80213F98; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x80213FD8; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x8021402C; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x80214064; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x802140E4; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x802140E8; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x802141B0; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x80214284; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x802142F4; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x802143C8; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x802143FC; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x80214430; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x80214454; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x80214490; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x802144D0; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x8021450C; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x80214590; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x802146AC; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x802146D0; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x80214780; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x802147C4; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x802147EC; // type:function size:0x84 scope:global align:4 +__va_arg = .text:0x80214870; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x80214964; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x802149AC; // type:function size:0x18 scope:global align:4 +__copy = .text:0x802149C4; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x802149F4; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x80214A70; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x80214B70; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x80214C28; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x80214D30; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x80214D58; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x80214D8C; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x80214DC8; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x80214E24; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x80214E24; // type:label scope:global +_savefpr_15 = .text:0x80214E28; // type:label scope:global +_savefpr_16 = .text:0x80214E2C; // type:label scope:global +_savefpr_17 = .text:0x80214E30; // type:label scope:global +_savefpr_18 = .text:0x80214E34; // type:label scope:global +_savefpr_19 = .text:0x80214E38; // type:label scope:global +_savefpr_20 = .text:0x80214E3C; // type:label scope:global +_savefpr_21 = .text:0x80214E40; // type:label scope:global +_savefpr_22 = .text:0x80214E44; // type:label scope:global +_savefpr_23 = .text:0x80214E48; // type:label scope:global +_savefpr_24 = .text:0x80214E4C; // type:label scope:global +_savefpr_25 = .text:0x80214E50; // type:label scope:global +_savefpr_26 = .text:0x80214E54; // type:label scope:global +_savefpr_27 = .text:0x80214E58; // type:label scope:global +_savefpr_28 = .text:0x80214E5C; // type:label scope:global +_savefpr_29 = .text:0x80214E60; // type:label scope:global +_savefpr_30 = .text:0x80214E64; // type:label scope:global +_savefpr_31 = .text:0x80214E68; // type:label scope:global +__restore_fpr = .text:0x80214E70; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x80214E70; // type:label scope:global +_restfpr_15 = .text:0x80214E74; // type:label scope:global +_restfpr_16 = .text:0x80214E78; // type:label scope:global +_restfpr_17 = .text:0x80214E7C; // type:label scope:global +_restfpr_18 = .text:0x80214E80; // type:label scope:global +_restfpr_19 = .text:0x80214E84; // type:label scope:global +_restfpr_20 = .text:0x80214E88; // type:label scope:global +_restfpr_21 = .text:0x80214E8C; // type:label scope:global +_restfpr_22 = .text:0x80214E90; // type:label scope:global +_restfpr_23 = .text:0x80214E94; // type:label scope:global +_restfpr_24 = .text:0x80214E98; // type:label scope:global +_restfpr_25 = .text:0x80214E9C; // type:label scope:global +_restfpr_26 = .text:0x80214EA0; // type:label scope:global +_restfpr_27 = .text:0x80214EA4; // type:label scope:global +_restfpr_28 = .text:0x80214EA8; // type:label scope:global +_restfpr_29 = .text:0x80214EAC; // type:label scope:global +_restfpr_30 = .text:0x80214EB0; // type:label scope:global +_restfpr_31 = .text:0x80214EB4; // type:label scope:global +__div2u = .text:0x80214EBC; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x80214FA8; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x802150E0; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x802151C4; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x802152D0; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x802152F4; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x80215318; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x80215340; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x802153F4; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x802154C0; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x802154C8; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x802154FC; // type:function size:0x40 scope:global align:4 +exit = .text:0x8021553C; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x80215648; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x802158EC; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x80215CA0; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x80215CB0; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x80215D7C; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x80215DB0; // type:function size:0x4 scope:global align:4 +toupper = .text:0x80215DB4; // type:function size:0x28 scope:global align:4 +tolower = .text:0x80215DDC; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x80215E04; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x802160E0; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x8021611C; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x8021616C; // type:function size:0x44 scope:global align:4 +memchr = .text:0x802161B0; // type:function size:0x2C scope:global align:4 +memmove = .text:0x802161DC; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x802162B8; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x80216368; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x8021642C; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x802164D8; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x80216594; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x80216598; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x8021666C; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x802166E4; // type:function size:0x7C scope:global align:4 +printf = .text:0x80216760; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x8021682C; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x80216898; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x802168F0; // type:function size:0x630 scope:local align:4 +float2str = .text:0x80216F20; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x80217558; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x8021768C; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x8021796C; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x80217B90; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x80218068; // type:function size:0x8 scope:global align:4 +rand = .text:0x80218070; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x80218094; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x80218150; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x802181E0; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x80218B84; // type:function size:0x564 scope:local align:4 +strstr = .text:0x802190E8; // type:function size:0x6C scope:global align:4 +strchr = .text:0x80219154; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x80219184; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x802191C4; // type:function size:0x124 scope:global align:4 +strcat = .text:0x802192E8; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x80219314; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x80219358; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x8021940C; // type:function size:0x20 scope:global align:4 +atof = .text:0x8021942C; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x802194B8; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x80219B9C; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x80219C60; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x80219D50; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x80219DFC; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x8021A1C8; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8021A510; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x8021A518; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8021A5B0; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8021A690; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8021A710; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x8021A718; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x8021A9B0; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x8021B1C8; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x8021B1E8; // type:function size:0x80 scope:weak align:4 +atan = .text:0x8021B268; // type:function size:0x240 scope:global align:4 +copysign = .text:0x8021B4A8; // type:function size:0x2C scope:global align:4 +frexp = .text:0x8021B4D4; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x8021B570; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x8021B6E8; // type:function size:0x20 scope:global align:4 +pow = .text:0x8021B708; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x8021B728; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x8021B730; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x8021B924; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x8021B944; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x8021B9B4; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x8021B9F8; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x8021BAD0; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x8021BB14; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x8021BB34; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x8021BB54; // type:function size:0x194 scope:global align:4 +sinf = .text:0x8021BCE8; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x8021BE8C; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x8021BEBC; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x8021BF4C; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x8021BF74; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x8021BF94; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x8021BFC0; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x8021C0B4; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x8021C110; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x8021C134; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x8021C1F4; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x8021C2D4; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x8021C2EC; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x8021C310; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x8021C3E4; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x8021C408; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x8021C430; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x8021C4A4; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x8021C4CC; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x8021C4D4; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x8021C54C; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x8021C5E8; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x8021C614; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x8021C67C; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x8021C6BC; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x8021C6EC; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x8021C790; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x8021C81C; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x8021C870; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x8021C8D4; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x8021C95C; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x8021C9C4; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x8021CA40; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x8021CA64; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x8021CAE4; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x8021CB74; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x8021CC24; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x8021CC98; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x8021CD14; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x8021CDE4; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x8021CE60; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x8021CEB0; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x8021CED4; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x8021CEDC; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x8021CEE0; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x8021CEF4; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x8021CF78; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x8021D010; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x8021D060; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x8021D094; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x8021D0BC; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x8021D0E4; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x8021D134; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x8021D164; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x8021D2E8; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x8021D3C4; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x8021D608; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x8021D7F0; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x8021D9EC; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x8021DBF0; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x8021DDF8; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x8021DF30; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x8021DF94; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x8021E198; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x8021E21C; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x8021E4F4; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x8021E698; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x8021E6A0; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x8021E6A8; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x8021E6B0; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x8021E788; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x8021E7C0; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x8021E884; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x8021E88C; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x8021E894; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x8021E9CC; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x8021EA08; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x8021EB6C; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x8021EBB8; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x8021ECB4; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x8021EDFC; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x8021EF74; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x8021F0F0; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x8021F118; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x8021F1BC; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x8021F224; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x8021F3B8; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x8021F454; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x8021F504; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x8021F5C8; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x8021F61C; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x8021F680; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x8021F710; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x8021F798; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x8021F7D4; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x8021F858; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x8021F8C8; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x8021F930; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x8021F974; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x8021F9BC; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x8021F9CC; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x8021FABC; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x8021FAF8; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x8021FB08; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x8021FB18; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x8021FB40; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x8021FBF0; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x8021FC68; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x8021FDE8; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x8021FE50; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x8021FE60; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x8021FEF4; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x8021FF14; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x8021FF5C; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x8021FFBC; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x80220050; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x802200A0; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x80220258; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x80220410; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x80220418; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x80220460; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x802204E8; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x80220520; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x80220608; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x8022060C; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x8022064C; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x8022067C; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x802206AC; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x802206F0; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x80220734; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x80220764; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x80220794; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x802207B8; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x802207EC; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x80220A30; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80220BC8; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x80220C08; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x80220C74; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x80220CF4; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80220D5C; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80220DAC; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80220DEC; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x80220E2C; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80220E6C; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x80220F28; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x80220F54; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x8022105C; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x80221318; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x802214C8; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x802214CC; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x802214D0; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x802214D8; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x80221770; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x8022181C; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x802218F8; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x802219D4; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x80221A80; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80221ABC; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x80221AFC; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x80221B74; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80221BC8; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x80221C64; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x80221CF0; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x80221F50; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x80221F54; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80221F58; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80221F60; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80221F60; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x80221FC0; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x80221FC0; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x80221FC4; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x80221FC8; // type:object size:0x4 scope:local align:4 +@191 = .rodata:0x80221FE0; // type:object size:0x9 scope:local align:4 data:string +@208 = .rodata:0x80221FEC; // type:object size:0xC scope:local align:4 data:string +@80 = .rodata:0x80221FF8; // type:object size:0xB scope:local align:4 data:string +@191 = .rodata:0x80222008; // type:object size:0x9 scope:local align:4 data:string +@193 = .rodata:0x80222014; // type:object size:0xB scope:local align:4 data:string +@178 = .rodata:0x80222020; // type:object size:0x1D scope:local align:4 data:string +@38 = .rodata:0x80222040; // type:object size:0x31 scope:local align:4 data:string +@39 = .rodata:0x80222074; // type:object size:0x33 scope:local align:4 data:string +@60 = .rodata:0x802220A8; // type:object size:0x1D scope:local align:4 data:string +@61 = .rodata:0x802220C8; // type:object size:0x11 scope:local align:4 data:string +@62 = .rodata:0x802220DC; // type:object size:0x27 scope:local align:4 data:string +@254 = .rodata:0x80222108; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80222118; // type:label scope:local +@161 = .rodata:0x80222118; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x8022212C; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x80222140; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x80222154; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x80222168; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x8022217C; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x80222190; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x802221A4; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x802221B8; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x802221CC; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x802221E0; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x802221F4; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x80222208; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x8022221C; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x80222230; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x8022223C; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x80222248; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x80222254; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x80222264; // type:object size:0xD scope:local align:4 data:string +@81 = .rodata:0x80222278; // type:object size:0x14 scope:local align:4 data:4byte +@82 = .rodata:0x8022228C; // type:object size:0x14 scope:local align:4 data:4byte +mcbtypetrans$1481 = .rodata:0x802222A0; // type:object size:0x18 scope:local align:4 +@3833 = .rodata:0x802222B8; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x80222318; // type:object size:0x60 scope:local align:4 data:4byte +@2564 = .rodata:0x80222378; // type:object size:0xC scope:local align:4 data:4byte +@2580 = .rodata:0x80222384; // type:object size:0xC scope:local align:4 data:4byte +@2660 = .rodata:0x80222390; // type:object size:0xC scope:local align:4 data:4byte +@2515 = .rodata:0x802223A0; // type:object size:0x14 scope:local align:4 data:4byte +@2562 = .rodata:0x802223B4; // type:object size:0x18 scope:local align:4 data:4byte +@1088 = .rodata:0x802223D0; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x802223E0; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x802223EC; // type:object size:0xC scope:local align:4 data:4byte +@2255 = .rodata:0x802223F8; // type:object size:0x10 scope:local align:4 data:4byte +@2256 = .rodata:0x80222408; // type:object size:0x10 scope:local align:4 data:4byte +@2058 = .rodata:0x80222418; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x80222440; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x80222460; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x80222480; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x802224A0; // type:object size:0x10 scope:local align:4 data:4byte +@4066 = .rodata:0x802224B0; // type:object size:0x1C scope:local align:4 data:4byte +@4070 = .rodata:0x802224CC; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x802224D8; // type:label scope:local +@5139 = .rodata:0x802224D8; // type:object size:0x18 scope:local align:4 data:4byte +@5210 = .rodata:0x802224F0; // type:object size:0x10 scope:local align:4 +@5215 = .rodata:0x80222500; // type:object size:0x18 scope:local align:4 +@5216 = .rodata:0x80222518; // type:object size:0xC scope:local align:4 +@5220 = .rodata:0x80222524; // type:object size:0x10 scope:local align:4 +@5224 = .rodata:0x80222534; // type:object size:0x10 scope:local align:4 +@5240 = .rodata:0x80222544; // type:object size:0x28 scope:local align:4 +@5241 = .rodata:0x8022256C; // type:object size:0x14 scope:local align:4 +@1996 = .rodata:0x80222580; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80222598; // type:label scope:local +@1620 = .rodata:0x80222598; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x802225A4; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x802225BC; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x802225D4; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x802225E4; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x802225FC; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x80222614; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x8022262C; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x80222640; // type:object size:0xC scope:local align:4 data:4byte +@1692 = .rodata:0x8022264C; // type:object size:0xC scope:local align:4 data:4byte +@1702 = .rodata:0x80222658; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x80222668; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x80222674; // type:object size:0xC scope:local align:4 data:4byte +@3938 = .rodata:0x80222680; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x802226A0; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x802226D0; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x802226E0; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x802226F0; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x80222708; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x80222748; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x80222758; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80222768; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x80222780; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x802227C8; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x80222808; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x80222908; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x80222A08; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x80222B08; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x80222B10; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x80222B20; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x80222B48; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x80222B78; // type:label scope:local +bp = .rodata:0x80222B78; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x80222B88; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x80222B98; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x80222BA8; // type:label scope:local +atanhi = .rodata:0x80222BA8; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x80222BC8; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x80222BE8; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x80222C40; // type:label scope:local +atan_coeff$96 = .rodata:0x80222C40; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x80222C5C; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x80222C74; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x80222C8C; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x80222CA8; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x80222CC4; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x80222CDC; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x80222CF8; // type:label scope:local +tmp_float = .rodata:0x80222CF8; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x80222D08; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x80222D28; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x80222D50; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x80222D70; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x80222D80; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x80222D94; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x80222DA8; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x80222DC0; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x80222DD0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x80222DE0; // type:label scope:local +J_STREAMNAME = .data:0x80222DE0; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x80222E60; // type:object size:0x2C scope:global align:4 +@102 = .data:0x80222E8C; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x80222EB0; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x80222EE0; // type:object size:0x1A00 scope:global align:32 +calc_sw_table = .data:0x802248E0; // type:object size:0x51 scope:local align:4 +@345 = .data:0x80224934; // type:object size:0x20 scope:local align:4 +@344 = .data:0x80224954; // type:object size:0x20 scope:local align:4 +history = .data:0x80224978; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$94 = .data:0x802249A0; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x802249C0; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x80224A00; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x80224E00; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x80224E18; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x80225018; // type:object size:0xC scope:local align:4 +extdir = .data:0x80225028; // type:object size:0x40 scope:local align:4 +@149 = .data:0x80225068; // type:object size:0x34 scope:local align:4 +@239 = .data:0x8022509C; // type:object size:0x44 scope:local align:4 +@276 = .data:0x802250E0; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x80225124; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x80225224; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x80225328; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x80225728; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x80225828; // type:label scope:local +VIB_TABLE = .data:0x80225828; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x8022584C; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x80225870; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x8022587C; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x80225894; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x802258AC; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x802258C4; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x802258DC; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x802258F4; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x80225910; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x80225928; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x80225940; // type:object size:0x10 scope:local align:4 +@151 = .data:0x80225950; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x802259E8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x80225A68; // type:label scope:local +EVENT_OFFSET = .data:0x80225A68; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x80225A88; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x8022610C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x80226130; // type:label scope:local +bgm_mute_set = .data:0x80226130; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x80226180; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x802261D0; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x802261FC; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x80226214; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022622C; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x80226248; // type:label scope:local +tbl_scene_to_bgm = .data:0x80226248; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x80226280; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x802262B8; // type:object size:0x14 scope:local align:4 +filelist = .data:0x802262CC; // type:object size:0x1C0 scope:global align:4 +header = .data:0x8022648C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802264B0; // type:label scope:local +parts_bright_table = .data:0x802264B0; // type:object size:0x20 scope:local align:4 +demo4 = .data:0x802264D0; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x802264FC; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x80226524; // type:object size:0xC scope:local align:4 +demo16 = .data:0x80226530; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x80226554; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x802265A8; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x802265B8; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x802265E4; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022660C; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x80226634; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x8022665C; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x8022667C; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x802266B0; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022672C; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x802267A8; // type:object size:0xC scope:local align:4 +demo40 = .data:0x802267B4; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x802267C8; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x802267F4; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x80226828; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x80226868; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x8022687C; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x802268B0; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x802268E8; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x80226910; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x80226924; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022693C; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x8022695C; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x802269A4; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x802269B0; // type:object size:0x564 scope:local align:4 +@370 = .data:0x80226F14; // type:object size:0x2C scope:local align:4 +@468 = .data:0x80226F40; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x80226F70; // type:label scope:local +filter_table = .data:0x80226F70; // type:object size:0x40 scope:local align:4 +table4 = .data:0x80226FB0; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x80226FE0; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x802272C0; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x802272D0; // type:label scope:local +@388 = .data:0x802272D0; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x802272DC; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x802272E8; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x802272F4; // type:object size:0xC scope:local align:4 +@435 = .data:0x80227300; // type:object size:0x14 scope:local align:4 +@430 = .data:0x80227314; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x80227330; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x8022737C; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x8022738C; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x80227398; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x802273F0; // type:label scope:local +@388 = .data:0x802273F0; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x80227408; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022741C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x80227430; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x80227444; // type:object size:0xC scope:local align:4 +@431 = .data:0x80227450; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x80227464; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x802274C8; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x80227540; // type:label scope:local +@577 = .data:0x80227540; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x80227550; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x8022755C; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x80227568; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x80227574; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x80227A40; // type:object size:0x499 scope:local align:32 data:byte +convFmts = .data:0x80227EDC; // type:object size:0x3C scope:local align:4 +@1718 = .data:0x80227F18; // type:object size:0xF scope:local align:4 data:string +@1719 = .data:0x80227F28; // type:object size:0xD scope:local align:4 data:string +@1720 = .data:0x80227F38; // type:object size:0xF scope:local align:4 data:string +@1721 = .data:0x80227F48; // type:object size:0xB scope:local align:4 data:string +@1722 = .data:0x80227F54; // type:object size:0xB scope:local align:4 data:string +@1723 = .data:0x80227F60; // type:object size:0xC scope:local align:4 data:string +@1724 = .data:0x80227F6C; // type:object size:0xC scope:local align:4 data:string +@1725 = .data:0x80227F78; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x80227F88; // type:object size:0x20 scope:local align:4 +@1740 = .data:0x80227FA8; // type:object size:0x28 scope:local align:4 +@1770 = .data:0x80227FD0; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x80227FDC; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x80227FE8; // type:object size:0xA scope:local align:4 data:string +@1773 = .data:0x80227FF4; // type:object size:0xA scope:local align:4 data:string +@1774 = .data:0x80228000; // type:object size:0xD scope:local align:4 data:string +@1775 = .data:0x80228010; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x80228020; // type:object size:0xC scope:local align:4 data:string +@1778 = .data:0x8022802C; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x80228038; // type:object size:0x3C scope:local align:4 +@1779 = .data:0x80228074; // type:object size:0x9 scope:local align:4 data:string +@1780 = .data:0x80228080; // type:object size:0x9 scope:local align:4 data:string +@1781 = .data:0x8022808C; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x80228098; // type:object size:0xC scope:local align:4 +@2163 = .data:0x802280A4; // type:object size:0xD scope:local align:4 data:string +@2165 = .data:0x802280B4; // type:object size:0xA scope:local align:4 data:string +@2167 = .data:0x802280C0; // type:object size:0xC scope:local align:4 +@2164 = .data:0x802280CC; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x802280E0; // type:object size:0x14 scope:global align:4 +@2171 = .data:0x802280F4; // type:object size:0x9 scope:local align:4 data:string +@2172 = .data:0x80228100; // type:object size:0xC scope:local align:4 +@2169 = .data:0x8022810C; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x80228120; // type:object size:0x10 scope:global align:4 +@2175 = .data:0x80228130; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x80228144; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x80228154; // type:object size:0xF4 scope:global align:4 +@2191 = .data:0x80228248; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x80228258; // type:object size:0x10 scope:global align:4 +@2192 = .data:0x80228268; // type:object size:0x9 scope:local align:4 data:string +@2193 = .data:0x80228274; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x80228288; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802282A0; // type:label scope:local +@570 = .data:0x802282A0; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x802282AC; // type:object size:0x1C scope:local align:4 +@733 = .data:0x802282C8; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x802282D4; // type:object size:0xC scope:local align:4 +@731 = .data:0x802282E0; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x802282F4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80228320; // type:label scope:local +@577 = .data:0x80228320; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x80228330; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x8022833C; // type:object size:0x14 scope:local align:4 +@653 = .data:0x80228350; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x8022835C; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x80228374; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x80228388; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x8022839C; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x802283A8; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802283B4; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x802283C0; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x802283CC; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x802283D8; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x802283E4; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x802283F0; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x802283FC; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x80228408; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x80228420; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x8022843C; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x80228448; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x80228454; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x80228460; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x80228470; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x80228480; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x80228490; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x802284A0; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x802284AC; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802284BC; // type:object size:0xA scope:local align:4 data:string +@1677 = .data:0x802284C8; // type:object size:0xB scope:local align:4 data:string +@1678 = .data:0x802284D4; // type:object size:0xA scope:local align:4 data:string +@1679 = .data:0x802284E0; // type:object size:0xB scope:local align:4 data:string +@1682 = .data:0x802284EC; // type:object size:0xE scope:local align:4 data:string +@1687 = .data:0x802284FC; // type:object size:0xD scope:local align:4 data:string +@1688 = .data:0x8022850C; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x8022851C; // type:object size:0x9 scope:local align:4 data:string +@1690 = .data:0x80228528; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x80228534; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x80228540; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x8022854C; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x80228558; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x80228564; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x80228570; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x8022857C; // type:object size:0x9 scope:local align:4 data:string +@1724 = .data:0x80228588; // type:object size:0xA scope:local align:4 data:string +@2045 = .data:0x80228594; // type:object size:0xF scope:local align:4 data:string +@2046 = .data:0x802285A4; // type:object size:0xE scope:local align:4 data:string +@2047 = .data:0x802285B4; // type:object size:0xF scope:local align:4 data:string +@2048 = .data:0x802285C4; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x802285D8; // type:object size:0x1A scope:local align:4 data:string +@2164 = .data:0x802285F4; // type:object size:0x20 scope:local align:4 data:string +@2165 = .data:0x80228614; // type:object size:0x1E scope:local align:4 data:string +@2215 = .data:0x80228634; // type:object size:0x9 scope:local align:4 data:string +@2217 = .data:0x80228640; // type:object size:0xB scope:local align:4 data:string +@2406 = .data:0x8022864C; // type:object size:0xC scope:local align:4 data:4byte +@2476 = .data:0x80228658; // type:object size:0x9 scope:local align:4 data:string +@4189 = .data:0x80228664; // type:object size:0xA scope:local align:4 data:string +@4564 = .data:0x80228670; // type:object size:0xB scope:local align:4 data:string +@4566 = .data:0x8022867C; // type:object size:0xB scope:local align:4 data:string +@4565 = .data:0x80228688; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x80228694; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x802286A4; // type:object size:0x10 scope:weak align:4 +@4571 = .data:0x802286B4; // type:object size:0xA scope:local align:4 data:string +@4574 = .data:0x802286C0; // type:object size:0xC scope:local align:4 +@4572 = .data:0x802286CC; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x802286E0; // type:object size:0x24 scope:global align:4 +@4580 = .data:0x80228704; // type:object size:0x2D scope:local align:4 data:string +@4582 = .data:0x80228734; // type:object size:0x23 scope:local align:4 data:string +@4581 = .data:0x80228758; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x80228764; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x80228770; // type:object size:0xC scope:weak align:4 +@4583 = .data:0x8022877C; // type:object size:0xB scope:local align:4 data:string +@4584 = .data:0x80228788; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x8022879C; // type:object size:0x10 scope:weak align:4 +@4586 = .data:0x802287AC; // type:object size:0xB scope:local align:4 data:string +@4587 = .data:0x802287B8; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x802287CC; // type:object size:0x10 scope:weak align:4 +@4588 = .data:0x802287DC; // type:object size:0xC scope:local align:4 data:string +@4589 = .data:0x802287E8; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x802287FC; // type:object size:0x10 scope:weak align:4 +@4592 = .data:0x8022880C; // type:object size:0x9 scope:local align:4 data:string +@4593 = .data:0x80228818; // type:object size:0x14 scope:local align:4 +@4591 = .data:0x8022882C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x80228848; // type:object size:0x20 scope:global align:4 +@4596 = .data:0x80228868; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x80228884; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x802288A4; // type:object size:0x20 scope:global align:4 +@4597 = .data:0x802288C4; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x802288D0; // type:object size:0xC scope:global align:4 +@4598 = .data:0x802288DC; // type:object size:0xF scope:local align:4 data:string +@4599 = .data:0x802288EC; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x80228900; // type:object size:0x10 scope:weak align:4 +@4601 = .data:0x80228910; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x80228924; // type:object size:0x10 scope:global align:4 +@4603 = .data:0x80228934; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x80228948; // type:object size:0x10 scope:global align:4 +@4604 = .data:0x80228958; // type:object size:0x9 scope:local align:4 data:string +@4605 = .data:0x80228964; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x80228978; // type:object size:0x10 scope:weak align:4 +@4606 = .data:0x802289A4; // type:object size:0x9 scope:local align:4 data:string +@4607 = .data:0x802289B0; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x802289C4; // type:object size:0x10 scope:global align:4 +@690 = .data:0x802289D8; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802289E4; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x802289F0; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x80228A00; // type:label scope:local +@571 = .data:0x80228A00; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x80228A10; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x80228A1C; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x80228A2C; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x80228A3C; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x80228A48; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x80228A54; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x80228A64; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x80228A7C; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x80228A8C; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x80228A9C; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x80228AAC; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x80228AC0; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x80228AD0; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x80228AE4; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x80228AF0; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x80228AFC; // type:object size:0xC scope:local align:4 +@1109 = .data:0x80228B08; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x80228B14; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x80228B28; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x80228B44; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x80228B5C; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x80228B74; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x80228B80; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x80228B94; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x80228BA4; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x80228BB0; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x80228BC4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x80228BF0; // type:label scope:local +@570 = .data:0x80228BF0; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x80228C00; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x80228C0C; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x80228C18; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x80228C24; // type:object size:0xE scope:local align:4 data:string +@999 = .data:0x80228C34; // type:object size:0xB scope:local align:4 data:string +@1001 = .data:0x80228C40; // type:object size:0xB scope:local align:4 data:string +@1000 = .data:0x80228C4C; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x80228C58; // type:object size:0x10 scope:weak align:4 +@1002 = .data:0x80228C68; // type:object size:0xC scope:local align:4 data:string +@1005 = .data:0x80228C74; // type:object size:0xC scope:local align:4 +@1003 = .data:0x80228C80; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x80228C94; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x80228CA4; // type:object size:0x34 scope:global align:4 +@1014 = .data:0x80228CD8; // type:object size:0xB scope:local align:4 data:string +@1015 = .data:0x80228CE4; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x80228CF0; // type:object size:0x10 scope:weak align:4 +@1020 = .data:0x80228D00; // type:object size:0xB scope:local align:4 data:string +@1021 = .data:0x80228D0C; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x80228D18; // type:object size:0x10 scope:weak align:4 +@1022 = .data:0x80228D54; // type:object size:0xB scope:local align:4 data:string +@1023 = .data:0x80228D60; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x80228D6C; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x80228D80; // type:label scope:local +@570 = .data:0x80228D80; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x80228D8C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x80228D98; // type:object size:0xC scope:local align:4 +@755 = .data:0x80228DA4; // type:object size:0x14 scope:local align:4 +@752 = .data:0x80228DB8; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x80228DD4; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x80228E20; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x80228E50; // type:label scope:local +@388 = .data:0x80228E50; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x80228E60; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x80228E6C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x80228E78; // type:object size:0xC scope:local align:4 +@428 = .data:0x80228E84; // type:object size:0x14 scope:local align:4 +@423 = .data:0x80228E98; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x80228EB4; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x80228EE8; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x80228F00; // type:label scope:local +@466 = .data:0x80228F00; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x80228F10; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x80228F24; // type:object size:0xC scope:local align:4 +@467 = .data:0x80228F30; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x80228F44; // type:object size:0x68 scope:global align:4 +@476 = .data:0x80228FAC; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x80228FB8; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x80228FC4; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x80229020; // type:label scope:local +@570 = .data:0x80229020; // type:object size:0xC scope:local align:4 data:string +gxTexFmts = .data:0x8022902C; // type:object size:0x24 scope:local align:4 +@710 = .data:0x80229050; // type:object size:0xA scope:local align:4 data:string +@709 = .data:0x8022905C; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x80229068; // type:object size:0x14 scope:global align:4 +@712 = .data:0x8022907C; // type:object size:0x9 scope:local align:4 data:string +@713 = .data:0x80229088; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x802290B0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802290C0; // type:label scope:local +bigFont_data = .data:0x802290C0; // type:object size:0x7C080 scope:local align:32 noreloc +@577 = .data:0x802A5140; // type:object size:0xB scope:local align:4 data:string +@907 = .data:0x802A514C; // type:object size:0xA scope:local align:4 data:string +@951 = .data:0x802A5158; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802A5164; // type:object size:0xC scope:local align:4 data:string +@985 = .data:0x802A5170; // type:object size:0x15 scope:local align:4 data:string +@986 = .data:0x802A5188; // type:object size:0x17 scope:local align:4 data:string +@987 = .data:0x802A51A0; // type:object size:0x17 scope:local align:4 data:string +@988 = .data:0x802A51B8; // type:object size:0x1C scope:local align:4 data:string +@989 = .data:0x802A51D4; // type:object size:0x18 scope:local align:4 data:string +@990 = .data:0x802A51EC; // type:object size:0xE scope:local align:4 data:string +@991 = .data:0x802A51FC; // type:object size:0x21 scope:local align:4 data:string +@992 = .data:0x802A5220; // type:object size:0x10 scope:local align:4 data:string +@993 = .data:0x802A5230; // type:object size:0x12 scope:local align:4 data:string +@994 = .data:0x802A5244; // type:object size:0x14 scope:local align:4 data:string +@995 = .data:0x802A5258; // type:object size:0x16 scope:local align:4 data:string +@996 = .data:0x802A5270; // type:object size:0x10 scope:local align:4 data:string +@997 = .data:0x802A5280; // type:object size:0x12 scope:local align:4 data:string +@998 = .data:0x802A5294; // type:object size:0x11 scope:local align:4 data:string +@999 = .data:0x802A52A8; // type:object size:0xC scope:local align:4 data:string +@1000 = .data:0x802A52B4; // type:object size:0xE scope:local align:4 data:string +errorMessages = .data:0x802A52C4; // type:object size:0x64 scope:local align:4 +errorList = .data:0x802A5328; // type:object size:0x18 scope:local align:4 +@1035 = .data:0x802A5340; // type:object size:0xC scope:local align:4 +@1089 = .data:0x802A534C; // type:object size:0x12 scope:local align:4 data:string +@1090 = .data:0x802A5360; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802A5370; // type:object size:0x1E scope:local align:4 data:string +@1272 = .data:0x802A5390; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802A53A8; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802A53B4; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802A53C0; // type:object size:0xC scope:weak align:4 +@1273 = .data:0x802A53CC; // type:object size:0xA scope:local align:4 data:string +@1274 = .data:0x802A53D8; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802A53E4; // type:object size:0x58 scope:weak align:4 +@1295 = .data:0x802A543C; // type:object size:0xC scope:local align:4 data:string +@1298 = .data:0x802A5448; // type:object size:0x9 scope:local align:4 data:string +@1299 = .data:0x802A5454; // type:object size:0xC scope:local align:4 +@1296 = .data:0x802A5460; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802A5474; // type:object size:0x10 scope:weak align:4 +@1302 = .data:0x802A5484; // type:object size:0x9 scope:local align:4 data:string +@1303 = .data:0x802A5490; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802A54A4; // type:object size:0x10 scope:weak align:4 +@1304 = .data:0x802A54D0; // type:object size:0xA scope:local align:4 data:string +@1306 = .data:0x802A54DC; // type:object size:0x13 scope:local align:4 data:string +@1307 = .data:0x802A54F0; // type:object size:0xC scope:local align:4 +@1305 = .data:0x802A54FC; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802A5510; // type:object size:0x64 scope:weak align:4 +@1316 = .data:0x802A55D8; // type:object size:0xA scope:local align:4 data:string +@1315 = .data:0x802A55E4; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802A55F0; // type:object size:0x34 scope:global align:4 +@1332 = .data:0x802A5624; // type:object size:0xB scope:local align:4 data:string +@1333 = .data:0x802A5630; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802A5644; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802A56A8; // type:label scope:local +@388 = .data:0x802A56A8; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802A56BC; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802A56CC; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802A56DC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802A56E8; // type:label scope:local +@577 = .data:0x802A56E8; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802A56F8; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802A5704; // type:object size:0x3C scope:global align:4 +localNtsc480IntDf = .data:0x802A5740; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802A577C; // type:object size:0x20 scope:local align:4 +@956 = .data:0x802A579C; // type:object size:0xB scope:local align:4 data:string +@957 = .data:0x802A57A8; // type:object size:0xB scope:local align:4 data:string +@958 = .data:0x802A57B4; // type:object size:0xB scope:local align:4 data:string +@959 = .data:0x802A57C0; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802A57CC; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802A57D8; // type:object size:0xB scope:local align:4 data:string +@962 = .data:0x802A57E4; // type:object size:0xB scope:local align:4 data:string +@963 = .data:0x802A57F0; // type:object size:0xB scope:local align:4 data:string +@964 = .data:0x802A57FC; // type:object size:0xB scope:local align:4 data:string +@965 = .data:0x802A5808; // type:object size:0xB scope:local align:4 data:string +@966 = .data:0x802A5814; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802A5820; // type:object size:0x2C scope:local align:4 +@967 = .data:0x802A584C; // type:object size:0xA scope:local align:4 data:string +@968 = .data:0x802A5858; // type:object size:0xA scope:local align:4 data:string +@969 = .data:0x802A5864; // type:object size:0xC scope:local align:4 data:string +@970 = .data:0x802A5870; // type:object size:0xE scope:local align:4 data:string +@971 = .data:0x802A5880; // type:object size:0xB scope:local align:4 data:string +@972 = .data:0x802A588C; // type:object size:0xB scope:local align:4 data:string +@973 = .data:0x802A5898; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802A58A4; // type:object size:0xB scope:local align:4 data:string +@975 = .data:0x802A58B0; // type:object size:0xB scope:local align:4 data:string +@976 = .data:0x802A58BC; // type:object size:0xB scope:local align:4 data:string +@977 = .data:0x802A58C8; // type:object size:0xB scope:local align:4 data:string +@978 = .data:0x802A58D4; // type:object size:0xB scope:local align:4 data:string +@979 = .data:0x802A58E0; // type:object size:0x10 scope:local align:4 data:string +@980 = .data:0x802A58F0; // type:object size:0x10 scope:local align:4 data:string +@981 = .data:0x802A5900; // type:object size:0x10 scope:local align:4 data:string +@982 = .data:0x802A5910; // type:object size:0x10 scope:local align:4 data:string +@983 = .data:0x802A5920; // type:object size:0x10 scope:local align:4 data:string +@984 = .data:0x802A5930; // type:object size:0x10 scope:local align:4 data:string +@985 = .data:0x802A5940; // type:object size:0x10 scope:local align:4 data:string +@986 = .data:0x802A5950; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802A5960; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802A5970; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802A59C4; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802A5A7C; // type:object size:0xB0 scope:local align:4 +@1323 = .data:0x802A5B2C; // type:object size:0x28 scope:local align:4 data:string +@1343 = .data:0x802A5B54; // type:object size:0x1C scope:local align:4 +@1955 = .data:0x802A5B70; // type:object size:0x10 scope:local align:4 data:string +@1976 = .data:0x802A5B80; // type:object size:0xA scope:local align:4 data:string +@1977 = .data:0x802A5B8C; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802A5BA4; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802A5C24; // type:object size:0x100 scope:local align:4 +@2093 = .data:0x802A5D24; // type:object size:0x9 scope:local align:4 data:string +@2094 = .data:0x802A5D30; // type:object size:0xC scope:local align:4 +@2095 = .data:0x802A5D3C; // type:object size:0xA scope:local align:4 data:string +@2096 = .data:0x802A5D48; // type:object size:0x14 scope:local align:4 +@2091 = .data:0x802A5D5C; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802A5D78; // type:object size:0x24 scope:global align:4 +@2105 = .data:0x802A5D9C; // type:object size:0x9 scope:local align:4 data:string +@2104 = .data:0x802A5DA8; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802A5DB4; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802A5EB0; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802A5ED8; // type:label scope:local +@713 = .data:0x802A5ED8; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802A5EEC; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802A5EFC; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802A5F08; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802A5F14; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802A5F20; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802A5F34; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802A5F50; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802A5FC0; // type:label scope:local +@697 = .data:0x802A5FC0; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802A5FCC; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802A5FD8; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802A5FE4; // type:object size:0xA scope:local align:4 data:string +@1262 = .data:0x802A5FF0; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802A5FFC; // type:object size:0x18 scope:global align:4 +@1266 = .data:0x802A6014; // type:object size:0xC scope:local align:4 +@1264 = .data:0x802A6020; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802A6034; // type:object size:0x10 scope:global align:4 +@1268 = .data:0x802A6044; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802A6054; // type:object size:0x9 scope:local align:4 data:string +@1269 = .data:0x802A6060; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802A606C; // type:object size:0x14 scope:weak align:4 +@1271 = .data:0x802A6080; // type:object size:0xC scope:local align:4 data:string +@1272 = .data:0x802A608C; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A6098; // type:object size:0x14 scope:weak align:4 +@1273 = .data:0x802A60AC; // type:object size:0xA scope:local align:4 data:string +@1274 = .data:0x802A60B8; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A60C4; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802A60D8; // type:object size:0x9 scope:local align:4 data:string +@1276 = .data:0x802A60E4; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802A60F8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A6128; // type:label scope:local +@1799 = .data:0x802A6128; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802A6138; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802A6144; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802A6150; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802A6164; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802A6174; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802A6184; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802A6198; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802A61A8; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802A61BC; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802A61CC; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802A61D8; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802A61E4; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802A61F0; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802A61FC; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802A6208; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802A6214; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802A6220; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802A622C; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802A6240; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802A624C; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802A6258; // type:object size:0xC scope:local align:4 +@2263 = .data:0x802A6264; // type:object size:0x15 scope:local align:4 data:string +@2264 = .data:0x802A627C; // type:object size:0x1D scope:local align:4 data:string +@2265 = .data:0x802A629C; // type:object size:0x1A scope:local align:4 data:string +@2266 = .data:0x802A62B8; // type:object size:0x10 scope:local align:4 data:string +@2267 = .data:0x802A62C8; // type:object size:0x10 scope:local align:4 data:string +@2268 = .data:0x802A62D8; // type:object size:0x10 scope:local align:4 data:string +@2269 = .data:0x802A62E8; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802A62FC; // type:object size:0x13 scope:local align:4 data:string +@2296 = .data:0x802A6310; // type:object size:0xD scope:local align:4 data:string +@2297 = .data:0x802A6320; // type:object size:0xC scope:local align:4 data:string +@2298 = .data:0x802A632C; // type:object size:0x18 scope:local align:4 data:string +@2299 = .data:0x802A6344; // type:object size:0x18 scope:local align:4 data:string +@2494 = .data:0x802A635C; // type:object size:0xC scope:local align:4 data:string +@2497 = .data:0x802A6368; // type:object size:0x9 scope:local align:4 data:string +@2498 = .data:0x802A6374; // type:object size:0xC scope:local align:4 +@2500 = .data:0x802A6380; // type:object size:0x14 scope:local align:4 +@2495 = .data:0x802A6394; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802A63B0; // type:object size:0x30 scope:weak align:4 +@2508 = .data:0x802A63E0; // type:object size:0xC scope:local align:4 data:string +@2509 = .data:0x802A63EC; // type:object size:0x14 scope:local align:4 +@2511 = .data:0x802A6410; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802A642C; // type:object size:0x34 scope:weak align:4 +@2512 = .data:0x802A6460; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802A647C; // type:object size:0x30 scope:weak align:4 +@2520 = .data:0x802A64C8; // type:object size:0xD scope:local align:4 data:string +@2522 = .data:0x802A64D8; // type:object size:0x9 scope:local align:4 data:string +@2521 = .data:0x802A64E4; // type:object size:0xC scope:local align:4 +@2523 = .data:0x802A6504; // type:object size:0xA scope:local align:4 data:string +@2524 = .data:0x802A6510; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802A6530; // type:object size:0xC scope:local align:4 data:string +@2526 = .data:0x802A653C; // type:object size:0xC scope:local align:4 +@2527 = .data:0x802A655C; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802A6578; // type:object size:0x30 scope:global align:4 +@2528 = .data:0x802A65A8; // type:object size:0x1C scope:local align:4 data:string +@2530 = .data:0x802A65C4; // type:object size:0x13 scope:local align:4 data:string +@2529 = .data:0x802A65D8; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802A65E4; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802A65F0; // type:object size:0xC scope:weak align:4 +@2531 = .data:0x802A65FC; // type:object size:0xE scope:local align:4 data:string +@2533 = .data:0x802A660C; // type:object size:0xA scope:local align:4 data:string +@2534 = .data:0x802A6618; // type:object size:0x14 scope:local align:4 +@2532 = .data:0x802A662C; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802A6648; // type:object size:0x18 scope:global align:4 +@2563 = .data:0x802A6660; // type:object size:0xB scope:local align:4 data:string +@2564 = .data:0x802A666C; // type:object size:0xA scope:local align:4 data:string +@2565 = .data:0x802A6678; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802A6684; // type:object size:0x18 scope:weak align:4 +@2613 = .data:0x802A669C; // type:object size:0xB scope:local align:4 data:string +@2614 = .data:0x802A66A8; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802A66BC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A66D0; // type:label scope:local +@681 = .data:0x802A66D0; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802A66DC; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802A66EC; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802A66F8; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802A6704; // type:object size:0xF scope:local align:4 data:string +@794 = .data:0x802A6714; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802A6724; // type:object size:0xF scope:local align:4 data:string +@796 = .data:0x802A6734; // type:object size:0xF scope:local align:4 data:string +@797 = .data:0x802A6744; // type:object size:0xF scope:local align:4 data:string +levNames = .data:0x802A6754; // type:object size:0x14 scope:local align:4 +@944 = .data:0x802A6768; // type:object size:0x13 scope:local align:4 data:string +@946 = .data:0x802A677C; // type:object size:0x14 scope:local align:4 data:string +@947 = .data:0x802A6790; // type:object size:0x12 scope:local align:4 data:string +@948 = .data:0x802A67A4; // type:object size:0x12 scope:local align:4 data:string +@949 = .data:0x802A67B8; // type:object size:0x30 scope:local align:4 +@950 = .data:0x802A67E8; // type:object size:0x11 scope:local align:4 data:string +@953 = .data:0x802A67FC; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802A6808; // type:object size:0xC scope:local align:4 +@956 = .data:0x802A6814; // type:object size:0x14 scope:local align:4 +@958 = .data:0x802A6828; // type:object size:0x1C scope:local align:4 +@951 = .data:0x802A6844; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802A6868; // type:object size:0x34 scope:global align:4 +@966 = .data:0x802A689C; // type:object size:0xC scope:local align:4 data:string +@967 = .data:0x802A68A8; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802A68BC; // type:object size:0x10 scope:weak align:4 +@968 = .data:0x802A68E8; // type:object size:0xA scope:local align:4 data:string +@969 = .data:0x802A68F4; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802A6908; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802A6918; // type:label scope:local +@683 = .data:0x802A6918; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802A6928; // type:object size:0xA scope:local align:4 data:string +@970 = .data:0x802A6934; // type:object size:0xA scope:local align:4 data:string +@973 = .data:0x802A6940; // type:object size:0x9 scope:local align:4 data:string +@974 = .data:0x802A694C; // type:object size:0xC scope:local align:4 +@971 = .data:0x802A6958; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802A696C; // type:object size:0x14 scope:global align:4 +@976 = .data:0x802A6980; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802A6994; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802A69A8; // type:label scope:local +@1013 = .data:0x802A69A8; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802A69B8; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802A69C4; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802A69E0; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802A69FC; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802A6A18; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802A6A34; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802A6A50; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802A6A6C; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802A6A88; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802A6AA4; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802A6AB8; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802A6ACC; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802A6AE0; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802A6AF4; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802A6B08; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802A6B1C; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802A6B6C; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802A6B84; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802A6B9C; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802A6BB8; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802A6BD4; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802A6BF0; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802A6C0C; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802A6C28; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802A6C44; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802A6C60; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802A6C7C; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802A6C98; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802A6CB4; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802A6CD4; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802A6CF4; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802A6D14; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802A6D34; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802A6D54; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802A6D74; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802A6D94; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802A6DB4; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802A6DD4; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802A6DF4; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802A6E14; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802A6E34; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802A6E54; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802A6E74; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802A6E94; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802A6EB4; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802A6ED4; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802A6EF4; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802A6F14; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802A6F34; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802A6F54; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802A6F74; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802A7004; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802A7018; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802A7034; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802A7048; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802A7064; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802A707C; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802A709C; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802A70B4; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802A70D4; // type:object size:0x14 scope:local align:4 data:string +@1081 = .data:0x802A70E8; // type:object size:0x1C scope:local align:4 data:string +@1082 = .data:0x802A7104; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802A7120; // type:object size:0x21 scope:local align:4 data:string +@1084 = .data:0x802A7144; // type:object size:0x15 scope:local align:4 data:string +@1085 = .data:0x802A715C; // type:object size:0x1D scope:local align:4 data:string +@1086 = .data:0x802A717C; // type:object size:0x13 scope:local align:4 data:string +@1087 = .data:0x802A7190; // type:object size:0x1B scope:local align:4 data:string +@1088 = .data:0x802A71AC; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802A71C0; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802A71DC; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802A71F0; // type:object size:0x1A scope:local align:4 data:string +@1092 = .data:0x802A720C; // type:object size:0x13 scope:local align:4 data:string +@1093 = .data:0x802A7220; // type:object size:0x1B scope:local align:4 data:string +@1094 = .data:0x802A723C; // type:object size:0x16 scope:local align:4 data:string +@1095 = .data:0x802A7254; // type:object size:0x1E scope:local align:4 data:string +@1096 = .data:0x802A7274; // type:object size:0x18 scope:local align:4 data:string +@1097 = .data:0x802A728C; // type:object size:0x20 scope:local align:4 data:string +@1098 = .data:0x802A72AC; // type:object size:0x16 scope:local align:4 data:string +@1099 = .data:0x802A72C4; // type:object size:0x1E scope:local align:4 data:string +@1100 = .data:0x802A72E4; // type:object size:0x17 scope:local align:4 data:string +@1101 = .data:0x802A72FC; // type:object size:0x1F scope:local align:4 data:string +@1102 = .data:0x802A731C; // type:object size:0x13 scope:local align:4 data:string +@1103 = .data:0x802A7330; // type:object size:0x1B scope:local align:4 data:string +@1104 = .data:0x802A734C; // type:object size:0x12 scope:local align:4 data:string +@1105 = .data:0x802A7360; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802A737C; // type:object size:0x90 scope:local align:4 +@1189 = .data:0x802A740C; // type:object size:0x13 scope:local align:4 data:string +@1191 = .data:0x802A7420; // type:object size:0x12 scope:local align:4 data:string +@1192 = .data:0x802A7434; // type:object size:0x9 scope:local align:4 data:string +@1193 = .data:0x802A7440; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802A744C; // type:object size:0x11 scope:local align:4 data:string +@1204 = .data:0x802A7460; // type:object size:0x9 scope:local align:4 data:string +@1205 = .data:0x802A746C; // type:object size:0xC scope:local align:4 +@1207 = .data:0x802A7478; // type:object size:0x14 scope:local align:4 +@1209 = .data:0x802A748C; // type:object size:0x1C scope:local align:4 +@1202 = .data:0x802A74A8; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802A74CC; // type:object size:0x34 scope:global align:4 +@1218 = .data:0x802A751C; // type:object size:0xA scope:local align:4 data:string +@1221 = .data:0x802A7528; // type:object size:0x13 scope:local align:4 data:string +@1222 = .data:0x802A753C; // type:object size:0xC scope:local align:4 +@1219 = .data:0x802A7548; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802A755C; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802A7660; // type:label scope:local +@1108 = .data:0x802A7660; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802A7670; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802A767C; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802A7690; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802A76A4; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802A76B4; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802A76C0; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802A76E8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802A7700; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802A7714; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802A7730; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802A7760; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802A7774; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802A7790; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802A77B4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802A7820; // type:label scope:local +@1109 = .data:0x802A7820; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802A7830; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802A783C; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802A7848; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802A7854; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802A7860; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802A786C; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802A7880; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802A7894; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802A78A4; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802A78B4; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802A78C0; // type:object size:0xE scope:local align:4 data:string +@1431 = .data:0x802A78D0; // type:object size:0xF scope:local align:4 data:string +@1463 = .data:0x802A78E0; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802A78EC; // type:object size:0xC scope:local align:4 +@1468 = .data:0x802A7914; // type:object size:0x16 scope:local align:4 data:string +@1471 = .data:0x802A792C; // type:object size:0x14 scope:local align:4 +@1469 = .data:0x802A7940; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802A795C; // type:object size:0x30 scope:weak align:4 +@1569 = .data:0x802A798C; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802A79A0; // type:object size:0x1C scope:local align:4 +@1570 = .data:0x802A79BC; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802A79E0; // type:object size:0x34 scope:weak align:4 +@1574 = .data:0x802A7A48; // type:object size:0x18 scope:local align:4 data:string +@1576 = .data:0x802A7A60; // type:object size:0x13 scope:local align:4 data:string +@1575 = .data:0x802A7A74; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802A7A80; // type:object size:0xC scope:weak align:4 +@1577 = .data:0x802A7A8C; // type:object size:0x29 scope:local align:4 data:string +@1578 = .data:0x802A7AB8; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802A7AC4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802A7AE0; // type:label scope:local +@1892 = .data:0x802A7AE0; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802A7AF0; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802A7AFC; // type:object size:0xD scope:local align:4 data:string +@2988 = .data:0x802A7B0C; // type:object size:0x48 scope:local align:4 +@3084 = .data:0x802A7B54; // type:object size:0x15 scope:local align:4 data:string +@3088 = .data:0x802A7B6C; // type:object size:0xB scope:local align:4 data:string +@3092 = .data:0x802A7B78; // type:object size:0xC scope:local align:4 data:string +@3114 = .data:0x802A7B84; // type:object size:0xC scope:local align:4 data:string +@3117 = .data:0x802A7B90; // type:object size:0x9 scope:local align:4 data:string +@3118 = .data:0x802A7B9C; // type:object size:0xA scope:local align:4 data:string +@3141 = .data:0x802A7BA8; // type:object size:0x9 scope:local align:4 data:string +@3143 = .data:0x802A7BB4; // type:object size:0xD scope:local align:4 data:string +@3162 = .data:0x802A7BC4; // type:object size:0x9 scope:local align:4 data:string +@3169 = .data:0x802A7BD0; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802A7BE0; // type:object size:0x18 scope:weak align:4 +@3173 = .data:0x802A7BF8; // type:object size:0xA scope:local align:4 data:string +@3176 = .data:0x802A7C04; // type:object size:0x9 scope:local align:4 data:string +@3177 = .data:0x802A7C10; // type:object size:0xC scope:local align:4 +@3174 = .data:0x802A7C1C; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802A7C30; // type:object size:0x10 scope:weak align:4 +@3180 = .data:0x802A7C40; // type:object size:0x18 scope:local align:4 data:string +@3183 = .data:0x802A7C58; // type:object size:0x14 scope:local align:4 +@3184 = .data:0x802A7C6C; // type:object size:0x10 scope:local align:4 data:string +@3185 = .data:0x802A7C7C; // type:object size:0x1C scope:local align:4 +@3181 = .data:0x802A7C98; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802A7CBC; // type:object size:0x34 scope:weak align:4 +@3358 = .data:0x802A7CF0; // type:object size:0x13 scope:local align:4 data:string +@3361 = .data:0x802A7D04; // type:object size:0x1C scope:local align:4 +@3359 = .data:0x802A7D20; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802A7D44; // type:object size:0x34 scope:weak align:4 +@3363 = .data:0x802A7DAC; // type:object size:0x13 scope:local align:4 data:string +@3364 = .data:0x802A7DC0; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802A7DCC; // type:object size:0x20 scope:global align:4 +@3379 = .data:0x802A7DEC; // type:object size:0x11 scope:local align:4 data:string +@3381 = .data:0x802A7E00; // type:object size:0xA scope:local align:4 data:string +@3380 = .data:0x802A7E0C; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802A7E18; // type:object size:0x14 scope:global align:4 +@3392 = .data:0x802A7E2C; // type:object size:0x11 scope:local align:4 data:string +@3393 = .data:0x802A7E40; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802A7E4C; // type:object size:0x14 scope:global align:4 +@3400 = .data:0x802A7E60; // type:object size:0x11 scope:local align:4 data:string +@3401 = .data:0x802A7E74; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802A7E80; // type:object size:0x14 scope:global align:4 +@3402 = .data:0x802A7E94; // type:object size:0x16 scope:local align:4 data:string +@3403 = .data:0x802A7EAC; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802A7EB8; // type:object size:0x14 scope:weak align:4 +__vt__9ModeState = .data:0x802A7ECC; // type:object size:0x14 scope:weak align:4 +@3409 = .data:0x802A7EE0; // type:object size:0x13 scope:local align:4 data:string +@3410 = .data:0x802A7EF4; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802A7F00; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802A7F14; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802A7F68; // type:label scope:local +@1181 = .data:0x802A7F68; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802A7F78; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802A7F84; // type:object size:0x13 scope:local align:4 data:string +@1308 = .data:0x802A7F98; // type:object size:0x9 scope:local align:4 data:string +@1309 = .data:0x802A7FA4; // type:object size:0xC scope:local align:4 +@1313 = .data:0x802A7FCC; // type:object size:0xF scope:local align:4 data:string +@1315 = .data:0x802A7FDC; // type:object size:0xA scope:local align:4 data:string +@1314 = .data:0x802A7FE8; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802A7FF4; // type:object size:0x14 scope:weak align:4 +@1325 = .data:0x802A8008; // type:object size:0x12 scope:local align:4 data:string +@1326 = .data:0x802A801C; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802A8028; // type:object size:0x14 scope:weak align:4 +@1334 = .data:0x802A8050; // type:object size:0x16 scope:local align:4 data:string +@1337 = .data:0x802A8068; // type:object size:0x14 scope:local align:4 +@1338 = .data:0x802A807C; // type:object size:0x10 scope:local align:4 data:string +@1339 = .data:0x802A808C; // type:object size:0x1C scope:local align:4 +@1335 = .data:0x802A80A8; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802A80CC; // type:object size:0x34 scope:weak align:4 +@1416 = .data:0x802A8100; // type:object size:0x11 scope:local align:4 data:string +@1419 = .data:0x802A8114; // type:object size:0x1C scope:local align:4 +@1417 = .data:0x802A8130; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802A8154; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802A81C0; // type:label scope:local +@684 = .data:0x802A81C0; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802A81D0; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802A81DC; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802A81EC; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802A81F8; // type:object size:0xC scope:local align:4 +@721 = .data:0x802A8204; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802A8218; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802A8234; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802A8258; // type:object size:0x34 scope:global align:4 +@831 = .data:0x802A82E0; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802A82F8; // type:label scope:local +@810 = .data:0x802A82F8; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802A830C; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802A831C; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802A8328; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802A833C; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802A8348; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802A8354; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802A837C; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802A838C; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802A83A0; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802A83AC; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802A83C8; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802A83D4; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802A83F8; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802A8424; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802A849C; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802A84B0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802A84BC; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802A84C8; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802A84D4; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802A84E8; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802A8504; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802A8540; // type:label scope:local +@841 = .data:0x802A8540; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802A85C4; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802A85D0; // type:object size:0xC scope:local align:4 +@956 = .data:0x802A85DC; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802A85F0; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802A860C; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802A8680; // type:label scope:local +@570 = .data:0x802A8680; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802A8690; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802A869C; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802A86B0; // type:label scope:local +@677 = .data:0x802A86B0; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802A86C0; // type:object size:0x9 scope:local align:4 data:string +@800 = .data:0x802A86CC; // type:object size:0x12 scope:local align:4 data:string +@801 = .data:0x802A86E0; // type:object size:0x9 scope:local align:4 data:string +@803 = .data:0x802A86EC; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802A86F8; // type:object size:0x1E scope:local align:4 data:string +@806 = .data:0x802A8718; // type:object size:0xE scope:local align:4 data:string +@809 = .data:0x802A8728; // type:object size:0x14 scope:local align:4 data:string +@860 = .data:0x802A873C; // type:object size:0xE scope:local align:4 data:string +@866 = .data:0x802A874C; // type:object size:0x11 scope:local align:4 data:string +@869 = .data:0x802A8760; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802A876C; // type:object size:0xC scope:local align:4 +@867 = .data:0x802A8778; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802A878C; // type:object size:0x58 scope:weak align:4 +@875 = .data:0x802A87E4; // type:object size:0x9 scope:local align:4 data:string +@876 = .data:0x802A87F0; // type:object size:0xC scope:local align:4 +@878 = .data:0x802A87FC; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802A8810; // type:object size:0x1C scope:local align:4 +@873 = .data:0x802A882C; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802A8850; // type:object size:0x4C scope:weak align:4 +@892 = .data:0x802A889C; // type:object size:0xC scope:local align:4 data:string +@893 = .data:0x802A88A8; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802A88D4; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802A8920; // type:label scope:local +@982 = .data:0x802A8920; // type:object size:0xB scope:local align:4 data:string +@1307 = .data:0x802A892C; // type:object size:0xC scope:local align:4 +@1311 = .data:0x802A8938; // type:object size:0xC scope:local align:4 +@1474 = .data:0x802A8944; // type:object size:0x10 scope:local align:4 data:string +@1475 = .data:0x802A8954; // type:object size:0x9 scope:local align:4 data:string +@1478 = .data:0x802A8960; // type:object size:0xF scope:local align:4 data:string +@1480 = .data:0x802A8970; // type:object size:0xD scope:local align:4 data:string +@1481 = .data:0x802A8980; // type:object size:0x14 scope:local align:4 data:string +@1482 = .data:0x802A8994; // type:object size:0x14 scope:local align:4 data:string +@1485 = .data:0x802A89A8; // type:object size:0xB scope:local align:4 data:string +@1486 = .data:0x802A89B4; // type:object size:0x15 scope:local align:4 data:string +@1492 = .data:0x802A89CC; // type:object size:0xA scope:local align:4 data:string +@1506 = .data:0x802A89D8; // type:object size:0x9 scope:local align:4 data:string +@1507 = .data:0x802A89E4; // type:object size:0xC scope:local align:4 +@1511 = .data:0x802A8A0C; // type:object size:0x18 scope:local align:4 data:string +@1513 = .data:0x802A8A24; // type:object size:0x13 scope:local align:4 data:string +@1512 = .data:0x802A8A38; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802A8A50; // type:object size:0x25 scope:local align:4 data:string +@1515 = .data:0x802A8A78; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802A8A84; // type:object size:0xC scope:weak align:4 +@1516 = .data:0x802A8A9C; // type:object size:0xE scope:local align:4 data:string +@1521 = .data:0x802A8AC4; // type:object size:0x12 scope:local align:4 data:string +@1524 = .data:0x802A8AD8; // type:object size:0x14 scope:local align:4 +@1522 = .data:0x802A8AEC; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802A8B08; // type:object size:0x30 scope:weak align:4 +@1797 = .data:0x802A8B38; // type:object size:0xE scope:local align:4 data:string +@1800 = .data:0x802A8B48; // type:object size:0x1C scope:local align:4 +@1798 = .data:0x802A8B64; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802A8B88; // type:object size:0x34 scope:global align:4 +@1801 = .data:0x802A8BBC; // type:object size:0x15 scope:local align:4 data:string +@1802 = .data:0x802A8BD4; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802A8BE0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802A8BF8; // type:label scope:local +@853 = .data:0x802A8BF8; // type:object size:0xC scope:local align:4 data:string +@940 = .data:0x802A8C04; // type:object size:0x11 scope:local align:4 data:string +@942 = .data:0x802A8C18; // type:object size:0x10 scope:local align:4 data:string +@943 = .data:0x802A8C28; // type:object size:0xD scope:local align:4 data:string +@950 = .data:0x802A8C38; // type:object size:0x9 scope:local align:4 data:string +@951 = .data:0x802A8C44; // type:object size:0xC scope:local align:4 +@955 = .data:0x802A8C6C; // type:object size:0x14 scope:local align:4 data:string +@958 = .data:0x802A8C80; // type:object size:0x14 scope:local align:4 +@956 = .data:0x802A8C94; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802A8CB0; // type:object size:0x30 scope:weak align:4 +@1022 = .data:0x802A8CE0; // type:object size:0xF scope:local align:4 data:string +@1025 = .data:0x802A8CF0; // type:object size:0x1C scope:local align:4 +@1023 = .data:0x802A8D0C; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802A8D30; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802A8D68; // type:label scope:local +@1269 = .data:0x802A8D68; // type:object size:0xB scope:local align:4 data:string +@2553 = .data:0x802A8D74; // type:object size:0xB scope:local align:4 data:string +@2554 = .data:0x802A8D80; // type:object size:0x9 scope:local align:4 data:string +@2556 = .data:0x802A8D8C; // type:object size:0xB scope:local align:4 data:string +@2558 = .data:0x802A8D98; // type:object size:0xA scope:local align:4 data:string +@2559 = .data:0x802A8DA4; // type:object size:0x9 scope:local align:4 data:string +@2560 = .data:0x802A8DB0; // type:object size:0x9 scope:local align:4 data:string +@2885 = .data:0x802A8DBC; // type:object size:0xB scope:local align:4 data:string +@2886 = .data:0x802A8DC8; // type:object size:0xA scope:local align:4 data:string +@2888 = .data:0x802A8DD4; // type:object size:0xC scope:local align:4 data:string +@2889 = .data:0x802A8DE0; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802A8DEC; // type:object size:0xD scope:local align:4 data:string +@2893 = .data:0x802A8DFC; // type:object size:0x11 scope:local align:4 data:string +@2907 = .data:0x802A8E10; // type:object size:0x9 scope:local align:4 data:string +@2998 = .data:0x802A8E1C; // type:object size:0xA scope:local align:4 data:string +@3002 = .data:0x802A8E28; // type:object size:0x14 scope:local align:4 data:string +@3038 = .data:0x802A8E3C; // type:object size:0xA scope:local align:4 data:string +@4595 = .data:0x802A8E48; // type:object size:0xD scope:local align:4 data:string +@4598 = .data:0x802A8E58; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x802A8E64; // type:object size:0xC scope:local align:4 +@4596 = .data:0x802A8E70; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802A8E84; // type:object size:0x10 scope:weak align:4 +@4602 = .data:0x802A8E94; // type:object size:0xD scope:local align:4 data:string +@4605 = .data:0x802A8EA4; // type:object size:0x14 scope:local align:4 +@4603 = .data:0x802A8EB8; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802A8ED4; // type:object size:0x30 scope:weak align:4 +@4611 = .data:0x802A8F04; // type:object size:0x12 scope:local align:4 data:string +@4613 = .data:0x802A8F18; // type:object size:0x10 scope:local align:4 data:string +@4612 = .data:0x802A8F28; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802A8F34; // type:object size:0x10 scope:weak align:4 +@4616 = .data:0x802A8F44; // type:object size:0x12 scope:local align:4 data:string +@4617 = .data:0x802A8F58; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802A8F64; // type:object size:0x10 scope:weak align:4 +@4619 = .data:0x802A8F74; // type:object size:0xF scope:local align:4 data:string +@4621 = .data:0x802A8F84; // type:object size:0xA scope:local align:4 data:string +@4622 = .data:0x802A8F90; // type:object size:0x1C scope:local align:4 +@4623 = .data:0x802A8FAC; // type:object size:0xB scope:local align:4 data:string +@4624 = .data:0x802A8FB8; // type:object size:0x24 scope:local align:4 +@4620 = .data:0x802A8FDC; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802A9008; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802A9080; // type:object size:0x78 scope:global align:4 +@4695 = .data:0x802A90F8; // type:object size:0xD scope:local align:4 data:string +@4696 = .data:0x802A9108; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802A9134; // type:object size:0x78 scope:global align:4 +@4697 = .data:0x802A91AC; // type:object size:0xF scope:local align:4 data:string +@4699 = .data:0x802A91BC; // type:object size:0xE scope:local align:4 data:string +@4700 = .data:0x802A91CC; // type:object size:0x1C scope:local align:4 +@4701 = .data:0x802A91E8; // type:object size:0xD scope:local align:4 data:string +@4702 = .data:0x802A91F8; // type:object size:0x24 scope:local align:4 +@4698 = .data:0x802A921C; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802A9248; // type:object size:0x48 scope:global align:4 +@4706 = .data:0x802A9290; // type:object size:0xD scope:local align:4 data:string +@4707 = .data:0x802A92A0; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802A92CC; // type:object size:0x48 scope:global align:4 +@4709 = .data:0x802A9330; // type:object size:0xE scope:local align:4 data:string +@4710 = .data:0x802A9340; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802A936C; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802A93B4; // type:object size:0x40 scope:weak align:4 +@4718 = .data:0x802A93F4; // type:object size:0xF scope:local align:4 data:string +@4720 = .data:0x802A9404; // type:object size:0x9 scope:local align:4 data:string +@4719 = .data:0x802A9410; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802A941C; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802A9434; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802A9480; // type:label scope:local +@1229 = .data:0x802A9480; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802A948C; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802A9498; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802A94A4; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802A94B0; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802A94BC; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802A94C8; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802A94D4; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802A94E0; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802A94EC; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802A94F8; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802A9504; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802A9510; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802A951C; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802A9528; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802A9534; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802A9540; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802A954C; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802A9558; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802A9564; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802A9570; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802A957C; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802A9588; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802A9594; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802A95A0; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802A95AC; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802A95B8; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802A95C4; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802A95D0; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802A95DC; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802A95E8; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802A95F4; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802A9600; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802A960C; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802A961C; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802A962C; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802A963C; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802A9648; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802A9654; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802A9660; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802A966C; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802A9678; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802A9684; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802A9690; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802A969C; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802A96A8; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802A96B4; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802A96C0; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802A96CC; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802A96D8; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802A96E4; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802A96F0; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802A96FC; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802A9708; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802A9714; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802A9720; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802A972C; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802A9738; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802A9748; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802A9758; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802A9768; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802A977C; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802A978C; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802A9798; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802A97A4; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802A97B0; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802A97BC; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802A97C8; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802A97D4; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802A97E0; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802A97FC; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802A9810; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802A982C; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802A9848; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802A9854; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802A9860; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802A986C; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802A9878; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802A988C; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802A98A8; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802A98B4; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802A98C0; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802A98CC; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802A98E8; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802A98FC; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802A9908; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802A9914; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802A9920; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802A992C; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802A9940; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802A995C; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802A9980; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802A99D4; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802A99E0; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802A9A04; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802A9A58; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802A9A64; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802A9A88; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802A9ADC; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802A9AF8; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802A9B04; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802A9B10; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802A9B30; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802A9B3C; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802A9B48; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802A9B58; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802A9B7C; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802A9BD0; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802A9BF0; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802A9BFC; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802A9C08; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802A9C20; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802A9C38; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802A9C44; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802A9C68; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802A9CBC; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802A9CDC; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802A9CE8; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802A9D00; // type:label scope:local +@1343 = .data:0x802A9D00; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802A9D10; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802A9D1C; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802A9D28; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802A9D34; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802A9D4C; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802A9D84; // type:object size:0x80 scope:local align:4 +@2515 = .data:0x802A9E04; // type:object size:0x13 scope:local align:4 data:string +@2516 = .data:0x802A9E18; // type:object size:0x13 scope:local align:4 data:string +@2517 = .data:0x802A9E2C; // type:object size:0x13 scope:local align:4 data:string +@2518 = .data:0x802A9E40; // type:object size:0x1E scope:local align:4 data:string +@2531 = .data:0x802A9E60; // type:object size:0xE scope:local align:4 data:string +@2534 = .data:0x802A9E70; // type:object size:0x9 scope:local align:4 data:string +@2535 = .data:0x802A9E7C; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802A9E88; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802A9E9C; // type:object size:0x10 scope:weak align:4 +@2538 = .data:0x802A9EAC; // type:object size:0x9 scope:local align:4 data:string +@2539 = .data:0x802A9EB8; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802A9ECC; // type:object size:0x10 scope:weak align:4 +@2540 = .data:0x802A9EDC; // type:object size:0x10 scope:local align:4 data:string +@2541 = .data:0x802A9EEC; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802A9F00; // type:object size:0x10 scope:weak align:4 +@2542 = .data:0x802A9F10; // type:object size:0xA scope:local align:4 data:string +@2543 = .data:0x802A9F1C; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802A9F30; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A9F60; // type:label scope:local +@571 = .data:0x802A9F60; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802A9F70; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802A9F7C; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802A9F88; // type:object size:0xC scope:local align:4 +@819 = .data:0x802A9F94; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802A9FA8; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802A9FC4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AA020; // type:label scope:local +@1027 = .data:0x802AA020; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802AA030; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802AA03C; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802AA060; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802AA260; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802AA660; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802AA860; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802AAC60; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802AAE60; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802ABA60; // type:object size:0x20 scope:local align:4 +@1206 = .data:0x802ABA80; // type:object size:0x9 scope:local align:4 data:string +@1207 = .data:0x802ABA8C; // type:object size:0xD scope:local align:4 data:string +@1208 = .data:0x802ABA9C; // type:object size:0x10 scope:local align:4 data:string +@1209 = .data:0x802ABAAC; // type:object size:0x11 scope:local align:4 data:string +@1210 = .data:0x802ABAC0; // type:object size:0x11 scope:local align:4 data:string +@1211 = .data:0x802ABAD4; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802ABAEC; // type:object size:0xE scope:local align:4 data:string +@1213 = .data:0x802ABAFC; // type:object size:0xD scope:local align:4 data:string +@1214 = .data:0x802ABB0C; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802ABB20; // type:object size:0x24 scope:local align:4 +@1576 = .data:0x802ABB44; // type:object size:0xA scope:local align:4 data:string +@1697 = .data:0x802ABB50; // type:object size:0x14 scope:local align:4 data:string +@2020 = .data:0x802ABB64; // type:object size:0xA scope:local align:4 data:string +@2021 = .data:0x802ABB70; // type:object size:0xA scope:local align:4 data:string +@2022 = .data:0x802ABB7C; // type:object size:0xB scope:local align:4 data:string +@2023 = .data:0x802ABB88; // type:object size:0xB scope:local align:4 data:string +@2024 = .data:0x802ABB94; // type:object size:0xB scope:local align:4 data:string +@2025 = .data:0x802ABBA0; // type:object size:0xB scope:local align:4 data:string +sectionNames$2018 = .data:0x802ABBAC; // type:object size:0x1C scope:local align:4 +@2252 = .data:0x802ABBC8; // type:object size:0x9 scope:local align:4 data:string +@2253 = .data:0x802ABBD4; // type:object size:0xC scope:local align:4 +@2257 = .data:0x802ABBFC; // type:object size:0xA scope:local align:4 data:string +@2260 = .data:0x802ABC08; // type:object size:0x13 scope:local align:4 data:string +@2261 = .data:0x802ABC1C; // type:object size:0xC scope:local align:4 +@2258 = .data:0x802ABC28; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802ABD08; // type:label scope:local +@1345 = .data:0x802ABD08; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802ABD18; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802ABD24; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802ABD38; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802ABD4C; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802ABD60; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802ABD74; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802ABD88; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802ABD9C; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802ABDB0; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802ABDC4; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802ABDD8; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802ABDEC; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802ABE00; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802ABE14; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802ABE28; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802ABE3C; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802ABE50; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802ABE64; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802ABE78; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802ABE8C; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802ABEA0; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802ABEB4; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802ABEC8; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802ABEDC; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802ABEF0; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802ABF04; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802ABF18; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802ABF2C; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802ABF40; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802ABF54; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802ABF68; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802ABF7C; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802ABF90; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802ABFA4; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802ABFB8; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802ABFCC; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802ABFE0; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802ABFF4; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802AC008; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802AC01C; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802AC030; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802AC044; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802AC058; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802AC06C; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802AC080; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802AC094; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802AC0A8; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802AC0BC; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802AC0D0; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802AC0E4; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802AC0F8; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802AC10C; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802AC120; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802AC134; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802AC148; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802AC15C; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802AC170; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802AC184; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802AC198; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802AC1AC; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802AC1C0; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802AC1D4; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802AC1E8; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802AC1FC; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802AC210; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802AC224; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802AC238; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802AC24C; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802AC260; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802AC274; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802AC288; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802AC29C; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802AC2B0; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802AC2C4; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802AC2D8; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802AC2EC; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802AC300; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802AC314; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802AC328; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802AC33C; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802AC350; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802AC364; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802AC378; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802AC38C; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802AC3A0; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802AC3B4; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802AC3C8; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802AC3DC; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802AC694; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802AC6A0; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802AC6AC; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802AC6B8; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802AC6CC; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802AC6E0; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802AC6F4; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802AC708; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802AC71C; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802AC730; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802AC744; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802AC758; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802AC76C; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802AC780; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802AC794; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802AC7A8; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802AC7BC; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802AC7D0; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802AC7E4; // type:object size:0x90 scope:local align:4 data:4byte +@1836 = .data:0x802AC874; // type:object size:0xA scope:local align:4 data:string +@1839 = .data:0x802AC880; // type:object size:0x9 scope:local align:4 data:string +@1840 = .data:0x802AC88C; // type:object size:0xC scope:local align:4 +@1837 = .data:0x802AC898; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802AC8AC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AC8D8; // type:label scope:local +@685 = .data:0x802AC8D8; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802AC8E8; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802AC8F4; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802AC90C; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802AC924; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802AC93C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802AC954; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802AC96C; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802AC984; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802AC99C; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802AC9B0; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802AC9C4; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802AC9D4; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802AC9E0; // type:object size:0xC scope:local align:4 +@872 = .data:0x802ACA08; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802ACA20; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802ACA34; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802ACA50; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802ACA80; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802ACA94; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802ACAB0; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802ACAD4; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802ACB08; // type:label scope:local +@1227 = .data:0x802ACB08; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802ACB14; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802ACB24; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802ACB30; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802ACB48; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802ACB54; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802ACB74; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802ACB80; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802ACB8C; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802ACBAC; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802ACBBC; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802ACBC8; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802ACBE8; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802ACC08; // type:label scope:local +@625 = .data:0x802ACC08; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802ACC18; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802ACC24; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802ACC30; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802ACC48; // type:object size:0xC scope:local align:4 +@700 = .data:0x802ACC54; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802ACC68; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802ACC98; // type:label scope:local +@1578 = .data:0x802ACC98; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802ACCAC; // type:object size:0xF scope:local align:4 data:string +@2077 = .data:0x802ACCBC; // type:object size:0xE scope:local align:4 data:string +@2079 = .data:0x802ACCCC; // type:object size:0xC scope:local align:4 data:string +@2078 = .data:0x802ACCD8; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802ACCE4; // type:object size:0x2C scope:global align:4 +@2088 = .data:0x802ACD10; // type:object size:0xE scope:local align:4 data:string +@2089 = .data:0x802ACD20; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802ACD2C; // type:object size:0x2C scope:global align:4 +@2090 = .data:0x802ACD58; // type:object size:0xD scope:local align:4 data:string +@2091 = .data:0x802ACD68; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802ACD74; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802ACDA0; // type:object size:0x10 scope:local align:4 data:string +@2094 = .data:0x802ACDB0; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802ACDBC; // type:object size:0x2C scope:global align:4 +@2095 = .data:0x802ACDE8; // type:object size:0xF scope:local align:4 data:string +@2096 = .data:0x802ACDF8; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802ACE04; // type:object size:0x2C scope:global align:4 +@2097 = .data:0x802ACE30; // type:object size:0x14 scope:local align:4 data:string +@2098 = .data:0x802ACE44; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802ACE50; // type:object size:0x2C scope:global align:4 +@2099 = .data:0x802ACE7C; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802ACE8C; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802ACE98; // type:object size:0x2C scope:global align:4 +@2101 = .data:0x802ACEC4; // type:object size:0xD scope:local align:4 data:string +@2102 = .data:0x802ACED4; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802ACEE0; // type:object size:0x2C scope:global align:4 +@2103 = .data:0x802ACF0C; // type:object size:0xD scope:local align:4 data:string +@2104 = .data:0x802ACF1C; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802ACF28; // type:object size:0x2C scope:global align:4 +@2105 = .data:0x802ACF54; // type:object size:0xF scope:local align:4 data:string +@2106 = .data:0x802ACF64; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802ACF70; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802ACF9C; // type:object size:0x2C scope:weak align:4 +@2107 = .data:0x802ACFC8; // type:object size:0xE scope:local align:4 data:string +@2108 = .data:0x802ACFD8; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802ACFE4; // type:object size:0x2C scope:global align:4 +@2109 = .data:0x802AD010; // type:object size:0x14 scope:local align:4 data:string +@2110 = .data:0x802AD024; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802AD030; // type:object size:0x2C scope:global align:4 +@2111 = .data:0x802AD05C; // type:object size:0x14 scope:local align:4 data:string +@2112 = .data:0x802AD070; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802AD07C; // type:object size:0x2C scope:global align:4 +@2113 = .data:0x802AD0A8; // type:object size:0x12 scope:local align:4 data:string +@2114 = .data:0x802AD0BC; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802AD0C8; // type:object size:0x2C scope:global align:4 +@2115 = .data:0x802AD0F4; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802AD104; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802AD110; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD140; // type:label scope:local +@625 = .data:0x802AD140; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802AD154; // type:object size:0xD scope:local align:4 data:string +@676 = .data:0x802AD164; // type:object size:0x10 scope:local align:4 data:string +@678 = .data:0x802AD174; // type:object size:0xC scope:local align:4 data:string +@677 = .data:0x802AD180; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802AD18C; // type:object size:0x2C scope:global align:4 +@687 = .data:0x802AD1B8; // type:object size:0xD scope:local align:4 data:string +@688 = .data:0x802AD1C8; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802AD1D4; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD200; // type:label scope:local +@1133 = .data:0x802AD200; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802AD210; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802AD21C; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802AD22C; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802AD238; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802AD244; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802AD270; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802AD280; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802AD28C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD2B8; // type:label scope:local +@1358 = .data:0x802AD2B8; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802AD2CC; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802AD2DC; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802AD2EC; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802AD2F8; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802AD304; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AD330; // type:label scope:local +@716 = .data:0x802AD330; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802AD340; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802AD34C; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802AD35C; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802AD374; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802AD380; // type:object size:0xC scope:local align:4 +@790 = .data:0x802AD38C; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802AD3A0; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802AD3D8; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802AD3E8; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802AD3FC; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802AD434; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802AD444; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802AD458; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802AD490; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802AD4A0; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802AD4B4; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802AD4EC; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802AD504; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802AD518; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802AD550; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802AD568; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802AD57C; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802AD5B4; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802AD5CC; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802AD5E0; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802AD618; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802AD62C; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802AD640; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802AD678; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802AD6B0; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802AD6E8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802AD718; // type:label scope:local +@868 = .data:0x802AD718; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802AD728; // type:object size:0x9 scope:local align:4 data:string +@988 = .data:0x802AD734; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802AD740; // type:object size:0x9 scope:local align:4 data:string +@1066 = .data:0x802AD74C; // type:object size:0xD scope:local align:4 data:string +@1067 = .data:0x802AD75C; // type:object size:0xD scope:local align:4 data:string +@1068 = .data:0x802AD76C; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802AD778; // type:object size:0x2C scope:local align:4 +@1148 = .data:0x802AD7A4; // type:object size:0x9 scope:local align:4 data:string +@1150 = .data:0x802AD7B0; // type:object size:0x15 scope:local align:4 data:string +@1151 = .data:0x802AD7C8; // type:object size:0x13 scope:local align:4 data:string +@1152 = .data:0x802AD7DC; // type:object size:0xC scope:local align:4 +@1149 = .data:0x802AD7E8; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802AD7FC; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802AD84C; // type:object size:0x50 scope:weak align:4 +@1153 = .data:0x802AD8D4; // type:object size:0xD scope:local align:4 data:string +@1156 = .data:0x802AD8E4; // type:object size:0xC scope:local align:4 +@1154 = .data:0x802AD8F0; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802AD904; // type:object size:0x14 scope:weak align:4 +@1159 = .data:0x802AD918; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802AD92C; // type:object size:0x10 scope:weak align:4 +@1160 = .data:0x802AD958; // type:object size:0x9 scope:local align:4 data:string +@1162 = .data:0x802AD964; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802AD980; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802AD98C; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802AD9A4; // type:object size:0x18 scope:weak align:4 +@1163 = .data:0x802AD9BC; // type:object size:0xB scope:local align:4 data:string +@1165 = .data:0x802AD9C8; // type:object size:0x14 scope:local align:4 data:string +@1166 = .data:0x802AD9DC; // type:object size:0xC scope:local align:4 data:string +@1167 = .data:0x802AD9E8; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802AD9F8; // type:object size:0x9 scope:local align:4 data:string +@1169 = .data:0x802ADA04; // type:object size:0x14 scope:local align:4 +@1164 = .data:0x802ADA18; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802ADA3C; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802ADB94; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802ADBA0; // type:label scope:local +@1064 = .data:0x802ADBA0; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802ADBB4; // type:object size:0xA scope:local align:4 data:string +@2864 = .data:0x802ADBC0; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802ADBD0; // type:object size:0xD scope:local align:4 data:string +@2865 = .data:0x802ADBE0; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802ADBEC; // type:object size:0x10 scope:global align:4 +@2867 = .data:0x802ADBFC; // type:object size:0xD scope:local align:4 data:string +@2868 = .data:0x802ADC0C; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802ADC18; // type:object size:0x10 scope:global align:4 +@2869 = .data:0x802ADC28; // type:object size:0x10 scope:local align:4 data:string +@2870 = .data:0x802ADC38; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802ADC44; // type:object size:0x10 scope:global align:4 +@2871 = .data:0x802ADC54; // type:object size:0xF scope:local align:4 data:string +@2872 = .data:0x802ADC64; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802ADC70; // type:object size:0x10 scope:global align:4 +@2873 = .data:0x802ADC80; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802ADC8C; // type:object size:0x18 scope:weak align:4 +@2874 = .data:0x802ADCA4; // type:object size:0xD scope:local align:4 data:string +@2875 = .data:0x802ADCB4; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802ADCC0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802ADCD8; // type:label scope:local +@676 = .data:0x802ADCD8; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802ADCEC; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802ADCF8; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802ADD14; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802ADD30; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802ADD48; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802ADD60; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802ADD78; // type:label scope:local +@1581 = .data:0x802ADD78; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802ADD88; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802ADD94; // type:object size:0x28 scope:global align:4 +@2020 = .data:0x802ADDBC; // type:object size:0x13 scope:local align:4 +@2602 = .data:0x802ADDD0; // type:object size:0x16 scope:local align:4 data:string +@2604 = .data:0x802ADDE8; // type:object size:0x14 scope:local align:4 data:string +@2603 = .data:0x802ADDFC; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802ADE08; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802ADE20; // type:label scope:local +@1085 = .data:0x802ADE20; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802ADE30; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802ADE3C; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802ADE48; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802ADE60; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802ADE78; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802ADE90; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802ADEA4; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802ADEB4; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802ADEC4; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802ADED4; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802ADEEC; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802ADEF8; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802ADF18; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802ADF2C; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802ADF40; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802ADF58; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802ADF6C; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802ADF7C; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802ADF8C; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802ADFA4; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802ADFBC; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802ADFCC; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802ADFDC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802ADFF0; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802AE00C; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802AE024; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802AE03C; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802AE058; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802AE070; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802AE080; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802AE090; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802AE09C; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802AE0AC; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802AE0B8; // type:object size:0xA scope:local align:4 data:string +@1355 = .data:0x802AE0C4; // type:object size:0xC scope:local align:4 data:string +@1357 = .data:0x802AE0D0; // type:object size:0x9 scope:local align:4 data:string +@1356 = .data:0x802AE0DC; // type:object size:0xC scope:local align:4 +@1358 = .data:0x802AE0FC; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802AE108; // type:object size:0x9 scope:local align:4 data:string +@1362 = .data:0x802AE114; // type:object size:0xC scope:local align:4 +@1364 = .data:0x802AE120; // type:object size:0x14 scope:local align:4 +@1359 = .data:0x802AE134; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802AE150; // type:object size:0x30 scope:weak align:4 +@1711 = .data:0x802AE1A0; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802AE1BC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802AE1E0; // type:label scope:local +@903 = .data:0x802AE1E0; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802AE1F0; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802AE1FC; // type:object size:0x4C0 scope:global align:4 data:4byte +...data.0 = .data:0x802AE6C0; // type:label scope:local +@461 = .data:0x802AE6C0; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802AE6D0; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802AE6DC; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802AE6E8; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802AE6F4; // type:object size:0xC scope:local align:4 +@658 = .data:0x802AE714; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802AE720; // type:object size:0xC scope:local align:4 +@660 = .data:0x802AE740; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802AE74C; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802AE758; // type:object size:0xC scope:local align:4 +@666 = .data:0x802AE764; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802AE778; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802AE794; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802AE7E0; // type:label scope:local +@388 = .data:0x802AE7E0; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802AE7F0; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802AE7FC; // type:object size:0xD scope:local align:4 +@445 = .data:0x802AE80C; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802AE818; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802AE824; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802AE834; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802AE840; // type:object size:0xC scope:local align:4 +@463 = .data:0x802AE84C; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802AE860; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802AE87C; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802AE8AC; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802AE8B8; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802AE8D4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AE920; // type:label scope:local +@1533 = .data:0x802AE920; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802AE92C; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802AE938; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802AE944; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802AE950; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802AE95C; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802AE968; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802AE974; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802AE980; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802AE98C; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802AE998; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802AE9A4; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802AE9B0; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802AE9BC; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802AE9C8; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802AE9D4; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802AE9E0; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802AE9EC; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802AE9F8; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802AEA04; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802AEA10; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802AEA1C; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802AEA28; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802AEA34; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802AEA40; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802AEA4C; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802AEA5C; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802AEA70; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802AEA84; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802AEA98; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802AEAA8; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802AEAB8; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802AEACC; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802AEAE0; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802AEAF4; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802AEB08; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802AEB1C; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802AEB2C; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802AEB38; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802AEB44; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802AEB50; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802AEB5C; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802AEB68; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802AEB74; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802AEB80; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802AEB8C; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802AEB98; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802AEBA8; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802AEBB8; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802AEBC8; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802AEBD8; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802AEBE8; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802AEBFC; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802AEC0C; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802AEC1C; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802AEC30; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802AEC40; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802AEC50; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802AEC60; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802AEC74; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802AEC84; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802AEC98; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802AECA8; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802AECB8; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802AECC8; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802AED40; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802AED50; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802AED60; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802AED78; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802AEDB0; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802AEDCC; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802AEDE0; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802AEDEC; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802AEDF8; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802AEE10; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802AEE38; // type:label scope:local +@731 = .data:0x802AEE38; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802AEE48; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802AEE54; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802AEE60; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802AEE70; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802AEE80; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802AEE8C; // type:object size:0xC scope:local align:4 +@826 = .data:0x802AEE98; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802AEEA4; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802AEEB8; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802AEED4; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802AEF0C; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802AEF18; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802AEF24; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802AEF48; // type:label scope:local +@388 = .data:0x802AEF48; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802AEF54; // type:object size:0x9 scope:local align:4 data:string +@552 = .data:0x802AEF60; // type:object size:0x9 scope:local align:4 data:string +@553 = .data:0x802AEF6C; // type:object size:0xC scope:local align:4 +@554 = .data:0x802AEF78; // type:object size:0xC scope:local align:4 data:string +@555 = .data:0x802AEF84; // type:object size:0x14 scope:local align:4 +@550 = .data:0x802AEF98; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802AEFB4; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802AEFC4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AEFF0; // type:label scope:local +@625 = .data:0x802AEFF0; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802AF000; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802AF00C; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802AF018; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802AF024; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802AF030; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802AF03C; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802AF048; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802AF054; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802AF070; // type:label scope:local +@1470 = .data:0x802AF070; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802AF080; // type:object size:0x9 scope:local align:4 data:string +@3292 = .data:0x802AF08C; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802AF098; // type:object size:0xC scope:weak align:4 +@3294 = .data:0x802AF0A4; // type:object size:0xC scope:local align:4 data:string +@3295 = .data:0x802AF0B0; // type:object size:0xD scope:local align:4 data:string +@3293 = .data:0x802AF0C0; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802AF0D4; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802AF1E8; // type:label scope:local +@655 = .data:0x802AF1E8; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802AF200; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802AF214; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802AF228; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802AF234; // type:object size:0xC scope:local align:4 +@753 = .data:0x802AF240; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802AF254; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802AF264; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802AF280; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802AF290; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802AF2B4; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802AF2E0; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802AF328; // type:label scope:local +@1007 = .data:0x802AF328; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802AF33C; // type:object size:0xE scope:local align:4 data:string +@1782 = .data:0x802AF34C; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802AF358; // type:object size:0x10 scope:global align:4 +@2448 = .data:0x802AF368; // type:object size:0xE scope:local align:4 data:string +@2449 = .data:0x802AF378; // type:object size:0x9 scope:local align:4 data:string +@2451 = .data:0x802AF384; // type:object size:0xC scope:local align:4 data:string +@2450 = .data:0x802AF390; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802AF39C; // type:object size:0x18 scope:global align:4 +@2452 = .data:0x802AF3CC; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802AF408; // type:label scope:local +@939 = .data:0x802AF408; // type:object size:0x11 scope:local align:4 data:string +@1337 = .data:0x802AF41C; // type:object size:0xC scope:local align:4 data:string +@1339 = .data:0x802AF428; // type:object size:0xC scope:local align:4 data:string +@1340 = .data:0x802AF434; // type:object size:0xD scope:local align:4 data:string +@1341 = .data:0x802AF444; // type:object size:0x9 scope:local align:4 data:string +@1342 = .data:0x802AF450; // type:object size:0x14 scope:local align:4 +@1343 = .data:0x802AF464; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802AF470; // type:object size:0x1C scope:local align:4 +@1345 = .data:0x802AF48C; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802AF49C; // type:object size:0x24 scope:local align:4 +@1338 = .data:0x802AF4C0; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802AF4EC; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802AF60C; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802AF730; // type:label scope:local +@863 = .data:0x802AF730; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802AF740; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802AF74C; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802AF758; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802AF768; // type:object size:0xD scope:local align:4 data:string +@1900 = .data:0x802AF778; // type:object size:0xC scope:local align:4 data:string +@1902 = .data:0x802AF784; // type:object size:0xC scope:local align:4 data:string +@1903 = .data:0x802AF790; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802AF7A0; // type:object size:0x9 scope:local align:4 data:string +@1905 = .data:0x802AF7AC; // type:object size:0x14 scope:local align:4 +@1901 = .data:0x802AF7C0; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802AF7DC; // type:object size:0x114 scope:global align:4 +@1956 = .data:0x802AF8F0; // type:object size:0xC scope:local align:4 data:string +@1958 = .data:0x802AF8FC; // type:object size:0x9 scope:local align:4 data:string +@1957 = .data:0x802AF908; // type:object size:0xC scope:local align:4 +@1959 = .data:0x802AF928; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802AF938; // type:object size:0xC scope:weak align:4 +@1961 = .data:0x802AF944; // type:object size:0xC scope:local align:4 data:string +@1964 = .data:0x802AF950; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802AF95C; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802AF970; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802AF9B0; // type:label scope:local +@389 = .data:0x802AF9B0; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802AF9C4; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802AF9D4; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802AF9E0; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802AF9F0; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802AFA00; // type:object size:0xC scope:local align:4 +@421 = .data:0x802AFA0C; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802AFA20; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802AFA50; // type:label scope:local +@625 = .data:0x802AFA50; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802AFA64; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802AFA74; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802AFA84; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802AFA90; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802AFAA0; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802AFAAC; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802AFAC0; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802AFADC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802AFBF0; // type:label scope:local +@396 = .data:0x802AFBF0; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802AFBFC; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802AFC0C; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802AFC18; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802AFC24; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802AFC34; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802AFC40; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802AFC4C; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802AFC58; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802AFC68; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802AFC74; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802AFC88; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802AFC9C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802AFCA8; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802AFCB4; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802AFCC0; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802AFCCC; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802AFCD8; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802AFCE4; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802AFCF4; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802AFD00; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802AFD0C; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802AFD18; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802AFD24; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802AFD34; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802AFD40; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802AFD4C; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802AFF04; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802AFF18; // type:label scope:local +@1331 = .data:0x802AFF18; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802AFF28; // type:object size:0x7C scope:local align:4 data:4byte +@1488 = .data:0x802AFFA4; // type:object size:0x9 scope:local align:4 data:string +@1509 = .data:0x802AFFB0; // type:object size:0xD scope:local align:4 data:string +bounceSounds = .data:0x802AFFC0; // type:object size:0x30 scope:local align:4 +numberPellets = .data:0x802AFFF0; // type:object size:0x9C scope:global align:4 data:4byte +@3085 = .data:0x802B008C; // type:object size:0xB scope:local align:4 data:string +@3122 = .data:0x802B0098; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802B00A4; // type:object size:0xC scope:local align:4 data:string +@3399 = .data:0x802B00B0; // type:object size:0xA scope:local align:4 data:string +@3402 = .data:0x802B00BC; // type:object size:0xC scope:local align:4 +@3404 = .data:0x802B00C8; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802B00DC; // type:object size:0xC scope:local align:4 data:string +@3406 = .data:0x802B00E8; // type:object size:0xA scope:local align:4 data:string +@3407 = .data:0x802B00F4; // type:object size:0x24 scope:local align:4 +@3408 = .data:0x802B0118; // type:object size:0xE scope:local align:4 data:string +@3409 = .data:0x802B0128; // type:object size:0x2C scope:local align:4 +@3400 = .data:0x802B0154; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B0188; // type:object size:0x88 scope:global align:4 +@3425 = .data:0x802B0210; // type:object size:0xB scope:local align:4 data:string +@3427 = .data:0x802B021C; // type:object size:0xD scope:local align:4 data:string +@3426 = .data:0x802B022C; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B0238; // type:object size:0xC scope:weak align:4 +@3429 = .data:0x802B0250; // type:object size:0x13 scope:local align:4 data:string +@3430 = .data:0x802B0264; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B0278; // type:object size:0x10 scope:weak align:4 +@3432 = .data:0x802B0288; // type:object size:0xC scope:local align:4 data:string +@3442 = .data:0x802B02C0; // type:object size:0x14 scope:local align:4 data:string +@3443 = .data:0x802B02D4; // type:object size:0xC scope:local align:4 data:string +@3444 = .data:0x802B02E0; // type:object size:0xD scope:local align:4 data:string +@3445 = .data:0x802B02F0; // type:object size:0x9 scope:local align:4 data:string +@3446 = .data:0x802B02FC; // type:object size:0x14 scope:local align:4 +@3447 = .data:0x802B0310; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802B031C; // type:object size:0x1C scope:local align:4 +@3449 = .data:0x802B0338; // type:object size:0xD scope:local align:4 data:string +@3450 = .data:0x802B0348; // type:object size:0x24 scope:local align:4 +@3441 = .data:0x802B036C; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B03A0; // type:object size:0x130 scope:global align:4 +@3484 = .data:0x802B04D0; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B04E8; // type:object size:0x18 scope:weak align:4 +@3487 = .data:0x802B0500; // type:object size:0x23 scope:local align:4 data:string +@3488 = .data:0x802B0524; // type:object size:0x3D scope:local align:4 data:string +@3489 = .data:0x802B0564; // type:object size:0x29 scope:local align:4 data:string +@3486 = .data:0x802B0590; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B05AC; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B05E8; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B05F4; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B0600; // type:object size:0xC scope:weak align:4 +@3496 = .data:0x802B0618; // type:object size:0xD scope:local align:4 data:string +@3498 = .data:0x802B0628; // type:object size:0xB scope:local align:4 data:string +@3497 = .data:0x802B0634; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B0650; // type:object size:0x1C scope:global align:4 +@3499 = .data:0x802B066C; // type:object size:0xC scope:local align:4 data:string +@3501 = .data:0x802B0678; // type:object size:0x9 scope:local align:4 data:string +@3500 = .data:0x802B0684; // type:object size:0xC scope:local align:4 +@3502 = .data:0x802B06A4; // type:object size:0xA scope:local align:4 data:string +@3503 = .data:0x802B06B0; // type:object size:0xC scope:local align:4 +@3504 = .data:0x802B06D0; // type:object size:0xD scope:local align:4 data:string +@3505 = .data:0x802B06E0; // type:object size:0xC scope:local align:4 +@3540 = .data:0x802B071C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B0748; // type:label scope:local +@1008 = .data:0x802B0748; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B0758; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B0764; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B0770; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B0780; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B0794; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B07A4; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B07C0; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B07D4; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B07E0; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B07F0; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B07FC; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B0810; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B082C; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B083C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B0848; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B0854; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B0870; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B088C; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B089C; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B08A8; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B08E8; // type:label scope:local +@1040 = .data:0x802B08E8; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B08F8; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B0904; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B0910; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B0920; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B0930; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B093C; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B0948; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B0954; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B0968; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B0984; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B09C0; // type:label scope:local +@1325 = .data:0x802B09C0; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B09D0; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B09DC; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B09E8; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B09F8; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B0A0C; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B0A1C; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B0A28; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B0A34; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B0A48; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B0A64; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B0AB4; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B0AC8; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B0AE4; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B0B34; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B0B4C; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B0B68; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B0BB8; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B0BCC; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B0BE8; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B0C38; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B0C48; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B0C64; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B0CB4; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B0CC8; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B0CE4; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B0D34; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B0D84; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B0DD4; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B0E0C; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B0E20; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B0E38; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B0E44; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B0E5C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B0E88; // type:label scope:local +@1312 = .data:0x802B0E88; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B0E98; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B0EA4; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B0EB8; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B0ECC; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B0EE0; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B0EEC; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B0EF8; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B0F10; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B0F1C; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B0F28; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B0F38; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B0F44; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B0F50; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B0F80; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B0F9C; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B0FB8; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B0FD4; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B0FF4; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B1010; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B1024; // type:object size:0x9 scope:local align:4 data:string +@1557 = .data:0x802B1030; // type:object size:0xC scope:local align:4 data:string +@1558 = .data:0x802B103C; // type:object size:0x11 scope:local align:4 +@1614 = .data:0x802B1050; // type:object size:0x17 scope:local align:4 +@2993 = .data:0x802B1068; // type:object size:0xE scope:local align:4 data:string +@2995 = .data:0x802B1078; // type:object size:0xC scope:local align:4 data:string +@2994 = .data:0x802B1084; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B1090; // type:object size:0x2C scope:global align:4 +@3002 = .data:0x802B10BC; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802B10CC; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B10D8; // type:object size:0x2C scope:global align:4 +@3006 = .data:0x802B1104; // type:object size:0x14 scope:local align:4 data:string +@3007 = .data:0x802B1118; // type:object size:0xC scope:local align:4 data:string +@3008 = .data:0x802B1124; // type:object size:0xD scope:local align:4 data:string +@3009 = .data:0x802B1134; // type:object size:0x9 scope:local align:4 data:string +@3010 = .data:0x802B1140; // type:object size:0x14 scope:local align:4 +@3011 = .data:0x802B1154; // type:object size:0xB scope:local align:4 data:string +@3012 = .data:0x802B1160; // type:object size:0x24 scope:local align:4 +@3013 = .data:0x802B1184; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802B1194; // type:object size:0x2C scope:local align:4 +@3015 = .data:0x802B11C0; // type:object size:0xB scope:local align:4 data:string +@3016 = .data:0x802B11CC; // type:object size:0x34 scope:local align:4 +@3005 = .data:0x802B1200; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B123C; // type:object size:0x16C scope:global align:4 +@3066 = .data:0x802B13A8; // type:object size:0xD scope:local align:4 data:string +@3067 = .data:0x802B13B8; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802B13C4; // type:object size:0x2C scope:global align:4 +@3068 = .data:0x802B13F0; // type:object size:0xB scope:local align:4 data:string +@3069 = .data:0x802B13FC; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802B1438; // type:object size:0x16C scope:global align:4 +@3074 = .data:0x802B15A4; // type:object size:0xE scope:local align:4 data:string +@3077 = .data:0x802B15B4; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802B15C0; // type:object size:0x14 scope:local align:4 +@3075 = .data:0x802B15D4; // type:object size:0x1C scope:local align:4 +@3091 = .data:0x802B1630; // type:object size:0xE scope:local align:4 data:string +@3093 = .data:0x802B1640; // type:object size:0xD scope:local align:4 data:string +@3094 = .data:0x802B1650; // type:object size:0x24 scope:local align:4 +@3092 = .data:0x802B1674; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802B16A0; // type:object size:0x48 scope:weak align:4 +@3098 = .data:0x802B16E8; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802B16FC; // type:object size:0xB scope:local align:4 data:string +@3102 = .data:0x802B1708; // type:object size:0xC scope:local align:4 +@3103 = .data:0x802B1714; // type:object size:0xA scope:local align:4 data:string +@3104 = .data:0x802B1720; // type:object size:0x14 scope:local align:4 +@3099 = .data:0x802B1734; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802B1750; // type:object size:0x38 scope:global align:4 +@3110 = .data:0x802B1788; // type:object size:0xC scope:local align:4 data:string +@3112 = .data:0x802B1794; // type:object size:0x9 scope:local align:4 data:string +@3111 = .data:0x802B17A0; // type:object size:0xC scope:local align:4 +@3113 = .data:0x802B17C0; // type:object size:0xA scope:local align:4 data:string +@3114 = .data:0x802B17CC; // type:object size:0xC scope:local align:4 +@3115 = .data:0x802B17EC; // type:object size:0xE scope:local align:4 data:string +@3117 = .data:0x802B17FC; // type:object size:0xC scope:local align:4 data:string +@3118 = .data:0x802B1808; // type:object size:0xA scope:local align:4 data:string +@3119 = .data:0x802B1814; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802B1838; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802B1864; // type:object size:0x78 scope:global align:4 +@3126 = .data:0x802B18DC; // type:object size:0xF scope:local align:4 data:string +@3127 = .data:0x802B18EC; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802B1900; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802B1944; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802B1AB0; // type:label scope:local +@882 = .data:0x802B1AB0; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802B1AC0; // type:object size:0x9 scope:local align:4 data:string +@3233 = .data:0x802B1ACC; // type:object size:0x9 scope:local align:4 data:string +@3234 = .data:0x802B1AD8; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802B1B00; // type:object size:0x9 scope:local align:4 data:string +@3241 = .data:0x802B1B0C; // type:object size:0x14 scope:local align:4 +@3239 = .data:0x802B1B20; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802B1B3C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B1B70; // type:label scope:local +@573 = .data:0x802B1B70; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802B1B7C; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802B1B88; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802B1B94; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802B1BA4; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802B1BB0; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802B1BC4; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802B1BD0; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802B1BDC; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802B1BEC; // type:object size:0xC scope:local align:4 data:string +@643 = .data:0x802B1BF8; // type:object size:0xA scope:local align:4 +@754 = .data:0x802B1C04; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802B1C10; // type:object size:0xC scope:local align:4 +@757 = .data:0x802B1C1C; // type:object size:0x14 scope:local align:4 +@752 = .data:0x802B1C30; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802B1C4C; // type:object size:0x48 scope:global align:4 +@763 = .data:0x802B1C94; // type:object size:0x14 scope:local align:4 +@761 = .data:0x802B1CA8; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802B1CC4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B1D10; // type:label scope:local +@399 = .data:0x802B1D10; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802B1D20; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802B1D2C; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802B1D38; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802B1D44; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802B1D50; // type:object size:0xC scope:local align:4 +@449 = .data:0x802B1D70; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802B1D7C; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802B1D88; // type:object size:0xC scope:local align:4 +@455 = .data:0x802B1D94; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802B1DA8; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802B1DC4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B1E10; // type:label scope:local +@1321 = .data:0x802B1E10; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802B1E20; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802B1E2C; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802B1E3C; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802B1E4C; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802B1E5C; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802B1E6C; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802B1E7C; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802B1E8C; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802B1E9C; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802B1EAC; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802B1EC4; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802B1ED4; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802B1EE4; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B1EF0; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802B1F00; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802B1F10; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802B1F20; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802B1F30; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802B1F40; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802B1F50; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802B1F60; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802B1F6C; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802B1F80; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802B1F94; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802B1FA4; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802B1FBC; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802B1FC8; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802B1FDC; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802B1FEC; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802B1FFC; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802B2008; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802B2018; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802B2028; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802B2038; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B204C; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802B205C; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802B206C; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802B207C; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802B208C; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802B209C; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802B20AC; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802B20BC; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802B20CC; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802B20DC; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802B20EC; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802B20FC; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802B210C; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802B211C; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802B2134; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802B2144; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802B2154; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802B2164; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802B2174; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802B2184; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802B2194; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802B21A4; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802B21B4; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802B21C4; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802B21D4; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B21E4; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802B21F4; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802B2204; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802B2214; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802B2224; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802B2234; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802B2244; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802B2254; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802B2264; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802B2274; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802B2284; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802B2294; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802B22A4; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802B22B4; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802B22C4; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802B22D4; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802B22E4; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802B22F4; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802B2304; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802B2314; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802B2324; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802B2334; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802B2344; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802B2354; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802B2364; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802B2370; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802B2380; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802B2390; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802B239C; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802B23AC; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802B23BC; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802B23CC; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802B23DC; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802B23F0; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802B2404; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802B2414; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802B2424; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802B2434; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802B2444; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B2458; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B246C; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802B247C; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802B248C; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802B249C; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802B24B0; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802B24C0; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802B24D0; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802B24E4; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802B24F4; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802B2504; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802B2518; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802B252C; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802B2540; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802B2550; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802B2560; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802B2570; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B2580; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802B2590; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802B25A0; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802B25B4; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802B25C4; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802B25D8; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802B25E8; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802B25F8; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802B2608; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802B2618; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802B2628; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802B2638; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802B2648; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802B265C; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802B2668; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802B2678; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802B2684; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802B2690; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802B26A0; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802B26B0; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802B26C0; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802B26D0; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802B26E0; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802B26F0; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802B2704; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802B2718; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802B272C; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802B273C; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802B2750; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802B2764; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802B2778; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802B2788; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802B2798; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802B27A8; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802B27B8; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802B27CC; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802B27DC; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802B27EC; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802B27FC; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802B280C; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802B2820; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802B2830; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802B2844; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802B2858; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802B2868; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802B287C; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802B2890; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802B28A4; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802B28B4; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802B28C4; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802B28D4; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802B28E4; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802B28F4; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802B2908; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802B291C; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802B292C; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802B2940; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802B2950; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802B2964; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802B2978; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802B2984; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802B2998; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802B29A8; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802B29B8; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802B29C8; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802B29DC; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802B29F0; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B2A00; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802B2A10; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802B2A20; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802B2A2C; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802B2A3C; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802B2A4C; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802B2A5C; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802B2A6C; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802B2A80; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802B2A94; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802B2AA8; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802B2ABC; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802B2AD0; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802B2AE4; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802B2AF8; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802B2B0C; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802B2B24; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802B2B3C; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802B2B54; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802B2B64; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802B2B74; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802B2B84; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802B2B94; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802B2BA4; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802B2BB4; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802B2BC4; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802B2BD4; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802B2BE8; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802B2C00; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802B2C14; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802B2C28; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802B2C3C; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802B2C4C; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802B2C60; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802B2C74; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802B2C88; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802B2C98; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802B2CA8; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802B2CB8; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802B2CCC; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802B2CDC; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802B2CEC; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802B2CFC; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802B2D0C; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802B2D1C; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802B2D30; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802B2D40; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802B2D54; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802B2D64; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802B2D74; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802B2D84; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802B2D94; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802B2DA4; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802B2DB8; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802B2DC8; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802B2DD8; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802B2DE8; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802B2DF8; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802B2E08; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802B2E18; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802B2E28; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802B2E38; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802B2E48; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802B2E5C; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802B2E6C; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802B2E7C; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802B2E8C; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802B2E9C; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802B2EAC; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802B2EC0; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802B2ED0; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802B2EE0; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802B2EF0; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802B2F00; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802B2F14; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802B2F2C; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802B2F40; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802B2F54; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802B2F68; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802B2F78; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802B2F88; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802B2F98; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802B2FA8; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802B2FB8; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802B2FC8; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802B2FE0; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802B2FF0; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802B3000; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802B300C; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802B3018; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802B302C; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802B303C; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802B304C; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802B305C; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802B3070; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802B3084; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802B3098; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802B30AC; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802B30C0; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802B30D0; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802B30E4; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802B30F4; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802B3108; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802B3118; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802B312C; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802B3140; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802B3154; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802B3168; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802B3180; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802B3194; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802B31A8; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802B31B8; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802B31C8; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802B31E0; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802B31F4; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802B3200; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802B320C; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802B321C; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802B3230; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802B3244; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802B3258; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802B3268; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802B3280; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802B3290; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802B32A0; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802B32B0; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802B32BC; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802B32C8; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802B32D4; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802B32E0; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802B32EC; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802B32F8; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802B3308; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802B3320; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B332C; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802B3338; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802B3350; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802B3364; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B3374; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802B3384; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802B3394; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802B33A8; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802B33BC; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802B33D4; // type:object size:0x19DC scope:local align:4 +@1782 = .data:0x802B4DB0; // type:object size:0xD scope:local align:4 data:string +@2082 = .data:0x802B4DC0; // type:object size:0x31 scope:local align:4 data:string +@2084 = .data:0x802B4DF4; // type:object size:0x15 scope:local align:4 data:string +@2085 = .data:0x802B4E0C; // type:object size:0x22 scope:local align:4 data:string +...data.0 = .data:0x802B4E30; // type:label scope:local +@1358 = .data:0x802B4E30; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802B4E3C; // type:object size:0xA scope:local align:4 data:string +@2106 = .data:0x802B4E48; // type:object size:0x9 scope:local align:4 data:string +@2107 = .data:0x802B4E54; // type:object size:0xC scope:local align:4 +@2109 = .data:0x802B4E60; // type:object size:0x14 scope:local align:4 +@2110 = .data:0x802B4E74; // type:object size:0xC scope:local align:4 data:string +@2104 = .data:0x802B4E80; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802B4EA4; // type:object size:0x54 scope:global align:4 +@2121 = .data:0x802B4EF8; // type:object size:0xC scope:local align:4 data:string +@2123 = .data:0x802B4F04; // type:object size:0x9 scope:local align:4 data:string +@2122 = .data:0x802B4F10; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4F68; // type:label scope:local +@1426 = .data:0x802B4F68; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802B4F74; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802B4F80; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802B4F90; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802B4F9C; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802B4FB0; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802B5024; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802B5044; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5070; // type:label scope:local +@1167 = .data:0x802B5070; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802B5080; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802B508C; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802B5098; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802B50A8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B50B4; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802B50C8; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802B512C; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802B5144; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B5158; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802B5164; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802B5170; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802B5184; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802B51E8; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802B51FC; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802B5208; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802B5214; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802B524C; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B5260; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802B527C; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802B52F0; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802B5308; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802B5314; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802B532C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5358; // type:label scope:local +@1794 = .data:0x802B5358; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802B5368; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802B5374; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802B5390; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802B53C8; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802B53D8; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802B53EC; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802B53FC; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802B5408; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802B5424; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802B5498; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802B54A4; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802B54B0; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802B54C4; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802B54E8; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802B5568; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5598; // type:label scope:local +@1651 = .data:0x802B5598; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802B55A4; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802B55B0; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802B55BC; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802B55D0; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802B55E0; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802B55EC; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802B5608; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802B567C; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802B568C; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802B56A8; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802B571C; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802B572C; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802B5740; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802B57A4; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802B57DC; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802B57E8; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802B5804; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802B5884; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802B5894; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802B58A8; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802B590C; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802B591C; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802B5930; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802B5994; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B59C0; // type:label scope:local +@1418 = .data:0x802B59C0; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802B59D0; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802B59DC; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802B5A14; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802B5A20; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802B5A30; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802B5A3C; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802B5A50; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802B5AC4; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802B5AE4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5B10; // type:label scope:local +@1372 = .data:0x802B5B10; // type:object size:0xA scope:local align:4 data:string +@1524 = .data:0x802B5B1C; // type:object size:0xF scope:local align:4 data:string +@1526 = .data:0x802B5B2C; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802B5B38; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802B5B4C; // type:object size:0x64 scope:global align:4 +@1573 = .data:0x802B5BB0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5BE0; // type:label scope:local +@1793 = .data:0x802B5BE0; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B5BF0; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802B5BFC; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802B5C08; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802B5C40; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802B5C4C; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802B5C60; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802B5C70; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802B5C7C; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802B5C98; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802B5D18; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5D48; // type:label scope:local +@1255 = .data:0x802B5D48; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802B5D58; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802B5D64; // type:object size:0xA scope:local align:4 data:string +@1499 = .data:0x802B5D70; // type:object size:0xC scope:local align:4 data:string +@1509 = .data:0x802B5DA8; // type:object size:0xD scope:local align:4 data:string +@1511 = .data:0x802B5DB8; // type:object size:0x14 scope:local align:4 data:string +@1512 = .data:0x802B5DCC; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B5DDC; // type:object size:0xC scope:local align:4 +@1510 = .data:0x802B5DE8; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802B5E04; // type:object size:0x74 scope:global align:4 +@1561 = .data:0x802B5E84; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B5EB0; // type:label scope:local +@1671 = .data:0x802B5EB0; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802B5EC0; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802B5ECC; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802B5EDC; // type:object size:0x20 scope:local align:4 +@4233 = .data:0x802B5EFC; // type:object size:0xB scope:local align:4 data:string +@4234 = .data:0x802B5F08; // type:object size:0xD scope:local align:4 data:string +@4235 = .data:0x802B5F18; // type:object size:0xE scope:local align:4 data:string +@4426 = .data:0x802B5F28; // type:object size:0xD scope:local align:4 data:string +@4428 = .data:0x802B5F38; // type:object size:0x14 scope:local align:4 data:string +@4429 = .data:0x802B5F4C; // type:object size:0xF scope:local align:4 data:string +@4431 = .data:0x802B5F5C; // type:object size:0xC scope:local align:4 +@4427 = .data:0x802B5F68; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802B5F84; // type:object size:0x74 scope:global align:4 +@4480 = .data:0x802B6004; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6030; // type:label scope:local +@1793 = .data:0x802B6030; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B6040; // type:object size:0x9 scope:local align:4 data:string +@2364 = .data:0x802B604C; // type:object size:0xC scope:local align:4 data:string +@2374 = .data:0x802B6084; // type:object size:0xA scope:local align:4 data:string +@2376 = .data:0x802B6090; // type:object size:0x14 scope:local align:4 data:string +@2377 = .data:0x802B60A4; // type:object size:0xF scope:local align:4 data:string +@2379 = .data:0x802B60B4; // type:object size:0xC scope:local align:4 +@2375 = .data:0x802B60C0; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802B60DC; // type:object size:0x74 scope:global align:4 +@2429 = .data:0x802B615C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6188; // type:label scope:local +@1050 = .data:0x802B6188; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802B6194; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802B61A4; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B61B0; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802B61C0; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802B61CC; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802B61E0; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802B6244; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802B625C; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802B6270; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802B627C; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802B6288; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B62B8; // type:label scope:local +@1507 = .data:0x802B62B8; // type:object size:0xC scope:local align:4 data:string +@2427 = .data:0x802B62C4; // type:object size:0x9 scope:local align:4 data:string +@2429 = .data:0x802B62D0; // type:object size:0x12 scope:local align:4 data:string +@2430 = .data:0x802B62E4; // type:object size:0xF scope:local align:4 data:string +@2432 = .data:0x802B62F4; // type:object size:0xC scope:local align:4 +@2428 = .data:0x802B6300; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802B631C; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802B6390; // type:object size:0xC scope:weak align:4 +@2479 = .data:0x802B639C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B63C8; // type:label scope:local +@1475 = .data:0x802B63C8; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802B63D4; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802B63E0; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802B63F4; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802B6404; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802B6410; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802B642C; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802B64AC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B64D8; // type:label scope:local +@1372 = .data:0x802B64D8; // type:object size:0xC scope:local align:4 data:string +@1617 = .data:0x802B64E4; // type:object size:0xC scope:local align:4 data:string +@1627 = .data:0x802B651C; // type:object size:0x9 scope:local align:4 data:string +@1629 = .data:0x802B6528; // type:object size:0xF scope:local align:4 data:string +@1631 = .data:0x802B6538; // type:object size:0xC scope:local align:4 +@1628 = .data:0x802B6544; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802B6558; // type:object size:0x64 scope:global align:4 +@1678 = .data:0x802B65BC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B65E8; // type:label scope:local +@1051 = .data:0x802B65E8; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802B65F8; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802B6604; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802B6618; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802B6624; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802B6634; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802B6640; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802B6654; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802B66B8; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802B66D0; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802B66E4; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802B66F0; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802B66FC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6728; // type:label scope:local +@1370 = .data:0x802B6728; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802B6734; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802B6744; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802B6750; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802B6764; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802B67C8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B67F8; // type:label scope:local +@1169 = .data:0x802B67F8; // type:object size:0xB scope:local align:4 data:string +@1341 = .data:0x802B6804; // type:object size:0x14 scope:local align:4 data:string +@1342 = .data:0x802B6818; // type:object size:0xF scope:local align:4 data:string +@1344 = .data:0x802B6828; // type:object size:0xC scope:local align:4 +@1340 = .data:0x802B6834; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802B6850; // type:object size:0x74 scope:global align:4 +@1358 = .data:0x802B68C4; // type:object size:0xC scope:local align:4 data:string +@1404 = .data:0x802B6908; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6938; // type:label scope:local +@1357 = .data:0x802B6938; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802B6948; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802B6954; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x802B6964; // type:object size:0x14 scope:local align:4 data:string +@1777 = .data:0x802B6978; // type:object size:0xF scope:local align:4 data:string +@1779 = .data:0x802B6988; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802B6994; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802B69B0; // type:object size:0x74 scope:global align:4 +@1827 = .data:0x802B6A30; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6A60; // type:label scope:local +@1610 = .data:0x802B6A60; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802B6A6C; // type:object size:0x10 scope:local align:4 +@1899 = .data:0x802B6A7C; // type:object size:0x14 scope:local align:4 data:string +@1900 = .data:0x802B6A90; // type:object size:0xF scope:local align:4 data:string +@1902 = .data:0x802B6AA0; // type:object size:0xC scope:local align:4 +@1898 = .data:0x802B6AAC; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802B6AC8; // type:object size:0x74 scope:global align:4 +@1951 = .data:0x802B6B48; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6B78; // type:label scope:local +@1050 = .data:0x802B6B78; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802B6B84; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802B6B94; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802B6BA0; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802B6BB4; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802B6C18; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802B6C30; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802B6C44; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802B6C50; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802B6C5C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6C88; // type:label scope:local +@1476 = .data:0x802B6C88; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802B6C94; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802B6CA0; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802B6CB0; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802B6CBC; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802B6CD0; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802B6D34; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6D60; // type:label scope:local +@1147 = .data:0x802B6D60; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802B6D6C; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B6D78; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802B6D84; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802B6DBC; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802B6DC8; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B6DDC; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B6DEC; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802B6DF8; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802B6E14; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802B6E94; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802B6EA0; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802B6EAC; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802B6EC0; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802B6EDC; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802B6F40; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6F70; // type:label scope:local +@1050 = .data:0x802B6F70; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802B6F84; // type:object size:0xE scope:local align:4 data:string +@1138 = .data:0x802B6F94; // type:object size:0xB scope:local align:4 data:string +@1140 = .data:0x802B6FA0; // type:object size:0xF scope:local align:4 data:string +@1142 = .data:0x802B6FB0; // type:object size:0xC scope:local align:4 +@1143 = .data:0x802B6FBC; // type:object size:0xA scope:local align:4 data:string +@1144 = .data:0x802B6FC8; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802B6FDC; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802B6FF8; // type:object size:0x64 scope:global align:4 +@1163 = .data:0x802B705C; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802B7074; // type:object size:0x14 scope:local align:4 data:string +@1164 = .data:0x802B7088; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802B7094; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802B70A0; // type:object size:0xC scope:weak align:4 +@1167 = .data:0x802B70AC; // type:object size:0x10 scope:local align:4 data:string +@1168 = .data:0x802B70BC; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802B70D8; // type:object size:0x64 scope:global align:4 +@1211 = .data:0x802B713C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7168; // type:label scope:local +@1375 = .data:0x802B7168; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802B7178; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802B7184; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B71BC; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802B71D0; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B71E0; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802B71EC; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802B7200; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802B7274; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802B7294; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802B72A0; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802B72AC; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802B72C0; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802B72DC; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802B7340; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7370; // type:label scope:local +@1795 = .data:0x802B7370; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802B737C; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802B73B0; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802B73E8; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802B73FC; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802B740C; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802B7418; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802B7434; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802B74B4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B74E0; // type:label scope:local +@1701 = .data:0x802B74E0; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802B74EC; // type:object size:0x9 scope:local align:4 data:string +@2650 = .data:0x802B74F8; // type:object size:0xB scope:local align:4 data:string +@2652 = .data:0x802B7504; // type:object size:0xF scope:local align:4 data:string +@2654 = .data:0x802B7514; // type:object size:0xC scope:local align:4 +@2651 = .data:0x802B7520; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802B7534; // type:object size:0x64 scope:global align:4 +@2666 = .data:0x802B7598; // type:object size:0xB scope:local align:4 data:string +@2668 = .data:0x802B75A4; // type:object size:0x14 scope:local align:4 data:string +@2667 = .data:0x802B75B8; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802B75D4; // type:object size:0x74 scope:global align:4 +@2674 = .data:0x802B7648; // type:object size:0xC scope:local align:4 data:string +@2720 = .data:0x802B768C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B76B8; // type:label scope:local +@1052 = .data:0x802B76B8; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802B76CC; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802B76DC; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802B76E8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B76F4; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802B7704; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802B7714; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802B7720; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802B7734; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802B7798; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802B77B4; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B77C8; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802B77D4; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802B77E0; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802B7800; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802B781C; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802B7828; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802B7834; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7860; // type:label scope:local +@1793 = .data:0x802B7860; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B7870; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802B787C; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802B7888; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802B789C; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802B78AC; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802B78B8; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802B78D4; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802B7954; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7980; // type:label scope:local +@1370 = .data:0x802B7980; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802B798C; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B799C; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802B79A8; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802B79BC; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802B7A20; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7A50; // type:label scope:local +@1477 = .data:0x802B7A50; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802B7A5C; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802B7A70; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802B7A84; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802B7A94; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802B7AA0; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802B7ABC; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802B7B3C; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802B7B48; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802B7B54; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802B7B68; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802B7B84; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802B7BE8; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802B7C08; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7C38; // type:label scope:local +@1050 = .data:0x802B7C38; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802B7C44; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802B7C50; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802B7C5C; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802B7C6C; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802B7C78; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802B7C8C; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802B7CF0; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802B7D08; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802B7D1C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802B7D28; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802B7D34; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802B7D54; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802B7D6C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802B7D78; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802B7D84; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7DB0; // type:label scope:local +@1426 = .data:0x802B7DB0; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802B7DBC; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802B7DCC; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802B7DD8; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802B7DEC; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802B7E60; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802B7E80; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7EB0; // type:label scope:local +@1216 = .data:0x802B7EB0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802B7EC0; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802B7ECC; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802B7ED8; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802B7EFC; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802B7F28; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802B7F54; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802B7F60; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802B7F6C; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802B7F80; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802B7F98; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802B7FA4; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802B7FB4; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802B7FC0; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802B7FD4; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802B8038; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802B8058; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802B8074; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802B8080; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802B808C; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802B8098; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802B80AC; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802B8110; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802B811C; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802B8130; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802B8194; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802B81F8; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802B8230; // type:label scope:local +@1468 = .data:0x802B8230; // type:object size:0xC scope:local align:4 data:string +@1595 = .data:0x802B823C; // type:object size:0x9 scope:local align:4 data:string +@1684 = .data:0x802B8248; // type:object size:0xB scope:local align:4 data:string +@1685 = .data:0x802B8254; // type:object size:0x9 scope:local align:4 data:string +@1867 = .data:0x802B8260; // type:object size:0xC scope:local align:4 data:string +@1870 = .data:0x802B826C; // type:object size:0xC scope:local align:4 +@1872 = .data:0x802B8278; // type:object size:0x14 scope:local align:4 +@1868 = .data:0x802B828C; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802B82A8; // type:object size:0x20 scope:global align:4 +@1875 = .data:0x802B82C8; // type:object size:0xF scope:local align:4 data:string +@1878 = .data:0x802B82D8; // type:object size:0xB scope:local align:4 data:string +@1879 = .data:0x802B82E4; // type:object size:0xC scope:local align:4 +@1876 = .data:0x802B82F0; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802B8304; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802B8324; // type:object size:0xC scope:local align:4 data:string +@1881 = .data:0x802B8330; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802B8344; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802B8364; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802B8384; // type:object size:0x1C scope:weak align:4 +@1883 = .data:0x802B83A0; // type:object size:0x9 scope:local align:4 data:string +@1884 = .data:0x802B83AC; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802B83C8; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802B83E8; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B8428; // type:label scope:local +@1919 = .data:0x802B8428; // type:object size:0x9 scope:local align:4 data:string +@2653 = .data:0x802B8434; // type:object size:0x3C scope:local align:4 +@2666 = .data:0x802B8470; // type:object size:0x58 scope:local align:4 +@3264 = .data:0x802B84C8; // type:object size:0xB scope:local align:4 data:string +@3412 = .data:0x802B84D4; // type:object size:0x2C scope:local align:4 +@5108 = .data:0x802B8500; // type:object size:0x4C scope:local align:4 +@5115 = .data:0x802B854C; // type:object size:0x9 scope:local align:4 data:string +@5116 = .data:0x802B8558; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802B8564; // type:object size:0x38 scope:global align:4 +@5121 = .data:0x802B859C; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802B85A8; // type:object size:0x10 scope:global align:4 +@5124 = .data:0x802B85B8; // type:object size:0xA scope:local align:4 data:string +@5125 = .data:0x802B85C4; // type:object size:0xF scope:local align:4 data:string +@5126 = .data:0x802B85D4; // type:object size:0xC scope:local align:4 data:string +@5127 = .data:0x802B85E0; // type:object size:0xA scope:local align:4 data:string +@5128 = .data:0x802B85EC; // type:object size:0xB scope:local align:4 data:string +@5129 = .data:0x802B85F8; // type:object size:0xA scope:local align:4 data:string +@5130 = .data:0x802B8604; // type:object size:0xB scope:local align:4 data:string +@5131 = .data:0x802B8610; // type:object size:0xB scope:local align:4 data:string +@5132 = .data:0x802B861C; // type:object size:0xB scope:local align:4 data:string +@5133 = .data:0x802B8628; // type:object size:0xF scope:local align:4 data:string +@5134 = .data:0x802B8638; // type:object size:0xA scope:local align:4 data:string +@5135 = .data:0x802B8644; // type:object size:0xB scope:local align:4 data:string +@5136 = .data:0x802B8650; // type:object size:0xA scope:local align:4 data:string +@5137 = .data:0x802B865C; // type:object size:0xF scope:local align:4 data:string +@5138 = .data:0x802B866C; // type:object size:0xA scope:local align:4 data:string +@5139 = .data:0x802B8678; // type:object size:0xC scope:local align:4 data:string +@5140 = .data:0x802B8684; // type:object size:0xC scope:local align:4 data:string +@5141 = .data:0x802B8690; // type:object size:0xF scope:local align:4 data:string +@5142 = .data:0x802B86A0; // type:object size:0xD scope:local align:4 data:string +@5143 = .data:0x802B86B0; // type:object size:0xC scope:local align:4 data:string +@5144 = .data:0x802B86BC; // type:object size:0xA scope:local align:4 data:string +@5145 = .data:0x802B86C8; // type:object size:0xC scope:local align:4 data:string +@5146 = .data:0x802B86D4; // type:object size:0xC scope:local align:4 data:string +@5148 = .data:0x802B86E0; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802B86F0; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802B8754; // type:object size:0xC scope:local align:4 +@5392 = .data:0x802B8760; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802B8774; // type:object size:0x18 scope:weak align:4 +@5395 = .data:0x802B878C; // type:object size:0x23 scope:local align:4 data:string +@5396 = .data:0x802B87B0; // type:object size:0x3D scope:local align:4 data:string +@5397 = .data:0x802B87F0; // type:object size:0x29 scope:local align:4 data:string +@5394 = .data:0x802B881C; // type:object size:0x1C scope:local align:4 +@5404 = .data:0x802B8898; // type:object size:0x14 scope:local align:4 data:string +@5407 = .data:0x802B88B8; // type:object size:0xC scope:local align:4 data:string +@5408 = .data:0x802B88C4; // type:object size:0xD scope:local align:4 data:string +@5409 = .data:0x802B88D4; // type:object size:0x9 scope:local align:4 data:string +@5410 = .data:0x802B88E0; // type:object size:0x14 scope:local align:4 +@5406 = .data:0x802B88F4; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802B8918; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802B8A50; // type:label scope:local +@1306 = .data:0x802B8A50; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802B8A5C; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802B8A74; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802B8A8C; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802B8AA4; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802B8AB0; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802B8ABC; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802B8AC8; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802B8AD4; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802B8AE8; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802B8AF4; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802B8B00; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802B8B24; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802B8B34; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802B8B60; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802B8B94; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802B8C1C; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802B8C28; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802B8C34; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802B8C54; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802B8C60; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802B8C80; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802B8C8C; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802B8C9C; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802B8CA8; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B8CC0; // type:label scope:local +@1927 = .data:0x802B8CC0; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802B8CD0; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802B8CDC; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802B8CE8; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802B8CF4; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802B8D00; // type:object size:0xD scope:local align:4 data:string +@4643 = .data:0x802B8D10; // type:object size:0xE scope:local align:4 data:string +@4827 = .data:0x802B8D20; // type:object size:0x9 scope:local align:4 data:string +@4923 = .data:0x802B8D2C; // type:object size:0xC scope:local align:4 data:string +@5042 = .data:0x802B8D38; // type:object size:0x9 scope:local align:4 data:string +@5324 = .data:0x802B8D44; // type:object size:0x28 scope:local align:4 +@5369 = .data:0x802B8D6C; // type:object size:0x11 scope:local align:4 data:string +@5371 = .data:0x802B8D80; // type:object size:0xF scope:local align:4 data:string +@5372 = .data:0x802B8D90; // type:object size:0xD scope:local align:4 data:string +@5373 = .data:0x802B8DA0; // type:object size:0xC scope:local align:4 +@5374 = .data:0x802B8DAC; // type:object size:0xA scope:local align:4 data:string +@5375 = .data:0x802B8DB8; // type:object size:0x14 scope:local align:4 +@5370 = .data:0x802B8DCC; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802B8DE8; // type:object size:0x6C scope:global align:4 +@5381 = .data:0x802B8E54; // type:object size:0xE scope:local align:4 data:string +@5382 = .data:0x802B8E64; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802B8E80; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802B8EEC; // type:object size:0xF scope:local align:4 data:string +@5385 = .data:0x802B8EFC; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802B8F18; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802B8F84; // type:object size:0x11 scope:local align:4 data:string +@5388 = .data:0x802B8F98; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802B8FB4; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802B9020; // type:object size:0x12 scope:local align:4 data:string +@5391 = .data:0x802B9034; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802B9050; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802B90BC; // type:object size:0x10 scope:local align:4 data:string +@5394 = .data:0x802B90CC; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802B90E8; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802B9154; // type:object size:0x14 scope:local align:4 data:string +@5397 = .data:0x802B9168; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802B9184; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802B91F0; // type:object size:0xE scope:local align:4 data:string +@5400 = .data:0x802B9200; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802B921C; // type:object size:0x6C scope:global align:4 +@5401 = .data:0x802B9288; // type:object size:0x12 scope:local align:4 data:string +@5402 = .data:0x802B929C; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802B92B8; // type:object size:0x6C scope:global align:4 +@5403 = .data:0x802B9324; // type:object size:0xE scope:local align:4 data:string +@5404 = .data:0x802B9334; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802B9350; // type:object size:0x6C scope:global align:4 +@5405 = .data:0x802B93BC; // type:object size:0xE scope:local align:4 data:string +@5406 = .data:0x802B93CC; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802B93E8; // type:object size:0x6C scope:global align:4 +@5407 = .data:0x802B9454; // type:object size:0x10 scope:local align:4 data:string +@5408 = .data:0x802B9464; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802B9480; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802B94EC; // type:object size:0x16 scope:local align:4 data:string +@5411 = .data:0x802B9504; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802B9520; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802B958C; // type:object size:0xE scope:local align:4 data:string +@5414 = .data:0x802B959C; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802B95B8; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802B9624; // type:object size:0x10 scope:local align:4 data:string +@5417 = .data:0x802B9634; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802B9650; // type:object size:0x6C scope:global align:4 +@5418 = .data:0x802B96BC; // type:object size:0xE scope:local align:4 data:string +@5419 = .data:0x802B96CC; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802B96E8; // type:object size:0x6C scope:global align:4 +@5420 = .data:0x802B9754; // type:object size:0x15 scope:local align:4 data:string +@5421 = .data:0x802B976C; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802B9788; // type:object size:0x6C scope:global align:4 +@5422 = .data:0x802B97F4; // type:object size:0x10 scope:local align:4 data:string +@5423 = .data:0x802B9804; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802B9820; // type:object size:0x6C scope:global align:4 +@5424 = .data:0x802B988C; // type:object size:0x10 scope:local align:4 data:string +@5425 = .data:0x802B989C; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802B98B8; // type:object size:0x6C scope:global align:4 +@5426 = .data:0x802B9924; // type:object size:0xF scope:local align:4 data:string +@5427 = .data:0x802B9934; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802B9950; // type:object size:0x6C scope:global align:4 +@5428 = .data:0x802B99BC; // type:object size:0xE scope:local align:4 data:string +@5429 = .data:0x802B99CC; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802B99E8; // type:object size:0x6C scope:global align:4 +@5430 = .data:0x802B9A54; // type:object size:0x12 scope:local align:4 data:string +@5431 = .data:0x802B9A68; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802B9A84; // type:object size:0x6C scope:global align:4 +@5432 = .data:0x802B9AF0; // type:object size:0xF scope:local align:4 data:string +@5433 = .data:0x802B9B00; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802B9B1C; // type:object size:0x6C scope:global align:4 +@5434 = .data:0x802B9B88; // type:object size:0xF scope:local align:4 data:string +@5435 = .data:0x802B9B98; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802B9BB4; // type:object size:0x6C scope:global align:4 +@5436 = .data:0x802B9C20; // type:object size:0x10 scope:local align:4 data:string +@5437 = .data:0x802B9C30; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802B9C4C; // type:object size:0x6C scope:global align:4 +@5438 = .data:0x802B9CB8; // type:object size:0x13 scope:local align:4 data:string +@5439 = .data:0x802B9CCC; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802B9CE8; // type:object size:0x6C scope:global align:4 +@5440 = .data:0x802B9D54; // type:object size:0xF scope:local align:4 data:string +@5441 = .data:0x802B9D64; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802B9D80; // type:object size:0x6C scope:global align:4 +@5442 = .data:0x802B9DEC; // type:object size:0x10 scope:local align:4 data:string +@5443 = .data:0x802B9DFC; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802B9E18; // type:object size:0x6C scope:global align:4 +@5444 = .data:0x802B9E84; // type:object size:0x10 scope:local align:4 data:string +@5445 = .data:0x802B9E94; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802B9EB0; // type:object size:0x6C scope:global align:4 +@5446 = .data:0x802B9F1C; // type:object size:0xC scope:local align:4 data:string +@5456 = .data:0x802B9F54; // type:object size:0xF scope:local align:4 data:string +@5457 = .data:0x802B9F64; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802B9F80; // type:object size:0x6C scope:global align:4 +@5458 = .data:0x802B9FEC; // type:object size:0x10 scope:local align:4 data:string +@5459 = .data:0x802B9FFC; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802BA018; // type:object size:0x6C scope:global align:4 +@5460 = .data:0x802BA084; // type:object size:0x10 scope:local align:4 data:string +@5461 = .data:0x802BA094; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802BA0B0; // type:object size:0x6C scope:global align:4 +@5464 = .data:0x802BA11C; // type:object size:0x10 scope:local align:4 data:string +@5465 = .data:0x802BA12C; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802BA148; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802BA1B4; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802BA23C; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802BA2A8; // type:object size:0x11 scope:local align:4 data:string +@5469 = .data:0x802BA2BC; // type:object size:0x13 scope:local align:4 data:string +@5468 = .data:0x802BA2D0; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802BA2DC; // type:object size:0x18 scope:global align:4 +@5515 = .data:0x802BA2F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA320; // type:label scope:local +@1525 = .data:0x802BA320; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802BA330; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802BA33C; // type:object size:0xD scope:local align:4 data:string +@1567 = .data:0x802BA34C; // type:object size:0x13 scope:local align:4 data:string +@1568 = .data:0x802BA360; // type:object size:0x12 scope:local align:4 data:string +@1569 = .data:0x802BA374; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802BA380; // type:object size:0x13 scope:local align:4 data:string +@1571 = .data:0x802BA394; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802BA3A8; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802BA3BC; // type:object size:0x9 scope:local align:4 data:string +@2302 = .data:0x802BA3C8; // type:object size:0x14 scope:local align:4 data:string +@2303 = .data:0x802BA3DC; // type:object size:0xC scope:local align:4 data:string +@2304 = .data:0x802BA3E8; // type:object size:0xD scope:local align:4 data:string +@2305 = .data:0x802BA3F8; // type:object size:0x9 scope:local align:4 data:string +@2306 = .data:0x802BA404; // type:object size:0x14 scope:local align:4 +@2308 = .data:0x802BA418; // type:object size:0x24 scope:local align:4 +@2301 = .data:0x802BA43C; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802BA468; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BA5A0; // type:label scope:local +@634 = .data:0x802BA5A0; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802BA5B0; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802BA5BC; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802BA5C8; // type:object size:0xC scope:global align:4 +@637 = .data:0x802BA5D4; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802BA5E0; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802BA5EC; // type:object size:0xC scope:global align:4 +@639 = .data:0x802BA5F8; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802BA608; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802BA614; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802BA620; // type:label scope:local +@1616 = .data:0x802BA620; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802BA630; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802BA63C; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802BA648; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802BA654; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802BA660; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802BA670; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802BA684; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802BA6A0; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802BA6AC; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802BA6BC; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802BA6D0; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802BA6DC; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802BA6EC; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802BA6F8; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802BA710; // type:object size:0x8 scope:global align:4 +@2550 = .data:0x802BA718; // type:object size:0xD scope:local align:4 data:string +@3001 = .data:0x802BA728; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802BA738; // type:object size:0xB scope:local align:4 data:string +@3005 = .data:0x802BA744; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802BA750; // type:object size:0x14 scope:local align:4 +@3002 = .data:0x802BA764; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802BA780; // type:object size:0x38 scope:global align:4 +@3013 = .data:0x802BA7B8; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802BA7C8; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802BA7E4; // type:object size:0x38 scope:global align:4 +@3016 = .data:0x802BA81C; // type:object size:0x10 scope:local align:4 data:string +@3019 = .data:0x802BA82C; // type:object size:0x14 scope:local align:4 +@3017 = .data:0x802BA840; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802BA85C; // type:object size:0x38 scope:global align:4 +@3021 = .data:0x802BA894; // type:object size:0xE scope:local align:4 data:string +@3022 = .data:0x802BA8A4; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802BA8C0; // type:object size:0x38 scope:global align:4 +@3023 = .data:0x802BA8F8; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802BA904; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802BA920; // type:object size:0x38 scope:global align:4 +@3026 = .data:0x802BA958; // type:object size:0xE scope:local align:4 data:string +@3028 = .data:0x802BA968; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802BA974; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802BA988; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802BA9A4; // type:object size:0x38 scope:global align:4 +@3033 = .data:0x802BA9DC; // type:object size:0x9 scope:local align:4 data:string +@3034 = .data:0x802BA9E8; // type:object size:0xC scope:local align:4 +@3036 = .data:0x802BA9F4; // type:object size:0x14 scope:local align:4 +@3031 = .data:0x802BAA08; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802BAA24; // type:object size:0x30 scope:global align:4 +@3044 = .data:0x802BAA54; // type:object size:0xA scope:local align:4 data:string +@3045 = .data:0x802BAA60; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802BAA7C; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802BAAC8; // type:object size:0x38 scope:global align:4 +@3046 = .data:0x802BAB00; // type:object size:0xC scope:local align:4 data:string +@3048 = .data:0x802BAB0C; // type:object size:0x9 scope:local align:4 data:string +@3047 = .data:0x802BAB18; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802BAB38; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802BAB70; // type:object size:0x38 scope:global align:4 +@3049 = .data:0x802BABA8; // type:object size:0xA scope:local align:4 data:string +@3050 = .data:0x802BABB4; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802BABD4; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802BABF8; // type:label scope:local +@1070 = .data:0x802BABF8; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802BAC0C; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802BAC1C; // type:object size:0x9 scope:local align:4 data:string +@1538 = .data:0x802BAC28; // type:object size:0xA scope:local align:4 data:string +@1541 = .data:0x802BAC34; // type:object size:0x13 scope:local align:4 data:string +@1542 = .data:0x802BAC48; // type:object size:0xC scope:local align:4 +@1539 = .data:0x802BAC54; // type:object size:0x14 scope:local align:4 +@1555 = .data:0x802BAD34; // type:object size:0x16 scope:local align:4 data:string +@1558 = .data:0x802BAD4C; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802BAD58; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802BAD6C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802BAD98; // type:label scope:local +@737 = .data:0x802BAD98; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802BADA8; // type:object size:0xA scope:local align:4 data:string +@1985 = .data:0x802BADB4; // type:object size:0x10 scope:local align:4 data:string +@1988 = .data:0x802BADC4; // type:object size:0x9 scope:local align:4 data:string +@1989 = .data:0x802BADD0; // type:object size:0xC scope:local align:4 +@1991 = .data:0x802BADDC; // type:object size:0x14 scope:local align:4 +@1992 = .data:0x802BADF0; // type:object size:0xC scope:local align:4 data:string +@1993 = .data:0x802BADFC; // type:object size:0xA scope:local align:4 data:string +@1994 = .data:0x802BAE08; // type:object size:0x24 scope:local align:4 +@1986 = .data:0x802BAE2C; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802BAE58; // type:object size:0x78 scope:global align:4 +@2008 = .data:0x802BAED0; // type:object size:0xE scope:local align:4 data:string +@2009 = .data:0x802BAEE0; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802BAF0C; // type:object size:0x80 scope:global align:4 +@2017 = .data:0x802BAF8C; // type:object size:0xE scope:local align:4 data:string +@2018 = .data:0x802BAF9C; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802BAFC8; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802BB080; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802BB0F8; // type:label scope:local +@1700 = .data:0x802BB0F8; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802BB10C; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802BB118; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802BB128; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802BB134; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802BB140; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802BB170; // type:label scope:local +@388 = .data:0x802BB170; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802BB180; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802BB18C; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802BB19C; // type:object size:0x10 scope:weak align:4 +table = .data:0x802BB1B0; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802BB240; // type:label scope:local +@886 = .data:0x802BB240; // type:object size:0xE scope:local align:4 data:string +@1380 = .data:0x802BB250; // type:object size:0x14 scope:local align:4 data:string +@1381 = .data:0x802BB264; // type:object size:0xC scope:local align:4 data:string +@1382 = .data:0x802BB270; // type:object size:0xD scope:local align:4 data:string +@1383 = .data:0x802BB280; // type:object size:0x9 scope:local align:4 data:string +@1384 = .data:0x802BB28C; // type:object size:0x14 scope:local align:4 +@1385 = .data:0x802BB2A0; // type:object size:0xB scope:local align:4 data:string +@1386 = .data:0x802BB2AC; // type:object size:0x24 scope:local align:4 +@1387 = .data:0x802BB2D0; // type:object size:0xD scope:local align:4 data:string +@1388 = .data:0x802BB2E0; // type:object size:0x2C scope:local align:4 +@1379 = .data:0x802BB30C; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802BB340; // type:object size:0x15C scope:global align:4 +@1439 = .data:0x802BB49C; // type:object size:0x9 scope:local align:4 data:string +@1440 = .data:0x802BB4A8; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802BB4DC; // type:object size:0x15C scope:global align:4 +@1445 = .data:0x802BB638; // type:object size:0x9 scope:local align:4 data:string +@1446 = .data:0x802BB644; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802BB678; // type:object size:0x15C scope:global align:4 +@1451 = .data:0x802BB7D4; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802BB808; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BB968; // type:label scope:local +@908 = .data:0x802BB968; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802BB978; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802BB984; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802BB998; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802BB9A4; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802BB9B4; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802BB9C0; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802BB9D4; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802BB9E0; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802BBA04; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802BBA14; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802BBA40; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802BBA74; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802BBBD0; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802BBBDC; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802BBC10; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BBD70; // type:label scope:local +@868 = .data:0x802BBD70; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802BBD80; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802BBD90; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802BBDA4; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802BBDB0; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802BBDC0; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802BBDCC; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802BBDE0; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802BBDEC; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802BBE10; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BBE20; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802BBE4C; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802BBE80; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BBFE0; // type:label scope:local +@1538 = .data:0x802BBFE0; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802BBFEC; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802BBFF8; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802BC004; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802BC084; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802BC090; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802BC0A4; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802BC0B0; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802BC0C0; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802BC0CC; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802BC0E0; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802BC0EC; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802BC110; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802BC120; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802BC14C; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802BC180; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802BC2F4; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802BC330; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802BC4A8; // type:label scope:local +@909 = .data:0x802BC4A8; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802BC4B4; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802BC4CC; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802BC4D8; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802BC4E4; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802BC4F0; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802BC4FC; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802BC508; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802BC514; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802BC520; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802BC52C; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802BC570; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802BC580; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802BC58C; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802BC59C; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802BC5A8; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802BC5BC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802BC5D8; // type:label scope:local +@1257 = .data:0x802BC5D8; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802BC5E8; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802BC5F4; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802BC600; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802BC614; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802BC620; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802BC630; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802BC63C; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802BC650; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802BC65C; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802BC680; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802BC690; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802BC6BC; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802BC6F0; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802BC858; // type:label scope:local +@1532 = .data:0x802BC858; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802BC868; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802BC874; // type:object size:0xC scope:local align:4 data:4byte +@2107 = .data:0x802BC880; // type:object size:0x3D scope:local align:4 data:string +@2108 = .data:0x802BC8CC; // type:object size:0x9 scope:local align:4 data:string +@2110 = .data:0x802BC8D8; // type:object size:0x14 scope:local align:4 data:string +@2111 = .data:0x802BC8EC; // type:object size:0xC scope:local align:4 data:string +@2112 = .data:0x802BC8F8; // type:object size:0xD scope:local align:4 data:string +@2113 = .data:0x802BC908; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802BC914; // type:object size:0x14 scope:local align:4 +@2115 = .data:0x802BC928; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802BC934; // type:object size:0x24 scope:local align:4 +@2117 = .data:0x802BC958; // type:object size:0xD scope:local align:4 data:string +@2118 = .data:0x802BC968; // type:object size:0x2C scope:local align:4 +@2109 = .data:0x802BC994; // type:object size:0x34 scope:local align:4 +@2172 = .data:0x802BCB3C; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BCB48; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802BCB8C; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802BCD10; // type:label scope:local +@1376 = .data:0x802BCD10; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802BCD24; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802BCD34; // type:object size:0xD scope:local align:4 data:string +@1632 = .data:0x802BCD44; // type:object size:0x14 scope:local align:4 data:string +@1633 = .data:0x802BCD58; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802BCD64; // type:object size:0xD scope:local align:4 data:string +@1635 = .data:0x802BCD74; // type:object size:0x9 scope:local align:4 data:string +@1636 = .data:0x802BCD80; // type:object size:0x14 scope:local align:4 +@1637 = .data:0x802BCD94; // type:object size:0xB scope:local align:4 data:string +@1638 = .data:0x802BCDA0; // type:object size:0x24 scope:local align:4 +@1639 = .data:0x802BCDC4; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802BCDD4; // type:object size:0x2C scope:local align:4 +@1631 = .data:0x802BCE00; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802BCE34; // type:object size:0x15C scope:global align:4 +@1685 = .data:0x802BCF90; // type:object size:0x23 scope:local align:4 data:string +@1686 = .data:0x802BCFB4; // type:object size:0x3D scope:local align:4 data:string +@1687 = .data:0x802BCFF4; // type:object size:0x29 scope:local align:4 data:string +@1684 = .data:0x802BD020; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802BD0A0; // type:label scope:local +@870 = .data:0x802BD0A0; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802BD0AC; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802BD0B8; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802BD0CC; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802BD0D8; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802BD0E8; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802BD0F4; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802BD108; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802BD114; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802BD138; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802BD148; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802BD174; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802BD1A8; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802BD304; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802BD320; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD438; // type:label scope:local +@868 = .data:0x802BD438; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802BD448; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802BD454; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802BD460; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802BD46C; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802BD47C; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802BD488; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802BD49C; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802BD4AC; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802BD4C8; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802BD4EC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD600; // type:label scope:local +@1458 = .data:0x802BD600; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802BD610; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802BD61C; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802BD628; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802BD634; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802BD644; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802BD650; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802BD664; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802BD680; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BD798; // type:label scope:local +@1071 = .data:0x802BD798; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802BD7A4; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802BD7B0; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802BD7C0; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802BD7D0; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802BD82C; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802BD83C; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802BD848; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802BD854; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802BD860; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802BD874; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802BD890; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802BD8C8; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802BD8D4; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802BD8E0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802BD900; // type:label scope:local +@1775 = .data:0x802BD900; // type:object size:0xB scope:local align:4 data:string +@2864 = .data:0x802BD90C; // type:object size:0x9 scope:local align:4 data:string +@3038 = .data:0x802BD918; // type:object size:0xE scope:local align:4 data:string +@3242 = .data:0x802BD928; // type:object size:0x1B scope:local align:4 data:string +@3244 = .data:0x802BD944; // type:object size:0xA scope:local align:4 data:string +@3243 = .data:0x802BD950; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802BD95C; // type:object size:0xC scope:global align:4 +@3245 = .data:0x802BD968; // type:object size:0x16 scope:local align:4 data:string +@3246 = .data:0x802BD980; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802BD98C; // type:object size:0xC scope:global align:4 +@3247 = .data:0x802BD998; // type:object size:0x19 scope:local align:4 data:string +@3248 = .data:0x802BD9B4; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802BD9C0; // type:object size:0xC scope:global align:4 +@3249 = .data:0x802BD9CC; // type:object size:0xC scope:local align:4 data:string +@3251 = .data:0x802BD9D8; // type:object size:0x19 scope:local align:4 data:string +@3252 = .data:0x802BD9F4; // type:object size:0x9 scope:local align:4 data:string +@3253 = .data:0x802BDA00; // type:object size:0xC scope:local align:4 +@3250 = .data:0x802BDA0C; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802BDA20; // type:object size:0x18 scope:weak align:4 +@3254 = .data:0x802BDA38; // type:object size:0xD scope:local align:4 data:string +@3255 = .data:0x802BDA48; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802BDA54; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802BDA60; // type:object size:0x15 scope:local align:4 data:string +@3259 = .data:0x802BDA78; // type:object size:0xC scope:local align:4 +@3260 = .data:0x802BDA84; // type:object size:0xD scope:local align:4 data:string +@3261 = .data:0x802BDA94; // type:object size:0x14 scope:local align:4 +@3257 = .data:0x802BDAA8; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802BDAC4; // type:object size:0x14 scope:global align:4 +@3265 = .data:0x802BDAD8; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802BDAEC; // type:object size:0x18 scope:weak align:4 +@3266 = .data:0x802BDB04; // type:object size:0xB scope:local align:4 data:string +@3267 = .data:0x802BDB10; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802BDB1C; // type:object size:0xC scope:global align:4 +@3268 = .data:0x802BDB28; // type:object size:0x10 scope:local align:4 data:string +@3269 = .data:0x802BDB38; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802BDB44; // type:object size:0xC scope:global align:4 +@3270 = .data:0x802BDB50; // type:object size:0x10 scope:local align:4 data:string +@3271 = .data:0x802BDB60; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802BDB6C; // type:object size:0xC scope:global align:4 +@3273 = .data:0x802BDB78; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802BDB8C; // type:object size:0x18 scope:weak align:4 +@3274 = .data:0x802BDBA4; // type:object size:0xF scope:local align:4 data:string +@3275 = .data:0x802BDBB4; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802BDBC0; // type:object size:0xC scope:global align:4 +@3276 = .data:0x802BDBCC; // type:object size:0x11 scope:local align:4 data:string +@3277 = .data:0x802BDBE0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802BDBEC; // type:object size:0xC scope:global align:4 +@3278 = .data:0x802BDBF8; // type:object size:0x11 scope:local align:4 data:string +@3279 = .data:0x802BDC0C; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802BDC18; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802BDC24; // type:object size:0x11 scope:local align:4 data:string +@3281 = .data:0x802BDC38; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802BDC44; // type:object size:0xC scope:global align:4 +@3282 = .data:0x802BDC50; // type:object size:0x11 scope:local align:4 data:string +@3283 = .data:0x802BDC64; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802BDC70; // type:object size:0xC scope:global align:4 +@3284 = .data:0x802BDC7C; // type:object size:0x11 scope:local align:4 data:string +@3285 = .data:0x802BDC90; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802BDC9C; // type:object size:0xC scope:global align:4 +@3286 = .data:0x802BDCA8; // type:object size:0x11 scope:local align:4 data:string +@3287 = .data:0x802BDCBC; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802BDCC8; // type:object size:0xC scope:global align:4 +@3288 = .data:0x802BDCD4; // type:object size:0x14 scope:local align:4 data:string +@3289 = .data:0x802BDCE8; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802BDD04; // type:object size:0x14 scope:global align:4 +@3292 = .data:0x802BDD48; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802BDD5C; // type:object size:0x18 scope:weak align:4 +@3293 = .data:0x802BDD74; // type:object size:0x10 scope:local align:4 data:string +@3294 = .data:0x802BDD84; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802BDD90; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802BDD9C; // type:object size:0x10 scope:local align:4 data:string +@3296 = .data:0x802BDDAC; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802BDDB8; // type:object size:0xC scope:global align:4 +@3297 = .data:0x802BDDC4; // type:object size:0x11 scope:local align:4 data:string +@3298 = .data:0x802BDDD8; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802BDDE4; // type:object size:0xC scope:global align:4 +@3299 = .data:0x802BDDF0; // type:object size:0x11 scope:local align:4 data:string +@3300 = .data:0x802BDE04; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802BDE10; // type:object size:0xC scope:global align:4 +@3301 = .data:0x802BDE1C; // type:object size:0x11 scope:local align:4 data:string +@3302 = .data:0x802BDE30; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802BDE3C; // type:object size:0xC scope:global align:4 +@3303 = .data:0x802BDE48; // type:object size:0xC scope:local align:4 data:string +@3313 = .data:0x802BDE80; // type:object size:0xC scope:local align:4 data:string +@3315 = .data:0x802BDE8C; // type:object size:0xC scope:local align:4 data:string +@3314 = .data:0x802BDE98; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802BDEA4; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802BDEB0; // type:object size:0xC scope:weak align:4 +@3320 = .data:0x802BDEBC; // type:object size:0x11 scope:local align:4 data:string +@3321 = .data:0x802BDED0; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802BDEDC; // type:object size:0xC scope:global align:4 +@3322 = .data:0x802BDEE8; // type:object size:0x10 scope:local align:4 data:string +@3323 = .data:0x802BDEF8; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802BDF04; // type:object size:0xC scope:global align:4 +@3324 = .data:0x802BDF10; // type:object size:0x10 scope:local align:4 data:string +@3325 = .data:0x802BDF20; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802BDF2C; // type:object size:0xC scope:global align:4 +@3327 = .data:0x802BDF38; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802BDF4C; // type:object size:0x18 scope:weak align:4 +@3328 = .data:0x802BDF64; // type:object size:0x11 scope:local align:4 data:string +@3329 = .data:0x802BDF78; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802BDF84; // type:object size:0xC scope:global align:4 +@3330 = .data:0x802BDF90; // type:object size:0x17 scope:local align:4 data:string +@3331 = .data:0x802BDFA8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802BDFB4; // type:object size:0xC scope:global align:4 +@3332 = .data:0x802BDFC0; // type:object size:0x17 scope:local align:4 data:string +@3333 = .data:0x802BDFD8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802BDFE4; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802BDFF0; // type:object size:0x17 scope:local align:4 data:string +@3335 = .data:0x802BE008; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802BE014; // type:object size:0xC scope:global align:4 +@3336 = .data:0x802BE020; // type:object size:0x19 scope:local align:4 data:string +@3337 = .data:0x802BE03C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802BE048; // type:object size:0xC scope:global align:4 +@3338 = .data:0x802BE054; // type:object size:0x15 scope:local align:4 data:string +@3339 = .data:0x802BE06C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802BE078; // type:object size:0xC scope:global align:4 +@3340 = .data:0x802BE084; // type:object size:0x15 scope:local align:4 data:string +@3341 = .data:0x802BE09C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802BE0A8; // type:object size:0xC scope:global align:4 +@3342 = .data:0x802BE0B4; // type:object size:0x15 scope:local align:4 data:string +@3343 = .data:0x802BE0CC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802BE0D8; // type:object size:0xC scope:global align:4 +@3344 = .data:0x802BE0E4; // type:object size:0x15 scope:local align:4 data:string +@3345 = .data:0x802BE0FC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802BE108; // type:object size:0xC scope:global align:4 +@3346 = .data:0x802BE114; // type:object size:0x15 scope:local align:4 data:string +@3347 = .data:0x802BE12C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802BE138; // type:object size:0xC scope:global align:4 +@3348 = .data:0x802BE144; // type:object size:0x15 scope:local align:4 data:string +@3349 = .data:0x802BE15C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802BE168; // type:object size:0xC scope:global align:4 +@3350 = .data:0x802BE174; // type:object size:0x16 scope:local align:4 data:string +@3351 = .data:0x802BE18C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802BE198; // type:object size:0xC scope:global align:4 +@3352 = .data:0x802BE1A4; // type:object size:0x16 scope:local align:4 data:string +@3353 = .data:0x802BE1BC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802BE1C8; // type:object size:0xC scope:global align:4 +@3354 = .data:0x802BE1D4; // type:object size:0x1A scope:local align:4 data:string +@3355 = .data:0x802BE1F0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802BE1FC; // type:object size:0xC scope:global align:4 +@3356 = .data:0x802BE208; // type:object size:0x17 scope:local align:4 data:string +@3357 = .data:0x802BE220; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802BE22C; // type:object size:0xC scope:global align:4 +@3358 = .data:0x802BE238; // type:object size:0x19 scope:local align:4 data:string +@3359 = .data:0x802BE254; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802BE260; // type:object size:0xC scope:global align:4 +@3360 = .data:0x802BE26C; // type:object size:0x18 scope:local align:4 data:string +@3361 = .data:0x802BE284; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802BE290; // type:object size:0xC scope:global align:4 +@3362 = .data:0x802BE29C; // type:object size:0xB scope:local align:4 data:string +@3363 = .data:0x802BE2A8; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802BE2BC; // type:object size:0x18 scope:weak align:4 +@3364 = .data:0x802BE2D4; // type:object size:0x15 scope:local align:4 data:string +@3365 = .data:0x802BE2EC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802BE2F8; // type:object size:0xC scope:global align:4 +@3366 = .data:0x802BE304; // type:object size:0x15 scope:local align:4 data:string +@3367 = .data:0x802BE31C; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802BE328; // type:object size:0xC scope:global align:4 +@3368 = .data:0x802BE334; // type:object size:0x13 scope:local align:4 data:string +@3369 = .data:0x802BE348; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802BE354; // type:object size:0xC scope:global align:4 +@3370 = .data:0x802BE360; // type:object size:0x13 scope:local align:4 data:string +@3371 = .data:0x802BE374; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802BE380; // type:object size:0xC scope:global align:4 +@3372 = .data:0x802BE38C; // type:object size:0x15 scope:local align:4 data:string +@3373 = .data:0x802BE3A4; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802BE3B0; // type:object size:0xC scope:global align:4 +@3374 = .data:0x802BE3BC; // type:object size:0xF scope:local align:4 data:string +@3375 = .data:0x802BE3CC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802BE3D8; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802BE3E4; // type:object size:0xC scope:weak align:4 +@3376 = .data:0x802BE3F0; // type:object size:0x9 scope:local align:4 data:string +@3378 = .data:0x802BE3FC; // type:object size:0x15 scope:local align:4 data:string +@3377 = .data:0x802BE414; // type:object size:0xC scope:local align:4 +@3379 = .data:0x802BE490; // type:object size:0x9 scope:local align:4 data:string +@3380 = .data:0x802BE49C; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802BE4B0; // type:object size:0x18 scope:weak align:4 +@3418 = .data:0x802BE4C8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BE4F8; // type:label scope:local +@1259 = .data:0x802BE4F8; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802BE504; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802BE514; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802BE52C; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802BE544; // type:object size:0x58 scope:local align:4 +@1798 = .data:0x802BE59C; // type:object size:0x9 scope:local align:4 data:string +@1799 = .data:0x802BE5A8; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802BE5B4; // type:object size:0x18 scope:local align:4 data:string +@2063 = .data:0x802BE5CC; // type:object size:0x19 scope:local align:4 data:string +@2064 = .data:0x802BE5E8; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802BE604; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802BE620; // type:object size:0x18 scope:local align:4 data:string +@2503 = .data:0x802BE638; // type:object size:0x1E scope:local align:4 data:string +@2504 = .data:0x802BE658; // type:object size:0x9 scope:local align:4 data:string +@2505 = .data:0x802BE664; // type:object size:0xA scope:local align:4 data:string +@2506 = .data:0x802BE670; // type:object size:0x16 scope:local align:4 data:string +@2508 = .data:0x802BE688; // type:object size:0x18 scope:local align:4 data:string +@2510 = .data:0x802BE6A0; // type:object size:0x1E scope:local align:4 data:string +@2511 = .data:0x802BE6C0; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802BE6CC; // type:object size:0x16 scope:local align:4 data:string +@2513 = .data:0x802BE6E4; // type:object size:0xD scope:local align:4 data:string +@2514 = .data:0x802BE6F4; // type:object size:0x19 scope:local align:4 data:string +@2516 = .data:0x802BE710; // type:object size:0x9 scope:local align:4 data:string +@2517 = .data:0x802BE71C; // type:object size:0x19 scope:local align:4 data:string +@2518 = .data:0x802BE738; // type:object size:0xA scope:local align:4 data:string +@2519 = .data:0x802BE744; // type:object size:0xB scope:local align:4 data:string +@2520 = .data:0x802BE750; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802BE768; // type:object size:0x9 scope:local align:4 data:string +@2865 = .data:0x802BE774; // type:object size:0x5C scope:local align:4 +@3061 = .data:0x802BE7D0; // type:object size:0xC scope:local align:4 data:string +@3064 = .data:0x802BE7DC; // type:object size:0xC scope:local align:4 +@3066 = .data:0x802BE7E8; // type:object size:0x14 scope:local align:4 +@3067 = .data:0x802BE7FC; // type:object size:0xC scope:local align:4 data:string +@3068 = .data:0x802BE808; // type:object size:0xA scope:local align:4 data:string +@3069 = .data:0x802BE814; // type:object size:0x24 scope:local align:4 +@3070 = .data:0x802BE838; // type:object size:0xE scope:local align:4 data:string +@3071 = .data:0x802BE848; // type:object size:0x2C scope:local align:4 +@3062 = .data:0x802BE874; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802BE8A8; // type:object size:0x84 scope:global align:4 +@3088 = .data:0x802BE92C; // type:object size:0x11 scope:local align:4 data:string +@3090 = .data:0x802BE940; // type:object size:0xD scope:local align:4 data:string +@3089 = .data:0x802BE950; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802BE95C; // type:object size:0xC scope:weak align:4 +@3094 = .data:0x802BE968; // type:object size:0xE scope:local align:4 data:string +@3095 = .data:0x802BE978; // type:object size:0x2C scope:local align:4 +@3093 = .data:0x802BE9A4; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802BE9D8; // type:object size:0x84 scope:global align:4 +@3105 = .data:0x802BEA5C; // type:object size:0x10 scope:local align:4 data:string +@3107 = .data:0x802BEA6C; // type:object size:0xC scope:local align:4 data:string +@3106 = .data:0x802BEA78; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802BEA84; // type:object size:0x2C scope:global align:4 +@3115 = .data:0x802BEAB0; // type:object size:0xD scope:local align:4 data:string +@3117 = .data:0x802BEAC0; // type:object size:0x14 scope:local align:4 data:string +@3118 = .data:0x802BEAD4; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802BEAE0; // type:object size:0xD scope:local align:4 data:string +@3120 = .data:0x802BEAF0; // type:object size:0x9 scope:local align:4 data:string +@3121 = .data:0x802BEAFC; // type:object size:0x14 scope:local align:4 +@3122 = .data:0x802BEB10; // type:object size:0xB scope:local align:4 data:string +@3123 = .data:0x802BEB1C; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802BEB40; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802BEB6C; // type:object size:0x15C scope:global align:4 +@3174 = .data:0x802BECC8; // type:object size:0x9 scope:local align:4 data:string +@3175 = .data:0x802BECD4; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802BECE0; // type:object size:0xC scope:weak align:4 +@3177 = .data:0x802BECEC; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802BECF8; // type:object size:0xC scope:weak align:4 +@3178 = .data:0x802BED04; // type:object size:0x9 scope:local align:4 data:string +@3179 = .data:0x802BED10; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802BED1C; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802BED28; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802BED34; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802BED40; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802BED4C; // type:object size:0xD scope:local align:4 data:string +@3183 = .data:0x802BED5C; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802BED68; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802BED74; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802BED84; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802BED90; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802BED9C; // type:object size:0x11 scope:local align:4 data:string +@3187 = .data:0x802BEDB0; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802BEDC4; // type:object size:0x10 scope:weak align:4 +@3188 = .data:0x802BEDD4; // type:object size:0xD scope:local align:4 data:string +@3189 = .data:0x802BEDE4; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802BEDF0; // type:object size:0xC scope:weak align:4 +@3190 = .data:0x802BEDFC; // type:object size:0x11 scope:local align:4 data:string +@3191 = .data:0x802BEE10; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802BEE1C; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802BEE28; // type:object size:0xC scope:local align:4 data:string +@3194 = .data:0x802BEE34; // type:object size:0x9 scope:local align:4 data:string +@3193 = .data:0x802BEE40; // type:object size:0xC scope:local align:4 +@3195 = .data:0x802BEE60; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802BEE6C; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802BEE78; // type:object size:0xC scope:weak align:4 +@3197 = .data:0x802BEE84; // type:object size:0xD scope:local align:4 data:string +@3198 = .data:0x802BEE94; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802BEEA0; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802BEEB8; // type:object size:0xE scope:local align:4 data:string +@3201 = .data:0x802BEEC8; // type:object size:0x10 scope:local align:4 data:string +@3202 = .data:0x802BEED8; // type:object size:0x2C scope:local align:4 +@3200 = .data:0x802BEF04; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802BEF38; // type:object size:0x78 scope:weak align:4 +@3211 = .data:0x802BEFB0; // type:object size:0xD scope:local align:4 data:string +@3212 = .data:0x802BEFC0; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802BEFD4; // type:object size:0x10 scope:weak align:4 +@3213 = .data:0x802BF018; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802BF028; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802BF05C; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802BF1C0; // type:label scope:local +@868 = .data:0x802BF1C0; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802BF1D0; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802BF1DC; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802BF1F0; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802BF204; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802BF210; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802BF220; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802BF22C; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802BF240; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802BF24C; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802BF270; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802BF280; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802BF2AC; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802BF2B8; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802BF2EC; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802BF328; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802BF484; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802BF498; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802BF4D4; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802BF630; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802BF66C; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802BF7C8; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802BF7D4; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802BF810; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802BF96C; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802BFAC8; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802BFAD4; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802BFB08; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BFC68; // type:label scope:local +@882 = .data:0x802BFC68; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802BFC78; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802BFC84; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802BFC90; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802BFCA4; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802BFCB0; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802BFCC0; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802BFCCC; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802BFCE0; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802BFCEC; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802BFD10; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802BFD20; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802BFD4C; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802BFD80; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BFEE0; // type:label scope:local +@661 = .data:0x802BFEE0; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802BFEF8; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802BFF0C; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802BFF48; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802BFF5C; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802BFF68; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802BFF78; // type:object size:0xC scope:local align:4 +@753 = .data:0x802BFF84; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802BFF98; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802BFFB8; // type:label scope:local +@1242 = .data:0x802BFFB8; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802BFFC4; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802BFFD0; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802BFFE4; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802BFFFC; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802C000C; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802C0018; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802C0024; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802C0030; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802C0044; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802C0060; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C0098; // type:label scope:local +@2026 = .data:0x802C0098; // type:object size:0x9 scope:local align:4 data:string +@2288 = .data:0x802C00A4; // type:object size:0xD scope:local align:4 data:string +@2289 = .data:0x802C00B4; // type:object size:0xC scope:local align:4 data:string +@3017 = .data:0x802C00C0; // type:object size:0xB scope:local align:4 data:string +@3021 = .data:0x802C00CC; // type:object size:0xB scope:local align:4 data:string +@6083 = .data:0x802C00D8; // type:object size:0x2C scope:local align:4 +@6714 = .data:0x802C0104; // type:object size:0xD scope:local align:4 data:string +@6716 = .data:0x802C0114; // type:object size:0xC scope:local align:4 data:string +@6715 = .data:0x802C0120; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C012C; // type:object size:0x2C scope:global align:4 +@6724 = .data:0x802C0158; // type:object size:0xF scope:local align:4 data:string +@6725 = .data:0x802C0168; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C0174; // type:object size:0x2C scope:global align:4 +@6726 = .data:0x802C01CC; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C01E0; // type:object size:0x18 scope:weak align:4 +@6729 = .data:0x802C01F8; // type:object size:0x23 scope:local align:4 data:string +@6730 = .data:0x802C021C; // type:object size:0x3D scope:local align:4 data:string +@6731 = .data:0x802C025C; // type:object size:0x29 scope:local align:4 data:string +@6728 = .data:0x802C0288; // type:object size:0x1C scope:local align:4 +@6738 = .data:0x802C0304; // type:object size:0xB scope:local align:4 data:string +@6741 = .data:0x802C0310; // type:object size:0x9 scope:local align:4 data:string +@6742 = .data:0x802C031C; // type:object size:0xC scope:local align:4 +@6744 = .data:0x802C0328; // type:object size:0x14 scope:local align:4 +@6739 = .data:0x802C033C; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C0358; // type:object size:0x30 scope:weak align:4 +@6753 = .data:0x802C03A4; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C03B0; // type:object size:0x34 scope:weak align:4 +@6761 = .data:0x802C03E4; // type:object size:0x14 scope:local align:4 data:string +@6762 = .data:0x802C0404; // type:object size:0xA scope:local align:4 data:string +@6764 = .data:0x802C0410; // type:object size:0x9 scope:local align:4 data:string +@6763 = .data:0x802C041C; // type:object size:0xC scope:local align:4 +@6765 = .data:0x802C043C; // type:object size:0x9 scope:local align:4 data:string +@6767 = .data:0x802C0448; // type:object size:0xD scope:local align:4 data:string +@6766 = .data:0x802C0458; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C0464; // type:object size:0xC scope:weak align:4 +@6770 = .data:0x802C0470; // type:object size:0xC scope:local align:4 data:string +@6771 = .data:0x802C047C; // type:object size:0xC scope:local align:4 +@6775 = .data:0x802C04A8; // type:object size:0xC scope:local align:4 data:string +@6776 = .data:0x802C04B4; // type:object size:0xD scope:local align:4 data:string +@6777 = .data:0x802C04C4; // type:object size:0x9 scope:local align:4 data:string +@6778 = .data:0x802C04D0; // type:object size:0x14 scope:local align:4 +@6774 = .data:0x802C04E4; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C0510; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C0680; // type:label scope:local +@1929 = .data:0x802C0680; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C0690; // type:object size:0xA scope:local align:4 data:string +@5845 = .data:0x802C069C; // type:object size:0x13 scope:local align:4 data:string +@5847 = .data:0x802C06B0; // type:object size:0xF scope:local align:4 data:string +@5848 = .data:0x802C06C0; // type:object size:0xD scope:local align:4 data:string +@5849 = .data:0x802C06D0; // type:object size:0xC scope:local align:4 +@5850 = .data:0x802C06DC; // type:object size:0xA scope:local align:4 data:string +@5851 = .data:0x802C06E8; // type:object size:0x14 scope:local align:4 +@5846 = .data:0x802C06FC; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C0718; // type:object size:0x54 scope:global align:4 +@5853 = .data:0x802C076C; // type:object size:0x15 scope:local align:4 data:string +@5854 = .data:0x802C0784; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C07A0; // type:object size:0x54 scope:global align:4 +@5856 = .data:0x802C07F4; // type:object size:0x12 scope:local align:4 data:string +@5857 = .data:0x802C0808; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C0824; // type:object size:0x54 scope:global align:4 +@5859 = .data:0x802C0878; // type:object size:0x12 scope:local align:4 data:string +@5860 = .data:0x802C088C; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C08A8; // type:object size:0x54 scope:global align:4 +@5862 = .data:0x802C08FC; // type:object size:0xE scope:local align:4 data:string +@5863 = .data:0x802C090C; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C0928; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C097C; // type:object size:0x10 scope:local align:4 data:string +@5866 = .data:0x802C098C; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C09A8; // type:object size:0x54 scope:global align:4 +@5867 = .data:0x802C09FC; // type:object size:0xF scope:local align:4 data:string +@5868 = .data:0x802C0A0C; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C0A28; // type:object size:0x54 scope:global align:4 +@5869 = .data:0x802C0A7C; // type:object size:0xE scope:local align:4 data:string +@5870 = .data:0x802C0A8C; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C0AA8; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C0AFC; // type:object size:0x10 scope:local align:4 data:string +@5872 = .data:0x802C0B0C; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C0B28; // type:object size:0x54 scope:global align:4 +@5873 = .data:0x802C0B7C; // type:object size:0xF scope:local align:4 data:string +@5874 = .data:0x802C0B8C; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C0BA8; // type:object size:0x54 scope:global align:4 +@5875 = .data:0x802C0BFC; // type:object size:0xD scope:local align:4 data:string +@5876 = .data:0x802C0C0C; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C0C28; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C0C7C; // type:object size:0x11 scope:local align:4 data:string +@5878 = .data:0x802C0C90; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C0CAC; // type:object size:0x54 scope:global align:4 +@5880 = .data:0x802C0D00; // type:object size:0x14 scope:local align:4 data:string +@5881 = .data:0x802C0D14; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802C0D30; // type:object size:0x54 scope:global align:4 +@5882 = .data:0x802C0D84; // type:object size:0xE scope:local align:4 data:string +@5883 = .data:0x802C0D94; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802C0DB0; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C0E04; // type:object size:0x12 scope:local align:4 data:string +@5886 = .data:0x802C0E18; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802C0E34; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C0E88; // type:object size:0xE scope:local align:4 data:string +@5888 = .data:0x802C0E98; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802C0EB4; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C0F08; // type:object size:0xF scope:local align:4 data:string +@5890 = .data:0x802C0F18; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802C0F34; // type:object size:0x54 scope:global align:4 +@5891 = .data:0x802C0F88; // type:object size:0x13 scope:local align:4 data:string +@5892 = .data:0x802C0F9C; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802C0FB8; // type:object size:0x54 scope:global align:4 +@5893 = .data:0x802C100C; // type:object size:0x11 scope:local align:4 data:string +@5894 = .data:0x802C1020; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802C103C; // type:object size:0x54 scope:global align:4 +@5895 = .data:0x802C1090; // type:object size:0x10 scope:local align:4 data:string +@5896 = .data:0x802C10A0; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802C10BC; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802C1110; // type:object size:0x10 scope:local align:4 data:string +@5898 = .data:0x802C1120; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802C113C; // type:object size:0x54 scope:global align:4 +@5900 = .data:0x802C1190; // type:object size:0xF scope:local align:4 data:string +@5901 = .data:0x802C11A0; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802C11BC; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802C1210; // type:object size:0xE scope:local align:4 data:string +@5904 = .data:0x802C1220; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802C123C; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802C1290; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802C12A4; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802C12C0; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802C1314; // type:object size:0x12 scope:local align:4 data:string +@5908 = .data:0x802C1328; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802C1344; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802C1398; // type:object size:0xE scope:local align:4 data:string +@5910 = .data:0x802C13A8; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802C13C4; // type:object size:0x54 scope:global align:4 +@5911 = .data:0x802C1418; // type:object size:0xE scope:local align:4 data:string +@5912 = .data:0x802C1428; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802C1444; // type:object size:0x54 scope:global align:4 +@5913 = .data:0x802C1498; // type:object size:0x13 scope:local align:4 data:string +@5915 = .data:0x802C14AC; // type:object size:0x15 scope:local align:4 data:string +@5916 = .data:0x802C14C4; // type:object size:0x17 scope:local align:4 data:string +@5914 = .data:0x802C14DC; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802C1508; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802C157C; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802C1588; // type:object size:0xC scope:weak align:4 +@5919 = .data:0x802C1594; // type:object size:0xD scope:local align:4 data:string +@5920 = .data:0x802C15A4; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802C15C0; // type:object size:0x54 scope:global align:4 +@5922 = .data:0x802C1614; // type:object size:0xE scope:local align:4 data:string +@5923 = .data:0x802C1624; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802C1640; // type:object size:0x54 scope:global align:4 +@5924 = .data:0x802C1694; // type:object size:0xE scope:local align:4 data:string +@5925 = .data:0x802C16A4; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802C16C0; // type:object size:0x54 scope:global align:4 +@5927 = .data:0x802C1714; // type:object size:0xC scope:local align:4 data:string +@5937 = .data:0x802C174C; // type:object size:0xF scope:local align:4 data:string +@5938 = .data:0x802C175C; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802C1778; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802C17CC; // type:object size:0x11 scope:local align:4 data:string +@5940 = .data:0x802C17E0; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802C17FC; // type:object size:0x54 scope:global align:4 +@5942 = .data:0x802C1850; // type:object size:0x12 scope:local align:4 data:string +@5943 = .data:0x802C1864; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802C1880; // type:object size:0x54 scope:global align:4 +@5945 = .data:0x802C18D4; // type:object size:0x10 scope:local align:4 data:string +@5946 = .data:0x802C18E4; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802C1900; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802C1954; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802C19A8; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802C19F8; // type:object size:0x38 scope:weak align:4 +@5948 = .data:0x802C1A30; // type:object size:0x11 scope:local align:4 data:string +@5950 = .data:0x802C1A44; // type:object size:0x13 scope:local align:4 data:string +@5949 = .data:0x802C1A58; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802C1A64; // type:object size:0x18 scope:global align:4 +@5996 = .data:0x802C1A7C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C1AA8; // type:label scope:local +@1884 = .data:0x802C1AA8; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802C1ABC; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802C1AC8; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802C1AD8; // type:object size:0xC scope:local align:4 data:string +@2749 = .data:0x802C1AE4; // type:object size:0x2C scope:local align:4 +@2761 = .data:0x802C1B10; // type:object size:0x14 scope:local align:4 data:string +@2763 = .data:0x802C1B24; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802C1B34; // type:object size:0xD scope:local align:4 data:string +@2765 = .data:0x802C1B44; // type:object size:0xC scope:local align:4 +@2766 = .data:0x802C1B50; // type:object size:0xA scope:local align:4 data:string +@2767 = .data:0x802C1B5C; // type:object size:0x14 scope:local align:4 +@2762 = .data:0x802C1B70; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802C1B8C; // type:object size:0x54 scope:global align:4 +@2769 = .data:0x802C1BE0; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802C1C04; // type:object size:0x18 scope:weak align:4 +@2770 = .data:0x802C1CF8; // type:object size:0x1E scope:local align:4 data:string +@2772 = .data:0x802C1D18; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802C1D38; // type:object size:0x1C scope:local align:4 data:string +@2774 = .data:0x802C1D54; // type:object size:0xC scope:local align:4 +@2775 = .data:0x802C1D60; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802C1D80; // type:object size:0x14 scope:local align:4 +@2771 = .data:0x802C1D94; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802C1DB0; // type:object size:0x50 scope:global align:4 +@2777 = .data:0x802C1E00; // type:object size:0x1F scope:local align:4 data:string +@2778 = .data:0x802C1E20; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802C1E3C; // type:object size:0x50 scope:global align:4 +@2779 = .data:0x802C1E8C; // type:object size:0x22 scope:local align:4 data:string +@2780 = .data:0x802C1EB0; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802C1ECC; // type:object size:0x50 scope:global align:4 +@2781 = .data:0x802C1F1C; // type:object size:0x1F scope:local align:4 data:string +@2782 = .data:0x802C1F3C; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802C1F58; // type:object size:0x50 scope:global align:4 +@2783 = .data:0x802C1FA8; // type:object size:0x1D scope:local align:4 data:string +@2784 = .data:0x802C1FC8; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802C1FE4; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802C2034; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802C2084; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802C20D4; // type:object size:0x38 scope:weak align:4 +@2785 = .data:0x802C210C; // type:object size:0x26 scope:local align:4 data:string +@2786 = .data:0x802C2134; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802C2140; // type:object size:0x18 scope:global align:4 +@2844 = .data:0x802C2158; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C2188; // type:label scope:local +@2086 = .data:0x802C2188; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802C219C; // type:object size:0x10 scope:local align:4 data:string +@2632 = .data:0x802C21AC; // type:object size:0x4C scope:local align:4 +@3525 = .data:0x802C21F8; // type:object size:0x9 scope:local align:4 data:string +@3526 = .data:0x802C2204; // type:object size:0xA scope:local align:4 data:string +@3527 = .data:0x802C2210; // type:object size:0x9 scope:local align:4 data:string +@3529 = .data:0x802C221C; // type:object size:0xB scope:local align:4 data:string +@3531 = .data:0x802C2228; // type:object size:0xE scope:local align:4 data:string +@3532 = .data:0x802C2238; // type:object size:0x9 scope:local align:4 data:string +@3533 = .data:0x802C2244; // type:object size:0xB scope:local align:4 data:string +@3534 = .data:0x802C2250; // type:object size:0xD scope:local align:4 data:string +@3544 = .data:0x802C2260; // type:object size:0x11 scope:local align:4 data:string +@3799 = .data:0x802C2274; // type:object size:0x9 scope:local align:4 data:string +@3802 = .data:0x802C2280; // type:object size:0x13 scope:local align:4 +@3803 = .data:0x802C2294; // type:object size:0x17 scope:local align:4 +@3804 = .data:0x802C22AC; // type:object size:0x13 scope:local align:4 data:string +@3805 = .data:0x802C22C0; // type:object size:0xC scope:local align:4 data:string +@3806 = .data:0x802C22CC; // type:object size:0x9 scope:local align:4 data:string +@3808 = .data:0x802C22D8; // type:object size:0xC scope:local align:4 data:string +@3811 = .data:0x802C22E4; // type:object size:0xA scope:local align:4 data:string +@3813 = .data:0x802C22F0; // type:object size:0x16 scope:local align:4 +@3815 = .data:0x802C2308; // type:object size:0x13 scope:local align:4 +@3817 = .data:0x802C231C; // type:object size:0x14 scope:local align:4 +@3818 = .data:0x802C2330; // type:object size:0x15 scope:local align:4 +@3820 = .data:0x802C2348; // type:object size:0x14 scope:local align:4 +@3825 = .data:0x802C235C; // type:object size:0xA scope:local align:4 data:string +@4139 = .data:0x802C2368; // type:object size:0x2C scope:local align:4 data:string +@4142 = .data:0x802C2394; // type:object size:0xA scope:local align:4 data:string +@4143 = .data:0x802C23A0; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802C23AC; // type:object size:0xA scope:local align:4 data:string +@4145 = .data:0x802C23B8; // type:object size:0xA scope:local align:4 data:string +@4146 = .data:0x802C23C4; // type:object size:0xC scope:local align:4 data:string +@4147 = .data:0x802C23D0; // type:object size:0xA scope:local align:4 data:string +@4148 = .data:0x802C23DC; // type:object size:0xC scope:local align:4 data:string +@4149 = .data:0x802C23E8; // type:object size:0x9 scope:local align:4 data:string +triNames$4141 = .data:0x802C23F4; // type:object size:0x28 scope:local align:4 +@4371 = .data:0x802C241C; // type:object size:0x10 scope:local align:4 data:string +@4374 = .data:0x802C242C; // type:object size:0x9 scope:local align:4 data:string +@4375 = .data:0x802C2438; // type:object size:0xC scope:local align:4 +@4377 = .data:0x802C2444; // type:object size:0x14 scope:local align:4 +@4372 = .data:0x802C2458; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802C2474; // type:object size:0x30 scope:global align:4 +@4385 = .data:0x802C24C0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802C24F8; // type:label scope:local +@1158 = .data:0x802C24F8; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802C2508; // type:object size:0x9 scope:local align:4 data:string +@1894 = .data:0x802C2514; // type:object size:0xB scope:local align:4 data:string +@1896 = .data:0x802C2520; // type:object size:0x23 scope:local align:4 data:string +@1897 = .data:0x802C2544; // type:object size:0x3D scope:local align:4 data:string +@1898 = .data:0x802C2584; // type:object size:0x29 scope:local align:4 data:string +@1900 = .data:0x802C25B0; // type:object size:0x1C scope:local align:4 +@1895 = .data:0x802C25CC; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802C25F0; // type:object size:0x3C scope:global align:4 +@1903 = .data:0x802C262C; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802C263C; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802C2660; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802C269C; // type:object size:0x10 scope:local align:4 data:string +@1907 = .data:0x802C26AC; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802C26D0; // type:object size:0x3C scope:global align:4 +@1908 = .data:0x802C270C; // type:object size:0x11 scope:local align:4 data:string +@1909 = .data:0x802C2720; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802C2744; // type:object size:0x3C scope:weak align:4 +@1995 = .data:0x802C2780; // type:object size:0xE scope:local align:4 data:string +@1997 = .data:0x802C2790; // type:object size:0x10 scope:local align:4 data:string +@1998 = .data:0x802C27A0; // type:object size:0x24 scope:local align:4 +@1996 = .data:0x802C27C4; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802C27F0; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802C282C; // type:object size:0x3C scope:weak align:4 +@2101 = .data:0x802C2868; // type:object size:0x10 scope:local align:4 data:string +@2102 = .data:0x802C2878; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802C289C; // type:object size:0x3C scope:weak align:4 +@2108 = .data:0x802C28D8; // type:object size:0xB scope:local align:4 data:string +@2109 = .data:0x802C28E4; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802C2908; // type:object size:0x3C scope:weak align:4 +@2115 = .data:0x802C2944; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802C2954; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802C2978; // type:object size:0x3C scope:weak align:4 +@2125 = .data:0x802C29B4; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802C29D8; // type:object size:0x3C scope:weak align:4 +@2150 = .data:0x802C2A14; // type:object size:0x10 scope:local align:4 data:string +@2151 = .data:0x802C2A24; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802C2A48; // type:object size:0x3C scope:weak align:4 +@2157 = .data:0x802C2A84; // type:object size:0x10 scope:local align:4 data:string +@2158 = .data:0x802C2A94; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802C2AB8; // type:object size:0x3C scope:weak align:4 +@2164 = .data:0x802C2AF4; // type:object size:0x11 scope:local align:4 data:string +@2165 = .data:0x802C2B08; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802C2B2C; // type:object size:0x3C scope:weak align:4 +@2171 = .data:0x802C2B68; // type:object size:0x10 scope:local align:4 data:string +@2172 = .data:0x802C2B78; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802C2B9C; // type:object size:0x3C scope:weak align:4 +@2178 = .data:0x802C2BD8; // type:object size:0xC scope:local align:4 data:string +@2179 = .data:0x802C2BE4; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802C2C08; // type:object size:0x3C scope:weak align:4 +@2297 = .data:0x802C2C44; // type:object size:0xB scope:local align:4 data:string +@2298 = .data:0x802C2C50; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802C2C74; // type:object size:0x3C scope:weak align:4 +@2318 = .data:0x802C2CB0; // type:object size:0xC scope:local align:4 data:string +@2319 = .data:0x802C2CBC; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802C2CE0; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802C2D80; // type:label scope:local +@390 = .data:0x802C2D80; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802C2D90; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802C2D9C; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802C2DAC; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802C2DB8; // type:object size:0xC scope:local align:4 +@446 = .data:0x802C2DC4; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802C2DD8; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802C2DE4; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802C2E00; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802C2E24; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C2E70; // type:label scope:local +@1462 = .data:0x802C2E70; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802C2E7C; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802C2E88; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802C2E94; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802C2EA0; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802C2EB0; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802C2EBC; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802C2EC8; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802C2EDC; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802C2EF0; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802C2F00; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802C2F0C; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802C2F18; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802C2F2C; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802C2F38; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802C2F44; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802C2F68; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802C2F78; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802C2FA4; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802C2FD8; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802C3060; // type:label scope:local +@734 = .data:0x802C3060; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802C3070; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802C307C; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802C3090; // type:object size:0xC scope:local align:4 +@793 = .data:0x802C309C; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802C30A8; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802C30BC; // type:object size:0x13 scope:local align:4 +@1047 = .data:0x802C30D0; // type:object size:0x12 scope:local align:4 data:string +@1049 = .data:0x802C30E4; // type:object size:0xB scope:local align:4 data:string +@1051 = .data:0x802C30F0; // type:object size:0xC scope:local align:4 +@1052 = .data:0x802C30FC; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802C3108; // type:object size:0x14 scope:local align:4 +@1048 = .data:0x802C311C; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802C3138; // type:object size:0x38 scope:global align:4 +@1060 = .data:0x802C3170; // type:object size:0xC scope:local align:4 data:string +@1062 = .data:0x802C317C; // type:object size:0x9 scope:local align:4 data:string +@1061 = .data:0x802C3188; // type:object size:0xC scope:local align:4 +@1063 = .data:0x802C31A8; // type:object size:0xA scope:local align:4 data:string +@1064 = .data:0x802C31B4; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C31D8; // type:label scope:local +@657 = .data:0x802C31D8; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802C31E8; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802C31F4; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802C3208; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802C3220; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802C3234; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802C3248; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802C3258; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802C3264; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802C3270; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802C327C; // type:object size:0xC scope:local align:4 +@905 = .data:0x802C3288; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802C329C; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802C32AC; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802C32C8; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802C32D8; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802C32FC; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802C3308; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802C3334; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802C3368; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802C33B4; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802C33C0; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802C33F4; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802C349C; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802C34E8; // type:label scope:local +@661 = .data:0x802C34E8; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C3500; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802C3514; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802C3520; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802C352C; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802C3538; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802C3544; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802C3550; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C355C; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802C3568; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802C3574; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802C3580; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802C358C; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802C3598; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802C35A4; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802C35B0; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802C35BC; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802C35C8; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802C35D4; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802C35E0; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802C35EC; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802C3754; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802C3768; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802C3774; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802C3784; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802C3790; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802C37A4; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C37C0; // type:label scope:local +@853 = .data:0x802C37C0; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802C37D0; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802C37DC; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802C37E8; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802C37F8; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802C3808; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802C3818; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802C3824; // type:object size:0xC scope:local align:4 +@887 = .data:0x802C3830; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802C383C; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802C3850; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802C386C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C38A8; // type:label scope:local +@1114 = .data:0x802C38A8; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802C38B8; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802C38C4; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C38D0; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802C38DC; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802C38E8; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802C38F4; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802C3900; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802C390C; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802C393C; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802C3954; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802C3968; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802C3974; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802C3984; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802C3994; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802C39A4; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802C39B0; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802C39BC; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802C39C8; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802C39DC; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802C39F8; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802C3A30; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802C3A3C; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802C3A48; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802C3A5C; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802C3A68; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802C3A74; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802C3A98; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802C3AA8; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802C3AD4; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802C3B08; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802C3B84; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802C3B90; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802C3B9C; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802C3BBC; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802C3BD8; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802C3BEC; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802C3C00; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802C3C10; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802C3C20; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802C3C5C; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802C3C70; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802C3C7C; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802C3C88; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802C3C94; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802C3CA8; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802C3CB4; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802C3CC0; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802C3CD8; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802C3CE8; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802C3CFC; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802C3D18; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802C3D68; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802C3D84; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802C3D90; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802C3D9C; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802C3DB0; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802C3DC8; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802C3DDC; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802C3DE8; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802C3DF8; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802C3E04; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802C3E18; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802C3E24; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802C3E48; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802C3E74; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802C3FD0; // type:label scope:local +@661 = .data:0x802C3FD0; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802C3FE8; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802C3FFC; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802C4018; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802C402C; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C4038; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802C4048; // type:object size:0xC scope:local align:4 +@713 = .data:0x802C4054; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802C4068; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C4088; // type:label scope:local +@1206 = .data:0x802C4088; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802C4094; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802C40A0; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802C40AC; // type:object size:0x9 scope:local align:4 +@1288 = .data:0x802C40B8; // type:object size:0xE scope:local align:4 data:string +@1290 = .data:0x802C40C8; // type:object size:0xB scope:local align:4 data:string +@1292 = .data:0x802C40D4; // type:object size:0xC scope:local align:4 +@1293 = .data:0x802C40E0; // type:object size:0xA scope:local align:4 data:string +@1294 = .data:0x802C40EC; // type:object size:0x14 scope:local align:4 +@1289 = .data:0x802C4100; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802C411C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C4158; // type:label scope:local +@445 = .data:0x802C4158; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C416C; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802C417C; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802C4190; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802C419C; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802C41A8; // type:object size:0xC scope:global align:4 +@667 = .data:0x802C41B4; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802C41CC; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802C41E0; // type:object size:0xC scope:local align:4 +@671 = .data:0x802C41EC; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802C41FC; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802C4210; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802C422C; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802C423C; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802C424C; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802C425C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802C4268; // type:label scope:local +@445 = .data:0x802C4268; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C427C; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802C428C; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802C4298; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802C42A4; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802C42B4; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802C42C0; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802C42CC; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802C42DC; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802C42E8; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802C42F4; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802C4304; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802C4310; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802C431C; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802C4328; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802C4334; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802C4340; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802C434C; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802C4358; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802C4368; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802C4378; // type:label scope:local +@441 = .data:0x802C4378; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802C4388; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802C4394; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802C4B98; // type:label scope:local +@410 = .data:0x802C4B98; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802C4BA8; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802C4BB4; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802C4BC4; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802C4BD4; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802C4C14; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802C4C34; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802C4C44; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C4C88; // type:label scope:local +@657 = .data:0x802C4C88; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802C4C9C; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802C4CAC; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802C4CB8; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802C4CC4; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802C4CD0; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802C4CDC; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802C4CE8; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802C4CF4; // type:object size:0x18 scope:global align:4 +@864 = .data:0x802C4D0C; // type:object size:0xD scope:local align:4 data:string +@866 = .data:0x802C4D1C; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C4D28; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802C4D34; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C4D50; // type:label scope:local +@1106 = .data:0x802C4D50; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802C4D68; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802C4D7C; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802C4D8C; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802C4D9C; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802C4DD8; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802C4DEC; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802C4DF8; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802C4E08; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802C4E14; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802C4E28; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C4E48; // type:label scope:local +@1783 = .data:0x802C4E48; // type:object size:0x14 scope:local align:4 data:string +@1793 = .data:0x802C4E5C; // type:object size:0x10 scope:local align:4 data:string +@1931 = .data:0x802C4E6C; // type:object size:0xD scope:local align:4 data:string +@1932 = .data:0x802C4E7C; // type:object size:0xD scope:local align:4 data:string +@1933 = .data:0x802C4E8C; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802C4EA0; // type:object size:0x1A scope:local align:4 data:string +@1940 = .data:0x802C4EBC; // type:object size:0xD scope:local align:4 data:string +@2307 = .data:0x802C4ECC; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802C4EE0; // type:object size:0xC scope:local align:4 data:string +@2309 = .data:0x802C4EEC; // type:object size:0xD scope:local align:4 data:string +@2310 = .data:0x802C4EFC; // type:object size:0x11 scope:local align:4 data:string +@2323 = .data:0x802C4F10; // type:object size:0x12 scope:local align:4 data:string +@2324 = .data:0x802C4F24; // type:object size:0x10 scope:local align:4 data:string +@2327 = .data:0x802C4F34; // type:object size:0x9 scope:local align:4 data:string +@2328 = .data:0x802C4F40; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802C4F4C; // type:object size:0x14 scope:local align:4 +@2332 = .data:0x802C4F60; // type:object size:0x1C scope:local align:4 +@2325 = .data:0x802C4F7C; // type:object size:0x24 scope:local align:4 +__vt__15PaniTestSection = .data:0x802C4FA0; // type:object size:0x34 scope:global align:4 +@2341 = .data:0x802C4FD4; // type:object size:0x14 scope:local align:4 data:string +@2340 = .data:0x802C4FE8; // type:object size:0x24 scope:local align:4 +__vt__12PaniTestNode = .data:0x802C500C; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802C5078; // type:label scope:local +@410 = .data:0x802C5078; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802C508C; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802C509C; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802C50B0; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802C50C4; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802C50D4; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802C50EC; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802C50F8; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C510C; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802C5120; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802C5130; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802C5144; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802C5150; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C5164; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C5178; // type:label scope:local +@1481 = .data:0x802C5178; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802C5188; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802C5194; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802C51A4; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802C51D0; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802C51DC; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802C51E8; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802C51F4; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802C5208; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C5248; // type:label scope:local +@1122 = .data:0x802C5248; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802C5260; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802C5274; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802C5288; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802C5294; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802C52A0; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802C52B4; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802C52D0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C5320; // type:label scope:local +@717 = .data:0x802C5320; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C5338; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802C534C; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802C5364; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802C5370; // type:object size:0xC scope:local align:4 +@855 = .data:0x802C537C; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802C5390; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802C53CC; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802C53E4; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802C53F8; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802C540C; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802C5448; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802C5458; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802C546C; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802C5480; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802C549C; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802C54D8; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802C54EC; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802C5508; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802C5544; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802C555C; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802C556C; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802C5580; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802C559C; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C55D8; // type:label scope:local +@446 = .data:0x802C55D8; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802C55F4; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802C560C; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802C561C; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802C5630; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802C5640; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802C5650; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802C566C; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802C5688; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802C5698; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802C56AC; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802C56C0; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802C56D0; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802C56EC; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802C570C; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802C571C; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802C5730; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802C5740; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802C574C; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802C5768; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802C5784; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802C5794; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802C57A8; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802C57B8; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802C57C8; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802C57E4; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802C5800; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802C5810; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802C5828; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802C583C; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802C584C; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802C586C; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802C588C; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802C58A0; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802C58B4; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802C58C4; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802C58D4; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802C58F0; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802C590C; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802C591C; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802C5934; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802C594C; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802C5960; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802C5980; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802C59A4; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802C59B8; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802C59C8; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802C59DC; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802C59EC; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802C5A00; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802C5A18; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802C5A2C; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802C5A44; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802C5A60; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802C5A74; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802C5A88; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802C5AA0; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802C5AB4; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802C5AD0; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802C5AE8; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C5AF4; // type:object size:0xC scope:local align:4 +@867 = .data:0x802C5B00; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802C5B14; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802C5B30; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C5B80; // type:label scope:local +@698 = .data:0x802C5B80; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802C5B8C; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802C5BA0; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802C5BAC; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802C5BC0; // type:object size:0xC scope:local align:4 +@853 = .data:0x802C5BCC; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802C5BE0; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802C5BF0; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802C5C00; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802C5C18; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802C5C24; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802C5C34; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802C5C48; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802C5C58; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802C5C64; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802C5C74; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802C5C84; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802C5C9C; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802C5CA8; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802C5CB8; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802C5CD0; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802C5CDC; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802C5CEC; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802C5CFC; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802C5D0C; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802C5D18; // type:object size:0xC scope:local align:4 +@922 = .data:0x802C5D24; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802C5D38; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802C5D74; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802C5D88; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802C5D9C; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802C5DD8; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802C5E14; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802C5E24; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C5E38; // type:label scope:local +@698 = .data:0x802C5E38; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802C5E4C; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802C5E5C; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802C5E78; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802C5E88; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802C5EA0; // type:object size:0xC scope:local align:4 +@762 = .data:0x802C5EAC; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802C5EC0; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802C5ED4; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802C5EEC; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802C5F00; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802C5F14; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802C5F28; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802C5F34; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802C5F48; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802C5F60; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802C5F6C; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802C5F80; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C5F98; // type:label scope:local +@717 = .data:0x802C5F98; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C5FB0; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802C5FC4; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802C5FD8; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802C5FE4; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802C5FF0; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802C6004; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802C6040; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802C6058; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802C6068; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802C607C; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802C60B8; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802C60D0; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802C60E4; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802C613C; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802C6154; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802C6168; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802C617C; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802C6198; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802C61D4; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802C61EC; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802C6200; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802C623C; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802C6254; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802C6268; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802C62A4; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802C62C0; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802C62DC; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802C6318; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802C632C; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802C6340; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802C637C; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802C6398; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802C63AC; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802C63E8; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802C63FC; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802C6408; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802C6434; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802C6448; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802C6460; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802C6474; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802C6490; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802C64CC; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802C6508; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802C6518; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802C652C; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C6568; // type:label scope:local +@1231 = .data:0x802C6568; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802C6574; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802C6584; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802C6590; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802C65B8; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802C65C4; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802C65DC; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802C65EC; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802C65F8; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802C6604; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802C6620; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C6640; // type:label scope:local +@1686 = .data:0x802C6640; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802C6658; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802C666C; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802C6684; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802C6690; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802C66A0; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802C66AC; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802C66C0; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802C66DC; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802C66F0; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802C6704; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802C6720; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802C6738; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802C6744; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802C6760; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802C6770; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802C677C; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802C6798; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802C67AC; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802C67B8; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802C67D4; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802C680C; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802C6820; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802C682C; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802C683C; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802C6848; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802C685C; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802C6868; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802C687C; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802C6890; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802C689C; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802C68BC; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802C68C8; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802C68E4; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802C68FC; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802C6908; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802C6924; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802C693C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802C6948; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802C6964; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802C697C; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802C6998; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802C69A4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C69C0; // type:label scope:local +@1211 = .data:0x802C69C0; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802C69D4; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802C69E4; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802C6A00; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802C6A0C; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802C6A18; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802C6A34; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802C6A54; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802C6A60; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802C6A7C; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802C6A90; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802C6A9C; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802C6AB8; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802C6ACC; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802C6AD8; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802C6AF4; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802C6B08; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802C6B14; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802C6B30; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802C6B48; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802C6B54; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C6B70; // type:label scope:local +@1730 = .data:0x802C6B70; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802C6B80; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802C6B8C; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802C6B98; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802C6BA8; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802C6BB8; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802C6BC8; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802C6BE4; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802C6BF0; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802C6C04; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802C6C10; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802C6C28; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802C6C3C; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802C6C58; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802C6C78; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802C6C90; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802C6CA4; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802C6CB0; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802C6CC4; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802C6CE0; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802C6CF4; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802C6D00; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802C6D10; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802C6D1C; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802C6D3C; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802C6D4C; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802C6D60; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802C6D84; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802C6D98; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802C6DA4; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802C6DC0; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802C6DD0; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802C6DDC; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802C6DF8; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802C6E08; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802C6E14; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802C6E4C; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802C6E60; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802C6E70; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802C6E7C; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802C6E88; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802C6E9C; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802C6EC4; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802C6EDC; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802C6EE8; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802C6EF4; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802C6F08; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802C6F18; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802C6F34; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802C6F58; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802C6F88; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802C6FA4; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802C6FC8; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802C6FF8; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802C700C; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802C7030; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C7060; // type:label scope:local +@1729 = .data:0x802C7060; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802C7070; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802C707C; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802C7088; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802C7098; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802C70A8; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802C70C4; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802C70D8; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802C70F8; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802C7114; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802C7120; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802C7134; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802C7148; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802C715C; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802C7170; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802C7180; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802C718C; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802C7198; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802C71AC; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802C71D4; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802C71E8; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802C71F4; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802C7200; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802C7214; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802C7224; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802C7240; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802C7264; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802C7294; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802C72B0; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802C72BC; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802C72D0; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802C72DC; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802C72F4; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802C7308; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802C7324; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802C7344; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802C735C; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802C7368; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802C7384; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802C739C; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802C73A8; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802C73C4; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802C73E0; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802C73EC; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802C7408; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802C7434; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802C7440; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802C745C; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802C7484; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802C7490; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802C74AC; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802C74C8; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802C74D4; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802C74F0; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802C7510; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802C751C; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802C7538; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802C7558; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802C7568; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802C7574; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802C7590; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802C75A4; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802C75C0; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802C75E0; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802C7618; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802C7638; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802C7644; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802C7660; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802C7674; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802C7680; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802C769C; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802C76BC; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802C76C8; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802C76E4; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802C7700; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802C770C; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802C7728; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802C7744; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802C7750; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802C776C; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802C7784; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802C7790; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802C77AC; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802C77C4; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802C77D0; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802C77EC; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802C7808; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802C7814; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802C7830; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802C7854; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802C7860; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802C787C; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802C7898; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802C78A4; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802C78C0; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802C78EC; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802C78FC; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802C7908; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802C791C; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802C7938; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802C7960; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802C796C; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802C7988; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802C799C; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802C79A8; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802C79B8; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802C79C4; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802C79E4; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802C79F8; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802C7A30; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802C7A4C; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802C7A58; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802C7A74; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802C7A94; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802C7AA0; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802C7ABC; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802C7AD8; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802C7AE4; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802C7B00; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802C7B20; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802C7B34; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802C7B40; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802C7B54; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802C7B68; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802C7B90; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802C7BA4; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802C7BB0; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802C7BE8; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802C7BFC; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802C7C20; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C7C50; // type:label scope:local +@1111 = .data:0x802C7C50; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802C7C68; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802C7C7C; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802C7C98; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802C7CA4; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802C7CC0; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802C7CCC; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802C7CE0; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802C7CFC; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802C7D14; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802C7D28; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802C7D44; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802C7D5C; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802C7D70; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802C7D8C; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802C7DA8; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802C7DC0; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802C7DCC; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802C7DE8; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802C7E04; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802C7E10; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802C7E2C; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802C7E3C; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802C7E48; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C7E68; // type:label scope:local +@1716 = .data:0x802C7E68; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802C7E80; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802C7E94; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802C7EAC; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802C7EB8; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802C7ECC; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802C7ED8; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802C7EEC; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802C7F28; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802C7F4C; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802C7F58; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802C7F74; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802C7F98; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802C7FA4; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802C7FC0; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802C7FD0; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802C7FDC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C7FF8; // type:label scope:local +@1728 = .data:0x802C7FF8; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802C8008; // type:object size:0xA scope:local align:4 data:string +@2002 = .data:0x802C8014; // type:object size:0xD scope:local align:4 data:string +@2151 = .data:0x802C8024; // type:object size:0x18 scope:local align:4 data:string +@2153 = .data:0x802C803C; // type:object size:0xA scope:local align:4 data:string +@2152 = .data:0x802C8048; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802C8054; // type:object size:0x1C scope:global align:4 +@2160 = .data:0x802C8070; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x802C8084; // type:object size:0xD scope:local align:4 data:string +@2163 = .data:0x802C8094; // type:object size:0xC scope:local align:4 data:string +@2164 = .data:0x802C80A0; // type:object size:0xC scope:local align:4 +@2161 = .data:0x802C80AC; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802C80C0; // type:object size:0x28 scope:global align:4 +@2165 = .data:0x802C80E8; // type:object size:0x14 scope:local align:4 data:string +@2168 = .data:0x802C80FC; // type:object size:0x9 scope:local align:4 data:string +@2169 = .data:0x802C8108; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802C8114; // type:object size:0x14 scope:local align:4 +@2172 = .data:0x802C8128; // type:object size:0xF scope:local align:4 data:string +@2173 = .data:0x802C8138; // type:object size:0x1C scope:local align:4 +@2166 = .data:0x802C8154; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802C8178; // type:object size:0x30 scope:weak align:4 +@2180 = .data:0x802C81A8; // type:object size:0x17 scope:local align:4 data:string +@2181 = .data:0x802C81C0; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802C81CC; // type:object size:0x1C scope:global align:4 +@2182 = .data:0x802C81E8; // type:object size:0x1A scope:local align:4 data:string +@2183 = .data:0x802C8204; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802C8210; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802C822C; // type:object size:0x12 scope:local align:4 data:string +@2186 = .data:0x802C8240; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802C8254; // type:object size:0x28 scope:global align:4 +@2188 = .data:0x802C8298; // type:object size:0x14 scope:local align:4 data:string +@2189 = .data:0x802C82AC; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802C82D0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C8300; // type:label scope:local +@1669 = .data:0x802C8300; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802C8318; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802C832C; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802C8348; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802C8354; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802C8360; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802C837C; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802C8398; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802C83A4; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802C83C0; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802C83D4; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802C83E0; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802C83F0; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802C83FC; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802C841C; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802C8438; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802C8444; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802C8478; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802C8498; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802C84A4; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802C84C0; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802C84DC; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802C84E8; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802C8504; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802C8520; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802C852C; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802C8548; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802C855C; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802C8568; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802C8584; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802C859C; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802C85A8; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802C85C4; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802C85DC; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802C85E8; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802C8604; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802C861C; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802C8628; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C8648; // type:label scope:local +@1793 = .data:0x802C8648; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802C8658; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802C8664; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802C8680; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802C8694; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802C86A8; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802C86BC; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802C86CC; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802C86E0; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802C86F8; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802C870C; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802C871C; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802C872C; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802C8740; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802C875C; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802C8778; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802C8784; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802C8798; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802C87A4; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802C87BC; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802C87D0; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802C87EC; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802C880C; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802C8830; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802C883C; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802C8858; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802C886C; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802C8878; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802C8888; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802C8894; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802C88CC; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802C8904; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802C8928; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802C8934; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802C8950; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802C8970; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802C897C; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802C8998; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802C89B4; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802C89C0; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802C89DC; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802C89F0; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802C8A00; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802C8A0C; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802C8A18; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802C8A2C; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802C8A54; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802C8A64; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802C8A70; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802C8A8C; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802C8A9C; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802C8AE0; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802C8AF4; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802C8B00; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802C8B0C; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802C8B20; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802C8B30; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802C8B4C; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802C8B70; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C8BA0; // type:label scope:local +@1211 = .data:0x802C8BA0; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802C8BB8; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802C8BCC; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802C8BE4; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802C8BF0; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802C8BFC; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802C8C18; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802C8C30; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802C8C3C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C8C58; // type:label scope:local +@1796 = .data:0x802C8C58; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802C8C68; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802C8C74; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802C8C84; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802C8C94; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802C8CAC; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802C8CC8; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802C8CD4; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802C8CE4; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802C8D00; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802C8D1C; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802C8D30; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802C8D50; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802C8D64; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802C8D84; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802C8D90; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802C8DA8; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802C8DC4; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802C8DD0; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802C8DDC; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802C8DF8; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802C8E10; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802C8E1C; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802C8E38; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802C8E54; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802C8E60; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802C8E7C; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802C8E94; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802C8EA0; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802C8EBC; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802C8ED4; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802C8EE0; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802C8EFC; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802C8F14; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802C8F20; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802C8F3C; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802C8F58; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802C8F68; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802C8F74; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802C8F88; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802C8FA4; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802C8FC0; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802C8FD4; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802C8FF0; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802C9004; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802C9014; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802C9020; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802C902C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802C9040; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802C9068; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802C9080; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802C908C; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802C9098; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802C90AC; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802C90BC; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802C90D8; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802C90FC; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802C912C; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802C914C; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802C9158; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802C9174; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802C9190; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802C919C; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802C91B8; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802C91CC; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802C91E0; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802C9224; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802C923C; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802C9260; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C9290; // type:label scope:local +@1111 = .data:0x802C9290; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802C92A8; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802C92BC; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802C92E0; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802C92EC; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802C92F8; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802C9314; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802C932C; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802C9338; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802C9354; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802C9370; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802C937C; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802C9398; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802C93B0; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802C93BC; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802C93D8; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802C93F4; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802C9400; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802C941C; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802C9434; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802C9444; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802C9450; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802C9464; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802C9480; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802C9494; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802C94A0; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802C94BC; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802C94D4; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802C94E0; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802C94FC; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802C9514; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802C9528; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802C9544; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802C9560; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802C9574; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802C9594; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C95B0; // type:label scope:local +@1669 = .data:0x802C95B0; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802C95C4; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802C95D4; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802C95F8; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802C9604; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802C9610; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802C962C; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802C9640; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802C964C; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802C9668; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802C968C; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802C9698; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802C96B4; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802C96CC; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802C96DC; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802C96E8; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802C9704; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802C9718; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802C9734; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802C9754; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802C977C; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802C9798; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802C97B8; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802C97CC; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802C97D8; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802C97F4; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802C9818; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802C9834; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802C9854; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802C9870; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802C987C; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802C9898; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802C98B0; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802C98CC; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802C98EC; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802C9904; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802C9920; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802C9940; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802C9950; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802C995C; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802C9980; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802C9994; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802C99B0; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802C99D0; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802C99E4; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802C99F0; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802C9A0C; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802C9A20; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802C9A3C; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802C9A5C; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802C9A70; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802C9A8C; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802C9AAC; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802C9ACC; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802C9AE8; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802C9B08; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802C9B1C; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802C9B28; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802C9B44; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802C9B60; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802C9B6C; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802C9B88; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802C9BA0; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802C9BAC; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802C9BC8; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802C9BE0; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802C9BEC; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802C9C08; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802C9C24; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802C9C30; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802C9C4C; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802C9C60; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802C9C6C; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802C9C88; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802C9C9C; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802C9CA8; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802C9CC4; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802C9CDC; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802C9CE8; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802C9D04; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802C9D20; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802C9D2C; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802C9D48; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802C9D64; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802C9D70; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802C9D8C; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802C9DB0; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802C9DBC; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802C9DD8; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802C9DF8; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802C9E04; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802C9E20; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802C9E38; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802C9E44; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802C9E60; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802C9E78; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802C9E84; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802C9EA0; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802C9EB4; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802C9EC0; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802C9EDC; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802C9EF8; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802C9F04; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C9F20; // type:label scope:local +@1736 = .data:0x802C9F20; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802C9F30; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802C9F3C; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802C9F50; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802C9F64; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802C9F7C; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802C9F98; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802C9FB0; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802C9FCC; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802C9FE4; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802CA000; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802CA018; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802CA034; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802CA04C; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802CA068; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802CA078; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802CA088; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802CA0AC; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802CA0B8; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802CA0C4; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802CA0E0; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802CA104; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802CA110; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802CA12C; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802CA148; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802CA154; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802CA170; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802CA188; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802CA194; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802CA1B0; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802CA1C8; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802CA1D4; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802CA1F0; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802CA20C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802CA218; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802CA234; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802CA254; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802CA260; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802CA27C; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802CA2A0; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802CA2AC; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802CA2C8; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802CA2E8; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802CA2F4; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802CA310; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802CA32C; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802CA338; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802CA354; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802CA370; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802CA37C; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802CA398; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802CA3B8; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802CA3C4; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802CA3E0; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802CA418; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802CA42C; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802CA438; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802CA448; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802CA454; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802CA474; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802CA488; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802CA4A8; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802CA4C0; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802CA4CC; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802CA4E8; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802CA504; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802CA510; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802CA52C; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802CA548; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802CA554; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802CA570; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802CA588; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802CA594; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802CA5B0; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802CA5C8; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802CA5D4; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802CA5F0; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802CA610; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802CA61C; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802CA638; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802CA654; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802CA660; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802CA67C; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802CA694; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802CA6A0; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802CA6BC; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802CA6D8; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802CA6E4; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802CA700; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802CA720; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802CA730; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802CA73C; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802CA758; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802CA76C; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802CA788; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802CA7A8; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802CA7C8; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802CA7DC; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802CA800; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802CA820; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802CA834; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802CA840; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802CA854; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802CA864; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802CA870; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802CA87C; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802CA890; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802CA8B8; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802CA8C8; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802CA8F0; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802CA900; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802CA944; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802CA958; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802CA964; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802CA970; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802CA984; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802CA994; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802CA9B0; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802CA9D4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CAA08; // type:label scope:local +@1794 = .data:0x802CAA08; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802CAA18; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802CAA24; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802CAA40; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802CAA50; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802CAA64; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802CAA78; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802CAA94; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802CAAA8; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802CAAC4; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802CAAD8; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802CAAEC; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802CAB04; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802CAB1C; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802CAB3C; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802CAB5C; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802CAB78; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802CAB84; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802CAB98; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802CABA4; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802CABBC; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802CABD0; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802CABEC; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802CAC0C; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802CAC2C; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802CAC38; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802CAC54; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802CAC70; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802CAC7C; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802CAC98; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802CACB4; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802CACC0; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CACDC; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802CACF0; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802CACFC; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802CAD0C; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802CAD18; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802CAD38; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802CAD70; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802CAD8C; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802CAD98; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802CADB4; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802CADD0; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802CADDC; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802CADF8; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802CAE14; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802CAE20; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802CAE3C; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802CAE54; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802CAE60; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802CAE7C; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802CAE98; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802CAEA4; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802CAEC0; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802CAED4; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802CAF0C; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802CAF24; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802CAF30; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802CAF4C; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802CAF70; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802CAF7C; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802CAF98; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802CAFAC; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802CAFBC; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802CAFC8; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802CAFD4; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802CAFE8; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802CB010; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802CB020; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802CB064; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802CB07C; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802CB088; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802CB094; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802CB0A8; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802CB0B8; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802CB0D4; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802CB0F8; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802CB128; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802CB140; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802CB164; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB198; // type:label scope:local +@1765 = .data:0x802CB198; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802CB1A4; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802CB1BC; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802CB1E0; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802CB1F0; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802CB20C; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802CB218; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802CB224; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802CB240; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802CB25C; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802CB268; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802CB284; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802CB29C; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802CB2A8; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802CB2C4; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802CB2E0; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802CB2EC; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802CB308; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802CB31C; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802CB328; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802CB344; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802CB35C; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802CB368; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802CB384; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802CB39C; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802CB3AC; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802CB3B8; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802CB3CC; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802CB3E0; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802CB3FC; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802CB418; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802CB42C; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802CB43C; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802CB450; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802CB46C; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802CB488; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802CB49C; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802CB4B0; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802CB4CC; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802CB4E0; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802CB4EC; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802CB4FC; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802CB508; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802CB528; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802CB53C; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802CB574; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802CB584; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802CB594; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802CB5A0; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802CB5AC; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802CB5C0; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802CB604; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802CB618; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802CB624; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802CB630; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802CB644; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802CB654; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802CB670; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802CB694; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB6C8; // type:label scope:local +@1680 = .data:0x802CB6C8; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802CB6E0; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802CB6F4; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802CB708; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802CB714; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802CB720; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802CB73C; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802CB74C; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802CB758; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802CB774; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802CB788; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802CB794; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802CB7B0; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802CB7C8; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802CB7D4; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802CB7F0; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802CB804; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802CB810; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802CB82C; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802CB840; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802CB84C; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802CB868; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802CB87C; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802CB888; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802CB898; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802CB8A4; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802CB8DC; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802CB8FC; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802CB908; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802CB924; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802CB944; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802CB950; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802CB96C; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802CB980; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802CB990; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802CB99C; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802CB9B0; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802CB9CC; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802CB9F8; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802CBA04; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802CBA20; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802CBA3C; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802CBA48; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802CBA64; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802CBA74; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802CBA80; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802CBA9C; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802CBAB4; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802CBAC0; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802CBADC; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802CBAF4; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802CBB00; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CBB1C; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802CBB38; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802CBB44; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CBB60; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802CBB70; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802CBB84; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802CBBA0; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802CBBBC; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802CBBC8; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802CBBE4; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802CBBF8; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802CBC04; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802CBC20; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802CBC34; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802CBC40; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802CBC5C; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802CBC6C; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802CBC78; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802CBC94; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802CBCA8; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802CBCB4; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802CBCD0; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802CBCE4; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802CBCF0; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802CBD0C; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802CBD1C; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802CBD28; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CBD48; // type:label scope:local +@1727 = .data:0x802CBD48; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802CBD58; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802CBD64; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802CBD74; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802CBD88; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802CBDA0; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802CBDC4; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802CBDE4; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802CBDF8; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802CBE1C; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802CBE28; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802CBE3C; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802CBE48; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802CBE60; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802CBE74; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802CBE90; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802CBEB0; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802CBECC; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802CBEE8; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802CBF08; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802CBF20; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802CBF2C; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802CBF48; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802CBF60; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802CBF6C; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802CBF88; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802CBFA8; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802CBFB4; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802CBFD0; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802CBFE4; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802CBFF0; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802CC000; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802CC00C; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802CC02C; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802CC064; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802CC080; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802CC090; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802CC09C; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802CC0B0; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802CC0CC; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802CC0E0; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802CC118; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802CC130; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802CC14C; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802CC160; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802CC17C; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802CC19C; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802CC1BC; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802CC1C8; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802CC1E4; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802CC1F8; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802CC208; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802CC214; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802CC220; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802CC234; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802CC25C; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802CC26C; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802CC2B0; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802CC2CC; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802CC2D8; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802CC2E4; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802CC2F8; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802CC308; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802CC324; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802CC348; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802CC378; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802CC390; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802CC3B4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CC3E8; // type:label scope:local +@1769 = .data:0x802CC3E8; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802CC3F8; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802CC404; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802CC418; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802CC428; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802CC444; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802CC450; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802CC45C; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802CC478; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802CC48C; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802CC49C; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802CC4A8; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802CC4B4; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802CC4C8; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802CC4F0; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802CC508; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802CC514; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802CC520; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802CC534; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802CC544; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802CC560; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802CC584; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802CC5B4; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802CC5C8; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802CC5EC; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802CC61C; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802CC654; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802CC668; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802CC674; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802CC684; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802CC690; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802CC6B0; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802CC6C4; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802CC6E4; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802CC6F8; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802CC704; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802CC738; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802CC758; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802CC764; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802CC780; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802CC7A0; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802CC7AC; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802CC7C8; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802CC7E4; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802CC7F0; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802CC80C; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802CC820; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802CC834; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802CC85C; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802CC86C; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802CC8B0; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802CC8C4; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802CC8E8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CC918; // type:label scope:local +@1669 = .data:0x802CC918; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802CC92C; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802CC93C; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802CC954; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802CC960; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802CC970; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802CC97C; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802CC990; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CC9AC; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802CC9C4; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802CC9D0; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802CC9EC; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802CCA00; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802CCA0C; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802CCA28; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCA48; // type:label scope:local +@1669 = .data:0x802CCA48; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CCA5C; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802CCA6C; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802CCA84; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802CCA90; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802CCAA0; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802CCAAC; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802CCAC0; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCAE0; // type:label scope:local +@1106 = .data:0x802CCAE0; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802CCAEC; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802CCAF8; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802CCB0C; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802CCB18; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802CCB28; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802CCB34; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802CCB48; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802CCB74; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802CCBA8; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802CCBE4; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802CCC28; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802CCE38; // type:label scope:local +@1206 = .data:0x802CCE38; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802CCE54; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802CCE6C; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802CCE84; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802CCE90; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802CCE9C; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802CCEB0; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802CCECC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CCF18; // type:label scope:local +@1787 = .data:0x802CCF18; // type:object size:0xE scope:local align:4 data:string +@4669 = .data:0x802CCF28; // type:object size:0x11 scope:local align:4 data:string +@4671 = .data:0x802CCF3C; // type:object size:0xA scope:local align:4 data:string +@4672 = .data:0x802CCF48; // type:object size:0xE scope:local align:4 data:string +@4673 = .data:0x802CCF58; // type:object size:0xC scope:local align:4 +@4670 = .data:0x802CCF64; // type:object size:0x14 scope:local align:4 +@4675 = .data:0x802CCF84; // type:object size:0x11 scope:local align:4 data:string +@4676 = .data:0x802CCF98; // type:object size:0x14 scope:local align:4 +@4680 = .data:0x802CCFB8; // type:object size:0xC scope:local align:4 data:string +@4689 = .data:0x802CD008; // type:object size:0xC scope:local align:4 data:string +@4691 = .data:0x802CD014; // type:object size:0x9 scope:local align:4 data:string +@4690 = .data:0x802CD020; // type:object size:0xC scope:local align:4 +@4692 = .data:0x802CD040; // type:object size:0xD scope:local align:4 data:string +@4694 = .data:0x802CD05C; // type:object size:0x11 scope:local align:4 data:string +@4696 = .data:0x802CD070; // type:object size:0xC scope:local align:4 data:string +@4695 = .data:0x802CD07C; // type:object size:0xC scope:local align:4 +@4703 = .data:0x802CD0A8; // type:object size:0xB scope:local align:4 data:string +@4711 = .data:0x802CD0E8; // type:object size:0x14 scope:local align:4 data:string +@4714 = .data:0x802CD108; // type:object size:0xC scope:local align:4 data:string +@4715 = .data:0x802CD114; // type:object size:0xD scope:local align:4 data:string +@4716 = .data:0x802CD124; // type:object size:0x9 scope:local align:4 data:string +@4717 = .data:0x802CD130; // type:object size:0x14 scope:local align:4 +@4713 = .data:0x802CD144; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802CD170; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802CD370; // type:label scope:local +@1379 = .data:0x802CD370; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802CD384; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802CD394; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802CD3A8; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802CD3B4; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802CD3C4; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802CD3D0; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802CD3E4; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802CD3F0; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802CD404; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802CD424; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802CD438; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802CD470; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802CD484; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802CD498; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802CD4A4; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802CD4C0; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802CD4D4; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802CD4E0; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802CD4F8; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802CD50C; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802CD518; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802CD530; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802CD544; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802CD550; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802CD568; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802CD57C; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802CD588; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802CD5A0; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802CD5B4; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802CD5C0; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802CD5DC; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802CD5F0; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802CD5FC; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802CD614; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802CD628; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802CD634; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802CD654; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802CD668; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802CD674; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802CD690; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802CD6A4; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802CD6B0; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802CD6C8; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802CD6DC; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802CD6E8; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802CD70C; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802CD720; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802CD72C; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802CD750; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802CD764; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802CD770; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802CD790; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802CD7A4; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802CD7B0; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802CD7C4; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802CD7D8; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802CD7E4; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802CD7FC; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802CD810; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802CD81C; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802CD830; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802CD844; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802CD850; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802CD864; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802CD878; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802CD884; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802CD898; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802CD8AC; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802CD8B8; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802CD8CC; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802CD8E0; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802CD8EC; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802CD904; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802CD918; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CD928; // type:label scope:local +@1411 = .data:0x802CD928; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802CD93C; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802CD94C; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802CD960; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802CD96C; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802CD978; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802CD9D0; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802CD9E0; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802CD9EC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802CDA18; // type:label scope:local +@1206 = .data:0x802CDA18; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802CDA24; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802CDA30; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802CDA3C; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802CDA48; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802CDAD4; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802CDB60; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802CDB70; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802CDB7C; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802CDB8C; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802CDB9C; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802CDBB0; // type:object size:0x10 scope:local align:4 data:string +@1520 = .data:0x802CDBC0; // type:object size:0x9 scope:local align:4 data:string +@1521 = .data:0x802CDBCC; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802CDBD8; // type:object size:0x14 scope:local align:4 +@1524 = .data:0x802CDBEC; // type:object size:0xC scope:local align:4 data:string +@1525 = .data:0x802CDBF8; // type:object size:0xA scope:local align:4 data:string +@1526 = .data:0x802CDC04; // type:object size:0x24 scope:local align:4 +@1527 = .data:0x802CDC28; // type:object size:0xE scope:local align:4 data:string +@1528 = .data:0x802CDC38; // type:object size:0x2C scope:local align:4 +@1518 = .data:0x802CDC64; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802CDC98; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802CDD20; // type:label scope:local +@1206 = .data:0x802CDD20; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802CDD30; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802CDD3C; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802CDD48; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802CDD5C; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802CDD68; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802CDD78; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802CDD84; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802CDD98; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802CDDC4; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802CDDF8; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802CE008; // type:label scope:local +@991 = .data:0x802CE008; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802CE01C; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802CE02C; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802CE038; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802CE044; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802CE054; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802CE060; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802CE06C; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802CE07C; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802CE090; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802CE09C; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802CE0A8; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802CE0B8; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802CE0CC; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802CE0E0; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802CE0F4; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802CE10C; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802CE124; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802CE13C; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802CE154; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802CE16C; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802CE184; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802CE198; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802CE1A8; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802CE1B8; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802CE1C8; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802CE1D8; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802CE1E8; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802CE1FC; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802CE210; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802CE220; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802CE234; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802CE244; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802CE258; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802CE26C; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802CE284; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802CE29C; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802CE2B0; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802CE2BC; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802CE2CC; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802CE2D8; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802CE2E8; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802CE2F8; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802CE308; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802CE318; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802CE324; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802CE334; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802CE340; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802CE350; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802CE360; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802CE378; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802CE390; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802CE3A4; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802CE3B8; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802CE3CC; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802CE3E0; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802CE3F4; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802CE408; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802CE414; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802CE438; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802CE458; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802CE474; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802CE490; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802CE4A4; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802CE4B8; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802CE4C4; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802CE4D8; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802CE4EC; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802CE500; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802CE514; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802CE524; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802CE530; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802CE53C; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802CE550; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802CE56C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CE5B8; // type:label scope:local +@991 = .data:0x802CE5B8; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802CE5CC; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802CE5DC; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802CE5F0; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802CE604; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802CE614; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802CE624; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802CE630; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802CE63C; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802CE64C; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802CE66C; // type:object size:0x1D scope:local align:4 data:string +@1200 = .data:0x802CE68C; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802CE69C; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802CE6B0; // type:label scope:local +@1106 = .data:0x802CE6B0; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802CE6C4; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802CE6D4; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802CE6E4; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802CE710; // type:label scope:local +@1022 = .data:0x802CE710; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802CE71C; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802CE728; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802CE734; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802CE740; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802CE750; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802CE75C; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802CE768; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802CE774; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802CE788; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802CE7A4; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CE7E0; // type:label scope:local +@1543 = .data:0x802CE7E0; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802CE7EC; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802CE80C; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802CE818; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802CE828; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802CE834; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802CE848; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802CE864; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802CE988; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802CE9A0; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802CE9D8; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802CE9E4; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802CE9F0; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802CEA10; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802CEA1C; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802CEA2C; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802CEA38; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802CEA44; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802CEA50; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802CEA80; // type:label scope:local +@388 = .data:0x802CEA80; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802CEA90; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802CEA9C; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802CEAB4; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802CEAC0; // type:object size:0xC scope:local align:4 +@411 = .data:0x802CEACC; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802CEAE0; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802CEAFC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CEB48; // type:label scope:local +@856 = .data:0x802CEB48; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802CEB54; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802CEB64; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802CEB70; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802CEB7C; // type:object size:0xC scope:global align:4 +@927 = .data:0x802CEB88; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802CEB9C; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802CEBA8; // type:object size:0xC scope:global align:4 +@929 = .data:0x802CEBB4; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802CEBC8; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802CEBD4; // type:object size:0xC scope:global align:4 +@931 = .data:0x802CEBE0; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802CEBF0; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802CEBFC; // type:object size:0xC scope:global align:4 +@933 = .data:0x802CEC08; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802CEC14; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802CEC20; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CEC30; // type:label scope:local +@1828 = .data:0x802CEC30; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802CEC3C; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802CEC48; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802CEC58; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802CEC70; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802CEC7C; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802CEC88; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802CEC98; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802CECA4; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802CECB0; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802CECC8; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802CECD4; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802CECE0; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802CECF0; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802CECFC; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802CED14; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802CED20; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802CED2C; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802CED3C; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802CED4C; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802CED68; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802CED78; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802CED88; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802CED98; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802CEDAC; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802CEDC4; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802CEDD8; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802CEDEC; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802CEDFC; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802CEE08; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802CEE20; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802CEE2C; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802CEE38; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802CEE48; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802CEE58; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802CEE74; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802CEE80; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802CEE8C; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802CEE9C; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802CEEA8; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802CEEBC; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802CEEC8; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802CEED4; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802CEEE0; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802CEEF0; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802CEF10; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802CEF20; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802CEF2C; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802CEF3C; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802CEF50; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802CEF5C; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802CEF74; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802CEF80; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802CEF8C; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802CEF9C; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802CEFCC; // type:object size:0x28 scope:local align:4 +@2887 = .data:0x802CEFF4; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802CF000; // type:object size:0xC scope:local align:4 +@2888 = .data:0x802CF00C; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802CF020; // type:object size:0x10 scope:weak align:4 +@2893 = .data:0x802CF04C; // type:object size:0xC scope:local align:4 data:string +@2896 = .data:0x802CF070; // type:object size:0x14 scope:local align:4 +@2897 = .data:0x802CF084; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802CF090; // type:object size:0x24 scope:local align:4 +@2894 = .data:0x802CF0B4; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802CF0E0; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802CF158; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802CF170; // type:label scope:local +@1113 = .data:0x802CF170; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802CF17C; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x802CF188; // type:object size:0xD scope:local align:4 data:string +@1701 = .data:0x802CF198; // type:object size:0xC scope:local align:4 +@1703 = .data:0x802CF1A4; // type:object size:0x14 scope:local align:4 +@1699 = .data:0x802CF1B8; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802CF1D4; // type:object size:0x30 scope:global align:4 +@1712 = .data:0x802CF204; // type:object size:0xC scope:local align:4 data:string +@1713 = .data:0x802CF210; // type:object size:0xD scope:local align:4 data:string +@1714 = .data:0x802CF220; // type:object size:0x9 scope:local align:4 data:string +@1715 = .data:0x802CF22C; // type:object size:0x14 scope:local align:4 +@1717 = .data:0x802CF240; // type:object size:0x1C scope:local align:4 +@1711 = .data:0x802CF25C; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802CF280; // type:object size:0x124 scope:global align:4 +@1770 = .data:0x802CF3A4; // type:object size:0xA scope:local align:4 data:string +@1772 = .data:0x802CF3B0; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x802CF3BC; // type:object size:0xC scope:local align:4 +@1773 = .data:0x802CF3DC; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802CF3E8; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802CF408; // type:object size:0xB scope:local align:4 data:string +@1777 = .data:0x802CF414; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x802CF424; // type:object size:0x9 scope:local align:4 data:string +@1779 = .data:0x802CF430; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802CF43C; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802CF460; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CF498; // type:label scope:local +spiderSE = .data:0x802CF498; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802CF4AC; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802CF4BC; // type:object size:0x9 scope:local align:4 data:string +@3168 = .data:0x802CF4C8; // type:object size:0x24 scope:local align:4 +@3173 = .data:0x802CF4EC; // type:object size:0x14 scope:local align:4 data:string +@3172 = .data:0x802CF500; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802CF50C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CF528; // type:label scope:local +leg_index__4Kumo = .data:0x802CF528; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802CF558; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802CF57C; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802CF58C; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802CF598; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802CF5D0; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802CF5F0; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802CF61C; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802CF628; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802CF634; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802CF64C; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802CF658; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802CF664; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802CF67C; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802CF688; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CF6A0; // type:label scope:local +@1109 = .data:0x802CF6A0; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802CF6AC; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802CF6B8; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802CF6C4; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802CF6D4; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802CF6E0; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802CF6F4; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802CF710; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802CF734; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802CF858; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802CF874; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802CF884; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802CF890; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802CF8A0; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802CF8B0; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802CF8BC; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802CF8C8; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802CF8E8; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802CF8F4; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802CF914; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802CF920; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802CF92C; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802CF93C; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802CF948; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802CF954; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802CF978; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CF9B0; // type:label scope:local +snakeSE = .data:0x802CF9B0; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802CF9D4; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802CF9E0; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802CFA08; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802CFA40; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802CFA54; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802CFA60; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CFA78; // type:label scope:local +@1221 = .data:0x802CFA78; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802CFA88; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802CFA94; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802CFAB0; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802CFADC; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802CFAE8; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802CFAF4; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802CFB14; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802CFB20; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CFB38; // type:label scope:local +@1171 = .data:0x802CFB38; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802CFB44; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802CFB50; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802CFB88; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802CFB94; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802CFBA4; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802CFBB0; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802CFBC4; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802CFBE0; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802CFC04; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802CFD28; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802CFD44; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802CFD54; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802CFD60; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802CFD70; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802CFD8C; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802CFD98; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802CFDA8; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802CFDC4; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802CFDD0; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802CFDF0; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802CFDFC; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802CFE08; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802CFE28; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802CFE34; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802CFE54; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802CFE60; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802CFE6C; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802CFE7C; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802CFE88; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802CFE94; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802CFEB8; // type:object size:0x1C scope:weak align:4 +@6098 = .data:0x802CFEF0; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802CFF18; // type:label scope:local +@979 = .data:0x802CFF18; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802CFF2C; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802CFF3C; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802CFF48; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802CFF58; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802CFF64; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802CFF78; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802CFF94; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D00A8; // type:label scope:local +@1080 = .data:0x802D00A8; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D00B4; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D00C0; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D00CC; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D00D8; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D00EC; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D0108; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D0138; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D0144; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D0154; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D0160; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D0174; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D0190; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D01B4; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D02D8; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D02E4; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D02F0; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D0310; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D031C; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D033C; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D0348; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D0358; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D0364; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D0370; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D0394; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D03D0; // type:label scope:local +kingSE = .data:0x802D03D0; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D0408; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D0414; // type:object size:0x24 scope:local align:4 +@1783 = .data:0x802D0438; // type:object size:0x40 scope:local align:4 +@6169 = .data:0x802D0478; // type:object size:0x44 scope:local align:4 +@6170 = .data:0x802D04BC; // type:object size:0xC scope:local align:4 data:string +@6181 = .data:0x802D04F4; // type:object size:0x14 scope:local align:4 data:string +@6180 = .data:0x802D0508; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D0514; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D0530; // type:label scope:local +@1229 = .data:0x802D0530; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D0540; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D054C; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D0564; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D0590; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D059C; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D05A8; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D05C0; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D05CC; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D05D8; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D05FC; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D063C; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D0648; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D0654; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D0670; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D067C; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D0688; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D06A8; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D06B4; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D06CC; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D06E8; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D06F4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D0710; // type:label scope:local +@1251 = .data:0x802D0710; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D071C; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D0728; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D0734; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D0744; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D0750; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D0764; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D0780; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D07A4; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D08C8; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D08D4; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D08E0; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D0900; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D090C; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D0918; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D0928; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D0934; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D0940; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D0964; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D09A0; // type:label scope:local +@1603 = .data:0x802D09A0; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D09B0; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D09BC; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D09D8; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D09EC; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D09F8; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D0A04; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D0A1C; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D0A48; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D0A54; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D0A78; // type:label scope:local +@995 = .data:0x802D0A78; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D0A84; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D0A90; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D0AA0; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D0AAC; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D0AC0; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D0ADC; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D0B00; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802D0C24; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802D0C30; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802D0C3C; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802D0C5C; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802D0C68; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802D0C88; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802D0C94; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802D0CA4; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802D0CB0; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802D0CBC; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802D0CE0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D0D18; // type:label scope:local +pomSE = .data:0x802D0D18; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802D0D30; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802D0D3C; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802D0D74; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802D0D88; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802D0D94; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802D0DA0; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802D0DB8; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802D0DE4; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802D0DF0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D0E18; // type:label scope:local +@910 = .data:0x802D0E18; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802D0E28; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802D0E34; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802D0E40; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802D0E4C; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802D0E5C; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802D0E68; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802D0E7C; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802D0E98; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802D0EBC; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802D0FE0; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802D0FF0; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802D0FFC; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802D100C; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802D1018; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802D1024; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802D1048; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D1080; // type:label scope:local +@1053 = .data:0x802D1080; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802D108C; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802D1098; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802D10A4; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802D10B4; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802D10C0; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802D10D4; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802D10F0; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802D1114; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802D1238; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802D1244; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802D1250; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802D1260; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802D126C; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802D1278; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802D129C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D12D8; // type:label scope:local +@1668 = .data:0x802D12D8; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802D12E8; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802D12F4; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802D1308; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802D1314; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D1330; // type:label scope:local +@1334 = .data:0x802D1330; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802D1340; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802D134C; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802D1358; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802D1364; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802D1374; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802D1380; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802D1394; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802D13B0; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802D13D4; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802D14F8; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802D1508; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802D1514; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802D1524; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802D1530; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D153C; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802D1560; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D1598; // type:label scope:local +@1668 = .data:0x802D1598; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802D15AC; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802D15BC; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802D15D0; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802D15DC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D15F8; // type:label scope:local +@964 = .data:0x802D15F8; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802D1604; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802D1610; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D161C; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D162C; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D1638; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802D164C; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802D1668; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802D168C; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802D17B0; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802D17BC; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802D17C8; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802D17D8; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802D17E4; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802D17F0; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802D1814; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D1850; // type:label scope:local +@1288 = .data:0x802D1850; // type:object size:0xB scope:local align:4 data:string +@1730 = .data:0x802D185C; // type:object size:0xC scope:local align:4 data:string +@1741 = .data:0x802D1894; // type:object size:0x14 scope:local align:4 data:string +@1740 = .data:0x802D18A8; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802D18B4; // type:object size:0xC scope:global align:4 +@1742 = .data:0x802D18C0; // type:object size:0x1A scope:local align:4 data:string +@1744 = .data:0x802D18DC; // type:object size:0x29 scope:local align:4 data:string +@1743 = .data:0x802D1908; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802D1914; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D1938; // type:label scope:local +patternTable = .data:0x802D1938; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802D19B8; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802D19E4; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802D1A10; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802D1A70; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802D1AD0; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802D1AE4; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802D1AF8; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802D1B68; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802D1BD8; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802D1BF0; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802D1C08; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802D1C5C; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802D1CB0; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802D1D00; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802D1D50; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802D1DA0; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802D1DF0; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802D1E18; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802D1E40; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802D1E6C; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802D1E98; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802D1EB0; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802D1EC8; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802D1F00; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802D1F38; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802D1F9C; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802D2000; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802D2038; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802D2070; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802D2090; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802D20B0; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802D20C8; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802D20E0; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802D214C; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802D21B8; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802D2250; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802D22E8; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802D2324; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802D2360; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802D236C; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802D2378; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802D2468; // type:label scope:local +@877 = .data:0x802D2468; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802D2474; // type:object size:0xE scope:local align:4 data:string +@976 = .data:0x802D2484; // type:object size:0xD scope:local align:4 data:string +@977 = .data:0x802D2494; // type:object size:0xD scope:local align:4 data:string +@978 = .data:0x802D24A4; // type:object size:0xC scope:local align:4 data:string +@1095 = .data:0x802D24B0; // type:object size:0x30 scope:local align:4 +@1187 = .data:0x802D24E0; // type:object size:0x1B scope:local align:4 +@1188 = .data:0x802D24FC; // type:object size:0xE scope:local align:4 +@1189 = .data:0x802D250C; // type:object size:0x14 scope:local align:4 +@1190 = .data:0x802D2520; // type:object size:0x14 scope:local align:4 +@1191 = .data:0x802D2534; // type:object size:0xC scope:local align:4 +@1192 = .data:0x802D2540; // type:object size:0x15 scope:local align:4 +@1193 = .data:0x802D2558; // type:object size:0x17 scope:local align:4 +@1194 = .data:0x802D2570; // type:object size:0xA scope:local align:4 +@1195 = .data:0x802D257C; // type:object size:0x9 scope:local align:4 +@1196 = .data:0x802D2588; // type:object size:0xC scope:local align:4 +@1197 = .data:0x802D2594; // type:object size:0xD scope:local align:4 +@1198 = .data:0x802D25A4; // type:object size:0x9 scope:local align:4 +@1200 = .data:0x802D25B0; // type:object size:0x26 scope:local align:4 +@1210 = .data:0x802D25D8; // type:object size:0x10 scope:local align:4 data:string +@1221 = .data:0x802D25E8; // type:object size:0x13 scope:local align:4 data:string +@1224 = .data:0x802D25FC; // type:object size:0x9 scope:local align:4 data:string +@1225 = .data:0x802D2608; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802D2614; // type:object size:0x14 scope:local align:4 +@1229 = .data:0x802D2628; // type:object size:0x1C scope:local align:4 +@1222 = .data:0x802D2644; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802D2668; // type:object size:0x34 scope:global align:4 +@1237 = .data:0x802D26D0; // type:object size:0x12 scope:local align:4 data:string +@1238 = .data:0x802D26E4; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802D2700; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D2750; // type:label scope:local +@890 = .data:0x802D2750; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802D275C; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802D276C; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802D2B6C; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802D2C6C; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802D2D6C; // type:object size:0x190 scope:local align:4 +@1559 = .data:0x802D2EFC; // type:object size:0x19 scope:local align:4 data:string +@1735 = .data:0x802D2F18; // type:object size:0x1C scope:local align:4 data:string +@1737 = .data:0x802D2F34; // type:object size:0xF scope:local align:4 data:string +@1738 = .data:0x802D2F44; // type:object size:0x14 scope:local align:4 data:string +@1739 = .data:0x802D2F58; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D2F64; // type:object size:0x14 scope:local align:4 data:string +@1741 = .data:0x802D2F78; // type:object size:0x1A scope:local align:4 data:string +@1742 = .data:0x802D2F94; // type:object size:0x10 scope:local align:4 data:string +@1743 = .data:0x802D2FA4; // type:object size:0x14 scope:local align:4 +@1736 = .data:0x802D2FB8; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802D2FE4; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802D2FF4; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802D3004; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D3010; // type:label scope:local +@890 = .data:0x802D3010; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802D301C; // type:object size:0xF scope:local align:4 data:string +@1015 = .data:0x802D302C; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D3044; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802D305C; // type:object size:0x16 scope:local align:4 data:string +@1018 = .data:0x802D3074; // type:object size:0x18 scope:local align:4 data:string +@1019 = .data:0x802D308C; // type:object size:0x18 scope:local align:4 data:string +@1020 = .data:0x802D30A4; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D30C0; // type:label scope:local +@1133 = .data:0x802D30C0; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D30CC; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802D30DC; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802D30F4; // type:object size:0x15 scope:local align:4 data:string +@1190 = .data:0x802D310C; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802D3128; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D3140; // type:label scope:local +@1133 = .data:0x802D3140; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802D3154; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802D3168; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802D3180; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802D3198; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802D31A4; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D31BC; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D31D4; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D31EC; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D3204; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D321C; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802D3234; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802D3244; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D325C; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D3274; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D328C; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802D32A4; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802D32B0; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D32C8; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D32E0; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802D32F8; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802D3310; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D3328; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802D3340; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D3358; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802D3370; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D3388; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802D33A0; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802D33B8; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802D33D4; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802D33F0; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802D33FC; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802D3414; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D342C; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D3444; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D345C; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D3474; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D348C; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D34A4; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D34BC; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D34D4; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802D34F0; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802D350C; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802D3518; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802D3534; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802D3550; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802D356C; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802D357C; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D3594; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D35AC; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D35C4; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D35DC; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D35F4; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802D360C; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802D3624; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802D363C; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802D3654; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802D366C; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802D3684; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802D369C; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802D36B4; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802D36CC; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802D36E4; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802D36FC; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802D3714; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802D372C; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802D3744; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802D375C; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802D3774; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802D378C; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802D37A4; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802D37BC; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802D37D4; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D37EC; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D3804; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D381C; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D3834; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802D384C; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802D3864; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802D387C; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802D3894; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802D38AC; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802D38C4; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802D38DC; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802D38F4; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802D390C; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802D3924; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802D393C; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802D3954; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802D396C; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802D3984; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802D399C; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802D39B4; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D39CC; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D39E4; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D39FC; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D3A14; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D3A2C; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D3A44; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D3A5C; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D3A74; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D3A8C; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D3AA4; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802D3ABC; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802D3AD4; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802D3AEC; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802D3B04; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802D3B10; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802D3B1C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802D3B28; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802D3B34; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802D3B40; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802D3B4C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802D3B58; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802D3B64; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802D3B70; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802D3B7C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802D3B88; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802D3B94; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802D3BA0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802D3BAC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802D3BB8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802D3BC4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802D3BD0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802D3BDC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802D3BE8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802D3BF4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802D3C00; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802D3C0C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802D3C18; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802D3C24; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802D3C30; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802D3C3C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802D3C48; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802D3C54; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802D3C60; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802D3C6C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802D3C78; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802D3C84; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802D3C90; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802D3C9C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802D3CA8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802D3CB4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802D3CC0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802D3CCC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802D3CD8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802D3CE4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802D3CF0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802D3CFC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802D3D08; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802D3D14; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802D3D20; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802D3D2C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802D3D38; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802D3D44; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802D3D50; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802D3D5C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802D3D68; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802D3D74; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802D3D80; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802D3D8C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802D3D98; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802D3DA4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802D3DB0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802D3DBC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802D3DC8; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802D3DD4; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802D3DEC; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802D4058; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802D406C; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D4088; // type:label scope:local +@1133 = .data:0x802D4088; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802D4098; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802D40A8; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802D40C0; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802D40D8; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D40F0; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D4108; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D4120; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D4138; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D4150; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802D4168; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D4180; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D4198; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D41B0; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802D41C8; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D41E0; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D41F8; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802D4210; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802D4228; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802D4240; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802D4258; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802D4270; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802D4288; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802D42A0; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802D42B8; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802D42D0; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802D42E8; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802D4300; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802D4318; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D4330; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D4348; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D4360; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D4378; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D4390; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D43A8; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D43C0; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D43D8; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802D43F0; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802D4408; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802D4420; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802D4438; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802D4450; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D4468; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D4480; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D4498; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D44B0; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D44C8; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802D44E0; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802D44F8; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802D4510; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802D4528; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802D4540; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802D4558; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802D4570; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802D4588; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802D45A0; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802D45B8; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802D45D0; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802D45E8; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802D4600; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802D4618; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802D4630; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802D4648; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802D4660; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802D4678; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802D4690; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802D46A8; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802D46C0; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D46D8; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D46F0; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D4708; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802D4720; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802D4738; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802D4750; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802D4768; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802D4780; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802D4798; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802D47B0; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802D47C8; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802D47E0; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802D47F8; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802D4810; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802D4828; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802D4840; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802D4858; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802D4870; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802D4888; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D48A0; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D48B8; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D48D0; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D48E8; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D4900; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D4918; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D4930; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D4948; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D4960; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D4978; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802D4990; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802D49A8; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802D49C0; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802D49D8; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802D49F0; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802D4A08; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802D4A20; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802D4A38; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802D4A50; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802D4A68; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802D4A80; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802D4A98; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802D4AB0; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802D4AC8; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802D4AE0; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802D4AF8; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802D4B10; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802D4B28; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802D4B40; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802D4B58; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802D4B70; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802D4B88; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802D4BA0; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802D4BB8; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802D4BD0; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802D4BE8; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802D4C00; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802D4C18; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802D4C30; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802D4C48; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802D4C60; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802D4C78; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802D4C90; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802D4CA8; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802D4CC0; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D4CD8; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802D4CF0; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802D4D08; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802D4D20; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802D4D38; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802D4D50; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802D4D68; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802D4D80; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802D4D98; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802D4DB0; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802D4DC8; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802D4DE0; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802D4DF8; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802D4E10; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802D5064; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802D506C; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802D5084; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802D509C; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D50B8; // type:label scope:local +@1767 = .data:0x802D50B8; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802D50C4; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802D50D4; // type:object size:0x3C scope:local align:4 +@2034 = .data:0x802D5110; // type:object size:0x17 scope:local align:4 data:string +@2035 = .data:0x802D5128; // type:object size:0x17 scope:local align:4 data:string +@2036 = .data:0x802D5140; // type:object size:0x17 scope:local align:4 data:string +@2037 = .data:0x802D5158; // type:object size:0x17 scope:local align:4 data:string +@2038 = .data:0x802D5170; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D5188; // type:label scope:local +@890 = .data:0x802D5188; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802D519C; // type:object size:0x14 scope:local align:4 data:string +@1461 = .data:0x802D51B0; // type:object size:0x38 scope:local align:4 +@1701 = .data:0x802D51E8; // type:object size:0x15 scope:local align:4 data:string +@1702 = .data:0x802D5200; // type:object size:0x15 scope:local align:4 data:string +@1703 = .data:0x802D5218; // type:object size:0x15 scope:local align:4 data:string +@1704 = .data:0x802D5230; // type:object size:0x17 scope:local align:4 data:string +@1705 = .data:0x802D5248; // type:object size:0x17 scope:local align:4 data:string +@1706 = .data:0x802D5260; // type:object size:0x17 scope:local align:4 data:string +@1707 = .data:0x802D5278; // type:object size:0x17 scope:local align:4 data:string +@1708 = .data:0x802D5290; // type:object size:0x17 scope:local align:4 data:string +@1709 = .data:0x802D52A8; // type:object size:0x16 scope:local align:4 data:string +@1710 = .data:0x802D52C0; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D52E0; // type:label scope:local +sjis_convert_table = .data:0x802D52E0; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x802D57A0; // type:object size:0x499 scope:local align:32 +@1819 = .data:0x802D5C3C; // type:object size:0xE scope:local align:4 data:string +@1829 = .data:0x802D5C4C; // type:object size:0x11 scope:local align:4 data:string +@1991 = .data:0x802D5C60; // type:object size:0x33 scope:local align:4 data:string +@2068 = .data:0x802D5C94; // type:object size:0xC scope:local align:4 data:string +@2071 = .data:0x802D5CA0; // type:object size:0x9 scope:local align:4 data:string +@2072 = .data:0x802D5CAC; // type:object size:0x17 scope:local align:4 +@1027 = .data:0x802D5CC8; // type:object size:0x15 scope:local align:4 data:string +@1028 = .data:0x802D5CE0; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802D5CF8; // type:object size:0x4C scope:local align:4 +@2125 = .data:0x802D5D44; // type:object size:0x4C scope:local align:4 +@2158 = .data:0x802D5D90; // type:object size:0x38 scope:local align:4 +@2201 = .data:0x802D5DC8; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802D5DE8; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802D5DF4; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802D5E0C; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802D5E1C; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802D5E34; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802D5E4C; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D5E68; // type:label scope:local +@1810 = .data:0x802D5E68; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802D5E74; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802D5E84; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802D5F04; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802D5F28; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802D5F4C; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802D5F70; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802D5F94; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802D5FAC; // type:object size:0x17 scope:local align:4 data:string +@2274 = .data:0x802D5FC4; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802D5FDC; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802D5FF4; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802D6010; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802D6028; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802D6040; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802D6058; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D6070; // type:label scope:local +@1133 = .data:0x802D6070; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802D607C; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802D608C; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D60A4; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802D60BC; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802D60D4; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802D6120; // type:label scope:local +@1133 = .data:0x802D6120; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D612C; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802D6140; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802D6180; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802D61C0; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802D6200; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802D6220; // type:object size:0xC scope:local align:32 +@871 = .data:0x802D6230; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D6248; // type:label scope:local +@749 = .data:0x802D6248; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802D6258; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802D626C; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D6284; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802D6298; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802D62B4; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802D62C4; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802D62D8; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802D62F4; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D6320; // type:label scope:local +@885 = .data:0x802D6320; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802D6334; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802D634C; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802D6358; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D6364; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802D6380; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802D6398; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802D63A8; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802D63B4; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802D63C8; // type:object size:0x11 scope:local align:4 +@1470 = .data:0x802D63DC; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802D63F0; // type:object size:0xD scope:local align:4 +@1472 = .data:0x802D6400; // type:object size:0xB scope:local align:4 +@1473 = .data:0x802D640C; // type:object size:0x21 scope:local align:4 +@1474 = .data:0x802D6430; // type:object size:0xF scope:local align:4 +@1475 = .data:0x802D6440; // type:object size:0x1D scope:local align:4 +@1476 = .data:0x802D6460; // type:object size:0x11 scope:local align:4 +@1477 = .data:0x802D6474; // type:object size:0xF scope:local align:4 +@1479 = .data:0x802D6484; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802D6494; // type:object size:0x15 scope:local align:4 +@1481 = .data:0x802D64AC; // type:object size:0xB scope:local align:4 +@1483 = .data:0x802D64B8; // type:object size:0xA scope:local align:4 data:string +@1485 = .data:0x802D64C4; // type:object size:0x18 scope:local align:4 data:string +@1486 = .data:0x802D64DC; // type:object size:0x17 scope:local align:4 data:string +@1487 = .data:0x802D64F4; // type:object size:0x16 scope:local align:4 data:string +@1494 = .data:0x802D650C; // type:object size:0x1B scope:local align:4 +@1595 = .data:0x802D6528; // type:object size:0x9 scope:local align:4 data:string +@1596 = .data:0x802D6534; // type:object size:0xC scope:local align:4 +@1600 = .data:0x802D655C; // type:object size:0x17 scope:local align:4 data:string +@1602 = .data:0x802D6574; // type:object size:0xD scope:local align:4 data:string +@1601 = .data:0x802D6584; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802D6590; // type:object size:0x10 scope:weak align:4 +@1606 = .data:0x802D65A0; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802D65B0; // type:object size:0xD scope:local align:4 data:string +@1607 = .data:0x802D65C0; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802D65CC; // type:object size:0x10 scope:weak align:4 +@1618 = .data:0x802D65DC; // type:object size:0xC scope:local align:4 data:string +@1619 = .data:0x802D65E8; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802D65F4; // type:object size:0x10 scope:weak align:4 +@1628 = .data:0x802D6604; // type:object size:0xD scope:local align:4 data:string +@1629 = .data:0x802D6614; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802D6620; // type:object size:0x10 scope:weak align:4 +@1639 = .data:0x802D6630; // type:object size:0x10 scope:local align:4 data:string +@1640 = .data:0x802D6640; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802D664C; // type:object size:0x10 scope:weak align:4 +@1649 = .data:0x802D665C; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802D666C; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802D6678; // type:object size:0x10 scope:weak align:4 +@1664 = .data:0x802D6688; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802D6698; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802D66A4; // type:object size:0x10 scope:weak align:4 +@1678 = .data:0x802D66B4; // type:object size:0xE scope:local align:4 data:string +@1679 = .data:0x802D66C4; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802D66D0; // type:object size:0x10 scope:weak align:4 +@1693 = .data:0x802D66E0; // type:object size:0xC scope:local align:4 data:string +@1694 = .data:0x802D66EC; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802D66F8; // type:object size:0x10 scope:weak align:4 +@1703 = .data:0x802D6708; // type:object size:0xD scope:local align:4 data:string +@1704 = .data:0x802D6718; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802D6724; // type:object size:0x10 scope:weak align:4 +@1713 = .data:0x802D6734; // type:object size:0x13 scope:local align:4 data:string +@1714 = .data:0x802D6748; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802D6754; // type:object size:0x10 scope:weak align:4 +@1724 = .data:0x802D6764; // type:object size:0xC scope:local align:4 data:string +@1725 = .data:0x802D6770; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802D677C; // type:object size:0x10 scope:weak align:4 +@1734 = .data:0x802D678C; // type:object size:0xD scope:local align:4 data:string +@1735 = .data:0x802D679C; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802D67A8; // type:object size:0x10 scope:weak align:4 +@1744 = .data:0x802D67B8; // type:object size:0xC scope:local align:4 data:string +@1745 = .data:0x802D67C4; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802D67D0; // type:object size:0x10 scope:weak align:4 +@1758 = .data:0x802D67E0; // type:object size:0x10 scope:local align:4 data:string +@1759 = .data:0x802D67F0; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802D67FC; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802D680C; // type:object size:0x10 scope:local align:4 data:string +@1769 = .data:0x802D681C; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802D6828; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802D6838; // type:object size:0x10 scope:weak align:4 +@1783 = .data:0x802D6848; // type:object size:0x29 scope:local align:4 data:string +@1785 = .data:0x802D6874; // type:object size:0x13 scope:local align:4 data:string +@1784 = .data:0x802D6888; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802D6894; // type:object size:0xC scope:weak align:4 +@1786 = .data:0x802D68A0; // type:object size:0x18 scope:local align:4 data:string +@1787 = .data:0x802D68B8; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802D68DC; // type:object size:0x10 scope:weak align:4 +@1789 = .data:0x802D68EC; // type:object size:0xA scope:local align:4 data:string +@1791 = .data:0x802D68F8; // type:object size:0x9 scope:local align:4 data:string +@1790 = .data:0x802D6904; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D6924; // type:object size:0xC scope:local align:4 data:string +@1793 = .data:0x802D6930; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D6950; // type:object size:0x14 scope:local align:4 +@1794 = .data:0x802D6964; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802D6980; // type:object size:0x30 scope:weak align:4 +@1888 = .data:0x802D69B0; // type:object size:0x1C scope:local align:4 +@1886 = .data:0x802D69CC; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802D69F0; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D6A58; // type:label scope:local +@1486 = .data:0x802D6A58; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802D6A6C; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802D6A84; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802D6A9C; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802D6AA8; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802D6AD0; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802D6AE4; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802D6B00; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802D6B24; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D6B90; // type:label scope:local +@749 = .data:0x802D6B90; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802D6BA0; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802D6BB4; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802D6BCC; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802D6BD8; // type:object size:0xC scope:local align:4 +@779 = .data:0x802D6C00; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802D6C14; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802D6C30; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802D6C54; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D6CC0; // type:label scope:local +@787 = .data:0x802D6CC0; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802D6CD0; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802D6CDC; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802D6CF4; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802D6D0C; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802D6D24; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802D6D40; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802D6D58; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802D6D74; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802D6D8C; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802D6DA8; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802D6DC0; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802D6DDC; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802D6DF8; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802D6E10; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802D6E2C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802D6E44; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802D6E60; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802D6E7C; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802D6E94; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802D6EB0; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802D6ECC; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802D6EE8; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802D6F04; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802D6F1C; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802D6F34; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802D6F50; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802D6F6C; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802D6F88; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802D6FA0; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802D6FBC; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802D6FD8; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802D6FF4; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802D7010; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802D702C; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802D7044; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802D705C; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802D7078; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802D7094; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802D70B0; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802D70CC; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802D70E8; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802D7104; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802D711C; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802D7138; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802D7150; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802D716C; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802D7184; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802D71A0; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802D71BC; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802D71D8; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802D71F0; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802D720C; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802D7224; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802D7240; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802D725C; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802D7278; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802D7290; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802D72AC; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802D72C4; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802D72E0; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802D72FC; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802D7314; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802D732C; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802D7344; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802D7358; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802D736C; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802D7384; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802D73A0; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802D73BC; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802D73D8; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802D73F4; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802D7410; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802D742C; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802D7444; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802D745C; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802D7478; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802D7494; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802D74B0; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802D74C8; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802D74E4; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802D7500; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802D7518; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802D7534; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802D754C; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802D7564; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802D757C; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802D7594; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802D75AC; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802D75C4; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802D75DC; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802D75F4; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802D760C; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802D7624; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802D763C; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802D7654; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D766C; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802D7688; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802D76A4; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802D76BC; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802D76D4; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802D76F0; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802D770C; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802D7724; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802D773C; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802D7758; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802D7770; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802D778C; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802D77A4; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802D77C0; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802D77DC; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802D77F8; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802D7814; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802D7830; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802D784C; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802D7868; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802D7884; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802D78A0; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802D78BC; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802D78D4; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802D78EC; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802D7904; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802D791C; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802D7934; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802D794C; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802D7964; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802D7980; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802D799C; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802D79B4; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802D79CC; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802D79E8; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802D7A04; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802D7A20; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802D7A3C; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802D7A58; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802D7A74; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802D7A8C; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802D7AA8; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802D7AC4; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802D7ADC; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802D7AF8; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802D7B14; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802D7B30; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802D7B48; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802D7B64; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802D7B80; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802D7B9C; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802D7BB8; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802D7BD4; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802D7BF0; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802D7C0C; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802D7C28; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802D7C44; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802D7C60; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802D7C7C; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802D7C98; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802D7CB0; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802D7CCC; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802D7CE4; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802D7D00; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802D7D1C; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802D7D38; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802D7D54; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802D7D70; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802D7D8C; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802D7DA8; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802D7DC4; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802D7DE0; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802D7DFC; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802D7E18; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802D7E34; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802D7E50; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802D7E68; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802D7E84; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802D7EA0; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802D7EBC; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802D7ED8; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802D7EF0; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802D7F08; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802D7F20; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802D7F38; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802D7F54; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802D7F70; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802D7F88; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802D7FA0; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802D7FB8; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802D7FD0; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802D7FEC; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802D8008; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802D8024; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802D803C; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802D8058; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802D8070; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802D8088; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802D80A0; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802D80BC; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802D80D8; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802D80F4; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802D8110; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802D812C; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802D8144; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802D815C; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802D8174; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802D8190; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802D81A8; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802D81C4; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802D81E0; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802D81FC; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802D8218; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802D8234; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802D824C; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802D8268; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802D8284; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802D829C; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802D82B4; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802D82CC; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802D82E4; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D82FC; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802D8318; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802D8334; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802D8350; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802D836C; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802D8388; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802D83A4; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802D83C0; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802D83DC; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802D83F0; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802D8408; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802D8420; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802D8438; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802D8450; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802D846C; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802D8484; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802D849C; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802D84B4; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802D84D0; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802D84EC; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802D8504; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802D851C; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802D8534; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802D854C; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802D8568; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802D8584; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802D859C; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802D85B4; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802D85CC; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802D85E8; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802D8600; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802D861C; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802D8638; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802D8654; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802D866C; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802D8684; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802D869C; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802D86B4; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802D86D0; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802D86EC; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802D8708; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802D8724; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802D873C; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802D8758; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802D8774; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802D878C; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802D87A4; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802D87BC; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802D87D4; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802D87F0; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802D8808; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802D8820; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802D8838; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802D8850; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802D886C; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802D8884; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802D88A0; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802D88BC; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802D88D8; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802D88F4; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802D890C; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802D8924; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802D893C; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802D8958; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802D8974; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802D898C; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802D89A8; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802D89C4; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802D89E0; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802D89F8; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802D8A10; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802D8A2C; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802D8A44; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802D8A60; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802D8A7C; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802D8A98; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802D8AB4; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802D8AD0; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802D8AE8; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802D8B00; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802D8B1C; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802D8B38; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802D8B54; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802D8B70; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802D8B8C; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802D8BA8; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802D8BC0; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802D8BD8; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802D8BF0; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802D8C08; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802D8C20; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802D8C38; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802D8C50; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802D8C68; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802D8C80; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802D8C98; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802D8CB0; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802D8CC8; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802D8CE0; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802D8CFC; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802D8D18; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802D8D30; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802D8D4C; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802D8D68; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802D8D84; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802D8DA0; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802D8DB8; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802D8DD0; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802D8DE8; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802D8E00; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802D8E1C; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802D8E38; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802D8E54; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802D8E70; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802D8E8C; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802D8EA4; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802D8EC0; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802D8ED8; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802D8EF0; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802D8F08; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802D8F20; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802D8F3C; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802D8F58; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802D8F74; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802D8F8C; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802D8FA4; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802D8FBC; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802D8FD4; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802D8FEC; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802D9008; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802D9024; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802D903C; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802D9054; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802D906C; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802D9088; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802D90A4; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802D90BC; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802D90D4; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802D90EC; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802D9104; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802D911C; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802D9134; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802D914C; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802D9168; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802D9184; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802D91A0; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802D91BC; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802D91D8; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802D91F4; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802D9210; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802D922C; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802D9248; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802D9264; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802D9280; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802D929C; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802D92B4; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802D92CC; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802D92E4; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802D92FC; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802D9314; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802D932C; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802D9344; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802D935C; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802D9378; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802D9394; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802D93AC; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802D93C4; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802D93DC; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802D93F8; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802D9414; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802D9430; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802DA3C0; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802DA3DC; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802DA3F8; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802DA414; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802DA444; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802DA450; // type:object size:0xB scope:local align:4 data:string +@1629 = .data:0x802DA45C; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802DA468; // type:object size:0xD scope:local align:4 data:string +@1753 = .data:0x802DA478; // type:object size:0xB scope:local align:4 data:string +@1756 = .data:0x802DA484; // type:object size:0x9 scope:local align:4 data:string +@1757 = .data:0x802DA490; // type:object size:0xC scope:local align:4 +@1754 = .data:0x802DA49C; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802DA4B0; // type:object size:0x10 scope:weak align:4 +@1760 = .data:0x802DA4C0; // type:object size:0xD scope:local align:4 data:string +@1763 = .data:0x802DA4E0; // type:object size:0xA scope:local align:4 data:string +@1764 = .data:0x802DA4EC; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802DA500; // type:object size:0x10 scope:weak align:4 +@1765 = .data:0x802DA510; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802DA52C; // type:object size:0xC scope:global align:4 +@1766 = .data:0x802DA538; // type:object size:0xC scope:local align:4 data:string +@1767 = .data:0x802DA544; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802DA558; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802DA568; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802DA584; // type:object size:0xC scope:weak align:4 +@1769 = .data:0x802DA590; // type:object size:0xD scope:local align:4 data:string +@1772 = .data:0x802DA5A0; // type:object size:0x14 scope:local align:4 +@1770 = .data:0x802DA5B4; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802DA5D0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802DA620; // type:label scope:local +@671 = .data:0x802DA620; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802DA638; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802DA660; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802DA690; // type:object size:0xC scope:local align:4 +@705 = .data:0x802DA69C; // type:object size:0xC scope:local align:4 +@708 = .data:0x802DA6A8; // type:object size:0xC scope:local align:4 +@710 = .data:0x802DA6B4; // type:object size:0xC scope:local align:4 +@712 = .data:0x802DA6C0; // type:object size:0xC scope:local align:4 +@714 = .data:0x802DA6CC; // type:object size:0xC scope:local align:4 +@716 = .data:0x802DA6D8; // type:object size:0xC scope:local align:4 +@718 = .data:0x802DA6E4; // type:object size:0xC scope:local align:4 +@720 = .data:0x802DA6F0; // type:object size:0xC scope:local align:4 +@736 = .data:0x802DA6FC; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802DA718; // type:label scope:local +@409 = .data:0x802DA718; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802DA72C; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802DA73C; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802DA74C; // type:object size:0xD scope:local align:4 data:string +@461 = .data:0x802DA75C; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802DA768; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DA788; // type:label scope:local +ami = .data:0x802DA788; // type:object size:0x800 scope:local align:4 +check = .data:0x802DAF88; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802DB788; // type:object size:0x800 scope:local align:4 +marble = .data:0x802DBF88; // type:object size:0x800 scope:local align:4 +noise = .data:0x802DC788; // type:object size:0x800 scope:local align:4 +yura = .data:0x802DCF88; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802DD788; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802DD7A0; // type:label scope:local +@618 = .data:0x802DD7A0; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802DD7B8; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802DD7CC; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802DD7E0; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802DD7F0; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802DD808; // type:object size:0xC scope:local align:4 +@715 = .data:0x802DD814; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802DD828; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802DD848; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802DD858; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802DD870; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802DD884; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DD898; // type:label scope:local +@1344 = .data:0x802DD898; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802DD8A8; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802DD8B4; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802DD8EC; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802DD8F8; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802DD90C; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802DD918; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802DD928; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802DD934; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802DD948; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802DD974; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802DD9A8; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802DD9E4; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802DDBE4; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802DDC1C; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802DDC3C; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802DDC70; // type:label scope:local +@1737 = .data:0x802DDC70; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802DDC7C; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802DDC90; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802DDCA4; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802DDCB0; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802DDCC8; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802DDCE4; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802DDD04; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802DDD20; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802DDD3C; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802DDD5C; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802DDD7C; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802DDD98; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802DDDB4; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802DDDD4; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802DDDF0; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802DDE0C; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802DDE20; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802DDE30; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802DDE3C; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802DDE48; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802DDE58; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802DDE68; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802DDE74; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802DDE80; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802DDE94; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802DDEBC; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802DDECC; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802DDED8; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802DDEE4; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802DDF00; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802DDF10; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802DDF1C; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802DDF38; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802DDF50; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802DDF5C; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802DDF78; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802DDF8C; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802DDF98; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802DDFA4; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802DDFB4; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802DDFC8; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802DDFE4; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802DE008; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802DE01C; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802DE030; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802DE03C; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802DE04C; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802DE060; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802DE07C; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802DE0A0; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802DE0AC; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802DE0C4; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802DE0D0; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802DE0DC; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802DE0E8; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802DE0FC; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802DE10C; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802DE120; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802DE13C; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802DE15C; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802DE17C; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802DE194; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802DE1A0; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802DE1BC; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802DE1D0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802DE1EC; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802DE214; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802DE230; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802DE248; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802DE254; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802DE268; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802DE288; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802DE298; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802DE2AC; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802DE2C0; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802DE2CC; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802DE2E8; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802DE30C; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802DE34C; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802DE360; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802DE36C; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802DE378; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802DE38C; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802DE39C; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802DE3B8; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802DE3DC; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802DE40C; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802DE430; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802DE450; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802DE45C; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802DE480; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802DE4E0; // type:label scope:local +@1737 = .data:0x802DE4E0; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802DE4EC; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802DE508; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802DE520; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802DE538; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802DE54C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802DE564; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802DE57C; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802DE59C; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802DE5B4; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802DE5D0; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802DE5E0; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802DE5FC; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802DE618; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802DE634; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802DE650; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802DE670; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802DE690; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802DE6AC; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802DE6C8; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802DE6E4; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802DE700; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802DE71C; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802DE72C; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802DE73C; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802DE748; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802DE754; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802DE764; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802DE774; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802DE780; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802DE78C; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802DE7A0; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802DE7C8; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802DE7D4; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802DE7E0; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802DE7EC; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802DE808; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802DE818; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802DE824; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802DE840; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802DE864; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802DE874; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802DE888; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802DE894; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802DE8A8; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802DE8BC; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802DE8DC; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802DE900; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802DE92C; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802DE960; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802DE978; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802DE9A0; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802DE9B4; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802DE9C4; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802DE9D8; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802DE9F4; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802DEA18; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802DEA28; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802DEA40; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802DEA4C; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802DEA64; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802DEA7C; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802DEA90; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802DEAA4; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802DEAC0; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802DEAF0; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802DEAFC; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802DEB10; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802DEB24; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802DEB30; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802DEB44; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802DEB64; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802DEB84; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802DEB94; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802DEBA0; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802DEBB4; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802DEBD0; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802DEBF0; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802DEC00; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802DEC28; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802DEC3C; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802DEC50; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802DEC5C; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802DEC70; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802DEC90; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802DECA4; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802DECB4; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802DECC0; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802DECD4; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802DECF4; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802DED04; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802DED10; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802DED24; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802DED40; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802DED60; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802DED78; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802DED8C; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802DEDAC; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802DEDBC; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802DEDC8; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802DEDD4; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802DEDE4; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802DEDF8; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802DEE14; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802DEE38; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802DEE70; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802DEE88; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802DEE94; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802DEEB0; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802DEEC0; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802DEECC; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802DEEF0; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802DEF04; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802DEF14; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802DEF20; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802DEF34; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802DEF54; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802DEF64; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802DEF70; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802DEF84; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802DEFA0; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802DEFD8; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802DEFEC; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802DEFF8; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802DF004; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802DF018; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802DF028; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802DF044; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802DF068; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802DF098; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802DF0B8; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802DF0D8; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802DF0E4; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802DF130; // type:label scope:local +@1728 = .data:0x802DF130; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802DF144; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802DF154; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802DF168; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802DF174; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802DF180; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802DF18C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802DF1A0; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802DF1BC; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802DF1D8; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802DF1E4; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802DF1F0; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802DF210; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802DF228; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802DF234; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802DF240; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802DF24C; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802DF260; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802DF274; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802DF290; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802DF2B4; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802DF2D0; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802DF2EC; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802DF308; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802DF314; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802DF330; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802DF340; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802DF34C; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802DF368; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802DF380; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802DF38C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DF3A8; // type:label scope:local +@1788 = .data:0x802DF3A8; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802DF3B8; // type:object size:0x9 scope:local align:4 data:string +@3938 = .data:0x802DF3C4; // type:object size:0xC scope:local align:4 data:string +@3940 = .data:0x802DF3D0; // type:object size:0xA scope:local align:4 data:string +@3941 = .data:0x802DF3DC; // type:object size:0x12 scope:local align:4 data:string +@3942 = .data:0x802DF3F0; // type:object size:0xC scope:local align:4 +@3939 = .data:0x802DF3FC; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802DF410; // type:object size:0x20 scope:global align:4 +@3949 = .data:0x802DF430; // type:object size:0xC scope:local align:4 data:string +@3950 = .data:0x802DF43C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802DF450; // type:object size:0x20 scope:global align:4 +@3951 = .data:0x802DF470; // type:object size:0xC scope:local align:4 data:string +@3952 = .data:0x802DF47C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802DF490; // type:object size:0x24 scope:global align:4 +@3953 = .data:0x802DF4B4; // type:object size:0x13 scope:local align:4 data:string +@3955 = .data:0x802DF4C8; // type:object size:0xF scope:local align:4 data:string +@3954 = .data:0x802DF4D8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802DF4EC; // type:object size:0x2C scope:global align:4 +@3956 = .data:0x802DF518; // type:object size:0x1E scope:local align:4 data:string +@3958 = .data:0x802DF538; // type:object size:0x11 scope:local align:4 data:string +@3959 = .data:0x802DF54C; // type:object size:0x14 scope:local align:4 +@3957 = .data:0x802DF560; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802DF584; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802DF5B4; // type:object size:0x24 scope:global align:4 +@3960 = .data:0x802DF5D8; // type:object size:0x16 scope:local align:4 data:string +@3961 = .data:0x802DF5F0; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802DF5FC; // type:object size:0x1C scope:global align:4 +@3962 = .data:0x802DF618; // type:object size:0xF scope:local align:4 data:string +@3963 = .data:0x802DF628; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802DF634; // type:object size:0x20 scope:global align:4 +@3964 = .data:0x802DF654; // type:object size:0x1D scope:local align:4 data:string +@3965 = .data:0x802DF674; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802DF688; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802DF6A4; // type:object size:0xE scope:local align:4 data:string +@3967 = .data:0x802DF6B4; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802DF6C8; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802DF6E4; // type:object size:0xD scope:local align:4 data:string +@3970 = .data:0x802DF6F4; // type:object size:0x11 scope:local align:4 data:string +@3971 = .data:0x802DF708; // type:object size:0x14 scope:local align:4 +@3969 = .data:0x802DF71C; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802DF738; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802DF754; // type:object size:0xD scope:local align:4 data:string +@3973 = .data:0x802DF764; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802DF778; // type:object size:0x20 scope:global align:4 +@3974 = .data:0x802DF798; // type:object size:0xB scope:local align:4 data:string +@3976 = .data:0x802DF7A4; // type:object size:0x11 scope:local align:4 data:string +@3977 = .data:0x802DF7B8; // type:object size:0x14 scope:local align:4 +@3975 = .data:0x802DF7CC; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802DF7E8; // type:object size:0x24 scope:global align:4 +@3978 = .data:0x802DF80C; // type:object size:0x9 scope:local align:4 data:string +@3979 = .data:0x802DF818; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802DF82C; // type:object size:0x20 scope:global align:4 +@3980 = .data:0x802DF84C; // type:object size:0x16 scope:local align:4 data:string +@3981 = .data:0x802DF864; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802DF880; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802DF8A0; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802DF8BC; // type:object size:0xF scope:local align:4 data:string +@3983 = .data:0x802DF8CC; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802DF8E0; // type:object size:0x1C scope:global align:4 +@3984 = .data:0x802DF8FC; // type:object size:0x9 scope:local align:4 data:string +@3985 = .data:0x802DF908; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802DF914; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802DF930; // type:object size:0x20 scope:global align:4 +@3987 = .data:0x802DF950; // type:object size:0xF scope:local align:4 data:string +@3988 = .data:0x802DF960; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802DF974; // type:object size:0x1C scope:global align:4 +@3989 = .data:0x802DF990; // type:object size:0x22 scope:local align:4 data:string +@3990 = .data:0x802DF9B4; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802DF9C8; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802DF9E8; // type:object size:0x1C scope:local align:4 data:string +@3992 = .data:0x802DFA04; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802DFA18; // type:object size:0x24 scope:global align:4 +@3993 = .data:0x802DFA3C; // type:object size:0xD scope:local align:4 data:string +@3994 = .data:0x802DFA4C; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802DFA60; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802DFA80; // type:object size:0x19 scope:local align:4 data:string +@3996 = .data:0x802DFA9C; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802DFAA8; // type:object size:0x1C scope:global align:4 +@3997 = .data:0x802DFAC4; // type:object size:0x1F scope:local align:4 data:string +@3998 = .data:0x802DFAE4; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802DFAF0; // type:object size:0x1C scope:global align:4 +@3999 = .data:0x802DFB0C; // type:object size:0xF scope:local align:4 data:string +@4000 = .data:0x802DFB1C; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802DFB38; // type:object size:0x24 scope:global align:4 +@4001 = .data:0x802DFB5C; // type:object size:0x1D scope:local align:4 data:string +@4002 = .data:0x802DFB7C; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802DFB88; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802DFBA4; // type:object size:0x12 scope:local align:4 data:string +@4005 = .data:0x802DFBB8; // type:object size:0xB scope:local align:4 data:string +@4006 = .data:0x802DFBC4; // type:object size:0xC scope:local align:4 +@4007 = .data:0x802DFBD0; // type:object size:0x13 scope:local align:4 data:string +@4008 = .data:0x802DFBE4; // type:object size:0x14 scope:local align:4 +@4004 = .data:0x802DFBF8; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802DFC14; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DFC30; // type:label scope:local +@1116 = .data:0x802DFC30; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802DFC40; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802DFC4C; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802DFC5C; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802DFC68; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802DFC7C; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802DFC88; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802DFC9C; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802DFCBC; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802DFCD8; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802DFCE4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802DFD20; // type:label scope:local +@1569 = .data:0x802DFD20; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802DFD30; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802DFD3C; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802DFD50; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802DFD5C; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802DFD68; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802DFD84; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802DFD98; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802DFDA4; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802DFDC0; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802DFDD0; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802DFDDC; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802DFE00; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802DFE14; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802DFE20; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802DFE40; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802DFE54; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802DFE60; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802DFE7C; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802DFE94; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802DFEA0; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802DFEC0; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802DFED0; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802DFEDC; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802DFEF8; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802DFF08; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802DFF14; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802DFF30; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802DFF50; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802DFF5C; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802DFF78; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802DFF98; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802DFFA4; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802DFFC0; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802DFFDC; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802DFFE8; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802E000C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802E0028; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802E0040; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802E004C; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802E0060; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802E0088; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E00A0; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E00B4; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E00DC; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E0104; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E0114; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E0124; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E0130; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E0144; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E0164; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E0174; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E0188; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E01A8; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E01C0; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E01CC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E01E8; // type:label scope:local +@1718 = .data:0x802E01E8; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E01F8; // type:object size:0xB scope:local align:4 data:string +@2312 = .data:0x802E0204; // type:object size:0xC scope:local align:4 data:string +@2314 = .data:0x802E0210; // type:object size:0xA scope:local align:4 data:string +@2315 = .data:0x802E021C; // type:object size:0x12 scope:local align:4 data:string +@2316 = .data:0x802E0230; // type:object size:0xC scope:local align:4 +@2313 = .data:0x802E023C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E0250; // type:object size:0x20 scope:global align:4 +@2323 = .data:0x802E0270; // type:object size:0x13 scope:local align:4 data:string +@2324 = .data:0x802E0284; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E0298; // type:object size:0x24 scope:global align:4 +@2325 = .data:0x802E02BC; // type:object size:0x1A scope:local align:4 data:string +@2326 = .data:0x802E02D8; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E02EC; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E0310; // type:object size:0xD scope:local align:4 data:string +@2329 = .data:0x802E0320; // type:object size:0xB scope:local align:4 data:string +@2330 = .data:0x802E032C; // type:object size:0xC scope:local align:4 +@2328 = .data:0x802E0338; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E034C; // type:object size:0x24 scope:global align:4 +@2331 = .data:0x802E0370; // type:object size:0xE scope:local align:4 data:string +@2333 = .data:0x802E0380; // type:object size:0xA scope:local align:4 data:string +@2332 = .data:0x802E038C; // type:object size:0xC scope:local align:4 +@2335 = .data:0x802E03B0; // type:object size:0xF scope:local align:4 data:string +@2336 = .data:0x802E03C0; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E03CC; // type:object size:0x20 scope:global align:4 +@2338 = .data:0x802E03EC; // type:object size:0xF scope:local align:4 data:string +@2339 = .data:0x802E03FC; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E0410; // type:object size:0x24 scope:global align:4 +@2340 = .data:0x802E0434; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E0444; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E0450; // type:object size:0x1C scope:global align:4 +@2342 = .data:0x802E046C; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E047C; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E0488; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E04A4; // type:object size:0x1C scope:local align:4 data:string +@2346 = .data:0x802E04C0; // type:object size:0xF scope:local align:4 data:string +@2347 = .data:0x802E04D0; // type:object size:0x14 scope:local align:4 +@2345 = .data:0x802E04E4; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E0500; // type:object size:0x24 scope:global align:4 +@2349 = .data:0x802E0524; // type:object size:0xC scope:local align:4 data:string +@2359 = .data:0x802E055C; // type:object size:0x15 scope:local align:4 data:string +@2360 = .data:0x802E0574; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E0588; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E05B0; // type:label scope:local +@579 = .data:0x802E05B0; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E05C4; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E05D4; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E05F8; // type:label scope:local +@658 = .data:0x802E05F8; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E0608; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E0618; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E0624; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E0648; // type:label scope:local +@581 = .data:0x802E0648; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E065C; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E066C; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E067C; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E068C; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E0698; // type:object size:0x24 scope:global align:4 +__vt__7P2DPane = .data:0x802E06C0; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E0700; // type:label scope:local +@655 = .data:0x802E0700; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E0710; // type:object size:0xB scope:local align:4 data:string +@1152 = .data:0x802E071C; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E0728; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E0768; // type:label scope:local +@765 = .data:0x802E0768; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E0778; // type:object size:0xA scope:local align:4 data:string +@840 = .data:0x802E0784; // type:object size:0x50 scope:local align:4 +@879 = .data:0x802E07D4; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E07E0; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802E0820; // type:label scope:local +@641 = .data:0x802E0820; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E0830; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E083C; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E0848; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E0888; // type:label scope:local +@636 = .data:0x802E0888; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E0898; // type:object size:0xB scope:local align:4 data:string +@728 = .data:0x802E08A4; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E08B0; // type:object size:0x3C scope:global align:4 +@878 = .data:0x802E08F0; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E0950; // type:label scope:local +@570 = .data:0x802E0950; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E095C; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E0968; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E0974; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E0980; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E098C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E09B0; // type:label scope:local +@1273 = .data:0x802E09B0; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E09C4; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E09D4; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E09EC; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E0A04; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E0A1C; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E0A34; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E0A4C; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E0A64; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E0A7C; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E0A94; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E0AAC; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E0AC4; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E0ADC; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E0AF4; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E0B0C; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E0B24; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E0B3C; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E0B54; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E0B6C; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E0B84; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E0B9C; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E0BE8; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E0C00; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E0C18; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E0C30; // type:object size:0x18 scope:local align:4 data:string +@2587 = .data:0x802E0C48; // type:object size:0x18 scope:local align:4 data:string +@2589 = .data:0x802E0C60; // type:object size:0xF scope:local align:4 data:string +@2590 = .data:0x802E0C70; // type:object size:0x14 scope:local align:4 data:string +@2591 = .data:0x802E0C84; // type:object size:0x1A scope:local align:4 data:string +@2592 = .data:0x802E0CA0; // type:object size:0x10 scope:local align:4 data:string +@2593 = .data:0x802E0CB0; // type:object size:0x14 scope:local align:4 +@2588 = .data:0x802E0CC4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E0CE8; // type:object size:0x10 scope:weak align:4 +@2658 = .data:0x802E0CF8; // type:object size:0x1D scope:local align:4 data:string +@2659 = .data:0x802E0D18; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E0D34; // type:object size:0x10 scope:weak align:4 +@2703 = .data:0x802E0D44; // type:object size:0x1C scope:local align:4 data:string +@2704 = .data:0x802E0D60; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E0D7C; // type:object size:0x10 scope:weak align:4 +@2707 = .data:0x802E0D8C; // type:object size:0x1B scope:local align:4 data:string +@2708 = .data:0x802E0DA8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E0DC4; // type:object size:0x10 scope:weak align:4 +@2717 = .data:0x802E0DD4; // type:object size:0x1C scope:local align:4 data:string +@2718 = .data:0x802E0DF0; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E0E0C; // type:object size:0x10 scope:weak align:4 +@2741 = .data:0x802E0E1C; // type:object size:0x1C scope:local align:4 data:string +@2743 = .data:0x802E0E38; // type:object size:0x13 scope:local align:4 data:string +@2742 = .data:0x802E0E4C; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E0E70; // type:object size:0x10 scope:weak align:4 +@2814 = .data:0x802E0E80; // type:object size:0x1C scope:local align:4 data:string +@2816 = .data:0x802E0E9C; // type:object size:0x13 scope:local align:4 data:string +@2815 = .data:0x802E0EB0; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E0EDC; // type:object size:0x10 scope:weak align:4 +@2898 = .data:0x802E0EEC; // type:object size:0x1C scope:local align:4 data:string +@2899 = .data:0x802E0F08; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E0F2C; // type:object size:0x10 scope:weak align:4 +@2945 = .data:0x802E0F3C; // type:object size:0x1E scope:local align:4 data:string +@2946 = .data:0x802E0F5C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E0F78; // type:object size:0x10 scope:weak align:4 +@2963 = .data:0x802E0F88; // type:object size:0x1B scope:local align:4 data:string +@2964 = .data:0x802E0FA4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E0FC8; // type:object size:0x1C scope:weak align:4 +@2997 = .data:0x802E0FE4; // type:object size:0x1E scope:local align:4 data:string +@2999 = .data:0x802E1004; // type:object size:0x16 scope:local align:4 data:string +@3000 = .data:0x802E101C; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802E1028; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E1054; // type:object size:0x10 scope:weak align:4 +@3001 = .data:0x802E1064; // type:object size:0x23 scope:local align:4 data:string +@3002 = .data:0x802E1088; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E10A4; // type:object size:0x10 scope:weak align:4 +@3038 = .data:0x802E10B4; // type:object size:0x1C scope:local align:4 data:string +@3039 = .data:0x802E10D0; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E10EC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E1118; // type:label scope:local +@708 = .data:0x802E1118; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802E112C; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802E113C; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802E114C; // type:object size:0x15 scope:local align:4 data:string +@1769 = .data:0x802E1164; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802E1170; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802E117C; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802E118C; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802E11A4; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802E11BC; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802E11D4; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802E11EC; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802E1204; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802E121C; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802E1234; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802E124C; // type:object size:0x17 scope:local align:4 data:string +@2884 = .data:0x802E1264; // type:object size:0x13 scope:local align:4 data:string +@2886 = .data:0x802E1278; // type:object size:0x14 scope:local align:4 data:string +@2887 = .data:0x802E128C; // type:object size:0x1A scope:local align:4 data:string +@2888 = .data:0x802E12A8; // type:object size:0x10 scope:local align:4 data:string +@2889 = .data:0x802E12B8; // type:object size:0x14 scope:local align:4 +@2885 = .data:0x802E12CC; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802E12E8; // type:object size:0x10 scope:weak align:4 +@2915 = .data:0x802E12F8; // type:object size:0x15 scope:local align:4 data:string +@2917 = .data:0x802E1310; // type:object size:0x18 scope:local align:4 data:string +@2916 = .data:0x802E1328; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802E134C; // type:object size:0x10 scope:weak align:4 +@2961 = .data:0x802E135C; // type:object size:0x19 scope:local align:4 data:string +@2962 = .data:0x802E1378; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802E139C; // type:object size:0x10 scope:weak align:4 +@2996 = .data:0x802E13AC; // type:object size:0x1C scope:local align:4 data:string +@2998 = .data:0x802E13C8; // type:object size:0xF scope:local align:4 data:string +@2999 = .data:0x802E13D8; // type:object size:0x14 scope:local align:4 data:string +@3000 = .data:0x802E13EC; // type:object size:0xC scope:local align:4 +@2997 = .data:0x802E13F8; // type:object size:0x2C scope:local align:4 +@3001 = .data:0x802E1450; // type:object size:0x9 scope:local align:4 data:string +@3002 = .data:0x802E145C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E1488; // type:label scope:local +@637 = .data:0x802E1488; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802E1498; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E14A4; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802E14B0; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802E14C0; // type:object size:0x11 scope:local align:4 data:string +@1537 = .data:0x802E14D4; // type:object size:0x14 scope:local align:4 data:string +@1538 = .data:0x802E14E8; // type:object size:0x1A scope:local align:4 data:string +@1539 = .data:0x802E1504; // type:object size:0x10 scope:local align:4 data:string +@1540 = .data:0x802E1514; // type:object size:0x14 scope:local align:4 +@1536 = .data:0x802E1528; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802E1544; // type:object size:0x10 scope:global align:4 +@1542 = .data:0x802E1570; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802E1580; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E1590; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802E15A8; // type:label scope:local +@635 = .data:0x802E15A8; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802E15B8; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802E15C4; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802E15DC; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802E15F0; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802E1600; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802E160C; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E161C; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802E163C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802E164C; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802E1664; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802E1670; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802E1684; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802E16A0; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802E16B0; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802E16C4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E1720; // type:label scope:local +@659 = .data:0x802E1720; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802E1730; // type:object size:0x9 scope:local align:4 data:string +@1825 = .data:0x802E173C; // type:object size:0xE scope:local align:4 data:string +@1827 = .data:0x802E174C; // type:object size:0x10 scope:local align:4 data:string +@1826 = .data:0x802E175C; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802E1768; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E1778; // type:label scope:local +@1607 = .data:0x802E1778; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802E178C; // type:object size:0x10 scope:local align:4 data:string +@2302 = .data:0x802E179C; // type:object size:0x11 scope:local align:4 data:string +@2304 = .data:0x802E17B0; // type:object size:0x29 scope:local align:4 data:string +@2303 = .data:0x802E17DC; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802E17E8; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802E17F4; // type:object size:0x15 scope:local align:4 data:string +@2306 = .data:0x802E180C; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802E1818; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802E1824; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802E1838; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802E1844; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802E1850; // type:label scope:local +@1756 = .data:0x802E1850; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802E1860; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802E186C; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802E1878; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802E1890; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802E18A4; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802E18B4; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802E18C4; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802E18D8; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802E18E8; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802E18F4; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802E1900; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802E1914; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802E1924; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802E1930; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E193C; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802E1950; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802E1978; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802E1998; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802E19A4; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802E19C0; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802E19CC; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802E19E0; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802E1A04; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802E1A18; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802E1A24; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802E1A40; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802E1A50; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802E1A78; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802E1A8C; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802E1A98; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802E1AA4; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802E1AB4; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802E1AC8; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802E1AE4; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802E1B08; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802E1B40; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802E1B54; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802E1B60; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802E1B7C; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802E1BA0; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802E1BB4; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802E1BC0; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802E1BD0; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802E1BE4; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802E1C00; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802E1C1C; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802E1C40; // type:object size:0x24 scope:weak align:4 +@3152 = .data:0x802E1C64; // type:object size:0x15 scope:local align:4 data:string +@3153 = .data:0x802E1C7C; // type:object size:0xC scope:local align:4 +@3186 = .data:0x802E1CA4; // type:object size:0xF scope:local align:4 data:string +@3187 = .data:0x802E1CB4; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802E1CC8; // type:object size:0x1C scope:weak align:4 +@3741 = .data:0x802E1CE4; // type:object size:0x1E scope:local align:4 data:string +@3743 = .data:0x802E1D04; // type:object size:0x17 scope:local align:4 data:string +@3744 = .data:0x802E1D1C; // type:object size:0xC scope:local align:4 +@3745 = .data:0x802E1D28; // type:object size:0x18 scope:local align:4 data:string +@3746 = .data:0x802E1D40; // type:object size:0x14 scope:local align:4 +@3742 = .data:0x802E1D54; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802E1D70; // type:object size:0x28 scope:weak align:4 +@3752 = .data:0x802E1D98; // type:object size:0x16 scope:local align:4 data:string +@3753 = .data:0x802E1DB0; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802E1DBC; // type:object size:0x1C scope:weak align:4 +@3820 = .data:0x802E1DD8; // type:object size:0x12 scope:local align:4 data:string +@3821 = .data:0x802E1DEC; // type:object size:0xC scope:local align:4 +@3834 = .data:0x802E1E18; // type:object size:0x11 scope:local align:4 data:string +@3836 = .data:0x802E1E2C; // type:object size:0xB scope:local align:4 data:string +@3837 = .data:0x802E1E38; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802E1E44; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802E1E58; // type:object size:0x20 scope:weak align:4 +@3841 = .data:0x802E1E78; // type:object size:0x10 scope:local align:4 data:string +@3843 = .data:0x802E1E88; // type:object size:0xA scope:local align:4 data:string +@3844 = .data:0x802E1E94; // type:object size:0x14 scope:local align:4 +@3842 = .data:0x802E1EA8; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802E1EC4; // type:object size:0x1C scope:weak align:4 +@3855 = .data:0x802E1EE0; // type:object size:0xF scope:local align:4 data:string +@3856 = .data:0x802E1EF0; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802E1EFC; // type:object size:0x1C scope:weak align:4 +@3881 = .data:0x802E1F34; // type:object size:0x14 scope:local align:4 data:string +@3884 = .data:0x802E1F48; // type:object size:0x9 scope:local align:4 data:string +@3885 = .data:0x802E1F54; // type:object size:0xC scope:local align:4 +@3887 = .data:0x802E1F60; // type:object size:0x14 scope:local align:4 +@3888 = .data:0x802E1F74; // type:object size:0xF scope:local align:4 data:string +@3889 = .data:0x802E1F84; // type:object size:0x1C scope:local align:4 +@3882 = .data:0x802E1FA0; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802E1FC4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E1FF8; // type:label scope:local +@635 = .data:0x802E1FF8; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802E200C; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802E201C; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802E202C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802E2040; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802E205C; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802E206C; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802E2080; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802E209C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E20C8; // type:label scope:local +@1737 = .data:0x802E20C8; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E20D8; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802E20E4; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802E20FC; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802E210C; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802E2124; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802E2138; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802E2158; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802E217C; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802E219C; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802E21BC; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802E21E0; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802E2204; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802E2224; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802E2244; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802E2268; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802E2288; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802E22A8; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802E22C0; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802E22D0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802E22DC; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802E22E8; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802E22F8; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802E2304; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802E2310; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802E232C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802E233C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802E2348; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802E2364; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802E2378; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802E238C; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802E2398; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802E23AC; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802E23CC; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802E23E0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802E23F4; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802E2434; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802E2454; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802E2468; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802E2474; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802E248C; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802E24A0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802E24BC; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802E24E4; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802E24F8; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802E2520; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802E2534; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802E2540; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802E255C; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802E2570; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802E257C; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802E2588; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802E259C; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802E25D4; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802E25E8; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802E25F8; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802E2604; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802E2610; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802E2624; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802E264C; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802E2664; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802E2670; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802E267C; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802E2690; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802E26A0; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802E26BC; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802E26E0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E2710; // type:label scope:local +@1737 = .data:0x802E2710; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E2720; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802E272C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802E2744; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802E2754; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802E276C; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802E2780; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802E2794; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802E27A8; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802E27C8; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802E27EC; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802E280C; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802E282C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802E2850; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802E2874; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802E2894; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802E28B4; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802E28D8; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802E28F8; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802E2918; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802E2930; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802E2940; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802E294C; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802E2958; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802E2968; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802E2974; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802E299C; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802E29AC; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802E29D4; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802E29E8; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802E29FC; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802E2A08; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802E2A1C; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802E2A3C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802E2A50; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802E2A64; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802E2AA4; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802E2AC4; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802E2AD8; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802E2AE4; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802E2AFC; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802E2B10; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802E2B2C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802E2B54; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802E2B68; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802E2B90; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802E2BA4; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802E2BCC; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802E2BE0; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802E2BF4; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802E2C08; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802E2C24; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E2C48; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E2C5C; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802E2C68; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E2C74; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802E2CC0; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802E2CD4; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802E2CE4; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802E2CF0; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802E2CFC; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802E2D10; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802E2D38; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802E2D50; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802E2D5C; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802E2D68; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802E2D7C; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802E2D8C; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802E2DA8; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802E2DCC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E2E00; // type:label scope:local +@1737 = .data:0x802E2E00; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E2E10; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802E2E1C; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802E2E34; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802E2E44; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802E2E6C; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802E2E94; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802E2EAC; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802E2EC8; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802E2EE0; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802E2EF4; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802E2F08; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802E2F1C; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802E2F3C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802E2F60; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802E2F80; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802E2FA0; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802E2FC4; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802E2FE8; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802E3008; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802E3028; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802E304C; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802E306C; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802E308C; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802E30A4; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802E30B4; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802E30C0; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802E30CC; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802E30DC; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802E30E8; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802E3110; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802E3120; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802E3148; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802E315C; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802E3170; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802E317C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802E3190; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802E31B0; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802E31C4; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802E31D8; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802E3218; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802E3238; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802E324C; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802E3258; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802E3270; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802E3284; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802E32A0; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802E32C8; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802E32DC; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802E3304; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802E3318; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E3340; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802E3354; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802E3368; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802E3384; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802E339C; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802E33AC; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802E33B8; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802E33C8; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802E33DC; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802E33F8; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802E3418; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802E3434; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802E344C; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802E3458; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802E346C; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802E3488; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802E34A4; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802E34B8; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802E34D4; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802E34EC; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802E34FC; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802E3508; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802E351C; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802E353C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802E3554; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802E3580; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802E358C; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802E35A4; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802E35B8; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802E35CC; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802E35E8; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802E3600; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802E3610; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802E3624; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802E3640; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802E3660; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802E3680; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802E3694; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802E36A8; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802E36BC; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802E36D8; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802E36FC; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802E3710; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802E371C; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802E3728; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802E3774; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802E3788; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802E3798; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802E37A4; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802E37B0; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802E37C4; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802E37EC; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802E3804; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802E3810; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802E381C; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802E3830; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802E3840; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802E385C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802E3880; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E38B0; // type:label scope:local +@1737 = .data:0x802E38B0; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E38C0; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802E38CC; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802E38E4; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802E38FC; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802E391C; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802E393C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802E395C; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802E397C; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802E39A0; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802E39C4; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802E39E4; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802E3A04; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802E3A24; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802E3A44; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802E3A64; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802E3A78; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802E3A88; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802E3A94; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802E3AA0; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802E3AB8; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802E3AC4; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802E3AD0; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802E3AEC; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802E3AF8; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802E3B04; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802E3B10; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802E3B24; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802E3B40; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802E3B58; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802E3B6C; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802E3B78; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802E3B8C; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802E3BCC; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802E3BDC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802E3BF0; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802E3C28; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E3C3C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802E3C4C; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802E3C58; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802E3C64; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802E3C78; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802E3CA0; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802E3CB4; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802E3CC0; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802E3CCC; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802E3CE0; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802E3CF0; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802E3D0C; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802E3D30; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E3D60; // type:label scope:local +@1737 = .data:0x802E3D60; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E3D70; // type:object size:0xA scope:local align:4 data:string +@2114 = .data:0x802E3D7C; // type:object size:0xF scope:local align:4 +@2117 = .data:0x802E3D8C; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802E3D9C; // type:object size:0x1D scope:local align:4 +@2120 = .data:0x802E3DBC; // type:object size:0x19 scope:local align:4 +@2122 = .data:0x802E3DD8; // type:object size:0xF scope:local align:4 +@2124 = .data:0x802E3DE8; // type:object size:0x15 scope:local align:4 +@2771 = .data:0x802E3E00; // type:object size:0x1D scope:local align:4 data:string +@2772 = .data:0x802E3E20; // type:object size:0x1F scope:local align:4 data:string +@2773 = .data:0x802E3E40; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802E3E60; // type:object size:0x1E scope:local align:4 data:string +@2775 = .data:0x802E3E80; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E3EA4; // type:object size:0x21 scope:local align:4 data:string +@2777 = .data:0x802E3EC8; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802E3EE8; // type:object size:0x1E scope:local align:4 data:string +@2779 = .data:0x802E3F08; // type:object size:0x1F scope:local align:4 data:string +@2780 = .data:0x802E3F28; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802E3F48; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802E3F68; // type:object size:0x13 scope:local align:4 data:string +@2784 = .data:0x802E3F7C; // type:object size:0xD scope:local align:4 data:string +@2783 = .data:0x802E3F8C; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802E3F98; // type:object size:0xC scope:global align:4 +@2785 = .data:0x802E3FA4; // type:object size:0x12 scope:local align:4 data:string +@2787 = .data:0x802E3FB8; // type:object size:0xD scope:local align:4 data:string +@2788 = .data:0x802E3FC8; // type:object size:0xC scope:local align:4 data:string +@2789 = .data:0x802E3FD4; // type:object size:0xC scope:local align:4 +@2786 = .data:0x802E3FE0; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802E3FF4; // type:object size:0x28 scope:global align:4 +@2790 = .data:0x802E401C; // type:object size:0x12 scope:local align:4 data:string +@2792 = .data:0x802E4030; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802E403C; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802E4048; // type:object size:0x1C scope:weak align:4 +@2810 = .data:0x802E4064; // type:object size:0x14 scope:local align:4 data:string +@2811 = .data:0x802E4078; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802E4084; // type:object size:0x1C scope:weak align:4 +@2900 = .data:0x802E40A0; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E40B0; // type:object size:0x12 scope:local align:4 data:string +@2903 = .data:0x802E40C4; // type:object size:0xC scope:local align:4 +@2904 = .data:0x802E40D0; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802E40E0; // type:object size:0x14 scope:local align:4 +@2901 = .data:0x802E40F4; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802E4110; // type:object size:0x20 scope:weak align:4 +@3001 = .data:0x802E4130; // type:object size:0xC scope:local align:4 data:string +@3011 = .data:0x802E4168; // type:object size:0x19 scope:local align:4 data:string +@3012 = .data:0x802E4184; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802E4198; // type:object size:0x1C scope:weak align:4 +@3066 = .data:0x802E41B4; // type:object size:0x10 scope:local align:4 data:string +@3067 = .data:0x802E41C4; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802E41D8; // type:object size:0x1C scope:weak align:4 +@3087 = .data:0x802E41F4; // type:object size:0x11 scope:local align:4 data:string +@3089 = .data:0x802E4208; // type:object size:0x1C scope:local align:4 data:string +@3090 = .data:0x802E4224; // type:object size:0x14 scope:local align:4 +@3088 = .data:0x802E4238; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802E4254; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802E4278; // type:object size:0xF scope:local align:4 data:string +@3134 = .data:0x802E4288; // type:object size:0xC scope:local align:4 +@3136 = .data:0x802E42B0; // type:object size:0xF scope:local align:4 data:string +@3138 = .data:0x802E42C0; // type:object size:0x9 scope:local align:4 data:string +@3139 = .data:0x802E42CC; // type:object size:0x14 scope:local align:4 +@3137 = .data:0x802E42E0; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802E42FC; // type:object size:0x20 scope:weak align:4 +@3166 = .data:0x802E431C; // type:object size:0x13 scope:local align:4 data:string +@3168 = .data:0x802E4330; // type:object size:0xB scope:local align:4 data:string +@3169 = .data:0x802E433C; // type:object size:0xC scope:local align:4 +@3170 = .data:0x802E4348; // type:object size:0xD scope:local align:4 data:string +@3171 = .data:0x802E4358; // type:object size:0x14 scope:local align:4 +@3167 = .data:0x802E436C; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802E4388; // type:object size:0x24 scope:weak align:4 +@3178 = .data:0x802E43AC; // type:object size:0x15 scope:local align:4 data:string +@3180 = .data:0x802E43C4; // type:object size:0xF scope:local align:4 data:string +@3181 = .data:0x802E43D4; // type:object size:0x1C scope:local align:4 +@3179 = .data:0x802E43F0; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802E4414; // type:object size:0x24 scope:weak align:4 +@3221 = .data:0x802E4438; // type:object size:0xE scope:local align:4 data:string +@3223 = .data:0x802E4448; // type:object size:0xA scope:local align:4 data:string +@3222 = .data:0x802E4454; // type:object size:0xC scope:local align:4 +@3225 = .data:0x802E4478; // type:object size:0x12 scope:local align:4 data:string +@3226 = .data:0x802E448C; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802E4498; // type:object size:0x1C scope:weak align:4 +@3492 = .data:0x802E44B4; // type:object size:0x10 scope:local align:4 data:string +@3494 = .data:0x802E44C4; // type:object size:0xA scope:local align:4 data:string +@3495 = .data:0x802E44D0; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802E44E4; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802E4500; // type:object size:0x1C scope:weak align:4 +@3558 = .data:0x802E451C; // type:object size:0xF scope:local align:4 data:string +@3559 = .data:0x802E452C; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802E4538; // type:object size:0x1C scope:weak align:4 +@3565 = .data:0x802E4570; // type:object size:0x14 scope:local align:4 data:string +@3568 = .data:0x802E4584; // type:object size:0x9 scope:local align:4 data:string +@3569 = .data:0x802E4590; // type:object size:0xC scope:local align:4 +@3571 = .data:0x802E459C; // type:object size:0x14 scope:local align:4 +@3572 = .data:0x802E45B0; // type:object size:0xF scope:local align:4 data:string +@3573 = .data:0x802E45C0; // type:object size:0x1C scope:local align:4 +@3566 = .data:0x802E45DC; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802E4600; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E4630; // type:label scope:local +@1737 = .data:0x802E4630; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E4640; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802E464C; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802E465C; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802E466C; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802E4688; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802E46A8; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802E46C8; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802E46E8; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802E4708; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802E4728; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802E4748; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802E4768; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802E4788; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802E47A8; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802E47C8; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802E47DC; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802E47EC; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802E47F8; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802E4804; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802E4818; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802E4828; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802E4834; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802E4840; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802E4854; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802E487C; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802E4890; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802E489C; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802E48B0; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802E48BC; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802E48D0; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802E48EC; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802E4904; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802E4918; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802E4924; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802E4938; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802E4978; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802E4988; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802E4994; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802E49CC; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802E49E0; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802E49EC; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802E49F8; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802E4A0C; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802E4A1C; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802E4A38; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802E4A5C; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802E4A8C; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802E4AB0; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802E4AD0; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802E4ADC; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802E4B00; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E4B60; // type:label scope:local +@1716 = .data:0x802E4B60; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802E4B70; // type:object size:0xB scope:local align:4 data:string +@1808 = .data:0x802E4B7C; // type:object size:0x13 scope:local align:4 data:string +@1810 = .data:0x802E4B90; // type:object size:0xA scope:local align:4 data:string +@1809 = .data:0x802E4B9C; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802E4BA8; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802E4BC8; // type:label scope:local +@1737 = .data:0x802E4BC8; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E4BD8; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802E4BE4; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802E4BF8; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802E4C0C; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802E4C2C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E4C44; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802E4C58; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802E4C70; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802E4C84; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802E4CA4; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802E4CC4; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802E4CE4; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802E4D04; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802E4D28; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802E4D4C; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802E4D6C; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802E4D8C; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802E4DAC; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802E4DCC; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802E4DEC; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802E4E00; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802E4E10; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802E4E1C; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802E4E28; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802E4E3C; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802E4E4C; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802E4E58; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802E4E64; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802E4E78; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802E4EA0; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802E4EB4; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802E4EC0; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802E4ED4; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802E4EE0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802E4EF4; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802E4F10; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802E4F2C; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802E4F38; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802E4F54; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802E4F64; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802E4F70; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802E4F7C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802E4F90; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802E4FB0; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802E4FE8; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802E4FFC; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802E501C; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802E5028; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802E503C; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802E5058; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802E5070; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802E507C; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802E5098; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802E50AC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802E50C0; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802E50DC; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802E50F0; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802E50FC; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802E5118; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802E512C; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802E5158; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802E5174; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802E518C; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802E5198; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802E51AC; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802E51E4; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802E51F8; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802E5214; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802E5228; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802E5244; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802E5268; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802E5280; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802E5290; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802E529C; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802E52B0; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802E52D0; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802E52E8; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802E52FC; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802E5308; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802E531C; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802E533C; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802E534C; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802E5374; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802E538C; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802E5398; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802E53B4; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802E53C8; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802E53DC; // type:object size:0x1C scope:weak align:4 +@3686 = .data:0x802E53F8; // type:object size:0x12 scope:local align:4 data:string +@3687 = .data:0x802E540C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802E5420; // type:object size:0x1C scope:weak align:4 +@3693 = .data:0x802E543C; // type:object size:0x1B scope:local align:4 data:string +@3695 = .data:0x802E5458; // type:object size:0x15 scope:local align:4 data:string +@3696 = .data:0x802E5470; // type:object size:0xC scope:local align:4 +@3694 = .data:0x802E547C; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802E5490; // type:object size:0x20 scope:weak align:4 +@3700 = .data:0x802E54B0; // type:object size:0x28 scope:local align:4 data:string +@3702 = .data:0x802E54D8; // type:object size:0x22 scope:local align:4 data:string +@3703 = .data:0x802E54FC; // type:object size:0x14 scope:local align:4 +@3701 = .data:0x802E5510; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802E552C; // type:object size:0x20 scope:weak align:4 +@3714 = .data:0x802E554C; // type:object size:0x1C scope:local align:4 data:string +@3716 = .data:0x802E5568; // type:object size:0x11 scope:local align:4 data:string +@3717 = .data:0x802E557C; // type:object size:0x14 scope:local align:4 +@3718 = .data:0x802E5590; // type:object size:0x16 scope:local align:4 data:string +@3719 = .data:0x802E55A8; // type:object size:0x1C scope:local align:4 +@3715 = .data:0x802E55C4; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802E55E8; // type:object size:0x20 scope:weak align:4 +@3730 = .data:0x802E5608; // type:object size:0x10 scope:local align:4 data:string +@3732 = .data:0x802E5618; // type:object size:0xA scope:local align:4 data:string +@3733 = .data:0x802E5624; // type:object size:0x14 scope:local align:4 +@3731 = .data:0x802E5638; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802E5654; // type:object size:0x1C scope:weak align:4 +@3753 = .data:0x802E5670; // type:object size:0xF scope:local align:4 data:string +@3754 = .data:0x802E5680; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802E568C; // type:object size:0x1C scope:weak align:4 +@3757 = .data:0x802E56C4; // type:object size:0x14 scope:local align:4 data:string +@3760 = .data:0x802E56D8; // type:object size:0x9 scope:local align:4 data:string +@3761 = .data:0x802E56E4; // type:object size:0xC scope:local align:4 +@3763 = .data:0x802E56F0; // type:object size:0x14 scope:local align:4 +@3764 = .data:0x802E5704; // type:object size:0xF scope:local align:4 data:string +@3765 = .data:0x802E5714; // type:object size:0x1C scope:local align:4 +@3758 = .data:0x802E5730; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802E5754; // type:object size:0x30 scope:weak align:4 +@722 = .data:0x802E5788; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802E57A0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E57B0; // type:label scope:local +@1134 = .data:0x802E57B0; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802E57C4; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802E57D4; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802E57EC; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802E5804; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802E581C; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802E5834; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802E584C; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802E5864; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802E587C; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802E5894; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802E58AC; // type:object size:0x14 scope:local align:4 data:string +@3696 = .data:0x802E58C0; // type:object size:0x24 scope:local align:4 +@6977 = .data:0x802E58E4; // type:object size:0x1C scope:local align:4 data:string +@6979 = .data:0x802E5900; // type:object size:0xF scope:local align:4 data:string +@6980 = .data:0x802E5910; // type:object size:0x14 scope:local align:4 data:string +@6981 = .data:0x802E5924; // type:object size:0xC scope:local align:4 +@6982 = .data:0x802E5930; // type:object size:0x14 scope:local align:4 data:string +@6983 = .data:0x802E5944; // type:object size:0x1A scope:local align:4 data:string +@6984 = .data:0x802E5960; // type:object size:0x10 scope:local align:4 data:string +@6985 = .data:0x802E5970; // type:object size:0x14 scope:local align:4 +@6978 = .data:0x802E5984; // type:object size:0x2C scope:local align:4 +@6987 = .data:0x802E59C0; // type:object size:0x24 scope:local align:4 data:string +@6988 = .data:0x802E59E4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802E5A08; // type:object size:0x10 scope:weak align:4 +@818 = .data:0x802E5A38; // type:object size:0x15 scope:local align:4 data:string +@768 = .data:0x802E5A50; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802E5A68; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802E5A80; // type:label scope:local +@1135 = .data:0x802E5A80; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802E5A8C; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802E5A9C; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802E5AA8; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E5AD0; // type:label scope:local +@660 = .data:0x802E5AD0; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802E5AE0; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802E5AEC; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802E5B04; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802E5B1C; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802E5B34; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802E5B4C; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802E5B64; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802E5B7C; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802E5B94; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802E5BAC; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802E5BC8; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802E5BE4; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802E5C00; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802E5C18; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802E5C34; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802E5C50; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802E5C6C; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802E5C88; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802E5CA0; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802E5CB8; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802E5CD0; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802E5CEC; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802E5D04; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802E5D1C; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802E5D38; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802E5D54; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802E5D70; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802E5D88; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802E5DA4; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802E5DC0; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802E5DDC; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802E5DF8; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802E5E14; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802E5E30; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802E5E4C; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802E5E68; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802E5E84; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802E5EA0; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802E5EBC; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802E5ED8; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802E5EF0; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802E5F0C; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802E5F28; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802E5F44; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802E5F60; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802E5F7C; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802E5F98; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802E5FB4; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802E5FCC; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802E5FE8; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802E6000; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802E601C; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802E6038; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802E6050; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802E6068; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802E6080; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802E6098; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802E60B0; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802E60C8; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802E60E0; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802E60FC; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802E6114; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802E612C; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802E6144; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802E63B4; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802E63D8; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E63F0; // type:label scope:local +@1737 = .data:0x802E63F0; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E6400; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802E640C; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802E6428; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802E6448; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802E6468; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802E6488; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802E64A8; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802E64C8; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802E64E8; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802E6508; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802E6528; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802E6548; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802E6568; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802E657C; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802E658C; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802E6598; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802E65A4; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802E65B4; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802E65C0; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802E65CC; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802E65D8; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802E65EC; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802E6624; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802E6638; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802E6648; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802E6654; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E6660; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802E6674; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802E669C; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802E66B0; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802E66BC; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802E66C8; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802E66DC; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802E66EC; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802E6708; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802E672C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E6760; // type:label scope:local +@1737 = .data:0x802E6760; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E6770; // type:object size:0x9 scope:local align:4 data:string +@1938 = .data:0x802E677C; // type:object size:0x17 scope:local align:4 +@1941 = .data:0x802E6794; // type:object size:0x17 scope:local align:4 +@2297 = .data:0x802E67AC; // type:object size:0x1C scope:local align:4 data:string +@2298 = .data:0x802E67C8; // type:object size:0x1E scope:local align:4 data:string +@2299 = .data:0x802E67E8; // type:object size:0x1D scope:local align:4 data:string +@2300 = .data:0x802E6808; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802E6828; // type:object size:0x20 scope:local align:4 data:string +@2302 = .data:0x802E6848; // type:object size:0x20 scope:local align:4 data:string +@2303 = .data:0x802E6868; // type:object size:0x1D scope:local align:4 data:string +@2304 = .data:0x802E6888; // type:object size:0x1D scope:local align:4 data:string +@2305 = .data:0x802E68A8; // type:object size:0x1E scope:local align:4 data:string +@2306 = .data:0x802E68C8; // type:object size:0x1D scope:local align:4 data:string +@2307 = .data:0x802E68E8; // type:object size:0x1D scope:local align:4 data:string +@2308 = .data:0x802E6908; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802E691C; // type:object size:0xD scope:local align:4 data:string +@2309 = .data:0x802E692C; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802E6938; // type:object size:0xC scope:global align:4 +@2311 = .data:0x802E6944; // type:object size:0x11 scope:local align:4 data:string +@2313 = .data:0x802E6958; // type:object size:0xA scope:local align:4 data:string +@2314 = .data:0x802E6964; // type:object size:0x12 scope:local align:4 data:string +@2315 = .data:0x802E6978; // type:object size:0xC scope:local align:4 +@2312 = .data:0x802E6984; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802E6998; // type:object size:0x1C scope:weak align:4 +@2590 = .data:0x802E69B4; // type:object size:0x12 scope:local align:4 data:string +@2591 = .data:0x802E69C8; // type:object size:0xC scope:local align:4 +@2604 = .data:0x802E69F4; // type:object size:0x10 scope:local align:4 data:string +@2606 = .data:0x802E6A04; // type:object size:0x1A scope:local align:4 data:string +@2607 = .data:0x802E6A20; // type:object size:0x14 scope:local align:4 +@2605 = .data:0x802E6A34; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802E6A50; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E6A74; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E6A88; // type:object size:0x1F scope:local align:4 data:string +@2620 = .data:0x802E6AA8; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E6AB4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802E6AC8; // type:object size:0x1C scope:weak align:4 +@2631 = .data:0x802E6AE4; // type:object size:0xE scope:local align:4 data:string +@2632 = .data:0x802E6AF4; // type:object size:0x14 scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802E6B08; // type:object size:0x1C scope:weak align:4 +@2693 = .data:0x802E6B40; // type:object size:0x11 scope:local align:4 data:string +@2695 = .data:0x802E6B54; // type:object size:0xD scope:local align:4 data:string +@2696 = .data:0x802E6B64; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802E6B70; // type:object size:0xC scope:local align:4 +@2694 = .data:0x802E6B7C; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802E6B90; // type:object size:0x28 scope:weak align:4 +@2698 = .data:0x802E6BB8; // type:object size:0x13 scope:local align:4 data:string +@2701 = .data:0x802E6BCC; // type:object size:0x9 scope:local align:4 data:string +@2702 = .data:0x802E6BD8; // type:object size:0xC scope:local align:4 +@2704 = .data:0x802E6BE4; // type:object size:0x14 scope:local align:4 +@2705 = .data:0x802E6BF8; // type:object size:0xF scope:local align:4 data:string +@2706 = .data:0x802E6C08; // type:object size:0x1C scope:local align:4 +@2699 = .data:0x802E6C24; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802E6C48; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E6C78; // type:label scope:local +@1092 = .data:0x802E6C78; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802E6C90; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802E6CA4; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802E6CB0; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E6CC8; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802E6CE0; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802E6CF8; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802E6D10; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802E6D24; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802E6D34; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802E6D48; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802E6D54; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802E6D68; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802E6D98; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802E6DA4; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802E6DB0; // type:object size:0xC scope:local align:4 data:4byte +@649 = .data:0x802E6DC0; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802E6DCC; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802E6DD8; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802E6DE4; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802E6DF0; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802E6DFC; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802E6E08; // type:object size:0xC scope:local align:4 data:4byte +...data.0 = .data:0x802E6E18; // type:label scope:local +@635 = .data:0x802E6E18; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802E6E28; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802E6E34; // type:object size:0xC scope:local align:4 +@650 = .data:0x802E6E40; // type:object size:0xC scope:local align:4 +@652 = .data:0x802E6E4C; // type:object size:0xC scope:local align:4 +@727 = .data:0x802E6E58; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802E6E64; // type:object size:0xC scope:local align:4 +@817 = .data:0x802E6E70; // type:object size:0xC scope:local align:4 +@824 = .data:0x802E6E7C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E6E88; // type:label scope:local +@866 = .data:0x802E6E88; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802E6E9C; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802E6EAC; // type:object size:0x16 scope:local align:4 data:string +@1118 = .data:0x802E6EC4; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802E6EDC; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802E6EF4; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802E6F00; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802E6F0C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802E6F18; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802E6F24; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802E6F30; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802E6F3C; // type:object size:0x17 scope:local align:4 data:string +@1363 = .data:0x802E6F54; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E6F6C; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802E6F78; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802E6F84; // type:object size:0xC scope:weak align:4 +@1364 = .data:0x802E6F90; // type:object size:0x1C scope:local align:4 data:string +@1366 = .data:0x802E6FAC; // type:object size:0xF scope:local align:4 data:string +@1367 = .data:0x802E6FBC; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802E6FD0; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802E6FDC; // type:object size:0x14 scope:local align:4 data:string +@1370 = .data:0x802E6FF0; // type:object size:0x1A scope:local align:4 data:string +@1371 = .data:0x802E700C; // type:object size:0x10 scope:local align:4 data:string +@1372 = .data:0x802E701C; // type:object size:0x14 scope:local align:4 +@1365 = .data:0x802E7030; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E7088; // type:label scope:local +@660 = .data:0x802E7088; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802E709C; // type:object size:0xD scope:local align:4 data:string +@897 = .data:0x802E70AC; // type:object size:0xC scope:local align:4 +@899 = .data:0x802E70B8; // type:object size:0xC scope:local align:4 +@901 = .data:0x802E70C4; // type:object size:0xC scope:local align:4 +@903 = .data:0x802E70D0; // type:object size:0x12 scope:local align:4 data:string +@905 = .data:0x802E70E4; // type:object size:0x10 scope:local align:4 data:string +@904 = .data:0x802E70F4; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802E7100; // type:object size:0x2C scope:global align:4 +@901 = .data:0x802E7130; // type:object size:0x16 scope:local align:4 data:string +@977 = .data:0x802E7148; // type:object size:0x15 scope:local align:4 data:string +@731 = .data:0x802E7160; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802E7178; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802E7190; // type:object size:0x28 scope:local align:4 +@1152 = .data:0x802E71B8; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802E71E0; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802E71F0; // type:object size:0xD scope:local align:4 data:string +@1446 = .data:0x802E7200; // type:object size:0x1C scope:local align:4 +@1466 = .data:0x802E721C; // type:object size:0x1C scope:local align:4 +@1481 = .data:0x802E7238; // type:object size:0x1C scope:local align:4 +@913 = .data:0x802E7258; // type:object size:0x28 scope:local align:4 +@951 = .data:0x802E7280; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802E72A8; // type:label scope:local +@51 = .data:0x802E72A8; // type:object size:0x1E scope:local align:4 data:string +@52 = .data:0x802E72C8; // type:object size:0x16 scope:local align:4 data:string +@53 = .data:0x802E72E0; // type:object size:0xC scope:local align:4 data:string +@54 = .data:0x802E72EC; // type:object size:0x9 scope:local align:4 data:string +@55 = .data:0x802E72F8; // type:object size:0x10 scope:local align:4 data:string +@56 = .data:0x802E7308; // type:object size:0xB scope:local align:4 data:string +@57 = .data:0x802E7314; // type:object size:0xE scope:local align:4 data:string +@58 = .data:0x802E7324; // type:object size:0xD scope:local align:4 data:string +@59 = .data:0x802E7334; // type:object size:0xD scope:local align:4 data:string +@60 = .data:0x802E7344; // type:object size:0xD scope:local align:4 data:string +@61 = .data:0x802E7354; // type:object size:0x12 scope:local align:4 data:string +@62 = .data:0x802E7368; // type:object size:0xE scope:local align:4 data:string +@63 = .data:0x802E7378; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802E7390; // type:object size:0x3C scope:local align:4 +@97 = .data:0x802E73CC; // type:object size:0x1B scope:local align:4 data:string +@98 = .data:0x802E73E8; // type:object size:0x2E scope:local align:4 data:string +@99 = .data:0x802E7418; // type:object size:0x2F scope:local align:4 data:string +@100 = .data:0x802E7448; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802E7468; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802E74E8; // type:label scope:local +@69 = .data:0x802E74E8; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802E7514; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802E752C; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802E7548; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802E7578; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802E75B4; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802E75EC; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802E762C; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802E7658; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802E7678; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802E7694; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802E76B0; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802E76CC; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802E76E4; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802E7718; // type:label scope:local +@59 = .data:0x802E7718; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802E775C; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802E778C; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802E77BC; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802E77EC; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802E7800; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802E7824; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802E7838; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802E7854; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802E7868; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802E7888; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802E78B0; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802E78CC; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802E78F0; // type:label scope:local +@10 = .data:0x802E78F0; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802E7908; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802E7930; // type:object size:0x1C scope:local align:4 data:string +@29 = .data:0x802E794C; // type:object size:0x1D scope:local align:4 data:string +@30 = .data:0x802E796C; // type:object size:0x17 scope:local align:4 data:string +@32 = .data:0x802E7984; // type:object size:0x30 scope:local align:4 data:string +@33 = .data:0x802E79B4; // type:object size:0x60 scope:local align:4 data:string +@34 = .data:0x802E7A14; // type:object size:0x4C scope:local align:4 data:string +@35 = .data:0x802E7A60; // type:object size:0x62 scope:local align:4 data:string +@36 = .data:0x802E7AC4; // type:object size:0x60 scope:local align:4 data:string +InterruptPrioTable = .data:0x802E7B28; // type:object size:0x2C scope:local align:4 data:4byte +@99 = .data:0x802E7B54; // type:object size:0x6C scope:local align:4 +...data.0 = .data:0x802E7BC0; // type:label scope:local +Si = .data:0x802E7BC0; // type:object size:0x14 scope:local align:4 data:4byte +...data.0 = .data:0x802E7BD8; // type:label scope:local +@794 = .data:0x802E7BD8; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802E7C38; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802E7C44; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802E7CA4; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802E7CEC; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802E7D6C; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802E7DEC; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802E7E68; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802E7EE4; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802E7F38; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802E7FAC; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802E7FE8; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802E8034; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802E8088; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802E80DC; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802E8138; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802E817C; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802E81B8; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802E81F4; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802E8238; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802E827C; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802E82B8; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802E82F8; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802E8360; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802E83A8; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802E83E8; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802E8418; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802E8448; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802E8460; // type:label scope:local +@117 = .data:0x802E8460; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802E8528; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802E8560; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802E8594; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802E85C4; // type:object size:0x27 scope:local align:4 data:string +@328 = .data:0x802E85EC; // type:object size:0x66 scope:local align:4 data:string +@329 = .data:0x802E8654; // type:object size:0x55 scope:local align:4 data:string +@330 = .data:0x802E86AC; // type:object size:0x5C scope:local align:4 data:string +@361 = .data:0x802E8708; // type:object size:0x61 scope:local align:4 data:string +@362 = .data:0x802E876C; // type:object size:0x50 scope:local align:4 data:string +@363 = .data:0x802E87BC; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802E8818; // type:label scope:local +@13 = .data:0x802E8818; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802E8830; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802E883C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802E8858; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802E8864; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802E8884; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802E88C4; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802E88F8; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802E8930; // type:object size:0x40 scope:local align:4 data:4byte +...data.0 = .data:0x802E8970; // type:label scope:local +@36 = .data:0x802E8970; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802E898C; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802E89A4; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802E89B8; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802E89CC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802E89E0; // type:label scope:local +timing = .data:0x802E89E0; // type:object size:0x10A scope:local align:4 +taps = .data:0x802E8AEC; // type:object size:0x32 scope:local align:4 +@87 = .data:0x802E8B20; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802E8B48; // type:label scope:local +ResetFunctionInfo = .data:0x802E8B48; // type:object size:0x10 scope:local align:4 +XYNTSC = .data:0x802E8B58; // type:object size:0x18 scope:local align:4 +XYPAL = .data:0x802E8B70; // type:object size:0x18 scope:local align:4 +@414 = .data:0x802E8B88; // type:object size:0x26 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802E8BB0; // type:object size:0x10 scope:local align:4 +SectorSizeTable = .data:0x802E8BC0; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802E8BE0; // type:object size:0x20 scope:local align:4 +@124 = .data:0x802E8C00; // type:object size:0x68 scope:local align:4 +@183 = .data:0x802E8C68; // type:object size:0x68 scope:local align:4 +@292 = .data:0x802E8CD0; // type:object size:0x44 scope:local align:4 +@319 = .data:0x802E8D14; // type:object size:0x44 scope:local align:4 +@489 = .data:0x802E8D58; // type:object size:0x1C scope:local align:4 +@488 = .data:0x802E8D74; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802E8DC8; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802E8E04; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802E8E40; // type:object size:0x3C scope:global align:4 data:byte +@133 = .data:0x802E8E80; // type:object size:0xF4 scope:local align:4 +@163 = .data:0x802E8F74; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802E8FB0; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802E8FD8; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802E8FF8; // type:label scope:local +__files = .data:0x802E8FF8; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802E90D0; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802E9100; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802E9184; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802E9208; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802E92D8; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802E9320; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802E93F0; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802E9434; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802E9478; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802E947C; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802E9480; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802E9488; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802E9490; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802E9498; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802E94A0; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802E94A8; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802E94B0; // type:label scope:local +__four_over_pi_m1 = .data:0x802E94B0; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802E94C0; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802E9548; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802E9564; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802E9580; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802E958C; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802E959C; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802E95B0; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802E95F0; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802E9610; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802E9640; // type:label scope:local +dac = .bss:0x802E9640; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802E964C; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802E9660; // type:label scope:local +audioproc_mq = .bss:0x802E9660; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802E9680; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802E96C0; // type:label scope:local +finfo$42 = .bss:0x802E96C0; // type:object size:0x3C scope:local align:4 +cmd$43 = .bss:0x802E96FC; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802E9730; // type:label scope:local +dsp_buf = .bss:0x802E9730; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802E9740; // type:label scope:local +dsp_buf = .bss:0x802E9740; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802E9750; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802E9750; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802E9810; // type:label scope:local +mq = .bss:0x802E9810; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802E9830; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802E9A30; // type:object size:0x8000 scope:local align:4 +finfo$221 = .bss:0x802F1A30; // type:object size:0x3C scope:local align:4 +req$222 = .bss:0x802F1A6C; // type:object size:0x80 scope:local align:4 +finfo$264 = .bss:0x802F1AEC; // type:object size:0x3C scope:local align:4 +req$265 = .bss:0x802F1B28; // type:object size:0x20 scope:local align:4 +finfo$272 = .bss:0x802F1B48; // type:object size:0x3C scope:local align:4 +req$273 = .bss:0x802F1B84; // type:object size:0x20 scope:local align:4 +finfo$290 = .bss:0x802F1BA4; // type:object size:0x3C scope:local align:4 +finfo$307 = .bss:0x802F1BE0; // type:object size:0x3C scope:local align:4 +finfo$312 = .bss:0x802F1C1C; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802F1C58; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802F2458; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F24E0; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802F24E0; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802F2560; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x80306560; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x803065E0; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x80306660; // type:label scope:local +DSPCH = .bss:0x80306660; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x80306A60; // type:object size:0x6000 scope:local align:32 +FX_BUF = .bss:0x8030CA60; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x8030CAE0; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x8030CEE0; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x8030D2E0; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x8030D6E0; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x8030D8E0; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x8030DAE0; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x8030DEE8; // type:label scope:local +FH_TO_FAT = .bss:0x8030DEE8; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x8030E2E8; // type:object size:0x800 scope:local align:4 +fattmp = .bss:0x8030EAE8; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x8030F2E8; // type:label scope:local +JV_DIR_NAME = .bss:0x8030F2E8; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x8030F6E8; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x8030F8E8; // type:object size:0x40 scope:local align:4 +finfo$150 = .bss:0x8030F928; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x8030F980; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x8031F980; // type:label scope:local +TRACK_LIST = .bss:0x8031F980; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x8031FA80; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x8031FAA0; // type:label scope:local +seq = .bss:0x8031FAA0; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x80362EA0; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x803632A0; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x803632E0; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x803636E0; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x803636F0; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x8036375C; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x803637C8; // type:label scope:local +player_se$123 = .bss:0x803637C8; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x80363834; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x803638A0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x803638E0; // type:label scope:local +bgm = .bss:0x803638E0; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x80364618; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80364688; // type:label scope:local +seq_loadbuffer = .bss:0x80364688; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x80364A88; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x80368DC8; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x80368E08; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x80368EA0; // type:label scope:local +SC = .bss:0x80368EA0; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x8038A8F0; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x8038A908; // type:label scope:local +interleavebuf = .bss:0x8038A908; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x8038A940; // type:label scope:local +filename = .bss:0x8038A940; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x8038A980; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x8038A98C; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x8038A9D0; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x8038A9E8; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x8038AD00; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x8038BD00; // type:label scope:local +clipTable = .bss:0x8038BD00; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x8038BF00; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x8038BF40; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x8038C740; // type:label scope:local +fnVerts = .bss:0x8038C740; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x8038DF40; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x8038F740; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x80390740; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x80390840; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x80394840; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x80398840; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x80398880; // type:label scope:local +@588 = .bss:0x80398880; // type:object size:0xC scope:local align:4 +sys = .bss:0x8039888C; // type:object size:0x334 scope:global align:4 +dvdMesgQueue = .bss:0x80398BC0; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x80398BE0; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x80398C00; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x80398C20; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x80398C34; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x80398D34; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x80398D88; // type:object size:0x20 scope:local align:4 +mMemoryTable$1026 = .bss:0x80398DA8; // type:object size:0xC scope:local align:4 +Thread = .bss:0x80398DB8; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x803990E0; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x8039B0E0; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x8039B400; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x8039D400; // type:label scope:local +sControllerPad = .bss:0x8039D400; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x8039D430; // type:label scope:local +GColors = .bss:0x8039D430; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x8039D438; // type:label scope:local +CardThread = .bss:0x8039D438; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x8039D748; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x8039D7B8; // type:label scope:local +gameflow = .bss:0x8039D7B8; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x8039DB20; // type:label scope:local +flowCont = .bss:0x8039DB20; // type:object size:0x25C scope:global align:4 data:4byte +...bss.0 = .bss:0x8039DD80; // type:label scope:local +resultTable = .bss:0x8039DD80; // type:object size:0x40 scope:local align:4 data:4byte +...bss.0 = .bss:0x8039DDC0; // type:label scope:local +collExtents = .bss:0x8039DDC0; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x8039DDD8; // type:label scope:local +bcs = .bss:0x8039DDD8; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x8039E1E0; // type:label scope:local +cst = .bss:0x8039E1E0; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x8039E260; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803A8260; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803CE260; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D0260; // type:label scope:local +YtexObj = .bss:0x803D0260; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D0280; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D02A0; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D05B0; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803D15B0; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803D15F0; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D1DF0; // type:label scope:local +pikiInfMgr = .bss:0x803D1DF0; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D1E18; // type:label scope:local +pikiColors__4Piki = .bss:0x803D1E18; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803D1E30; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803D1E48; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803D1E48; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D1E58; // type:label scope:local +deadPikis__8GameStat = .bss:0x803D1E58; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803D1E64; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803D1E70; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803D1E7C; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803D1E88; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803D1E94; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803D1EA0; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803D1EAC; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803D1EB8; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803D1EC4; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803D1ED0; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803D1EE0; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803D22E0; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803D22E0; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D2308; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803D2308; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803D2360; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803D2388; // type:object size:0x28 scope:global align:4 data:4byte +OSErrorTable = .bss:0x803D23B0; // type:object size:0x3C scope:local align:4 +Ecb = .bss:0x803D23F0; // type:object size:0xA8 scope:local align:4 +...bss.0 = .bss:0x803D24A0; // type:label scope:local +Header = .bss:0x803D24A0; // type:object size:0x20 scope:global align:32 +...bss.0 = .bss:0x803D24C0; // type:label scope:local +Scb = .bss:0x803D24C0; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803D2518; // type:label scope:local +Packet = .bss:0x803D2518; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803D2598; // type:object size:0xA0 scope:local align:8 +...bss.0 = .bss:0x803D2638; // type:label scope:local +RunQueue = .bss:0x803D2638; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803D2738; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803D2A48; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803D2D58; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803D3020; // type:label scope:local +CommandList = .bss:0x803D3020; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803D3060; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803D3088; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803D30B0; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803D30D8; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803D30E4; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803D3100; // type:label scope:local +tmpBuffer = .bss:0x803D3100; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803D3180; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803D31B0; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803D31D8; // type:label scope:local +WaitingQueue = .bss:0x803D31D8; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803D31F8; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803D3238; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803D3268; // type:label scope:local +regs = .bss:0x803D3268; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803D32E0; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803D3358; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x803D33B0; // type:label scope:local +PADType = .bss:0x803D33B0; // type:object size:0x10 scope:local align:4 +Type = .bss:0x803D33C0; // type:object size:0x10 scope:local align:4 data:4byte +Origin = .bss:0x803D33D0; // type:object size:0x30 scope:local align:4 +cmdProbeDevice = .bss:0x803D3400; // type:object size:0x10 scope:local align:4 +cmdFixDevice = .bss:0x803D3410; // type:object size:0x10 scope:local align:4 +__CARDBlock = .bss:0x803D3420; // type:object size:0x210 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803D3630; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803D3650; // type:label scope:local +gxData = .bss:0x803D3650; // type:object size:0x4F4 scope:local align:4 +FifoObj = .bss:0x803D3B44; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803D3BC8; // type:label scope:local +DisplayListFifo = .bss:0x803D3BC8; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803D3BEC; // type:object size:0x4F4 scope:local align:4 +fragmentinfo = .bss:0x803D40E0; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803D40F0; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803D41F0; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803D42F0; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803D4318; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803D4320; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803D5CD0; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803D5CE4; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803D5CE8; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803D5CF0; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803D5CF4; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803D5D88; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803D5D98; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803D5E40; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803D6270; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803D6278; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D6280; // type:label scope:local +Ecb = .bss:0x803D6280; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803D6298; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803D62C0; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803D8C00; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803D8C00; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803D9C00; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803D9F20; // type:object size:0x1000 scope:global align:32 +EX_DSPTASK = .bss:0x803DAF20; // type:object size:0x40 scope:global align:4 +CGRP_ARRAY = .bss:0x803DAF60; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803DAFA0; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803DAFCC; // type:object size:0x1B40 scope:global align:4 +CAMERA = .bss:0x803DAFCC; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803DCB30; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803DCCE0; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803DCD20; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803DCD24; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803DCD28; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803DCD2C; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803DCD30; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803DCD38; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803DCD3C; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$81 = .sdata:0x803DCD40; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$82 = .sdata:0x803DCD48; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803DCD50; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803DCD54; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803DCD58; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803DCD5C; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803DCD60; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803DCD68; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803DCD70; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803DCD71; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803DCD74; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803DCD78; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803DCD80; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803DCD88; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803DCD8C; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803DCD90; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803DCD98; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803DCDA0; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803DCDA8; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803DCDB0; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803DCDB8; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803DCDC0; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803DCDC8; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803DCDD0; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803DCDD8; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803DCDE0; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803DCDE8; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803DCDF0; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803DCDF8; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803DCE00; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803DCE04; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803DCE08; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803DCE0C; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803DCE0E; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803DCE10; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803DCE14; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803DCE18; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803DCE1C; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803DCE24; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803DCE28; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803DCE30; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803DCE38; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803DCE40; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803DCE48; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803DCE50; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803DCE58; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803DCE60; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803DCE64; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803DCE68; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803DCE70; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803DCE78; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803DCE80; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DCE88; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DCE90; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803DCE98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DCEA0; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803DCEA8; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803DCEB0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DCEB8; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803DCEC0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DCEC8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DCED0; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803DCED8; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803DCEE0; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803DCEE4; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803DCEE8; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803DCEEC; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803DCEF0; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803DCEF4; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803DCEF8; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803DCEFC; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803DCF00; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803DCF04; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803DCF08; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803DCF0C; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803DCF10; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803DCF14; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803DCF1C; // type:object size:0x8 scope:local align:4 data:string +@1666 = .sdata:0x803DCF24; // type:object size:0x1 scope:local align:4 +@1777 = .sdata:0x803DCF28; // type:object size:0x8 scope:local align:4 data:string +@1857 = .sdata:0x803DCF30; // type:object size:0x6 scope:local align:4 data:string +@1866 = .sdata:0x803DCF38; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata:0x803DCF3C; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata:0x803DCF40; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata:0x803DCF44; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata:0x803DCF48; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata:0x803DCF4C; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata:0x803DCF50; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata:0x803DCF54; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata:0x803DCF58; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata:0x803DCF5C; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata:0x803DCF60; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata:0x803DCF64; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803DCF68; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata:0x803DCF6C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803DCF70; // type:object size:0x8 scope:local align:4 +@2166 = .sdata:0x803DCF78; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803DCF80; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803DCF88; // type:object size:0x8 scope:local align:4 +@2168 = .sdata:0x803DCF90; // type:object size:0x8 scope:local align:4 data:string +@2170 = .sdata:0x803DCF98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DCFA0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DCFA8; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803DCFB0; // type:object size:0x8 scope:local align:4 +@2174 = .sdata:0x803DCFB8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803DCFC0; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803DCFC8; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803DCFD0; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803DCFD8; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803DCFE0; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803DCFE4; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803DCFE8; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803DCFEC; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803DCFF0; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803DCFF4; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803DCFF8; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803DCFFC; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803DD000; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803DD004; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803DD00C; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803DD014; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD01C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD024; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803DD02C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DD038; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DD03C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DD040; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DD044; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DD048; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DD04C; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803DD050; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803DD054; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803DD058; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803DD05C; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803DD064; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803DD068; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803DD06C; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803DD070; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803DD078; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803DD07C; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803DD084; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803DD08C; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803DD090; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803DD094; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803DD09C; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803DD0A4; // type:object size:0x8 scope:local align:4 data:string +@1683 = .sdata:0x803DD0AC; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803DD0B4; // type:object size:0x5 scope:local align:4 data:string +@1685 = .sdata:0x803DD0BC; // type:object size:0x7 scope:local align:4 data:string +@1686 = .sdata:0x803DD0C4; // type:object size:0x6 scope:local align:4 data:string +@2218 = .sdata:0x803DD0CC; // type:object size:0x6 scope:local align:4 data:string +@2328 = .sdata:0x803DD0D4; // type:object size:0x7 scope:local align:4 data:string +@2780 = .sdata:0x803DD0DC; // type:object size:0x5 scope:local align:4 data:string +@2786 = .sdata:0x803DD0E4; // type:object size:0x8 scope:local align:4 data:string +@3626 = .sdata:0x803DD0EC; // type:object size:0x5 scope:local align:4 data:string +@3667 = .sdata:0x803DD0F4; // type:object size:0x7 scope:local align:4 data:string +@4269 = .sdata:0x803DD0FC; // type:object size:0x5 scope:local align:4 data:string +@4270 = .sdata:0x803DD104; // type:object size:0x5 scope:local align:4 data:string +@4308 = .sdata:0x803DD10C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803DD114; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803DD11C; // type:object size:0x8 scope:local align:4 +@4573 = .sdata:0x803DD124; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD12C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD134; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803DD13C; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803DD144; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803DD14C; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803DD154; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803DD15C; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803DD164; // type:object size:0x8 scope:local align:4 +@4590 = .sdata:0x803DD16C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803DD174; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803DD17C; // type:object size:0x8 scope:local align:4 +@4595 = .sdata:0x803DD184; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803DD18C; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803DD194; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803DD19C; // type:object size:0x8 scope:local align:4 +@4600 = .sdata:0x803DD1A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803DD1AC; // type:object size:0x8 scope:local align:4 +@4602 = .sdata:0x803DD1B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803DD1BC; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803DD1C4; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803DD1CC; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803DD1D8; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803DD1E0; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803DD1E4; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803DD1E8; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803DD1F0; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803DD1F8; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803DD1FC; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803DD204; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803DD208; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803DD210; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803DD218; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803DD220; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803DD224; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803DD228; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803DD22C; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803DD230; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803DD238; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803DD240; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803DD244; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803DD248; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803DD250; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803DD258; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803DD25C; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803DD260; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803DD264; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803DD26C; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803DD270; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803DD274; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803DD27C; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803DD284; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DD288; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DD28C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DD290; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DD294; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803DD298; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803DD29C; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803DD2A4; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803DD2AC; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803DD2B4; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803DD2BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD2C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD2CC; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803DD2D4; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803DD2DC; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803DD2E4; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803DD2EC; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803DD2F8; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803DD2FC; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803DD300; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803DD304; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803DD308; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803DD30C; // type:object size:0x4 scope:global align:4 data:float +@870 = .sdata:0x803DD310; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803DD318; // type:object size:0x1 scope:local align:4 +@691 = .sdata:0x803DD31C; // type:object size:0x3 scope:local align:4 data:string +@844 = .sdata:0x803DD320; // type:object size:0x8 scope:local align:4 data:string +@952 = .sdata:0x803DD328; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803DD330; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803DD338; // type:object size:0x8 scope:local align:4 +@1004 = .sdata:0x803DD340; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD348; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD350; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803DD358; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803DD360; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803DD368; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803DD370; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803DD378; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803DD380; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803DD388; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803DD390; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803DD398; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD3A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD3A8; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803DD3B0; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803DD3B8; // type:object size:0x8 scope:local align:4 +@424 = .sdata:0x803DD3C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD3C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD3D0; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803DD3D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD3E0; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803DD3E8; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803DD3F0; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803DD3F4; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803DD3F8; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803DD3FC; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803DD400; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803DD404; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803DD408; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803DD40C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803DD410; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803DD414; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803DD418; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803DD41C; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803DD420; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803DD424; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803DD428; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803DD42C; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803DD430; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803DD434; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803DD438; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803DD43C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803DD440; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803DD444; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803DD448; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803DD44C; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803DD450; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803DD454; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803DD458; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803DD45C; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803DD460; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803DD464; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803DD468; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803DD46C; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803DD470; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD478; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD480; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803DD488; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803DD490; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803DD498; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803DD4A0; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803DD4A4; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803DD4AC; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803DD4B0; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803DD4B8; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803DD4C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD4C8; // type:object size:0x8 scope:local align:4 +@587 = .sdata:0x803DD4D0; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803DD4D8; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803DD4DC; // type:object size:0x4 scope:global align:4 data:4byte +@686 = .sdata:0x803DD4E0; // type:object size:0x1 scope:local align:4 +@687 = .sdata:0x803DD4E4; // type:object size:0x3 scope:local align:4 data:string +@688 = .sdata:0x803DD4E8; // type:object size:0x7 scope:local align:4 data:string +@908 = .sdata:0x803DD4F0; // type:object size:0x6 scope:local align:4 data:string +@909 = .sdata:0x803DD4F8; // type:object size:0x7 scope:local align:4 data:string +@910 = .sdata:0x803DD500; // type:object size:0x5 scope:local align:4 data:string +@911 = .sdata:0x803DD508; // type:object size:0x3 scope:local align:4 data:string +@912 = .sdata:0x803DD50C; // type:object size:0x7 scope:local align:4 data:string +@950 = .sdata:0x803DD514; // type:object size:0x5 scope:local align:4 data:string +@981 = .sdata:0x803DD51C; // type:object size:0x7 scope:local align:4 data:string +@1087 = .sdata:0x803DD524; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803DD528; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803DD530; // type:object size:0x8 scope:local align:4 +@1275 = .sdata:0x803DD538; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD540; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803DD548; // type:object size:0x8 scope:local align:4 +@1278 = .sdata:0x803DD550; // type:object size:0x4 scope:local align:4 data:string +@1297 = .sdata:0x803DD554; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD55C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD564; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803DD56C; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803DD574; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD57C; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803DD584; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803DD58C; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803DD594; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803DD59C; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803DD5A8; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803DD5B0; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803DD5B8; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803DD5BC; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803DD5C0; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803DD5C4; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803DD5C8; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803DD5CC; // type:object size:0x8 scope:local align:4 data:byte +@1354 = .sdata:0x803DD5D4; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata:0x803DD5D8; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803DD5DC; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803DD5E0; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata:0x803DD5E4; // type:object size:0x4 scope:local align:4 data:float +@1439 = .sdata:0x803DD5E8; // type:object size:0x4 scope:local align:4 data:float +@1441 = .sdata:0x803DD5EC; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata:0x803DD5F0; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata:0x803DD5F4; // type:object size:0x6 scope:local align:4 data:string +@2092 = .sdata:0x803DD5FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD604; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD60C; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803DD614; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803DD61C; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803DD624; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803DD62C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DD638; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DD63C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DD640; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DD644; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DD648; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DD64C; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DD650; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DD654; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DD658; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DD65C; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803DD660; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DD664; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803DD668; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803DD66C; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803DD670; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803DD674; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803DD678; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803DD67C; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803DD680; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803DD684; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803DD688; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803DD68C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803DD690; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803DD694; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803DD698; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803DD69C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803DD6A0; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803DD6A4; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803DD6A8; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803DD6AC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803DD6B0; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803DD6B4; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803DD6B8; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803DD6BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD6C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD6CC; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803DD6D4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD6DC; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DD6E4; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803DD6F0; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803DD6F8; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803DD6FC; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803DD700; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803DD704; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803DD708; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803DD70C; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803DD714; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803DD71C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803DD720; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803DD728; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD730; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD738; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803DD740; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DD748; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803DD750; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803DD758; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803DD760; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803DD768; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803DD770; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803DD778; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803DD780; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803DD788; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803DD790; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803DD798; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803DD7A0; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803DD7A8; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803DD7B0; // type:object size:0x1 scope:local align:4 +@2270 = .sdata:0x803DD7B4; // type:object size:0x4 scope:local align:4 data:4byte +@2272 = .sdata:0x803DD7B8; // type:object size:0x4 scope:local align:4 data:4byte +@2274 = .sdata:0x803DD7BC; // type:object size:0x4 scope:local align:4 data:4byte +@2276 = .sdata:0x803DD7C0; // type:object size:0x4 scope:local align:4 data:4byte +@2277 = .sdata:0x803DD7C4; // type:object size:0x4 scope:local align:4 data:4byte +@2279 = .sdata:0x803DD7C8; // type:object size:0x4 scope:local align:4 data:4byte +@2281 = .sdata:0x803DD7CC; // type:object size:0x4 scope:local align:4 data:4byte +@2283 = .sdata:0x803DD7D0; // type:object size:0x4 scope:local align:4 data:4byte +@2285 = .sdata:0x803DD7D4; // type:object size:0x4 scope:local align:4 data:4byte +@2287 = .sdata:0x803DD7D8; // type:object size:0x4 scope:local align:4 data:4byte +@2289 = .sdata:0x803DD7DC; // type:object size:0x4 scope:local align:4 data:4byte +@2290 = .sdata:0x803DD7E0; // type:object size:0x4 scope:local align:4 data:4byte +@2291 = .sdata:0x803DD7E4; // type:object size:0x4 scope:local align:4 data:4byte +@2292 = .sdata:0x803DD7E8; // type:object size:0x5 scope:local align:4 data:string +@2293 = .sdata:0x803DD7F0; // type:object size:0x5 scope:local align:4 data:string +@2295 = .sdata:0x803DD7F8; // type:object size:0x7 scope:local align:4 data:string +@2458 = .sdata:0x803DD800; // type:object size:0x4 scope:local align:4 data:string +@2459 = .sdata:0x803DD804; // type:object size:0x7 scope:local align:4 data:string +@2461 = .sdata:0x803DD80C; // type:object size:0x8 scope:local align:4 data:string +@2496 = .sdata:0x803DD814; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD81C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD824; // type:object size:0x8 scope:local align:4 +@2499 = .sdata:0x803DD82C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD834; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803DD83C; // type:object size:0x8 scope:local align:4 +@2510 = .sdata:0x803DD844; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD84C; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803DD854; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DD85C; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803DD864; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DD86C; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803DD874; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803DD87C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803DD884; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803DD88C; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803DD898; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803DD8A0; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803DD8A4; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803DD8A8; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803DD8AC; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803DD8B4; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803DD8BC; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803DD8C4; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803DD8CC; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803DD8D0; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803DD8D8; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803DD8E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD8E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD8F0; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803DD8F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD900; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803DD908; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD910; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803DD918; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803DD920; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803DD928; // type:object size:0x8 scope:local align:4 +@972 = .sdata:0x803DD930; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD938; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD940; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803DD948; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803DD950; // type:object size:0x8 scope:local align:4 +@1146 = .sdata:0x803DD958; // type:object size:0x1 scope:local align:4 +@1188 = .sdata:0x803DD95C; // type:object size:0x7 scope:local align:4 data:string +@1190 = .sdata:0x803DD964; // type:object size:0x6 scope:local align:4 data:string +@1203 = .sdata:0x803DD96C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD974; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD97C; // type:object size:0x8 scope:local align:4 +@1206 = .sdata:0x803DD984; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD98C; // type:object size:0x8 scope:local align:4 +@1208 = .sdata:0x803DD994; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DD99C; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803DD9A4; // type:object size:0x8 scope:local align:4 +@1220 = .sdata:0x803DD9AC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DD9B4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DD9BC; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803DD9C4; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803DD9D0; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803DD9D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DD9E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DD9E8; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803DD9F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DD9F8; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803DDA00; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803DDA08; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803DDA0C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDA14; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803DDA1C; // type:object size:0x8 scope:local align:4 +@1333 = .sdata:0x803DDA28; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803DDA2C; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803DDA34; // type:object size:0x8 scope:local align:4 data:string +@1430 = .sdata:0x803DDA3C; // type:object size:0x1 scope:local align:4 +@1465 = .sdata:0x803DDA40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDA48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDA50; // type:object size:0x8 scope:local align:4 +@1470 = .sdata:0x803DDA58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDA60; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803DDA68; // type:object size:0x8 scope:local align:4 +@1571 = .sdata:0x803DDA70; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDA78; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803DDA80; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DDA88; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803DDA90; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803DDA98; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803DDAA0; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803DDAA4; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803DDAA8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803DDAAC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803DDAB0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803DDAB4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803DDAB8; // type:object size:0x1 scope:local align:4 +@2295 = .sdata:0x803DDABC; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803DDAC0; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803DDAC4; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803DDAC8; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803DDACC; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803DDAD0; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata:0x803DDAD4; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata:0x803DDAD8; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata:0x803DDADC; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata:0x803DDAE0; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata:0x803DDAE4; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata:0x803DDAE8; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata:0x803DDAEC; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803DDAF0; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803DDAF4; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803DDAF8; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata:0x803DDAFC; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803DDB00; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata:0x803DDB04; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata:0x803DDB08; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata:0x803DDB0C; // type:object size:0x4 scope:local align:4 data:float +@2814 = .sdata:0x803DDB10; // type:object size:0x4 scope:local align:4 data:float +@2815 = .sdata:0x803DDB14; // type:object size:0x4 scope:local align:4 data:float +@2816 = .sdata:0x803DDB18; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata:0x803DDB1C; // type:object size:0x7 scope:local align:4 data:string +@3086 = .sdata:0x803DDB24; // type:object size:0x4 scope:local align:4 data:string +@3089 = .sdata:0x803DDB28; // type:object size:0x5 scope:local align:4 data:string +@3090 = .sdata:0x803DDB30; // type:object size:0x6 scope:local align:4 data:string +@3091 = .sdata:0x803DDB38; // type:object size:0x7 scope:local align:4 data:string +@3093 = .sdata:0x803DDB40; // type:object size:0x6 scope:local align:4 data:string +@3094 = .sdata:0x803DDB48; // type:object size:0x8 scope:local align:4 data:string +@3115 = .sdata:0x803DDB50; // type:object size:0x4 scope:local align:4 data:string +@3116 = .sdata:0x803DDB54; // type:object size:0x6 scope:local align:4 data:string +@3142 = .sdata:0x803DDB5C; // type:object size:0x3 scope:local align:4 data:string +@3144 = .sdata:0x803DDB60; // type:object size:0x3 scope:local align:4 data:string +@3145 = .sdata:0x803DDB64; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803DDB6C; // type:object size:0x8 scope:local align:4 +@3175 = .sdata:0x803DDB74; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDB7C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDB84; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803DDB8C; // type:object size:0x8 scope:local align:4 +@3182 = .sdata:0x803DDB94; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDB9C; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803DDBA4; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803DDBAC; // type:object size:0x8 scope:local align:4 +@3360 = .sdata:0x803DDBB4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDBBC; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803DDBC4; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803DDBCC; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803DDBD4; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803DDBDC; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803DDBE4; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803DDBEC; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803DDBF4; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803DDBFC; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803DDC08; // type:object size:0x4 scope:local align:4 data:float +@1227 = .sdata:0x803DDC0C; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata:0x803DDC10; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803DDC14; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803DDC18; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803DDC1C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803DDC20; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803DDC24; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803DDC28; // type:object size:0x4 scope:local align:4 data:float +@1243 = .sdata:0x803DDC2C; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803DDC30; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803DDC34; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803DDC38; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803DDC3C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803DDC40; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803DDC44; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803DDC4C; // type:object size:0x6 scope:local align:4 data:string +@1310 = .sdata:0x803DDC54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDC5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDC64; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803DDC6C; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803DDC74; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803DDC7C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803DDC84; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDC8C; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803DDC94; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803DDC9C; // type:object size:0x8 scope:local align:4 +@1418 = .sdata:0x803DDCA4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDCAC; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803DDCB4; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803DDCC0; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803DDCC8; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803DDCCC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDCD4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDCDC; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803DDCE4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDCEC; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803DDCF4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDCFC; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803DDD04; // type:object size:0x8 scope:local align:4 +@724 = .sdata:0x803DDD10; // type:object size:0x4 scope:local align:4 data:float +@725 = .sdata:0x803DDD14; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata:0x803DDD18; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata:0x803DDD1C; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803DDD20; // type:object size:0x1 scope:local align:4 +@863 = .sdata:0x803DDD24; // type:object size:0x4 scope:local align:4 data:float +@864 = .sdata:0x803DDD28; // type:object size:0x4 scope:local align:4 data:float +@865 = .sdata:0x803DDD2C; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803DDD30; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803DDD34; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata:0x803DDD38; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata:0x803DDD3C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803DDD40; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata:0x803DDD44; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803DDD48; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803DDD4C; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803DDD50; // type:object size:0x4 scope:local align:4 data:float +@956 = .sdata:0x803DDD54; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata:0x803DDD58; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803DDD60; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DDD64; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DDD68; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DDD6C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DDD70; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DDD74; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803DDD78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDD80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDD88; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803DDD90; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDD98; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DDDA0; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803DDDA8; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803DDDB0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DDDB8; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803DDDC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DDDC8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DDDD0; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803DDDD8; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803DDDE0; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803DDDE8; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803DDDF0; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803DDDF4; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803DDDFC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDE04; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDE0C; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803DDE14; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDE1C; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803DDE24; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DDE30; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803DDE38; // type:object size:0x4 scope:local align:4 data:string +@802 = .sdata:0x803DDE3C; // type:object size:0x8 scope:local align:4 data:string +@804 = .sdata:0x803DDE44; // type:object size:0x8 scope:local align:4 data:string +@830 = .sdata:0x803DDE4C; // type:object size:0x4 scope:local align:4 data:string +@861 = .sdata:0x803DDE50; // type:object size:0x4 scope:local align:4 data:string +@868 = .sdata:0x803DDE54; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DDE5C; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803DDE64; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803DDE6C; // type:object size:0x8 scope:local align:4 +@872 = .sdata:0x803DDE74; // type:object size:0x8 scope:local align:4 data:string +@874 = .sdata:0x803DDE7C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDE84; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDE8C; // type:object size:0x8 scope:local align:4 +@877 = .sdata:0x803DDE94; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDE9C; // type:object size:0x8 scope:local align:4 +@879 = .sdata:0x803DDEA4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803DDEAC; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803DDEB4; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803DDEBC; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803DDEC8; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803DDECC; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803DDED0; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata:0x803DDED4; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803DDED8; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803DDEDC; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata:0x803DDEE0; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803DDEE4; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803DDEE8; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803DDEEC; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803DDEF0; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803DDEF4; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803DDEF8; // type:object size:0x4 scope:local align:4 data:float +@1288 = .sdata:0x803DDEFC; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803DDF00; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803DDF04; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803DDF08; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803DDF0C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803DDF10; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803DDF14; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata:0x803DDF18; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803DDF1C; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803DDF20; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803DDF24; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803DDF28; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803DDF2C; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DDF30; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803DDF34; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803DDF38; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata:0x803DDF3C; // type:object size:0x7 scope:local align:4 data:string +@1483 = .sdata:0x803DDF44; // type:object size:0x7 scope:local align:4 data:string +@1508 = .sdata:0x803DDF4C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDF54; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDF5C; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803DDF64; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803DDF6C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803DDF74; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803DDF7C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDF84; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803DDF8C; // type:object size:0x8 scope:local align:4 +@1769 = .sdata:0x803DDF94; // type:object size:0x1 scope:local align:4 +@1799 = .sdata:0x803DDF98; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDFA0; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803DDFA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803DDFB0; // type:object size:0x8 scope:local align:4 +@941 = .sdata:0x803DDFB8; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803DDFC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DDFC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DDFD0; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803DDFD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DDFE0; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803DDFE8; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803DDFF0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DDFF8; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803DE000; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DE008; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DE00C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DE010; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DE014; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DE018; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DE01C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803DE020; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803DE024; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803DE028; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803DE02C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803DE030; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803DE034; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803DE038; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803DE03C; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803DE040; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803DE044; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803DE048; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803DE04C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803DE050; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803DE054; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803DE058; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803DE05C; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803DE060; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803DE064; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803DE068; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803DE06C; // type:object size:0x4 scope:local align:4 data:float +@2552 = .sdata:0x803DE070; // type:object size:0x5 scope:local align:4 data:string +@2555 = .sdata:0x803DE078; // type:object size:0x3 scope:local align:4 data:string +@2557 = .sdata:0x803DE07C; // type:object size:0x3 scope:local align:4 data:string +@2565 = .sdata:0x803DE080; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata:0x803DE084; // type:object size:0x4 scope:local align:4 data:float +@2567 = .sdata:0x803DE088; // type:object size:0x4 scope:local align:4 data:float +@2568 = .sdata:0x803DE08C; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803DE090; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803DE094; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803DE098; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803DE09C; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803DE0A0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803DE0A4; // type:object size:0x5 scope:local align:4 data:string +@2884 = .sdata:0x803DE0AC; // type:object size:0x7 scope:local align:4 data:string +@2887 = .sdata:0x803DE0B4; // type:object size:0x6 scope:local align:4 data:string +@2927 = .sdata:0x803DE0BC; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803DE0C0; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803DE0C4; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803DE0C8; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803DE0CC; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803DE0D0; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803DE0D4; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803DE0D8; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803DE0DC; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803DE0E0; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803DE0E4; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803DE0E8; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803DE0EC; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803DE0F0; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata:0x803DE0F4; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata:0x803DE0F8; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803DE0FC; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803DE100; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803DE104; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803DE108; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803DE10C; // type:object size:0x4 scope:local align:4 data:float +@3300 = .sdata:0x803DE110; // type:object size:0x4 scope:local align:4 data:float +@3301 = .sdata:0x803DE114; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata:0x803DE118; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata:0x803DE11C; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata:0x803DE120; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803DE124; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata:0x803DE128; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata:0x803DE12C; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata:0x803DE130; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata:0x803DE134; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata:0x803DE138; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata:0x803DE13C; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata:0x803DE140; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803DE144; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803DE148; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata:0x803DE14C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata:0x803DE150; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata:0x803DE154; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata:0x803DE158; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata:0x803DE15C; // type:object size:0x8 scope:local align:4 data:string +@3804 = .sdata:0x803DE164; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata:0x803DE168; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata:0x803DE16C; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata:0x803DE170; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata:0x803DE174; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata:0x803DE178; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata:0x803DE17C; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata:0x803DE180; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata:0x803DE184; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata:0x803DE188; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata:0x803DE18C; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata:0x803DE190; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata:0x803DE194; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata:0x803DE198; // type:object size:0x4 scope:local align:4 data:float +@4597 = .sdata:0x803DE19C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE1A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE1AC; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803DE1B4; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803DE1BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE1C4; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803DE1CC; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803DE1D4; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803DE1DC; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803DE1E4; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803DE1EC; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803DE1F4; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803DE1FC; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803DE204; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DE20C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DE214; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803DE21C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803DE224; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803DE22C; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803DE234; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803DE23C; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803DE248; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803DE24C; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803DE250; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803DE254; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803DE258; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803DE25C; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803DE260; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DE264; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DE268; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803DE26C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803DE270; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803DE274; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803DE278; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803DE27C; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803DE280; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803DE284; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803DE288; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803DE28C; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803DE290; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803DE294; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803DE298; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803DE29C; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803DE2A0; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803DE2A4; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803DE2A8; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803DE2AC; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803DE2B0; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803DE2B4; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803DE2B8; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803DE2BC; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803DE2C0; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803DE2C4; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803DE2C8; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803DE2CC; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803DE2D0; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803DE2D4; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803DE2D8; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803DE2DC; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803DE2E0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803DE2E4; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803DE2E8; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803DE2EC; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803DE2F0; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803DE2F4; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803DE2F8; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803DE2FC; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803DE300; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803DE308; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803DE30C; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803DE310; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803DE314; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803DE318; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803DE320; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803DE324; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803DE32C; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803DE334; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803DE33C; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803DE344; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803DE34C; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803DE354; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803DE358; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803DE360; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803DE368; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803DE370; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803DE378; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803DE380; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803DE384; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803DE388; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803DE38C; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803DE390; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803DE394; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803DE398; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803DE39C; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803DE3A0; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803DE3A4; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803DE3A8; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803DE3AC; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803DE3B0; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803DE3B4; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803DE3B8; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803DE3BC; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803DE3C0; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803DE3C4; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803DE3C8; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803DE3CC; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803DE3D0; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803DE3D4; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803DE3DC; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803DE3E4; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803DE3E8; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803DE3F0; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803DE3F8; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803DE3FC; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803DE400; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803DE404; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803DE408; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803DE40C; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803DE410; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803DE418; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803DE420; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803DE428; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803DE42C; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803DE430; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803DE438; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803DE440; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803DE448; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803DE450; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803DE458; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE460; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE468; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803DE470; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE478; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803DE480; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803DE488; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803DE490; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803DE498; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803DE4A0; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803DE4A8; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803DE4B0; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803DE4B8; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803DE4C0; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803DE4C8; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803DE4D0; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803DE4D8; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803DE4DC; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803DE4E4; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803DE4E8; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803DE4F0; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803DE4F8; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803DE500; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803DE508; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803DE510; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803DE518; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803DE51C; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803DE524; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803DE52C; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803DE534; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803DE53C; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803DE540; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803DE544; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803DE548; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803DE54C; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803DE550; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803DE554; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803DE558; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803DE55C; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803DE560; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803DE564; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803DE568; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803DE56C; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803DE570; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803DE574; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803DE578; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803DE57C; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803DE580; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803DE584; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803DE588; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803DE58C; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803DE590; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803DE594; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803DE598; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803DE59C; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803DE5A0; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803DE5A4; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803DE5A8; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803DE5AC; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803DE5B0; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803DE5B4; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803DE5B8; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803DE5BC; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803DE5C0; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803DE5C4; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803DE5C8; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803DE5CC; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803DE5D0; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803DE5D4; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803DE5D8; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803DE5DC; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803DE5E0; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803DE5E4; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803DE5E8; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803DE5EC; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803DE5F0; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803DE5F4; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803DE5F8; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803DE5FC; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803DE600; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803DE604; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803DE608; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803DE60C; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803DE610; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803DE614; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803DE618; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803DE61C; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803DE620; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803DE624; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803DE628; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803DE62C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803DE630; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803DE634; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803DE638; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803DE63C; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803DE640; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803DE644; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803DE648; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803DE64C; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803DE650; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803DE654; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803DE658; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803DE65C; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803DE660; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803DE664; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803DE668; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803DE66C; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803DE670; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803DE674; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803DE678; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803DE67C; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803DE680; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803DE684; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803DE688; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803DE68C; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803DE690; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803DE694; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803DE698; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803DE69C; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803DE6A0; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803DE6A4; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803DE6A8; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803DE6AC; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803DE6B0; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803DE6B4; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803DE6B8; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803DE6BC; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803DE6C0; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803DE6C4; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803DE6C8; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803DE6CC; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803DE6D0; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803DE6D4; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803DE6D8; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803DE6DC; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803DE6E0; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803DE6E4; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803DE6E8; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803DE6EC; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803DE6F0; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803DE6F4; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803DE6F8; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803DE6FC; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803DE700; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803DE704; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803DE708; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803DE70C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803DE710; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803DE714; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803DE718; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803DE71C; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803DE720; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803DE724; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803DE728; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803DE72C; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803DE730; // type:object size:0x4 scope:local align:4 data:float +@2533 = .sdata:0x803DE734; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE73C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE744; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803DE74C; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803DE754; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803DE75C; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803DE764; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803DE770; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803DE774; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803DE778; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803DE77C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803DE780; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803DE784; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803DE788; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803DE78C; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803DE790; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803DE794; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803DE79C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE7A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE7AC; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803DE7B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE7BC; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803DE7C4; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803DE7D0; // type:object size:0x4 scope:local align:4 data:4byte +@1204 = .sdata:0x803DE7D4; // type:object size:0x7 scope:local align:4 data:string +@1205 = .sdata:0x803DE7DC; // type:object size:0x8 scope:local align:4 data:string +@1497 = .sdata:0x803DE7E4; // type:object size:0x7 scope:local align:4 data:string +@1696 = .sdata:0x803DE7EC; // type:object size:0x3 scope:local align:4 data:string +@2019 = .sdata:0x803DE7F0; // type:object size:0x7 scope:local align:4 data:string +@2254 = .sdata:0x803DE7F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE800; // type:object size:0x8 scope:local align:4 +@2259 = .sdata:0x803DE808; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803DE810; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803DE818; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803DE820; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803DE824; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803DE828; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803DE82C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803DE830; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803DE834; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803DE838; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803DE83C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE844; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE84C; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803DE854; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803DE860; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803DE868; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE870; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE878; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803DE880; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DE888; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803DE890; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803DE898; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803DE8A0; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803DE8A8; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803DE8B0; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803DE8B4; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803DE8B8; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803DE8BC; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803DE8C0; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803DE8C4; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DE8C8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803DE8CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803DE8D0; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803DE8D8; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803DE8E0; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803DE8E8; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803DE8F0; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803DE8F8; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803DE900; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803DE904; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803DE908; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803DE90C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DE914; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DE91C; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803DE924; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803DE930; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803DE934; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803DE938; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803DE93C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata:0x803DE940; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata:0x803DE944; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DE948; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803DE950; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803DE958; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803DE960; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803DE968; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803DE970; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803DE978; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803DE980; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803DE988; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803DE990; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803DE998; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803DE9A0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803DE9A8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803DE9B0; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803DE9B8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803DE9C0; // type:object size:0x8 scope:local align:4 +@641 = .sdata:0x803DE9C8; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata:0x803DE9CC; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata:0x803DE9D0; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803DE9D4; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803DE9D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DE9DC; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803DE9E4; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803DE9EC; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803DE9F8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803DEA00; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803DEA08; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803DEA10; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803DEA14; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803DEA18; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803DEA1C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DEA20; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803DEA28; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803DEA30; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803DEA38; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803DEA40; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803DEA48; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803DEA50; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803DEA58; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803DEA60; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803DEA68; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803DEA70; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803DEA78; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803DEA80; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803DEA84; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803DEA88; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803DEA8C; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803DEA90; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803DEA94; // type:object size:0x4 scope:local align:4 data:float +__RTTI__22Receiver<10AICreature> = .sdata:0x803DEA98; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803DEAA0; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803DEAA8; // type:object size:0x8 scope:local align:4 +@1155 = .sdata:0x803DEAB0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEAB8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEAC0; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803DEAC8; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803DEAD0; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803DEAD8; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803DEAE0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803DEAE8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DEAF0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DEAF8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DEB00; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803DEB08; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803DEB10; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803DEB18; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803DEB1C; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata:0x803DEB20; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803DEB24; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803DEB28; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803DEB2C; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803DEB30; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803DEB34; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803DEB38; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803DEB3C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803DEB40; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803DEB44; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803DEB48; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803DEB4C; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803DEB50; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803DEB54; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803DEB58; // type:object size:0x4 scope:local align:4 data:float +@1603 = .sdata:0x803DEB5C; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803DEB60; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803DEB64; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803DEB68; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803DEB6C; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803DEB70; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803DEB74; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803DEB78; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803DEB7C; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata:0x803DEB80; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803DEB84; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803DEB88; // type:object size:0x4 scope:local align:4 data:float +@1702 = .sdata:0x803DEB8C; // type:object size:0x4 scope:local align:4 data:float +@1704 = .sdata:0x803DEB90; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803DEB94; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803DEB98; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803DEB9C; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803DEBA4; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803DEBAC; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803DEBB4; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803DEBBC; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DEBC4; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803DEBCC; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803DEBD8; // type:object size:0x4 scope:global align:4 data:4byte +@2093 = .sdata:0x803DEBDC; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata:0x803DEBE0; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata:0x803DEBE4; // type:object size:0x4 scope:local align:4 data:float +@2556 = .sdata:0x803DEBE8; // type:object size:0x6 scope:local align:4 data:string +@2557 = .sdata:0x803DEBF0; // type:object size:0x7 scope:local align:4 data:string +@2558 = .sdata:0x803DEBF8; // type:object size:0x6 scope:local align:4 data:string +@2559 = .sdata:0x803DEC00; // type:object size:0x7 scope:local align:4 data:string +@2560 = .sdata:0x803DEC08; // type:object size:0x8 scope:local align:4 data:string +@2561 = .sdata:0x803DEC10; // type:object size:0x2 scope:local align:4 data:string +@2563 = .sdata:0x803DEC14; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803DEC18; // type:object size:0x4 scope:local align:4 data:float +@2565 = .sdata:0x803DEC1C; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803DEC20; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803DEC24; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata:0x803DEC28; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata:0x803DEC2C; // type:object size:0x4 scope:local align:4 data:float +@2573 = .sdata:0x803DEC30; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803DEC34; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803DEC38; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803DEC3C; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata:0x803DEC40; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata:0x803DEC44; // type:object size:0x4 scope:local align:4 data:float +@2579 = .sdata:0x803DEC48; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803DEC4C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DEC50; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803DEC58; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803DEC60; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803DEC68; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803DEC70; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803DEC74; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803DEC78; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803DEC7C; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803DEC80; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803DEC84; // type:object size:0x8 scope:local align:4 data:string +@1309 = .sdata:0x803DEC8C; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803DEC90; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803DEC94; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803DEC98; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803DEC9C; // type:object size:0x8 scope:local align:4 +@1360 = .sdata:0x803DECA4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DECAC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DECB4; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803DECBC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DECC4; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803DECCC; // type:object size:0x8 scope:local align:4 +@1085 = .sdata:0x803DECD8; // type:object size:0x4 scope:local align:4 data:string +@1086 = .sdata:0x803DECDC; // type:object size:0x3 scope:local align:4 data:string +@1087 = .sdata:0x803DECE0; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803DECE8; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803DECF0; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803DECF4; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803DECF8; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803DECFC; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803DED00; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803DED04; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803DED08; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803DED0C; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803DED10; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803DED14; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803DED18; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803DED1C; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803DED20; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803DED24; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803DED28; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803DED2C; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803DED30; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803DED34; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803DED38; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803DED3C; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803DED40; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803DED44; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803DED48; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803DED4C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803DED54; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803DED5C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DED64; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DED6C; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803DED74; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DED7C; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803DED84; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803DED90; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803DED98; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803DEDA0; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803DEDA8; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803DEDB0; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803DEDB8; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803DEDC0; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803DEDC8; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803DEDD0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEDD8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEDE0; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803DEDE8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DEDF0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803DEDF8; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803DEE00; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803DEE08; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803DEE09; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803DEE0A; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803DEE0B; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803DEE0C; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803DEE10; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803DEE14; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803DEE18; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803DEE19; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803DEE1A; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803DEE1B; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803DEE1C; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803DEE20; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803DEE28; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803DEE30; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803DEE38; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803DEE3C; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803DEE44; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803DEE50; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803DEE54; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803DEE58; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803DEE5C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803DEE60; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803DEE68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DEE70; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DEE78; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803DEE80; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DEE88; // type:object size:0x8 scope:local align:4 +@405 = .sdata:0x803DEE90; // type:object size:0x8 scope:local align:4 data:string +@549 = .sdata:0x803DEE98; // type:object size:0x8 scope:local align:4 data:string +@551 = .sdata:0x803DEEA0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DEEA8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DEEB0; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803DEEB8; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803DEEC0; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803DEEC8; // type:object size:0x5 scope:local align:4 data:string +@1677 = .sdata:0x803DEED0; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803DEED4; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803DEED8; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803DEEDC; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803DEEE0; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803DEEE4; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803DEEE8; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803DEEEC; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803DEEF0; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803DEEF4; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803DEEF8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803DEEFC; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803DEF00; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803DEF04; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803DEF08; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803DEF0C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803DEF10; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803DEF14; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803DEF18; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803DEF1C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803DEF20; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803DEF24; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803DEF28; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803DEF2C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803DEF30; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803DEF34; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803DEF38; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803DEF3C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803DEF40; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803DEF44; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803DEF48; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803DEF4C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803DEF50; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803DEF54; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803DEF58; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803DEF5C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803DEF60; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803DEF64; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803DEF68; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803DEF6C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803DEF70; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803DEF74; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803DEF78; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803DEF7C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803DEF80; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803DEF84; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803DEF88; // type:object size:0x4 scope:local align:4 data:float +@2911 = .sdata:0x803DEF8C; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata:0x803DEF90; // type:object size:0x4 scope:local align:4 data:float +@2913 = .sdata:0x803DEF94; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803DEF98; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803DEF9C; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803DEFA0; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803DEFA4; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803DEFA8; // type:object size:0x4 scope:local align:4 data:float +@3186 = .sdata:0x803DEFAC; // type:object size:0x4 scope:local align:4 data:float +@3187 = .sdata:0x803DEFB0; // type:object size:0x4 scope:local align:4 data:float +@3188 = .sdata:0x803DEFB4; // type:object size:0x4 scope:local align:4 data:float +@3189 = .sdata:0x803DEFB8; // type:object size:0x4 scope:local align:4 data:float +@3190 = .sdata:0x803DEFBC; // type:object size:0x4 scope:local align:4 data:float +@3191 = .sdata:0x803DEFC0; // type:object size:0x4 scope:local align:4 data:float +@3192 = .sdata:0x803DEFC4; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803DEFC8; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803DEFCC; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803DEFD0; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803DEFD4; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803DEFD8; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803DEFDC; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803DEFE0; // type:object size:0x4 scope:local align:4 data:float +@3205 = .sdata:0x803DEFE4; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803DEFE8; // type:object size:0x4 scope:local align:4 data:float +@3207 = .sdata:0x803DEFEC; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata:0x803DEFF0; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803DEFF4; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803DEFF8; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803DEFFC; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803DF000; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803DF004; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803DF008; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803DF00C; // type:object size:0x4 scope:local align:4 data:float +@3217 = .sdata:0x803DF010; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803DF014; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803DF018; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803DF01C; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803DF020; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803DF024; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803DF028; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata:0x803DF02C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803DF030; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DF038; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF040; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF048; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803DF050; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803DF054; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803DF058; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF060; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF068; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803DF070; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF078; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DF080; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DF088; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803DF090; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803DF098; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803DF09C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803DF0A0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803DF0A4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803DF0A8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803DF0AC; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803DF0B0; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803DF0B4; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803DF0B8; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803DF0BC; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803DF0C0; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803DF0C4; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803DF0C8; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803DF0CC; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803DF0D0; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803DF0D4; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803DF0D8; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803DF0DC; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803DF0E0; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803DF0E4; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803DF0E8; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata:0x803DF0EC; // type:object size:0x7 scope:local align:4 data:string +@1783 = .sdata:0x803DF0F4; // type:object size:0x5 scope:local align:4 data:string +@1784 = .sdata:0x803DF0FC; // type:object size:0x4 scope:local align:4 data:string +@1907 = .sdata:0x803DF100; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803DF104; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803DF108; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803DF10C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803DF110; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803DF114; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803DF118; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803DF11C; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803DF120; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803DF124; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803DF128; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata:0x803DF12C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803DF130; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803DF134; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata:0x803DF138; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata:0x803DF13C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata:0x803DF140; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803DF144; // type:object size:0x4 scope:local align:4 data:float +@2168 = .sdata:0x803DF148; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803DF14C; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803DF150; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803DF154; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803DF15C; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803DF168; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803DF16C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803DF170; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803DF174; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803DF178; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803DF17C; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803DF180; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803DF184; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803DF188; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803DF18C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803DF190; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803DF194; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803DF198; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803DF19C; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803DF1A0; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803DF1A4; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803DF1A8; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803DF1AC; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803DF1B0; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803DF1B4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803DF1B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803DF1BC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF1C4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF1CC; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF1D4; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803DF1DC; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803DF1E4; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803DF1F0; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803DF1F4; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803DF1F8; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803DF1FC; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803DF200; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803DF204; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803DF208; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803DF20C; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803DF210; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803DF214; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803DF218; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803DF21C; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803DF220; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803DF224; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803DF228; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803DF22C; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803DF230; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803DF234; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803DF238; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803DF23C; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata:0x803DF240; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803DF244; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803DF248; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803DF24C; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803DF250; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803DF254; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803DF258; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803DF25C; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803DF260; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803DF264; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803DF268; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803DF26C; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803DF270; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803DF274; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803DF278; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803DF27C; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803DF280; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803DF284; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata:0x803DF288; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803DF28C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803DF290; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803DF294; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803DF298; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803DF29C; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803DF2A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803DF2A4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF2AC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF2B4; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF2BC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF2C4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803DF2CC; // type:object size:0x8 scope:local align:4 +@1963 = .sdata:0x803DF2D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF2DC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF2E4; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803DF2EC; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803DF2F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF300; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF308; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803DF310; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803DF318; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803DF31C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803DF328; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF330; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF338; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803DF340; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803DF348; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803DF350; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803DF358; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803DF360; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803DF368; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803DF370; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803DF374; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803DF37C; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803DF384; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803DF38C; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803DF394; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803DF39C; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803DF3A4; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803DF3AC; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803DF3B4; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803DF3BC; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803DF3C4; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803DF3CC; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803DF3D0; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803DF3D8; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803DF3E0; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803DF3E4; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803DF3EC; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803DF3F4; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803DF3FC; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803DF404; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803DF40C; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803DF414; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803DF41C; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803DF420; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803DF424; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803DF428; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803DF42C; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803DF430; // type:object size:0x4 scope:local align:4 data:string +@1491 = .sdata:0x803DF434; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803DF438; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803DF43C; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803DF440; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803DF444; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803DF448; // type:object size:0x4 scope:local align:4 data:4byte +@1498 = .sdata:0x803DF44C; // type:object size:0x4 scope:local align:4 data:4byte +@1500 = .sdata:0x803DF450; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803DF454; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803DF458; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803DF45C; // type:object size:0x4 scope:local align:4 data:4byte +@1505 = .sdata:0x803DF460; // type:object size:0x4 scope:local align:4 data:4byte +@1507 = .sdata:0x803DF464; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803DF468; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803DF46C; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803DF470; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803DF474; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803DF478; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803DF47C; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803DF480; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803DF484; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803DF488; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803DF48C; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DF490; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DF494; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803DF498; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803DF49C; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803DF4A0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803DF4A4; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803DF4A8; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803DF4AC; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803DF4B0; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803DF4B4; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803DF4B8; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803DF4BC; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803DF4C0; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803DF4C4; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803DF4C8; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803DF4CC; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata:0x803DF4D0; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803DF4D4; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803DF4D8; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata:0x803DF4DC; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803DF4E0; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803DF4E4; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata:0x803DF4E8; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803DF4EC; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803DF4F0; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803DF4F4; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803DF4F8; // type:object size:0x4 scope:local align:4 data:float +@2379 = .sdata:0x803DF4FC; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803DF500; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803DF504; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803DF508; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803DF50C; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803DF510; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata:0x803DF514; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata:0x803DF518; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata:0x803DF51C; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata:0x803DF520; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata:0x803DF524; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803DF528; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803DF52C; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803DF530; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata:0x803DF534; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803DF538; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803DF53C; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803DF540; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803DF544; // type:object size:0x4 scope:local align:4 data:float +@2873 = .sdata:0x803DF548; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata:0x803DF54C; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803DF550; // type:object size:0x8 scope:local align:4 data:string +@3074 = .sdata:0x803DF558; // type:object size:0x1 scope:local align:4 +@3075 = .sdata:0x803DF55C; // type:object size:0x4 scope:local align:4 data:string +@3076 = .sdata:0x803DF560; // type:object size:0x4 scope:local align:4 data:string +@3077 = .sdata:0x803DF564; // type:object size:0x4 scope:local align:4 data:string +@3079 = .sdata:0x803DF568; // type:object size:0x4 scope:local align:4 data:string +@3082 = .sdata:0x803DF56C; // type:object size:0x4 scope:local align:4 data:string +@3084 = .sdata:0x803DF570; // type:object size:0x7 scope:local align:4 data:string +@3333 = .sdata:0x803DF578; // type:object size:0x6 scope:local align:4 data:string +@3334 = .sdata:0x803DF580; // type:object size:0x5 scope:local align:4 data:string +@3401 = .sdata:0x803DF588; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF590; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF598; // type:object size:0x8 scope:local align:4 +@3403 = .sdata:0x803DF5A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF5A8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DF5B0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803DF5B8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803DF5C0; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803DF5C8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803DF5D0; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803DF5D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803DF5E0; // type:object size:0x8 scope:local align:4 +@3440 = .sdata:0x803DF5E8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DF5F0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DF5F8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF600; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF608; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803DF610; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803DF618; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803DF620; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803DF628; // type:object size:0x8 scope:local align:4 +@3485 = .sdata:0x803DF630; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803DF638; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803DF640; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803DF648; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803DF650; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF658; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803DF660; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF668; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803DF670; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803DF674; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803DF67C; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803DF680; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803DF688; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803DF690; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803DF698; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803DF6A0; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803DF6A4; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803DF6A8; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803DF6AC; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803DF6B0; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803DF6B4; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803DF6BC; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803DF6C4; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803DF6CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF6D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF6DC; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF6E4; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803DF6EC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF6F4; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF700; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803DF708; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DF710; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DF718; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803DF720; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803DF728; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803DF730; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803DF738; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803DF740; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803DF748; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803DF750; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803DF754; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803DF758; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803DF75C; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803DF764; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803DF76C; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803DF774; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803DF77C; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803DF784; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803DF78C; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803DF794; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803DF79C; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803DF7A4; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803DF7AC; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803DF7B8; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803DF7BC; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803DF7C4; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803DF7CC; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803DF7D0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DF7D4; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DF7D8; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803DF7DC; // type:object size:0x4 scope:local align:4 data:4byte +@1560 = .sdata:0x803DF7E0; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803DF7E4; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803DF7E8; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803DF7EC; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803DF7F0; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata:0x803DF7F4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata:0x803DF7F8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata:0x803DF7FC; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803DF800; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata:0x803DF804; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803DF808; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803DF80C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803DF810; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803DF814; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803DF818; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803DF81C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803DF820; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803DF824; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803DF828; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803DF82C; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803DF830; // type:object size:0x4 scope:local align:4 data:float +@2451 = .sdata:0x803DF834; // type:object size:0x4 scope:local align:4 data:float +@2492 = .sdata:0x803DF838; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803DF83C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803DF840; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803DF844; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803DF848; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata:0x803DF84C; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803DF850; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803DF854; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803DF85C; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803DF864; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803DF86C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DF874; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803DF87C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803DF884; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803DF88C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803DF894; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803DF89C; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803DF8A4; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803DF8AC; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803DF8B4; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803DF8BC; // type:object size:0x8 scope:local align:4 +@3076 = .sdata:0x803DF8C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF8CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF8D4; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803DF8DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF8E4; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803DF8EC; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803DF8F4; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803DF8FC; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803DF904; // type:object size:0x8 scope:local align:4 +@3101 = .sdata:0x803DF90C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803DF914; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803DF91C; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803DF924; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DF92C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DF934; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803DF93C; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803DF944; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803DF94C; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803DF958; // type:object size:0x4 scope:global align:4 data:4byte +@1898 = .sdata:0x803DF95C; // type:object size:0x7 scope:local align:4 data:string +@2161 = .sdata:0x803DF964; // type:object size:0x3 scope:local align:4 data:string +@3232 = .sdata:0x803DF968; // type:object size:0x6 scope:local align:4 data:string +@3235 = .sdata:0x803DF970; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF978; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF980; // type:object size:0x8 scope:local align:4 +@3240 = .sdata:0x803DF988; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DF990; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803DF998; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803DF9A0; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803DF9A8; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803DF9B0; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803DF9B8; // type:object size:0x6 scope:local align:4 data:string +@644 = .sdata:0x803DF9C0; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803DF9C8; // type:object size:0x3 scope:local align:4 data:string +@751 = .sdata:0x803DF9CC; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803DF9D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DF9DC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DF9E4; // type:object size:0x8 scope:local align:4 +@756 = .sdata:0x803DF9EC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803DF9F4; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803DF9FC; // type:object size:0x8 scope:local align:4 +@760 = .sdata:0x803DFA04; // type:object size:0x6 scope:local align:4 data:string +@762 = .sdata:0x803DFA0C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DFA14; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803DFA1C; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803DFA28; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803DFA30; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803DFA34; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803DFA38; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803DFA3C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803DFA44; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803DFA4C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DFA54; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DFA5C; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803DFA64; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DFA6C; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803DFA74; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803DFA80; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803DFA88; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803DFA90; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803DFA98; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803DFAA0; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803DFAA8; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803DFAB0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803DFAB4; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803DFAB8; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803DFABC; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803DFAC0; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803DFAC4; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803DFAC8; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803DFACC; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803DFAD0; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803DFAD4; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803DFAD8; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803DFADC; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803DFAE0; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803DFAE4; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803DFAE8; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803DFAEC; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803DFAF0; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803DFAF4; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803DFAF8; // type:object size:0x6 scope:local align:4 data:string +@2049 = .sdata:0x803DFB00; // type:object size:0x6 scope:local align:4 data:string +@2050 = .sdata:0x803DFB08; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803DFB10; // type:object size:0x7 scope:local align:4 data:string +@2052 = .sdata:0x803DFB18; // type:object size:0x6 scope:local align:4 data:string +@2053 = .sdata:0x803DFB20; // type:object size:0x6 scope:local align:4 data:string +@2054 = .sdata:0x803DFB28; // type:object size:0x6 scope:local align:4 data:string +@2055 = .sdata:0x803DFB30; // type:object size:0x5 scope:local align:4 data:string +@2056 = .sdata:0x803DFB38; // type:object size:0x5 scope:local align:4 data:string +@2057 = .sdata:0x803DFB40; // type:object size:0x5 scope:local align:4 data:string +@2083 = .sdata:0x803DFB48; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803DFB50; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803DFB54; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803DFB58; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803DFB5C; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803DFB60; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803DFB64; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803DFB68; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803DFB70; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803DFB74; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803DFB78; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803DFB7C; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803DFB84; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803DFB88; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803DFB8C; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803DFB90; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803DFB94; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803DFB98; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803DFB9C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803DFBA0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803DFBA4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803DFBA8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803DFBAC; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803DFBB0; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803DFBB4; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803DFBB8; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803DFBBC; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803DFBC0; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata:0x803DFBC4; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803DFBC8; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803DFBCC; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803DFBD0; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803DFBD4; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803DFBD8; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803DFBDC; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803DFBE0; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803DFBE4; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803DFBE8; // type:object size:0x7 scope:local align:4 data:string +@2105 = .sdata:0x803DFBF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803DFBF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803DFC00; // type:object size:0x8 scope:local align:4 +@2108 = .sdata:0x803DFC08; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803DFC10; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803DFC18; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803DFC20; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803DFC28; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803DFC30; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803DFC34; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803DFC38; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803DFC3C; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803DFC40; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803DFC44; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803DFC48; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803DFC4C; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803DFC50; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803DFC54; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803DFC58; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803DFC5C; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803DFC60; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803DFC64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803DFC68; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803DFC70; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFC78; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803DFC80; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803DFC88; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803DFC90; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803DFC94; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803DFC98; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803DFC9C; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803DFCA0; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803DFCA4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803DFCA8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803DFCAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803DFCB0; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803DFCB8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFCC0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803DFCC8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803DFCD0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803DFCD8; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803DFCE0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803DFCE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803DFCF0; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803DFCF8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFD00; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803DFD08; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803DFD10; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803DFD18; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803DFD20; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803DFD24; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803DFD28; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803DFD2C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803DFD30; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803DFD34; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803DFD38; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803DFD3C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803DFD40; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803DFD44; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803DFD48; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803DFD4C; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803DFD50; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803DFD54; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803DFD58; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803DFD5C; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803DFD60; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803DFD64; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803DFD68; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803DFD6C; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803DFD70; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803DFD74; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803DFD78; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803DFD7C; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803DFD80; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803DFD84; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803DFD88; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803DFD8C; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803DFD90; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFD94; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFD9C; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803DFDA4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFDAC; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803DFDB4; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803DFDBC; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803DFDC4; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803DFDD0; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803DFDD4; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803DFDD8; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803DFDDC; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803DFDE4; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803DFDE8; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803DFDEC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFDF0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFDF8; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803DFE00; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFE08; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803DFE10; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803DFE18; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803DFE20; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803DFE28; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803DFE30; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803DFE38; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFE40; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803DFE48; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFE50; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803DFE58; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803DFE60; // type:object size:0x4 scope:local align:4 data:string +@1410 = .sdata:0x803DFE64; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803DFE68; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803DFE6C; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803DFE70; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803DFE74; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803DFE78; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803DFE7C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803DFE80; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803DFE88; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803DFE90; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFE98; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803DFEA0; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803DFEA8; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803DFEB0; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803DFEB8; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803DFEBC; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803DFEC4; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803DFEC8; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803DFECC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFED0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFED8; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803DFEE0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFEE8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803DFEF0; // type:object size:0x8 scope:local align:4 +@1455 = .sdata:0x803DFEF8; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata:0x803DFEFC; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803DFF00; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803DFF04; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803DFF08; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803DFF0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803DFF10; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803DFF18; // type:object size:0x8 scope:local align:4 +@1513 = .sdata:0x803DFF20; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803DFF28; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803DFF30; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803DFF38; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803DFF3C; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803DFF40; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803DFF44; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803DFF48; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803DFF4C; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803DFF50; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803DFF54; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803DFF58; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803DFF5C; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803DFF60; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803DFF64; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803DFF68; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803DFF6C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803DFF70; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803DFF74; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803DFF78; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803DFF7C; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803DFF80; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803DFF84; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803DFF88; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803DFF8C; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803DFF90; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803DFF94; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803DFF98; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803DFF9C; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803DFFA0; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803DFFA4; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803DFFA8; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803DFFAC; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata:0x803DFFB0; // type:object size:0x4 scope:local align:4 data:float +@2748 = .sdata:0x803DFFB4; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803DFFB8; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803DFFBC; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803DFFC0; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803DFFC4; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata:0x803DFFC8; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803DFFCC; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803DFFD0; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803DFFD4; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803DFFD8; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata:0x803DFFDC; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803DFFE0; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803DFFE4; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata:0x803DFFE8; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803DFFEC; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803DFFF0; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803DFFF4; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803DFFF8; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803DFFFC; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E0000; // type:object size:0x4 scope:local align:4 data:float +@3066 = .sdata:0x803E0004; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803E0008; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E000C; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E0010; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E0014; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E0018; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803E001C; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata:0x803E0020; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803E0024; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E0028; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata:0x803E002C; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803E0030; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803E0034; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803E0038; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata:0x803E003C; // type:object size:0x3 scope:local align:4 data:string +@4060 = .sdata:0x803E0040; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata:0x803E0048; // type:object size:0x5 scope:local align:4 data:string +@4062 = .sdata:0x803E0050; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata:0x803E0058; // type:object size:0x5 scope:local align:4 data:string +@4064 = .sdata:0x803E0060; // type:object size:0x5 scope:local align:4 data:string +@4065 = .sdata:0x803E0068; // type:object size:0x4 scope:local align:4 data:string +@4067 = .sdata:0x803E006C; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata:0x803E0074; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata:0x803E007C; // type:object size:0x6 scope:local align:4 data:string +@4231 = .sdata:0x803E0084; // type:object size:0x2 scope:local align:4 data:string +@4238 = .sdata:0x803E0088; // type:object size:0x3 scope:local align:4 data:string +@4241 = .sdata:0x803E008C; // type:object size:0x4 scope:local align:4 data:float +@4242 = .sdata:0x803E0090; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata:0x803E0094; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata:0x803E0098; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata:0x803E009C; // type:object size:0x4 scope:local align:4 data:float +@4246 = .sdata:0x803E00A0; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata:0x803E00A4; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata:0x803E00A8; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata:0x803E00AC; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata:0x803E00B0; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata:0x803E00B4; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata:0x803E00B8; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E00BC; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E00C0; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E00C4; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata:0x803E00C8; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata:0x803E00CC; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata:0x803E00D0; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata:0x803E00D4; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata:0x803E00D8; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata:0x803E00DC; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata:0x803E00E0; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata:0x803E00E4; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata:0x803E00E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E00EC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E00F4; // type:object size:0x8 scope:local align:4 +@4430 = .sdata:0x803E00FC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0104; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E010C; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E0118; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E0120; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E0124; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E0128; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E012C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E0130; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E0134; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E0138; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E013C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E0140; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E0144; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E0148; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E014C; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E0150; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E0154; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E0158; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E015C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0160; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0168; // type:object size:0x8 scope:local align:4 +@2378 = .sdata:0x803E0170; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0178; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E0180; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E0188; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E018C; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E0190; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E0194; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E0198; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E01A0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E01A8; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E01B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E01B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E01C0; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E01C8; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E01CC; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E01D4; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E01D8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E01DC; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E01E0; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E01E4; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E01E8; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata:0x803E01EC; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E01F0; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E01F4; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E01F8; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E01FC; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E0200; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E0204; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E0208; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E020C; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E0210; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E0214; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E0218; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata:0x803E021C; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E0220; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E0224; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata:0x803E0228; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata:0x803E022C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E0230; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E0234; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E023C; // type:object size:0x8 scope:local align:4 +@2431 = .sdata:0x803E0244; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E024C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E0254; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E0260; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E0264; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E0268; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E026C; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E0270; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E0274; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E0278; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E027C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0284; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E028C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0294; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E029C; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E02A8; // type:object size:0x6 scope:local align:4 data:string +@1487 = .sdata:0x803E02B0; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata:0x803E02B4; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803E02B8; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E02BC; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E02C0; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E02C4; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata:0x803E02C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E02CC; // type:object size:0x8 scope:local align:4 +@1630 = .sdata:0x803E02D4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E02DC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E02E4; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E02F0; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E02F4; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E02F8; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E02FC; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E0300; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E0304; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E0308; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E0310; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0318; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E0320; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0328; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E0330; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E0338; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E0340; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E0348; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E0350; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E0354; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E0358; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E035C; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E0360; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E0364; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E0368; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E036C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E0370; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E0374; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E0378; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E037C; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E0380; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E0384; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E0388; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E038C; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E0390; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E0394; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E039C; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E03A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E03AC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E03B4; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E03C0; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E03C4; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E03C8; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E03CC; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E03D0; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E03D4; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E03D8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E03E0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E03E8; // type:object size:0x8 scope:local align:4 +@1343 = .sdata:0x803E03F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E03F8; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E0400; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E0408; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E040C; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E0410; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E0414; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E0418; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E041C; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E0420; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E0424; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E0428; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E042C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E0430; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0434; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E043C; // type:object size:0x8 scope:local align:4 +@1778 = .sdata:0x803E0444; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E044C; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E0454; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E0460; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E0468; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E046C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E0470; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E0474; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E0478; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E047C; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E0480; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E0484; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E048C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0494; // type:object size:0x8 scope:local align:4 +@1901 = .sdata:0x803E049C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E04A4; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E04AC; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E04B8; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E04BC; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E04C0; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E04C4; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E04C8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E04D0; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E04D8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E04E0; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E04E8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E04F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E04F8; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E0500; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E0504; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E0508; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E050C; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E0510; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E0514; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E0518; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E051C; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E0520; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E0524; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E0528; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E052C; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E0534; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E053C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E0544; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E0550; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E0554; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E0558; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E055C; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E0560; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E0564; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0568; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0570; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E0578; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0580; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E0588; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0590; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E0598; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E05A0; // type:object size:0x8 scope:local align:4 +@1141 = .sdata:0x803E05A8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E05B0; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E05B8; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E05C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E05C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E05D0; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E05D8; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E05E0; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E05E4; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E05E8; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E05EC; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E05F0; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E05F4; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E05F8; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E05FC; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E0600; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E0604; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E0608; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E060C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E0610; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E0618; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0620; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E0628; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0630; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E0638; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E0640; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E0648; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0650; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0658; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E0660; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0668; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E0670; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E0678; // type:object size:0x8 scope:local align:4 data:string +@2112 = .sdata:0x803E0680; // type:object size:0x4 scope:local align:4 data:float +@2113 = .sdata:0x803E0684; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E0688; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata:0x803E068C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata:0x803E0690; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E0694; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E0698; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E069C; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E06A0; // type:object size:0x4 scope:local align:4 data:float +@2226 = .sdata:0x803E06A4; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E06A8; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E06AC; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata:0x803E06B0; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata:0x803E06B4; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata:0x803E06B8; // type:object size:0x4 scope:local align:4 data:float +@2486 = .sdata:0x803E06BC; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E06C0; // type:object size:0x4 scope:local align:4 data:float +@2606 = .sdata:0x803E06C4; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata:0x803E06C8; // type:object size:0x4 scope:local align:4 data:float +@2608 = .sdata:0x803E06CC; // type:object size:0x4 scope:local align:4 data:float +@2609 = .sdata:0x803E06D0; // type:object size:0x4 scope:local align:4 data:float +@2610 = .sdata:0x803E06D4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E06D8; // type:object size:0x8 scope:local align:4 +@2653 = .sdata:0x803E06E0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E06E8; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E06F0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E06F8; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E0700; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E0708; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E070C; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E0710; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E0714; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E0718; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E071C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E0720; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E0724; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E0728; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E072C; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E0730; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E0734; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E0738; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E073C; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E0740; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E0744; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E0748; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E074C; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E0750; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E0754; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E0758; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E0760; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E0768; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E076C; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E0774; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E077C; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E0784; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E078C; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E0794; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E079C; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E07A4; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E07B0; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E07B8; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E07BC; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E07C0; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E07C4; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E07C8; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E07CC; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E07D0; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E07D4; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E07D8; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E07DC; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E07E0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E07E4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E07EC; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E07F4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E07FC; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E0804; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E0810; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E0818; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E081C; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E0820; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E0824; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E0828; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0830; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E0838; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0840; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E0848; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E0850; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E0854; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E0858; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E085C; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E0860; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E0864; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E0868; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E086C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E0874; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E087C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0884; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E088C; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E0894; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E089C; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E08A8; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E08AC; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E08B0; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E08B4; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E08B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E08BC; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E08C4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E08CC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E08D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E08DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E08E4; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E08EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E08F4; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E0900; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E0904; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E0908; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E090C; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E0910; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E0914; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E0918; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E091C; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E0920; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E0924; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E0928; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E092C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E0930; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E0934; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E0938; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E093C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E0944; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E094C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E0954; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E095C; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E0968; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E096C; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E0974; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E097C; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E0984; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E098C; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E0994; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E0998; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E09A0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E09A8; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E09B0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E09B8; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E09C0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E09C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E09D0; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E09D8; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E09E0; // type:object size:0x8 scope:local align:4 +@1577 = .sdata:0x803E09E8; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata:0x803E09EC; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E09F0; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E09F4; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E09F8; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E09FC; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E0A00; // type:object size:0x8 scope:local align:4 data:string +@1606 = .sdata:0x803E0A08; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E0A0C; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E0A10; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata:0x803E0A14; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E0A1C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E0A24; // type:object size:0x8 scope:local align:4 +@1871 = .sdata:0x803E0A2C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E0A34; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E0A3C; // type:object size:0x8 scope:local align:4 +@1877 = .sdata:0x803E0A44; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E0A4C; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E0A54; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E0A5C; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E0A64; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E0A6C; // type:object size:0x8 scope:local align:4 +@2367 = .sdata:0x803E0A78; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata:0x803E0A7C; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E0A80; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata:0x803E0A84; // type:object size:0x4 scope:local align:4 data:float +@3707 = .sdata:0x803E0A88; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata:0x803E0A8C; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata:0x803E0A90; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata:0x803E0A94; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata:0x803E0A98; // type:object size:0x4 scope:local align:4 data:float +@4382 = .sdata:0x803E0A9C; // type:object size:0x4 scope:local align:4 data:float +@4431 = .sdata:0x803E0AA0; // type:object size:0x4 scope:local align:4 data:float +@4432 = .sdata:0x803E0AA4; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata:0x803E0AA8; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata:0x803E0AAC; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata:0x803E0AB0; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E0AB4; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803E0AB8; // type:object size:0x7 scope:local align:4 data:string +@5110 = .sdata:0x803E0AC0; // type:object size:0x5 scope:local align:4 data:string +@5111 = .sdata:0x803E0AC8; // type:object size:0x5 scope:local align:4 data:string +@5112 = .sdata:0x803E0AD0; // type:object size:0x7 scope:local align:4 data:string +@5113 = .sdata:0x803E0AD8; // type:object size:0x6 scope:local align:4 data:string +@5114 = .sdata:0x803E0AE0; // type:object size:0x5 scope:local align:4 data:string +@5117 = .sdata:0x803E0AE8; // type:object size:0x7 scope:local align:4 data:string +@5118 = .sdata:0x803E0AF0; // type:object size:0x7 scope:local align:4 data:string +@5119 = .sdata:0x803E0AF8; // type:object size:0x8 scope:local align:4 data:string +@5120 = .sdata:0x803E0B00; // type:object size:0x7 scope:local align:4 data:string +@5122 = .sdata:0x803E0B08; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E0B10; // type:object size:0x4 scope:local align:4 data:string +@5147 = .sdata:0x803E0B14; // type:object size:0x8 scope:local align:4 data:string +@5149 = .sdata:0x803E0B1C; // type:object size:0x5 scope:local align:4 data:string +@5150 = .sdata:0x803E0B24; // type:object size:0x4 scope:local align:4 data:string +@5151 = .sdata:0x803E0B28; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E0B30; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E0B38; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E0B40; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E0B48; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E0B50; // type:object size:0x8 scope:local align:4 +@5405 = .sdata:0x803E0B58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E0B60; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E0B68; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E0B70; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E0B78; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E0B80; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E0B84; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E0B88; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E0B8C; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E0B90; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E0B94; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E0B9C; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E0BA0; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E0BA4; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E0BA8; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E0BAC; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E0BB0; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E0BB4; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E0BB8; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E0BBC; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E0BC0; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E0BC4; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E0BC8; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E0BCC; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E0BD0; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E0BD4; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E0BD8; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E0BDC; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E0BE0; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E0BE4; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E0BE8; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E0BEC; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E0BF0; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E0BF4; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E0BF8; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E0BFC; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E0C00; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E0C04; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E0C08; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E0C0C; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E0C10; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E0C14; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E0C18; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E0C1C; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E0C20; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E0C24; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E0C28; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E0C2C; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E0C30; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E0C34; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E0C38; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E0C3C; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E0C40; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E0C44; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E0C48; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E0C4C; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E0C50; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E0C54; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E0C58; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E0C5C; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E0C60; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E0C64; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E0C68; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E0C6C; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E0C70; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E0C74; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E0C78; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E0C7C; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E0C80; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E0C84; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E0C88; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E0C8C; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E0C90; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E0C94; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E0C98; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E0C9C; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E0CA0; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E0CA4; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E0CA8; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E0CAC; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E0CB0; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E0CB4; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E0CB8; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E0CBC; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E0CC0; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E0CC4; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E0CC8; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E0CCC; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E0CD0; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E0CD8; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E0CE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E0CE8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E0CF0; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E0CF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E0D00; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E0D08; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E0D10; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E0D18; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E0D20; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E0D28; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E0D30; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E0D38; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E0D40; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E0D48; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E0D4C; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E0D50; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E0D54; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E0D58; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E0D5C; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E0D64; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E0D6C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E0D70; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E0D74; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E0D78; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E0D80; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E0D84; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E0D88; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E0D8C; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E0D90; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E0D94; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E0D98; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E0D9C; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E0DA0; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E0DA4; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E0DA8; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E0DAC; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E0DB0; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E0DB4; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E0DBC; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E0DC0; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E0DC4; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E0DC8; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E0DCC; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E0DD0; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E0DD4; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E0DD8; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E0DDC; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E0DE0; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E0DE4; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E0DE8; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E0DEC; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E0DF0; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E0DF4; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E0DF8; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E0DFC; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E0E04; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E0E0C; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E0E14; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E0E1C; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E0E20; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E0E24; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E0E28; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E0E2C; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E0E30; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E0E34; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E0E38; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E0E3C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E0E40; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E0E48; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E0E4C; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E0E50; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E0E54; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E0E58; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E0E5C; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E0E60; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E0E64; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E0E68; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E0E6C; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E0E70; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E0E78; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E0E80; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E0E84; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E0E88; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E0E8C; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E0E90; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E0E98; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E0EA0; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E0EA4; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E0EA8; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E0EAC; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E0EB0; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E0EB4; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E0EB8; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E0EBC; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E0EC0; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E0EC4; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E0EC8; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E0ECC; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E0ED0; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E0ED8; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E0EDC; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E0EE0; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E0EE4; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E0EE8; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E0EEC; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E0EF0; // type:object size:0x7 scope:local align:4 data:string +@4625 = .sdata:0x803E0EF8; // type:object size:0x5 scope:local align:4 data:string +@4655 = .sdata:0x803E0F00; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata:0x803E0F04; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803E0F08; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E0F0C; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E0F10; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E0F14; // type:object size:0x4 scope:local align:4 data:float +@4686 = .sdata:0x803E0F18; // type:object size:0x7 scope:local align:4 data:string +@4703 = .sdata:0x803E0F20; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata:0x803E0F24; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata:0x803E0F28; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E0F2C; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E0F30; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E0F34; // type:object size:0x4 scope:local align:4 data:float +@4734 = .sdata:0x803E0F38; // type:object size:0x5 scope:local align:4 data:string +@4751 = .sdata:0x803E0F40; // type:object size:0x5 scope:local align:4 data:string +@4760 = .sdata:0x803E0F48; // type:object size:0x4 scope:local align:4 data:float +@4894 = .sdata:0x803E0F4C; // type:object size:0x5 scope:local align:4 data:string +@4902 = .sdata:0x803E0F54; // type:object size:0x4 scope:local align:4 data:float +@4924 = .sdata:0x803E0F58; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata:0x803E0F5C; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803E0F60; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803E0F64; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803E0F68; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803E0F6C; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803E0F70; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803E0F74; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803E0F78; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata:0x803E0F7C; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata:0x803E0F80; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803E0F84; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E0F88; // type:object size:0x7 scope:local align:4 data:string +@4971 = .sdata:0x803E0F90; // type:object size:0x4 scope:local align:4 data:float +@4972 = .sdata:0x803E0F94; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803E0F98; // type:object size:0x4 scope:local align:4 data:float +@4974 = .sdata:0x803E0F9C; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803E0FA0; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803E0FA4; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803E0FA8; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803E0FAC; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803E0FB0; // type:object size:0x4 scope:local align:4 data:float +@5045 = .sdata:0x803E0FB4; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata:0x803E0FB8; // type:object size:0x4 scope:local align:4 data:float +@5047 = .sdata:0x803E0FBC; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803E0FC0; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803E0FC4; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803E0FC8; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803E0FCC; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803E0FD0; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803E0FD4; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata:0x803E0FD8; // type:object size:0x8 scope:local align:4 data:string +@5085 = .sdata:0x803E0FE0; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata:0x803E0FE4; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata:0x803E0FE8; // type:object size:0x4 scope:local align:4 data:float +@5104 = .sdata:0x803E0FEC; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803E0FF0; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803E0FF4; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803E0FF8; // type:object size:0x4 scope:local align:4 data:float +@5138 = .sdata:0x803E0FFC; // type:object size:0x6 scope:local align:4 data:string +@5152 = .sdata:0x803E1004; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata:0x803E1008; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata:0x803E100C; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata:0x803E1010; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803E1014; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803E1018; // type:object size:0x4 scope:local align:4 data:float +@5172 = .sdata:0x803E101C; // type:object size:0x5 scope:local align:4 data:string +@5178 = .sdata:0x803E1024; // type:object size:0x4 scope:local align:4 data:float +@5179 = .sdata:0x803E1028; // type:object size:0x4 scope:local align:4 data:float +@5180 = .sdata:0x803E102C; // type:object size:0x4 scope:local align:4 data:float +@5181 = .sdata:0x803E1030; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803E1034; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803E1038; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata:0x803E103C; // type:object size:0x4 scope:local align:4 data:float +@5195 = .sdata:0x803E1040; // type:object size:0x4 scope:local align:4 data:float +@5196 = .sdata:0x803E1044; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803E1048; // type:object size:0x8 scope:local align:4 data:string +@5328 = .sdata:0x803E1050; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata:0x803E1054; // type:object size:0x4 scope:local align:4 data:float +@5330 = .sdata:0x803E1058; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E105C; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803E1064; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803E106C; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803E1074; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803E107C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803E1084; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803E108C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803E1094; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803E109C; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803E10A4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803E10AC; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803E10B4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803E10BC; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803E10C4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803E10CC; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803E10D4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803E10DC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803E10E4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803E10EC; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803E10F4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803E10FC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803E1104; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803E110C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803E1114; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803E111C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803E1124; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803E112C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803E1134; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803E113C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803E1144; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803E114C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803E1154; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803E115C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803E1164; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803E116C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803E1174; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803E117C; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803E1184; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803E1190; // type:object size:0x1 scope:global align:1 data:byte +@1610 = .sdata:0x803E1194; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E1198; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E119C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E11A0; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E11A4; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E11A8; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E11AC; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803E11B0; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata:0x803E11B4; // type:object size:0x4 scope:local align:4 data:float +@1711 = .sdata:0x803E11B8; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803E11BC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E11C0; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E11C4; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803E11C8; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata:0x803E11CC; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E11D0; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E11D4; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803E11D8; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E11DC; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E11E0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E11E4; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803E11E8; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803E11EC; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803E11F0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata:0x803E11F4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata:0x803E11F8; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803E11FC; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata:0x803E1200; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata:0x803E1204; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E1208; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E120C; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E1210; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E1214; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E1218; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E121C; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata:0x803E1220; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803E1224; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E1228; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803E122C; // type:object size:0x2 scope:local align:4 data:string +@1994 = .sdata:0x803E1230; // type:object size:0x2 scope:local align:4 data:string +@1995 = .sdata:0x803E1234; // type:object size:0x2 scope:local align:4 data:string +@2063 = .sdata:0x803E1238; // type:object size:0x5 scope:local align:4 data:string +@2135 = .sdata:0x803E1240; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803E1244; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803E1248; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803E124C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata:0x803E1250; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata:0x803E1254; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1258; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1260; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1268; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1270; // type:object size:0x8 scope:local align:4 +@2307 = .sdata:0x803E1278; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803E1280; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803E1288; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E1290; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803E1298; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803E12A0; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803E12A8; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803E12B0; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803E12B4; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803E12B8; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803E12BC; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803E12C0; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803E12C4; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E12C8; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E12CC; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E12D0; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E12D8; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803E12E0; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803E12E4; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E12E8; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E12EC; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E12F0; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E12F4; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E12F8; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E12FC; // type:object size:0x5 scope:local align:4 +@2236 = .sdata:0x803E1304; // type:object size:0x5 scope:local align:4 +@2255 = .sdata:0x803E130C; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E1310; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E1314; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata:0x803E1318; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803E131C; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803E1320; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata:0x803E1324; // type:object size:0x7 scope:local align:4 data:string +@2801 = .sdata:0x803E132C; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E1330; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E1334; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata:0x803E1338; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803E133C; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E1340; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata:0x803E1344; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E1348; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E134C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E1350; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E1354; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E1358; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803E1360; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E1368; // type:object size:0x8 scope:local align:4 +@3006 = .sdata:0x803E1370; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803E1378; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803E1380; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803E1388; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E1390; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803E1398; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803E13A0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803E13A8; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803E13B0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E13B8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803E13C0; // type:object size:0x8 scope:local align:4 +@3032 = .sdata:0x803E13C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E13D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E13D8; // type:object size:0x8 scope:local align:4 +@3035 = .sdata:0x803E13E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E13E8; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803E13F0; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803E13F8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E1400; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803E1408; // type:object size:0x1 scope:local align:4 +@1540 = .sdata:0x803E140C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E1414; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E141C; // type:object size:0x8 scope:local align:4 +@1557 = .sdata:0x803E1424; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E142C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1434; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803E143C; // type:object size:0x8 scope:local align:4 +@1213 = .sdata:0x803E1448; // type:object size:0x7 scope:local align:4 data:string +@1987 = .sdata:0x803E1450; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1458; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1460; // type:object size:0x8 scope:local align:4 +@1990 = .sdata:0x803E1468; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E1470; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E1478; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E1480; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E1488; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803E1490; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E1498; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E14A0; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803E14A8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E14B0; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E14B8; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E14BC; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803E14C0; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E14C4; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E14C8; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E14CC; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E14D0; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E14D4; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803E14D8; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803E14DC; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E14E0; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E14E4; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E14E8; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E14EC; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E14F0; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata:0x803E14F4; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata:0x803E14F8; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata:0x803E14FC; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E1500; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E1504; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E150C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1514; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E151C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1524; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E152C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1534; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803E153C; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803E1544; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803E154C; // type:object size:0x8 scope:local align:4 +@1450 = .sdata:0x803E1554; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803E155C; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803E1568; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E156C; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E1570; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803E1574; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E1578; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803E157C; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E1580; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E1584; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E1588; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E158C; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E1590; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E1594; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E1598; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803E159C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E15A0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E15A8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E15B0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E15B8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E15C0; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E15C8; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803E15D0; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803E15D8; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803E15E0; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803E15E4; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803E15E8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E15EC; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E15F0; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E15F4; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803E15F8; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803E15FC; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803E1600; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803E1604; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803E1608; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E160C; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E1610; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E1614; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E1618; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E161C; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E1620; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803E1624; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803E1628; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803E162C; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E1630; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803E1634; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E1638; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E163C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1644; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E164C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1654; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E165C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1664; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803E166C; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803E1678; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803E167C; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803E1680; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E1684; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E1688; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E168C; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E1690; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E1694; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803E1698; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803E169C; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E16A0; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E16A4; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E16A8; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E16AC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E16B0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E16B4; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E16B8; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E16BC; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E16C0; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803E16C4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E16C8; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E16CC; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803E16D0; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803E16D4; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803E16D8; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803E16DC; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803E16E0; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803E16E4; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E16E8; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803E16EC; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803E16F0; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803E16F4; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803E16F8; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E16FC; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E1700; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E1704; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E1708; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E170C; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E1710; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E1714; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E1718; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E171C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E1720; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E1724; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E1728; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803E172C; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E1730; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E1734; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E1738; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E173C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E1740; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E1744; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E1748; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803E174C; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803E1750; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803E1754; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803E1758; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E175C; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E1760; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E1764; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E1768; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E176C; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E1770; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1774; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E177C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1784; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E178C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1794; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E179C; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E17A4; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E17AC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803E17B4; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803E17C0; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803E17C8; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803E17D0; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803E17D8; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803E17E0; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803E17E8; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803E17F0; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803E17F8; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803E1800; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803E1808; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E1810; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E1818; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803E1820; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803E1828; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E182C; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E1830; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1834; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E183C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1844; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E184C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1854; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E185C; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803E1864; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803E1870; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E1874; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803E1878; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803E187C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803E1880; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E1884; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E1888; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E188C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E1890; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E1894; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E1898; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E189C; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E18A0; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803E18A4; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata:0x803E18A8; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E18AC; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803E18B0; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E18B4; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803E18B8; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata:0x803E18BC; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803E18C0; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata:0x803E18C4; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E18C8; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E18CC; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata:0x803E18D0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803E18D4; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E18DC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E18E4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E18EC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E18F4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E18FC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1904; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E190C; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803E1914; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E1920; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E1924; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E1928; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803E192C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E1930; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E1934; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E1938; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E193C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E1940; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E1944; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata:0x803E1948; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803E194C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803E1950; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1954; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E195C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1964; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E196C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1974; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E197C; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803E1984; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E198C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E1994; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E199C; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803E19A8; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E19AC; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803E19B0; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803E19B4; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E19B8; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E19BC; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E19C0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E19C8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E19D0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E19D8; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E19E0; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E19E8; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803E19F0; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803E19F8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803E1A00; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1A08; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1A10; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1A18; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E1A20; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803E1A28; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E1A30; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E1A34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E1A38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1A40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1A48; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803E1A50; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E1A58; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803E1A5C; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803E1A60; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803E1A64; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803E1A68; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E1A6C; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803E1A74; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E1A7C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E1A84; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803E1A8C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E1A94; // type:object size:0x8 scope:local align:4 +@2780 = .sdata:0x803E1AA0; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E1AA4; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata:0x803E1AA8; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata:0x803E1AAC; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata:0x803E1AB0; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E1AB4; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E1AB8; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E1ABC; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803E1AC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803E1AC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803E1ACC; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803E1AD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803E1ADC; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E1AE4; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E1AEC; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803E1AF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803E1AFC; // type:object size:0x8 scope:local align:4 +@3258 = .sdata:0x803E1B04; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1B0C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1B14; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E1B1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803E1B24; // type:object size:0x8 scope:local align:4 +@3264 = .sdata:0x803E1B2C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803E1B34; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803E1B3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803E1B44; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803E1B4C; // type:object size:0x8 scope:local align:4 +@3272 = .sdata:0x803E1B54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803E1B5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803E1B64; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803E1B6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803E1B74; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803E1B7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803E1B84; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803E1B8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803E1B94; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803E1B9C; // type:object size:0x8 scope:local align:4 +@3291 = .sdata:0x803E1BA4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803E1BAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803E1BB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803E1BBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803E1BC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803E1BCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803E1BD4; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803E1BDC; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803E1BE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803E1BEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803E1BF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803E1BFC; // type:object size:0x8 scope:local align:4 +@3326 = .sdata:0x803E1C04; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803E1C0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803E1C14; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803E1C1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803E1C24; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803E1C2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803E1C34; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803E1C3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803E1C44; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803E1C4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803E1C54; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803E1C5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803E1C64; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803E1C6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803E1C74; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803E1C7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803E1C84; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803E1C8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803E1C94; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803E1C9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803E1CA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803E1CAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803E1CB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803E1CBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803E1CC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803E1CCC; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E1CD4; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803E1CDC; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E1CE8; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803E1CF0; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E1CF8; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803E1D00; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803E1D04; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803E1D08; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803E1D0C; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803E1D10; // type:object size:0x4 scope:local align:4 data:string +@2507 = .sdata:0x803E1D14; // type:object size:0x5 scope:local align:4 data:string +@2509 = .sdata:0x803E1D1C; // type:object size:0x6 scope:local align:4 data:string +@2515 = .sdata:0x803E1D24; // type:object size:0x5 scope:local align:4 data:string +@2521 = .sdata:0x803E1D2C; // type:object size:0x5 scope:local align:4 data:string +@2539 = .sdata:0x803E1D34; // type:object size:0x5 scope:local align:4 data:string +@2766 = .sdata:0x803E1D3C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E1D40; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E1D44; // type:object size:0x4 scope:local align:4 data:float +@3063 = .sdata:0x803E1D48; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1D50; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1D58; // type:object size:0x8 scope:local align:4 +@3065 = .sdata:0x803E1D60; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E1D68; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E1D70; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E1D78; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E1D80; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803E1D88; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E1D90; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803E1D98; // type:object size:0x8 scope:local align:4 +@3092 = .sdata:0x803E1DA0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803E1DA8; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803E1DB0; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E1DB8; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803E1DC0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1DC8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1DD0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1DD8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1DE0; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1DE8; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1DF0; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803E1DF8; // type:object size:0x8 scope:local align:4 +@3176 = .sdata:0x803E1E00; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803E1E08; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803E1E10; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803E1E18; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803E1E20; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803E1E28; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803E1E30; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803E1E38; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803E1E40; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E1E48; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803E1E50; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803E1E58; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E1E60; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803E1E68; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803E1E70; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803E1E78; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1E80; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1E88; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1E90; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1E98; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1EA0; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1EA8; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803E1EB0; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803E1EB8; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803E1EC0; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803E1EC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803E1ED0; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803E1ED8; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803E1EE0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E1EE8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E1EF0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E1EF8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E1F00; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E1F08; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E1F10; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803E1F18; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E1F20; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E1F24; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E1F28; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E1F2C; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E1F30; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E1F34; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E1F38; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803E1F3C; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803E1F40; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803E1F44; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E1F48; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E1F4C; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803E1F50; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803E1F54; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E1F58; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E1F5C; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E1F64; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803E1F6C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E1F78; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E1F80; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E1F88; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E1F90; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803E1F98; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803E1FA0; // type:object size:0x1 scope:global align:1 data:byte +@2701 = .sdata:0x803E1FA4; // type:object size:0x4 scope:local align:4 data:string +@2703 = .sdata:0x803E1FA8; // type:object size:0x4 scope:local align:4 data:string +@2704 = .sdata:0x803E1FAC; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803E1FB0; // type:object size:0x4 scope:local align:4 data:string +@2708 = .sdata:0x803E1FB4; // type:object size:0x4 scope:local align:4 data:string +@2710 = .sdata:0x803E1FB8; // type:object size:0x4 scope:local align:4 data:4byte +@2712 = .sdata:0x803E1FBC; // type:object size:0x4 scope:local align:4 data:4byte +@2714 = .sdata:0x803E1FC0; // type:object size:0x4 scope:local align:4 data:4byte +@2716 = .sdata:0x803E1FC4; // type:object size:0x4 scope:local align:4 data:4byte +@2718 = .sdata:0x803E1FC8; // type:object size:0x4 scope:local align:4 data:4byte +@2720 = .sdata:0x803E1FCC; // type:object size:0x4 scope:local align:4 data:4byte +@2722 = .sdata:0x803E1FD0; // type:object size:0x4 scope:local align:4 data:4byte +@2724 = .sdata:0x803E1FD4; // type:object size:0x4 scope:local align:4 data:4byte +@2726 = .sdata:0x803E1FD8; // type:object size:0x4 scope:local align:4 data:4byte +@2728 = .sdata:0x803E1FDC; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803E1FE0; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803E1FE4; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803E1FE8; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803E1FEC; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803E1FF0; // type:object size:0x4 scope:local align:4 data:4byte +@2736 = .sdata:0x803E1FF4; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803E1FF8; // type:object size:0x4 scope:local align:4 data:4byte +@2740 = .sdata:0x803E1FFC; // type:object size:0x4 scope:local align:4 data:4byte +@2742 = .sdata:0x803E2000; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803E2004; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803E2008; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803E200C; // type:object size:0x4 scope:local align:4 data:4byte +@2747 = .sdata:0x803E2010; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803E2014; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803E2018; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803E201C; // type:object size:0x4 scope:local align:4 data:4byte +@2753 = .sdata:0x803E2020; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803E2024; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803E2028; // type:object size:0x4 scope:local align:4 data:4byte +@2758 = .sdata:0x803E202C; // type:object size:0x4 scope:local align:4 data:4byte +@2760 = .sdata:0x803E2030; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803E2034; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803E2038; // type:object size:0x4 scope:local align:4 data:4byte +@2765 = .sdata:0x803E203C; // type:object size:0x4 scope:local align:4 data:4byte +@2767 = .sdata:0x803E2040; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803E2044; // type:object size:0x4 scope:local align:4 data:4byte +@2769 = .sdata:0x803E2048; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803E204C; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803E2050; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803E2054; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803E2058; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803E205C; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803E2060; // type:object size:0x4 scope:local align:4 data:4byte +@2777 = .sdata:0x803E2064; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803E2068; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803E206C; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803E2070; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803E2074; // type:object size:0x4 scope:local align:4 data:4byte +@2784 = .sdata:0x803E2078; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803E207C; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803E2080; // type:object size:0x4 scope:local align:4 data:4byte +@2790 = .sdata:0x803E2084; // type:object size:0x4 scope:local align:4 data:4byte +@2792 = .sdata:0x803E2088; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803E208C; // type:object size:0x4 scope:local align:4 data:4byte +@2794 = .sdata:0x803E2090; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803E2094; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803E2098; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803E209C; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803E20A0; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803E20A4; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803E20A8; // type:object size:0x4 scope:local align:4 data:4byte +@2855 = .sdata:0x803E20AC; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E20B0; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803E20B4; // type:object size:0x4 scope:local align:4 data:float +@2914 = .sdata:0x803E20B8; // type:object size:0x4 scope:local align:4 data:float +@2915 = .sdata:0x803E20BC; // type:object size:0x4 scope:local align:4 data:float +@2916 = .sdata:0x803E20C0; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E20C4; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E20C8; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803E20CC; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E20D0; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E20D4; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E20D8; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E20DC; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E20E0; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E20E4; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E20E8; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E20EC; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E20F0; // type:object size:0x4 scope:local align:4 data:float +@3018 = .sdata:0x803E20F4; // type:object size:0x1 scope:local align:4 +@3020 = .sdata:0x803E20F8; // type:object size:0x8 scope:local align:4 data:string +@3060 = .sdata:0x803E2100; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata:0x803E2104; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata:0x803E2108; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803E210C; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E2110; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E2114; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E2118; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E211C; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803E2120; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E2124; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata:0x803E2128; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803E212C; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata:0x803E2130; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata:0x803E2134; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata:0x803E2138; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E213C; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata:0x803E2140; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata:0x803E2144; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata:0x803E2148; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata:0x803E214C; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata:0x803E2150; // type:object size:0x4 scope:local align:4 data:float +@4653 = .sdata:0x803E2154; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata:0x803E2158; // type:object size:0x4 scope:local align:4 data:float +@4746 = .sdata:0x803E215C; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata:0x803E2160; // type:object size:0x3 scope:local align:4 data:string +@4813 = .sdata:0x803E2164; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata:0x803E2168; // type:object size:0x4 scope:local align:4 data:float +@4875 = .sdata:0x803E216C; // type:object size:0x4 scope:local align:4 data:float +@4876 = .sdata:0x803E2170; // type:object size:0x4 scope:local align:4 data:float +@4906 = .sdata:0x803E2174; // type:object size:0x4 scope:local align:4 data:float +@4907 = .sdata:0x803E2178; // type:object size:0x4 scope:local align:4 data:float +@4908 = .sdata:0x803E217C; // type:object size:0x4 scope:local align:4 data:float +@4909 = .sdata:0x803E2180; // type:object size:0x4 scope:local align:4 data:float +@4910 = .sdata:0x803E2184; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803E2188; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803E218C; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803E2190; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803E2194; // type:object size:0x4 scope:local align:4 data:float +@5200 = .sdata:0x803E2198; // type:object size:0x4 scope:local align:4 data:float +@5201 = .sdata:0x803E219C; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata:0x803E21A0; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata:0x803E21A4; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata:0x803E21A8; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803E21AC; // type:object size:0x4 scope:local align:4 data:float +@5219 = .sdata:0x803E21B0; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata:0x803E21B4; // type:object size:0x4 scope:local align:4 data:float +@5464 = .sdata:0x803E21B8; // type:object size:0x4 scope:local align:4 data:float +@5465 = .sdata:0x803E21BC; // type:object size:0x4 scope:local align:4 data:float +@5665 = .sdata:0x803E21C0; // type:object size:0x4 scope:local align:4 data:float +@6189 = .sdata:0x803E21C4; // type:object size:0x4 scope:local align:4 data:float +@6190 = .sdata:0x803E21C8; // type:object size:0x4 scope:local align:4 data:float +@6191 = .sdata:0x803E21CC; // type:object size:0x4 scope:local align:4 data:float +@6376 = .sdata:0x803E21D0; // type:object size:0x4 scope:local align:4 data:float +@6377 = .sdata:0x803E21D4; // type:object size:0x4 scope:local align:4 data:float +@6378 = .sdata:0x803E21D8; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803E21DC; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803E21E0; // type:object size:0x4 scope:local align:4 data:float +@6386 = .sdata:0x803E21E4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E21E8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803E21F0; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803E21F8; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E2200; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E2208; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E2210; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E2218; // type:object size:0x8 scope:local align:4 +@6740 = .sdata:0x803E2220; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2228; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2230; // type:object size:0x8 scope:local align:4 +@6743 = .sdata:0x803E2238; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2240; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803E2248; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E2250; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E2258; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2260; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E2268; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803E2270; // type:object size:0x8 scope:local align:4 +@6773 = .sdata:0x803E2278; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E2280; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E2288; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E2290; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803E2298; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803E22A0; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803E22A4; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803E22A8; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E22AC; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E22B0; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E22B4; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803E22B8; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803E22BC; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803E22C0; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803E22C4; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803E22C8; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803E22CC; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803E22D0; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803E22D4; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803E22D8; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803E22DC; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803E22E0; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803E22E4; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E22E8; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E22EC; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E22F0; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E22F4; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E22F8; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E22FC; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803E2300; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803E2304; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803E2308; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803E230C; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803E2310; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803E2314; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803E2318; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803E231C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803E2320; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E2324; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata:0x803E2328; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata:0x803E232C; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata:0x803E2330; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata:0x803E2334; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata:0x803E2338; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata:0x803E233C; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata:0x803E2340; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803E2344; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803E2348; // type:object size:0x4 scope:local align:4 data:float +@3515 = .sdata:0x803E234C; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata:0x803E2350; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata:0x803E2354; // type:object size:0x4 scope:local align:4 data:float +@3518 = .sdata:0x803E2358; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata:0x803E235C; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata:0x803E2360; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E2364; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E2368; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E236C; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E2370; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E2374; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E2378; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E237C; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803E2380; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata:0x803E2384; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E2388; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E238C; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata:0x803E2390; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata:0x803E2394; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata:0x803E2398; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata:0x803E239C; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata:0x803E23A0; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata:0x803E23A4; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata:0x803E23A8; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata:0x803E23AC; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata:0x803E23B0; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E23B4; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata:0x803E23B8; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata:0x803E23BC; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata:0x803E23C0; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata:0x803E23C4; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata:0x803E23C8; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata:0x803E23CC; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata:0x803E23D0; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata:0x803E23D4; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata:0x803E23D8; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata:0x803E23DC; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata:0x803E23E0; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata:0x803E23E4; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata:0x803E23E8; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803E23EC; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata:0x803E23F0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata:0x803E23F4; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata:0x803E23F8; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata:0x803E23FC; // type:object size:0x4 scope:local align:4 data:float +@4779 = .sdata:0x803E2400; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata:0x803E2404; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata:0x803E2408; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata:0x803E240C; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata:0x803E2410; // type:object size:0x4 scope:local align:4 data:float +@4937 = .sdata:0x803E2414; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E2418; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata:0x803E241C; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata:0x803E2420; // type:object size:0x4 scope:local align:4 data:float +@5070 = .sdata:0x803E2424; // type:object size:0x4 scope:local align:4 data:float +@5071 = .sdata:0x803E2428; // type:object size:0x4 scope:local align:4 data:float +@5072 = .sdata:0x803E242C; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata:0x803E2430; // type:object size:0x4 scope:local align:4 data:float +@5074 = .sdata:0x803E2434; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata:0x803E2438; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata:0x803E243C; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E2440; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803E2444; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata:0x803E2448; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata:0x803E244C; // type:object size:0x4 scope:local align:4 data:float +@5223 = .sdata:0x803E2450; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E2454; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata:0x803E2458; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata:0x803E245C; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata:0x803E2460; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata:0x803E2464; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata:0x803E2468; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata:0x803E246C; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata:0x803E2470; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata:0x803E2474; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata:0x803E2478; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata:0x803E247C; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata:0x803E2480; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata:0x803E2484; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata:0x803E2488; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata:0x803E248C; // type:object size:0x4 scope:local align:4 data:float +@5572 = .sdata:0x803E2490; // type:object size:0x4 scope:local align:4 data:float +@5573 = .sdata:0x803E2494; // type:object size:0x4 scope:local align:4 data:float +@5574 = .sdata:0x803E2498; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803E249C; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803E24A0; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803E24A4; // type:object size:0x4 scope:local align:4 data:float +@5587 = .sdata:0x803E24A8; // type:object size:0x4 scope:local align:4 data:float +@5588 = .sdata:0x803E24AC; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata:0x803E24B0; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803E24B4; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803E24B8; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata:0x803E24BC; // type:object size:0x4 scope:local align:4 data:float +@5632 = .sdata:0x803E24C0; // type:object size:0x4 scope:local align:4 data:float +@5634 = .sdata:0x803E24C4; // type:object size:0x4 scope:local align:4 data:float +@5691 = .sdata:0x803E24C8; // type:object size:0x4 scope:local align:4 data:float +@5692 = .sdata:0x803E24CC; // type:object size:0x4 scope:local align:4 data:float +@5693 = .sdata:0x803E24D0; // type:object size:0x4 scope:local align:4 data:float +@5694 = .sdata:0x803E24D4; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata:0x803E24D8; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata:0x803E24DC; // type:object size:0x4 scope:local align:4 data:float +@5712 = .sdata:0x803E24E0; // type:object size:0x4 scope:local align:4 data:float +@5718 = .sdata:0x803E24E4; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata:0x803E24E8; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata:0x803E24EC; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata:0x803E24F0; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata:0x803E24F4; // type:object size:0x4 scope:local align:4 data:float +@5723 = .sdata:0x803E24F8; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata:0x803E24FC; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata:0x803E2500; // type:object size:0x4 scope:local align:4 data:float +@5775 = .sdata:0x803E2504; // type:object size:0x4 scope:local align:4 data:float +@5776 = .sdata:0x803E2508; // type:object size:0x4 scope:local align:4 data:float +@5777 = .sdata:0x803E250C; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata:0x803E2510; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803E2514; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803E2518; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803E251C; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803E2520; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata:0x803E2524; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata:0x803E2528; // type:object size:0x4 scope:local align:4 data:float +@5818 = .sdata:0x803E252C; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata:0x803E2530; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata:0x803E2534; // type:object size:0x4 scope:local align:4 data:float +@5821 = .sdata:0x803E2538; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata:0x803E253C; // type:object size:0x4 scope:local align:4 data:float +@5823 = .sdata:0x803E2540; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E2544; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E254C; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E2554; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803E255C; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803E2564; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803E256C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803E2574; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803E257C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803E2584; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803E258C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803E2594; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803E259C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803E25A4; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803E25AC; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803E25B4; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803E25BC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803E25C4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803E25CC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803E25D4; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803E25DC; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803E25E4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803E25EC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803E25F4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803E25FC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803E2604; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803E260C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803E2614; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803E261C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803E2624; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803E262C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803E2634; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803E263C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803E2644; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803E264C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803E2654; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803E265C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803E2664; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803E266C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803E2674; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803E267C; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E2684; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803E268C; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803E2698; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E269C; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803E26A0; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E26A4; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E26A8; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E26AC; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E26B0; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E26B4; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E26B8; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E26BC; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E26C0; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803E26C4; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803E26C8; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E26CC; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E26D0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E26D4; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E26DC; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E26E4; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803E26EC; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803E26F4; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803E26FC; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803E2704; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803E270C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803E2714; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803E271C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803E2724; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803E272C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803E2734; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803E273C; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803E2748; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E274C; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E2750; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E2754; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E2758; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E275C; // type:object size:0x4 scope:local align:4 data:float +@3309 = .sdata:0x803E2760; // type:object size:0x1 scope:local align:4 +@3391 = .sdata:0x803E2764; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E2768; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E276C; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E2770; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E2774; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E2778; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E277C; // type:object size:0x5 scope:local align:4 data:string +@3530 = .sdata:0x803E2784; // type:object size:0x8 scope:local align:4 data:string +@3535 = .sdata:0x803E278C; // type:object size:0x5 scope:local align:4 data:string +@3536 = .sdata:0x803E2794; // type:object size:0x5 scope:local align:4 data:string +@3537 = .sdata:0x803E279C; // type:object size:0x7 scope:local align:4 data:string +@3538 = .sdata:0x803E27A4; // type:object size:0x6 scope:local align:4 data:string +@3539 = .sdata:0x803E27AC; // type:object size:0x5 scope:local align:4 data:string +@3540 = .sdata:0x803E27B4; // type:object size:0x5 scope:local align:4 data:string +@3541 = .sdata:0x803E27BC; // type:object size:0x7 scope:local align:4 data:string +@3542 = .sdata:0x803E27C4; // type:object size:0x8 scope:local align:4 data:string +@3543 = .sdata:0x803E27CC; // type:object size:0x6 scope:local align:4 data:string +@3800 = .sdata:0x803E27D4; // type:object size:0x4 scope:local align:4 data:string +@3807 = .sdata:0x803E27D8; // type:object size:0x7 scope:local align:4 +@3809 = .sdata:0x803E27E0; // type:object size:0x5 scope:local align:4 data:string +@3810 = .sdata:0x803E27E8; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata:0x803E27F0; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata:0x803E27F8; // type:object size:0x5 scope:local align:4 data:string +@3816 = .sdata:0x803E2800; // type:object size:0x6 scope:local align:4 data:string +@3819 = .sdata:0x803E2808; // type:object size:0x6 scope:local align:4 data:string +@3821 = .sdata:0x803E2810; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata:0x803E2818; // type:object size:0x8 scope:local align:4 data:string +@4150 = .sdata:0x803E2820; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata:0x803E2828; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2830; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2838; // type:object size:0x8 scope:local align:4 +@4376 = .sdata:0x803E2840; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2848; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803E2850; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E2858; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E2860; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803E2864; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803E2868; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803E286C; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E2870; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E2874; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E2878; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E287C; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803E2880; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E2884; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803E2888; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E288C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E2890; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E2894; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E2898; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E289C; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E28A0; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803E28A4; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E28A8; // type:object size:0x4 scope:local align:4 data:float +@1733 = .sdata:0x803E28AC; // type:object size:0x4 scope:local align:4 data:float +@1734 = .sdata:0x803E28B0; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E28B4; // type:object size:0x4 scope:local align:4 data:float +@1820 = .sdata:0x803E28B8; // type:object size:0x4 scope:local align:4 data:float +@1821 = .sdata:0x803E28BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803E28C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E28C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E28D0; // type:object size:0x8 scope:local align:4 +@1899 = .sdata:0x803E28D8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803E28E0; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803E28E8; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803E28F0; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803E28F8; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803E2900; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803E2908; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803E2910; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803E2918; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803E2920; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803E2928; // type:object size:0x8 scope:local align:4 +@2124 = .sdata:0x803E2930; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803E2938; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803E2940; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803E2948; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803E2950; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803E2958; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803E2960; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803E2968; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803E2970; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803E2978; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2980; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2988; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803E2990; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2998; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E29A0; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803E29A8; // type:object size:0x8 scope:local align:4 +@736 = .sdata:0x803E29B0; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E29B4; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E29B8; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E29BC; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E29C0; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803E29C4; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803E29C8; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803E29CC; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803E29D0; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803E29D8; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803E29E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E29E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E29F0; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803E29F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2A00; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E2A08; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E2A10; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E2A18; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803E2A20; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803E2A28; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803E2A2C; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803E2A30; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803E2A34; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803E2A38; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E2A3C; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803E2A40; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803E2A44; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803E2A48; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803E2A4C; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803E2A50; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803E2A54; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803E2A58; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E2A60; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E2A68; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803E2A70; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803E2A74; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803E2A78; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803E2A7C; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803E2A80; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803E2A84; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803E2A88; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803E2A8C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803E2A90; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803E2A94; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E2A98; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E2A9C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E2AA0; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E2AA4; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803E2AA8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803E2AAC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803E2AB0; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803E2AB4; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803E2AB8; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803E2ABC; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803E2AC0; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803E2AC4; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803E2AC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E2ACC; // type:object size:0x8 scope:local align:4 +@1050 = .sdata:0x803E2AD4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2ADC; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2AE4; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803E2AEC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2AF4; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803E2B00; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E2B04; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E2B08; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E2B0C; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803E2B10; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803E2B14; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803E2B18; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803E2B1C; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803E2B20; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803E2B24; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803E2B28; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803E2B2C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803E2B30; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E2B34; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2B3C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2B44; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803E2B4C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2B54; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E2B5C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E2B64; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803E2B6C; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803E2B74; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803E2B7C; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E2B88; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803E2B8C; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803E2B94; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803E2B9C; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803E2BA4; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803E2BAC; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803E2BB4; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E2BBC; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803E2BC4; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803E2BCC; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803E2BD4; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803E2BDC; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803E2BE4; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803E2BEC; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803E2BF4; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803E2BFC; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803E2C04; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803E2C0C; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803E2C14; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803E2C1C; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803E2C24; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803E2C2C; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803E2C34; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803E2C3C; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803E2C44; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803E2C4C; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803E2C54; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803E2C5C; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803E2C64; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803E2C6C; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803E2C74; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803E2C7C; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803E2C84; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803E2C8C; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803E2C94; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803E2C9C; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803E2CA4; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803E2CAC; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803E2CB4; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803E2CBC; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803E2CC4; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803E2CC8; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803E2CD0; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803E2CD8; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803E2CE0; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803E2CE8; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803E2CF0; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803E2CF8; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803E2D00; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803E2D08; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803E2D10; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803E2D18; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803E2D20; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803E2D28; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803E2D30; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803E2D38; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803E2D40; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803E2D44; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803E2D4C; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803E2D54; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803E2D5C; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803E2D64; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803E2D6C; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803E2D74; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E2D7C; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E2D84; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E2D8C; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803E2D94; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803E2D9C; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803E2DA4; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803E2DA8; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803E2DB0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E2DB8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E2DC0; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803E2DC8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E2DD0; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803E2DD8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2DE0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2DE8; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803E2DF0; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803E2DF8; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E2E00; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E2E08; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803E2E0C; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803E2E10; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803E2E14; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803E2E18; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803E2E1C; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803E2E24; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803E2E2C; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803E2E34; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803E2E38; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803E2E40; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803E2E48; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803E2E50; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803E2E54; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803E2E58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E2E60; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803E2E68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2E70; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2E78; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803E2E80; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E2E88; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2E90; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2E98; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803E2EA0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2EA8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E2EB0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E2EB8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E2EC0; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803E2EC8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2ED0; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803E2ED8; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803E2EE0; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803E2EE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803E2EF0; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E2EF8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803E2F00; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803E2F08; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E2F10; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E2F18; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803E2F20; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803E2F28; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E2F30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E2F38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E2F40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E2F48; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E2F50; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803E2F58; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E2F60; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E2F64; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E2F68; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E2F6C; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E2F70; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E2F74; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E2F78; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E2F7C; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E2F84; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803E2F8C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E2F98; // type:object size:0x8 scope:local align:4 +@1291 = .sdata:0x803E2FA0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2FA8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2FB0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803E2FB8; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803E2FC0; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803E2FC8; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803E2FD0; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803E2FD8; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803E2FE0; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803E2FE8; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E2FEC; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803E2FF0; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803E2FF4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803E2FFC; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803E3004; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803E300C; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803E3014; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803E301C; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803E3024; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803E302C; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E3038; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803E3040; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803E3048; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803E3050; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803E3058; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E305C; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803E3060; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803E3064; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803E3068; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803E306C; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803E3070; // type:object size:0x4 scope:global align:4 data:float +degreePerRadian__6NMathF = .sdata:0x803E3074; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803E3078; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803E307C; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803E3080; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803E3088; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803E3090; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E3098; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E30A0; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803E30A8; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E30B0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E30B8; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803E30C0; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803E30C8; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803E30D0; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803E30D8; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E30E0; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803E30E8; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803E30F0; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803E30F8; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803E3100; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803E3108; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803E3110; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803E3118; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803E3120; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E3128; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E3130; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803E3138; // type:object size:0x8 scope:local align:4 +@1799 = .sdata:0x803E3140; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E3144; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E3148; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata:0x803E314C; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata:0x803E3150; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata:0x803E3154; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata:0x803E3158; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E315C; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E3160; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E3164; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E3168; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E316C; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803E3170; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E3174; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E3178; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E317C; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E3180; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803E3184; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E3188; // type:object size:0x7 scope:local align:4 data:string +@1937 = .sdata:0x803E3190; // type:object size:0x8 scope:local align:4 data:string +@1938 = .sdata:0x803E3198; // type:object size:0x8 scope:local align:4 data:string +@2237 = .sdata:0x803E31A0; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E31A4; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E31A8; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E31AC; // type:object size:0x1 scope:local align:4 +@2311 = .sdata:0x803E31B0; // type:object size:0x8 scope:local align:4 data:string +@2326 = .sdata:0x803E31B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E31C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E31C8; // type:object size:0x8 scope:local align:4 +@2329 = .sdata:0x803E31D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E31D8; // type:object size:0x8 scope:local align:4 +@2331 = .sdata:0x803E31E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E31E8; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniTestSection = .sdata:0x803E31F0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E31F8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniTestNode = .sdata:0x803E3200; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803E3208; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E3210; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803E3218; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E3220; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803E3228; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E3230; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803E3238; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803E3240; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803E3248; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803E3250; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E3258; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3260; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3268; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E3270; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3278; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803E3280; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803E3288; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E3290; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E3298; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803E32A0; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803E32A8; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E32B0; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803E32B8; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803E32C0; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E32C8; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803E32D0; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E32D8; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803E32E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E32E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E32F0; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803E32F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3300; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803E3308; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E3310; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803E3318; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803E3320; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803E3328; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803E3330; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803E3338; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803E3340; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803E3348; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803E3350; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E3358; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E3360; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E3368; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E3370; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E3378; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E3380; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803E3388; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803E3390; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803E3398; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803E33A0; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803E33A8; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803E33B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E33B8; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E33C0; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E33C8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803E33D0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803E33D8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E33E0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803E33E8; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803E33F0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803E33F8; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803E3400; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803E3408; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803E3410; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E3418; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803E3420; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803E3428; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803E3430; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3438; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3440; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803E3448; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3450; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803E3458; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3460; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3468; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803E3470; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803E3478; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803E3480; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803E3488; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803E3490; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3498; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E34A0; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803E34A8; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803E34B0; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803E34B8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803E34C0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803E34C8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803E34D0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E34D8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803E34E0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803E34E8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803E34F0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803E34F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803E3500; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803E3508; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3510; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E3518; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3520; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803E3528; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E3530; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803E3538; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3540; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3548; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803E3550; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803E3558; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803E3560; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803E3568; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3570; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3578; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803E3580; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E3588; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3590; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3598; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803E35A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E35A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E35B0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803E35B8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803E35C0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803E35C8; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E35D0; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803E35D4; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803E35D8; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803E35DC; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803E35E0; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803E35E4; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803E35E8; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803E35EC; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803E35F0; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803E35F4; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803E35F8; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E35FC; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E3600; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803E3604; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E360C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803E3614; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803E361C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3624; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E362C; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803E3634; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E363C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3644; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803E364C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3654; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E365C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3664; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803E366C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803E3674; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803E367C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803E3684; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803E368C; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803E3694; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803E369C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803E36A4; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E36AC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E36B4; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803E36BC; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803E36C4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803E36CC; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803E36D4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803E36DC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803E36E4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803E36EC; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803E36F4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803E36FC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803E3704; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803E370C; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E3714; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803E371C; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803E3724; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E372C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3734; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803E373C; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803E3744; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803E374C; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803E3754; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803E375C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803E3764; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803E376C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3778; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803E3780; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803E3788; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803E3790; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803E3798; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803E37A0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803E37A8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803E37B0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E37B8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E37C0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E37C8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803E37D0; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803E37D8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803E37E0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E37E8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E37EC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E37F0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E37F4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E37F8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E37FC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3800; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E3804; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E3808; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E380C; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803E3810; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803E3814; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803E3818; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E381C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803E3824; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E382C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3834; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803E383C; // type:object size:0x8 scope:local align:4 +@2167 = .sdata:0x803E3844; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E384C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3854; // type:object size:0x8 scope:local align:4 +@2170 = .sdata:0x803E385C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3864; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E386C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803E3874; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803E387C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803E3884; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803E388C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803E3894; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E38A0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803E38A8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803E38B0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E38B8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E38C0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803E38C8; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803E38D0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803E38D8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803E38E0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803E38E8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803E38F0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803E38F8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803E3900; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E3908; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803E390C; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803E3910; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803E3914; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803E3918; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803E391C; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803E3920; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3924; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E392C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3934; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803E393C; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803E3944; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E394C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3954; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803E395C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803E3964; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803E396C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3974; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E397C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803E3984; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803E398C; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803E3994; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E399C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E39A4; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803E39AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E39B4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E39BC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803E39C4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E39D0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803E39D8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803E39E0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E39E8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E39EC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E39F0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E39F4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E39F8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E39FC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3A00; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803E3A04; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803E3A08; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803E3A0C; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803E3A10; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803E3A14; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803E3A18; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803E3A1C; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803E3A20; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803E3A24; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3A28; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803E3A30; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803E3A38; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803E3A40; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803E3A48; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803E3A50; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803E3A58; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E3A60; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803E3A68; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803E3A70; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3A78; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3A80; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803E3A88; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803E3A90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3A98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3AA0; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E3AA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3AB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3AB8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803E3AC0; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803E3AC8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803E3AD0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803E3AD8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803E3AE0; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E3AE8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3AEC; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E3AF0; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3AF4; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E3AF8; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E3AFC; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3B00; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803E3B08; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803E3B10; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803E3B18; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803E3B20; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803E3B28; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3B30; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803E3B38; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803E3B40; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803E3B48; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803E3B50; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3B58; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803E3B60; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803E3B64; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803E3B68; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803E3B6C; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803E3B70; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803E3B74; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803E3B78; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3B7C; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803E3B84; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803E3B8C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803E3B94; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3B9C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3BA4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803E3BAC; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803E3BB4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803E3BBC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803E3BC4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803E3BCC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803E3BD4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803E3BDC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3BE4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803E3BEC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803E3BF4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803E3BFC; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803E3C04; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803E3C0C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803E3C14; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803E3C1C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803E3C24; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803E3C2C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803E3C34; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803E3C3C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803E3C44; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803E3C4C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803E3C54; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803E3C5C; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803E3C64; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803E3C6C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803E3C74; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803E3C7C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803E3C84; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803E3C8C; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3C98; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E3C9C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3CA0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3CA4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3CA8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3CAC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3CB0; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803E3CB4; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803E3CB8; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803E3CBC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3CC0; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803E3CC8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803E3CD0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803E3CD8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803E3CE0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803E3CE8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803E3CF0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803E3CF8; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803E3D00; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803E3D08; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803E3D10; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803E3D18; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803E3D20; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3D28; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3D30; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803E3D38; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803E3D40; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803E3D48; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803E3D50; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803E3D58; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803E3D60; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803E3D68; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803E3D70; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803E3D78; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3D80; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E3D88; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803E3D90; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803E3D98; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803E3DA0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3DA8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3DB0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803E3DB8; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803E3DC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3DD0; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803E3DD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3DE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3DE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803E3DF0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E3DF8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E3DFC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E3E00; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E3E04; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E3E08; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E3E0C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E3E10; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E3E14; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E3E18; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E3E1C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E3E20; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E3E24; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E3E28; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803E3E2C; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803E3E30; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3E34; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E3E3C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E3E44; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803E3E4C; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803E3E54; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803E3E5C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803E3E64; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3E6C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3E74; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803E3E7C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803E3E84; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803E3E8C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803E3E94; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803E3E9C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803E3EA4; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803E3EAC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3EB4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3EBC; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803E3EC4; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803E3ECC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3ED4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3EDC; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803E3EE4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3EEC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3EF4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803E3EFC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803E3F04; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E3F10; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E3F14; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E3F18; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E3F1C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E3F20; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803E3F28; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803E3F30; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803E3F38; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803E3F40; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803E3F48; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803E3F50; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E3F58; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E3F60; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803E3F68; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E3F70; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803E3F78; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803E3F80; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E3F88; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E3F90; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E3F98; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E3FA0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803E3FA8; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803E3FB0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3FB8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3FC0; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803E3FC8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3FD0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E3FD8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803E3FE0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E3FE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803E3FF0; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803E3FF8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803E4000; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803E4008; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E4010; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803E4018; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4020; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4028; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803E4030; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803E4038; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E4040; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E4048; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803E4050; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803E4058; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803E4060; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803E4068; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803E4070; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803E4078; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E4080; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803E4088; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803E4090; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803E4098; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803E40A0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803E40A8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803E40B0; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803E40B8; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E40C0; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803E40C4; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803E40C8; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E40CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E40D0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E40D8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E40E0; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803E40E8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803E40F0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803E40F8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803E4100; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803E4108; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4110; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4118; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E4120; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803E4128; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E4130; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803E4138; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803E4140; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E4148; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E4150; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803E4158; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803E4160; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4168; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4170; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803E4178; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4180; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E4188; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803E4190; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803E4198; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803E41A0; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E41A4; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E41A8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E41AC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803E41B4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E41BC; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E41C4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803E41CC; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803E41D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E41DC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E41E4; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803E41EC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E41F4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E41FC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803E4204; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803E420C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4214; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E421C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803E4224; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803E422C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803E4234; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803E423C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803E4244; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803E424C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E4258; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E4260; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803E4268; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803E4270; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803E4278; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E4280; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E4288; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803E4290; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803E4298; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E42A0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E42A8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E42B0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E42B8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E42C0; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803E42C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E42D0; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E42D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E42E0; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E42E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803E42F0; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803E42F8; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803E4300; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4308; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4310; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803E4318; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4320; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803E4328; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E4330; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E4334; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E4338; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E433C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E4340; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E4344; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E4348; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803E434C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803E4350; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803E4354; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803E4358; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803E435C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803E4360; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803E4364; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803E4368; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803E436C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803E4370; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803E4374; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803E4378; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803E437C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803E4380; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803E4384; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803E4388; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803E438C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803E4390; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803E4394; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803E4398; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803E439C; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803E43A0; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803E43A4; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803E43A8; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803E43AC; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E43B0; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E43B4; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E43B8; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E43BC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E43C0; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803E43C4; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803E43C8; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E43CC; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E43D0; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E43D4; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E43D8; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803E43DC; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803E43E0; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803E43E4; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E43E8; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E43EC; // type:object size:0x4 scope:local align:4 data:float +@4342 = .sdata:0x803E43F0; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803E43F4; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803E43F8; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata:0x803E43FC; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803E4400; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803E4404; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803E4408; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803E440C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803E4410; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803E4414; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803E4418; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803E441C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E4420; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4428; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4430; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E4438; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E4440; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4448; // type:object size:0x8 scope:local align:4 +@4712 = .sdata:0x803E4450; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E4458; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4460; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4468; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803E4470; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E4478; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E4480; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803E4488; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803E4490; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803E4498; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803E44A0; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803E44A8; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803E44B0; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803E44B8; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803E44C0; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803E44C8; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803E44D0; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803E44D8; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803E44E0; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803E44E8; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803E44F0; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803E44F8; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803E4500; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803E4508; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803E4510; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803E4518; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803E4520; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803E4528; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803E4530; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E4538; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803E4540; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803E4548; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803E4550; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803E4558; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803E4560; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803E4568; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803E4570; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803E4578; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803E4580; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E4588; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803E4590; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803E4598; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803E45A0; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803E45A8; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803E45B0; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803E45B8; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E45C0; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E45C8; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803E45D0; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E45D8; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E45DC; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803E45E4; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803E45EC; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803E45F4; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803E45FC; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803E4604; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803E460C; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803E4614; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803E461C; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803E4624; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803E462C; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803E4634; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803E463C; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803E4644; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803E464C; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E4654; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803E4658; // type:object size:0x6 scope:local align:4 data:string +@1517 = .sdata:0x803E4660; // type:object size:0x8 scope:local align:4 data:string +@1519 = .sdata:0x803E4668; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4670; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4678; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E4680; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4688; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E4690; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E4698; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E46A0; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803E46A8; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803E46B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E46B8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E46C0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E46C8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E46D0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E46D8; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E46E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E46E8; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803E46F0; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803E46F8; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803E4700; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803E4708; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803E4710; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803E4718; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4720; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4728; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803E4730; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4738; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E4740; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803E4748; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803E4750; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803E4754; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803E4758; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803E475C; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803E4760; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803E4764; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803E4768; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E4770; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E4778; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803E4780; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E4788; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E4790; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803E4798; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803E47A0; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803E47A8; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803E47AC; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803E47B0; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803E47B4; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803E47B8; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803E47BC; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803E47C0; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803E47C4; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803E47C8; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803E47CC; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803E47D0; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E47D4; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803E47D8; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803E47DC; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803E47E0; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803E47E4; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803E47E8; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803E47EC; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803E47F0; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803E47F4; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803E47F8; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803E47FC; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803E4800; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803E4804; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803E4808; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803E480C; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803E4810; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803E4814; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803E4818; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803E481C; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803E4820; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E4824; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E4828; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E482C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E4830; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E4834; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E4838; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E483C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803E4840; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4844; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E484C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4854; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803E485C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4864; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E486C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4874; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803E4880; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4888; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4890; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803E4898; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E48A0; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803E48A8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E48B0; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803E48B8; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803E48C0; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803E48C8; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803E48D0; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803E48D8; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803E48E0; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803E48E8; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803E48F0; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803E48F8; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803E4900; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803E4908; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803E4910; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803E4918; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803E4920; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803E4928; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803E492C; // type:object size:0x5 scope:local align:4 data:string +@2889 = .sdata:0x803E4934; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E493C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4944; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803E494C; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E4954; // type:object size:0x8 scope:local align:4 +@2895 = .sdata:0x803E495C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4964; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E496C; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803E4974; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803E4980; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803E4988; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E498C; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E4990; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E4994; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E4998; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E499C; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E49A0; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E49A4; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803E49A8; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803E49AC; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E49B0; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E49B4; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E49B8; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E49BC; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803E49C0; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E49C4; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803E49C8; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803E49CC; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803E49D0; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E49D4; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E49D8; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E49DC; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E49E0; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E49E4; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E49E8; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E49EC; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E49F0; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E49F4; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E49F8; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E49FC; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803E4A00; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803E4A04; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803E4A08; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803E4A0C; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803E4A10; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803E4A14; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803E4A18; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803E4A1C; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803E4A20; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803E4A24; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803E4A28; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803E4A2C; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803E4A30; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803E4A34; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803E4A38; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803E4A3C; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803E4A40; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803E4A44; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803E4A48; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803E4A4C; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803E4A50; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803E4A54; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803E4A58; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E4A5C; // type:object size:0x1 scope:local align:4 +@1700 = .sdata:0x803E4A60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4A68; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4A70; // type:object size:0x8 scope:local align:4 +@1702 = .sdata:0x803E4A78; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4A80; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803E4A88; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4A90; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4A98; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4AA0; // type:object size:0x8 scope:local align:4 +@1716 = .sdata:0x803E4AA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4AB0; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803E4AB8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4AC0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4AC8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4AD0; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803E4AD8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4AE0; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803E4AE8; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803E4AF0; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E4AF4; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803E4AF8; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803E4AFC; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803E4B00; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803E4B04; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803E4B08; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803E4B0C; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803E4B10; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803E4B14; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803E4B18; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803E4B1C; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803E4B20; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803E4B24; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803E4B28; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803E4B2C; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803E4B30; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803E4B34; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803E4B38; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803E4B3C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803E4B40; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803E4B44; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4B48; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803E4B50; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803E4B58; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803E4B60; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803E4B68; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E4B70; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E4B74; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803E4B78; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E4B7C; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803E4B80; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803E4B84; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803E4B88; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803E4B8C; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803E4B90; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803E4B94; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E4B98; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803E4B9C; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803E4BA0; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803E4BA4; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803E4BA8; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803E4BAC; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803E4BB0; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803E4BB4; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803E4BB8; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803E4BBC; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803E4BC0; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803E4BC4; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E4BC8; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E4BCC; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E4BD0; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803E4BD4; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E4BD8; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803E4BDC; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E4BE0; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E4BE4; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E4BE8; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803E4BEC; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803E4BF0; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E4BF4; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E4BF8; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E4BFC; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E4C00; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803E4C04; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E4C08; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803E4C0C; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803E4C10; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803E4C14; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803E4C18; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E4C1C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E4C20; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E4C24; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E4C28; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E4C2C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E4C30; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4C38; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4C40; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803E4C48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4C50; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803E4C58; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E4C60; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803E4C68; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4C70; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803E4C78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4C80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4C88; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4C90; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4C98; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803E4CA0; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E4CA8; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803E4CB0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803E4CB4; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E4CB8; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E4CBC; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803E4CC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4CC4; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803E4CCC; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803E4CD8; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E4CDC; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E4CE0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E4CE4; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E4CE8; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E4CEC; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E4CF0; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E4CF4; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E4CF8; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803E4CFC; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E4D00; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E4D04; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E4D08; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803E4D0C; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803E4D10; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803E4D14; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4D18; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803E4D20; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803E4D28; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803E4D30; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803E4D34; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803E4D38; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803E4D3C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803E4D40; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803E4D44; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E4D48; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803E4D50; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E4D54; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E4D58; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E4D5C; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E4D60; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E4D64; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803E4D68; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E4D6C; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E4D70; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E4D74; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E4D78; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E4D7C; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803E4D80; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E4D84; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803E4D88; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E4D8C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E4D90; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E4D94; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803E4D98; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E4D9C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E4DA0; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E4DA4; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803E4DA8; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E4DAC; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E4DB0; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803E4DB4; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803E4DB8; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E4DBC; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E4DC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4DD0; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E4DD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4DE0; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803E4DE8; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E4DF0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803E4DF8; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803E4E00; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803E4E08; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4E10; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803E4E18; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4E20; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4E28; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4E30; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4E38; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803E4E40; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803E4E48; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E4E4C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803E4E50; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803E4E54; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E4E58; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E4E5C; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E4E60; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E4E64; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803E4E68; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803E4E6C; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803E4E70; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E4E74; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E4E78; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E4E7C; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803E4E80; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803E4E84; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803E4E88; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E4E8C; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803E4E90; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803E4E98; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803E4E9C; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803E4EA0; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E4EA4; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E4EA8; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E4EAC; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E4EB0; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803E4EB4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4EB8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4EC0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4EC8; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803E4ED0; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803E4ED8; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803E4EE0; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803E4EE4; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803E4EE8; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803E4EEC; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803E4EF0; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E4EF4; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E4EF8; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803E4EFC; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E4F00; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E4F04; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E4F08; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803E4F0C; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E4F10; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E4F14; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E4F18; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E4F1C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E4F20; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E4F24; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E4F28; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803E4F2C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E4F30; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E4F34; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803E4F38; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E4F3C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E4F40; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E4F44; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E4F48; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E4F4C; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803E4F50; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803E4F54; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E4F58; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803E4F5C; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803E4F60; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803E4F64; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803E4F68; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803E4F6C; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803E4F70; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803E4F74; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803E4F78; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803E4F7C; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803E4F80; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803E4F84; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E4F88; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803E4F8C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4F94; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4F9C; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E4FA4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4FAC; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803E4FB4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4FBC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4FC4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4FCC; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803E4FD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E4FDC; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803E4FE4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4FEC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4FF4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E4FFC; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803E5004; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803E5010; // type:object size:0x7 scope:local align:4 data:string +@3371 = .sdata:0x803E5018; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata:0x803E501C; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata:0x803E5020; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5024; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803E502C; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803E5038; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803E503C; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803E5040; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803E5044; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803E5048; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803E504C; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803E5050; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803E5054; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803E5058; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803E505C; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803E5060; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803E5064; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E5068; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E506C; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803E5070; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803E5074; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E5078; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803E507C; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803E5080; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803E5084; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E5088; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E508C; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E5090; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E5094; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E5098; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E509C; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E50A0; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E50A4; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E50A8; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E50AC; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E50B0; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E50B4; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803E50B8; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803E50BC; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803E50C0; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E50C4; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E50C8; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803E50CC; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803E50D0; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803E50D4; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E50D8; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E50DC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803E50E0; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E50E4; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E50E8; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E50EC; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803E50F0; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E50F4; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803E50F8; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803E50FC; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803E5100; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803E5104; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E5108; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E510C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E5110; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E5114; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E5118; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E511C; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E5120; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5124; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803E512C; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803E5134; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E513C; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803E5144; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803E514C; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803E5154; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803E515C; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E5168; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803E5170; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E5174; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E5178; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803E517C; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E5180; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803E5184; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E5188; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E518C; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E5190; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E5194; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E5198; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803E519C; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803E51A0; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803E51A4; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803E51A8; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E51AC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E51B4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E51BC; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803E51C4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E51CC; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803E51D4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E51DC; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803E51E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E51EC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E51F4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E51FC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5204; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803E520C; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803E5218; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803E5220; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E5224; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803E5228; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E522C; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803E5230; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803E5234; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803E5238; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803E523C; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803E5240; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803E5244; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803E5248; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803E524C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E5250; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E5254; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E5258; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E525C; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803E5260; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E5264; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E5268; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803E526C; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803E5270; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E5274; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E5278; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803E527C; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E5280; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E5284; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803E5288; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803E528C; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803E5290; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E5294; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E5298; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803E529C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E52A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E52A4; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803E52AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E52B4; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803E52BC; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803E52C8; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803E52CC; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803E52D0; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803E52D4; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803E52D8; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803E52DC; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803E52E0; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803E52E4; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803E52E8; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803E52EC; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803E52F0; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803E52F4; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803E52F8; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E52FC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5304; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E530C; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803E5314; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E531C; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803E5324; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E532C; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E5334; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803E533C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5344; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E534C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E5354; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E535C; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803E5364; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E5370; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803E5378; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E537C; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803E5384; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E538C; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803E5394; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E53A0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E53A8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E53B0; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803E53B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E53C0; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803E53C8; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803E53D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E53D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E53E0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E53E8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E53F0; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803E53F8; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803E5400; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803E5408; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803E540C; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803E5410; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E5414; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E541C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5424; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803E542C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5434; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803E543C; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803E5444; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E544C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5454; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E545C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5464; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803E546C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5478; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803E5480; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803E5488; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803E548C; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803E5490; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E5494; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E549C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E54A4; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803E54AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E54B4; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803E54BC; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803E54C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E54CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E54D4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E54DC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E54E4; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803E54EC; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803E54F8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E54FC; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803E5504; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803E5510; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E5518; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5520; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5528; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803E5530; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E5538; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803E5540; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803E5548; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5550; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5558; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E5560; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E5568; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803E5570; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803E5578; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803E5580; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803E5584; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803E5588; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803E558C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5590; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803E5598; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E55A0; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803E55A8; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803E55B0; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803E55B4; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803E55B8; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803E55BC; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803E55C0; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803E55C4; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803E55C8; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803E55CC; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803E55D0; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803E55D4; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803E55D8; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803E55DC; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803E55E0; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803E55E4; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803E55E8; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803E55EC; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803E55F0; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803E55F4; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803E55F8; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803E55FC; // type:object size:0x4 scope:local align:4 +@975 = .sdata:0x803E5600; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E5608; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata:0x803E560C; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata:0x803E5610; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E5614; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E5618; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E561C; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E5620; // type:object size:0x3 scope:local align:4 +@1220 = .sdata:0x803E5624; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E562C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5634; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E563C; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803E5644; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E564C; // type:object size:0x8 scope:local align:4 +@1228 = .sdata:0x803E5654; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E565C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803E5664; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803E566C; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803E5678; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803E5680; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803E5684; // type:object size:0x7 scope:local align:4 data:string +@1534 = .sdata:0x803E568C; // type:object size:0x3 scope:local align:4 data:string +@1535 = .sdata:0x803E5690; // type:object size:0x3 scope:local align:4 data:string +@1536 = .sdata:0x803E5694; // type:object size:0x7 scope:local align:4 data:string +@1616 = .sdata:0x803E569C; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803E56A0; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803E56A4; // type:object size:0x2 scope:local align:4 data:string +@1619 = .sdata:0x803E56A8; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803E56AC; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803E56B0; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803E56B4; // type:object size:0x3 scope:local align:4 data:string +@1623 = .sdata:0x803E56B8; // type:object size:0x3 scope:local align:4 data:string +@1624 = .sdata:0x803E56BC; // type:object size:0x3 scope:local align:4 data:string +@1625 = .sdata:0x803E56C0; // type:object size:0x3 scope:local align:4 data:string +@1626 = .sdata:0x803E56C4; // type:object size:0x3 scope:local align:4 data:string +@1627 = .sdata:0x803E56C8; // type:object size:0x3 scope:local align:4 data:string +@1628 = .sdata:0x803E56CC; // type:object size:0x3 scope:local align:4 data:string +@1629 = .sdata:0x803E56D0; // type:object size:0x3 scope:local align:4 data:string +@1630 = .sdata:0x803E56D4; // type:object size:0x3 scope:local align:4 data:string +@1631 = .sdata:0x803E56D8; // type:object size:0x3 scope:local align:4 data:string +@1632 = .sdata:0x803E56DC; // type:object size:0x3 scope:local align:4 data:string +@1633 = .sdata:0x803E56E0; // type:object size:0x3 scope:local align:4 data:string +@1634 = .sdata:0x803E56E4; // type:object size:0x3 scope:local align:4 data:string +@1635 = .sdata:0x803E56E8; // type:object size:0x3 scope:local align:4 data:string +@1636 = .sdata:0x803E56EC; // type:object size:0x2 scope:local align:4 data:string +@1734 = .sdata:0x803E56F0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803E56F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E56FC; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E5704; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E570C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E5714; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803E571C; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803E5728; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803E5730; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803E5734; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803E573C; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803E5744; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803E574C; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803E5754; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803E575C; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803E5764; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803E576C; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803E5774; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803E577C; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803E5784; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803E578C; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803E5794; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803E579C; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803E57A4; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803E57AC; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803E57B4; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803E57BC; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803E57C4; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803E57CC; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803E57D4; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803E57DC; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803E57E4; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803E57EC; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803E57F4; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803E57FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803E5804; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803E580C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803E5814; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803E581C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803E5824; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803E582C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803E5834; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803E583C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803E5844; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803E584C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803E5854; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803E585C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803E5864; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803E586C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803E5874; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803E587C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803E5884; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803E588C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803E5894; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803E589C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803E58A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803E58AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803E58B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803E58BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803E58C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803E58CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803E58D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803E58DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803E58E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803E58EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803E58F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803E58FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803E5904; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803E590C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803E5914; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803E591C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803E5924; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803E592C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803E5934; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803E593C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803E5944; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803E594C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803E5954; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803E595C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803E5964; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803E596C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803E5974; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803E597C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803E5984; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803E598C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803E5994; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803E599C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803E59A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803E59AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803E59B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803E59BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803E59C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803E59CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803E59D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803E59DC; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803E59E4; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803E59F0; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E59F8; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E59FC; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E5A00; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E5A04; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E5A08; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E5A0C; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E5A10; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata:0x803E5A14; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E5A18; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803E5A1C; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803E5A20; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803E5A24; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803E5A28; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803E5A2C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5A30; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803E5A34; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803E5A38; // type:object size:0x4 scope:local align:4 data:float +@1878 = .sdata:0x803E5A40; // type:object size:0x1 scope:local align:4 +@1936 = .sdata:0x803E5A44; // type:object size:0x4 scope:local align:4 data:string +@1969 = .sdata:0x803E5A48; // type:object size:0x2 scope:local align:4 data:string +@1970 = .sdata:0x803E5A4C; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E5A50; // type:object size:0x5 scope:local align:4 data:string +@1993 = .sdata:0x803E5A58; // type:object size:0x3 scope:local align:4 data:string +@2038 = .sdata:0x803E5A5C; // type:object size:0x7 scope:local align:4 data:string +@2073 = .sdata:0x803E5A64; // type:object size:0x7 scope:local align:4 data:string +@2074 = .sdata:0x803E5A6C; // type:object size:0x7 scope:local align:4 data:string +@2075 = .sdata:0x803E5A74; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E5A7C; // type:object size:0x7 scope:local align:4 data:string +@2077 = .sdata:0x803E5A84; // type:object size:0x7 scope:local align:4 data:string +@2078 = .sdata:0x803E5A8C; // type:object size:0x7 scope:local align:4 data:string +@1367 = .sdata:0x803E5A98; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803E5A9C; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803E5AA0; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803E5AA8; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803E5AB0; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803E5AB8; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803E5ABC; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803E5AC0; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803E5AC4; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E5AC8; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803E5AD0; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803E5AD8; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803E5AE0; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803E5AE8; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E5AEC; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E5AF0; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E5AF4; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E5AF8; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803E5AFC; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803E5B00; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803E5B04; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E5B08; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E5B0C; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E5B10; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803E5B18; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803E5B20; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803E5B28; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803E5B30; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803E5B38; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803E5B3C; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803E5B40; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803E5B44; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803E5B48; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803E5B4C; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803E5B50; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803E5B54; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803E5B58; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803E5B5C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E5B60; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E5B68; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E5B70; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803E5B78; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803E5B80; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803E5B84; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803E5B88; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803E5B8C; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803E5B90; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E5B94; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E5B98; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803E5B9C; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803E5BA0; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803E5BA4; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803E5BAC; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803E5BB0; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803E5BB4; // type:object size:0x5 scope:local align:4 data:string +@1597 = .sdata:0x803E5BBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5BC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5BCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803E5BD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803E5BDC; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803E5BE4; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803E5BEC; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803E5BF4; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803E5BFC; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803E5C04; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803E5C0C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803E5C14; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803E5C1C; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803E5C24; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803E5C2C; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803E5C34; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803E5C3C; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803E5C44; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803E5C4C; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803E5C54; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803E5C5C; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E5C64; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803E5C6C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5C74; // type:object size:0x8 scope:local align:4 +@1795 = .sdata:0x803E5C7C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5C84; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803E5C8C; // type:object size:0x8 scope:local align:4 +@1887 = .sdata:0x803E5C94; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5C9C; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803E5CA4; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803E5CB0; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803E5CB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5CC0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5CC8; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E5CD0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5CD8; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803E5CE0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5CE8; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803E5CF0; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803E5CF8; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803E5D00; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5D08; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5D10; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803E5D18; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5D20; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803E5D28; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E5D30; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803E5D38; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803E5D40; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803E5D44; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803E5D48; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803E5D4C; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803E5D50; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803E5D54; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E5D58; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803E5D5C; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E5D60; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803E5D64; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803E5D68; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E5D6C; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803E5D70; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803E5D74; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E5D78; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803E5D7C; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803E5D80; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803E5D84; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata:0x803E5D88; // type:object size:0x1 scope:local align:4 +@1627 = .sdata:0x803E5D8C; // type:object size:0x8 scope:local align:4 data:string +@1755 = .sdata:0x803E5D94; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5D9C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5DA4; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803E5DAC; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803E5DB4; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803E5DBC; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803E5DC4; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803E5DCC; // type:object size:0x8 scope:local align:4 +@1771 = .sdata:0x803E5DD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5DDC; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803E5DE4; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803E5E00; // type:object size:0x8 scope:local align:32 +@2019 = .sdata:0x803E5E08; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5E0C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E5E10; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E5E14; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E5E18; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E5E1C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803E5E20; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803E5E28; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803E5E30; // type:object size:0x4 scope:global align:4 data:float +@595 = .sdata:0x803E5E38; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803E5E3C; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803E5E40; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803E5E44; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E5E48; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E5E4C; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803E5E50; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803E5E54; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E5E58; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E5E5C; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803E5E60; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803E5E64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803E5E68; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803E5E70; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803E5E78; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803E5E80; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803E5E88; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803E5E8C; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803E5E90; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803E5E94; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803E5E98; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803E5E9C; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E5EA0; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E5EA4; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803E5EAC; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E5EB0; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803E5EB4; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803E5EB8; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E5EBC; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E5EC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E5EC8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5ED0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5ED8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5EE0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5EE8; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803E5EF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E5EF8; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803E5F00; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E5F08; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803E5F10; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E5F18; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803E5F20; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E5F24; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E5F28; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803E5F2C; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803E5F30; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803E5F34; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803E5F38; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803E5F3C; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803E5F40; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803E5F44; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803E5F48; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803E5F4C; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803E5F50; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E5F54; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E5F58; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803E5F60; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E5F68; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E5F70; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803E5F78; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E5F80; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803E5F88; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803E5F90; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803E5F98; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E5FA0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E5FA8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803E5FB0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E5FB8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E5FC0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803E5FC8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803E5FD0; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803E5FD8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803E5FE0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803E5FE8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E5FF0; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803E5FF8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803E6000; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E6008; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803E6010; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E6018; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803E6020; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803E6028; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803E6030; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6038; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6040; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803E6048; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6050; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6058; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803E6060; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E6068; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803E6070; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803E6078; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803E607C; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803E6080; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803E6084; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803E6088; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E608C; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803E6090; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803E6094; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803E6098; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803E609C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E60A0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803E60A8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E60B0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E60B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803E60C0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E60C8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803E60D0; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803E60D8; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803E60E0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E60E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803E60F0; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803E60F8; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803E6100; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E6108; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803E6110; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803E6118; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803E6120; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803E6128; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803E6130; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6138; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803E6140; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803E6148; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803E6150; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E6158; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803E6160; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E6168; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803E6170; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803E6178; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803E6180; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803E6188; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6190; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6198; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803E61A0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803E61A8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E61B0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E61B8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803E61C0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E61C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803E61D0; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803E61D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E61E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E61E8; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803E61F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E61F8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6200; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803E6208; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E6210; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803E6218; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6220; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803E6228; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803E6230; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803E6238; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6240; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6248; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803E6250; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803E6258; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803E6260; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803E6268; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803E6270; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803E6278; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803E6280; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803E6284; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803E6288; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803E628C; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803E6290; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803E6294; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803E6298; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E629C; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803E62A0; // type:object size:0x4 scope:local align:4 data:float +@2465 = .sdata:0x803E62A4; // type:object size:0x4 scope:local align:4 data:float +@2525 = .sdata:0x803E62A8; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803E62AC; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803E62B0; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803E62B4; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E62B8; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E62BC; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata:0x803E62C0; // type:object size:0x4 scope:local align:4 data:float +@2873 = .sdata:0x803E62C4; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803E62C8; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E62CC; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E62D0; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803E62D4; // type:object size:0x4 scope:local align:4 data:float +@3106 = .sdata:0x803E62D8; // type:object size:0x4 scope:local align:4 data:float +@3454 = .sdata:0x803E62DC; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata:0x803E62E0; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata:0x803E62E4; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803E62E8; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803E62EC; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata:0x803E62F0; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata:0x803E62F4; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata:0x803E62F8; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata:0x803E62FC; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata:0x803E6300; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata:0x803E6304; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata:0x803E6308; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata:0x803E630C; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata:0x803E6310; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E6314; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E631C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803E6324; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803E632C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803E6334; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803E633C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803E6344; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803E634C; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803E6354; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803E635C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E6364; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803E636C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803E6374; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803E637C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803E6384; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803E638C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E6394; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803E639C; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803E63A4; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803E63AC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803E63B4; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803E63BC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803E63C4; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803E63CC; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803E63D4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803E63DC; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803E63E4; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803E63EC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803E63F4; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803E63FC; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6404; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803E640C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803E6414; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6420; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6428; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6430; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6438; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6440; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803E6448; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803E6450; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6458; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E6460; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803E6468; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E6470; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803E6478; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803E6480; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803E6488; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803E6490; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803E6498; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E64A0; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803E64A8; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803E64B0; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803E64B8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803E64C0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803E64C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803E64D0; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E64D8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E64DC; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E64E0; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E64E4; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E64E8; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E64EC; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803E64F0; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E64F4; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E64F8; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E64FC; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E6500; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E6504; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E6508; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6510; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803E6518; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6520; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E6528; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6530; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6538; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6540; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E6548; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803E6550; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803E6558; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803E6560; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6568; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803E6570; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6578; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803E6580; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803E6588; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803E6590; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803E6598; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803E659C; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803E65A0; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803E65A4; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803E65A8; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803E65AC; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803E65B0; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803E65B4; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803E65B8; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803E65BC; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803E65C0; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803E65C4; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803E65C8; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803E65CC; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803E65D0; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803E65D4; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803E65D8; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803E65DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803E65E0; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803E65E8; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803E65F0; // type:object size:0x8 scope:local align:4 data:string +@667 = .sdata:0x803E65F8; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata:0x803E65FC; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803E6600; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata:0x803E6608; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803E660C; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata:0x803E6610; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E6614; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E6618; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803E661C; // type:object size:0x8 scope:local align:4 +@1153 = .sdata:0x803E6628; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E6630; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803E6638; // type:object size:0x8 scope:local align:4 +@880 = .sdata:0x803E6640; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E6648; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803E6650; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E6658; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E6660; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803E6668; // type:object size:0x8 scope:local align:4 +@729 = .sdata:0x803E6670; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803E6678; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803E6680; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E6688; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803E668C; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E6690; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803E6698; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803E66A0; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803E66A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803E66A8; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E66B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E66B8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E66C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803E66C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803E66D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803E66D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803E66E0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803E66E8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803E66F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803E66F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803E6700; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803E6708; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803E6710; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803E6718; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803E6720; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E6728; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803E6730; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803E6738; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803E6740; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803E6748; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803E6750; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803E6754; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E6758; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E675C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E6760; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E6764; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E6768; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803E676C; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803E6770; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803E6774; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803E677C; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803E6784; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803E678C; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803E6794; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803E679C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E67A4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E67AC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E67B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803E67BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803E67C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803E67CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803E67D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E67DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E67E4; // type:object size:0x8 scope:local align:4 +@3003 = .sdata:0x803E67EC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E67F4; // type:object size:0x8 scope:local align:4 +@1335 = .sdata:0x803E6800; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata:0x803E6804; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803E6808; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803E680C; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E6810; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6814; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E681C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6824; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803E682C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803E6834; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803E6840; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E6844; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E6848; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803E6850; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803E6858; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E6860; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E6868; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6870; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E6878; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6880; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803E6888; // type:object size:0x4 scope:local align:4 +@769 = .sdata:0x803E688C; // type:object size:0x4 scope:local align:4 +@1298 = .sdata:0x803E6890; // type:object size:0x7 scope:local align:4 data:string +@1299 = .sdata:0x803E6898; // type:object size:0x7 scope:local align:4 data:string +@1300 = .sdata:0x803E68A0; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803E68A8; // type:object size:0x7 scope:local align:4 data:string +@1302 = .sdata:0x803E68B0; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803E68B8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803E68C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803E68C8; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803E68D0; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803E68D4; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803E68D8; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803E68DC; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803E68E0; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803E68E4; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803E68E8; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E68EC; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803E68F0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E68F4; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E68F8; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803E68FC; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803E6900; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E6904; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E6908; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E690C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E6910; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803E6918; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803E6920; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803E6928; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803E6930; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803E6934; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E6938; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803E693C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E6940; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E6944; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803E6948; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803E694C; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803E6950; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6954; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803E695C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6964; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E696C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803E6974; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E697C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803E6984; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803E698C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803E6994; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E699C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E69A4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803E69AC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803E69B4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E69BC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E69C4; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803E69CC; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803E69D4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803E69DC; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803E69E4; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803E69EC; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803E69F4; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803E69FC; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803E6A04; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803E6A0C; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6A14; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803E6A1C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803E6A24; // type:object size:0x8 scope:local align:4 +@3883 = .sdata:0x803E6A2C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6A34; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6A3C; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803E6A44; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6A4C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6A54; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803E6A5C; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803E6A68; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803E6A6C; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803E6A70; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803E6A74; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803E6A78; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803E6A7C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E6A84; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E6A8C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E6A94; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803E6A9C; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6AA8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6AAC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6AB0; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6AB4; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6AB8; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6ABC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6AC0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803E6AC8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6AD0; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803E6AD8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803E6AE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6AE8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803E6AF0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803E6AF8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6B00; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6B08; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803E6B10; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803E6B18; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6B20; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803E6B28; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6B30; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6B38; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803E6B40; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803E6B48; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6B50; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6B58; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803E6B60; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6B68; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6B70; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803E6B78; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6B80; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6B84; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6B88; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6B8C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6B90; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6B94; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6B98; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803E6BA0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6BA8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6BB0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803E6BB8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803E6BC0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6BC8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6BD0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803E6BD8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6BE0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803E6BE8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6BF0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6BF8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6C00; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803E6C08; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803E6C10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6C18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6C20; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803E6C28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6C30; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6C38; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803E6C40; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803E6C48; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E6C4C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6C50; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E6C54; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E6C58; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6C5C; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803E6C60; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803E6C64; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803E6C68; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6C6C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803E6C74; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6C7C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6C84; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803E6C8C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803E6C94; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6C9C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803E6CA4; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803E6CAC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803E6CB4; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803E6CBC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803E6CC4; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803E6CCC; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803E6CD4; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803E6CDC; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803E6CE4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803E6CEC; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803E6CF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E6CFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803E6D04; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803E6D0C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803E6D14; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803E6D1C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803E6D24; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803E6D2C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6D34; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6D3C; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6D44; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803E6D4C; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803E6D54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6D5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6D64; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803E6D6C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6D74; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6D7C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803E6D84; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E6D90; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803E6D98; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6DA0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803E6DA8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6DB0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803E6DB8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6DC0; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803E6DC8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803E6DD0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6DD8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6DE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803E6DE8; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803E6DF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6DF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6E00; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803E6E08; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6E10; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6E18; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803E6E20; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803E6E28; // type:object size:0x4 scope:local align:4 +@1853 = .sdata:0x803E6E2C; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata:0x803E6E30; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803E6E34; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803E6E38; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803E6E3C; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803E6E40; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata:0x803E6E44; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata:0x803E6E48; // type:object size:0x4 scope:local align:4 data:float +@2446 = .sdata:0x803E6E4C; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803E6E50; // type:object size:0x4 scope:local align:4 data:float +@2452 = .sdata:0x803E6E54; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6E58; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803E6E60; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6E68; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6E70; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803E6E78; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6E80; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803E6E88; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803E6E90; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6E98; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803E6EA0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803E6EA8; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803E6EB0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803E6EB8; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803E6EC0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803E6EC8; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803E6ED0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803E6ED8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E6EE0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803E6EE8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803E6EF0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803E6EF8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803E6F00; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6F08; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803E6F10; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E6F18; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803E6F20; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803E6F28; // type:object size:0x8 scope:local align:4 +@3567 = .sdata:0x803E6F30; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6F38; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6F40; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803E6F48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6F50; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6F58; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803E6F60; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803E6F68; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E6F6C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803E6F74; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E6F7C; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E6F84; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803E6F8C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E6F94; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E6F9C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803E6FA4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803E6FAC; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803E6FB4; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803E6FBC; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803E6FC4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6FCC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6FD4; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803E6FDC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6FE4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E6FEC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803E6FF4; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803E6FFC; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803E7004; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803E7010; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803E7014; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E701C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E7028; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803E7030; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E7038; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E7040; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803E7048; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E7050; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E7058; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803E7060; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803E7068; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E7070; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803E7078; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803E7080; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803E7088; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803E7090; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803E7098; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803E70A0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803E70A8; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803E70B0; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E70B8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803E70C0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803E70C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803E70D0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803E70D8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803E70E0; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803E70E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803E70F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803E70F8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803E7100; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803E7108; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803E7110; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803E7118; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803E7120; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803E7128; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803E7130; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803E7138; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803E7140; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803E7148; // type:object size:0x8 scope:local align:4 +@3759 = .sdata:0x803E7150; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7158; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7160; // type:object size:0x8 scope:local align:4 +@3762 = .sdata:0x803E7168; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7170; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E7178; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803E7180; // type:object size:0x8 scope:local align:4 +@918 = .sdata:0x803E7188; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803E7190; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803E7198; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803E71A0; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E71A4; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E71A8; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E71AC; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E71B0; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E71B4; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E71B8; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803E71BC; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803E71C0; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803E71C4; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803E71C8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803E71CC; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E71D0; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803E71D4; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803E71D8; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803E71DC; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803E71E0; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803E71E4; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803E71E8; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803E71EC; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803E71F0; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803E71F4; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803E71F8; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803E71FC; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803E7200; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803E7204; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803E7208; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803E720C; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803E7210; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E7214; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E7218; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E721C; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E7220; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E7224; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E7228; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E722C; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7230; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7234; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803E7238; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803E723C; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803E7240; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E7244; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803E7248; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E724C; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803E7250; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803E7254; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E7258; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803E725C; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803E7260; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803E7264; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803E7268; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803E726C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E7270; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803E7274; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E7278; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E727C; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803E7280; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E7284; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803E7288; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E728C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E7290; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E7294; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E7298; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E729C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E72A0; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E72A4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E72A8; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E72AC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E72B0; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803E72B4; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E72B8; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E72BC; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E72C0; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E72C4; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803E72C8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E72CC; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803E72D0; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E72D4; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E72D8; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E72DC; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E72E0; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E72E4; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E72E8; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E72EC; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803E72F0; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803E72F4; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803E72F8; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803E72FC; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803E7300; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803E7304; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803E7308; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803E730C; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E7310; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E7314; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803E7318; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E731C; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E7320; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E7324; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803E7328; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803E732C; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803E7330; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803E7338; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E7340; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803E7348; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803E7350; // type:object size:0x7 scope:local align:4 data:string +@2816 = .sdata:0x803E7358; // type:object size:0x7 scope:local align:4 data:string +@2817 = .sdata:0x803E7360; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803E7368; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803E7370; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E7378; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E7380; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E7388; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E7390; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803E7398; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803E73A0; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803E73A8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803E73B0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E73B8; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803E73C0; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803E73C4; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803E73C8; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803E73CC; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803E73D0; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E73D8; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803E73DC; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803E73E0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803E73E4; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803E73E8; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E73EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803E73F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803E73F8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E7400; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803E7408; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803E7410; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E7418; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E7420; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803E7428; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803E7430; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7438; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7440; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803E7448; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7450; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E7458; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803E7460; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803E7468; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803E7470; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E7478; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803E7480; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803E7488; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803E7490; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803E7498; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803E74A0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803E74A8; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803E74B0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E74B8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803E74C0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803E74C8; // type:object size:0x8 scope:local align:4 +@2700 = .sdata:0x803E74D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E74D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E74E0; // type:object size:0x8 scope:local align:4 +@2703 = .sdata:0x803E74E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E74F0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E74F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803E7500; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E7508; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803E750C; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803E7510; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803E7514; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803E7518; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803E751C; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E7520; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E7524; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E7528; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E752C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803E7530; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E7534; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803E7538; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803E7540; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E7544; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803E7548; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803E754C; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803E7550; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803E7554; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803E7558; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E755C; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E7560; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E7564; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E7568; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803E756C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803E7570; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E7574; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E7578; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803E757C; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803E7580; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803E7584; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803E7588; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803E758C; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803E7590; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803E7594; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803E7598; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803E759C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803E75A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803E75A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803E75B0; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803E75B8; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803E75C0; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803E75C4; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803E75CC; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803E75D4; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803E75DC; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803E75E4; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803E75E8; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803E75F0; // type:object size:0x6 scope:local align:4 data:string +@1274 = .sdata:0x803E75F8; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803E75FC; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803E7600; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803E7604; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E7608; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803E760C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803E7614; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803E761C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803E7624; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803E762C; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803E7634; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803E763C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803E7644; // type:object size:0x8 scope:local align:4 +@765 = .sdata:0x803E7650; // type:object size:0x7 scope:local align:4 data:string +@766 = .sdata:0x803E7658; // type:object size:0x7 scope:local align:4 data:string +@767 = .sdata:0x803E7660; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803E7668; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803E7670; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803E7674; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803E767C; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E7688; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803E7690; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803E7698; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803E76A0; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803E76A8; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803E76B0; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803E76B8; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803E76C0; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E76C8; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803E76D0; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803E76D8; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803E76E0; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803E76E8; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803E76F0; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803E76F8; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803E7700; // type:object size:0x4 scope:local align:4 data:4byte +@31 = .sdata:0x803E7708; // type:object size:0x2 scope:local align:4 data:string +fontEncode$55 = .sdata:0x803E7710; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803E7718; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803E7720; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803E7728; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803E7730; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803E7738; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803E7740; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803E7744; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803E7748; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803E7750; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803E7758; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803E775C; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803E7760; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803E7764; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803E7768; // type:object size:0x4 scope:local align:4 data:4byte +cmdReadOrigin = .sdata:0x803E776C; // type:object size:0x4 scope:local align:4 +cmdCalibrate = .sdata:0x803E7770; // type:object size:0x4 scope:local align:4 +@413 = .sdata:0x803E7774; // type:object size:0x6 scope:local align:4 data:string +Chan = .sdata:0x803E7780; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803E7788; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$208 = .sdata:0x803E7790; // type:object size:0x4 scope:local align:4 +tbl2$209 = .sdata:0x803E7794; // type:object size:0x4 scope:local align:4 +tbl3$210 = .sdata:0x803E7798; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803E77A0; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803E77A8; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803E77B0; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803E77B8; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803E77C0; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803E77C8; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803E77D0; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803E77D8; // type:object size:0x6 scope:local align:4 +fragmentID = .sdata:0x803E77E0; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803E77E8; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803E77F0; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803E77F8; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803E7800; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803E7804; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803E7808; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803E7810; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803E7818; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803E7820; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803E7824; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803E7828; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803E782C; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803E7830; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803E7834; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803E7838; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803E783C; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803E7840; // type:object size:0x1 scope:local align:1 data:byte +dacp$240 = .sbss:0x803E7844; // type:object size:0x4 scope:local align:4 data:4byte +init$241 = .sbss:0x803E7848; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803E7850; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803E7854; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803E7858; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803E785C; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803E7860; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803E7864; // type:object size:0x4 scope:local align:4 data:4byte +first$70 = .sbss:0x803E7868; // type:object size:0x4 scope:local align:4 data:4byte +init$71 = .sbss:0x803E786C; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803E7870; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803E7874; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803E7878; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803E787C; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803E7880; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803E7881; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803E7882; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803E7884; // type:object size:0x4 scope:local align:4 data:4byte +cur$194 = .sbss:0x803E7888; // type:object size:0x4 scope:local align:4 data:4byte +init$195 = .sbss:0x803E788C; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803E7890; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803E7891; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803E7892; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803E7898; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803E789C; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803E78A0; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803E78A4; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803E78A8; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803E78AC; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803E78B0; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803E78B4; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803E78BC; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803E78C0; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803E78C4; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803E78CC; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803E78D0; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$223 = .sbss:0x803E78D4; // type:object size:0x4 scope:local align:4 data:4byte +init$224 = .sbss:0x803E78D8; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803E78DC; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803E78E0; // type:object size:0x4 scope:global align:4 data:4byte +TASK_READPTR = .sbss:0x803E78E8; // type:object size:0x1 scope:local align:1 data:byte +TASK_WRITEPTR = .sbss:0x803E78E9; // type:object size:0x1 scope:local align:1 data:byte +TASK_REMAIN = .sbss:0x803E78EA; // type:object size:0x1 scope:local align:1 data:byte +cur_waits = .sbss:0x803E78F0; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803E78F4; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803E78F8; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803E7900; // type:object size:0x4 scope:local align:4 data:4byte +inited$64 = .sbss:0x803E7908; // type:object size:0x4 scope:local align:4 data:4byte +init$65 = .sbss:0x803E790C; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803E7910; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803E7914; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803E7918; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803E7920; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803E7928; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803E7930; // type:object size:0x4 scope:local align:4 data:4byte +first$164 = .sbss:0x803E7934; // type:object size:0x4 scope:local align:4 data:4byte +init$165 = .sbss:0x803E7938; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803E7940; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803E7948; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803E794C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803E7950; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803E7954; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803E7958; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803E795C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803E7960; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803E7968; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803E796C; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803E7970; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803E7974; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803E7978; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803E797C; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803E7980; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803E7984; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803E7988; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803E798C; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803E7990; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803E7998; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803E79A0; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803E79A4; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803E79A8; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803E79B0; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803E79B4; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803E79B8; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803E79B9; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803E79BA; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803E79BC; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803E79C0; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803E79C4; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803E79C8; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803E79CC; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803E79CD; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803E79D0; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803E79D4; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803E79D8; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803E79DC; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803E79DE; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803E79E0; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803E79E2; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803E79E4; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803E79E6; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803E79E8; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803E79EC; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803E79F0; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803E79F4; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803E79F8; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803E79FC; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803E7A00; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803E7A04; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803E7A08; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803E7A0C; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803E7A10; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803E7A18; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803E7A1C; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803E7A20; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803E7A24; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803E7A28; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803E7A2C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803E7A30; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803E7A34; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803E7A38; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803E7A3C; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803E7A40; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803E7A44; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803E7A48; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803E7A50; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803E7A54; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803E7A58; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803E7A5C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803E7A60; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803E7A64; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803E7A68; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803E7A6C; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803E7A6D; // type:object size:0x1 scope:local align:1 data:byte +demo_parts_num = .sbss:0x803E7A6E; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803E7A6F; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803E7A70; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803E7A78; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803E7A80; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803E7A88; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803E7A8C; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803E7A90; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803E7A94; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803E7A98; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803E7A9C; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803E7AA0; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803E7AA4; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803E7AA8; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803E7AAC; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803E7AB4; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803E7AB8; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803E7ABC; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803E7AC0; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803E7AC4; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803E7AC8; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803E7ACC; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803E7AD0; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803E7AD4; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803E7AD8; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803E7AE0; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803E7AE4; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803E7AE8; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803E7AEC; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803E7AF0; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803E7AF8; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803E7B00; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803E7B08; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803E7B0C; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803E7B10; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803E7B14; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803E7B18; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803E7B1C; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803E7B20; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803E7B24; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803E7B28; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803E7B2C; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803E7B30; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803E7B34; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803E7B38; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803E7B3C; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803E7B40; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803E7B44; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803E7B48; // type:object size:0x4 scope:local align:4 data:4byte +videoModeAsIs$643 = .sbss:0x803E7B4C; // type:object size:0x4 scope:local align:4 data:4byte +init$644 = .sbss:0x803E7B50; // type:object size:0x1 scope:local align:1 data:byte +gfx__11DGXGraphics = .sbss:0x803E7B54; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803E7B58; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803E7B59; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803E7B5A; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803E7B60; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803E7B64; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803E7B68; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803E7B70; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803E7B74; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803E7B78; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803E7B7C; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803E7B80; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803E7B84; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803E7B88; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803E7B8C; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803E7B90; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803E7B94; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803E7B98; // type:object size:0x4 scope:local align:4 data:4byte +memcardWindow = .sbss:0x803E7B9C; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803E7BA0; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803E7BA1; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803E7BA2; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803E7BA4; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803E7BA8; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803E7BAC; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803E7BAD; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803E7BB0; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803E7BB8; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803E7BBC; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803E7BC0; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803E7BC4; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803E7BC8; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803E7BCC; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803E7BD0; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803E7BD8; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803E7BDC; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803E7BE0; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803E7BE4; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803E7BE8; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803E7BEC; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7BF0; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7BF4; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7BF8; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7BFC; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C00; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C04; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C08; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C0C; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C10; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803E7C14; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803E7C18; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803E7C20; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803E7C24; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803E7C28; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803E7C2C; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803E7C30; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803E7C38; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803E7C3A; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803E7C3C; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803E7C40; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803E7C48; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803E7C50; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803E7C54; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803E7C58; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803E7C5C; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803E7C60; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803E7C64; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803E7C68; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803E7C70; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803E7C74; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803E7C78; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803E7C7C; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803E7C80; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803E7C84; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803E7C88; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803E7C8C; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803E7C90; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803E7C98; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803E7CA0; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803E7CA8; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803E7CAC; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803E7CB0; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803E7CB8; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803E7CC0; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803E7CC1; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803E7CC4; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803E7CC8; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803E7CC9; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803E7CCA; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803E7CCB; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803E7CCC; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803E7CD0; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803E7CD4; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803E7CD8; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803E7CDC; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803E7CE0; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803E7CE4; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803E7CE8; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803E7CEC; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803E7CF0; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803E7CF4; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803E7CF8; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803E7CFC; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803E7D00; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803E7D04; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803E7D08; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803E7D10; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803E7D14; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803E7D18; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803E7D20; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803E7D28; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803E7D2C; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803E7D30; // type:object size:0x1 scope:global align:1 data:byte +count$1859 = .sbss:0x803E7D34; // type:object size:0x4 scope:local align:4 data:4byte +init$1860 = .sbss:0x803E7D38; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803E7D3C; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803E7D40; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803E7D48; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803E7D4C; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803E7D50; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803E7D58; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803E7D60; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803E7D64; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803E7D68; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803E7D6C; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803E7D70; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803E7D78; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803E7D80; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803E7D88; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803E7D8C; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803E7D8D; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803E7D8E; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803E7D8F; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803E7D90; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803E7D94; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803E7D98; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803E7D9C; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803E7DA0; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803E7DA4; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803E7DA8; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803E7DAC; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803E7DB0; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803E7DB4; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803E7DB8; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803E7DC0; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803E7DC8; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803E7DCC; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803E7DD0; // type:object size:0x4 scope:local align:4 data:float +ang$5655 = .sbss:0x803E7DD4; // type:object size:0x4 scope:local align:4 data:float +init$5656 = .sbss:0x803E7DD8; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803E7DE0; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803E7DE1; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803E7DE4; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803E7DE8; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803E7DEC; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803E7DF0; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803E7DF4; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803E7DF8; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803E7DFC; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803E7E00; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803E7E04; // type:object size:0x4 scope:global align:4 data:4byte +timer$4155 = .sbss:0x803E7E08; // type:object size:0x4 scope:local align:4 data:4byte +init$4156 = .sbss:0x803E7E0C; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803E7E10; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803E7E14; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803E7E18; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803E7E1C; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803E7E20; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803E7E24; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803E7E28; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803E7E30; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803E7E34; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803E7E38; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803E7E40; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803E7E48; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803E7E4C; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803E7E4D; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803E7E50; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803E7E58; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803E7E60; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803E7E68; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803E7E70; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803E7E78; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803E7E80; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803E7E88; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803E7E90; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803E7E94; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803E7E98; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803E7EA0; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803E7EA8; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803E7EB0; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803E7EB4; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803E7EB8; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803E7EBC; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803E7EC0; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803E7EC8; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803E7ECC; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803E7ED0; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803E7ED8; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803E7EE0; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803E7EE8; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803E7EEC; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803E7EF0; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803E7EF4; // type:object size:0x4 scope:local align:4 data:4byte +AlarmQueue = .sbss:0x803E7EF8; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803E7F00; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803E7F04; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803E7F08; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803E7F0C; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803E7F10; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803E7F18; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803E7F20; // type:object size:0x4 scope:global align:4 data:4byte +ResetFunctionQueue = .sbss:0x803E7F28; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803E7F30; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803E7F34; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803E7F38; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803E7F40; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803E7F48; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x803E7F50; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803E7F54; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803E7F58; // type:object size:0x4 scope:local align:4 data:4byte +serEnabled = .sbss:0x803E7F60; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803E7F68; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803E7F6C; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803E7F70; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803E7F74; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803E7F78; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803E7F7C; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803E7F80; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803E7F88; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803E7F8C; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803E7F90; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803E7F94; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803E7F98; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803E7FA0; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803E7FA8; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803E7FB0; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803E7FB4; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803E7FB8; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803E7FBC; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803E7FC0; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803E7FC4; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803E7FC8; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803E7FCC; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803E7FD0; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803E7FD8; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803E7FDC; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803E7FE0; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803E7FE4; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803E7FE8; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803E7FEC; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803E7FF0; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803E7FF4; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803E7FF8; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803E7FFC; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803E8000; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803E8004; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803E8008; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803E800C; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803E8010; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803E8014; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803E8018; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803E801C; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803E8020; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803E8024; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803E8028; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803E8030; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803E8034; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803E8038; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803E8040; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803E8044; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803E8048; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803E804C; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803E804E; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x803E8050; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x803E8058; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x803E8060; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x803E8068; // type:object size:0x8 scope:local align:8 data:4byte +FBSet = .sbss:0x803E8070; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803E8078; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803E807C; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803E8080; // type:object size:0x4 scope:local align:4 data:4byte +ProbingBits = .sbss:0x803E8084; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803E8088; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803E808C; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803E8090; // type:object size:0x4 scope:local align:4 data:4byte +cmdTypeAndStatus = .sbss:0x803E8094; // type:object size:0x4 scope:local align:4 +recalibrated$595 = .sbss:0x803E8098; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803E809C; // type:object size:0x4 scope:global align:4 data:4byte +__PADFixBits = .sbss:0x803E80A0; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803E80A8; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803E80AC; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803E80B0; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803E80B4; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803E80B8; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803E80C0; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803E80C8; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803E80D0; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803E80D8; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803E80E0; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803E80E8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803E80EC; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803E80F0; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803E80F4; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803E80F8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803E80FC; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803E8100; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803E8104; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803E8108; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803E810C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803E8110; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803E8114; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803E8118; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803E811C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803E8120; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803E8124; // type:object size:0x4 scope:local align:4 data:4byte +__CARDDiskID = .sbss:0x803E8128; // type:object size:0x4 scope:global align:4 data:4byte +ExiCallback = .sbss:0x803E8130; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803E8134; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803E8138; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803E8140; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803E8144; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803E8148; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803E814C; // type:object size:0x4 scope:global align:4 data:4byte +__GXCurrentThread = .sbss:0x803E8150; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803E8154; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803E8158; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803E815C; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803E8160; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803E8164; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803E8168; // type:object size:0x4 scope:global align:4 data:4byte +TokenCB = .sbss:0x803E8170; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803E8174; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803E8178; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803E817C; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803E8188; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803E8190; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803E8198; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803E819C; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803E81A0; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803E81A4; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803E81A8; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803E81B0; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803E81B8; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803E81C0; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803E81C4; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803E81C8; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803E81D0; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803E81D4; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803E81D8; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803E81DC; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803E81E0; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803E81E4; // type:object size:0x1 scope:local align:1 data:byte +@225 = .sdata2:0x803E8200; // type:object size:0x7 scope:local align:4 data:string +@226 = .sdata2:0x803E8208; // type:object size:0x7 scope:local align:4 data:string +@103 = .sdata2:0x803E8210; // type:object size:0x8 scope:local align:4 data:string +@32 = .sdata2:0x803E8218; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x803E8220; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x803E8228; // type:object size:0x7 scope:local align:4 data:string +@79 = .sdata2:0x803E8230; // type:object size:0x4 scope:local align:4 data:float +@52 = .sdata2:0x803E8238; // type:object size:0x4 scope:local align:4 data:float +@202 = .sdata2:0x803E823C; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803E8240; // type:object size:0x4 scope:local align:4 data:float +@216 = .sdata2:0x803E8244; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x803E8248; // type:object size:0x4 scope:local align:4 data:float +@346 = .sdata2:0x803E8250; // type:object size:0x8 scope:local align:8 data:double +@262 = .sdata2:0x803E8258; // type:object size:0x4 scope:local align:4 data:float +@264 = .sdata2:0x803E8260; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x803E8268; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803E826C; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803E8270; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x803E8278; // type:object size:0x8 scope:local align:8 data:double +@196 = .sdata2:0x803E8280; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803E8284; // type:object size:0x4 scope:local align:4 data:float +@198 = .sdata2:0x803E8288; // type:object size:0x4 scope:local align:4 data:float +@199 = .sdata2:0x803E828C; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803E8290; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803E8298; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803E82A0; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803E82A8; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803E82B0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803E82B8; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803E82BC; // type:object size:0x4 scope:local align:4 data:float +@124 = .sdata2:0x803E82C0; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803E82C8; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803E82D0; // type:object size:0x2 scope:local align:4 data:string +@116 = .sdata2:0x803E82D8; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803E82DC; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x803E82E0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803E82E8; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x803E82F0; // type:object size:0x4 scope:local align:4 data:float +@147 = .sdata2:0x803E82F4; // type:object size:0x4 scope:local align:4 data:float +@148 = .sdata2:0x803E82F8; // type:object size:0x4 scope:local align:4 data:float +@530 = .sdata2:0x803E82FC; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata2:0x803E8300; // type:object size:0x4 scope:local align:4 data:float +@730 = .sdata2:0x803E8304; // type:object size:0x4 scope:local align:4 data:float +@731 = .sdata2:0x803E8308; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803E830C; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803E8310; // type:object size:0x7 scope:local align:4 data:4byte +@1027 = .sdata2:0x803E8318; // type:object size:0x7 scope:local align:4 data:4byte +@146 = .sdata2:0x803E8320; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803E8328; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803E832C; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803E8330; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803E8338; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803E833C; // type:object size:0x4 scope:local align:4 data:float +@72 = .sdata2:0x803E8340; // type:object size:0x4 scope:local align:4 data:float +@73 = .sdata2:0x803E8344; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803E8348; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803E8350; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803E8358; // type:object size:0x4 scope:local align:4 data:float +@65 = .sdata2:0x803E835C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803E8360; // type:object size:0x4 scope:local align:4 data:float +@310 = .sdata2:0x803E8368; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x803E8370; // type:object size:0x4 scope:local align:4 data:float +@558 = .sdata2:0x803E8378; // type:object size:0x8 scope:local align:8 data:double +@570 = .sdata2:0x803E8380; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803E8388; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803E838C; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803E8390; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803E8394; // type:object size:0x4 scope:local align:4 data:float +@151 = .sdata2:0x803E8398; // type:object size:0x4 scope:local align:4 data:float +@152 = .sdata2:0x803E839C; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x803E83A0; // type:object size:0x4 scope:local align:4 data:float +@154 = .sdata2:0x803E83A4; // type:object size:0x4 scope:local align:4 data:float +@155 = .sdata2:0x803E83A8; // type:object size:0x4 scope:local align:4 data:float +@156 = .sdata2:0x803E83AC; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803E83B0; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803E83B8; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803E83C0; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803E83C4; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803E83C8; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803E83D0; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803E83D4; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803E83D8; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803E83E0; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x803E83E8; // type:object size:0x4 scope:local align:4 data:float +@328 = .sdata2:0x803E83EC; // type:object size:0x4 scope:local align:4 data:float +@329 = .sdata2:0x803E83F0; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803E83F4; // type:object size:0x4 scope:local align:4 data:float +@513 = .sdata2:0x803E83F8; // type:object size:0x4 scope:local align:4 data:float +@79 = .sdata2:0x803E8400; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803E8408; // type:object size:0x4 scope:local align:4 data:float +@315 = .sdata2:0x803E840C; // type:object size:0x4 scope:local align:4 data:float +@317 = .sdata2:0x803E8410; // type:object size:0x8 scope:local align:8 data:double +@513 = .sdata2:0x803E8418; // type:object size:0x4 scope:local align:4 data:float +@307 = .sdata2:0x803E8420; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803E8428; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803E842C; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803E8430; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803E8438; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803E843C; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E8440; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803E8444; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803E8448; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E844C; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803E8450; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E8458; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803E8460; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E8464; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x803E8468; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803E8470; // type:object size:0x8 scope:local align:8 data:double +@1659 = .sdata2:0x803E8478; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803E847C; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E8480; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803E8484; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803E8488; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803E8490; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803E8494; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803E8498; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803E849C; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803E84A0; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803E84A4; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803E84A8; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E84AC; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803E84B0; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803E84B4; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803E84B8; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803E84BC; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803E84C0; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803E84C4; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803E84C8; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803E84CC; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803E84D0; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803E84D4; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803E84D8; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803E84DC; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803E84E0; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803E84E4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E84E8; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E84EC; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803E84F0; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803E84F4; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803E84F8; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803E84FC; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803E8500; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803E8504; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803E8508; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803E850C; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803E8510; // type:object size:0x4 scope:local align:4 data:float +@2477 = .sdata2:0x803E8514; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata2:0x803E8518; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x803E851C; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x803E8520; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x803E8524; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x803E8528; // type:object size:0x8 scope:local align:8 data:double +@3580 = .sdata2:0x803E8530; // type:object size:0x8 scope:local align:8 data:double +@4433 = .sdata2:0x803E8538; // type:object size:0x8 scope:local align:4 data:4byte +@4498 = .sdata2:0x803E8540; // type:object size:0x8 scope:local align:8 data:double +@4499 = .sdata2:0x803E8548; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803E8550; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803E8558; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803E8560; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803E8568; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803E8570; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803E8574; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803E8578; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803E857C; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803E8580; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803E8584; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803E8588; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803E858C; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E8590; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803E8598; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803E85A0; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803E85A4; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803E85A8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803E85AC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803E85B0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803E85B8; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803E85C0; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803E85C8; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803E85D0; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803E85D8; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803E85DC; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803E85E0; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803E85E4; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803E85E8; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803E85F0; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803E85F4; // type:object size:0x4 scope:local align:4 data:float +@414 = .sdata2:0x803E85F8; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803E8600; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803E8608; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803E860C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803E8610; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803E8614; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803E8618; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803E8620; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803E8628; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803E862C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E8630; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803E8638; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803E8640; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E8644; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803E8648; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803E864C; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803E8650; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803E8658; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803E8660; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803E8668; // type:object size:0x8 scope:local align:8 data:double +@694 = .sdata2:0x803E8670; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803E8678; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata2:0x803E867C; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803E8680; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x803E8688; // type:object size:0x8 scope:local align:8 data:double +@724 = .sdata2:0x803E8690; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803E8698; // type:object size:0x8 scope:local align:8 data:double +@731 = .sdata2:0x803E86A0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803E86A4; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803E86A8; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803E86AC; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803E86B0; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803E86B4; // type:object size:0x4 scope:local align:4 data:float +@896 = .sdata2:0x803E86B8; // type:object size:0x8 scope:local align:8 data:double +@1312 = .sdata2:0x803E86C0; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803E86C8; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803E86CC; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803E86D0; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803E86D4; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803E86D8; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803E86DC; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803E86E0; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803E86E4; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803E86E8; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803E86F0; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E86F8; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803E86FC; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803E8700; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803E8704; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803E8708; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803E8710; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803E8718; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803E871C; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata2:0x803E8720; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803E8724; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803E8728; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803E872C; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803E8730; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803E8734; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803E8738; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803E873C; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata2:0x803E8740; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803E8744; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803E8748; // type:object size:0x4 scope:local align:4 data:float +@2464 = .sdata2:0x803E874C; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803E8750; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803E8758; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803E875C; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803E8760; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803E8764; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803E8768; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803E876C; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata2:0x803E8770; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803E8778; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803E877C; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803E8780; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803E8784; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803E8788; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803E878C; // type:object size:0x4 scope:local align:4 data:float +@2283 = .sdata2:0x803E8790; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803E8794; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803E8798; // type:object size:0x4 scope:local align:4 data:float +@2426 = .sdata2:0x803E879C; // type:object size:0x4 scope:local align:4 data:float +@2986 = .sdata2:0x803E87A0; // type:object size:0x4 scope:local align:4 data:float +@2987 = .sdata2:0x803E87A4; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803E87A8; // type:object size:0x4 scope:local align:4 data:float +@3087 = .sdata2:0x803E87AC; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata2:0x803E87B0; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata2:0x803E87B4; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803E87B8; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803E87BC; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x803E87C0; // type:object size:0x4 scope:local align:4 data:float +@3345 = .sdata2:0x803E87C4; // type:object size:0x4 scope:local align:4 data:float +@3346 = .sdata2:0x803E87C8; // type:object size:0x4 scope:local align:4 data:float +@3347 = .sdata2:0x803E87CC; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803E87D0; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x803E87D8; // type:object size:0x8 scope:local align:8 data:double +@1300 = .sdata2:0x803E87E0; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x803E87E4; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803E87E8; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata2:0x803E87EC; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803E87F0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803E87F8; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803E8800; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803E8804; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803E8808; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803E880C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803E8810; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803E8814; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803E8818; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803E881C; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803E8820; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata2:0x803E8824; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803E8828; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803E8830; // type:object size:0x8 scope:local align:8 data:double +@809 = .sdata2:0x803E8838; // type:object size:0x4 scope:local align:4 data:float +@810 = .sdata2:0x803E883C; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803E8840; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803E8844; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803E8848; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E884C; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803E8850; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803E8854; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803E8858; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803E885C; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803E8860; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803E8864; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803E8868; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803E886C; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803E8870; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803E8874; // type:object size:0x4 scope:local align:4 data:float +@1171 = .sdata2:0x803E8878; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803E8880; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803E8884; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803E8888; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803E888C; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803E8890; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803E8894; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803E8898; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803E889C; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803E88A0; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E88A4; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803E88A8; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803E88AC; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803E88B0; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803E88B8; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803E88C0; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803E88C4; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803E88C8; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803E88D0; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803E88D4; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803E88D8; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803E88DC; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803E88E0; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803E88E4; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E88E8; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803E88EC; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803E88F0; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803E88F4; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E88F8; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803E8900; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803E8904; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E8908; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803E890C; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803E8910; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E8914; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E8918; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E891C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E8920; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803E8924; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803E8928; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803E892C; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803E8930; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803E8934; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803E8938; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803E893C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803E8940; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803E8944; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803E8948; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803E8950; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803E8954; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803E8958; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803E8960; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803E8968; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803E896C; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803E8970; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E8974; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803E8978; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E897C; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803E8980; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803E8984; // type:object size:0x4 scope:local align:4 data:float +@2499 = .sdata2:0x803E8988; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803E898C; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803E8990; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x803E8994; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803E8998; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803E899C; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x803E89A0; // type:object size:0x4 scope:local align:4 data:float +@3268 = .sdata2:0x803E89A4; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803E89A8; // type:object size:0x8 scope:local align:8 data:double +@3487 = .sdata2:0x803E89B0; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x803E89B4; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803E89B8; // type:object size:0x8 scope:local align:8 data:double +@3789 = .sdata2:0x803E89C0; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803E89C4; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x803E89C8; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x803E89CC; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x803E89D0; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x803E89D4; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x803E89D8; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x803E89DC; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x803E89E0; // type:object size:0x4 scope:local align:4 data:float +@4393 = .sdata2:0x803E89E4; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x803E89E8; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x803E89EC; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x803E89F0; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803E89F8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803E89FC; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803E8A00; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803E8A04; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803E8A08; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803E8A0C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803E8A10; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803E8A14; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803E8A18; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803E8A20; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803E8A28; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803E8A2C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803E8A30; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803E8A34; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803E8A38; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803E8A3C; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803E8A40; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803E8A44; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803E8A48; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803E8A50; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803E8A54; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803E8A58; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803E8A60; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803E8A68; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803E8A6C; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x803E8A70; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803E8A74; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803E8A78; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803E8A7C; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803E8A80; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803E8A84; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803E8A88; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803E8A8C; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803E8A90; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803E8A98; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803E8A9C; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803E8AA0; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803E8AA8; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803E8AAC; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803E8AB0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803E8AB4; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803E8AB8; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803E8ABC; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8AC0; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803E8AC8; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803E8AD0; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803E8AD4; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803E8AD8; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803E8ADC; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803E8AE0; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803E8AE4; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803E8AE8; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E8AF0; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E8AF4; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803E8AF8; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803E8AFC; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803E8B00; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803E8B08; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803E8B10; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803E8B18; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803E8B20; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803E8B24; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803E8B28; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E8B2C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803E8B34; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803E8B38; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803E8B3C; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803E8B40; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803E8B44; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803E8B48; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803E8B4C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803E8B50; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803E8B54; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata2:0x803E8B58; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803E8B60; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803E8B64; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803E8B68; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803E8B70; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803E8B74; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803E8B78; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata2:0x803E8B7C; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata2:0x803E8B80; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803E8B88; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803E8B8C; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803E8B90; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803E8B94; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E8B98; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803E8B9C; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E8BA0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E8BA4; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803E8BA8; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803E8BAC; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803E8BB0; // type:object size:0x8 scope:local align:8 data:double +@1599 = .sdata2:0x803E8BB8; // type:object size:0x4 scope:local align:4 data:float +@1600 = .sdata2:0x803E8BC0; // type:object size:0x8 scope:local align:8 data:double +@1601 = .sdata2:0x803E8BC8; // type:object size:0x8 scope:local align:8 data:double +@1681 = .sdata2:0x803E8BD0; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803E8BD4; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803E8BD8; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803E8BDC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E8BE0; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata2:0x803E8BE4; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803E8BE8; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803E8BEC; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803E8BF0; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803E8BF4; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803E8BF8; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803E8BFC; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803E8C00; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803E8C04; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803E8C08; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803E8C0C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803E8C10; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803E8C18; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803E8C20; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803E8C24; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803E8C28; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803E8C2C; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803E8C30; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803E8C34; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803E8C38; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803E8C40; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803E8C48; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803E8C50; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803E8C58; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803E8C5C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803E8C60; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata2:0x803E8C64; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata2:0x803E8C68; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803E8C6C; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata2:0x803E8C70; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803E8C78; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803E8C7C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803E8C80; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803E8C88; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803E8C90; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8C94; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803E8C98; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E8C9C; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803E8CA0; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803E8CA4; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803E8CA8; // type:object size:0x4 scope:local align:4 data:float +@2437 = .sdata2:0x803E8CAC; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803E8CB0; // type:object size:0x4 scope:local align:4 data:float +@2501 = .sdata2:0x803E8CB4; // type:object size:0x4 scope:local align:4 data:float +@2502 = .sdata2:0x803E8CB8; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x803E8CBC; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x803E8CC0; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x803E8CC4; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata2:0x803E8CC8; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803E8CCC; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803E8CD0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E8CD8; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803E8CDC; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803E8CE0; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803E8CE4; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803E8CE8; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803E8CEC; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803E8CF0; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803E8CF4; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803E8CF8; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803E8CFC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E8D00; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E8D04; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803E8D08; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803E8D0C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803E8D10; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803E8D14; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E8D18; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E8D20; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803E8D28; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803E8D2C; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803E8D30; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803E8D38; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803E8D40; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803E8D48; // type:object size:0x8 scope:local align:8 data:double +@1453 = .sdata2:0x803E8D50; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata2:0x803E8D54; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata2:0x803E8D58; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803E8D5C; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803E8D60; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E8D64; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803E8D68; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803E8D6C; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803E8D70; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803E8D74; // type:object size:0x4 scope:local align:4 data:float +@1331 = .sdata2:0x803E8D78; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata2:0x803E8D7C; // type:object size:0x4 scope:local align:4 data:float +@1333 = .sdata2:0x803E8D80; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803E8D84; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata2:0x803E8D88; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803E8D90; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803E8D94; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803E8D98; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803E8D9C; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803E8DA0; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803E8DA4; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E8DA8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803E8DAC; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E8DB0; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803E8DB4; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803E8DB8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803E8DBC; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803E8DC0; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803E8DC4; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803E8DC8; // type:object size:0x8 scope:local align:8 data:double +@1438 = .sdata2:0x803E8DD0; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803E8DD8; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803E8DDC; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803E8DE0; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803E8DE8; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803E8DF0; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803E8DF8; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803E8E00; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E8E08; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803E8E0C; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E8E10; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E8E14; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803E8E18; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata2:0x803E8E1C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E8E20; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E8E24; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803E8E28; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E8E2C; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803E8E30; // type:object size:0x8 scope:local align:8 data:double +@2016 = .sdata2:0x803E8E38; // type:object size:0x8 scope:local align:8 data:double +@2036 = .sdata2:0x803E8E40; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803E8E48; // type:object size:0x8 scope:local align:8 data:double +@2081 = .sdata2:0x803E8E50; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803E8E54; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E8E58; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803E8E5C; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803E8E60; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803E8E64; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803E8E68; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803E8E6C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803E8E70; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803E8E74; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803E8E78; // type:object size:0x4 scope:local align:4 data:float +@2899 = .sdata2:0x803E8E7C; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata2:0x803E8E80; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803E8E84; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803E8E88; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x803E8E8C; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803E8E90; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803E8E94; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803E8E98; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803E8E9C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803E8EA0; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803E8EA4; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803E8EA8; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803E8EAC; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803E8EB0; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803E8EB8; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803E8EC0; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803E8EC4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E8EC8; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E8ED0; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803E8ED4; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E8ED8; // type:object size:0x8 scope:local align:8 data:double +@1749 = .sdata2:0x803E8EE0; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803E8EE4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E8EE8; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803E8EF0; // type:object size:0x8 scope:local align:8 data:double +@2332 = .sdata2:0x803E8EF8; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata2:0x803E8EFC; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata2:0x803E8F00; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata2:0x803E8F04; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803E8F08; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803E8F0C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803E8F10; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata2:0x803E8F14; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata2:0x803E8F18; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803E8F1C; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803E8F20; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803E8F24; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803E8F28; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803E8F30; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata2:0x803E8F34; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803E8F38; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803E8F40; // type:object size:0x8 scope:local align:8 data:double +@1322 = .sdata2:0x803E8F48; // type:object size:0x8 scope:local align:8 data:double +@3137 = .sdata2:0x803E8F50; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803E8F54; // type:object size:0x4 scope:local align:4 data:float +@3153 = .sdata2:0x803E8F58; // type:object size:0x4 scope:local align:4 data:float +@3228 = .sdata2:0x803E8F5C; // type:object size:0x4 scope:local align:4 data:float +@3229 = .sdata2:0x803E8F60; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata2:0x803E8F64; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x803E8F68; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803E8F70; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803E8F74; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803E8F78; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803E8F7C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803E8F80; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803E8F88; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803E8F8C; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803E8F90; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803E8F98; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803E8F9C; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E8FA0; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803E8FA8; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803E8FB0; // type:object size:0x8 scope:local align:8 data:double +@2047 = .sdata2:0x803E8FB8; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803E8FBC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803E8FC0; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803E8FC4; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803E8FC8; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803E8FCC; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803E8FD0; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E8FD4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803E8FD8; // type:object size:0x8 scope:local align:8 data:double +@1914 = .sdata2:0x803E8FE0; // type:object size:0x8 scope:local align:8 data:double +@1950 = .sdata2:0x803E8FE8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803E8FEC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803E8FF0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803E8FF4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803E8FF8; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E9000; // type:object size:0x8 scope:local align:8 data:double +@2101 = .sdata2:0x803E9008; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803E900C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803E9010; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E9018; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803E9020; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803E9028; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803E902C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803E9030; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803E9034; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803E9038; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803E903C; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803E9040; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803E9044; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803E9048; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E904C; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803E9050; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803E9054; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803E9058; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803E9060; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803E9064; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803E9068; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803E906C; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803E9070; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803E9074; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803E9078; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803E9080; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803E9088; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803E9090; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E9098; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803E909C; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803E90A0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803E90A8; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803E90B0; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803E90B4; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803E90B8; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803E90BC; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803E90C0; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803E90C4; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803E90C8; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803E90CC; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803E90D0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803E90D8; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803E90E0; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803E90E8; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803E90EC; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803E90F0; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E90F4; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803E90F8; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803E90FC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803E9100; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803E9104; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803E9108; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803E910C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803E9110; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803E9118; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803E911C; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803E9120; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803E9124; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803E9128; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803E9130; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9134; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803E9138; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803E9140; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803E9144; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803E9148; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803E914C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803E9150; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E9154; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803E9158; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E915C; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata2:0x803E9160; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803E9168; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803E916C; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803E9170; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803E9174; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803E9178; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803E9180; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803E9184; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803E9188; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803E918C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803E9190; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803E9194; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803E9198; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803E919C; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803E91A0; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803E91A4; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803E91A8; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803E91B0; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803E91B4; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803E91B8; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803E91BC; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803E91C0; // type:object size:0x8 scope:local align:8 data:double +@1376 = .sdata2:0x803E91C8; // type:object size:0x8 scope:local align:8 data:double +@1377 = .sdata2:0x803E91D0; // type:object size:0x8 scope:local align:8 data:double +@1378 = .sdata2:0x803E91D8; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803E91DC; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803E91E0; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803E91E4; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803E91E8; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803E91EC; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803E91F0; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803E91F8; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803E9200; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803E9208; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803E920C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803E9210; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803E9218; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803E9220; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803E9224; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803E9228; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803E922C; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803E9230; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803E9234; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803E9238; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803E923C; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803E9240; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803E9244; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803E9248; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803E924C; // type:object size:0x4 scope:local align:4 data:float +@3056 = .sdata2:0x803E9250; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803E9254; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803E9258; // type:object size:0x4 scope:local align:4 data:float +@3289 = .sdata2:0x803E925C; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x803E9260; // type:object size:0x4 scope:local align:4 data:float +@3291 = .sdata2:0x803E9264; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803E9268; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x803E926C; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x803E9270; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x803E9274; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x803E9278; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x803E927C; // type:object size:0x4 scope:local align:4 data:float +@4236 = .sdata2:0x803E9280; // type:object size:0x4 scope:local align:4 data:float +@4237 = .sdata2:0x803E9284; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803E9288; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803E928C; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803E9290; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803E9294; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803E9298; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E929C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E92A0; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803E92A4; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803E92A8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803E92AC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803E92B0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E92B4; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803E92B8; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803E92C0; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803E92C8; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803E92CC; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803E92D0; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803E92D8; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803E92DC; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803E92E0; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803E92E4; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803E92E8; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803E92F0; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803E92F8; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803E9300; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803E9308; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803E9310; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803E9314; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803E9318; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803E931C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803E9320; // type:object size:0x4 scope:local align:4 data:float +@2351 = .sdata2:0x803E9328; // type:object size:0x8 scope:local align:8 data:double +@2352 = .sdata2:0x803E9330; // type:object size:0x8 scope:local align:8 data:double +@2353 = .sdata2:0x803E9338; // type:object size:0x4 scope:local align:4 data:float +@2354 = .sdata2:0x803E933C; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803E9340; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata2:0x803E9344; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata2:0x803E9348; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803E934C; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803E9350; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803E9354; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803E9358; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803E935C; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803E9360; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803E9364; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803E9368; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803E936C; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803E9370; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803E9374; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803E9378; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803E9380; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E9384; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803E9388; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803E938C; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803E9390; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803E9398; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803E93A0; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803E93A4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E93A8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E93AC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E93B0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803E93B8; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803E93C0; // type:object size:0x8 scope:local align:8 data:double +@1433 = .sdata2:0x803E93C8; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803E93D0; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803E93D4; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803E93D8; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803E93DC; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803E93E0; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803E93E4; // type:object size:0x4 scope:local align:4 data:float +@1447 = .sdata2:0x803E93E8; // type:object size:0x8 scope:local align:8 data:double +@1476 = .sdata2:0x803E93F0; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803E93F4; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803E93F8; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata2:0x803E93FC; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803E9400; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803E9404; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803E9408; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803E9410; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803E9414; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E9418; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E941C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803E9420; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E9428; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803E9430; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803E9438; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803E9440; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803E9448; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803E9450; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803E9454; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803E9458; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803E945C; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803E9460; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E9464; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803E9468; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803E946C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803E9470; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803E9478; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803E9480; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803E9488; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803E948C; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803E9490; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803E9498; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803E949C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803E94A0; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803E94A4; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803E94A8; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803E94B0; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803E94B8; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803E94C0; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803E94C8; // type:object size:0x8 scope:local align:8 data:double +@1531 = .sdata2:0x803E94D0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803E94D4; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E94D8; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata2:0x803E94DC; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata2:0x803E94E0; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803E94E4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E94E8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803E94EC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E94F0; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E94F4; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E94F8; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803E9500; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803E9504; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803E9508; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803E950C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803E9510; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803E9514; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803E9518; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803E951C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803E9520; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803E9528; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E952C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E9530; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803E9534; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E9538; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803E9540; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803E9544; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803E9548; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803E9550; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803E9558; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803E955C; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E9560; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E9564; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803E9568; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803E9570; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803E9578; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803E9580; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803E9584; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803E9588; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803E958C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803E9590; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803E9594; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803E9598; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803E959C; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803E95A0; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803E95A8; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803E95AC; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803E95B0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803E95B4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803E95B8; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803E95BC; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803E95C0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803E95C8; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803E95D0; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803E95D4; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803E95D8; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803E95E0; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803E95E4; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803E95E8; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803E95EC; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803E95F0; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803E95F4; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803E95F8; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803E9600; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E9604; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803E9608; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803E9610; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803E9614; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803E9618; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803E961C; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803E9620; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803E9624; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803E9628; // type:object size:0x8 scope:local align:8 data:double +@1994 = .sdata2:0x803E9630; // type:object size:0x8 scope:local align:8 data:double +@2178 = .sdata2:0x803E9638; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803E963C; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata2:0x803E9640; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803E9644; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803E9648; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803E964C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803E9650; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803E9658; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803E965C; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803E9660; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803E9664; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803E9668; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803E966C; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803E9670; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803E9678; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803E9680; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803E9684; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803E9688; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803E968C; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803E9690; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803E9694; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803E9698; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803E969C; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803E96A0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803E96A8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803E96B0; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E96B8; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803E96BC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E96C0; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803E96C4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E96C8; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803E96CC; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803E96D0; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803E96D4; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803E96D8; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803E96DC; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803E96E0; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803E96E4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803E96E8; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803E96EC; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803E96F0; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803E96F8; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803E96FC; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803E9700; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803E9704; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E9708; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803E970C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803E9710; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803E9718; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803E9720; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803E9728; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803E972C; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803E9730; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803E9734; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803E9738; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803E9740; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803E9748; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803E9750; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803E9758; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803E9760; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803E9768; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803E976C; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803E9770; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803E9774; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803E9778; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803E977C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E9780; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803E9784; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803E9788; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803E978C; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803E9790; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803E9794; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803E9798; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803E97A0; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803E97A4; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803E97A8; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803E97B0; // type:object size:0x8 scope:local align:8 data:double +@2235 = .sdata2:0x803E97B8; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803E97C0; // type:object size:0x8 scope:local align:8 data:double +@2237 = .sdata2:0x803E97C8; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803E97D0; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803E97D4; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803E97D8; // type:object size:0x8 scope:local align:8 data:double +@2538 = .sdata2:0x803E97E0; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803E97E4; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata2:0x803E97E8; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803E97EC; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803E97F0; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803E97F4; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803E97F8; // type:object size:0x4 scope:local align:4 data:float +@3328 = .sdata2:0x803E97FC; // type:object size:0x4 scope:local align:4 data:float +@3330 = .sdata2:0x803E9800; // type:object size:0x8 scope:local align:8 data:double +@3660 = .sdata2:0x803E9808; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x803E980C; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803E9810; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x803E9814; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x803E9818; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x803E981C; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata2:0x803E9820; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x803E9824; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x803E9828; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x803E982C; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803E9830; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x803E9834; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x803E9838; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x803E983C; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata2:0x803E9840; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803E9848; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803E984C; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803E9850; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803E9858; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803E9860; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803E9864; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803E9868; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803E9870; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803E9874; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803E9878; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803E987C; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803E9880; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803E9884; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803E9888; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803E988C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803E9890; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803E9894; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803E9898; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803E989C; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803E98A0; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803E98A4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803E98A8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803E98AC; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E98B0; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E98B4; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803E98B8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E98BC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803E98C0; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803E98C4; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803E98C8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803E98CC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803E98D0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803E98D4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803E98D8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803E98DC; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803E98E0; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803E98E4; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803E98E8; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803E98EC; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803E98F0; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803E98F4; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803E98F8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803E98FC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803E9900; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803E9904; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803E9908; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803E990C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803E9910; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803E9914; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803E9918; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803E991C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803E9920; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803E9928; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803E9930; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803E9934; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803E9938; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803E993C; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803E9940; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803E9944; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803E9948; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803E994C; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803E9950; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803E9958; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803E9960; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803E9968; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803E996C; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803E9970; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803E9974; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803E9978; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803E997C; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803E9980; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803E9984; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803E9988; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803E998C; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803E9990; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803E9994; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803E9998; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803E999C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803E99A0; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803E99A4; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803E99A8; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803E99AC; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803E99B0; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803E99B4; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803E99B8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803E99BC; // type:object size:0x4 scope:local align:4 data:float +@4802 = .sdata2:0x803E99C0; // type:object size:0x4 scope:local align:4 data:float +@5043 = .sdata2:0x803E99C4; // type:object size:0x8 scope:local align:4 data:4byte +@5193 = .sdata2:0x803E99CC; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x803E99D0; // type:object size:0x8 scope:local align:4 data:4byte +@5225 = .sdata2:0x803E99D8; // type:object size:0x8 scope:local align:4 data:4byte +@5323 = .sdata2:0x803E99E0; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803E99E8; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803E99EC; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803E99F0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803E99F4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803E99F8; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803E99FC; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803E9A00; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803E9A08; // type:object size:0x8 scope:local align:8 data:double +@1704 = .sdata2:0x803E9A10; // type:object size:0x8 scope:local align:8 data:double +@1705 = .sdata2:0x803E9A18; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803E9A1C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803E9A20; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803E9A24; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803E9A28; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803E9A2C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803E9A30; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803E9A34; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803E9A38; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803E9A3C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803E9A40; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803E9A44; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803E9A48; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803E9A4C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803E9A50; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803E9A54; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803E9A58; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803E9A5C; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803E9A60; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803E9A64; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata2:0x803E9A68; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803E9A6C; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803E9A70; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803E9A74; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803E9A78; // type:object size:0x8 scope:local align:8 data:double +@2231 = .sdata2:0x803E9A80; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata2:0x803E9A84; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803E9A88; // type:object size:0x4 scope:local align:4 data:float +@2675 = .sdata2:0x803E9A8C; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803E9A90; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803E9A94; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803E9A98; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803E9A9C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803E9AA0; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E9AA8; // type:object size:0x8 scope:local align:8 data:double +@945 = .sdata2:0x803E9AB0; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803E9AB4; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803E9AB8; // type:object size:0x8 scope:local align:8 data:double +@1096 = .sdata2:0x803E9AC0; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803E9AC8; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803E9AD0; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803E9AD4; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803E9AD8; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803E9AE0; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803E9AE4; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803E9AE8; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803E9AF0; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803E9AF8; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803E9AFC; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803E9B00; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803E9B04; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803E9B08; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803E9B10; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803E9B18; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803E9B20; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803E9B28; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803E9B2C; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803E9B30; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803E9B34; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803E9B38; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803E9B3C; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803E9B40; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803E9B48; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803E9B50; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803E9B54; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803E9B58; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803E9B60; // type:object size:0x8 scope:local align:8 data:double +@1337 = .sdata2:0x803E9B68; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803E9B6C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803E9B70; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803E9B78; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E9B7C; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803E9B80; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803E9B84; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803E9B88; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803E9B90; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803E9B94; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803E9B98; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803E9B9C; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803E9BA0; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803E9BA4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803E9BA8; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803E9BB0; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803E9BB4; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803E9BB8; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803E9BBC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803E9BC0; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803E9BC4; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803E9BC8; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803E9BCC; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803E9BD0; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803E9BD4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803E9BD8; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803E9BDC; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803E9BE0; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803E9BE8; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803E9BF0; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803E9BF4; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803E9BF8; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803E9BFC; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803E9C00; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803E9C04; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803E9C08; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803E9C0C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803E9C10; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803E9C14; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803E9C18; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803E9C20; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803E9C28; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803E9C2C; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803E9C30; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803E9C34; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803E9C38; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803E9C3C; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803E9C40; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803E9C44; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803E9C48; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803E9C4C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803E9C50; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata2:0x803E9C58; // type:object size:0x8 scope:local align:8 data:double +@1755 = .sdata2:0x803E9C60; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803E9C64; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803E9C68; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803E9C70; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803E9C78; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803E9C80; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803E9C84; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803E9C88; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803E9C8C; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803E9C90; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803E9C98; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803E9C9C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803E9CA0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803E9CA4; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803E9CA8; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9CB0; // type:object size:0x8 scope:local align:8 data:double +@1489 = .sdata2:0x803E9CB8; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803E9CBC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803E9CC0; // type:object size:0x8 scope:local align:8 data:double +@1616 = .sdata2:0x803E9CC8; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803E9CD0; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803E9CD8; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803E9CDC; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803E9CE0; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803E9CE8; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803E9CF0; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803E9CF8; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803E9CFC; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803E9D00; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803E9D04; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803E9D08; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803E9D0C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803E9D10; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803E9D14; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803E9D18; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803E9D1C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803E9D20; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803E9D28; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803E9D2C; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803E9D30; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803E9D34; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803E9D38; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803E9D3C; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803E9D40; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803E9D44; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803E9D48; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803E9D50; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803E9D58; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803E9D5C; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803E9D60; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803E9D64; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803E9D68; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803E9D6C; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803E9D70; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803E9D74; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803E9D78; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803E9D7C; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803E9D80; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803E9D84; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803E9D88; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803E9D90; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803E9D94; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803E9D98; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803E9DA0; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803E9DA8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803E9DAC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803E9DB0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803E9DB4; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803E9DB8; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803E9DC0; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803E9DC4; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803E9DC8; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803E9DCC; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803E9DD0; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803E9DD8; // type:object size:0x8 scope:local align:8 data:double +@2766 = .sdata2:0x803E9DE0; // type:object size:0x8 scope:local align:8 data:double +@2785 = .sdata2:0x803E9DE8; // type:object size:0x4 scope:local align:4 data:float +@2994 = .sdata2:0x803E9DEC; // type:object size:0x4 scope:local align:4 data:float +@2995 = .sdata2:0x803E9DF0; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803E9DF4; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x803E9DF8; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803E9DFC; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803E9E00; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata2:0x803E9E04; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803E9E08; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803E9E0C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803E9E10; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803E9E14; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803E9E18; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803E9E1C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803E9E20; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803E9E24; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803E9E28; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803E9E2C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803E9E30; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803E9E38; // type:object size:0x8 scope:local align:8 data:double +@2761 = .sdata2:0x803E9E40; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803E9E44; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803E9E48; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803E9E4C; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803E9E50; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803E9E58; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803E9E5C; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803E9E60; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803E9E68; // type:object size:0x8 scope:local align:8 data:double +@2212 = .sdata2:0x803E9E70; // type:object size:0x8 scope:local align:8 data:double +@2213 = .sdata2:0x803E9E78; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803E9E7C; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803E9E80; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x803E9E84; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x803E9E88; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata2:0x803E9E8C; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata2:0x803E9E90; // type:object size:0x4 scope:local align:4 data:float +@2715 = .sdata2:0x803E9E94; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata2:0x803E9E98; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata2:0x803E9E9C; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata2:0x803E9EA0; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata2:0x803E9EA4; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x803E9EA8; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803E9EAC; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803E9EB0; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803E9EB4; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803E9EB8; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803E9EBC; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803E9EC0; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803E9EC4; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata2:0x803E9EC8; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata2:0x803E9ECC; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803E9ED0; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803E9ED4; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803E9ED8; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803E9EDC; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803E9EE0; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803E9EE4; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x803E9EE8; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803E9EEC; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803E9EF0; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803E9EF4; // type:object size:0x4 scope:local align:4 data:float +@2787 = .sdata2:0x803E9EF8; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803E9EFC; // type:object size:0x4 scope:local align:4 data:float +@2791 = .sdata2:0x803E9F00; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803E9F04; // type:object size:0x8 scope:local align:4 data:4byte +@2875 = .sdata2:0x803E9F0C; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata2:0x803E9F10; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x803E9F18; // type:object size:0x8 scope:local align:8 data:double +@3019 = .sdata2:0x803E9F20; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x803E9F24; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata2:0x803E9F28; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x803E9F2C; // type:object size:0x4 scope:local align:4 data:float +@4295 = .sdata2:0x803E9F30; // type:object size:0x4 scope:local align:4 data:float +@4623 = .sdata2:0x803E9F34; // type:object size:0x4 scope:local align:4 data:float +@4624 = .sdata2:0x803E9F38; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x803E9F3C; // type:object size:0x4 scope:local align:4 data:float +@4803 = .sdata2:0x803E9F40; // type:object size:0x4 scope:local align:4 data:float +@4805 = .sdata2:0x803E9F44; // type:object size:0x4 scope:local align:4 data:float +@4845 = .sdata2:0x803E9F48; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x803E9F4C; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata2:0x803E9F50; // type:object size:0x4 scope:local align:4 data:float +@5448 = .sdata2:0x803E9F54; // type:object size:0x4 scope:local align:4 data:float +@5449 = .sdata2:0x803E9F58; // type:object size:0x4 scope:local align:4 data:float +@5450 = .sdata2:0x803E9F5C; // type:object size:0x4 scope:local align:4 data:float +@5451 = .sdata2:0x803E9F60; // type:object size:0x4 scope:local align:4 data:float +@5452 = .sdata2:0x803E9F64; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803E9F68; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803E9F6C; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803E9F70; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803E9F74; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata2:0x803E9F78; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata2:0x803E9F7C; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata2:0x803E9F80; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata2:0x803E9F84; // type:object size:0x4 scope:local align:4 data:float +@6692 = .sdata2:0x803E9F88; // type:object size:0x4 scope:local align:4 data:float +@6693 = .sdata2:0x803E9F8C; // type:object size:0x4 scope:local align:4 data:float +@6694 = .sdata2:0x803E9F90; // type:object size:0x4 scope:local align:4 data:float +@6695 = .sdata2:0x803E9F94; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803E9F98; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803E9F9C; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803E9FA0; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803E9FA4; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803E9FA8; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803E9FAC; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803E9FB0; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803E9FB4; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803E9FB8; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803E9FC0; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803E9FC8; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803E9FD0; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803E9FD8; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803E9FDC; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803E9FE0; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803E9FE4; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803E9FE8; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803E9FEC; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803E9FF0; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x803E9FF4; // type:object size:0x4 scope:local align:4 data:float +@3444 = .sdata2:0x803E9FF8; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x803E9FFC; // type:object size:0x4 scope:local align:4 data:float +@3446 = .sdata2:0x803EA000; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x803EA004; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x803EA008; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x803EA00C; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x803EA010; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x803EA014; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x803EA018; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x803EA01C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x803EA020; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x803EA024; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EA028; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x803EA02C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x803EA030; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x803EA034; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x803EA038; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x803EA03C; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x803EA040; // type:object size:0x4 scope:local align:4 data:float +@4155 = .sdata2:0x803EA044; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x803EA048; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x803EA04C; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata2:0x803EA050; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata2:0x803EA054; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x803EA058; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x803EA05C; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x803EA060; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x803EA064; // type:object size:0x4 scope:local align:4 data:float +@5686 = .sdata2:0x803EA068; // type:object size:0x4 scope:local align:4 data:float +@5687 = .sdata2:0x803EA06C; // type:object size:0x4 scope:local align:4 data:float +@5766 = .sdata2:0x803EA070; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803EA078; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EA07C; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EA080; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803EA088; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803EA090; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803EA094; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803EA098; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EA09C; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803EA0A0; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803EA0A4; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803EA0A8; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803EA0AC; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803EA0B0; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803EA0B8; // type:object size:0x8 scope:local align:8 data:double +@2434 = .sdata2:0x803EA0C0; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EA0C4; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EA0C8; // type:object size:0x4 scope:local align:4 data:float +@2479 = .sdata2:0x803EA0D0; // type:object size:0x4 scope:local align:4 data:float +@3308 = .sdata2:0x803EA0D4; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x803EA0D8; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x803EA0DC; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x803EA0E0; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803EA0E8; // type:object size:0x8 scope:local align:8 data:double +@4361 = .sdata2:0x803EA0F0; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EA0F8; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EA0FC; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803EA100; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EA104; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EA108; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EA10C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EA110; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EA114; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EA118; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EA11C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EA120; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EA124; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EA128; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EA130; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803EA138; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803EA140; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803EA144; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803EA148; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803EA150; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EA154; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EA158; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EA15C; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803EA160; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EA164; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EA168; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803EA16C; // type:object size:0x4 scope:local align:4 data:float +@2097 = .sdata2:0x803EA170; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803EA178; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803EA180; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EA188; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803EA18C; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EA190; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803EA198; // type:object size:0x8 scope:local align:8 data:double +@957 = .sdata2:0x803EA1A0; // type:object size:0x4 scope:local align:4 data:float +@958 = .sdata2:0x803EA1A4; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EA1A8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EA1AC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EA1B0; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EA1B4; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803EA1B8; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803EA1BC; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EA1C0; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803EA1C8; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EA1CC; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EA1D0; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EA1D8; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803EA1E0; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EA1E8; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EA1EC; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EA1F0; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EA1F4; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EA1F8; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EA1FC; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803EA200; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803EA204; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803EA208; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EA210; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803EA214; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EA218; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EA220; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803EA228; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803EA230; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803EA238; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803EA23C; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803EA240; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803EA244; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EA248; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803EA24C; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803EA250; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803EA258; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EA260; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EA264; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EA268; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803EA270; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803EA278; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803EA280; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA288; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA28C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA290; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EA294; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EA298; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA29C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EA2A0; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EA2A4; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EA2A8; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EA2AC; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata2:0x803EA2B0; // type:object size:0x8 scope:local align:8 data:double +@495 = .sdata2:0x803EA2B8; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EA2C0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EA2C4; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EA2C8; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EA2CC; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EA2D0; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EA2D4; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EA2D8; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EA2E0; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803EA2E8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EA2EC; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EA2F0; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803EA2F4; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803EA2F8; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803EA300; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EA304; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EA308; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EA30C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EA310; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EA314; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EA318; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EA31C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803EA320; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803EA324; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803EA328; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EA32C; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EA330; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EA334; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EA338; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EA33C; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EA340; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803EA348; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EA34C; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803EA350; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803EA354; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803EA358; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803EA35C; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803EA360; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803EA364; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EA368; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803EA36C; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803EA370; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EA374; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EA378; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803EA37C; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803EA380; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EA384; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EA388; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EA38C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803EA390; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EA394; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EA398; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EA39C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EA3A0; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EA3A4; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EA3A8; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EA3AC; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EA3B0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EA3B4; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EA3B8; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EA3BC; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EA3C0; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EA3C4; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EA3C8; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EA3CC; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803EA3D0; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803EA3D4; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EA3D8; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803EA3DC; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803EA3E0; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EA3E8; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803EA3EC; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EA3F0; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803EA3F8; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EA400; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803EA408; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EA40C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EA410; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EA418; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803EA420; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EA424; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EA428; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EA42C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EA430; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EA434; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EA438; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EA43C; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EA440; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EA444; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EA448; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EA44C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EA450; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EA454; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EA458; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA45C; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EA460; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EA464; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA468; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EA46C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EA470; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EA474; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA478; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA47C; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA480; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803EA484; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803EA488; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EA48C; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803EA490; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803EA494; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EA498; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EA4A0; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA4A4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA4A8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EA4AC; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA4B0; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA4B4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA4B8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA4BC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EA4C0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EA4C4; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EA4C8; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EA4CC; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EA4D0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EA4D4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EA4D8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EA4DC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EA4E0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EA4E4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EA4E8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EA4EC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EA4F0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EA4F4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EA4F8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EA4FC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EA500; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803EA504; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803EA508; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EA510; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EA514; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803EA518; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803EA51C; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EA520; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803EA524; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EA528; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EA52C; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EA530; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EA534; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EA538; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EA53C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EA540; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803EA544; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EA548; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EA550; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EA554; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EA558; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EA55C; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EA560; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EA564; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EA568; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EA56C; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EA570; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EA574; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EA578; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EA57C; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EA580; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EA584; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EA588; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EA58C; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EA590; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EA594; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EA598; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EA59C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EA5A0; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EA5A4; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EA5A8; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EA5AC; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EA5B0; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EA5B4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EA5B8; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EA5BC; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803EA5C0; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803EA5C4; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803EA5C8; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803EA5D0; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803EA5D8; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803EA5E0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EA5E8; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EA5EC; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EA5F0; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EA5F4; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EA5F8; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EA5FC; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EA600; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EA604; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803EA608; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EA60C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EA610; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EA614; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EA618; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EA61C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EA620; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EA624; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EA628; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803EA62C; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803EA630; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803EA638; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803EA640; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803EA644; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EA648; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803EA650; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803EA654; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EA658; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EA65C; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EA660; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EA668; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EA66C; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EA670; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EA674; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803EA678; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EA67C; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EA680; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EA684; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EA688; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803EA68C; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EA690; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803EA694; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803EA698; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803EA69C; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EA6A0; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803EA6A4; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EA6A8; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EA6AC; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803EA6B0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EA6B4; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803EA6B8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EA6BC; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803EA6C0; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803EA6C4; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EA6C8; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EA6CC; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EA6D0; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EA6D4; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EA6D8; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803EA6DC; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803EA6E0; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803EA6E4; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803EA6E8; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803EA6EC; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803EA6F0; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EA6F4; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803EA6F8; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803EA6FC; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803EA700; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803EA704; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803EA708; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803EA710; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803EA718; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803EA71C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803EA720; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EA724; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EA728; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803EA72C; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EA730; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EA734; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EA738; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EA73C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EA740; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EA744; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EA748; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EA74C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EA750; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EA754; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EA758; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EA75C; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EA760; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EA764; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EA768; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EA76C; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EA770; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803EA774; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EA778; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EA77C; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EA780; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EA784; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803EA788; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803EA78C; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EA790; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EA794; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803EA798; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803EA79C; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803EA7A0; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803EA7A4; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803EA7A8; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803EA7AC; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803EA7B0; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803EA7B8; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803EA7C0; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803EA7C8; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803EA7D0; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803EA7D4; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EA7D8; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EA7DC; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803EA7E0; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803EA7E4; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803EA7E8; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803EA7EC; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803EA7F0; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EA7F4; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803EA7F8; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EA7FC; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EA800; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EA804; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803EA808; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803EA810; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803EA818; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EA81C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EA820; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EA828; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803EA830; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EA834; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EA838; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EA83C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EA840; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EA844; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EA848; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EA84C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EA850; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EA854; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EA858; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EA85C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EA860; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EA864; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EA868; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EA86C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EA870; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EA874; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EA878; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EA87C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EA880; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EA884; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EA888; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EA88C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EA890; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EA894; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EA898; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EA89C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EA8A0; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803EA8A4; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803EA8A8; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803EA8AC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803EA8B0; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803EA8B8; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803EA8C0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803EA8C4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EA8C8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803EA8CC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803EA8D0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803EA8D4; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803EA8D8; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803EA8DC; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803EA8E0; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803EA8E4; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803EA8E8; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803EA8EC; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EA8F0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803EA8F4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EA8F8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803EA8FC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803EA900; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EA908; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EA90C; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EA910; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EA914; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EA918; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EA920; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803EA928; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EA92C; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EA930; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803EA938; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803EA940; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803EA944; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803EA948; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EA950; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EA954; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EA958; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803EA960; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803EA968; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EA96C; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EA970; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EA974; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EA978; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803EA97C; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803EA980; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803EA984; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803EA988; // type:object size:0x8 scope:local align:8 data:double +@3867 = .sdata2:0x803EA990; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x803EA994; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EA998; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803EA99C; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EA9A0; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803EA9A8; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803EA9AC; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EA9B0; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EA9B4; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803EA9B8; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803EA9BC; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803EA9C0; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803EA9C4; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803EA9C8; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803EA9CC; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803EA9D0; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803EA9D4; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803EA9D8; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803EA9DC; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803EA9E0; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803EA9E4; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803EA9E8; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803EA9EC; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EA9F4; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803EA9F8; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803EA9FC; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803EAA00; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803EAA04; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EAA08; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803EAA0C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EAA10; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EAA14; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803EAA18; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803EAA1C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EAA20; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803EAA24; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EAA28; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EAA2C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EAA30; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EAA34; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803EAA38; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803EAA3C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803EAA40; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803EAA44; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EAA48; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EAA50; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EAA54; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EAA58; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EAA5C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EAA60; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803EAA64; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803EAA68; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803EAA70; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EAA78; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803EAA7C; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EAA80; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EAA84; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EAA88; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803EAA8C; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803EAA90; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EAA94; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EAA98; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EAA9C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803EAAA0; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EAAA4; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EAAA8; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EAAAC; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803EAAB0; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803EAAB4; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EAAB8; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EAABC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EAAC0; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EAAC4; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EAAC8; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EAACC; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EAAD0; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803EAAD4; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EAAD8; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EAADC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EAAE0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EAAE4; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EAAE8; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EAAEC; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803EAAF0; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803EAAF4; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803EAAF8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803EAAFC; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803EAB00; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EAB04; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EAB08; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EAB0C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EAB10; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EAB14; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EAB18; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EAB1C; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EAB20; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EAB24; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EAB28; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803EAB2C; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EAB30; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EAB34; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EAB38; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EAB3C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803EAB40; // type:object size:0x8 scope:local align:8 data:double +@2035 = .sdata2:0x803EAB48; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EAB4C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EAB50; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EAB54; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata2:0x803EAB58; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata2:0x803EAB5C; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EAB60; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata2:0x803EAB64; // type:object size:0x4 scope:local align:4 data:float +@2184 = .sdata2:0x803EAB68; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803EAB6C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EAB70; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EAB74; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EAB78; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EAB80; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803EAB88; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EAB8C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EAB90; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EAB98; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803EABA0; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EABA4; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803EABA8; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803EABAC; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803EABB0; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803EABB4; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803EABB8; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803EABBC; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803EABC0; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EABC4; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EABC8; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803EABCC; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803EABD0; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803EABD4; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803EABD8; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803EABDC; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803EABE0; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803EABE4; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803EABE8; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803EABEC; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803EABF0; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803EABF4; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EABF8; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EABFC; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EAC00; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EAC04; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803EAC08; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EAC0C; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EAC10; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EAC14; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EAC18; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EAC1C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EAC20; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EAC24; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EAC28; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EAC2C; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EAC30; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EAC34; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EAC38; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EAC3C; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803EAC40; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803EAC44; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EAC48; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EAC4C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EAC50; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803EAC54; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EAC58; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EAC5C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EAC60; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EAC64; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803EAC68; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803EAC6C; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803EAC70; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803EAC74; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803EAC78; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803EAC7C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EAC80; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803EAC88; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EAC8C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803EAC90; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803EAC94; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EAC98; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803EAC9C; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803EACA0; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803EACA4; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803EACA8; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803EACB0; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803EACB4; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803EACB8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803EACBC; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803EACC0; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803EACC4; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EACC8; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EACCC; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803EACD0; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803EACD8; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803EACDC; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803EACE0; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EACE8; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EACEC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EACF0; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EACF4; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EACF8; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EACFC; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAD00; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAD04; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAD08; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EAD0C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EAD10; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803EAD14; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EAD18; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EAD1C; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803EAD20; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803EAD24; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EAD28; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803EAD2C; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803EAD30; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EAD34; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EAD38; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803EAD40; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803EAD48; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803EAD50; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EAD58; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803EAD5C; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EAD60; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803EAD68; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EAD70; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EAD74; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EAD78; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803EAD7C; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803EAD80; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EAD84; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803EAD88; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803EAD8C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803EAD90; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803EAD94; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803EAD98; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803EAD9C; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803EADA0; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803EADA4; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EADA8; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803EADAC; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803EADB0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803EADB4; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803EADB8; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803EADBC; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803EADC0; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803EADC4; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x803EADC8; // type:object size:0x4 scope:local align:4 data:float +@4550 = .sdata2:0x803EADCC; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x803EADD0; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x803EADD4; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803EADD8; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803EADDC; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803EADE0; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803EADE8; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803EADF0; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EADF4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803EADF8; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EADFC; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803EAE00; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803EAE04; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EAE08; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EAE0C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EAE10; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EAE14; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EAE18; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EAE1C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803EAE20; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EAE24; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAE28; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAE2C; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAE30; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803EAE34; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EAE38; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EAE3C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EAE40; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EAE44; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803EAE48; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EAE4C; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803EAE50; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803EAE54; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EAE58; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EAE5C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EAE60; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EAE64; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EAE68; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EAE70; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803EAE74; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EAE78; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EAE7C; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EAE80; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata2:0x803EAE84; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EAE88; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EAE8C; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803EAE90; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803EAE94; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EAE98; // type:object size:0x8 scope:local align:8 data:double +@2306 = .sdata2:0x803EAEA0; // type:object size:0x4 scope:local align:4 data:float +@2411 = .sdata2:0x803EAEA4; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EAEA8; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803EAEAC; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x803EAEB0; // type:object size:0x4 scope:local align:4 data:float +@3124 = .sdata2:0x803EAEB4; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EAEB8; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x803EAEBC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x803EAEC0; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x803EAEC4; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803EAEC8; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803EAECC; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x803EAED0; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803EAED8; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EAEDC; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EAEE0; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EAEE4; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EAEE8; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EAEF0; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803EAEF8; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803EAF00; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803EAF04; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803EAF08; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803EAF0C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803EAF10; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EAF14; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803EAF18; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EAF1C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EAF20; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EAF24; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803EAF28; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EAF2C; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EAF30; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EAF34; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EAF38; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EAF3C; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EAF40; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EAF44; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EAF48; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803EAF4C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EAF50; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803EAF54; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EAF58; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803EAF60; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EAF64; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803EAF68; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803EAF6C; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803EAF70; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803EAF78; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EAF7C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EAF80; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EAF84; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EAF88; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EAF8C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EAF90; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EAF94; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803EAF98; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803EAF9C; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803EAFA0; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803EAFA4; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803EAFA8; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EAFB0; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803EAFB4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803EAFB8; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EAFBC; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803EAFC0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EAFC4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EAFC8; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EAFCC; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EAFD0; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803EAFD4; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803EAFD8; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803EAFDC; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803EAFE0; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803EAFE8; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EAFEC; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803EAFF0; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EAFF4; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EAFF8; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803EAFFC; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EB000; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803EB008; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803EB00C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EB010; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803EB018; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EB020; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EB024; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EB028; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EB02C; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EB030; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EB034; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EB038; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EB03C; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EB040; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EB044; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EB048; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803EB04C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EB050; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EB054; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EB058; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EB060; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EB064; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803EB068; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EB06C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EB070; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EB074; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803EB078; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EB080; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EB084; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803EB088; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803EB08C; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803EB090; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803EB094; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EB098; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EB0A0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803EB0A4; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803EB0A8; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata2:0x803EB0AC; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EB0B0; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EB0B4; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EB0B8; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EB0BC; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803EB0C0; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803EB0C4; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803EB0C8; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803EB0D0; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803EB0D8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EB0E0; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803EB0E4; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803EB0E8; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EB0EC; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EB0F0; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803EB0F4; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803EB0F8; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata2:0x803EB0FC; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EB100; // type:object size:0x4 scope:local align:4 data:float +@1185 = .sdata2:0x803EB104; // type:object size:0x4 scope:local align:4 data:float +@1186 = .sdata2:0x803EB108; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata2:0x803EB110; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803EB118; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EB11C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EB120; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EB124; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803EB128; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803EB130; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803EB138; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803EB140; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803EB144; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EB148; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803EB14C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EB150; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803EB158; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803EB15C; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803EB160; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata2:0x803EB164; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803EB168; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EB16C; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803EB170; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EB174; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EB178; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EB17C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EB180; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803EB188; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EB18C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EB190; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803EB194; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803EB198; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803EB19C; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803EB1A0; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803EB1A4; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803EB1A8; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803EB1B0; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803EB1B8; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803EB1BC; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803EB1C0; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata2:0x803EB1C4; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803EB1C8; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EB1D0; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803EB1D4; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803EB1D8; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803EB1DC; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803EB1E0; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803EB1E4; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803EB1E8; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803EB1EC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EB1F0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EB1F4; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EB1F8; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803EB1FC; // type:object size:0x4 scope:local align:4 data:float +@2110 = .sdata2:0x803EB200; // type:object size:0x4 scope:local align:4 data:float +@2583 = .sdata2:0x803EB204; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EB208; // type:object size:0x8 scope:local align:8 data:double +@2684 = .sdata2:0x803EB210; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803EB214; // type:object size:0x4 scope:local align:4 data:float +@2686 = .sdata2:0x803EB218; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803EB220; // type:object size:0x8 scope:local align:8 data:double +@2703 = .sdata2:0x803EB228; // type:object size:0x8 scope:local align:8 data:double +@2758 = .sdata2:0x803EB230; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EB234; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EB238; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EB23C; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EB240; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EB244; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EB248; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EB24C; // type:object size:0x4 scope:local align:4 data:float +@3028 = .sdata2:0x803EB250; // type:object size:0x4 scope:local align:4 data:4byte +@3048 = .sdata2:0x803EB254; // type:object size:0x4 scope:local align:4 data:float +@3049 = .sdata2:0x803EB258; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x803EB25C; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EB260; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB264; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB268; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803EB270; // type:object size:0x8 scope:local align:8 data:double +@1044 = .sdata2:0x803EB278; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata2:0x803EB27C; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata2:0x803EB280; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803EB288; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803EB28C; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803EB290; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EB294; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EB298; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803EB29C; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803EB2A0; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803EB2A4; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EB2A8; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803EB2AC; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803EB2B0; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803EB2B8; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EB2BC; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EB2C0; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EB2C4; // type:object size:0x3 scope:local align:4 data:2byte +@2069 = .sdata2:0x803EB2C8; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EB2CC; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EB2D0; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata2:0x803EB2D4; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata2:0x803EB2D8; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803EB2DC; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803EB2E0; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803EB2E4; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803EB2E8; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata2:0x803EB2EC; // type:object size:0x4 scope:local align:4 data:4byte +@2258 = .sdata2:0x803EB2F0; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata2:0x803EB2F4; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803EB2F8; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB300; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB304; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803EB308; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803EB30C; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EB310; // type:object size:0x8 scope:local align:8 data:double +@2123 = .sdata2:0x803EB318; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EB31C; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803EB320; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803EB324; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EB328; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803EB330; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803EB338; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803EB33C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EB340; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EB344; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EB348; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EB34C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EB350; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803EB354; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803EB358; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EB35C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EB360; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EB364; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EB368; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EB36C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EB370; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EB378; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EB37C; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803EB380; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803EB384; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EB388; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EB38C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EB3A4; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EB3A8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EB3AC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EB3B0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EB3B4; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803EB3B8; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803EB3BC; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803EB3C0; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803EB3C4; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803EB3C8; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803EB3CC; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803EB3D0; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803EB3D4; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803EB3D8; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803EB3E0; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803EB3E4; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EB3E8; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EB3EC; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803EB3F0; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803EB3F8; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803EB3FC; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803EB400; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EB404; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EB408; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803EB40C; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EB410; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803EB414; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803EB418; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EB41C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EB420; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EB424; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803EB428; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EB430; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EB438; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803EB43C; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803EB440; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803EB444; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803EB448; // type:object size:0x8 scope:local align:8 data:double +@1562 = .sdata2:0x803EB450; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EB454; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803EB458; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803EB45C; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EB460; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EB468; // type:object size:0x8 scope:local align:8 data:double +@1891 = .sdata2:0x803EB470; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EB474; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EB478; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EB47C; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EB480; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EB484; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EB488; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803EB48C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803EB490; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803EB498; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EB49C; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803EB4A0; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803EB4A4; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803EB4A8; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803EB4AC; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EB4B0; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EB4B4; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EB4B8; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803EB4C0; // type:object size:0x8 scope:local align:8 data:double +@1027 = .sdata2:0x803EB4C8; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803EB4CC; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803EB4D0; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EB4D4; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803EB4D8; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EB4E0; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EB4E4; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803EB4E8; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803EB4F0; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803EB4F4; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803EB4F8; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EB4FC; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EB500; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EB504; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803EB508; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803EB50C; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EB510; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EB514; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EB518; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EB520; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803EB528; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803EB52C; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803EB530; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EB534; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EB538; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EB53C; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EB540; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803EB544; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EB548; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803EB550; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803EB558; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803EB55C; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803EB560; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803EB568; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803EB570; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803EB574; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EB578; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EB57C; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EB580; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EB588; // type:object size:0x8 scope:local align:8 data:double +@770 = .sdata2:0x803EB590; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803EB594; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803EB598; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EB5A0; // type:object size:0x8 scope:local align:8 data:double +@1317 = .sdata2:0x803EB5A8; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803EB5B0; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803EB5B8; // type:object size:0x8 scope:local align:8 data:double +@1405 = .sdata2:0x803EB5C0; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EB5C8; // type:object size:0x8 scope:local align:8 data:double +@2012 = .sdata2:0x803EB5D0; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EB5D4; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EB5D8; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EB5DC; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EB5E0; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803EB5E8; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803EB5EC; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803EB5F0; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803EB5F4; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803EB5F8; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EB600; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803EB608; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803EB60C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EB610; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EB618; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803EB620; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803EB628; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803EB630; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803EB634; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803EB638; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EB63C; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EB640; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803EB644; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EB648; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EB64C; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803EB650; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803EB654; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EB658; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EB65C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EB660; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EB664; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EB668; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EB66C; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EB670; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EB674; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EB678; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EB67C; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EB680; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EB684; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803EB688; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EB68C; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EB690; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EB694; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EB698; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EB69C; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803EB6A0; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EB6A4; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EB6A8; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803EB6AC; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EB6B0; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EB6B4; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803EB6B8; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803EB6BC; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803EB6C0; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803EB6C8; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803EB6D0; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EB6D4; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803EB6D8; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EB6E0; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EB6E4; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803EB6E8; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EB6EC; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803EB6F0; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803EB6F4; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EB6F8; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EB6FC; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803EB700; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EB704; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EB708; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EB70C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803EB710; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803EB714; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803EB718; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803EB71C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803EB720; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803EB724; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EB728; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EB72C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EB730; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803EB734; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EB738; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803EB73C; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803EB740; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803EB744; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EB748; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803EB74C; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803EB750; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803EB754; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EB758; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EB75C; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EB760; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803EB764; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803EB768; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@3261 = .sdata2:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803EB780; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803EB784; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803EB788; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803EB78C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EB790; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803EB798; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803EB79C; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EB7A0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803EB7A4; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EB7A8; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803EB7B0; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803EB7B8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EB7C0; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803EB7C8; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803EB7D0; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803EB7D4; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803EB7D8; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803EB7DC; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803EB7E0; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803EB7E4; // type:object size:0x4 scope:local align:4 data:float +@2418 = .sdata2:0x803EB7E8; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803EB7EC; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803EB7F0; // type:object size:0x4 scope:local align:4 data:float +@3346 = .sdata2:0x803EB7F4; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x803EB7F8; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x803EB7FC; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x803EB800; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x803EB804; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x803EB808; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x803EB80C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803EB810; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803EB818; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803EB820; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803EB824; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803EB828; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803EB82C; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803EB830; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata2:0x803EB834; // type:object size:0x4 scope:local align:4 data:float +@1806 = .sdata2:0x803EB838; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803EB83C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EB840; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EB844; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803EB848; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803EB850; // type:object size:0x8 scope:local align:8 data:double +@1967 = .sdata2:0x803EB858; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EB85C; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803EB860; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803EB864; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803EB868; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803EB870; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803EB878; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803EB87C; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803EB880; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EB884; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EB888; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803EB890; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803EB894; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803EB898; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803EB89C; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803EB8A0; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803EB8A4; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata2:0x803EB8A8; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata2:0x803EB8B0; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EB8B8; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EB8BC; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803EB8C0; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EB8C8; // type:object size:0x8 scope:local align:8 data:double +@887 = .sdata2:0x803EB8D0; // type:object size:0x8 scope:local align:8 data:double +@1065 = .sdata2:0x803EB8D8; // type:object size:0x4 scope:local align:4 data:4byte +@1079 = .sdata2:0x803EB8DC; // type:object size:0x4 scope:local align:4 data:4byte +@725 = .sdata2:0x803EB8E0; // type:object size:0x4 scope:local align:4 data:float +@726 = .sdata2:0x803EB8E4; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EB8E8; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803EB8F0; // type:object size:0x8 scope:local align:8 data:double +@648 = .sdata2:0x803EB8F8; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata2:0x803EB900; // type:object size:0x8 scope:local align:8 data:double +@877 = .sdata2:0x803EB908; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803EB910; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803EB918; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803EB920; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803EB928; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803EB930; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803EB934; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803EB938; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803EB93C; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803EB940; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803EB944; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803EB948; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EB950; // type:object size:0x8 scope:local align:8 data:double +@2312 = .sdata2:0x803EB958; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803EB95C; // type:object size:0x4 scope:local align:4 data:float +@2439 = .sdata2:0x803EB960; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803EB964; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803EB968; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata2:0x803EB96C; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata2:0x803EB970; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803EB974; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803EB978; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803EB97C; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803EB980; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803EB988; // type:object size:0x8 scope:local align:8 data:double +@2700 = .sdata2:0x803EB990; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EB994; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803EB998; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803EB99C; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803EB9A0; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata2:0x803EB9A4; // type:object size:0x4 scope:local align:4 data:float +@2805 = .sdata2:0x803EB9A8; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803EB9AC; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803EB9B0; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803EB9B4; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803EB9B8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EB9BC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EB9C0; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EB9C4; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EB9C8; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803EB9CC; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803EB9D0; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803EB9D4; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803EB9D8; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803EB9DC; // type:object size:0x4 scope:local align:4 data:float +@2961 = .sdata2:0x803EB9E0; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803EB9E4; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803EB9E8; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x803EB9EC; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803EB9F0; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803EB9F4; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803EB9F8; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803EB9FC; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803EBA00; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803EBA04; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803EBA08; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803EBA0C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EBA10; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EBA14; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803EBA18; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803EBA20; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803EBA28; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803EBA2C; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803EBA30; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803EBA34; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EBA38; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EBA3C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EBA40; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EBA44; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803EBA48; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803EBA4C; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803EBA50; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803EBA54; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803EBA58; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803EBA60; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EBA64; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EBA68; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803EBA6C; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803EBA70; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803EBA74; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata2:0x803EBA78; // type:object size:0x8 scope:local align:8 data:double +@2200 = .sdata2:0x803EBA80; // type:object size:0x8 scope:local align:8 data:double +@2552 = .sdata2:0x803EBA88; // type:object size:0x4 scope:local align:4 data:float +@2553 = .sdata2:0x803EBA8C; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803EBA90; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803EBA94; // type:object size:0x4 scope:local align:4 data:float +@2959 = .sdata2:0x803EBA98; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803EBAA0; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803EBAA4; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803EBAA8; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EBAAC; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EBAB0; // type:object size:0x8 scope:local align:8 data:double +@1482 = .sdata2:0x803EBAB8; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803EBAC0; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803EBAC8; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EBACC; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EBAD0; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EBAD4; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EBAD8; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EBADC; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803EBAE0; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EBAE4; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EBAE8; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EBAEC; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803EBAF0; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803EBAF4; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803EBAF8; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803EBB00; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803EBB04; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803EBB08; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803EBB0C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803EBB10; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EBB18; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803EBB20; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803EBB24; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EBB28; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803EBB2C; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803EBB30; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EBB34; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EBB38; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EBB3C; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EBB40; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803EBB44; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EBB48; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EBB4C; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803EBB50; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EBB54; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803EBB58; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803EBB5C; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803EBB60; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EBB64; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803EBB68; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803EBB70; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803EBB74; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803EBB78; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata2:0x803EBB80; // type:object size:0x8 scope:local align:8 data:double +@962 = .sdata2:0x803EBB88; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803EBB8C; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803EBB90; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803EBB94; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EBB98; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata2:0x803EBBA0; // type:object size:0x8 scope:local align:8 data:double +@1546 = .sdata2:0x803EBBA8; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata2:0x803EBBAC; // type:object size:0x4 scope:local align:4 data:float +@1797 = .sdata2:0x803EBBB0; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803EBBB8; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803EBBBC; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803EBBC0; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803EBBC8; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803EBBD0; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803EBBD4; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EBBD8; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803EBBE0; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803EBBE4; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803EBBE8; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803EBBEC; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803EBBF0; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803EBBF4; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803EBBF8; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803EBBFC; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803EBC00; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803EBC04; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803EBC08; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803EBC0C; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EBC10; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803EBC14; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803EBC18; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803EBC1C; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803EBC20; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803EBC24; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803EBC28; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803EBC2C; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803EBC30; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803EBC34; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EBC38; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803EBC3C; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803EBC40; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803EBC44; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803EBC48; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803EBC4C; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EBC50; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EBC54; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803EBC58; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803EBC60; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803EBC68; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803EBC6C; // type:object size:0x4 scope:local align:4 data:float +@3133 = .sdata2:0x803EBC70; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803EBC74; // type:object size:0x4 scope:local align:4 data:float +@3136 = .sdata2:0x803EBC78; // type:object size:0x8 scope:local align:8 data:double +@3730 = .sdata2:0x803EBC80; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x803EBC84; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803EBC88; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803EBC8C; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803EBC90; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x803EBC94; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803EBC98; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803EBC9C; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803EBCA0; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803EBCA4; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803EBCA8; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803EBCAC; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EBCB0; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803EBCB4; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EBCB8; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803EBCBC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EBCC0; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803EBCC4; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803EBCC8; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EBCD0; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803EBCD8; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803EBCDC; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803EBCE0; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EBCE4; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803EBCE8; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803EBCEC; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EBCF0; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EBCF4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EBCF8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EBCFC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EBD00; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EBD04; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EBD08; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EBD0C; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EBD10; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBD14; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBD18; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EBD1C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBD20; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EBD24; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EBD28; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EBD2C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EBD30; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBD34; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBD38; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBD3C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBD40; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBD44; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBD48; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBD4C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBD50; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBD58; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBD5C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBD60; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBD64; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBD68; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBD6C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBD70; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBD74; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBD78; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBD7C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBD80; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EBD84; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EBD88; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EBD8C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EBD90; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EBD94; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EBD98; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EBD9C; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803EBDA0; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EBDA4; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EBDA8; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EBDAC; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EBDB0; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EBDB4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EBDB8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EBDBC; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EBDC0; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803EBDC4; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803EBDC8; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803EBDCC; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EBDD0; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803EBDD4; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EBDD8; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EBDDC; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803EBDE0; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803EBDE4; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803EBDE8; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EBDEC; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EBDF0; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EBDF4; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EBDF8; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EBDFC; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EBE00; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EBE04; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EBE08; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EBE0C; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EBE10; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EBE14; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EBE18; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EBE1C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EBE20; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803EBE24; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803EBE28; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803EBE2C; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803EBE30; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803EBE34; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EBE38; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803EBE3C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803EBE40; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803EBE44; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803EBE48; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803EBE4C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803EBE50; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803EBE54; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803EBE58; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EBE5C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EBE60; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EBE64; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EBE68; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EBE6C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EBE70; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EBE74; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EBE78; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EBE7C; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EBE80; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EBE84; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EBE88; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EBE8C; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803EBE90; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803EBE98; // type:object size:0x8 scope:local align:8 data:double +@2115 = .sdata2:0x803EBEA0; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803EBEA4; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EBEA8; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EBEAC; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EBEB0; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803EBEB4; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803EBEB8; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803EBEBC; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803EBEC0; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803EBEC4; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803EBEC8; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803EBECC; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803EBED0; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EBED4; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803EBED8; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803EBEDC; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803EBEE0; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803EBEE4; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803EBEE8; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EBEEC; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EBEF0; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803EBEF4; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803EBEF8; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803EBEFC; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803EBF00; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata2:0x803EBF04; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EBF08; // type:object size:0x4 scope:local align:4 data:float +@3162 = .sdata2:0x803EBF0C; // type:object size:0x4 scope:local align:4 data:float +@3164 = .sdata2:0x803EBF10; // type:object size:0x8 scope:local align:8 data:double +@3471 = .sdata2:0x803EBF18; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x803EBF1C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EBF20; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EBF24; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EBF28; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EBF2C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EBF30; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EBF34; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EBF38; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EBF3C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EBF40; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EBF44; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EBF48; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EBF4C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EBF50; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EBF54; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EBF58; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EBF5C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EBF60; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EBF64; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EBF68; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EBF6C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EBF70; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EBF74; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803EBF78; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803EBF7C; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803EBF80; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803EBF88; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803EBF90; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803EBF98; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803EBFA0; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803EBFA4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EBFA8; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803EBFAC; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803EBFB0; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803EBFB4; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803EBFB8; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EBFBC; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803EBFC0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803EBFC4; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EBFC8; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EBFCC; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EBFD0; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803EBFD4; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803EBFD8; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803EBFDC; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803EBFE0; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803EBFE4; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803EBFE8; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EBFEC; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EBFF0; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EBFF4; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803EBFF8; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EBFFC; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803EC000; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803EC004; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803EC008; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803EC00C; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803EC010; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803EC014; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803EC018; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803EC020; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803EC028; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803EC02C; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803EC030; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803EC034; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803EC038; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803EC03C; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EC040; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803EC048; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803EC04C; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803EC050; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803EC054; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803EC058; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803EC05C; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803EC060; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EC068; // type:object size:0x8 scope:local align:8 data:double +@881 = .sdata2:0x803EC070; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803EC078; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EC07C; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803EC080; // type:object size:0x4 scope:local align:4 data:float +@2819 = .sdata2:0x803EC084; // type:object size:0x4 scope:local align:4 data:float +@2820 = .sdata2:0x803EC088; // type:object size:0x4 scope:local align:4 data:float +@2821 = .sdata2:0x803EC08C; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803EC090; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata2:0x803EC098; // type:object size:0x8 scope:local align:8 data:double +@3072 = .sdata2:0x803EC0A0; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803EC0A4; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803EC0A8; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x803EC0AC; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x803EC0B0; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x803EC0B4; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x803EC0B8; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x803EC0BC; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803EC0C0; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x803EC0C4; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x803EC0C8; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803EC0CC; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x803EC0D0; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x803EC0D8; // type:object size:0x8 scope:local align:8 data:double +@4097 = .sdata2:0x803EC0E0; // type:object size:0x8 scope:local align:8 data:double +@4098 = .sdata2:0x803EC0E8; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x803EC0EC; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803EC0F0; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803EC0F4; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x803EC0F8; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x803EC0FC; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803EC100; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata2:0x803EC104; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x803EC108; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x803EC10C; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x803EC110; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x803EC114; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x803EC118; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x803EC11C; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x803EC120; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803EC124; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803EC128; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x803EC12C; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x803EC130; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x803EC134; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x803EC138; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x803EC13C; // type:object size:0x4 scope:local align:4 data:float +@5369 = .sdata2:0x803EC140; // type:object size:0x4 scope:local align:4 data:float +@5606 = .sdata2:0x803EC144; // type:object size:0x4 scope:local align:4 data:float +@6607 = .sdata2:0x803EC148; // type:object size:0x4 scope:local align:4 data:float +@6608 = .sdata2:0x803EC14C; // type:object size:0x4 scope:local align:4 data:float +@6609 = .sdata2:0x803EC150; // type:object size:0x4 scope:local align:4 data:float +@6787 = .sdata2:0x803EC154; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x803EC158; // type:object size:0x4 scope:local align:4 data:float +@820 = .sdata2:0x803EC160; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EC164; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803EC168; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803EC16C; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EC170; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803EC174; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EC178; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EC17C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EC180; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803EC184; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EC188; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803EC18C; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803EC190; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EC194; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata2:0x803EC198; // type:object size:0x8 scope:local align:8 data:double +@1106 = .sdata2:0x803EC1A0; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803EC1A8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EC1AC; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803EC1B0; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EC1B4; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803EC1B8; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803EC1BC; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EC1C0; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EC1C8; // type:object size:0x8 scope:local align:8 data:double +@825 = .sdata2:0x803EC1D0; // type:object size:0x4 scope:local align:4 data:float +@869 = .sdata2:0x803EC1D4; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803EC1D8; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EC1DC; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EC1E0; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EC1E4; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803EC1E8; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803EC1EC; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803EC1F0; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803EC1F4; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803EC1F8; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803EC1FC; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803EC200; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803EC204; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803EC208; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EC20C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803EC210; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803EC214; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EC218; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EC21C; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EC220; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803EC224; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803EC228; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803EC22C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EC230; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803EC238; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EC23C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EC240; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EC244; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803EC248; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803EC24C; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803EC250; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803EC254; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EC258; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EC25C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803EC260; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803EC264; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803EC268; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803EC26C; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803EC270; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803EC274; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803EC278; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803EC27C; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803EC280; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EC284; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EC288; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EC28C; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EC290; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EC294; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EC298; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803EC29C; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803EC2A0; // type:object size:0x8 scope:local align:8 data:double +@1939 = .sdata2:0x803EC2A8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EC2AC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EC2B0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EC2B4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EC2B8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EC2BC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EC2C0; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EC2C4; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EC2C8; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EC2CC; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EC2D0; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EC2D4; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EC2D8; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EC2DC; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EC2E0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EC2E4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EC2E8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EC2EC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EC2F0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EC2F4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EC2F8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EC2FC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EC300; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EC304; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EC308; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EC310; // type:object size:0x8 scope:local align:8 data:double +@2689 = .sdata2:0x803EC318; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803EC31C; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EC320; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803EC324; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803EC328; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803EC32C; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EC330; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EC338; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803EC340; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EC348; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EC350; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EC358; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803EC35C; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EC360; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803EC364; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803EC368; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803EC36C; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803EC370; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803EC374; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EC378; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803EC37C; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EC380; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803EC384; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EC388; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803EC390; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EC394; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803EC398; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803EC39C; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803EC3A0; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803EC3A4; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803EC3A8; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803EC3AC; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803EC3B0; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803EC3B8; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803EC3C0; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EC3C4; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803EC3C8; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803EC3CC; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803EC3D0; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803EC3D4; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803EC3D8; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803EC3DC; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata2:0x803EC3E0; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803EC3E8; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EC3EC; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EC3F0; // type:object size:0x4 scope:local align:4 data:float +@770 = .sdata2:0x803EC3F4; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata2:0x803EC3F8; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EC400; // type:object size:0x8 scope:local align:8 data:double +@890 = .sdata2:0x803EC408; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803EC410; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803EC414; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803EC418; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EC41C; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803EC420; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803EC424; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803EC428; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803EC430; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803EC438; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803EC43C; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803EC440; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803EC444; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803EC448; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803EC44C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803EC450; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803EC458; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803EC45C; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803EC460; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EC464; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803EC468; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803EC46C; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803EC470; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803EC474; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803EC478; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EC47C; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803EC480; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803EC484; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803EC488; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803EC490; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803EC494; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803EC498; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EC49C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EC4A0; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EC4A4; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803EC4A8; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803EC4AC; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803EC4B0; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803EC4B8; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803EC4C0; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803EC4C4; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803EC4C8; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803EC4CC; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803EC4D0; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803EC4D8; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803EC4DC; // type:object size:0x4 scope:local align:4 data:float +@203 = .sdata2:0x803EC4E0; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x803EC4E4; // type:object size:0x4 scope:local align:4 data:float +@207 = .sdata2:0x803EC4E8; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803EC4F0; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803EC4F4; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803EC4F8; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803EC4FC; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803EC500; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803EC504; // type:object size:0x4 scope:local align:4 data:float +@111 = .sdata2:0x803EC508; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803EC510; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x803EC518; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803EC520; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803EC524; // type:object size:0x4 scope:local align:4 data:float +@114 = .sdata2:0x803EC528; // type:object size:0x8 scope:local align:8 data:double +@15 = .sdata2:0x803EC530; // type:object size:0x4 scope:local align:4 data:4byte +@16 = .sdata2:0x803EC534; // type:object size:0x4 scope:local align:4 data:4byte +@17 = .sdata2:0x803EC538; // type:object size:0x4 scope:local align:4 data:4byte +@158 = .sdata2:0x803EC53C; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC540; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x803EC544; // type:object size:0x4 scope:local align:4 data:float +@162 = .sdata2:0x803EC548; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x803EC550; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EC558; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EC560; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803EC564; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803EC568; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803EC570; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803EC578; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC580; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x803EC588; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803EC590; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803EC594; // type:object size:0x4 scope:local align:4 data:float +@189 = .sdata2:0x803EC598; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803EC59C; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803EC5A0; // type:object size:0x4 scope:local align:4 data:float +@192 = .sdata2:0x803EC5A4; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803EC5A8; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803EC5AC; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803EC5B0; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803EC5B8; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803EC5C0; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803EC5C8; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803EC5D0; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803EC5D8; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803EC5DC; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EC5E0; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803EC5E8; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803EC5F0; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803EC5F8; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803EC600; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803EC608; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803EC610; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803EC618; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803EC620; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803EC628; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803EC630; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803EC638; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803EC640; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803EC648; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803EC650; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803EC658; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803EC660; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803EC668; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803EC670; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803EC678; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803EC680; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803EC688; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803EC690; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803EC698; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803EC6A0; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803EC6A8; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803EC6B0; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803EC6B8; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803EC6C0; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803EC6C8; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803EC6D0; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803EC6D8; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803EC6E0; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803EC6E8; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803EC6F0; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803EC6F8; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803EC700; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803EC708; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803EC710; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803EC718; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803EC720; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803EC728; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803EC730; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803EC738; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803EC740; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803EC748; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803EC750; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803EC758; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803EC760; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803EC768; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803EC770; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803EC778; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803EC780; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803EC788; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803EC790; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803EC798; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803EC7A0; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803EC7A8; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803EC7B0; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803EC7B8; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803EC7C0; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803EC7C8; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803EC7D0; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803EC7D8; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803EC7E0; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803EC7E8; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803EC7F0; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803EC7F4; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803EC7F8; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803EC7FC; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803EC800; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803EC804; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803EC808; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803EC80C; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803EC810; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803EC814; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803EC818; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803EC820; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803EC828; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803EC830; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803EC838; // type:object size:0x8 scope:local align:8 data:double diff --git a/config/GPIJ01_01/build.sha1 b/config/GPIJ01_01/build.sha1 new file mode 100644 index 00000000..1a843b37 --- /dev/null +++ b/config/GPIJ01_01/build.sha1 @@ -0,0 +1 @@ +92b0ca199a36b78ad978f54541392231ef8c0cea build/GPIJ01_01/main.dol diff --git a/config/GPIJ01_01/config.yml b/config/GPIJ01_01/config.yml new file mode 100644 index 00000000..22cbaf77 --- /dev/null +++ b/config/GPIJ01_01/config.yml @@ -0,0 +1,10 @@ +object: orig/GPIJ01_01/sys/main.dol +hash: 92b0ca199a36b78ad978f54541392231ef8c0cea + +# Generated from dataDir/build.map +symbols: config/GPIJ01_01/symbols.txt +splits: config/GPIJ01_01/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPIJ01_01/splits.txt b/config/GPIJ01_01/splits.txt new file mode 100644 index 00000000..748d0516 --- /dev/null +++ b/config/GPIJ01_01/splits.txt @@ -0,0 +1,3122 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:16 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:8 + .bss type:bss align:32 + .sdata type:data align:32 + .sbss type:bss align:32 + .sdata2 type:rodata align:16 + +sysBootup.cpp: + .text start:0x80005560 end:0x80005600 + .data start:0x80227EA0 end:0x80227EC0 + +jaudio/dummyprobe.c: + .text start:0x80005600 end:0x80005640 + +jaudio/memory.c: + .text start:0x80005640 end:0x80005720 + +jaudio/aictrl.c: + .text start:0x80005720 end:0x80005EE0 + .rodata start:0x802270C0 end:0x802270D8 + .bss start:0x802EF780 end:0x802EF7A0 + .sbss start:0x803ED1A0 end:0x803ED1D0 + .sdata2 start:0x803EDB60 end:0x803EDB70 + +jaudio/sample.c: + .text start:0x80005EE0 end:0x80006180 + +jaudio/dummyrom.c: + .text start:0x80006180 end:0x800062A0 + .bss start:0x803DBBD8 end:0x803DBC00 align:4 common + .sbss start:0x803ED1D0 end:0x803ED1E0 + +jaudio/audiothread.c: + .text start:0x800062A0 end:0x800067C0 + .rodata start:0x802270D8 end:0x802270E8 + .bss start:0x802EF7A0 end:0x802EF800 + .bss start:0x803DBC00 end:0x803E0860 align:4 common + .sbss start:0x803ED1E0 end:0x803ED200 + .sdata2 start:0x803EDB70 end:0x803EDB78 + +jaudio/streamctrl.c: + .text start:0x800067C0 end:0x80006B60 + .data start:0x80227EC0 end:0x80227F90 + .bss start:0x802EF800 end:0x802EF870 + .sdata2 start:0x803EDB78 end:0x803EDB88 + +jaudio/dspbuf.c: + .text start:0x80006B60 end:0x80006EC0 + .rodata start:0x802270E8 end:0x80227100 + .bss start:0x802EF870 end:0x802EF880 + .sbss start:0x803ED200 end:0x803ED210 + +jaudio/cpubuf.c: + .text start:0x80006EC0 end:0x80007100 + .bss start:0x802EF880 end:0x802EF890 + .sbss start:0x803ED210 end:0x803ED218 + +jaudio/playercall.c: + .text start:0x80007100 end:0x800073C0 + .bss start:0x802EF890 end:0x802EF950 + +jaudio/dvdthread.c: + .text start:0x800073C0 end:0x80008100 + .data start:0x80227F90 end:0x80227FC0 + .bss start:0x802EF950 end:0x802F8620 + .sbss start:0x803ED218 end:0x803ED260 + +jaudio/rate.c: + .sdata start:0x803E2620 end:0x803E2630 + .sbss start:0x803ED260 end:0x803ED268 + +jaudio/audiomesg.c: + .text start:0x80008100 end:0x80008260 + +jaudio/stackchecker.c: + .text start:0x80008260 end:0x800082A0 + +jaudio/dspboot.c: + .text start:0x800082A0 end:0x80008660 + .rodata start:0x80227100 end:0x80227120 + .data start:0x80227FC0 end:0x802299C0 + .sdata2 start:0x803EDB88 end:0x803EDB90 + +jaudio/dspproc.c: + .text start:0x80008660 end:0x800089A0 + .rodata start:0x80227120 end:0x802271A8 + .sdata start:0x803E2630 end:0x803E2638 + .sdata2 start:0x803EDB90 end:0x803EDB98 + +jaudio/ipldec.c: + .text start:0x800089A0 end:0x80008B80 + .bss start:0x803E0860 end:0x803E08A0 align:4 common + .sbss start:0x803ED268 end:0x803ED270 + +jaudio/dsp_cardunlock.c: + .text start:0x80008B80 end:0x800093A0 + .rodata start:0x802271A8 end:0x802271E8 + +jaudio/driverinterface.c: + .text start:0x800093A0 end:0x8000AC80 + .data start:0x802299C0 end:0x80229A58 + .bss start:0x802F8620 end:0x8030C7A0 + .sdata start:0x803E2638 end:0x803E2640 + .sbss start:0x803ED270 end:0x803ED280 + .sdata2 start:0x803EDB98 end:0x803EDBB8 + +jaudio/dspdriver.c: + .text start:0x8000AC80 end:0x8000B4E0 + .data start:0x80229A58 end:0x80229A80 + .bss start:0x8030C7A0 end:0x8030CBA0 + .sbss start:0x803ED280 end:0x803ED288 + .sdata2 start:0x803EDBB8 end:0x803EDBC8 + +jaudio/dspinterface.c: + .text start:0x8000B4E0 end:0x8000BC40 + .data start:0x80229A80 end:0x80229EE0 + .bss start:0x8030CBA0 end:0x80312C20 + .sdata start:0x803E2640 end:0x803E2650 + +jaudio/fxinterface.c: + .text start:0x8000BC40 end:0x8000BD80 + .data start:0x80229EE0 end:0x80229EF8 + +jaudio/tables.c: + .data start:0x80229EF8 end:0x8022A0F8 + +jaudio/bankread.c: + .text start:0x8000BD80 end:0x8000C180 + .bss start:0x80312C20 end:0x80313020 + +jaudio/waveread.c: + .text start:0x8000C180 end:0x8000C7E0 + .bss start:0x80313020 end:0x80313820 + .bss start:0x803E08A0 end:0x803E08E0 align:4 common + +jaudio/connect.c: + .text start:0x8000C7E0 end:0x8000CF40 + .bss start:0x80313820 end:0x80313C20 + +jaudio/bankdrv.c: + .text start:0x8000CF40 end:0x8000D6C0 + .data start:0x8022A0F8 end:0x8022A108 + .sdata2 start:0x803EDBC8 end:0x803EDBF0 + +jaudio/random.c: + .text start:0x8000D6C0 end:0x8000D820 + .sdata start:0x803E2650 end:0x803E2658 + .sdata2 start:0x803EDBF0 end:0x803EDC00 + +jaudio/aramcall.c: + .text start:0x8000D820 end:0x8000DBA0 + .data start:0x8022A108 end:0x8022A148 + .bss start:0x803E08E0 end:0x803E090C align:4 common + .sdata start:0x803E2658 end:0x803E2660 + .sbss start:0x803ED288 end:0x803ED290 + +jaudio/ja_calc.c: + .text start:0x8000DBA0 end:0x8000DD60 + .bss start:0x80313C20 end:0x80314028 + .sdata2 start:0x803EDC00 end:0x803EDC30 + +jaudio/fat.c: + .text start:0x8000DD60 end:0x8000E280 + .bss start:0x80314028 end:0x80314C28 + .sbss start:0x803ED290 end:0x803ED2A0 + +jaudio/cmdstack.c: + .text start:0x8000E280 end:0x8000E500 + .sbss start:0x803ED2A0 end:0x803ED2B0 + +jaudio/virload.c: + .text start:0x8000E500 end:0x8000E940 + .bss start:0x80314C28 end:0x803152C0 + .sbss start:0x803ED2B0 end:0x803ED2C0 + .sdata2 start:0x803EDC30 end:0x803EDC38 + +jaudio/heapctrl.c: + .text start:0x8000E940 end:0x8000F380 + .rodata start:0x802271E8 end:0x802271F8 + .bss start:0x803152C0 end:0x803252C0 + .sbss start:0x803ED2C0 end:0x803ED2C8 + +jaudio/jammain_2.c: + .text start:0x8000F380 end:0x80013820 + .data start:0x8022A148 end:0x8022A408 + .bss start:0x803252C0 end:0x803253E0 + .sdata start:0x803E2660 end:0x803E2668 + .sbss start:0x803ED2C8 end:0x803ED2D8 + .sdata2 start:0x803EDC38 end:0x803EDC80 + +jaudio/midplay.c: + .data start:0x8022A408 end:0x8022A808 + +jaudio/noteon.c: + .text start:0x80013820 end:0x80013D80 + .sdata2 start:0x803EDC80 end:0x803EDC88 + +jaudio/seqsetup.c: + .text start:0x80013D80 end:0x80014BA0 + .bss start:0x803253E0 end:0x80369020 + .sbss start:0x803ED2D8 end:0x803ED2E8 + .sdata2 start:0x803EDC88 end:0x803EDC98 + +jaudio/centcalc.c: + .text start:0x80014BA0 end:0x80014C80 + .data start:0x8022A808 end:0x8022A908 + .sdata2 start:0x803EDC98 end:0x803EDCB0 + +jaudio/jamosc.c: + .text start:0x80014C80 end:0x80015120 + .data start:0x8022A908 end:0x8022A9F0 + .sdata2 start:0x803EDCB0 end:0x803EDCB8 + +jaudio/oneshot.c: + .text start:0x80015120 end:0x800168E0 + .data start:0x8022A9F0 end:0x8022AA30 + .sdata start:0x803E2668 end:0x803E2670 + .sdata2 start:0x803EDCB8 end:0x803EDCE8 + +jaudio/interface.c: + .text start:0x800168E0 end:0x80016A40 + .bss start:0x80369020 end:0x80369030 + .sdata start:0x803E2670 end:0x803E2678 + .sbss start:0x803ED2E8 end:0x803ED2F0 + +jaudio/verysimple.c: + .text start:0x80016A40 end:0x80017440 + .rodata start:0x802271F8 end:0x80227358 + .data start:0x8022AA30 end:0x8022AB48 + .bss start:0x80369030 end:0x80369108 + .sbss start:0x803ED2F0 end:0x803ED318 + .sdata2 start:0x803EDCE8 end:0x803EDCF8 + +jaudio/app_inter.c: + .text start:0x80017440 end:0x800175C0 + .sbss start:0x803ED318 end:0x803ED320 + +jaudio/pikiinter.c: + .text start:0x800175C0 end:0x80018040 + .data start:0x8022AB48 end:0x8022B210 + .bss start:0x803E090C end:0x803E2430 align:4 common + .sbss start:0x803ED320 end:0x803ED330 + .sdata2 start:0x803EDCF8 end:0x803EDD18 + +jaudio/piki_player.c: + .text start:0x80018040 end:0x800188A0 + .bss start:0x80369108 end:0x80369220 + .sbss start:0x803ED330 end:0x803ED398 + .sdata2 start:0x803EDD18 end:0x803EDD30 + +jaudio/piki_bgm.c: + .text start:0x800188A0 end:0x80019680 + .rodata start:0x80227358 end:0x80227380 + .data start:0x8022B210 end:0x8022B328 + .bss start:0x80369220 end:0x80369F58 + .sdata start:0x803E2678 end:0x803E2700 + .sbss start:0x803ED398 end:0x803ED3A8 + .sdata2 start:0x803EDD30 end:0x803EDD40 + +jaudio/piki_scene.c: + .text start:0x80019680 end:0x8001A000 + .data start:0x8022B328 end:0x8022B590 + .sdata start:0x803E2700 end:0x803E2710 + .sbss start:0x803ED3A8 end:0x803ED3D0 + .sdata2 start:0x803EDD40 end:0x803EDD48 + +jaudio/pikidemo.c: + .text start:0x8001A000 end:0x8001B2A0 + .data start:0x8022B590 end:0x8022C050 + .bss start:0x80369F58 end:0x80369FC8 + .sdata start:0x803E2710 end:0x803E2748 + .sbss start:0x803ED3D0 end:0x803ED3F8 + .sdata2 start:0x803EDD48 end:0x803EDD60 + +jaudio/file_seq.c: + .text start:0x8001B2A0 end:0x8001B820 + .bss start:0x80369FC8 end:0x8036E7E0 + .sdata start:0x803E2748 end:0x803E2750 + .sbss start:0x803ED3F8 end:0x803ED400 + +jaudio/cmdqueue.c: + .text start:0x8001B820 end:0x8001BA20 + +jaudio/filter3d.c: + .text start:0x8001BA20 end:0x8001BAA0 + .sdata2 start:0x803EDD60 end:0x803EDD68 + +jaudio/syncstream.c: + .text start:0x8001BAA0 end:0x8001D720 + .data start:0x8022C050 end:0x8022C0C0 + .bss start:0x8036E7E0 end:0x80390248 + .sdata start:0x803E2750 end:0x803E2758 + .sbss start:0x803ED400 end:0x803ED408 + .sdata2 start:0x803EDD68 end:0x803EDD80 + +jaudio/pikiseq.c: + .data start:0x8022C0C0 end:0x8022C3A0 + +jaudio/bankloader.c: + .text start:0x8001D720 end:0x8001D800 + +jaudio/interleave.c: + .text start:0x8001D800 end:0x8001DA00 + .bss start:0x80390248 end:0x80390280 + .sdata start:0x803E2758 end:0x803E2760 + +jaudio/hvqm_play.c: + .text start:0x8001DA00 end:0x8001E9BC + .bss start:0x80390280 end:0x80391640 + .bss start:0x803E2430 end:0x803E2610 align:4 common + .sdata start:0x803E2760 end:0x803E2770 + .sbss start:0x803ED408 end:0x803ED460 + .sdata2 start:0x803EDD80 end:0x803EDD88 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001E9BC end:0x80024464 + .rodata start:0x80227380 end:0x80227398 + .data start:0x8022C3A0 end:0x8022C3B0 + .bss start:0x80391640 end:0x80392080 + .sbss start:0x803ED460 end:0x803ED468 + +sysCommon/ayuStack.cpp: + .text start:0x80024464 end:0x80024C50 + .data start:0x8022C3B0 end:0x8022C3E0 + +sysCommon/baseApp.cpp: + .text start:0x80024C50 end:0x80024F04 + .data start:0x8022C3E0 end:0x8022C4A8 + .sdata start:0x803E2770 end:0x803E27B0 + +sysCommon/stream.cpp: + .text start:0x80024F04 end:0x80025354 + .data start:0x8022C4A8 end:0x8022C500 + .sdata start:0x803E27B0 end:0x803E27C0 + +sysCommon/streamBufferedInput.cpp: + .text start:0x80025354 end:0x80025744 + .data start:0x8022C500 end:0x8022C640 + .sdata start:0x803E27C0 end:0x803E27E0 + +sysCommon/string.cpp: + .text start:0x80025744 end:0x80025768 + +sysCommon/graphics.cpp: + .text start:0x80025768 end:0x8002998C + .data start:0x8022C640 end:0x8022D440 + .sdata start:0x803E27E0 end:0x803E28E0 + .sdata2 start:0x803EDD88 end:0x803EDDF0 + +sysCommon/grLight.cpp: + .text start:0x8002998C end:0x80029EDC + .data start:0x8022D440 end:0x8022D4C0 + .sdata start:0x803E28E0 end:0x803E2938 + .sdata2 start:0x803EDDF0 end:0x803EDE40 + +sysCommon/shapeBase.cpp: + .text start:0x80029EDC end:0x80035BC0 + .ctors start:0x80227044 end:0x80227048 + .rodata start:0x80227398 end:0x802273F8 + .data start:0x8022D4C0 end:0x8022DC48 + .bss start:0x80392080 end:0x80396180 + .sdata start:0x803E2938 end:0x803E2AD8 + .sbss start:0x803ED468 end:0x803ED478 + .sdata2 start:0x803EDE40 end:0x803EDEB0 + +sysCommon/shpLightFlares.cpp: + .text start:0x80035BC0 end:0x800361AC + .data start:0x8022DC48 end:0x8022DC60 + .sdata start:0x803E2AD8 end:0x803E2B20 + .sdata2 start:0x803EDEB0 end:0x803EDED0 + +sysCommon/shpObjColl.cpp: + .text start:0x800361AC end:0x800364FC + .data start:0x8022DC60 end:0x8022DC70 + .sdata start:0x803E2B20 end:0x803E2B58 + .sdata2 start:0x803EDED0 end:0x803EDED8 + +sysCommon/shpRoutes.cpp: + .text start:0x800364FC end:0x800375F4 + .data start:0x8022DC70 end:0x8022DE60 + .sdata start:0x803E2B58 end:0x803E2BF8 + .sdata2 start:0x803EDED8 end:0x803EDF00 + +sysCommon/sysMath.cpp: + .text start:0x800375F4 end:0x8003DE44 + .sdata start:0x803E2BF8 end:0x803E2C10 + .sdata2 start:0x803EDF00 end:0x803EDF40 + +sysCommon/matMath.cpp: + .text start:0x8003DE44 end:0x8003EE54 + .ctors start:0x80227048 end:0x8022704C + .bss start:0x80396180 end:0x8039E1C0 + .sdata start:0x803E2C10 end:0x803E2C18 + .sdata2 start:0x803EDF40 end:0x803EDF50 + +sysCommon/stdSystem.cpp: + .text start:0x8003EE54 end:0x800406D0 + .data start:0x8022DE60 end:0x8022E070 + .sdata start:0x803E2C18 end:0x803E2C80 + .sdata2 start:0x803EDF50 end:0x803EDF58 + +sysCommon/node.cpp: + .text start:0x800406D0 end:0x80040A7C + .data start:0x8022E070 end:0x8022E140 + .sdata start:0x803E2C80 end:0x803E2CC0 + .sbss start:0x803ED478 end:0x803ED480 + +sysCommon/timers.cpp: + .text start:0x80040A7C end:0x80040AA8 + +sysCommon/controller.cpp: + .text start:0x80040AA8 end:0x80040C74 + .data start:0x8022E140 end:0x8022E1D8 + .sdata start:0x803E2CC0 end:0x803E2CF0 + .sdata2 start:0x803EDF58 end:0x803EDF68 + +sysCommon/cmdStream.cpp: + .text start:0x80040C74 end:0x8004167C + .sbss start:0x803ED480 end:0x803ED488 + +sysCommon/camera.cpp: + .text start:0x8004167C end:0x800439E4 + .data start:0x8022E1D8 end:0x8022E1F0 + .sdata start:0x803E2CF0 end:0x803E2D70 + .sdata2 start:0x803EDF68 end:0x803EDFC0 + +sysCommon/atx.cpp: + .text start:0x800439E4 end:0x80043F54 + .data start:0x8022E1F0 end:0x8022E310 + .sdata start:0x803E2D70 end:0x803E2D98 + +sysCommon/id32.cpp: + .text start:0x80043F54 end:0x8004428C + +sysDolphin/texture.cpp: + .text start:0x8004428C end:0x80044990 + .data start:0x8022E310 end:0x8022E3E0 + .sdata start:0x803E2D98 end:0x803E2DD0 + .sdata2 start:0x803EDFC0 end:0x803EDFD8 + +sysDolphin/system.cpp: + .text start:0x80044990 end:0x8004739C + .ctors start:0x8022704C end:0x80227050 + .data start:0x8022E3E0 end:0x802AAB00 + .bss start:0x8039E1C0 end:0x803A2D40 + .sdata start:0x803E2DD0 end:0x803E2EA8 + .sbss start:0x803ED488 end:0x803ED4B0 + .sdata2 start:0x803EDFD8 end:0x803EDFF8 + +sysDolphin/sysNew.cpp: + .text start:0x8004739C end:0x80047650 + .data start:0x802AAB00 end:0x802AAB70 + +sysDolphin/controllerMgr.cpp: + .text start:0x80047650 end:0x80047954 + .data start:0x802AAB70 end:0x802AABB0 + .bss start:0x803A2D40 end:0x803A2D70 + .sdata start:0x803E2EA8 end:0x803E2EB0 + +sysDolphin/dgxGraphics.cpp: + .text start:0x80047954 end:0x8004D004 + .ctors start:0x80227050 end:0x80227054 + .data start:0x802AABB0 end:0x802AB3C8 + .bss start:0x803A2D70 end:0x803A2D78 + .sdata start:0x803E2EB0 end:0x803E2F38 + .sbss start:0x803ED4B0 end:0x803ED4D8 + .sdata2 start:0x803EDFF8 end:0x803EE028 + +sysDolphin/gameApp.cpp: + .text start:0x8004D004 end:0x8004D038 + +plugPikiColin/cardutil.cpp: + .text start:0x8004D038 end:0x8004E2FC + .data start:0x802AB3C8 end:0x802AB3F0 + .bss start:0x803A2D78 end:0x803A30F8 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004E2FC end:0x80050720 + .rodata start:0x802273F8 end:0x80227458 + .data start:0x802AB3F0 end:0x802AB4D8 + .sdata start:0x803E2F38 end:0x803E2FF0 + .sdata2 start:0x803EE028 end:0x803EE040 + +plugPikiColin/animMgr.cpp: + .text start:0x80050720 end:0x80051C54 + .data start:0x802AB4D8 end:0x802AB6C8 + .sdata start:0x803E2FF0 end:0x803E3070 + .sdata2 start:0x803EE040 end:0x803EE058 + +plugPikiColin/gameflow.cpp: + .text start:0x80051C54 end:0x8005394C + .ctors start:0x80227054 end:0x80227058 + .data start:0x802AB6C8 end:0x802ABCE0 + .bss start:0x803A30F8 end:0x803A3460 + .sdata start:0x803E3070 end:0x803E3198 + .sbss start:0x803ED4D8 end:0x803ED4E0 + .sdata2 start:0x803EE058 end:0x803EE0B0 + +plugPikiColin/game.cpp: + .text start:0x8005394C end:0x8005444C + .ctors start:0x80227058 end:0x8022705C + .data start:0x802ABCE0 end:0x802ABF28 + .bss start:0x803A3460 end:0x803A36C0 + .sdata start:0x803E3198 end:0x803E3230 + .sdata2 start:0x803EE0B0 end:0x803EE0B8 + +plugPikiColin/gamePrefs.cpp: + .text start:0x8005444C end:0x80055324 + .data start:0x802ABF28 end:0x802ABFB8 + .sdata start:0x803E3230 end:0x803E3258 + +plugPikiColin/gameSetup.cpp: + .text start:0x80055324 end:0x8005582C + .data start:0x802ABFB8 end:0x802ACC70 + .sdata start:0x803E3258 end:0x803E32D0 + +plugPikiColin/cardSelect.cpp: + .text start:0x8005582C end:0x80055EFC + .data start:0x802ACC70 end:0x802ACE30 + .sdata start:0x803E32D0 end:0x803E3328 + .sbss start:0x803ED4E0 end:0x803ED4E8 + .sdata2 start:0x803EE0B8 end:0x803EE0C8 + +plugPikiColin/mapSelect.cpp: + .text start:0x80055EFC end:0x800572F0 + .data start:0x802ACE30 end:0x802AD0F0 + .sdata start:0x803E3328 end:0x803E33A0 + .sbss start:0x803ED4E8 end:0x803ED4F0 + .sdata2 start:0x803EE0C8 end:0x803EE0D8 + +plugPikiColin/newPikiGame.cpp: + .text start:0x800572F0 end:0x8005B6C8 + .rodata start:0x80227458 end:0x80227480 + .data start:0x802AD0F0 end:0x802AD5A8 + .bss start:0x803A36C0 end:0x803A3700 + .sdata start:0x803E33A0 end:0x803E3508 + .sbss start:0x803ED4F0 end:0x803ED528 + .sdata2 start:0x803EE0D8 end:0x803EE140 + +plugPikiColin/introGame.cpp: + .text start:0x8005B6C8 end:0x8005BF3C + .data start:0x802AD5A8 end:0x802AD800 + .sdata start:0x803E3508 end:0x803E35C0 + .sbss start:0x803ED528 end:0x803ED530 + .sdata2 start:0x803EE140 end:0x803EE160 + +plugPikiColin/gameExit.cpp: + .text start:0x8005BF3C end:0x8005C02C + .data start:0x802AD800 end:0x802AD920 + .sdata start:0x803E35C0 end:0x803E3610 + +plugPikiColin/gauges.cpp: + .text start:0x8005C02C end:0x8005D988 + .ctors start:0x8022705C end:0x80227060 + .data start:0x802AD920 end:0x802AD938 + .sdata start:0x803E3610 end:0x803E3660 + .sbss start:0x803ED530 end:0x803ED548 + .sdata2 start:0x803EE160 end:0x803EE1E0 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005D988 end:0x8005DF98 + .data start:0x802AD938 end:0x802ADB80 + .sdata start:0x803E3660 end:0x803E36E0 + .sbss start:0x803ED548 end:0x803ED550 + .sdata2 start:0x803EE1E0 end:0x803EE1F0 + +plugPikiColin/gui.cpp: + .text start:0x8005DF98 end:0x8005F320 + .data start:0x802ADB80 end:0x802ADCC0 + .sdata start:0x803E36E0 end:0x803E3730 + .sdata2 start:0x803EE1F0 end:0x803EE220 + +plugPikiColin/parameters.cpp: + .text start:0x8005F320 end:0x8005F690 + .data start:0x802ADCC0 end:0x802ADCF0 + .sdata start:0x803E3730 end:0x803E3738 + +plugPikiColin/plugPiki.cpp: + .text start:0x8005F690 end:0x800600A4 + .data start:0x802ADCF0 end:0x802ADF60 + .sdata start:0x803E3738 end:0x803E37C8 + .sdata2 start:0x803EE220 end:0x803EE230 + +plugPikiColin/titles.cpp: + .text start:0x800600A4 end:0x80061AF0 + .data start:0x802ADF60 end:0x802AE238 + .sdata start:0x803E37C8 end:0x803E38B8 + .sbss start:0x803ED550 end:0x803ED590 + .sdata2 start:0x803EE230 end:0x803EE298 + +plugPikiColin/ninLogo.cpp: + .text start:0x80061AF0 end:0x80062060 + .data start:0x802AE238 end:0x802AE3A8 + .sdata start:0x803E38B8 end:0x803E3908 + .sbss start:0x803ED590 end:0x803ED598 + .sdata2 start:0x803EE298 end:0x803EE2B0 + +plugPikiColin/mapMgr.cpp: + .text start:0x80062060 end:0x8006A09C + .ctors start:0x80227060 end:0x80227064 + .data start:0x802AE3A8 end:0x802AEAC0 + .bss start:0x803A3700 end:0x803A3718 + .sdata start:0x803E3908 end:0x803E3B48 + .sbss start:0x803ED598 end:0x803ED5B0 + .sdata2 start:0x803EE2B0 end:0x803EE358 + +plugPikiColin/dayMgr.cpp: + .text start:0x8006A09C end:0x800702BC + .data start:0x802AEAC0 end:0x802AF340 + .sdata start:0x803E3B48 end:0x803E3DD8 + .sdata2 start:0x803EE358 end:0x803EE3B0 + +plugPikiColin/cinePlayer.cpp: + .text start:0x800702BC end:0x80073A04 + .data start:0x802AF340 end:0x802AF5A0 + .bss start:0x803A3718 end:0x803A3B20 + .sdata start:0x803E3DD8 end:0x803E4070 + .sdata2 start:0x803EE3B0 end:0x803EE3D8 + +plugPikiColin/lightPool.cpp: + .text start:0x80073A04 end:0x80074168 + .data start:0x802AF5A0 end:0x802AF660 + .sdata start:0x803E4070 end:0x803E40D0 + .sdata2 start:0x803EE3D8 end:0x803EE408 + +plugPikiColin/memoryCard.cpp: + .text start:0x80074168 end:0x800776D4 + .data start:0x802AF660 end:0x802B1360 + .bss start:0x803A3B20 end:0x803D5BA0 + .sdata start:0x803E40D0 end:0x803E4118 + +plugPikiColin/moviePlayer.cpp: + .text start:0x800776D4 end:0x80078830 + .data start:0x802B1360 end:0x802B1F60 + .sdata start:0x803E4118 end:0x803E4158 + .sdata2 start:0x803EE408 end:0x803EE428 + +plugPikiColin/movSample.cpp: + .text start:0x80078830 end:0x800796E4 + .data start:0x802B1F60 end:0x802B2190 + .bss start:0x803D5BA0 end:0x803D6EF0 + .sdata start:0x803E4158 end:0x803E41A8 + .sbss start:0x803ED5B0 end:0x803ED5B8 + .sdata2 start:0x803EE428 end:0x803EE450 + +plugPikiKando/omake.cpp: + .text start:0x800796E4 end:0x8007BE98 + .data start:0x802B2190 end:0x802B2290 + .sdata start:0x803E41A8 end:0x803E41E8 + .sbss start:0x803ED5B8 end:0x803ED5C0 + .sdata2 start:0x803EE450 end:0x803EE4A8 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007BE98 end:0x8007C0FC + .data start:0x802B2290 end:0x802B2320 + .sdata start:0x803E41E8 end:0x803E4228 + .sbss start:0x803ED5C0 end:0x803ED5C8 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007C0FC end:0x8007D2AC + .data start:0x802B2320 end:0x802B2800 + .sdata start:0x803E4228 end:0x803E42C8 + .sdata2 start:0x803EE4A8 end:0x803EE4B8 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007D2AC end:0x8007D4C0 + .data start:0x802B2800 end:0x802B28D8 + .sdata start:0x803E42C8 end:0x803E42F8 + .sdata2 start:0x803EE4B8 end:0x803EE4C0 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007D4C0 end:0x8007D600 + .data start:0x802B28D8 end:0x802B2990 + .sdata start:0x803E42F8 end:0x803E4310 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007D600 end:0x8007D8C4 + .data start:0x802B2990 end:0x802B2A08 + .sdata start:0x803E4310 end:0x803E4330 + .sdata2 start:0x803EE4C0 end:0x803EE4D0 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007D8C4 end:0x8007DD34 + .data start:0x802B2A08 end:0x802B2DF0 + .sdata start:0x803E4330 end:0x803E4380 + .sbss start:0x803ED5C8 end:0x803ED5E8 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007DD34 end:0x8007EB5C + .data start:0x802B2DF0 end:0x802B32B0 + .sdata start:0x803E4380 end:0x803E4428 + .sdata2 start:0x803EE4D0 end:0x803EE4E8 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007EB5C end:0x8007FF68 + .data start:0x802B32B0 end:0x802B3418 + .sdata start:0x803E4428 end:0x803E44E8 + .sdata2 start:0x803EE4E8 end:0x803EE540 + +plugPikiKando/globalShapes.cpp: + .text start:0x8007FF68 end:0x8008006C + .data start:0x802B3418 end:0x802B34B8 + .sbss start:0x803ED5E8 end:0x803ED600 + +plugPikiKando/playerState.cpp: + .text start:0x8008006C end:0x80082AF0 + .rodata start:0x80227480 end:0x802274B0 + .data start:0x802B34B8 end:0x802B3598 + .sdata start:0x803E44E8 end:0x803E4588 + .sbss start:0x803ED600 end:0x803ED608 + .sdata2 start:0x803EE540 end:0x803EE548 + +plugPikiKando/gameDemo.cpp: + .text start:0x80082AF0 end:0x800837C8 + .data start:0x802B3598 end:0x802B3938 + .sdata start:0x803E4588 end:0x803E4600 + .sbss start:0x803ED608 end:0x803ED610 + .sdata2 start:0x803EE548 end:0x803EE568 + +plugPikiKando/demoInvoker.cpp: + .text start:0x800837C8 end:0x800841A4 + .data start:0x802B3938 end:0x802B3968 + .sdata2 start:0x803EE568 end:0x803EE580 + +plugPikiKando/demoEvent.cpp: + .text start:0x800841A4 end:0x800845F4 + .data start:0x802B3968 end:0x802B39A8 + .sbss start:0x803ED610 end:0x803ED618 + +plugPikiKando/resultFlag.cpp: + .text start:0x800845F4 end:0x80084F70 + .rodata start:0x802274B0 end:0x802274C0 + .data start:0x802B39A8 end:0x802B3E98 + .sdata start:0x803E4600 end:0x803E4610 + +plugPikiKando/aiConstants.cpp: + .text start:0x80084F70 end:0x80085450 + .data start:0x802B3E98 end:0x802B3FB8 + .sdata start:0x803E4610 end:0x803E46B8 + .sbss start:0x803ED618 end:0x803ED620 + .sdata2 start:0x803EE580 end:0x803EE590 + +plugPikiKando/kio.cpp: + .text start:0x80085450 end:0x800857D0 + .sdata start:0x803E46B8 end:0x803E46C8 + .sbss start:0x803ED620 end:0x803ED630 + +plugPikiKando/keyConfig.cpp: + .text start:0x800857D0 end:0x80085AF8 + .data start:0x802B3FB8 end:0x802B40F8 + .sdata start:0x803E46C8 end:0x803E4730 + .sbss start:0x803ED630 end:0x803ED638 + +plugPikiKando/aiPerf.cpp: + .text start:0x80085AF8 end:0x800875B8 + .rodata start:0x802274C0 end:0x802274D8 + .data start:0x802B40F8 end:0x802B4610 + .sdata start:0x803E4730 end:0x803E4778 + .sbss start:0x803ED638 end:0x803ED670 + .sdata2 start:0x803EE590 end:0x803EE5A0 + +plugPikiKando/courseDebug.cpp: + .text start:0x800875B8 end:0x800877A0 + .data start:0x802B4610 end:0x802B4720 + .sdata start:0x803E4778 end:0x803E47B8 + .sbss start:0x803ED670 end:0x803ED680 + +plugPikiKando/memStat.cpp: + .text start:0x800877A0 end:0x80087E90 + .data start:0x802B4720 end:0x802B47D8 + .sdata start:0x803E47B8 end:0x803E47F0 + .sbss start:0x803ED680 end:0x803ED688 + +plugPikiKando/collInfo.cpp: + .text start:0x80087E90 end:0x8008B2EC + .ctors start:0x80227064 end:0x80227068 + .data start:0x802B47D8 end:0x802B48A0 + .bss start:0x803D6EF0 end:0x803D6F30 + .sdata start:0x803E47F0 end:0x803E4808 + .sdata2 start:0x803EE5A0 end:0x803EE5D8 + +plugPikiKando/complexCreature.cpp: + .text start:0x8008B2EC end:0x8008B300 + +plugPikiKando/creature.cpp: + .text start:0x8008B300 end:0x8008ECD0 + .data start:0x802B48A0 end:0x802B4A28 + .bss start:0x803D6F30 end:0x803D7730 + .sdata start:0x803E4808 end:0x803E4980 + .sbss start:0x803ED688 end:0x803ED698 + .sdata2 start:0x803EE5D8 end:0x803EE638 + +plugPikiKando/creatureCollision.cpp: + .text start:0x8008ECD0 end:0x8008F438 + .sdata start:0x803E4980 end:0x803E4988 + .sdata2 start:0x803EE638 end:0x803EE650 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x8008F438 end:0x8008F648 + .data start:0x802B4A28 end:0x802B4B68 + .sdata start:0x803E4988 end:0x803E49C8 + +plugPikiKando/creatureMove.cpp: + .text start:0x8008F648 end:0x80090D40 + .sdata start:0x803E49C8 end:0x803E4A18 + .sdata2 start:0x803EE650 end:0x803EE698 + +plugPikiKando/creatureStick.cpp: + .text start:0x80090D40 end:0x8009343C + .data start:0x802B4B68 end:0x802B4D00 + .sdata start:0x803E4A18 end:0x803E4A98 + .sdata2 start:0x803EE698 end:0x803EE6C0 + +plugPikiKando/dualCreature.cpp: + .text start:0x8009343C end:0x80093D68 + .data start:0x802B4D00 end:0x802B5028 + .sdata start:0x803E4A98 end:0x803E4B20 + .sdata2 start:0x803EE6C0 end:0x803EE6F0 + +plugPikiKando/dynCreature.cpp: + .text start:0x80093D68 end:0x8009555C + .data start:0x802B5028 end:0x802B52B0 + .sdata start:0x803E4B20 end:0x803E4C28 + .sbss start:0x803ED698 end:0x803ED6A0 + .sdata2 start:0x803EE6F0 end:0x803EE748 + +plugPikiKando/eventListener.cpp: + .text start:0x8009555C end:0x8009564C + .data start:0x802B52B0 end:0x802B5350 + .sdata start:0x803E4C28 end:0x803E4C48 + +plugPikiKando/fastGrid.cpp: + .text start:0x8009564C end:0x80095C58 + .sdata start:0x803E4C48 end:0x803E4C58 + .sbss start:0x803ED6A0 end:0x803ED6A8 + +plugPikiKando/ropeCreature.cpp: + .text start:0x80095C58 end:0x80095FEC + .data start:0x802B5350 end:0x802B54F0 + .sdata start:0x803E4C58 end:0x803E4C78 + .sdata2 start:0x803EE748 end:0x803EE768 + +plugPikiKando/objectTypes.cpp: + .text start:0x80095FEC end:0x800960C8 + .data start:0x802B54F0 end:0x802B5818 + .sdata start:0x803E4C78 end:0x803E4D50 + +plugPikiKando/pelletMgr.cpp: + .text start:0x800960C8 end:0x8009ABFC + .rodata start:0x802274D8 end:0x802274F8 + .data start:0x802B5818 end:0x802B60E0 + .sdata start:0x803E4D50 end:0x803E4FA8 + .sbss start:0x803ED6A8 end:0x803ED6B8 + .sdata2 start:0x803EE768 end:0x803EE7F0 + +plugPikiKando/animPellet.cpp: + .text start:0x8009ABFC end:0x8009B3D0 + .data start:0x802B60E0 end:0x802B6280 + .sdata start:0x803E4FA8 end:0x803E5038 + .sdata2 start:0x803EE7F0 end:0x803EE7F8 + +plugPikiKando/genPellet.cpp: + .text start:0x8009B3D0 end:0x8009B6E0 + .data start:0x802B6280 end:0x802B6358 + .sdata start:0x803E5038 end:0x803E5060 + +plugPikiKando/pelletState.cpp: + .text start:0x8009B6E0 end:0x8009C7B8 + .data start:0x802B6358 end:0x802B6820 + .sdata start:0x803E5060 end:0x803E50F0 + .sdata2 start:0x803EE7F8 end:0x803EE830 + +plugPikiKando/workObject.cpp: + .text start:0x8009C7B8 end:0x800A0E6C + .data start:0x802B6820 end:0x802B74A0 + .sdata start:0x803E50F0 end:0x803E5290 + .sbss start:0x803ED6B8 end:0x803ED6C0 + .sdata2 start:0x803EE830 end:0x803EE890 + +plugPikiKando/routeMgr.cpp: + .text start:0x800A0E6C end:0x800A4E80 + .data start:0x802B74A0 end:0x802B75F0 + .sdata start:0x803E5290 end:0x803E52D8 + .sbss start:0x803ED6C0 end:0x803ED6C8 + .sdata2 start:0x803EE890 end:0x803EE8D0 + +plugPikiKando/seMgr.cpp: + .text start:0x800A4E80 end:0x800A5654 + .data start:0x802B75F0 end:0x802B77A0 + .sdata start:0x803E52D8 end:0x803E5360 + .sbss start:0x803ED6C8 end:0x803ED6D0 + .sdata2 start:0x803EE8D0 end:0x803EE8E8 + +plugPikiKando/seConstants.cpp: + .text start:0x800A5654 end:0x800A57AC + .data start:0x802B77A0 end:0x802B78A0 + .sdata start:0x803E5360 end:0x803E53B8 + .sdata2 start:0x803EE8E8 end:0x803EE8F8 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A57AC end:0x800A70E8 + .rodata start:0x802274F8 end:0x80227520 + .data start:0x802B78A0 end:0x802BA918 + .sdata start:0x803E53B8 end:0x803E5488 + .sbss start:0x803ED6D0 end:0x803ED6D8 + .sdata2 start:0x803EE8F8 end:0x803EE920 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A70E8 end:0x800A7498 + .data start:0x802BA918 end:0x802BA938 + .sbss start:0x803ED6D8 end:0x803ED6F0 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803ED6F0 end:0x803ED6F8 + +plugPikiKando/cPlate.cpp: + .text start:0x800A7498 end:0x800A8BD0 + .data start:0x802BA938 end:0x802BAA78 + .sdata start:0x803E5488 end:0x803E5568 + .sdata2 start:0x803EE920 end:0x803EE970 + +plugPikiKando/aiStone.cpp: + .text start:0x800A8BD0 end:0x800A9834 + .data start:0x802BAA78 end:0x802BAB80 + .sdata start:0x803E5568 end:0x803E55C8 + .sdata2 start:0x803EE970 end:0x803EE9C0 + +plugPikiKando/aiActions.cpp: + .text start:0x800A9834 end:0x800AA124 + .data start:0x802BAB80 end:0x802BAE68 + .sdata start:0x803E55C8 end:0x803E5650 + .sdata2 start:0x803EE9C0 end:0x803EE9F8 + +plugPikiKando/aiAttack.cpp: + .text start:0x800AA124 end:0x800AC358 + .data start:0x802BAE68 end:0x802BB0A8 + .sdata start:0x803E5650 end:0x803E5708 + .sdata2 start:0x803EE9F8 end:0x803EEA58 + +plugPikiKando/aiBore.cpp: + .text start:0x800AC358 end:0x800AE148 + .rodata start:0x80227520 end:0x80227580 + .data start:0x802BB0A8 end:0x802BB4D0 + .sdata start:0x803E5708 end:0x803E5778 + .sdata2 start:0x803EEA58 end:0x803EEA90 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AE148 end:0x800AE5D8 + .data start:0x802BB4D0 end:0x802BB620 + .sdata start:0x803E5778 end:0x803E5798 + .sdata2 start:0x803EEA90 end:0x803EEAA0 + +plugPikiKando/aiBou.cpp: + .text start:0x800AE5D8 end:0x800AED8C + .data start:0x802BB620 end:0x802BB708 + .sdata start:0x803E5798 end:0x803E57E0 + .sdata2 start:0x803EEAA0 end:0x803EEAC8 + +plugPikiKando/aiBridge.cpp: + .text start:0x800AED8C end:0x800B0028 + .rodata start:0x80227580 end:0x80227590 + .data start:0x802BB708 end:0x802BB870 + .sdata start:0x803E57E0 end:0x803E5830 + .sdata2 start:0x803EEAC8 end:0x803EEB10 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800B0028 end:0x800B0B6C + .data start:0x802BB870 end:0x802BB9D8 + .sdata start:0x803E5830 end:0x803E5870 + .sdata2 start:0x803EEB10 end:0x803EEB48 + +plugPikiKando/aiTransport.cpp: + .text start:0x800B0B6C end:0x800B65D8 + .rodata start:0x80227590 end:0x802275B8 + .data start:0x802BB9D8 end:0x802BBB88 + .sdata start:0x803E5870 end:0x803E5A68 + .sdata2 start:0x803EEB48 end:0x803EEBE8 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B65D8 end:0x800B77B0 + .data start:0x802BBB88 end:0x802BBCF8 + .sdata start:0x803E5A68 end:0x803E5AD8 + .sdata2 start:0x803EEBE8 end:0x803EEC38 + +plugPikiKando/aiChase.cpp: + .text start:0x800B77B0 end:0x800B7BD4 + .data start:0x802BBCF8 end:0x802BBE28 + .sdata start:0x803E5AD8 end:0x803E5B18 + .sdata2 start:0x803EEC38 end:0x803EEC70 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B7BD4 end:0x800B99BC + .data start:0x802BBE28 end:0x802BBF70 + .sdata start:0x803E5B18 end:0x803E5BB0 + .sdata2 start:0x803EEC70 end:0x803EECE0 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800B99BC end:0x800BA174 + .data start:0x802BBF70 end:0x802BC080 + .sdata start:0x803E5BB0 end:0x803E5BF8 + .sdata2 start:0x803EECE0 end:0x803EED18 + +plugPikiKando/aiEnter.cpp: + .text start:0x800BA174 end:0x800BAB08 + .data start:0x802BC080 end:0x802BC1A8 + .sdata start:0x803E5BF8 end:0x803E5C48 + .sdata2 start:0x803EED18 end:0x803EED70 + +plugPikiKando/aiEscape.cpp: + .text start:0x800BAB08 end:0x800BB048 + .data start:0x802BC1A8 end:0x802BC2E8 + .sdata start:0x803E5C48 end:0x803E5CA0 + .sdata2 start:0x803EED70 end:0x803EEDB0 + +plugPikiKando/aiExit.cpp: + .text start:0x800BB048 end:0x800BB5A0 + .data start:0x802BC2E8 end:0x802BC3B8 + .sdata start:0x803E5CA0 end:0x803E5D18 + .sdata2 start:0x803EEDB0 end:0x803EEDE8 + +plugPikiKando/aiMine.cpp: + .text start:0x800BB5A0 end:0x800BBC68 + .data start:0x802BC3B8 end:0x802BC510 + .sdata start:0x803E5D18 end:0x803E5D60 + .sdata2 start:0x803EEDE8 end:0x803EEDF8 + +plugPikiKando/aiFormation.cpp: + .text start:0x800BBC68 end:0x800BCA44 + .data start:0x802BC510 end:0x802BC648 + .sdata start:0x803E5D60 end:0x803E5DB8 + .sdata2 start:0x803EEDF8 end:0x803EEE60 + +plugPikiKando/aiFree.cpp: + .text start:0x800BCA44 end:0x800BD470 + .data start:0x802BC648 end:0x802BC770 + .sdata start:0x803E5DB8 end:0x803E5E10 + .sdata2 start:0x803EEE60 end:0x803EEE88 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BD470 end:0x800BDA3C + .data start:0x802BC770 end:0x802BC880 + .sdata start:0x803E5E10 end:0x803E5E58 + .sdata2 start:0x803EEE88 end:0x803EEEC0 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BDA3C end:0x800BF004 + .data start:0x802BC880 end:0x802BC958 + .sdata start:0x803E5E58 end:0x803E5EA8 + .sdata2 start:0x803EEEC0 end:0x803EEF08 + +plugPikiKando/aiPick.cpp: + .text start:0x800BF004 end:0x800BF86C + .data start:0x802BC958 end:0x802BCB68 + .sdata start:0x803E5EA8 end:0x803E5EF8 + .sdata2 start:0x803EEF08 end:0x803EEF18 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800BF86C end:0x800BFC48 + .data start:0x802BCB68 end:0x802BCD78 + .sdata start:0x803E5EF8 end:0x803E5F38 + +plugPikiKando/aiPullout.cpp: + .text start:0x800BFC48 end:0x800C05C8 + .data start:0x802BCD78 end:0x802BCF80 + .sdata start:0x803E5F38 end:0x803E5F98 + .sdata2 start:0x803EEF18 end:0x803EEF40 + +plugPikiKando/aiPush.cpp: + .text start:0x800C05C8 end:0x800C0FCC + .data start:0x802BCF80 end:0x802BD0F0 + .sdata start:0x803E5F98 end:0x803E5FD0 + .sdata2 start:0x803EEF40 end:0x803EEF70 + +plugPikiKando/aiPut.cpp: + .text start:0x800C0FCC end:0x800C2FC4 + .data start:0x802BD0F0 end:0x802BD2C8 + .sdata start:0x803E5FD0 end:0x803E6060 + .sdata2 start:0x803EEF70 end:0x803EEFB8 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C2FC4 end:0x800C389C + .data start:0x802BD2C8 end:0x802BD470 + .sdata start:0x803E6060 end:0x803E6108 + .sdata2 start:0x803EEFB8 end:0x803EEFF8 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C389C end:0x800C43D8 + .data start:0x802BD470 end:0x802BD590 + .sdata start:0x803E6108 end:0x803E6168 + .sdata2 start:0x803EEFF8 end:0x803EF038 + +plugPikiKando/aiRope.cpp: + .text start:0x800C43D8 end:0x800C4720 + .data start:0x802BD590 end:0x802BD660 + .sdata start:0x803E6168 end:0x803E61A8 + .sdata2 start:0x803EF038 end:0x803EF058 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C4720 end:0x800C5208 + .data start:0x802BD660 end:0x802BD848 + .sdata start:0x803E61A8 end:0x803E6200 + .sdata2 start:0x803EF058 end:0x803EF088 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C5208 end:0x800C565C + .data start:0x802BD848 end:0x802BD9C0 + .sdata start:0x803E6200 end:0x803E6258 + .sdata2 start:0x803EF088 end:0x803EF0B0 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C565C end:0x800C6098 + .data start:0x802BD9C0 end:0x802BDAC0 + .sdata start:0x803E6258 end:0x803E62C0 + .sdata2 start:0x803EF0B0 end:0x803EF100 + +plugPikiKando/aiAction.cpp: + .text start:0x800C6098 end:0x800C7C88 + .data start:0x802BDAC0 end:0x802BDE40 + .sdata start:0x803E62C0 end:0x803E6340 + .sdata2 start:0x803EF100 end:0x803EF108 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C7C88 end:0x800C8D88 + .ctors start:0x80227068 end:0x8022706C + .data start:0x802BDE40 end:0x802BE088 + .bss start:0x803D7730 end:0x803D7758 + .sdata start:0x803E6340 end:0x803E63D0 + .sdata2 start:0x803EF108 end:0x803EF118 + +plugPikiKando/piki.cpp: + .text start:0x800C8D88 end:0x800D01E0 + .ctors start:0x8022706C end:0x80227070 + .data start:0x802BE088 end:0x802BE758 + .bss start:0x803D7758 end:0x803D7788 + .sdata start:0x803E63D0 end:0x803E64E0 + .sbss start:0x803ED6F8 end:0x803ED700 + .sdata2 start:0x803EF118 end:0x803EF1A8 + +plugPikiKando/odoMeter.cpp: + .text start:0x800D01E0 end:0x800D032C + .sdata2 start:0x803EF1A8 end:0x803EF1C0 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800D032C end:0x800D06AC + .sdata2 start:0x803EF1C0 end:0x803EF1D0 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800D06AC end:0x800D1AC4 + .data start:0x802BE758 end:0x802BE9C8 + .sdata start:0x803E64E0 end:0x803E66A0 + .sbss start:0x803ED700 end:0x803ED708 + .sdata2 start:0x803EF1D0 end:0x803EF278 + +plugPikiKando/pikiState.cpp: + .text start:0x800D1AC4 end:0x800DB340 + .rodata start:0x802275B8 end:0x80227660 + .data start:0x802BE9C8 end:0x802C0060 + .sdata start:0x803E66A0 end:0x803E6AF0 + .sdata2 start:0x803EF278 end:0x803EF348 + +plugPikiKando/viewPiki.cpp: + .text start:0x800DB340 end:0x800DD7B8 + .rodata start:0x80227660 end:0x80227678 + .data start:0x802C0060 end:0x802C0308 + .bss start:0x803D7788 end:0x803D7798 + .sdata start:0x803E6AF0 end:0x803E6BF0 + .sdata2 start:0x803EF348 end:0x803EF3D0 + +plugPikiKando/conditions.cpp: + .text start:0x800DD7B8 end:0x800DD844 + .data start:0x802C0308 end:0x802C0388 + .sdata start:0x803E6BF0 end:0x803E6C10 + +plugPikiKando/generator.cpp: + .text start:0x800DD844 end:0x800E19A8 + .data start:0x802C0388 end:0x802C0978 + .sdata start:0x803E6C10 end:0x803E6D68 + .sbss start:0x803ED708 end:0x803ED730 + .sdata2 start:0x803EF3D0 end:0x803EF400 + +plugPikiKando/generatorCache.cpp: + .text start:0x800E19A8 end:0x800E309C + .data start:0x802C0978 end:0x802C0C50 + .sdata start:0x803E6D68 end:0x803E6DB0 + .sbss start:0x803ED730 end:0x803ED738 + .sdata2 start:0x803EF400 end:0x803EF410 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E309C end:0x800E5F0C + .data start:0x802C0C50 end:0x802C0FC8 + .sdata start:0x803E6DB0 end:0x803E6E08 + .sdata2 start:0x803EF410 end:0x803EF430 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E5F0C end:0x800E7290 + .data start:0x802C0FC8 end:0x802C1040 + .sdata start:0x803E6E08 end:0x803E6E18 + .sdata2 start:0x803EF430 end:0x803EF440 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E7290 end:0x800E72E8 + .data start:0x802C1040 end:0x802C1080 + .sdata start:0x803E6E18 end:0x803E6E20 + +plugPikiKando/itemGem.cpp: + .text start:0x800E72E8 end:0x800E75D4 + .data start:0x802C1080 end:0x802C1110 + .sdata2 start:0x803EF440 end:0x803EF470 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E75D4 end:0x800E8DE4 + .data start:0x802C1110 end:0x802C1838 + .sdata start:0x803E6E20 end:0x803E6ED8 + .sdata2 start:0x803EF470 end:0x803EF4D8 + +plugPikiKando/kusaItem.cpp: + .text start:0x800E8DE4 end:0x800E9674 + .data start:0x802C1838 end:0x802C1C40 + .sdata start:0x803E6ED8 end:0x803E6F50 + .sdata2 start:0x803EF4D8 end:0x803EF4F0 + +plugPikiKando/fishItem.cpp: + .text start:0x800E9674 end:0x800EA024 + .data start:0x802C1C40 end:0x802C1EB0 + .sdata start:0x803E6F50 end:0x803E6FE8 + .sdata2 start:0x803EF4F0 end:0x803EF520 + +plugPikiKando/ufoItem.cpp: + .text start:0x800EA024 end:0x800EC7B8 + .rodata start:0x80227678 end:0x80227720 + .data start:0x802C1EB0 end:0x802C2378 + .sdata start:0x803E6FE8 end:0x803E7130 + .sdata2 start:0x803EF520 end:0x803EF570 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800EC7B8 end:0x800ED19C + .data start:0x802C2378 end:0x802C24A8 + .sdata start:0x803E7130 end:0x803E7198 + .sdata2 start:0x803EF570 end:0x803EF588 + +plugPikiKando/bombItem.cpp: + .text start:0x800ED19C end:0x800ED720 + .data start:0x802C24A8 end:0x802C2728 + .sdata start:0x803E7198 end:0x803E71E0 + .sdata2 start:0x803EF588 end:0x803EF598 + +plugPikiKando/goalItem.cpp: + .text start:0x800ED720 end:0x800EF634 + .rodata start:0x80227720 end:0x80227748 + .data start:0x802C2728 end:0x802C2C28 + .sdata start:0x803E71E0 end:0x803E7290 + .sbss start:0x803ED738 end:0x803ED740 + .sdata2 start:0x803EF598 end:0x803EF5F8 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800EF634 end:0x800F0430 + .data start:0x802C2C28 end:0x802C2FD8 + .sdata start:0x803E7290 end:0x803E7318 + .sdata2 start:0x803EF5F8 end:0x803EF638 + +plugPikiKando/keyItem.cpp: + .text start:0x800F0430 end:0x800F0C08 + .data start:0x802C2FD8 end:0x802C3370 + .sdata start:0x803E7318 end:0x803E7378 + .sdata2 start:0x803EF638 end:0x803EF688 + +plugPikiKando/ropeItem.cpp: + .text start:0x800F0C08 end:0x800F0FFC + .data start:0x802C3370 end:0x802C3538 + .sdata start:0x803E7378 end:0x803E73A0 + .sdata2 start:0x803EF688 end:0x803EF698 + +plugPikiKando/seedItem.cpp: + .text start:0x800F0FFC end:0x800F154C + .data start:0x802C3538 end:0x802C36D0 + .sdata start:0x803E73A0 end:0x803E73C8 + .sdata2 start:0x803EF698 end:0x803EF6F0 + +plugPikiKando/genItem.cpp: + .text start:0x800F154C end:0x800F1F14 + .data start:0x802C36D0 end:0x802C3838 + .sdata start:0x803E73C8 end:0x803E7410 + .sdata2 start:0x803EF6F0 end:0x803EF708 + +plugPikiKando/itemAI.cpp: + .text start:0x800F1F14 end:0x800F5D08 + .rodata start:0x80227748 end:0x80227760 + .data start:0x802C3838 end:0x802C4488 + .sdata start:0x803E7410 end:0x803E7668 + .sdata2 start:0x803EF708 end:0x803EF768 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F5D08 end:0x800FADAC + .data start:0x802C4488 end:0x802C5168 + .sdata start:0x803E7668 end:0x803E7800 + .sbss start:0x803ED740 end:0x803ED748 + .sdata2 start:0x803EF768 end:0x803EF7B0 + +plugPikiKando/itemObject.cpp: + .text start:0x800FADAC end:0x800FB104 + .data start:0x802C5168 end:0x802C5C10 + .sdata start:0x803E7800 end:0x803E7868 + +plugPikiKando/mizuItem.cpp: + .text start:0x800FB104 end:0x800FB2E0 + .data start:0x802C5C10 end:0x802C5E88 + .sdata start:0x803E7868 end:0x803E78A0 + .sdata2 start:0x803EF7B0 end:0x803EF7B8 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800FB2E0 end:0x800FB584 + .data start:0x802C5E88 end:0x802C5F60 + .sdata start:0x803E78A0 end:0x803E78F8 + +plugPikiKando/genNavi.cpp: + .text start:0x800FB584 end:0x800FB73C + .data start:0x802C5F60 end:0x802C6040 + .sdata start:0x803E78F8 end:0x803E7920 + +plugPikiKando/navi.cpp: + .text start:0x800FB73C end:0x801046EC + .data start:0x802C6040 end:0x802C66A0 + .sdata start:0x803E7920 end:0x803E7C20 + .sbss start:0x803ED748 end:0x803ED758 + .sdata2 start:0x803EF7B8 end:0x803EF8F8 + +plugPikiKando/naviState.cpp: + .text start:0x801046EC end:0x8010E68C + .rodata start:0x80227760 end:0x80227780 + .data start:0x802C66A0 end:0x802C7AC8 + .sdata start:0x803E7C20 end:0x803E8018 + .sdata2 start:0x803EF8F8 end:0x803EF9D8 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010E68C end:0x801104D0 + .data start:0x802C7AC8 end:0x802C81B0 + .sdata start:0x803E8018 end:0x803E80C8 + .sdata2 start:0x803EF9D8 end:0x803EFA30 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x801104D0 end:0x80115440 + .data start:0x802C81B0 end:0x802C8520 + .sdata start:0x803E80C8 end:0x803E81D8 + .sbss start:0x803ED758 end:0x803ED788 + .sdata2 start:0x803EFA30 end:0x803EFA58 + +plugPikiKando/gmWin.cpp: + .text start:0x80115440 end:0x80115AE4 + .sbss start:0x803ED788 end:0x803ED790 + +plugPikiKando/gameStat.cpp: + .text start:0x80115AE4 end:0x80115CF0 + .ctors start:0x80227070 end:0x80227074 + .bss start:0x803D7798 end:0x803D7820 + .sbss start:0x803ED790 end:0x803ED7A8 + +plugPikiKando/kmath.cpp: + .text start:0x80115CF0 end:0x80116734 + .sdata start:0x803E81D8 end:0x803E81E0 + .sdata2 start:0x803EFA58 end:0x803EFAB0 + +plugPikiKando/uteffect.cpp: + .text start:0x80116734 end:0x801192B0 + .data start:0x802C8520 end:0x802C8DD8 + .sdata start:0x803E81E0 end:0x803E82F8 + .sbss start:0x803ED7A8 end:0x803ED7B0 + .sdata2 start:0x803EFAB0 end:0x803EFAE0 + +plugPikiKando/kontroller.cpp: + .text start:0x801192B0 end:0x801197A4 + .data start:0x802C8DD8 end:0x802C8EC8 + .sdata start:0x803E82F8 end:0x803E8330 + .sbss start:0x803ED7B0 end:0x803ED7B8 + +plugPikiKando/mapcode.cpp: + .text start:0x801197A4 end:0x80119834 + .sdata2 start:0x803EFAE0 end:0x803EFAE8 + +plugPikiKando/utkando.cpp: + .text start:0x80119834 end:0x8011A9B0 + .data start:0x802C8EC8 end:0x802C8EE0 + .sdata start:0x803E8330 end:0x803E8350 + .sdata2 start:0x803EFAE8 end:0x803EFB08 + +plugPikiKando/naviMgr.cpp: + .text start:0x8011A9B0 end:0x8011B048 + .data start:0x802C8EE0 end:0x802C90D0 + .sdata start:0x803E8350 end:0x803E83A8 + .sbss start:0x803ED7B8 end:0x803ED7C0 + +plugPikiKando/genMapParts.cpp: + .text start:0x8011B048 end:0x8011BD3C + .data start:0x802C90D0 end:0x802C9248 + .sdata start:0x803E83A8 end:0x803E8488 + .sbss start:0x803ED7C0 end:0x803ED7C8 + .sdata2 start:0x803EFB08 end:0x803EFB18 + +plugPikiKando/mapParts.cpp: + .text start:0x8011BD3C end:0x8011C598 + .data start:0x802C9248 end:0x802C9558 + .sdata start:0x803E8488 end:0x803E8510 + .sdata2 start:0x803EFB18 end:0x803EFB28 + +plugPikiKando/panipikianimator.cpp: + .text start:0x8011C598 end:0x8011D2A4 + .data start:0x802C9558 end:0x802C9830 + .sdata start:0x803E8510 end:0x803E8758 + +plugPikiKando/actor.cpp: + .text start:0x8011D2A4 end:0x8011D348 + +plugPikiKando/actorMgr.cpp: + .text start:0x8011D348 end:0x8011D3C4 + .sbss start:0x803ED7C8 end:0x803ED7D0 + +plugPikiKando/genActor.cpp: + .text start:0x8011D3C4 end:0x8011D578 + .data start:0x802C9830 end:0x802C9918 + .sdata start:0x803E8758 end:0x803E8780 + +plugPikiKando/pikiInfo.cpp: + .text start:0x8011D578 end:0x8011D5D0 + .sbss start:0x803ED7D0 end:0x803ED7D8 + +plugPikiKando/plantMgr.cpp: + .text start:0x8011D5D0 end:0x8011E9DC + .data start:0x802C9918 end:0x802CA040 + .sdata start:0x803E8780 end:0x803E88E8 + .sbss start:0x803ED7D8 end:0x803ED7E0 + .sdata2 start:0x803EFB28 end:0x803EFB60 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x8011E9DC end:0x8011EB60 + .data start:0x802CA040 end:0x802CA0F8 + .sdata start:0x803E88E8 end:0x803E8920 + +plugPikiNakata/genteki.cpp: + .text start:0x8011EB60 end:0x8011F018 + .data start:0x802CA0F8 end:0x802CA208 + .sdata start:0x803E8920 end:0x803E8948 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8011F018 end:0x8011F050 + .sbss start:0x803ED7E0 end:0x803ED7E8 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x8011F050 end:0x8011F5EC + .data start:0x802CA208 end:0x802CA318 + .sdata start:0x803E8948 end:0x803E8970 + .sdata2 start:0x803EFB60 end:0x803EFB70 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x8011F5EC end:0x80120D68 + .data start:0x802CA318 end:0x802CA408 + .sdata start:0x803E8970 end:0x803E89C0 + .sdata2 start:0x803EFB70 end:0x803EFB98 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x80120D68 end:0x801212C8 + .data start:0x802CA408 end:0x802CA428 + .sdata start:0x803E89C0 end:0x803E89E0 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x801212C8 end:0x801214B4 + .sdata start:0x803E89E0 end:0x803E89F8 + .sdata2 start:0x803EFB98 end:0x803EFBA0 + +plugPikiNakata/nlibmath.cpp: + .text start:0x801214B4 end:0x801217CC + .data start:0x802CA428 end:0x802CAC48 + .sdata start:0x803E89F8 end:0x803E8A08 + .sdata2 start:0x803EFBA0 end:0x803EFBC0 + +plugPikiNakata/nlibspline.cpp: + .text start:0x801217CC end:0x80121A64 + +plugPikiNakata/nlibsystem.cpp: + .text start:0x80121A64 end:0x801228C4 + .data start:0x802CAC48 end:0x802CAD38 + .sdata start:0x803E8A08 end:0x803E8A38 + .sbss start:0x803ED7E8 end:0x803ED7F0 + .sdata2 start:0x803EFBC0 end:0x803EFBD0 + +plugPikiNakata/panianimator.cpp: + .text start:0x801228C4 end:0x801232D8 + .data start:0x802CAD38 end:0x802CAE80 + .sdata start:0x803E8A38 end:0x803E8A48 + .sdata2 start:0x803EFBD0 end:0x803EFBE0 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x801232D8 end:0x8012368C + .sbss start:0x803ED7F0 end:0x803ED7F8 + .sdata2 start:0x803EFBE0 end:0x803EFBE8 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x8012368C end:0x80123930 + .data start:0x802CAE80 end:0x802CAF78 + .sdata start:0x803E8A48 end:0x803E8AC8 + +plugPikiNakata/panitestsection.cpp: + .text start:0x80123930 end:0x80124FDC + .data start:0x802CAF78 end:0x802CB1A8 + .sdata start:0x803E8AC8 end:0x803E8B90 + .sdata2 start:0x803EFBE8 end:0x803EFC18 + +plugPikiNakata/paraparameters.cpp: + .text start:0x80124FDC end:0x801255F0 + .data start:0x802CB1A8 end:0x802CB2A8 + .sdata start:0x803E8B90 end:0x803E8BB8 + .sdata2 start:0x803EFC18 end:0x803EFC20 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x801255F0 end:0x8012768C + .data start:0x802CB2A8 end:0x802CB378 + .sdata start:0x803E8BB8 end:0x803E8BE0 + .sdata2 start:0x803EFC20 end:0x803EFC60 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x8012768C end:0x80127BE0 + .data start:0x802CB378 end:0x802CB450 + .sdata start:0x803E8BE0 end:0x803E8C10 + .sdata2 start:0x803EFC60 end:0x803EFC80 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x80127BE0 end:0x801283FC + .data start:0x802CB450 end:0x802CB708 + .sdata start:0x803E8C10 end:0x803E8C60 + .sdata2 start:0x803EFC80 end:0x803EFCB0 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x801283FC end:0x80128F78 + .data start:0x802CB708 end:0x802CBCB0 + .sdata start:0x803E8C60 end:0x803E8C98 + .sdata2 start:0x803EFCB0 end:0x803EFD48 + +plugPikiNakata/peve.cpp: + .text start:0x80128F78 end:0x801296A0 + .data start:0x802CBCB0 end:0x802CBF68 + .sdata start:0x803E8C98 end:0x803E8D08 + .sdata2 start:0x803EFD48 end:0x803EFD60 + +plugPikiNakata/peveconditions.cpp: + .text start:0x801296A0 end:0x8012993C + .data start:0x802CBF68 end:0x802CC0C8 + .sdata start:0x803E8D08 end:0x803E8D38 + .sdata2 start:0x803EFD60 end:0x803EFD68 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x8012993C end:0x8012A83C + .data start:0x802CC0C8 end:0x802CC698 + .sdata start:0x803E8D38 end:0x803E8DC0 + .sdata2 start:0x803EFD68 end:0x803EFD70 + +plugPikiNakata/tai.cpp: + .text start:0x8012A83C end:0x8012B03C + .data start:0x802CC698 end:0x802CC770 + .sdata start:0x803E8DC0 end:0x803E8DE8 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x8012B03C end:0x8012BDE0 + .data start:0x802CC770 end:0x802CCAF0 + .sdata start:0x803E8DE8 end:0x803E8E60 + .sdata2 start:0x803EFD70 end:0x803EFD80 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x8012BDE0 end:0x8012BF58 + .data start:0x802CCAF0 end:0x802CCCA0 + .sdata start:0x803E8E60 end:0x803E8E98 + +plugPikiNakata/taichappy.cpp: + .text start:0x8012BF58 end:0x8012E4F8 + .data start:0x802CCCA0 end:0x802CD190 + .sdata start:0x803E8E98 end:0x803E8F58 + .sdata2 start:0x803EFD80 end:0x803EFE00 + +plugPikiNakata/taicollec.cpp: + .text start:0x8012E4F8 end:0x80131EC4 + .data start:0x802CD190 end:0x802CDD80 + .sdata start:0x803E8F58 end:0x803E9100 + .sdata2 start:0x803EFE00 end:0x803EFE70 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x80131EC4 end:0x80131FE0 + .data start:0x802CDD80 end:0x802CDF98 + .sdata start:0x803E9100 end:0x803E9140 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x80131FE0 end:0x80132100 + .data start:0x802CDF98 end:0x802CE128 + .sdata start:0x803E9140 end:0x803E9170 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x80132100 end:0x80132FB4 + .data start:0x802CE128 end:0x802CE450 + .sdata start:0x803E9170 end:0x803E9228 + .sdata2 start:0x803EFE70 end:0x803EFEA8 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x80132FB4 end:0x80133680 + .data start:0x802CE450 end:0x802CE798 + .sdata start:0x803E9228 end:0x803E9290 + .sdata2 start:0x803EFEA8 end:0x803EFEB0 + +plugPikiNakata/taikinoko.cpp: + .text start:0x80133680 end:0x801359E0 + .data start:0x802CE798 end:0x802CECF0 + .sdata start:0x803E9290 end:0x803E9358 + .sdata2 start:0x803EFEB0 end:0x803EFF48 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x801359E0 end:0x80135A4C + .data start:0x802CECF0 end:0x802CEDA8 + .sdata start:0x803E9358 end:0x803E9370 + +plugPikiNakata/taimizinko.cpp: + .text start:0x80135A4C end:0x80137B00 + .data start:0x802CEDA8 end:0x802CF3E0 + .sdata start:0x803E9370 end:0x803E9470 + .sdata2 start:0x803EFF48 end:0x803EFFA0 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80137B00 end:0x80138048 + .data start:0x802CF3E0 end:0x802CF700 + .sdata start:0x803E9470 end:0x803E94E8 + .sdata2 start:0x803EFFA0 end:0x803EFFB0 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x80138048 end:0x80139708 + .data start:0x802CF700 end:0x802D0070 + .sdata start:0x803E94E8 end:0x803E9620 + .sdata2 start:0x803EFFB0 end:0x803EFFC8 + +plugPikiNakata/tainapkid.cpp: + .text start:0x80139708 end:0x8013DFE8 + .data start:0x802D0070 end:0x802D0B58 + .sdata start:0x803E9620 end:0x803E9780 + .sdata2 start:0x803EFFC8 end:0x803F0080 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x8013DFE8 end:0x8014159C + .data start:0x802D0B58 end:0x802D12E8 + .sdata start:0x803E9780 end:0x803E9898 + .sdata2 start:0x803F0080 end:0x803F0138 + +plugPikiNakata/taipalm.cpp: + .text start:0x8014159C end:0x801426C0 + .data start:0x802D12E8 end:0x802D1818 + .sdata start:0x803E9898 end:0x803E9970 + .sdata2 start:0x803F0138 end:0x803F0180 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x801426C0 end:0x80142DEC + .data start:0x802D1818 end:0x802D1E98 + .sdata start:0x803E9970 end:0x803E9A48 + .sdata2 start:0x803F0180 end:0x803F0190 + +plugPikiNakata/taiswallow.cpp: + .text start:0x80142DEC end:0x80145AB8 + .data start:0x802D1E98 end:0x802D2538 + .sdata start:0x803E9A48 end:0x803E9B28 + .sdata2 start:0x803F0190 end:0x803F0220 + +plugPikiNakata/taishell.cpp: + .text start:0x80145AB8 end:0x801471B8 + .data start:0x802D2538 end:0x802D2A68 + .sdata start:0x803E9B28 end:0x803E9BE0 + .sdata2 start:0x803F0220 end:0x803F0268 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x801471B8 end:0x80147584 + .data start:0x802D2A68 end:0x802D2B98 + .sdata start:0x803E9BE0 end:0x803E9C08 + .sdata2 start:0x803F0268 end:0x803F0288 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x80147584 end:0x801476D8 + .data start:0x802D2B98 end:0x802D2C30 + .sdata start:0x803E9C08 end:0x803E9C20 + .sdata2 start:0x803F0288 end:0x803F02A8 + +plugPikiNakata/teki.cpp: + .text start:0x801476D8 end:0x80147930 + .data start:0x802D2C30 end:0x802D2F88 + .sdata start:0x803E9C20 end:0x803E9C88 + .sdata2 start:0x803F02A8 end:0x803F02B0 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80147930 end:0x80147A44 + .data start:0x802D2F88 end:0x802D3068 + .sdata start:0x803E9C88 end:0x803E9CB8 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80147A44 end:0x8014D75C + .data start:0x802D3068 end:0x802D34E8 + .sdata start:0x803E9CB8 end:0x803E9E00 + .sdata2 start:0x803F02B0 end:0x803F02F8 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x8014D75C end:0x8014DF34 + .data start:0x802D34E8 end:0x802D3AA0 + .sdata start:0x803E9E00 end:0x803E9EC0 + .sdata2 start:0x803F02F8 end:0x803F0300 + +plugPikiNakata/tekievent.cpp: + .text start:0x8014DF34 end:0x8014DFA8 + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x8014DFA8 end:0x8014E128 + .data start:0x802D3AA0 end:0x802D3B90 + .sdata start:0x803E9EC0 end:0x803E9ED8 + +plugPikiNakata/tekimgr.cpp: + .text start:0x8014E128 end:0x8014ECC0 + .data start:0x802D3B90 end:0x802D3E98 + .sdata start:0x803E9ED8 end:0x803EA038 + .sbss start:0x803ED7F8 end:0x803ED800 + +plugPikiNakata/tekinakata.cpp: + .text start:0x8014ECC0 end:0x8014F594 + +plugPikiNakata/tekinteki.cpp: + .text start:0x8014F594 end:0x8014F8E4 + .data start:0x802D3E98 end:0x802D4180 + .sdata start:0x803EA038 end:0x803EA080 + .sdata2 start:0x803F0300 end:0x803F0308 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x8014F8E4 end:0x801505FC + .data start:0x802D4180 end:0x802D4730 + .sdata start:0x803EA080 end:0x803EA0D0 + .sdata2 start:0x803F0308 end:0x803F0348 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x801505FC end:0x80150DF0 + .data start:0x802D4730 end:0x802D4850 + .sdata start:0x803EA0D0 end:0x803EA0F8 + .sdata2 start:0x803F0348 end:0x803F0360 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x80150DF0 end:0x80150F1C + .data start:0x802D4850 end:0x802D48B0 + .sdata start:0x803EA0F8 end:0x803EA100 + +plugPikiNishimura/genBoss.cpp: + .text start:0x80150F1C end:0x80151518 + .data start:0x802D48B0 end:0x802D4980 + .sdata start:0x803EA100 end:0x803EA128 + +plugPikiNishimura/Boss.cpp: + .text start:0x80151518 end:0x801536B4 + .data start:0x802D4980 end:0x802D4C20 + .sdata start:0x803EA128 end:0x803EA208 + .sdata2 start:0x803F0360 end:0x803F03C0 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x801536B4 end:0x80153748 + .data start:0x802D4C20 end:0x802D4CE8 + .sdata start:0x803EA208 end:0x803EA238 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x80153748 end:0x801539D4 + .data start:0x802D4CE8 end:0x802D4DD0 + .sdata start:0x803EA238 end:0x803EA268 + .sdata2 start:0x803F03C0 end:0x803F03D8 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x801539D4 end:0x801562D0 + .data start:0x802D4DD0 end:0x802D52F8 + .sdata start:0x803EA268 end:0x803EA308 + .sbss start:0x803ED800 end:0x803ED808 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x801562D0 end:0x801563E0 + .data start:0x802D52F8 end:0x802D5310 + .sdata2 start:0x803F03D8 end:0x803F03E0 + +plugPikiNishimura/Spider.cpp: + .text start:0x801563E0 end:0x80157488 + .data start:0x802D5310 end:0x802D5638 + .sdata start:0x803EA308 end:0x803EA468 + .sdata2 start:0x803F03E0 end:0x803F0480 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80157488 end:0x80159528 + .data start:0x802D5638 end:0x802D56C8 + .sdata start:0x803EA468 end:0x803EA478 + .sdata2 start:0x803F0480 end:0x803F04D0 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x80159528 end:0x8015DDE4 + .rodata start:0x80227780 end:0x802277D0 + .data start:0x802D56C8 end:0x802D5840 + .sdata start:0x803EA478 end:0x803EA4F0 + .sbss start:0x803ED808 end:0x803ED810 + .sdata2 start:0x803F04D0 end:0x803F0558 + +plugPikiNishimura/Snake.cpp: + .text start:0x8015DDE4 end:0x8015ED10 + .data start:0x802D5840 end:0x802D5B50 + .sdata start:0x803EA4F0 end:0x803EA630 + .sdata2 start:0x803F0558 end:0x803F05D0 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x8015ED10 end:0x801637C8 + .rodata start:0x802277D0 end:0x802277E8 + .data start:0x802D5B50 end:0x802D5C18 + .sdata start:0x803EA630 end:0x803EA660 + .sdata2 start:0x803F05D0 end:0x803F0610 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x801637C8 end:0x80167234 + .rodata start:0x802277E8 end:0x80227828 + .data start:0x802D5C18 end:0x802D5CD8 + .sdata start:0x803EA660 end:0x803EA6B8 + .sdata2 start:0x803F0610 end:0x803F0648 + +plugPikiNishimura/Slime.cpp: + .text start:0x80167234 end:0x801686A0 + .data start:0x802D5CD8 end:0x802D6090 + .sdata start:0x803EA6B8 end:0x803EA7D0 + .sdata2 start:0x803F0648 end:0x803F06B8 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x801686A0 end:0x8016E0A8 + .data start:0x802D6090 end:0x802D60B8 + .sdata start:0x803EA7D0 end:0x803EA820 + .sdata2 start:0x803F06B8 end:0x803F0738 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x8016E0A8 end:0x8016ECF0 + .sdata start:0x803EA820 end:0x803EA840 + .sdata2 start:0x803F0738 end:0x803F0758 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x8016ECF0 end:0x8016EF1C + .data start:0x802D60B8 end:0x802D6248 + .sdata start:0x803EA840 end:0x803EA860 + .sdata2 start:0x803F0758 end:0x803F0768 + +plugPikiNishimura/King.cpp: + .text start:0x8016EF1C end:0x8016FD28 + .data start:0x802D6248 end:0x802D6570 + .sdata start:0x803EA860 end:0x803EA998 + .sdata2 start:0x803F0768 end:0x803F07D0 + +plugPikiNishimura/KingAi.cpp: + .text start:0x8016FD28 end:0x801767F4 + .data start:0x802D6570 end:0x802D66C8 + .sdata start:0x803EA998 end:0x803EA9C0 + .sdata2 start:0x803F07D0 end:0x803F0838 + +plugPikiNishimura/KingBody.cpp: + .text start:0x801767F4 end:0x80179494 + .data start:0x802D66C8 end:0x802D68A8 + .sdata start:0x803EA9C0 end:0x803EAAF0 + .sdata2 start:0x803F0838 end:0x803F0880 + +plugPikiNishimura/Kogane.cpp: + .text start:0x80179494 end:0x80179B68 + .data start:0x802D68A8 end:0x802D6B38 + .sdata start:0x803EAAF0 end:0x803EABA0 + .sdata2 start:0x803F0880 end:0x803F08C0 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x80179B68 end:0x8017B844 + .rodata start:0x80227828 end:0x80227838 + .data start:0x802D6B38 end:0x802D6C10 + .sdata start:0x803EABA0 end:0x803EAC50 + .sdata2 start:0x803F08C0 end:0x803F0910 + +plugPikiNishimura/Pom.cpp: + .text start:0x8017B844 end:0x8017BFBC + .data start:0x802D6C10 end:0x802D6EB0 + .sdata start:0x803EAC50 end:0x803EACF8 + .sdata2 start:0x803F0910 end:0x803F0948 + +plugPikiNishimura/PomAi.cpp: + .text start:0x8017BFBC end:0x8017D86C + .data start:0x802D6EB0 end:0x802D6FB0 + .sdata start:0x803EACF8 end:0x803EAD28 + .sdata2 start:0x803F0948 end:0x803F0998 + +plugPikiNishimura/KingBack.cpp: + .text start:0x8017D86C end:0x8017DC10 + .data start:0x802D6FB0 end:0x802D7218 + .sdata start:0x803EAD28 end:0x803EAD88 + .sdata2 start:0x803F0998 end:0x803F09A8 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x8017DC10 end:0x8017DFA8 + .data start:0x802D7218 end:0x802D7470 + .sdata start:0x803EAD88 end:0x803EAE00 + .sdata2 start:0x803F09A8 end:0x803F09C0 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x8017DFA8 end:0x8017E3B8 + .data start:0x802D7470 end:0x802D74C8 + .sdata start:0x803EAE00 end:0x803EAE10 + .sdata2 start:0x803F09C0 end:0x803F09C8 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x8017E3B8 end:0x8017E7A8 + .data start:0x802D74C8 end:0x802D7730 + .sdata start:0x803EAE10 end:0x803EAE80 + .sdata2 start:0x803F09C8 end:0x803F09E0 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x8017E7A8 end:0x8017EE38 + .data start:0x802D7730 end:0x802D7790 + .sdata start:0x803EAE80 end:0x803EAE98 + .sdata2 start:0x803F09E0 end:0x803F09E8 + +plugPikiNishimura/Mizu.cpp: + .text start:0x8017EE38 end:0x8017F2BC + .data start:0x802D7790 end:0x802D79E8 + .sdata start:0x803EAE98 end:0x803EAF00 + .sdata2 start:0x803F09E8 end:0x803F0A00 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x8017F2BC end:0x8017FCE0 + .data start:0x802D79E8 end:0x802D7AD0 + .sdata start:0x803EAF00 end:0x803EAF38 + .sdata2 start:0x803F0A00 end:0x803F0A18 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802D7AD0 end:0x802D8600 + .sdata start:0x803EAF38 end:0x803EAF88 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x8017FCE0 end:0x80180280 + .sdata2 start:0x803F0A18 end:0x803F0A40 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x80180280 end:0x80181098 + .sbss start:0x803ED810 end:0x803ED818 + .sdata2 start:0x803F0A40 end:0x803F0A50 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x80181098 end:0x8018115C + .sdata2 start:0x803F0A50 end:0x803F0A58 + +plugPikiOgawa/ogTest.cpp: + .text start:0x8018115C end:0x80182228 + .data start:0x802D8600 end:0x802D88E8 + .sdata start:0x803EAF88 end:0x803EB000 + .sdata2 start:0x803F0A58 end:0x803F0A70 + +plugPikiOgawa/ogSub.cpp: + .text start:0x80182228 end:0x801849BC + .data start:0x802D88E8 end:0x802D91A8 + .bss start:0x803D7820 end:0x803D7C20 + .sdata start:0x803EB000 end:0x803EB0B0 + .sdata2 start:0x803F0A70 end:0x803F0AB0 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x801849BC end:0x80185C34 + .data start:0x802D91A8 end:0x802D9258 + .sdata start:0x803EB0B0 end:0x803EB0B8 + .sdata2 start:0x803F0AB0 end:0x803F0AC0 + +plugPikiOgawa/ogPause.cpp: + .text start:0x80185C34 end:0x801864B0 + .data start:0x802D9258 end:0x802D92C0 + .sdata2 start:0x803F0AC0 end:0x803F0AD8 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x801864B0 end:0x801866F8 + .data start:0x802D92C0 end:0x802D92D8 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802D92D8 end:0x802DA1F0 + .sdata start:0x803EB0B8 end:0x803EB378 + +plugPikiOgawa/ogMap.cpp: + .text start:0x801866F8 end:0x80186D20 + .data start:0x802DA1F0 end:0x802DA220 + .sdata2 start:0x803F0AD8 end:0x803F0AF8 + +plugPikiOgawa/ogResult.cpp: + .text start:0x80186D20 end:0x80188998 + .data start:0x802DA220 end:0x802DB250 + .sdata start:0x803EB378 end:0x803EB380 + .sdata2 start:0x803F0AF8 end:0x803F0B28 + +plugPikiOgawa/ogRader.cpp: + .text start:0x80188998 end:0x8018B030 + .data start:0x802DB250 end:0x802DB320 + .sdata start:0x803EB380 end:0x803EB3B0 + .sdata2 start:0x803F0B28 end:0x803F0BA8 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x8018B030 end:0x8018F3F0 + .data start:0x802DB320 end:0x802DB470 + .sdata start:0x803EB3B0 end:0x803EB3F8 + .sdata2 start:0x803F0BA8 end:0x803F0C00 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x8018F3F0 end:0x80190520 + .data start:0x802DB470 end:0x802DB480 + .sdata start:0x803EB3F8 end:0x803EB408 + .sdata2 start:0x803F0C00 end:0x803F0C40 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x80190520 end:0x80192270 + .data start:0x802DB480 end:0x802DB5A0 + .sdata start:0x803EB408 end:0x803EB418 + .sdata2 start:0x803F0C40 end:0x803F0C68 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x80192270 end:0x80194308 + .data start:0x802DB5A0 end:0x802DB620 + .bss start:0x803D7C20 end:0x803D7C48 + .sdata start:0x803EB418 end:0x803EB458 + .sdata2 start:0x803F0C68 end:0x803F0CB8 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x80194308 end:0x80196600 + .data start:0x802DB620 end:0x802DB7C8 + .sdata start:0x803EB458 end:0x803EB488 + .sdata2 start:0x803F0CB8 end:0x803F0D28 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x80196600 end:0x80196A08 + .data start:0x802DB7C8 end:0x802DB7E0 + .sdata2 start:0x803F0D28 end:0x803F0D38 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x80196A08 end:0x8019723C + .data start:0x802DB7E0 end:0x802DB810 + .sdata2 start:0x803F0D38 end:0x803F0D58 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x8019723C end:0x80198778 + .data start:0x802DB810 end:0x802DB828 + .sdata start:0x803EB488 end:0x803EB4A8 + .sdata2 start:0x803F0D58 end:0x803F0D78 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80198778 end:0x80199894 + .data start:0x802DB828 end:0x802DB8C0 + .sdata2 start:0x803F0D78 end:0x803F0D98 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x80199894 end:0x8019A1C4 + .sdata2 start:0x803F0D98 end:0x803F0DB8 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x8019A1C4 end:0x8019AB0C + .sdata start:0x803EB4A8 end:0x803EB4C0 + .sdata2 start:0x803F0DB8 end:0x803F0DF8 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x8019AB0C end:0x8019AE40 + .sdata start:0x803EB4C0 end:0x803EB4D0 + .sdata2 start:0x803F0DF8 end:0x803F0E20 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x8019AE40 end:0x8019B8A0 + .data start:0x802DB8C0 end:0x802DB9D0 + .sdata2 start:0x803F0E20 end:0x803F0E30 + +plugPikiOgawa/ogStart.cpp: + .text start:0x8019B8A0 end:0x8019BC44 + .data start:0x802DB9D0 end:0x802DB9E8 + .sdata2 start:0x803F0E30 end:0x803F0E50 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x8019BC44 end:0x8019C32C + .data start:0x802DB9E8 end:0x802DBAC0 + .sdata start:0x803EB4D0 end:0x803EB4F0 + .sdata2 start:0x803F0E50 end:0x803F0E68 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x8019C32C end:0x8019E8D0 + .data start:0x802DBAC0 end:0x802DC218 + .sdata start:0x803EB4F0 end:0x803EB620 + .sdata2 start:0x803F0E68 end:0x803F0E98 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x8019E8D0 end:0x8019E954 + .data start:0x802DC218 end:0x802DC350 + .sdata start:0x803EB620 end:0x803EB668 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x8019E954 end:0x8019E9EC + .data start:0x802DC350 end:0x802DC480 + .sdata start:0x803EB668 end:0x803EB6B0 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019E9EC end:0x8019ED2C + .sdata start:0x803EB6B0 end:0x803EB6C8 + .sdata2 start:0x803F0E98 end:0x803F0EB0 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x8019ED2C end:0x8019FEC8 + .data start:0x802DC480 end:0x802DFE40 + .sdata start:0x803EB6C8 end:0x803EB760 + .sbss start:0x803ED818 end:0x803ED820 + .sdata2 start:0x803F0EB0 end:0x803F0ED0 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x8019FEC8 end:0x801A418C + .data start:0x802DFE40 end:0x802DFF58 + .sdata start:0x803EB760 end:0x803EB780 + .sdata2 start:0x803F0ED0 end:0x803F0F20 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x801A418C end:0x801A441C + .data start:0x802DFF58 end:0x802DFFE0 + .sdata start:0x803EB780 end:0x803EB790 + +plugPikiYamashita/solidField.cpp: + .data start:0x802DFFE0 end:0x802E2FF8 + +plugPikiYamashita/particleManager.cpp: + .text start:0x801A441C end:0x801A4BC8 + .data start:0x802E2FF8 end:0x802E30F8 + .sdata start:0x803EB790 end:0x803EB7A0 + .sdata2 start:0x803F0F20 end:0x803F0F28 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x801A4BC8 end:0x801A5204 + .data start:0x802E30F8 end:0x802E31F0 + .sdata start:0x803EB7A0 end:0x803EB7F0 + .sdata2 start:0x803F0F28 end:0x803F0F30 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A5204 end:0x801A5660 + .sdata2 start:0x803F0F30 end:0x803F0F48 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A5660 end:0x801A5B48 + .sdata2 start:0x803F0F48 end:0x803F0F70 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A5B48 end:0x801A64EC + .data start:0x802E31F0 end:0x802E35C8 + .sdata start:0x803EB7F0 end:0x803EB888 + .sdata2 start:0x803F0F70 end:0x803F0F98 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A64EC end:0x801A6988 + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A6988 end:0x801A6A7C + .data start:0x802E35C8 end:0x802E35F0 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A6A7C end:0x801A8C20 + .ctors start:0x80227074 end:0x80227078 + .data start:0x802E35F0 end:0x802E3E60 + .sdata start:0x803EB888 end:0x803EB9E0 + .sbss start:0x803ED820 end:0x803ED828 + .sdata2 start:0x803F0F98 end:0x803F1020 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801A8C20 end:0x801ABA04 + .ctors start:0x80227078 end:0x8022707C + .data start:0x802E3E60 end:0x802E4AF0 + .sdata start:0x803EB9E0 end:0x803EBB88 + .sbss start:0x803ED828 end:0x803ED838 + .sdata2 start:0x803F1020 end:0x803F10C8 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801ABA04 end:0x801AC1A0 + .data start:0x802E4AF0 end:0x802E4D68 + .sdata start:0x803EBB88 end:0x803EBBE8 + .sdata2 start:0x803F10C8 end:0x803F10D8 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801AC1A0 end:0x801B029C + .data start:0x802E4D68 end:0x802E5650 + .sdata start:0x803EBBE8 end:0x803EBD88 + .sdata2 start:0x803F10D8 end:0x803F1150 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801B029C end:0x801B06DC + .data start:0x802E5650 end:0x802E5740 + .sdata start:0x803EBD88 end:0x803EBDA8 + .sdata2 start:0x803F1150 end:0x803F1160 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801B06DC end:0x801B17E4 + .data start:0x802E5740 end:0x802E5C08 + .sdata start:0x803EBDA8 end:0x803EBE40 + .sdata2 start:0x803F1160 end:0x803F1170 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801B17E4 end:0x801B2EA4 + .data start:0x802E5C08 end:0x802E5FE8 + .sdata start:0x803EBE40 end:0x803EBEE8 + .sdata2 start:0x803F1170 end:0x803F11A0 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801B2EA4 end:0x801B33E8 + .data start:0x802E5FE8 end:0x802E6030 + .sdata start:0x803EBEE8 end:0x803EBEF0 + .sdata2 start:0x803F11A0 end:0x803F11B0 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801B33E8 end:0x801B3888 + .data start:0x802E6030 end:0x802E6080 + .sdata start:0x803EBEF0 end:0x803EBF00 + .sdata2 start:0x803F11B0 end:0x803F11C0 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801B3888 end:0x801B3D94 + .data start:0x802E6080 end:0x802E60F8 + .sdata start:0x803EBF00 end:0x803EBF58 + .sdata2 start:0x803F11C0 end:0x803F11E8 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801B3D94 end:0x801B50A8 + .data start:0x802E60F8 end:0x802E6188 + .sdata start:0x803EBF58 end:0x803EBF90 + .sdata2 start:0x803F11E8 end:0x803F11F8 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B50A8 end:0x801B63E8 + .data start:0x802E6188 end:0x802E6208 + .sdata start:0x803EBF90 end:0x803EBFA8 + .sdata2 start:0x803F11F8 end:0x803F1220 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B63E8 end:0x801B6BE8 + .data start:0x802E6208 end:0x802E6308 + .sdata start:0x803EBFA8 end:0x803EBFC0 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B6BE8 end:0x801B6E38 + .data start:0x802E6308 end:0x802E6340 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B6E38 end:0x801B7098 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B7098 end:0x801B7260 + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B7260 end:0x801B7F1C + .data start:0x802E6340 end:0x802E63A8 + .sdata start:0x803EBFC0 end:0x803EBFD8 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B7F1C end:0x801B84D4 + .data start:0x802E63A8 end:0x802E6430 + .sdata start:0x803EBFD8 end:0x803EBFF0 + .sdata2 start:0x803F1220 end:0x803F1228 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B84D4 end:0x801B9840 + .data start:0x802E6430 end:0x802E64B0 + .sdata2 start:0x803F1228 end:0x803F1250 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801B9840 end:0x801B9F14 + .data start:0x802E64B0 end:0x802E6510 + .sdata start:0x803EBFF0 end:0x803EC008 + .sdata2 start:0x803F1250 end:0x803F1278 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801B9F14 end:0x801BDDDC + .data start:0x802E6510 end:0x802E6CB8 + .sdata start:0x803EC008 end:0x803EC0B0 + .sbss start:0x803ED838 end:0x803ED840 + .sdata2 start:0x803F1278 end:0x803F1330 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801BDDDC end:0x801BE2A0 + .sdata start:0x803EC0B0 end:0x803EC0B8 + .sdata2 start:0x803F1330 end:0x803F1368 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801BE2A0 end:0x801C32D4 + .data start:0x802E6CB8 end:0x802E7040 + .bss start:0x803D7C48 end:0x803D7CA0 + .sdata start:0x803EC0B8 end:0x803EC168 + .sbss start:0x803ED840 end:0x803ED848 + .sdata2 start:0x803F1368 end:0x803F13E0 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801C32D4 end:0x801C4134 + .data start:0x802E7040 end:0x802E7168 + .bss start:0x803D7CA0 end:0x803D7CF0 + .sdata start:0x803EC168 end:0x803EC1A8 + .sdata2 start:0x803F13E0 end:0x803F1430 + +plugPikiYamashita/zenController.cpp: + .text start:0x801C4134 end:0x801C42C0 + .sbss start:0x803ED848 end:0x803ED850 + .sdata2 start:0x803F1430 end:0x803F1440 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801C42C0 end:0x801C4EC4 + .data start:0x802E7168 end:0x802E7180 + .sdata start:0x803EC1A8 end:0x803EC1B8 + .sdata2 start:0x803F1440 end:0x803F1490 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801C4EC4 end:0x801C5030 + .data start:0x802E7180 end:0x802E71A8 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801C5030 end:0x801C666C + .data start:0x802E71A8 end:0x802E7320 + .sdata start:0x803EC1B8 end:0x803EC1F0 + .sdata2 start:0x803F1490 end:0x803F14B0 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C666C end:0x801C89FC + .data start:0x802E7320 end:0x802E7430 + .sdata start:0x803EC1F0 end:0x803EC238 + .sdata2 start:0x803F14B0 end:0x803F14F8 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C89FC end:0x801C9B80 + .data start:0x802E7430 end:0x802E7528 + .sdata start:0x803EC238 end:0x803EC298 + .sdata2 start:0x803F14F8 end:0x803F1520 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801C9B80 end:0x801CD754 + .data start:0x802E7528 end:0x802E7CF8 + .sdata start:0x803EC298 end:0x803EC3D0 + .sdata2 start:0x803F1520 end:0x803F15D8 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801CD754 end:0x801CE530 + .data start:0x802E7CF8 end:0x802E7DC8 + .sdata start:0x803EC3D0 end:0x803EC410 + .sdata2 start:0x803F15D8 end:0x803F1638 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801CE530 end:0x801CFDF0 + .data start:0x802E7DC8 end:0x802E8410 + .sdata start:0x803EC410 end:0x803EC4E8 + .sdata2 start:0x803F1638 end:0x803F1698 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801CFDF0 end:0x801D19A8 + .data start:0x802E8410 end:0x802E8B00 + .sdata start:0x803EC4E8 end:0x803EC5B0 + .sdata2 start:0x803F1698 end:0x803F16F8 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801D19A8 end:0x801D4094 + .data start:0x802E8B00 end:0x802E95B0 + .sdata start:0x803EC5B0 end:0x803EC6F8 + .sdata2 start:0x803F16F8 end:0x803F1778 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801D4094 end:0x801D5244 + .data start:0x802E95B0 end:0x802E9A60 + .sdata start:0x803EC6F8 end:0x803EC790 + .sdata2 start:0x803F1778 end:0x803F17E0 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801D5244 end:0x801D8CA0 + .data start:0x802E9A60 end:0x802EA398 + .sdata start:0x803EC790 end:0x803EC8D0 + .sdata2 start:0x803F17E0 end:0x803F1860 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801D8CA0 end:0x801DA2F0 + .ctors start:0x8022707C end:0x80227080 + .data start:0x802EA398 end:0x802EA8C8 + .sdata start:0x803EC8D0 end:0x803EC978 + .sbss start:0x803ED850 end:0x803ED858 + .sdata2 start:0x803F1860 end:0x803F18D8 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801DA2F0 end:0x801DA7C0 + .data start:0x802EA8C8 end:0x802EA958 + .sdata start:0x803EC978 end:0x803EC990 + .sdata2 start:0x803F18D8 end:0x803F18E0 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801DA7C0 end:0x801DE6C0 + .data start:0x802EA958 end:0x802EB530 + .sdata start:0x803EC990 end:0x803ECAF0 + .sdata2 start:0x803F18E0 end:0x803F1978 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801DE6C0 end:0x801DE954 + .data start:0x802EB530 end:0x802EB560 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801DE954 end:0x801DEF18 + .data start:0x802EB560 end:0x802EB588 + .sdata2 start:0x803F1978 end:0x803F1988 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801DEF18 end:0x801DF920 + .data start:0x802EB588 end:0x802EB5C8 + .sdata start:0x803ECAF0 end:0x803ECAF8 + .sdata2 start:0x803F1988 end:0x803F19B8 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801DF920 end:0x801EC45C + .data start:0x802EB5C8 end:0x802EB908 + .sdata start:0x803ECAF8 end:0x803ECD08 + .sbss start:0x803ED858 end:0x803ED860 + .sdata2 start:0x803F19B8 end:0x803F1AA0 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801EC45C end:0x801ED3E0 + .data start:0x802EB908 end:0x802EB970 + .sdata start:0x803ECD08 end:0x803ECD10 + .sdata2 start:0x803F1AA0 end:0x803F1AE8 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801ED3E0 end:0x801EE214 + .data start:0x802EB970 end:0x802EBA00 + .sdata start:0x803ECD10 end:0x803ECD18 + .sdata2 start:0x803F1AE8 end:0x803F1B58 + +plugPikiYamashita/yai.cpp: + .text start:0x801EE214 end:0x801EE480 + .data start:0x802EBA00 end:0x802EBA50 + .sdata start:0x803ECD18 end:0x803ECD28 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801EE480 end:0x801EE8B8 + .data start:0x802EBA50 end:0x802EC358 + .sdata start:0x803ECD28 end:0x803ECD40 + .sdata2 start:0x803F1B58 end:0x803F1B78 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801EE8B8 end:0x801EEB60 + .data start:0x802EC358 end:0x802EC370 + .sdata2 start:0x803F1B78 end:0x803F1B88 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801EEB60 end:0x801EF630 + .data start:0x802EC370 end:0x802EC6E0 + .sdata start:0x803ECD40 end:0x803ECDD0 + .sdata2 start:0x803F1B88 end:0x803F1BE8 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801EF630 end:0x801F0F2C + .data start:0x802EC6E0 end:0x802ECC28 + .sdata start:0x803ECDD0 end:0x803ECE78 + .sdata2 start:0x803F1BE8 end:0x803F1C58 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801F0F2C end:0x801F1F34 + .data start:0x802ECC28 end:0x802ECD48 + .sdata start:0x803ECE78 end:0x803ECF28 + .sdata2 start:0x803F1C58 end:0x803F1C80 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801F1F34 end:0x801F2360 + .data start:0x802ECD48 end:0x802ECD70 + .sdata start:0x803ECF28 end:0x803ECF30 + .sdata2 start:0x803F1C80 end:0x803F1CB0 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801F2360 end:0x801F2E64 + .data start:0x802ECD70 end:0x802ECDF8 + .sdata start:0x803ECF30 end:0x803ECF58 + .sdata2 start:0x803F1CB0 end:0x803F1CD0 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801F2E64 end:0x801F36E4 + .data start:0x802ECDF8 end:0x802ECE68 + .sdata start:0x803ECF58 end:0x803ECF60 + .sdata2 start:0x803F1CD0 end:0x803F1D00 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801F36E4 end:0x801F4D78 + .data start:0x802ECE68 end:0x802ED080 + .sdata start:0x803ECF60 end:0x803ECFC0 + .sdata2 start:0x803F1D00 end:0x803F1D20 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801F4D78 end:0x801F57B0 + .data start:0x802ED080 end:0x802ED198 + .sdata start:0x803ECFC0 end:0x803ECFF8 + .sdata2 start:0x803F1D20 end:0x803F1D48 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801F57B0 end:0x801F62E4 + .data start:0x802ED198 end:0x802ED1E8 + .sdata start:0x803ECFF8 end:0x803ED028 + .sdata2 start:0x803F1D48 end:0x803F1D50 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801F62E4 end:0x801F67C8 + .sdata2 start:0x803F1D50 end:0x803F1D70 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F67C8 end:0x801F6B50 + .sdata2 start:0x803F1D70 end:0x803F1D80 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F6B50 end:0x801F7214 + .data start:0x802ED1E8 end:0x802ED200 + .sdata start:0x803ED028 end:0x803ED038 + .sdata2 start:0x803F1D80 end:0x803F1D90 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F7214 end:0x801F744C + .sdata start:0x803ED038 end:0x803ED040 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F744C end:0x801F8400 + .data start:0x802ED200 end:0x802ED2A8 + .sdata2 start:0x803F1D90 end:0x803F1DC8 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F8400 end:0x801F88D8 + .data start:0x802ED2A8 end:0x802ED2B8 + .sdata2 start:0x803F1DC8 end:0x803F1DE0 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F88D8 end:0x801FA44C + .data start:0x802ED2B8 end:0x802ED348 + .sdata start:0x803ED040 end:0x803ED068 + .sdata2 start:0x803F1DE0 end:0x803F1E10 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801FA44C end:0x801FA994 + .data start:0x802ED348 end:0x802ED3E8 + +base/PPCArch.c: + .text start:0x801FA994 end:0x801FA9F8 + +os/OS.c: + .text start:0x801FA9F8 end:0x801FB110 + .data start:0x802ED3E8 end:0x802ED5A8 + .sbss start:0x803ED860 end:0x803ED870 + +os/OSAlarm.c: + .text start:0x801FB110 end:0x801FB7FC + .sbss start:0x803ED870 end:0x803ED878 + +os/OSAlloc.c: + .text start:0x801FB7FC end:0x801FB968 + .sdata start:0x803ED068 end:0x803ED070 + .sbss start:0x803ED878 end:0x803ED888 + +os/OSArena.c: + .text start:0x801FB968 end:0x801FB988 + .sdata start:0x803ED070 end:0x803ED078 + .sbss start:0x803ED888 end:0x803ED890 + +os/OSAudioSystem.c: + .text start:0x801FB988 end:0x801FBBF4 + .data start:0x802ED5A8 end:0x802ED628 + +os/OSCache.c: + .text start:0x801FBBF4 end:0x801FC078 + .data start:0x802ED628 end:0x802ED858 + +os/OSContext.c: + .text start:0x801FC078 end:0x801FC8E0 + .data start:0x802ED858 end:0x802EDA30 + +os/OSError.c: + .text start:0x801FC8E0 end:0x801FCC1C + .data start:0x802EDA30 end:0x802EDC68 + .bss start:0x803D7CF0 end:0x803D7D30 + .sdata start:0x803ED078 end:0x803ED080 + +os/OSExi.c: + .text start:0x801FCC1C end:0x801FDF74 + .bss start:0x803D7D30 end:0x803D7DE0 + +os/OSFont.c: + .text start:0x801FDF74 end:0x801FDFCC + .sdata start:0x803ED080 end:0x803ED088 + +os/OSInterrupt.c: + .text start:0x801FDFCC end:0x801FE7EC + .data start:0x802EDC68 end:0x802EDD00 + .sbss start:0x803ED890 end:0x803ED898 + +os/OSLink.c: + .text start:0x801FE7EC end:0x801FE804 + +os/OSMessage.c: + .text start:0x801FE804 end:0x801FEA08 + +os/OSMutex.c: + .text start:0x801FEA08 end:0x801FEF14 + +os/OSReboot.c: + .text start:0x801FEF14 end:0x801FF110 + .bss start:0x803D7DE0 end:0x803D7E00 + .sbss start:0x803ED898 end:0x803ED8A0 + +os/OSReset.c: + .text start:0x801FF110 end:0x801FF404 + .sbss start:0x803ED8A0 end:0x803ED8A8 + +os/OSResetSW.c: + .text start:0x801FF404 end:0x801FF6EC + .sbss start:0x803ED8A8 end:0x803ED8C8 + +os/OSRtc.c: + .text start:0x801FF6EC end:0x801FFFF8 + .bss start:0x803D7E00 end:0x803D7E58 + +os/OSSerial.c: + .text start:0x801FFFF8 end:0x80200978 + .data start:0x802EDD00 end:0x802EDD18 + .bss start:0x803D7E58 end:0x803D7F78 + +os/OSSync.c: + .text start:0x80200978 end:0x802009FC + +os/OSThread.c: + .text start:0x802009FC end:0x802022B0 + .data start:0x802EDD18 end:0x802EE528 + .bss start:0x803D7F78 end:0x803D8960 + .sdata start:0x803ED088 end:0x803ED090 + .sbss start:0x803ED8C8 end:0x803ED8D8 + +os/OSTime.c: + .text start:0x802022B0 end:0x802026D4 + .data start:0x802EE528 end:0x802EE588 + +os/OSUartExi.c: + .text start:0x802026D4 end:0x80202924 + .sbss start:0x803ED8D8 end:0x803ED8E0 + +os/__start.c: + .init start:0x80003100 end:0x800032CC + .text start:0x80202924 end:0x80202924 + +os/__ppc_eabi_init.cpp: + .init start:0x800032CC end:0x80003320 + .text start:0x80202924 end:0x802029B8 + +db/db.c: + .text start:0x802029B8 end:0x80202AA4 + .data start:0x802EE588 end:0x802EE5A0 + .sbss start:0x803ED8E0 end:0x803ED8E8 + +mtx/mtx.c: + .text start:0x80202AA4 end:0x80202E30 + .sdata start:0x803ED090 end:0x803ED098 + .sdata2 start:0x803F1E10 end:0x803F1E28 + +mtx/mtx44.c: + .text start:0x80202E30 end:0x80202F98 + .sdata2 start:0x803F1E28 end:0x803F1E40 + +mtx/vec.c: + .text start:0x80202F98 end:0x8020303C + .sdata2 start:0x803F1E40 end:0x803F1E58 + +dvd/dvdlow.c: + .text start:0x8020303C end:0x80203E90 + .bss start:0x803D8960 end:0x803D8A40 + .sdata start:0x803ED098 end:0x803ED0A0 + .sbss start:0x803ED8E8 end:0x803ED930 + +dvd/dvdfs.c: + .text start:0x80203E90 end:0x80204874 + .data start:0x802EE5A0 end:0x802EE958 + .sdata start:0x803ED0A0 end:0x803ED0A8 + .sbss start:0x803ED930 end:0x803ED950 + +dvd/dvd.c: + .text start:0x80204874 end:0x80206E14 + .data start:0x802EE958 end:0x802EEA70 + .bss start:0x803D8A40 end:0x803D8B18 + .sdata start:0x803ED0A8 end:0x803ED0B0 + .sbss start:0x803ED950 end:0x803ED998 + +dvd/dvdqueue.c: + .text start:0x80206E14 end:0x8020700C + .bss start:0x803D8B18 end:0x803D8B38 + +dvd/dvderror.c: + .text start:0x8020700C end:0x80207164 + .data start:0x802EEA70 end:0x802EEAB0 + +dvd/fstload.c: + .text start:0x80207164 end:0x8020738C + .data start:0x802EEAB0 end:0x802EEB20 + .bss start:0x803D8B38 end:0x803D8BA8 + .sdata start:0x803ED0B0 end:0x803ED0C0 + .sbss start:0x803ED998 end:0x803ED9A8 + +vi/vi.c: + .text start:0x8020738C end:0x80208AD4 + .data start:0x802EEB20 end:0x802EEC88 + .bss start:0x803D8BA8 end:0x803D8CF0 + .sbss start:0x803ED9A8 end:0x803ED9E8 + +pad/Padclamp.c: + .text start:0x80208AD4 end:0x80208D0C + .sdata start:0x803ED0C0 end:0x803ED0C8 + +pad/Pad.c: + .text start:0x80208D0C end:0x8020AF0C + .data start:0x802EEC88 end:0x802EECF0 + .bss start:0x803D8CF0 end:0x803D8D60 + .sdata start:0x803ED0C8 end:0x803ED0F0 + .sbss start:0x803ED9E8 end:0x803EDA18 + +ai/ai.c: + .text start:0x8020AF0C end:0x8020B814 + .sbss start:0x803EDA18 end:0x803EDA58 + +ar/ar.c: + .text start:0x8020B814 end:0x8020C988 + .sbss start:0x803EDA58 end:0x803EDA70 + .sdata2 start:0x803F1E58 end:0x803F1E68 + +ar/arq.c: + .text start:0x8020C988 end:0x8020CD1C + .sbss start:0x803EDA70 end:0x803EDA98 + +dsp/dsp.c: + .text start:0x8020CD1C end:0x8020CD68 + +card/CARDBios.c: + .text start:0x8020CD68 end:0x8020E11C + .data start:0x802EECF0 end:0x802EED00 + .bss start:0x803D8D60 end:0x803D8F90 + .sbss start:0x803EDA98 end:0x803EDAA0 + +card/CARDRdwr.c: + .text start:0x8020E11C end:0x8020E3B4 + +card/CARDBlock.c: + .text start:0x8020E3B4 end:0x8020E7B8 + +card/CARDDir.c: + .text start:0x8020E7B8 end:0x8020EA1C + +card/CARDCheck.c: + .text start:0x8020EA1C end:0x8020F9AC + +card/CARDMount.c: + .text start:0x8020F9AC end:0x802101A4 + .data start:0x802EED00 end:0x802EED40 + +card/CARDFormat.c: + .text start:0x802101A4 end:0x80210988 + +card/CARDOpen.c: + .text start:0x80210988 end:0x80210DF0 + +card/CARDCreate.c: + .text start:0x80210DF0 end:0x80211180 + +card/CARDRead.c: + .text start:0x80211180 end:0x802115F4 + +card/CARDWrite.c: + .text start:0x802115F4 end:0x8021196C + +card/CARDDelete.c: + .text start:0x8021196C end:0x80211B80 + +card/CARDStat.c: + .text start:0x80211B80 end:0x80212058 + +card/CARDRename.c: + .text start:0x80212058 end:0x80212290 + +hio/hio.c: + .text start:0x80212290 end:0x80212A68 + .sdata start:0x803ED0F0 end:0x803ED0F8 + .sbss start:0x803EDAA0 end:0x803EDAB0 + +gx/GXInit.c: + .text start:0x80212A68 end:0x80213A48 + .bss start:0x803D8F90 end:0x803D9508 + .sdata start:0x803ED0F8 end:0x803ED100 + .sbss start:0x803EDAB0 end:0x803EDAC0 + .sdata2 start:0x803F1E68 end:0x803F1E88 + +gx/GXFifo.c: + .text start:0x80213A48 end:0x802142B4 + .sbss start:0x803EDAC0 end:0x803EDAE0 + +gx/GXAttr.c: + .text start:0x802142B4 end:0x8021577C + .data start:0x802EED40 end:0x802EEF08 + .sdata start:0x803ED100 end:0x803ED110 + +gx/GXMisc.c: + .text start:0x8021577C end:0x80215C20 + .sbss start:0x803EDAE0 end:0x803EDAF8 + +gx/GXGeometry.c: + .text start:0x80215C20 end:0x80215FD8 + +gx/GXFrameBuf.c: + .text start:0x80215FD8 end:0x80216A54 + .data start:0x802EEF08 end:0x802EEFC0 + .sdata2 start:0x803F1E88 end:0x803F1E98 + +gx/GXLight.c: + .text start:0x80216A54 end:0x802171DC + .sdata2 start:0x803F1E98 end:0x803F1EB8 + +gx/GXTexture.c: + .text start:0x802171DC end:0x80217CA0 + .data start:0x802EEFC0 end:0x802EF0F0 + .sdata start:0x803ED110 end:0x803ED150 + .sdata2 start:0x803F1EB8 end:0x803F1EE0 + +gx/GXBump.c: + .text start:0x80217CA0 end:0x80218074 + +gx/GXTev.c: + .text start:0x80218074 end:0x80218A70 + .data start:0x802EF0F0 end:0x802EF118 + +gx/GXPixel.c: + .text start:0x80218A70 end:0x802191BC + .data start:0x802EF118 end:0x802EF138 + .sdata2 start:0x803F1EE0 end:0x803F1F10 + +gx/GXStubs.c: + .text start:0x802191BC end:0x802191C0 + +gx/GXDisplayList.c: + .text start:0x802191C0 end:0x802193CC + .bss start:0x803D9508 end:0x803D9A20 + .sbss start:0x803EDAF8 end:0x803EDB00 + +gx/GXTransform.c: + .text start:0x802193CC end:0x80219948 + .sdata2 start:0x803F1F10 end:0x803F1F20 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x80219948 end:0x80219A3C + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x80219A3C end:0x80219A9C + .dtors start:0x802270A8 end:0x802270AC + .sbss start:0x803EDB00 end:0x803EDB08 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x80219A9C end:0x80219ACC + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x800054C0 end:0x80005500 + extabindex start:0x80005500 end:0x80005530 + .text start:0x80219ACC end:0x80219E08 + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x80219E08 end:0x80219E30 + .rodata start:0x80227838 end:0x80227848 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x80219E30 end:0x80219EA0 + .bss start:0x803D9A20 end:0x803D9A30 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x80219EA0 end:0x8021A598 + .rodata start:0x80227848 end:0x80227860 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x8021A598 end:0x8021A614 + .ctors start:0x80227040 end:0x80227044 + .dtors start:0x802270A0 end:0x802270A8 + .sdata start:0x803ED150 end:0x803ED158 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802EF138 end:0x802EF210 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x8021A614 end:0x8021A720 + .bss start:0x803D9A30 end:0x803D9C30 + .sbss start:0x803EDB08 end:0x803EDB20 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803EDB20 end:0x803EDB28 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x8021A720 end:0x8021AD78 + .rodata start:0x80227860 end:0x802278E8 + .sdata start:0x803ED158 end:0x803ED160 + .sdata2 start:0x803F1F20 end:0x803F1F50 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x8021AD78 end:0x8021AD88 + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x8021AD88 end:0x8021AE88 + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x8021AE88 end:0x8021AE8C + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x8021AE8C end:0x8021AEDC + .rodata start:0x802278E8 end:0x80227BE8 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x80227BE8 end:0x80227BF0 + .data start:0x802EF210 end:0x802EF240 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x8021AEDC end:0x8021B1B8 + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x8021B1B8 end:0x8021B244 + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003320 end:0x80003464 + .text start:0x8021B244 end:0x8021B390 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x8021B390 end:0x8021B66C + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x8021B66C end:0x8021B670 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x8021B670 end:0x8021D140 + .rodata start:0x80227BF0 end:0x80227C00 + .data start:0x802EF240 end:0x802EF460 + .sdata start:0x803ED160 end:0x803ED168 + .sdata2 start:0x803F1F50 end:0x803F1F58 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x8021D140 end:0x8021D16C + .sdata start:0x803ED168 end:0x803ED170 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x8021D16C end:0x8021E1C0 + .rodata start:0x80227C00 end:0x80227C28 + .data start:0x802EF460 end:0x802EF530 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x8021E1C0 end:0x8021E504 + .sdata start:0x803ED170 end:0x803ED178 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x8021E504 end:0x8021EC74 + .rodata start:0x80227C28 end:0x80227C58 + .sdata2 start:0x803F1F58 end:0x803F1F68 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x8021EC74 end:0x8021F5E8 + .data start:0x802EF530 end:0x802EF5B8 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802EF5B8 end:0x802EF5F0 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8021F5E8 end:0x8021F768 + .sbss start:0x803EDB28 end:0x803EDB30 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8021F768 end:0x8021F7E8 + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8021F7E8 end:0x8021F7F0 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x8021F7F0 end:0x8021FA88 + .sdata2 start:0x803F1F68 end:0x803F1FC0 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x8021FA88 end:0x802202C0 + .rodata start:0x80227C58 end:0x80227C88 + .sdata2 start:0x803F1FC0 end:0x803F20D0 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x802202C0 end:0x80220340 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x80220340 end:0x80220580 + .rodata start:0x80227C88 end:0x80227D20 + .sdata2 start:0x803F20D0 end:0x803F20F8 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x80220580 end:0x802205AC + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x802205AC end:0x80220648 + .sdata2 start:0x803F20F8 end:0x803F2100 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x80220648 end:0x802207C0 + .sdata2 start:0x803F2100 end:0x803F2128 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x802207C0 end:0x802207E0 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x802207E0 end:0x80220800 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x80220800 end:0x80220808 + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x80220808 end:0x80220BA8 + .rodata start:0x80227D20 end:0x80227DD8 + .sdata2 start:0x803F2128 end:0x803F2148 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x80220BA8 end:0x80220F94 + .ctors start:0x80227080 end:0x80227084 + .rodata start:0x80227DD8 end:0x80227DE8 + .data start:0x802EF5F0 end:0x802EF600 + .sdata2 start:0x803F2148 end:0x803F2160 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x80227DE8 end:0x80227E30 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x80220F94 end:0x80221024 + .sdata2 start:0x803F2160 end:0x803F2178 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x80221024 end:0x8022118C + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x8022118C end:0x802213E8 + .bss start:0x803D9C30 end:0x803D9C58 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x802213E8 end:0x8022157C + .rodata start:0x80227E30 end:0x80227E50 + .bss start:0x803D9C58 end:0x803D9C60 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x8022157C end:0x802215A4 + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x802215A4 end:0x80221DEC + .bss start:0x803D9C60 end:0x803DB610 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x80221DEC end:0x80221FB4 + .bss start:0x803DB610 end:0x803DB628 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x80221FB4 end:0x80221FB8 + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x80221FB8 end:0x80222050 + .data start:0x802EF600 end:0x802EF688 + .bss start:0x803DB628 end:0x803DB630 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x80222050 end:0x802232F4 + .data start:0x802EF688 end:0x802EF6C0 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x802232F4 end:0x80223770 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x80223770 end:0x80223788 + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x80223788 end:0x80223860 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x80223860 end:0x80223898 + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003464 end:0x800034B8 + .text start:0x80223898 end:0x8022395C + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x8022395C end:0x80224F38 + .rodata start:0x80227E50 end:0x80227E9C + .data start:0x802EF6C0 end:0x802EF6F0 + .bss start:0x803DB630 end:0x803DBBB0 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x800034B8 end:0x800053EC + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x800053EC end:0x8000540C + .text start:0x80224F38 end:0x80225178 + .data start:0x802EF6F0 end:0x802EF730 + .bss start:0x803DBBB0 end:0x803DBBB8 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x80225178 end:0x802254F0 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x802254F0 end:0x80225538 + .bss start:0x803DBBB8 end:0x803DBBC0 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x80225538 end:0x80225890 + .data start:0x802EF730 end:0x802EF750 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x80225890 end:0x802258C4 + +amcExi2/AmcExi.c: + .text start:0x802258C4 end:0x80225F04 + .bss start:0x803DBBC0 end:0x803DBBD8 + .sdata start:0x803ED178 end:0x803ED180 + +amcExi2/AmcExi2Comm.c: + .text start:0x80225F04 end:0x802265A8 + .data start:0x802EF750 end:0x802EF769 + .sdata start:0x803ED180 end:0x803ED188 + .sbss start:0x803EDB30 end:0x803EDB40 + +amcnotstub/amcnotstub.c: + .text start:0x802265A8 end:0x802265B0 + +OdemuExi2/DebuggerDriver.c: + .text start:0x802265B0 end:0x80227030 + .sdata start:0x803ED188 end:0x803ED189 + .sbss start:0x803EDB40 end:0x803EDB55 + +odenotstub/odenotstub.c: + .text start:0x80227030 end:0x80227038 diff --git a/config/GPIJ01_01/symbols.txt b/config/GPIJ01_01/symbols.txt new file mode 100644 index 00000000..edb57103 --- /dev/null +++ b/config/GPIJ01_01/symbols.txt @@ -0,0 +1,29948 @@ +__start = .init:0x80003100; // type:function size:0xF0 scope:weak align:4 +__init_registers = .init:0x800031F0; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x8000320C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800032CC; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x800032EC; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003320; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x80003350; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003414; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x80003464; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x80003488; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x800034B8; // type:label scope:global +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x800053EC; // type:label scope:global +__TRK_reset = .init:0x800053EC; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x8000540C; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x80005490; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x800054C0; // type:object size:0x8 scope:local align:4 +@174 = extab:0x800054C8; // type:object size:0x18 scope:local align:4 +@182 = extab:0x800054E0; // type:object size:0x8 scope:local align:4 +@201 = extab:0x800054E8; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005500; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000550C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005518; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005524; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005530; // type:object size:0x20 scope:global +main = .text:0x80005560; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005600; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005620; // type:function size:0x4 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005640; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x800056C0; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x80005720; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005780; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x80005800; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x800058C0; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x800059A0; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005A80; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005B80; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005C20; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005DC0; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005E80; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005EA0; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005EE0; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80005F20; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80005F60; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006060; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x800060A0; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x80006180; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x800061A0; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x80006200; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x800062A0; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x800062C0; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x800062E0; // type:function size:0x44 scope:local align:32 +StopAudioThread = .text:0x80006340; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x800063A0; // type:function size:0x80 scope:local align:32 +__DspSync__FsP9OSContext = .text:0x80006420; // type:function size:0x68 scope:local align:32 +__DspReg__Fv = .text:0x800064A0; // type:function size:0x44 scope:local align:32 +audioproc__FPv = .text:0x80006500; // type:function size:0x130 scope:local align:32 +OSInitFastCast = .text:0x80006640; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x80006680; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x800067C0; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006B60; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006B80; // type:function size:0x250 scope:global align:32 +UpdateDSP__Fv = .text:0x80006DE0; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006E40; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006E80; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006EC0; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x800070C0; // type:function size:0x24 scope:global align:32 +lbl_800070F0 = .text:0x800070F0; // type:label +ResetPlayerCallback = .text:0x80007100; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80007140; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x800071A0; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x80007200; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x800072C0; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x80007340; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x800073C0; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x80007420; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x800074C0; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x80007520; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x800075A0; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x80007620; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x80007660; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x80007700; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x80007760; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x800077C0; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x80007800; // type:function size:0xC0 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x800078C0; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x80007960; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x800079A0; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x800079E0; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007A20; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007A80; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007B40; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007B60; // type:function size:0x21C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007D80; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007E20; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007EA0; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80007F20; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80007F60; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80007FA0; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x800080A0; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x80008100; // type:function size:0x18 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008120; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x800081A0; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x80008200; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x80008260; // type:function size:0x3C scope:global align:32 +__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x800082A0; // type:function size:0x280 scope:global align:32 +DSPInit = .text:0x80008520; // type:function size:0x4 scope:global align:32 +DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x80008540; // type:function size:0x98 scope:global align:32 +DspBoot__Fv = .text:0x800085E0; // type:function size:0x74 scope:global align:32 +DSPSendCommands__FPUlUl = .text:0x80008660; // type:function size:0xA8 scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008720; // type:function size:0x48 scope:global align:32 +DSPWaitFinish__Fv = .text:0x80008780; // type:function size:0x58 scope:global align:32 +DsetupTable__FUlUlUlUlUl = .text:0x800087E0; // type:function size:0x48 scope:global align:32 +DsetMixerLevel__Ff = .text:0x80008840; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x80008880; // type:function size:0x48 scope:global align:32 +DwaitFrame__Fv = .text:0x800088E0; // type:function size:0x34 scope:global align:32 +DiplSec__FUl = .text:0x80008920; // type:function size:0x3C scope:global align:32 +DagbSec__FUl = .text:0x80008960; // type:function size:0x3C scope:global align:32 +WriteTask__FUcUlPvPFPv_v = .text:0x800089A0; // type:function size:0x70 scope:local align:32 +DoTask__Fv = .text:0x80008A20; // type:function size:0xC0 scope:local align:32 +DspExtraTaskCheck__Fv = .text:0x80008AE0; // type:function size:0x24 scope:global align:32 +Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x80008B20; // type:function size:0x4C scope:global align:32 +exnor_1st__FUlUl = .text:0x80008B80; // type:function size:0x38 scope:local align:32 +exnor__FUlUl = .text:0x80008BC0; // type:function size:0x38 scope:local align:32 +bitrev__FUl = .text:0x80008C00; // type:function size:0x7C scope:local align:32 +ReadArrayUnlock__FlUlPvli = .text:0x80008C80; // type:function size:0x17C scope:local align:32 +GetInitVal__Fv = .text:0x80008E00; // type:function size:0x44 scope:local align:32 +DummyLen__Fv = .text:0x80008E60; // type:function size:0x8C scope:local align:32 +__CARDUnlock = .text:0x80008F00; // type:function size:0x2B0 scope:global align:32 +DoneCallback__FPv = .text:0x800091C0; // type:function size:0x1E0 scope:local align:32 +Channel_SetMixerLevel__Ff = .text:0x800093A0; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x800093E0; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80009400; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80009420; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x800094A0; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x800094E0; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x80009540; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x80009560; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80009600; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x80009660; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x80009760; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x80009860; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x800098E0; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x80009A00; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009B40; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009B80; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x80009C00; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x80009CE0; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x80009DC0; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x80009E00; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x8000A160; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x8000A1E0; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8000A280; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A620; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A6A0; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A6E0; // type:function size:0x144 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A840; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A8C0; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000A980; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000AA00; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000AB00; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000ABE0; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000AC40; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000AC80; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000ACE0; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000AE00; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000AEE0; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000B000; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000B0E0; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000B160; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000B220; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000B2E0; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000B4E0; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000B500; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000B520; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000B560; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000B580; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000B5E0; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B640; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B680; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B6A0; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B760; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B7A0; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B7C0; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B820; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B8A0; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B8C0; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000B900; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000B940; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000B980; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000B9E0; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000BA60; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000BAA0; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000BAE0; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000BB20; // type:function size:0x50 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000BB80; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000BBE0; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000BC40; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BD80; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000BDC0; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000C040; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000C0C0; // type:function size:0x24 scope:global align:32 +lbl_8000C0F0 = .text:0x8000C0F0; // type:label +Bank_Init__Fv = .text:0x8000C100; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000C140; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000C180; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000C1C0; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000C460; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000C500; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000C540; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C5C0; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C660; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C6A0; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C6E0; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C760; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C7A0; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C7E0; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C880; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CA00; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CAA0; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000CC00; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000CC60; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000CD80; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000CE00; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000CE20; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000CE40; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000CEA0; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000CF00; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000CF40; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000CF80; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000CFC0; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000D020; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000D0C0; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000D140; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000D260; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000D2C0; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D6C0; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D740; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D780; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D7C0; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D820; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D8A0; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000D920; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000D960; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000D9A0; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000DA20; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000DB20; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000DB60; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000DBA0; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000DBC0; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000DC40; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000DC80; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000DD20; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000DD60; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000DDC0; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000DE80; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000DF60; // type:function size:0x198 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000E100; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000E160; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000E1A0; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000E280; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000E2C0; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000E2E0; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000E360; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000E3A0; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000E400; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000E460; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000E4A0; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000E4C0; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000E500; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E640; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E6C0; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E740; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E780; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E860; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000E940; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000E980; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000EA80; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000EB80; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000EBE0; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000EC20; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000ED20; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000ED60; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000EDC0; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000EF80; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000F140; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000F1C0; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000F2A0; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000F380; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000F3E0; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000F440; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000F4A0; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000F520; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F580; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F600; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F660; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F6C0; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F7A0; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F840; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F860; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000FA20; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000FAE0; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000FB80; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x80010020; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x800101A0; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x80010200; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x80010260; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x800102C0; // type:function size:0x4C scope:global align:32 +Jam_CheckPortIndirect = .text:0x80010320; // type:function size:0xA4 scope:global align:32 +Jam_WritePortAppDirect = .text:0x800103E0; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x80010460; // type:function size:0x30 scope:global align:32 +Jam_InitRegistTrack = .text:0x800104A0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x800104E0; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x800105A0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010640; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800106A0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800106C0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010700; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010760; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800107C0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x80010880; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800108C0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010900; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010940; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x80010980; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x800109C0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010A00; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010A40; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010A60; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x80010AC0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010DE0; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010E00; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x800112C0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x800113E0; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x800114C0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011600; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011700; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011740; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x800117E0; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011820; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x80011880; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800118C0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x800119C0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011A00; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011A60; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x80011A80; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x80011AA0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011B00; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x80011B80; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011BE0; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011C20; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x80011C80; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011CE0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011D20; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011D60; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x80011DA0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011E00; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011E40; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011E60; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x80011EA0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80011EE0; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80011F60; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x80011FC0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80012040; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x80012080; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x800120C0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80012100; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80012120; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x80012180; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x800121C0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x800121E0; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80012200; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80012240; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x80012280; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x800122C0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80012300; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80012360; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x800123A0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x800123E0; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80012420; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x80012480; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x800124E0; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x800125C0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x800125E0; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800126A0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012740; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800127A0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012800; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x800128E0; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012920; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x800129C0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012A00; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x80012A80; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x80012CA0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012DE0; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x80012EA0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013760; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013820; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x80013BC0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013C60; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x80013CA0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013D00; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x80013D80; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013E20; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x80013EC0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80013F40; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x80013FA0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80014000; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80014020; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x800143A0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80014440; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x800144A0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x800144E0; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014660; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800146A0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014760; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800148C0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x80014980; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x80014AA0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x80014BA0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x80014C80; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014D20; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014D60; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x80014DA0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014E20; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014E40; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x80014EA0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80014F40; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80015000; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80015120; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80015160; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x800151A0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80015200; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x80015280; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x800153C0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x800154A0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80015520; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x800155A0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800156C0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015820; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x80015880; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x800158E0; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015920; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015940; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80015AA0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x80015BA0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015C20; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015C60; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x80015CA0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015D20; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80015DA0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015DE0; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x80015E80; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80015F60; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x80015F80; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x80015FC0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x80016080; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80016260; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80016300; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x80016580; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800167A0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x800168E0; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016900; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016920; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016940; // type:function size:0x44 scope:global align:32 +Jac_SetProcessStatus = .text:0x800169A0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016A40; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x80016AC0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016AE0; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016B00; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x80016B80; // type:function size:0x390 scope:global align:32 +Jac_StopSystemSe = .text:0x80016F20; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x80016FA0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80017000; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80017020; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x800170E0; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80017160; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x80017180; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x800171A0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80017300; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80017360; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x800173A0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x800173C0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80017400; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80017440; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x800174C0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80017520; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80017540; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x800175C0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017620; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x80017680; // type:function size:0xEC scope:global align:32 +Jac_UpdateCamera = .text:0x80017780; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x800178C0; // type:function size:0x110 scope:global align:32 +Jac_UpdateEventPosition = .text:0x800179E0; // type:function size:0x54 scope:global align:32 +Jac_PlayEventAction = .text:0x80017A40; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017D20; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x80017DE0; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017E60; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x80017EC0; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80017F60; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x80017FA0; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x80017FE0; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80018040; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x80018120; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x800182C0; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x80018520; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018560; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x800185A0; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018660; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x800186E0; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x800188A0; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x800188E0; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018A60; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018AA0; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x80018B00; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018BA0; // type:function size:0x244 scope:global align:32 +Jac_ChangeBgmMode = .text:0x80018E00; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018E60; // type:function size:0xA8 scope:global align:32 +Jac_BgmFrameWork = .text:0x80018F20; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80019060; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x80019120; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x800192A0; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80019340; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x80019420; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x80019520; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x80019600; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019640; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x80019680; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x800196C0; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019760; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x80019780; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x800197A0; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019C00; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019D00; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019D20; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x80019DA0; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019E20; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019E60; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x80019EA0; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x80019F40; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x8001A000; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x8001A020; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x8001A040; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x8001A0A0; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x8001A100; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x8001A180; // type:function size:0x9C scope:global align:32 +DoSequence__FUlUl = .text:0x8001A220; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x8001A3A0; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x8001A400; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x8001A460; // type:function size:0x484 scope:global align:32 +Jac_DemoSound = .text:0x8001A900; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001A940; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001A9A0; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001AA20; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001AA80; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001AB60; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001AC80; // type:function size:0xA8 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001AD40; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001AD60; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001AD80; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001AF40; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001B000; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001B0E0; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001B140; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001B1E0; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001B260; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001B280; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001B2A0; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001B380; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001B3C0; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B460; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B480; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B4A0; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B540; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B580; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B5C0; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B640; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B660; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B6A0; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B7E0; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B820; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B860; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue_Noblock = .text:0x8001B8C0; // type:function size:0x30 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001B900; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001B960; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001B9E0; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001BA20; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001BA60; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001BAA0; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001BAE0; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001BBC0; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001BBE0; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001BC00; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001BC40; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001BCA0; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001BE00; // type:function size:0x190 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001BFA0; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001BFC0; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001C000; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001C320; // type:function size:0x82C scope:local align:32 +RegisterStreamCallback = .text:0x8001CB60; // type:function size:0x8 scope:global align:32 +Jac_Decode_ADPCM = .text:0x8001CB80; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001CD20; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CE00; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001CE40; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001CFE0; // type:function size:0x54 scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001D040; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001D180; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001D1C0; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001D220; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001D280; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001D2E0; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D340; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D400; // type:function size:0x80 scope:local align:32 +StreamChgVolume = .text:0x8001D480; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D4C0; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D500; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D6A0; // type:function size:0x3C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D6E0; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D720; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001D800; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001D8A0; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001D8C0; // type:function size:0x20 scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001D8E0; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001D9A0; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001DA00; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001DB20; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001DBA0; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DD40; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001DDA0; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001E160; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001E1C0; // type:function size:0x394 scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E560; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E5E0; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001E820; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001E860; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001E8C0; // type:function size:0xFC scope:local align:32 +init_global_constants = .text:0x8001E9BC; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001ED1C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001EE38; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001F104; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001F168; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F42C; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F568; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F5A8; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F618; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001F9BC; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001FB54; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001FB9C; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x8001FF6C; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x800203E8; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x8002052C; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020600; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x800206DC; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x80020768; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020804; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x800209B0; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x80020B4C; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80020DF8; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x800217F8; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021C14; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x80022480; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022944; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x80022AA8; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022C00; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x80023030; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x8002346C; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x8002348C; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x800234B0; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x80023524; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x80023988; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x80023E98; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x80023EBC; // type:function size:0x5A8 scope:global align:4 +_Error__FPce = .text:0x80024464; // type:function size:0x9C scope:local align:4 +reset__8AyuStackFi = .text:0x80024500; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x800245BC; // type:function size:0x14C scope:global align:4 +pop__8AyuStackFv = .text:0x80024708; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x8002475C; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x800247D0; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x80024838; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x800249D0; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x80024AF0; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024C04; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024C1C; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x80024C50; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024D28; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024D30; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024D78; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x80024E1C; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80024E20; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80024E24; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x80024E2C; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80024E34; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x80024E64; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x80024E68; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x80024E94; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x80024EC0; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x80024EEC; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x80024EF0; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x80024EF8; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x80024EFC; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x80024F04; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x80024F3C; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x80024F74; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x80024FAC; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80024FE4; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x80025060; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x80025098; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x8002513C; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x80025174; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x800251AC; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x800251E4; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x8002521C; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x80025258; // type:function size:0xD4 scope:global align:4 +read__6StreamFPvi = .text:0x8002532C; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x80025330; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x80025334; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x8002533C; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x80025344; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x80025348; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x8002534C; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x80025354; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x800253EC; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x800254AC; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x80025534; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x80025578; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x8002567C; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x800256AC; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x800256B4; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x800256E0; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x800256E8; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x80025744; // type:function size:0x24 scope:global align:4 +_Error__FPce = .text:0x80025768; // type:function size:0x9C scope:local align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x80025804; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x80025924; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x80025DBC; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x80025FB4; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x80026454; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x8002665C; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x80026A0C; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x80026D04; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x800272A8; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x80027490; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x800274A8; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x800275C8; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x8002761C; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x80027620; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x80027628; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027860; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027980; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027BA8; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x80027E78; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x80027EA4; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x80027EB0; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x80027F48; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80028024; // type:function size:0xE0 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x80028104; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x8002815C; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x80028170; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x800281A4; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x800281D4; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x8002839C; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x800283A8; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x800283F8; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x80028404; // type:function size:0x70 scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x80028474; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x8002848C; // type:function size:0x1A4 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x80028630; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x800286D0; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x8002876C; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x8002889C; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x800288F4; // type:function size:0x3B0 scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028CA4; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x80028E4C; // type:function size:0x200 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x8002904C; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x800290F8; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x800293B4; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x800295B0; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x80029720; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x80029834; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x80029838; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x800298B4; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x800298B8; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x800298BC; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x800298C0; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x800298C8; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x800298D0; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x800298D8; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x800298DC; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x80029958; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029988; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x8002998C; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x80029B8C; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029BA0; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029C84; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x80029E0C; // type:function size:0xD0 scope:global align:4 +_Error__FPce = .text:0x80029EDC; // type:function size:0x9C scope:local align:4 +read__8DispListFR18RandomAccessStream = .text:0x80029F78; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x8002A078; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x8002A1B4; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x8002A248; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x8002A358; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x8002A36C; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x8002A410; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A6EC; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A738; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002A8FC; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002A978; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002ACAC; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002AF10; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002BC5C; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002BCFC; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002BEF0; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002BF2C; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002C29C; // type:function size:0x188 scope:global align:4 +detach__8AnimDataFv = .text:0x8002C424; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C460; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C470; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C6CC; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002CAA0; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002CAD4; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D560; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D6B4; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002D7C0; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002DBDC; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002E8C0; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002EA14; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002EC34; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002ED00; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002F064; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002F0B4; // type:function size:0xF4 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002F1A8; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002F390; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F69C; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002F808; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002F8CC; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002F944; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002FC50; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002FC54; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002FC60; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002FD0C; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x80030484; // type:function size:0x1A0 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x80030624; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x80030A30; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030A8C; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030B58; // type:function size:0x25BC scope:global align:4 +__ct__9CollGroupFv = .text:0x80033114; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x8003312C; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x80033210; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x80033264; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x80033278; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x800335A4; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x8003369C; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x8003384C; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x800338AC; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x800338F8; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x800338FC; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x80033B44; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x80033D9C; // type:function size:0xBA0 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x8003493C; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034A8C; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x80034B74; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x80034D54; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x80034E30; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80034FF4; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x80035024; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x80035034; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x8003506C; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x800350A0; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x80035134; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x800351A8; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x80035350; // type:function size:0x32C scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x8003567C; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x8003580C; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x8003594C; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035A44; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x80035AA4; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035AD4; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035AD8; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035ADC; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x80035AE0; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035AE4; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035AE8; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035AEC; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x80035AF0; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035AF4; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035B24; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x80035BAC; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x80035BC0; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80035FE0; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x800361AC; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x800364FC; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x80036680; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x80036804; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x800371A4; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x800371C0; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x80037220; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x800375EC; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x800375F0; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x800375F4; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x80037694; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037740; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x800377D4; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037898; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x80037944; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x80037E28; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x80037ECC; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80037FB8; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x8003808C; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x8003810C; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x8003818C; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x8003820C; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x80038370; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x80038610; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x8003863C; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x800386B0; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x80038700; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x800388BC; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x80038980; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80038FC4; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x800390AC; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x8003930C; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x800394B4; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x80039524; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x80039550; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x80039614; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003AED8; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B700; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003D49C; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003D904; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003DE44; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003DE90; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003DF50; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003DFBC; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003E15C; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E17C; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003E318; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E4C4; // type:function size:0x318 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003E7DC; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003E8A0; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003EBA0; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003ECA0; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003ED24; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003EE50; // type:function size:0x4 scope:local align:4 +_Error__FPce = .text:0x8003EE54; // type:function size:0x9C scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003EEF0; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003EF20; // type:function size:0x144 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003F064; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003F070; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003F0D8; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003F0DC; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003F0F0; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003F124; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003F134; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003F1C4; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003F2B8; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003F2C0; // type:function size:0x1C0 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003F480; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F520; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F5C4; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F680; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F738; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003F760; // type:function size:0xB4 scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003F814; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003F89C; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003F8E4; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003F9B8; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003F9C8; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003FAD0; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003FB38; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003FB54; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003FB60; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003FB98; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003FC74; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x8003FEC0; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x80040420; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x80040424; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x8004042C; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x80040488; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x800404D0; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x80040514; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x80040564; // type:function size:0xEC scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x80040650; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x80040654; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x80040658; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x8004065C; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x80040660; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x80040664; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x80040668; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x80040698; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x8004069C; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x800406CC; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x800406D0; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x80040708; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x80040778; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x80040798; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x80040834; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x8004085C; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x800408C8; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x80040924; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040950; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x800409CC; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040A30; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x80040A6C; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040A70; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x80040A74; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x80040A7C; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x80040A8C; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x80040A9C; // type:function size:0x4 scope:global align:4 +_stop__6TimersFPc = .text:0x80040AA0; // type:function size:0x4 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x80040AA4; // type:function size:0x4 scope:global align:4 +reset__10ControllerFUl = .text:0x80040AA8; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x80040ACC; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x80040B68; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x80040B94; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x80040BCC; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x80040C04; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x80040C3C; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x80040C74; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x80040D24; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x80040E10; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x80040E50; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80040FC4; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80041014; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x800411A8; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x800414CC; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x80041580; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x8004167C; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x800416E8; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x800426A4; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x80042B10; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x80042D4C; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x80042E9C; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x80043104; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x80043140; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x800432BC; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x8004340C; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x800434DC; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x800439E4; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x80043A1C; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x80043AF4; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80043B88; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x80043C1C; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x80043C9C; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x80043D10; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x80043D6C; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x80043E04; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80043EB0; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x80043F2C; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x80043F3C; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x80043F44; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x80043F4C; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x80043F54; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80043F8C; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80043FBC; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80043FE0; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x80044088; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x800440AC; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x800440D8; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x800440EC; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80044100; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x80044194; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x80044250; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x80044254; // type:function size:0x38 scope:global align:4 +_Error__FPce = .text:0x8004428C; // type:function size:0x9C scope:local align:4 +__ct__7TextureFv = .text:0x80044328; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x80044398; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x8004446C; // type:function size:0x188 scope:global align:4 +detach__7TextureFv = .text:0x800445F4; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x80044600; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x80044718; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x800447FC; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x8004490C; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x8004498C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x80044990; // type:function size:0x9C scope:local align:4 +openFile__6SystemFPcbb = .text:0x80044A2C; // type:function size:0x278 scope:global align:4 +initSoftReset__6SystemFv = .text:0x80044CA4; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80044CEC; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80044DE0; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80044E04; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x80044E28; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x80044E88; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80044EE0; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x8004501C; // type:function size:0x3AC scope:global align:4 +read__9DVDStreamFPvi = .text:0x800453C8; // type:function size:0xAC scope:weak align:4 +getPending__9DVDStreamFv = .text:0x80045474; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x8004547C; // type:function size:0x648 scope:local align:4 +hardReset__6SystemFv = .text:0x80045AC4; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x80045BD8; // type:function size:0xF8 scope:global align:4 +initBigFont__Fv = .text:0x80045CD0; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x80045E40; // type:function size:0x180 scope:global align:4 +Initialise__6SystemFv = .text:0x80045FC0; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x80046458; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x8004645C; // type:function size:0x4C scope:global align:4 +halt__6SystemFPciPc = .text:0x800464A8; // type:function size:0x30 scope:global align:4 +loadFunc__FPv = .text:0x800464D8; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x80046820; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80046824; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80046828; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x800468BC; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x800468F0; // type:function size:0x8C scope:global align:4 +doneDMA__FUl = .text:0x8004697C; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x800469C8; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x800469D8; // type:function size:0x144 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x80046B1C; // type:function size:0xEC scope:global align:4 +freeBuffer__FUl = .text:0x80046C08; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x80046CC8; // type:function size:0x110 scope:global align:4 +dvdFunc__FPv = .text:0x80046DD8; // type:function size:0x228 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x80047000; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80047034; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x8004708C; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x800470EC; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x80047208; // type:function size:0x3C scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x80047244; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x80047274; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80047318; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80047320; // type:function size:0x7C scope:weak align:4 +_Error__FPce = .text:0x8004739C; // type:function size:0x9C scope:local align:4 +alloc__6SystemFUl = .text:0x80047438; // type:function size:0x1CC scope:global align:4 +__nwa__FUli = .text:0x80047604; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x80047648; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x8004764C; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x80047650; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80047714; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80047734; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x8004775C; // type:function size:0x1F8 scope:global align:4 +_Error__FPce = .text:0x80047954; // type:function size:0x9C scope:local align:4 +__ct__11DGXGraphicsFb = .text:0x800479F0; // type:function size:0x2C0 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x80047CB0; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x80047D44; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x80047DD8; // type:function size:0x68 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x80047E40; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x80047E80; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x80047EC0; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x80047EC8; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x80047ED0; // type:function size:0x78 scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x80047F48; // type:function size:0x4E4 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x8004842C; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x800485D8; // type:function size:0x50 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x80048628; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x80048658; // type:function size:0xCC scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80048724; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x80048794; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x80048818; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80048820; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x8004884C; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x8004889C; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x800488F8; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x80048970; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80048A10; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x80048BE0; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x80048F24; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x80048FBC; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x80049158; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x80049194; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x8004922C; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x8004925C; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x80049260; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x80049330; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x80049498; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x800494EC; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x800495E4; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x8004972C; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x80049F90; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x8004A164; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x8004A3C4; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x8004A608; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x8004A6B8; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x8004A754; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x8004A760; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x8004A7C0; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x8004A7CC; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x8004A800; // type:function size:0x80 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x8004A880; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x8004A8C0; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004AA24; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004AE5C; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004AF14; // type:function size:0x354 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004B268; // type:function size:0x29C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004B504; // type:function size:0x140 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004B644; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004B738; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004B95C; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BD34; // type:function size:0x238 scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BF6C; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004C134; // type:function size:0x488 scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C5BC; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C798; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004C944; // type:function size:0x404 scope:global align:4 +directErase__11DGXGraphicsFR8RectAreab = .text:0x8004CD48; // type:function size:0x108 scope:global align:4 +__ct__5ShapeFv = .text:0x8004CE50; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004CE8C; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004CFC8; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004CFCC; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004CFD0; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004CFD4; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004CFD8; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004D004; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004D038; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004D13C; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004D238; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004D804; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004DDB0; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004DE60; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004DE70; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004DEA4; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004DED8; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004DEF4; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004DF34; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004DF68; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004DF9C; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004DFD0; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004E00C; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004E268; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004E2FC; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004E608; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004E60C; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004E7C8; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004E818; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8004F5A8; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x8004F614; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x8004F960; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x8004FCF8; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x8004FEB0; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x8004FF90; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x8004FF94; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x8005017C; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x800502B8; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x800502C0; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x80050378; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x8005052C; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x800505AC; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x80050694; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x80050700; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x80050710; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x80050714; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x8005071C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x80050720; // type:function size:0x9C scope:local align:4 +checkAnimData__8AnimInfoFv = .text:0x800507BC; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x80050898; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x80050B14; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x80050B5C; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x80050B80; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x80050BA4; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x80050BC8; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80050BEC; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x80050C24; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x80050C5C; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x80050C94; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x80050F8C; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x80050FAC; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x80050FBC; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x8005103C; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x80051270; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x8005127C; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x8005129C; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x80051484; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x80051510; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x80051530; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x80051708; // type:function size:0x22C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x80051934; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80051938; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x80051968; // type:function size:0x80 scope:global align:4 +animate__8AnimatorFf = .text:0x800519E8; // type:function size:0x24C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80051C34; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x80051C3C; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051C44; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051C4C; // type:function size:0x8 scope:weak align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80051C54; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x80051DA4; // type:function size:0x258 scope:global align:4 +setTime__10WorldClockFf = .text:0x80051FFC; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x800520A4; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x8005219C; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x8005222C; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x8005228C; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x800522EC; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x8005234C; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x800523AC; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x8005240C; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x8005246C; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x8005250C; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x800525B8; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x80052664; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x80052688; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x800527CC; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80052868; // type:function size:0x61C scope:global align:4 +Initialise__12GameHiscoresFv = .text:0x80052E84; // type:function size:0xC8 scope:weak align:4 +softReset__8GameFlowFv = .text:0x80052F4C; // type:function size:0x548 scope:global align:4 +__ct__4NodeFPc = .text:0x80053494; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x80053500; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x80053524; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x80053550; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80053620; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x80053680; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x80053684; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x800536B4; // type:function size:0x1CC scope:local align:4 +Initialise__9GamePrefsFv = .text:0x80053880; // type:function size:0x84 scope:weak align:4 +__ct__17GameRecChalCourseFv = .text:0x80053904; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80053920; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x8005392C; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80053938; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x8005394C; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80053950; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x80053AB8; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x80053E30; // type:function size:0x52C scope:global align:4 +__sinit_game_cpp = .text:0x8005435C; // type:function size:0xF0 scope:local align:4 +openStage__9PlayStateFi = .text:0x8005444C; // type:function size:0x40 scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x8005448C; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x800544CC; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x8005450C; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x800545A8; // type:function size:0xB8 scope:global align:4 +setChildMode__9GamePrefsFb = .text:0x80054660; // type:function size:0x54 scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x800546B4; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR17GameChalQuickInfo = .text:0x8005471C; // type:function size:0x174 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x80054890; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x80054BDC; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x80054D54; // type:function size:0xB8 scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x80054E0C; // type:function size:0x330 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x8005513C; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x80055230; // type:function size:0xF4 scope:global align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x80055324; // type:function size:0x190 scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x800554B4; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80055738; // type:function size:0x1C scope:global align:4 +init__16GameSetupSectionFv = .text:0x80055754; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x80055758; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x80055768; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x80055770; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x80055778; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x80055780; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x80055788; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x800557DC; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x8005582C; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80055A68; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x80055D00; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80055EF8; // type:function size:0x4 scope:weak align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x80055EFC; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x80056264; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80056534; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x80056640; // type:function size:0x46C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x80056AAC; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80056D40; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x80057068; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x8005728C; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x80057290; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x800572C0; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x800572F0; // type:function size:0x9C scope:local align:4 +createMenuWindow__Fv = .text:0x8005738C; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x800574A4; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x80057654; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80057710; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80057828; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x80057A6C; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x80057A70; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x80057B98; // type:function size:0x62C scope:global align:4 +message__13GameInterfaceFii = .text:0x800581C4; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x800581C8; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x80058240; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x800584D4; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80058834; // type:function size:0x474 scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x80058CA8; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x80058EF8; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x80059260; // type:function size:0x430 scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x80059690; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x800598E8; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x80059A24; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x80059AE4; // type:function size:0x43C scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x80059F20; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x80059F6C; // type:function size:0x724 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x8005A690; // type:function size:0x160 scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x8005A7F0; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x8005A9A4; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005A9C4; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x8005A9C8; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x8005A9CC; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x8005A9D0; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005AA24; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005AB5C; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005AB68; // type:function size:0x83C scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005B3A4; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005B3A8; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005B3AC; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005B3E8; // type:function size:0x11C scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005B504; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005B5CC; // type:function size:0x78 scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005B644; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005B650; // type:function size:0x74 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005B6C4; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005B6C8; // type:function size:0x298 scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005B960; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005B9E0; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005B9E4; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005B9F0; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005BA4C; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005BA7C; // type:function size:0x4BC scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005BF38; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005BF3C; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005BFD8; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005C028; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005C02C; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005C17C; // type:function size:0x204 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005C380; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005C5F0; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005C6E0; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005C734; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005C774; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005C7DC; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005C83C; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005C914; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005C944; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005D80C; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005D954; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005D984; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005D988; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005D9C8; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005DA30; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005DAC0; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005DB00; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005DB04; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005DB0C; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005DDB4; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005DDC8; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005DF18; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005DF2C; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005DF48; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005DF4C; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005DF80; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005DF84; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005DF88; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005DF8C; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005DF90; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005DF94; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005DF98; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005E160; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005E1F4; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005E2BC; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005E2C0; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005E308; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005E34C; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005E378; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005E39C; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005E3BC; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005E550; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005E6D4; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005E824; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005E840; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005E85C; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005EAB4; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x8005ECB0; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x8005F2BC; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8005F320; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x8005F38C; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x8005F434; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x8005F438; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x8005F50C; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005F510; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005F550; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005F588; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005F5C8; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x8005F600; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x8005F658; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x8005F690; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x8005F7F0; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x8005F830; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x8005F87C; // type:function size:0x4BC scope:global align:4 +idle__11PlugPikiAppFv = .text:0x8005FD38; // type:function size:0x144 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x8005FE7C; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x8005FFC4; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x80060028; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x80060030; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x800600A4; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x80060130; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x80060168; // type:function size:0x87C scope:global align:4 +update__17TitleSetupSectionFv = .text:0x800609E4; // type:function size:0x734 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x80061118; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x800619D4; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80061AC0; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80061AF0; // type:function size:0x180 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x80061C70; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x80061D60; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x80061F74; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x80062060; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x800622C8; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80062694; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x800626D8; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x8006276C; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x800627B4; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x800627F0; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80062854; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80062888; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x80062A44; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80062A68; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x80062AA4; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x80062C4C; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x80062C78; // type:function size:0x184 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062DFC; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062E2C; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062E5C; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80063014; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x800631CC; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x80063A34; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x800642DC; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x800643D4; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x800647BC; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x80064968; // type:function size:0x1E0 scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x80064B48; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x80064DB0; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x80065154; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x8006568C; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x80065D3C; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x80065D54; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x80065D84; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x80066148; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x80066168; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x8006616C; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x80066268; // type:function size:0x1D4 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x8006643C; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x80066444; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x80066538; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x800666D4; // type:function size:0x438 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x80066B0C; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80066BA0; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x80066C00; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x8006738C; // type:function size:0x160 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x800674EC; // type:function size:0xEDC scope:global align:4 +updatePos__6MapMgrFff = .text:0x800683C8; // type:function size:0x270 scope:global align:4 +getLight__6MapMgrFff = .text:0x80068638; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x80068640; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x800687A4; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80068908; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x80068A78; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x80068BD4; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x80068EC0; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x800696EC; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x800696F0; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x800696F4; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x80069CC4; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x80069D34; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x80069DD0; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x80069F04; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x80069F30; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x80069F6C; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x80069FA4; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x80069FE0; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x80069FE4; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x80069FE8; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x80069FEC; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80069FF4; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x80069FF8; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x80069FFC; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8006A000; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x8006A038; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x8006A03C; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x8006A044; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x8006A09C; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x8006A0F4; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x8006A14C; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x8006A1A0; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x8006A244; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x8006A2E8; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x8006A338; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x8006A388; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x8006A3D8; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x8006A424; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x8006A478; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x8006A4CC; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x8006A520; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x8006A574; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x8006A5CC; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x8006A624; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006AA58; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006AEB0; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006AF04; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006AF5C; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006AFB4; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006B6E0; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006BC9C; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006BCF8; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006BD54; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006D8D4; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006DE00; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006E930; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x8006EC44; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x8006EC9C; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x8006ECF4; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x8006ED78; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x8006EDFC; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x8006F834; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x8006F888; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x8006F90C; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x800701CC; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x800701FC; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x8007022C; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x8007025C; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x8007028C; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x800702BC; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x80070478; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x80070628; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x80070758; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x80070E78; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x80070F2C; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x80070FBC; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x8007105C; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x80071194; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x80071218; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x8007178C; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80071850; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x800718F8; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x80071A88; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x80071B4C; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x80071D08; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x80072AD4; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x800739E4; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80073A00; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80073A04; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x80073B70; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x80074168; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x80074174; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x80074180; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x800742FC; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x8007436C; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x800744A0; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x800744D8; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80074694; // type:function size:0xFC scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80074790; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80074904; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x800749B4; // type:function size:0x1DC scope:global align:4 +loadOptions__10MemoryCardFv = .text:0x80074B90; // type:function size:0xA4 scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x80074C34; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80074D08; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x80074DB4; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x800751D8; // type:function size:0x128 scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x80075300; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x80075370; // type:function size:0x3B0 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x80075720; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80075930; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x80075D44; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x80075D54; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x80076068; // type:function size:0x454 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x800764BC; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x80076528; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x8007655C; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80076788; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x80076CFC; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x80076D9C; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x800772C8; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x80077308; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x800776A0; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x800776D4; // type:function size:0x9C scope:local align:4 +__ct__11MoviePlayerFv = .text:0x80077770; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x8007782C; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x8007790C; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x8007799C; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80077A9C; // type:function size:0x4B0 scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x80077F4C; // type:function size:0xF4 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x80078040; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x80078164; // type:function size:0x64 scope:global align:4 +update__11MoviePlayerFv = .text:0x800781C8; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80078594; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x80078640; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x8007865C; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x8007875C; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x800787BC; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80078830; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x80078C20; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x80078C54; // type:function size:0x250 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x80078EA4; // type:function size:0x148 scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x80078FEC; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x800796E4; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x800798CC; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x80079D68; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079D94; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x80079D98; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x80079DE8; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x80079ED8; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x80079EE0; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079EE4; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x80079EEC; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079F48; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x80079F4C; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x80079F50; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x8007A1D8; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x8007A5A0; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x8007A828; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007AC38; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007B048; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007B380; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007B6B8; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007B6CC; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007B6E0; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007B71C; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007B758; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007B8E0; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007BA60; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007BA74; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007BAB0; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007BC80; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007BC94; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007BCD0; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007BE98; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007BF60; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007C048; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007C0B8; // type:function size:0x44 scope:global align:4 +_Error__FPce = .text:0x8007C0FC; // type:function size:0x9C scope:local align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007C198; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007C338; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007C3F8; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007C464; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007C4E4; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007C4E8; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007C55C; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007C560; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007C680; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007C734; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007C7B0; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007C7B8; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007C8C0; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007C91C; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007CA08; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007CA10; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007CB9C; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007CBE0; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007CBE8; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007CD70; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007CD78; // type:function size:0x330 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007D0A8; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007D0B0; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007D0F8; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007D124; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007D25C; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007D264; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007D26C; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007D274; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007D27C; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007D284; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007D28C; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007D294; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007D29C; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007D2A4; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007D2AC; // type:function size:0x9C scope:local align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007D348; // type:function size:0x58 scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007D3A0; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007D4C0; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007D4FC; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007D600; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007D608; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007D8C4; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007DA20; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007DA60; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007DAA0; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007DAE0; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007DB20; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007DB50; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007DB80; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007DBB0; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007DBF0; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007DBF4; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007DBF8; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007DBFC; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007DC00; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007DC04; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007DC08; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007DC0C; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007DC10; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007DC14; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007DC18; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007DC1C; // type:function size:0x118 scope:weak align:4 +_Error__FPce = .text:0x8007DD34; // type:function size:0x9C scope:local align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007DDD0; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007DE74; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007DEE0; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007DF40; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007DFF4; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007DFF8; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007DFFC; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007E02C; // type:function size:0x9C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007E0C8; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007E0EC; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007E154; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007E15C; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007E244; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007E33C; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007E368; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007E440; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007E444; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007E44C; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007E450; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007E4CC; // type:function size:0x114 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007E5E0; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007E5E8; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007E6F4; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007E798; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007E79C; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007E810; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007E8B0; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007E8E8; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007E8EC; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007E8F0; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007E8F4; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007E8FC; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007E904; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007E90C; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007E910; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007E914; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007E91C; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007E924; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007E92C; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007E930; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007E934; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007E938; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007E940; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007E948; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007E950; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007E958; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007E95C; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007E960; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007E964; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007E968; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007E984; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007E9A0; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007E9A8; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007E9B0; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007E9B8; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007E9D0; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007E9D8; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007E9E0; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007E9E8; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007EA00; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007EA04; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007EA08; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007EA0C; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007EA10; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007EA14; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007EA18; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007EA1C; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007EA20; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007EA24; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007EA2C; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007EA34; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007EA3C; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007EA40; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007EA44; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007EA48; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007EA4C; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007EA50; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007EA54; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007EA58; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007EA5C; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007EA60; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007EA90; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007EA94; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007EAEC; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007EB54; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007EB5C; // type:function size:0x9C scope:local align:4 +getCreature__12FormationMgrFi = .text:0x8007EBF8; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007EC08; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007EC10; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007EC18; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x8007EC34; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x8007ED14; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8007EDBC; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x8007EDC4; // type:function size:0x1FC scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x8007EFC0; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x8007F1B4; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x8007F354; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x8007F654; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x8007F90C; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x8007F9F8; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x8007FC64; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x8007FF60; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x8007FF68; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x8007FF88; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x8008006C; // type:function size:0x9C scope:local align:4 +isEnding__11PlayerStateFv = .text:0x80080108; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x80080160; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x800802FC; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x800804C8; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x800807F8; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x80080824; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x80080894; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x800808D4; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x800808F0; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x80080964; // type:function size:0x58 scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x800809BC; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x800809C4; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x80080A48; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x80080E44; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x80081210; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x80081254; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x80081280; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x800812E8; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x80081368; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x80081388; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x800813A0; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x800813FC; // type:function size:0x15C scope:global align:4 +initCourse__11PlayerStateFv = .text:0x80081558; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x80081708; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x800817D8; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x8008186C; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80081874; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x800819C4; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x800819D8; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x800819E0; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80081A08; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80081A30; // type:function size:0xAC scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80081ADC; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80081AE4; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80081AEC; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80081B3C; // type:function size:0xD0 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x80081C0C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x80081C80; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x80081E70; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x80081F40; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80081FC4; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x8008208C; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x80082198; // type:function size:0x4AC scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x80082644; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x8008269C; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x8008279C; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x800827E8; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x80082AF0; // type:function size:0x9C scope:local align:4 +__ct__9DemoFlagsFv = .text:0x80082B8C; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x80083180; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x800831D8; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x800831EC; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x800832E4; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x80083354; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x800833C4; // type:function size:0xB0 scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x80083474; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x800834A4; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x800834CC; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80083700; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x80083730; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x80083778; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x80083794; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x800837A4; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x800837C8; // type:function size:0x9C scope:local align:4 +demoCheck__4NaviFv = .text:0x80083864; // type:function size:0x6F4 scope:global align:4 +demoCheck__4PikiFv = .text:0x80083F58; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x800841A4; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x800841A8; // type:function size:0x44C scope:global align:4 +_Error__FPce = .text:0x800845F4; // type:function size:0x9C scope:local align:4 +__ct__11ResultFlagsFv = .text:0x80084690; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x8008484C; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x800849C4; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x80084A68; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x80084B04; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80084B54; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x80084B78; // type:function size:0xA0 scope:global align:4 +getDocument__11ResultFlagsFRi = .text:0x80084C18; // type:function size:0x18C scope:global align:4 +dump__11ResultFlagsFv = .text:0x80084DA4; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x80084EB0; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80084EE0; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x80084F70; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x80084FBC; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x8008542C; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x80085450; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x80085460; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x80085484; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x800854E0; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x80085554; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x80085630; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x80085668; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x800856CC; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x800856E8; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x800857D0; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x8008581C; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x800859F8; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x80085AB8; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x80085AF8; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x80085B24; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x80086744; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x800867CC; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x80086844; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x800868BC; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x80086934; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x800869AC; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x80086A24; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x80086A9C; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x80086B14; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80086B8C; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x80086C04; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80086C7C; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80086CC8; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80086D14; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x80086E74; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x80086EAC; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x8008701C; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x800870D4; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x800871E8; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x80087580; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x80087588; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x800875B8; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x800876E4; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x80087770; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x80087774; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x8008779C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x800877A0; // type:function size:0x9C scope:local align:4 +__ct__7MemStatFv = .text:0x8008783C; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x800878BC; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x800878E4; // type:function size:0x130 scope:global align:4 +end__7MemStatFPc = .text:0x80087A14; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x80087A8C; // type:function size:0x34 scope:global align:4 +getInfo__7MemStatFPc = .text:0x80087AC0; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x80087AE4; // type:function size:0x238 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x80087D1C; // type:function size:0x174 scope:global align:4 +_Error__FPce = .text:0x80087E90; // type:function size:0x9C scope:local align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x80087F2C; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80088208; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x800885C8; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x800885F4; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x80088930; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x80088A14; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x80088AF8; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x80088D30; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x80088E28; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x80088F4C; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x80088FA8; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80088FF8; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x8008902C; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x80089054; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x800890B0; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x800890EC; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x80089108; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x80089144; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x80089180; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x800892E4; // type:function size:0x4A4 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x80089788; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x80089DF4; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x80089E98; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x80089F38; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x80089F6C; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x80089FA0; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x8008A160; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x8008A168; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x8008A190; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x8008A7B4; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x8008A7DC; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x8008A810; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x8008A970; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x8008A978; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x8008A9D8; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x8008AB54; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x8008AC84; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x8008AD54; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x8008ADB8; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x8008ADCC; // type:function size:0xC0 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x8008AE8C; // type:function size:0xD8 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x8008AF64; // type:function size:0x8C scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x8008AFF0; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x8008B1AC; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x8008B1F0; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x8008B2E8; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x8008B2EC; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x8008B2F8; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x8008B2FC; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8008B300; // type:function size:0x9C scope:local align:4 +finishFixPosition__8CreatureFv = .text:0x8008B39C; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x8008B3AC; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x8008B3F4; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008B4CC; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008B5A4; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008B5C0; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008B604; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008B628; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008B670; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008B6B8; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008B728; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008B788; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008B860; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008B910; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008B948; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008B980; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008BA74; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008BAE8; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008BB54; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008BBB0; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008BBD0; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008BBF8; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008BD30; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008BD98; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008BDE0; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008BF60; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008BFC4; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008BFF8; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008C03C; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008C234; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008C4F4; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008C564; // type:function size:0x5A0 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008CB04; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008CCF8; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008CDAC; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008CE9C; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008CFB8; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008D6A0; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008D740; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008D748; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008D788; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008DA3C; // type:function size:0x7BC scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008E1F8; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008E28C; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008E378; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008E8B8; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008E8C0; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8008EC0C; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x8008EC60; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x8008ECD0; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8008F438; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x8008F43C; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x8008F4DC; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x8008F544; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x8008F640; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x8008F644; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x8008F648; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x8008F848; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x8008F958; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x800906B8; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x800907B8; // type:function size:0x588 scope:global align:4 +_Error__FPce = .text:0x80090D40; // type:function size:0x9C scope:local align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x80090DDC; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x80090F3C; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x800910B0; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x800911D4; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x800912F0; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x80091358; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x80091368; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x800913B0; // type:function size:0xB4 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x80091464; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x800914A4; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x800917B4; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x80091B00; // type:function size:0x1D4 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80091CD4; // type:function size:0x8C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x80091D60; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x80091E58; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x80091F44; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x80092068; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80092100; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x80092158; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80092188; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x80092254; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x8009225C; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x80092264; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80092280; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x800924D4; // type:function size:0xE4 scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x800925B8; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x800927A4; // type:function size:0x3A4 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x80092B48; // type:function size:0x3E0 scope:global align:4 +updateStickRope__8CreatureFv = .text:0x80092F28; // type:function size:0x514 scope:global align:4 +__ct__12DualCreatureFv = .text:0x8009343C; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x800934D0; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80093504; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x80093564; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x800935B4; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x80093608; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x80093658; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x8009369C; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x80093760; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x80093794; // type:function size:0x200 scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x80093994; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x800939E4; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x800939EC; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x800939F4; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x80093A54; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x80093C1C; // type:function size:0x14C scope:global align:4 +_Error__FPce = .text:0x80093D68; // type:function size:0x9C scope:local align:4 +__ct__11DynParticleFv = .text:0x80093E04; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x80093EDC; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x80093EEC; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x80093EF0; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x80093EF4; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x800940E8; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x800941DC; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x800941F8; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x80094210; // type:function size:0x11C scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x8009432C; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80094394; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80094520; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x8009455C; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x800950C0; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80095270; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80095524; // type:function size:0x4 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80095528; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80095548; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x8009555C; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x800955EC; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80095648; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x8009564C; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x80095670; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x800956E8; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x80095714; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x80095744; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x800958EC; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x800959A4; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x80095AD4; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x80095B70; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x80095C58; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x80095CB0; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x80095E58; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x80095F2C; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x80095FE0; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x80095FE4; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x80095FEC; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x80096034; // type:function size:0x94 scope:global align:4 +_Error__FPce = .text:0x800960C8; // type:function size:0x9C scope:local align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x80096164; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x800961A8; // type:function size:0x58 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80096200; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x80096590; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x80096604; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x800967CC; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x80096A3C; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x80096A78; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80096B08; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x80096B38; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x80096BC8; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x80096BE4; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x80096C1C; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x80096C24; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x80096C6C; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x80096CBC; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x80096D3C; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x800970DC; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x8009715C; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x80097214; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x800972C4; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x800972C8; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x800972CC; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x80097438; // type:function size:0x144 scope:global align:4 +getCentre__6PelletFv = .text:0x8009757C; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x80097598; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x800975E0; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x80097658; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x80097674; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x8009767C; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x80097760; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x800977F4; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x80097968; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x800979D0; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80097A2C; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x80097A98; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x80097BF8; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x80097CD0; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x80097E70; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x80097EE8; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x80097F1C; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x80097F50; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x80097F94; // type:function size:0xFC scope:global align:4 +startCarryMotion__6PelletFf = .text:0x80098090; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x800980D4; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x800980D8; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x800980DC; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x80098140; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x80098144; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x800981DC; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x80098210; // type:function size:0x1FC scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x8009840C; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x80098484; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80098518; // type:function size:0x3CC scope:global align:4 +doAnimation__6PelletFv = .text:0x800988E4; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x80098944; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x80098948; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x800989D0; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x80098A58; // type:function size:0x94C scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x800993A4; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x800993E0; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x800993E4; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x80099434; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x80099454; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x800994C8; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x800997C0; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x8009997C; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x800999E0; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x80099B28; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x80099B80; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x80099BE8; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x80099C60; // type:function size:0x158 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x80099DB8; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x80099E4C; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x80099EA0; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x8009A0F4; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x8009A14C; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x8009A1B8; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x8009A2A8; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x8009A2FC; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x8009A33C; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x8009A3D8; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x8009A410; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x8009A454; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x8009A510; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x8009A5CC; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x8009A6A0; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x8009A77C; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x8009A98C; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x8009A990; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x8009AA14; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x8009AA1C; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x8009AA24; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x8009AA2C; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x8009AA30; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x8009AA34; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009AA38; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009AA40; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x8009AA48; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x8009AA4C; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x8009AA88; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x8009ABA0; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x8009ABA4; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x8009ABA8; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x8009ABAC; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x8009ABB0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x8009ABB4; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x8009ABB8; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x8009ABBC; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x8009ABC0; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x8009ABC4; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x8009ABC8; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x8009ABCC; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009ABD4; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009ABDC; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x8009ABE4; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x8009ABEC; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x8009ABF4; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x8009ABFC; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x8009AD7C; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009AE50; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x8009AEE0; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x8009B020; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8009B058; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8009B0C4; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8009B11C; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x8009B174; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x8009B19C; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x8009B1F8; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x8009B244; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x8009B38C; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009B3C8; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x8009B3D0; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x8009B450; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x8009B4DC; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x8009B530; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x8009B5A0; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x8009B5E0; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x8009B6E0; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009BAE0; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009BB2C; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009BB38; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009BBA8; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009BBD8; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009BBF4; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009BC40; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009BC44; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009BC48; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009BC4C; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009BC94; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009BC98; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009BC9C; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009BCA0; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009BCF0; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009BCF4; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009BD30; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009BD54; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009BDA0; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009BDD0; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009BE00; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009BECC; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009BED0; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009BF2C; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009C4A8; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009C77C; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009C780; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009C7B0; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009C7B4; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8009C7B8; // type:function size:0x9C scope:local align:4 +beginPush__10HinderRockFv = .text:0x8009C854; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009C864; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009C87C; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009C988; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009C98C; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009C9B0; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009CAC0; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009CB14; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009CBA8; // type:function size:0x154 scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009CCFC; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009CD84; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009CD8C; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009CD94; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009CDD8; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009CDFC; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009CE9C; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009CF3C; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009D0A8; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D134; // type:function size:0x244 scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D378; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009D52C; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009D54C; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009D6CC; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009D844; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009D8B8; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009DA1C; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009DA5C; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009DA64; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009DA78; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009DB40; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009DC08; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009DD00; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009E0A8; // type:function size:0xD0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009E178; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009E1EC; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009E204; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009E2C4; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009E3E0; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x8009EC10; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x8009EDA8; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x8009EEFC; // type:function size:0x2E0 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x8009F1DC; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x8009F250; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x8009F334; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x8009F414; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x8009F714; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x8009F8A0; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x8009F920; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x8009F9D0; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x8009FA38; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x8009FAA0; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x8009FB08; // type:function size:0x80 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x8009FB88; // type:function size:0xDC scope:global align:4 +flatten__6BridgeFv = .text:0x8009FC64; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x8009FD08; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x8009FE30; // type:function size:0x3A0 scope:global align:4 +getStagePos__6BridgeFi = .text:0x800A01D0; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x800A0298; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x800A02FC; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x800A03E4; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x800A0444; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x800A04A4; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x800A05A0; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x800A05A8; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x800A05B0; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x800A09D4; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x800A0A74; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x800A0D5C; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x800A0D88; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x800A0D90; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x800A0DA4; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x800A0DB0; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x800A0DB8; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x800A0DC0; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x800A0DC8; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x800A0DD0; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x800A0DD8; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x800A0DDC; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x800A0DE0; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x800A0E4C; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x800A0E54; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x800A0E5C; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x800A0E64; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800A0E6C; // type:function size:0x9C scope:local align:4 +__ct__Q210PathFinder6BufferFv = .text:0x800A0F08; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A0F1C; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x800A0FD0; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x800A1058; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x800A1130; // type:function size:0x36C scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x800A149C; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A1520; // type:function size:0x26C scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x800A178C; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A17A0; // type:function size:0x24C scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x800A19EC; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x800A1A34; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x800A1AE4; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A1B30; // type:function size:0x3DC scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A1F0C; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A2380; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A2AE8; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A2C54; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A2DC0; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A2F3C; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A3078; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A30D4; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A3170; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A3184; // type:function size:0x290 scope:global align:4 +__ct__8WayPointFv = .text:0x800A3414; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A3428; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A355C; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A35A4; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A35D0; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A3660; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A3A1C; // type:function size:0x5BC scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A3FD8; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A423C; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A4768; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A489C; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A4AC0; // type:function size:0x3C0 scope:global align:4 +_Error__FPce = .text:0x800A4E80; // type:function size:0x9C scope:local align:4 +__ct__5SeMgrFv = .text:0x800A4F1C; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A509C; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A50C4; // type:function size:0x90 scope:global align:4 +update__5SeMgrFv = .text:0x800A5154; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A5158; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A5168; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A518C; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A51C4; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A52A8; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A558C; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A5608; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A5654; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A5788; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x800A57AC; // type:function size:0x9C scope:local align:4 +__ct__9SeContextFv = .text:0x800A5848; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A58B8; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A5920; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A59BC; // type:function size:0xD4 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A5A90; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A5AD8; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A5B6C; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A5BC4; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A5CE4; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A5CF8; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A5D70; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A5DE8; // type:function size:0x22C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A6014; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A6040; // type:function size:0x3B0 scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A63F0; // type:function size:0x140 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A6530; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A6578; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A6730; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A6A00; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A6AB8; // type:function size:0x368 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A6E20; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A6E28; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A6F24; // type:function size:0x5C scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A6F80; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A7018; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A704C; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A7080; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A70B4; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x800A70E8; // type:function size:0x9C scope:local align:4 +__ct__13UpdateContextFv = .text:0x800A7184; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A7198; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A71E4; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A7214; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A7260; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A727C; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A72A0; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A72D0; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A7364; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A73F4; // type:function size:0xA4 scope:global align:4 +_Error__FPce = .text:0x800A7498; // type:function size:0x9C scope:local align:4 +getCreature__6CPlateFi = .text:0x800A7534; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A7548; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A7774; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A77A4; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A77AC; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A77B0; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A7970; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A7B2C; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A7BDC; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A7C2C; // type:function size:0x15C scope:global align:4 +validSlot__6CPlateFi = .text:0x800A7D88; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A7DAC; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A81D0; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A84AC; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A8634; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A8868; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A88A0; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800A8B6C; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800A8B74; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800A8B7C; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800A8B94; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800A8BB8; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800A8BC0; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800A8BC8; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800A8BD0; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800A8C24; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800A8C7C; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800A8CF0; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800A8D3C; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800A8DC0; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800A8F50; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800A8F5C; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800A9120; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800A91B4; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A9328; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800A9634; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800A96A0; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800A96A4; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800A96A8; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800A96AC; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800A96B0; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800A96B4; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800A96BC; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800A96E8; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800A96EC; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800A96F0; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800A96F4; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800A96F8; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800A96FC; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800A9700; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800A9704; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800A9708; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800A970C; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800A9710; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800A9714; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A982C; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800A9834; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800A98B4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A98B8; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800A998C; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800A9A44; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800A9A84; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800A9B38; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800A9B3C; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800A9B48; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800A9B4C; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800A9C24; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800A9C90; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800A9CA4; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800A9EA4; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800A9EB8; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800A9FD4; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800AA038; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800AA04C; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800AA0B0; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800AA11C; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800AA124; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800AA1EC; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800AA250; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AA3A0; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800AA49C; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800AA4A8; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800AA4FC; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800AA504; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800AA50C; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800AA848; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800AA8AC; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800AA90C; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800AAAD8; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800AAB74; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800AAB90; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800AADF8; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800ABC64; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800ABCB0; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800ABCDC; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800ABE08; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AC260; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AC2CC; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AC348; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AC350; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800AC358; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800AC460; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800AC554; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800AC5D8; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800AC6E0; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800AC6E4; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800AC75C; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800ACA34; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800ACB38; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800ACC2C; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800ACC38; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800ACDBC; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800ACDC0; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800ACE38; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800ACEF4; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AD1CC; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AD24C; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AD334; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AD548; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AD670; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AD674; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AD698; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AD69C; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AD6A4; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AD6A8; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AD6AC; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AD72C; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AD764; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800AD844; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800AD860; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AD864; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800AD87C; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800AD8FC; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800AD988; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800ADA70; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800ADD58; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800ADD5C; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800ADE60; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800ADEE0; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800ADF60; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800ADFC4; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AE044; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AE0A8; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AE10C; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AE120; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AE134; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AE148; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AE19C; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AE1DC; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AE27C; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AE2E0; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AE40C; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AE4C0; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AE4C8; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AE4EC; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AE564; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AE5D0; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800AE5D8; // type:function size:0x9C scope:local align:4 +__ct__6ActBouFP4Piki = .text:0x800AE674; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AE6E0; // type:function size:0xBC scope:global align:4 +exec__6ActBouFv = .text:0x800AE79C; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AE7E8; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800AE9F8; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800AEB78; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800AEC80; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800AED28; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800AED8C; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800AEE38; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800AEF14; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800AEF80; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800AF014; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AF03C; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800AF0EC; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800AF110; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800AF470; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800AF550; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800AF85C; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800AF92C; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800AFF94; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800B0014; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800B0028; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800B0098; // type:function size:0x154 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800B01EC; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B02B0; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800B0440; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800B0588; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800B05A8; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800B0670; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800B0700; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800B07F4; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800B0AD8; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800B0AF4; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800B0AF8; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B0B64; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800B0B6C; // type:function size:0x9C scope:local align:4 +turnOver__12ActTransportFv = .text:0x800B0C08; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800B0E98; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800B0FE8; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800B1178; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800B126C; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800B13CC; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800B152C; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B1578; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800B170C; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800B1BFC; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B233C; // type:function size:0x694 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B29D0; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B2B38; // type:function size:0x8DC scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B3414; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B3CBC; // type:function size:0x34C scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B4008; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B41C0; // type:function size:0x1E8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B43A8; // type:function size:0xA0 scope:global align:4 +crInit__12ActTransportFv = .text:0x800B4448; // type:function size:0x524 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B496C; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B49EC; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B4D18; // type:function size:0x96C scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B5684; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B5E48; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B6544; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B65C4; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800B65D8; // type:function size:0x9C scope:local align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B6674; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B6718; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B6798; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B6804; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B6884; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B69AC; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B69B8; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B6B78; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B6E00; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B765C; // type:function size:0xBC scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B7718; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B771C; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B779C; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B77B0; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B781C; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B7820; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B78F4; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B7934; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B7B70; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800B7BD4; // type:function size:0x9C scope:local align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B7C70; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B7D6C; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B7D74; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B7DA0; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B7EFC; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B7FE0; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B8014; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B8130; // type:function size:0x110 scope:global align:4 +exec__8ActCrowdFv = .text:0x800B8240; // type:function size:0x1684 scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800B98C4; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800B991C; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800B9920; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800B99A0; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800B99A8; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800B99BC; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800B9A10; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800B9B88; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800B9BE4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B9BE8; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800B9BEC; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800BA100; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800BA16C; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BA174; // type:function size:0x9C scope:local align:4 +__ct__8ActEnterFP4Piki = .text:0x800BA210; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800BA270; // type:function size:0x204 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800BA474; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800BA540; // type:function size:0x108 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800BA648; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800BA6A0; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800BA84C; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800BAA80; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800BAAA4; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800BAB08; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800BAB84; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800BAB88; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800BAC80; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800BACC0; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800BAF8C; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800BAFE4; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800BB048; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800BB0A8; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800BB168; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800BB194; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800BB47C; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800BB53C; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800BB5A0; // type:function size:0x9C scope:local align:4 +__ct__7ActMineFP4Piki = .text:0x800BB63C; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800BB6BC; // type:function size:0x78 scope:global align:4 +initWatch__7ActMineFv = .text:0x800BB734; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800BB7C4; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800BB910; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800BBB10; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BBB14; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800BBBD4; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BBC54; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800BBC68; // type:function size:0x9C scope:local align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BBD04; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800BC030; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800BC08C; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800BC1D4; // type:function size:0x10C scope:global align:4 +cleanup__12ActFormationFv = .text:0x800BC2E0; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800BC32C; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BC9D0; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BCA3C; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BCA44; // type:function size:0x9C scope:local align:4 +__ct__7ActFreeFP4Piki = .text:0x800BCAE0; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BCBAC; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BCC7C; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BCE40; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BD134; // type:function size:0xD4 scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BD208; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BD20C; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BD2FC; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BD3D4; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BD454; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BD45C; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BD470; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BD4BC; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BD538; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BD60C; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BD64C; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BD9C4; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BDA28; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BDA3C; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BDAC0; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BDB84; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BDCA0; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BDCAC; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BE3C8; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BE5BC; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BE6B8; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BE910; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800BEB08; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800BEB90; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800BEC18; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800BEDDC; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800BEFA0; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800BF004; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800BF0E4; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800BF264; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800BF314; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800BF3FC; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800BF43C; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BF598; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800BF6B8; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800BF6F0; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800BF764; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800BF7E4; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BF858; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800BF86C; // type:function size:0x9C scope:local align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800BF908; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800BF9D4; // type:function size:0x54 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800BFA28; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800BFA8C; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800BFB10; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800BFB84; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800BFB90; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800BFBD0; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800BFBD4; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800BFC48; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800BFD48; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800BFF98; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800C0074; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800C00C4; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C0138; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800C01B0; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800C020C; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800C02A0; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800C04E0; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800C054C; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C05C0; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800C05C8; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800C0668; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800C0700; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800C07CC; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800C08DC; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800C0A18; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C0C2C; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800C0F00; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800C0F38; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C0FB8; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800C0FCC; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800C106C; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800C10F4; // type:function size:0x478 scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800C156C; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800C172C; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800C1738; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800C1910; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800C1A74; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800C1BE0; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800C1EAC; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800C1EB8; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800C1F3C; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800C2088; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800C22C4; // type:function size:0x200 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C24C4; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800C24FC; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800C2500; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800C255C; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C2968; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C2CA8; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C2D14; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C2E8C; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C2ECC; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C2F30; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C2FB0; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C2FC4; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C32BC; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C3348; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C334C; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C3434; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C3438; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C37F4; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C3838; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C389C; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C3934; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C3978; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C3AC4; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C3B30; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C3B94; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C3C78; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C3D04; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C3D7C; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C3F00; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C406C; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C408C; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C4340; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C4344; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C43C4; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C43D8; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C4438; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C45B0; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C4620; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C46BC; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C4720; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C4840; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C48F0; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C4A68; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C4C34; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C4C74; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C4CB4; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C4D60; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C4DBC; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C4E44; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C5120; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C518C; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C5200; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C5208; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C520C; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C52D0; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C52D4; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C541C; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C5464; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C549C; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C55F8; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C565C; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C56B0; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C5708; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C5768; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C5794; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C5804; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C59E4; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C59F0; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C5C04; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C5C90; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C5D70; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C6024; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C6090; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C6098; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C62D8; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C6384; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C63BC; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C6434; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C64B4; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C64C0; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C64C8; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C65A8; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C66F4; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C67D4; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C6924; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C6A48; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C6A58; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C6AC8; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C6BA4; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C71F0; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C7278; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C7360; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C78F8; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C797C; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C79C8; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C7A14; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C7A60; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C7AF0; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C7B7C; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C7BB8; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C7C00; // type:function size:0x88 scope:weak align:4 +_Error__FPce = .text:0x800C7C88; // type:function size:0x9C scope:local align:4 +initGame__10PikiInfMgrFv = .text:0x800C7D24; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C7D4C; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C7DC4; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C7E34; // type:function size:0x94 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C7EC8; // type:function size:0x9C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C7F64; // type:function size:0x94 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C7FF8; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C8024; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C8080; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C8084; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C80E0; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C80E4; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C8184; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C8278; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C833C; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C8454; // type:function size:0x60 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C84B4; // type:function size:0x60 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C8514; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C8684; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C8754; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C87AC; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C87F4; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C8818; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C883C; // type:function size:0xCC scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C8908; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800C89D4; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800C8A00; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800C8AD4; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800C8BB4; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800C8C14; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800C8C44; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800C8CA8; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800C8D30; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800C8D50; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800C8D54; // type:function size:0x34 scope:local align:4 +_Error__FPce = .text:0x800C8D88; // type:function size:0x9C scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800C8E24; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800C9124; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800C91D0; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800C91D4; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800C9274; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800C9278; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800C934C; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800C9354; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800C9384; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800C9388; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800C93CC; // type:function size:0x380 scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800C974C; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800C9918; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800C9DD8; // type:function size:0x71C scope:global align:4 +crGetPoint__4PikiFi = .text:0x800CA4F4; // type:function size:0xD0 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800CA5C4; // type:function size:0x80 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800CA644; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800CA6A4; // type:function size:0x100 scope:global align:4 +hasBomb__4PikiFv = .text:0x800CA7A4; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800CA7C0; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800CA850; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800CA8B4; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800CA9F0; // type:function size:0x418 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800CAE08; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800CAE10; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800CAE5C; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800CAE80; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800CAE9C; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800CAEA8; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800CAEC0; // type:function size:0x1324 scope:global align:4 +initColor__4PikiFi = .text:0x800CC1E4; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800CC2BC; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800CC2EC; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800CC33C; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800CC3D4; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800CC470; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800CC508; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800CC6B0; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800CC728; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800CC750; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800CC7E8; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800CC824; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800CC898; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800CC90C; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800CC998; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800CC99C; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800CCA78; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CCA7C; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CCB58; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CCBBC; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CCC74; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CCC7C; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CCD8C; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CCE50; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CCE94; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CCEEC; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CCEF0; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CCF70; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CD050; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CD088; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CD344; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CD578; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CD5C0; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CD750; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CE2C8; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CE2D0; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CE6D0; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CE744; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CE808; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CE8E4; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CE904; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800CE948; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800CE9B0; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800CEC9C; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800CECA0; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800CECD8; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800CECEC; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800CF038; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800CF040; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800CF090; // type:function size:0x484 scope:global align:4 +realAI__4PikiFv = .text:0x800CF514; // type:function size:0x560 scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800CFA74; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800CFAB0; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800CFAB4; // type:function size:0xF4 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800CFBA8; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800CFDF4; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800D0044; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800D0060; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800D0064; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800D0068; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800D0118; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800D011C; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800D0120; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800D01D8; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800D01E0; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800D01F0; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800D0208; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800D032C; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800D06AC; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800D0768; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800D09C0; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800D1750; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800D1768; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800D17E4; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800D1804; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800D1824; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800D1854; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800D1898; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800D1A30; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800D1AB4; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800D1ABC; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800D1AC4; // type:function size:0x9C scope:local align:4 +init__16PikiStateMachineFP4Piki = .text:0x800D1B60; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D2F88; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D2FB4; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D2FB8; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D3098; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D30C8; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D3114; // type:function size:0xA0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D31B4; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D33C0; // type:function size:0x2C scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D33EC; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D34A0; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D34E8; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D3570; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D359C; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D3608; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D360C; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D3610; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D3624; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D3718; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D3764; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D3808; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D38F0; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D3A00; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D3A04; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D3A60; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D3C68; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D4044; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D4048; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D41F4; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D4250; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D42F4; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D455C; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D45A0; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D45A4; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D4D5C; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D4D80; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D4DCC; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D4EF8; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D504C; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D50CC; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D5118; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D51FC; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D5350; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D5354; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D53A4; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D53B4; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D54B8; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D54D0; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D551C; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D558C; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D597C; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D59DC; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D59E0; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D5A2C; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D5B94; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D5D34; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D5FC8; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D60C0; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D610C; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D6230; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D62C8; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D6438; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D6668; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D6708; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D6758; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D67DC; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D67E0; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D6A68; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D6A6C; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D6AB8; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D6B40; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D6B44; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D6BC0; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D6C94; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D6C98; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D6CF4; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D6E2C; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D6E68; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D700C; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D74B0; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D74B4; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D7500; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D755C; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D76D0; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D76D4; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D7720; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D7758; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D780C; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D7850; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D7874; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D78C4; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D78FC; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D79B0; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D79F4; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D7A18; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D7A64; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D7B08; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D7B48; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D7B58; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D7BE4; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D7C98; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D7D24; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D7D48; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D7D6C; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D7E1C; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D81DC; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D8220; // type:function size:0x6EC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D890C; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D8910; // type:function size:0xFC scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800D8A0C; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800D8A58; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800D8AD4; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800D8AD8; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800D8ADC; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800D8B20; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800D8B70; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800D8C1C; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800D8C48; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800D8CC0; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800D8CC4; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800D8D58; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800D8DA4; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800D8E6C; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800D8F04; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800D8F08; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800D903C; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800D9088; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800D908C; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800D9090; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800D9094; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800D90C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800D90C8; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800D9110; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800D915C; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800D91E4; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800D9334; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800D9340; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800D9370; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800D9374; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800D93AC; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800D9424; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800D9474; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800D9504; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800D95F8; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800D9604; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800D9634; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800D9638; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800D96DC; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800D96E0; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800D9760; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800D97AC; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800D97B0; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800D99B0; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800D99B4; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800D9A04; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800D9B50; // type:function size:0x88 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800D9BD8; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800D9BDC; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800D9C28; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800D9CD4; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800D9CD8; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800D9F3C; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800DA0CC; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800DA11C; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800DA1F8; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800DA270; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800DA274; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800DA310; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800DA35C; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800DA380; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800DA3B4; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800DA4F4; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800DA4F8; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800DA544; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800DA660; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800DA694; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800DA698; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800DA728; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800DA774; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800DA7A8; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800DA844; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800DA860; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800DA8C0; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800DB044; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800DB048; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800DB200; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800DB234; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800DB2B8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800DB2C0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800DB2C8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800DB2D0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800DB2D8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800DB2E0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800DB2E8; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800DB2F0; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800DB2F8; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800DB300; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800DB308; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800DB310; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x800DB340; // type:function size:0x9C scope:local align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800DB3DC; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800DB404; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800DB42C; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800DB468; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800DB61C; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800DB6B8; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800DB6D8; // type:function size:0x150 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800DB828; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800DB888; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800DB93C; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800DBBA8; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800DBC0C; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800DBC10; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800DBD8C; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800DC194; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800DC234; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800DC24C; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800DC260; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800DC5D8; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800DCC50; // type:function size:0xB68 scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DD7B8; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DD7E8; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DD818; // type:function size:0x2C scope:global align:4 +_Error__FPce = .text:0x800DD844; // type:function size:0x9C scope:local align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DD8E0; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DD910; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DD91C; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DD93C; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DD95C; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DD960; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DDA5C; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DDAAC; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DDC28; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DDD58; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DDEB4; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DDF04; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DDF70; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DDFDC; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DE09C; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DE15C; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DE1E4; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DE26C; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DE310; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DE3B4; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DE430; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DE4AC; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DE584; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DE61C; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DE66C; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DE6AC; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DE70C; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DE87C; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800DE9D0; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800DEA08; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800DEB0C; // type:function size:0x8C scope:global align:4 +init__9GeneratorFv = .text:0x800DEB98; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800DEDD4; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800DEDD8; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800DEDDC; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800DEE64; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800DEE68; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800DF014; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800DF018; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800DF01C; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800DF750; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800DF7BC; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800DF828; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800DF894; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800DFFF4; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800E0508; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800E0548; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800E0564; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800E0604; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800E0650; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800E06AC; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E0920; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E098C; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800E09F8; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800E0C0C; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800E0CB0; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800E0E68; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800E0FD0; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800E0FD8; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800E10BC; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800E11F4; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800E11FC; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800E1340; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800E1478; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800E1500; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800E1504; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800E16A8; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800E17D8; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800E1830; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800E1868; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800E18D8; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800E1988; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800E1990; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800E1994; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800E199C; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800E19A0; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800E19A8; // type:function size:0x9C scope:local align:4 +__ct__14GeneratorCacheFv = .text:0x800E1A44; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800E1B74; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800E1B8C; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800E1C44; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E1D38; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E1E6C; // type:function size:0x254 scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E20C0; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E21CC; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800E22D8; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800E2300; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800E2460; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800E2588; // type:function size:0x1BC scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800E2744; // type:function size:0xFC scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800E2840; // type:function size:0x94 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800E28D4; // type:function size:0x190 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E2A64; // type:function size:0x134 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E2B98; // type:function size:0x140 scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800E2CD8; // type:function size:0x150 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800E2E28; // type:function size:0x190 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E2FB8; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E3014; // type:function size:0x88 scope:global align:4 +_Error__FPce = .text:0x800E309C; // type:function size:0x9C scope:local align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E3138; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E3244; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E3368; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E3474; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E3478; // type:function size:0x280 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E36F8; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E3864; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E3980; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E3BDC; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E3E50; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E3F78; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E401C; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E40D0; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E4188; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E4224; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E42B4; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E43A0; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E444C; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E44D0; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E450C; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E4564; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E45C0; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E45DC; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E4964; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E4C70; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E4ED0; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E4F4C; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E5054; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E5100; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E519C; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E5244; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E5248; // type:function size:0xB4 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E52FC; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E5364; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E5378; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E5494; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E5514; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E5558; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E55B0; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E560C; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E5628; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E5650; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E5910; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E5D14; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E5D9C; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E5DA4; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E5DAC; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E5DF0; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E5E14; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E5E80; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E5E88; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E5EF4; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E5EFC; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E5F04; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E5F0C; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E5F10; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E637C; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E6B68; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E6BD8; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E6DB0; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E6DEC; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E6E4C; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E7034; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E7238; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E7264; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E726C; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E7274; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E7290; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E72A8; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E72B4; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E72C4; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E72E8; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E73CC; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E75C8; // type:function size:0xC scope:weak align:4 +_Error__FPce = .text:0x800E75D4; // type:function size:0x9C scope:local align:4 +workable__7RockGenFv = .text:0x800E7670; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E7690; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E76A8; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E76C0; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E76E0; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E76F8; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E7710; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E796C; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E7BC8; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E7C68; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E7EEC; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E7F00; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E7F10; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E7F6C; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E7F7C; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E7FB8; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E8038; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E8064; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E81F4; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E81FC; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E82DC; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E837C; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E85C0; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E85D4; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E85E4; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E8640; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E866C; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E87FC; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E8804; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E88E4; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E88E8; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E88EC; // type:function size:0x1E4 scope:global align:4 +startAI__4WeedFi = .text:0x800E8AD0; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800E8AF4; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800E8BC0; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800E8C5C; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800E8D64; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800E8D78; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800E8D80; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800E8D94; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800E8D9C; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800E8DB0; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800E8DB8; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800E8DC0; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800E8DD4; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800E8DDC; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800E8DE4; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800E8E88; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800E8FA0; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800E9000; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800E9038; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800E9054; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800E905C; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800E9064; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800E909C; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800E91E0; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800E92B8; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800E9364; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800E9394; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800E939C; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800E93A4; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800E9458; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800E9544; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800E9654; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800E965C; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800E9664; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800E966C; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800E9674; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800E9724; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800E9744; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800E98F8; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800E9A38; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800E9F8C; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800EA024; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800EA0D8; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800EA1FC; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800EA348; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800EA400; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800EA4D4; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800EA720; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800EA84C; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800EA870; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800EA9C8; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800EAA40; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800EADD0; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800EADEC; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800EAE44; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800EAEA8; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800EAEEC; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800EAF70; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800EB02C; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800EB0D8; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800EB184; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800EB2B4; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800EB708; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800EB710; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800EB904; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800EB918; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800EB920; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800EB9E0; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800EBC9C; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800EBCA4; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800EBCAC; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800EBD5C; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800EBECC; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800EBF14; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800EBF80; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800EC098; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800EC1B0; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800EC294; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800EC798; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800EC7A0; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800EC7A8; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800EC7B0; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800EC7B8; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800EC910; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800EC938; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800ECBE8; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800ECC24; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800ECC80; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800ECD24; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800ECD5C; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800ECD6C; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800ECD80; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800ECDC8; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800ECEE8; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800ED02C; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800ED0B4; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800ED134; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800ED19C; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800ED244; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800ED29C; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800ED2A4; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800ED2FC; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800ED3A8; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800ED490; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800ED498; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800ED4A0; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800ED578; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800ED57C; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800ED614; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800ED6BC; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800ED6C0; // type:function size:0x60 scope:global align:4 +_Error__FPce = .text:0x800ED720; // type:function size:0x9C scope:local align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800ED7BC; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800ED7FC; // type:function size:0x778 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EDF74; // type:function size:0xC8 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EE03C; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EE1B4; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EE20C; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EE214; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EE238; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EE32C; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EE3F0; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EE410; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EE68C; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EE694; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EE7A4; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EE7C0; // type:function size:0x78 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EE838; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EE8B4; // type:function size:0x118 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800EE9CC; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800EE9FC; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800EEA10; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800EEEA4; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800EEF18; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800EEF44; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800EEF4C; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800EEF54; // type:function size:0x324 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800EF278; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800EF5F0; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800EF60C; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800EF614; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800EF61C; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800EF624; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EF62C; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800EF634; // type:function size:0x9C scope:local align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800EF6D0; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800EF730; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800EF760; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800EF7D4; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800EF82C; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800EF834; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800EF89C; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EF8A4; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800EFA30; // type:function size:0x174 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800EFBA4; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800EFC30; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800EFCBC; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800EFCC4; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800EFCCC; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800EFCD4; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800F0220; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800F0328; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800F0428; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800F0430; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800F04D8; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800F04E0; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800F0534; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800F0540; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800F0560; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800F059C; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800F06A8; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800F06AC; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800F06B4; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800F0800; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800F0860; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800F0880; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800F089C; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800F08F0; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800F08FC; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800F09A4; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800F09C4; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800F09CC; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800F09EC; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800F0BF0; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800F0BF8; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800F0C00; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800F0C08; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800F0CB8; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800F0CC0; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800F0CC8; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800F0D14; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800F0FA4; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800F0FA8; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800F0FDC; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800F0FE4; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800F0FEC; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800F0FF4; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800F0FFC; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800F10D8; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800F10E0; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800F1124; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800F1138; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800F1140; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800F117C; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800F13B8; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800F13C8; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800F1500; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800F153C; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800F1544; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F154C; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F15F4; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800F169C; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800F17F4; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800F1880; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800F199C; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800F1A9C; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800F1ACC; // type:function size:0x448 scope:global align:4 +_Error__FPce = .text:0x800F1F14; // type:function size:0x9C scope:local align:4 +__ct__8SluiceAIFv = .text:0x800F1FB0; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800F22EC; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800F2328; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800F2394; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800F23A4; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800F2430; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800F24BC; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800F2528; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800F2A34; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800F2B48; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800F2B8C; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800F2BB4; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800F2BD8; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800F2BE4; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800F2C18; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800F2CA0; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800F2D20; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800F2D94; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800F2DEC; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800F2EC4; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800F2FF4; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800F313C; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800F3170; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800F31EC; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800F3244; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800F326C; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F35FC; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F369C; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F373C; // type:function size:0xE60 scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F459C; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F45D0; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F45DC; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F465C; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F4680; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F46FC; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F4ADC; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F4B04; // type:function size:0xCC scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F4BD0; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F4C08; // type:function size:0x474 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F507C; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F5080; // type:function size:0x338 scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F53B8; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F53BC; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F5434; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F54F4; // type:function size:0x198 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F568C; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F5724; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F5978; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F59B8; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F59E0; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F5BB8; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F5C0C; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F5C8C; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F5CB4; // type:function size:0x54 scope:weak align:4 +_Error__FPce = .text:0x800F5D08; // type:function size:0x9C scope:local align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F5DA4; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F5DE4; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F5F20; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F6064; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F6178; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F6538; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F6698; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F6A0C; // type:function size:0x2D4 scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F6CE0; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F6DD4; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F77AC; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F77B4; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800F8CF0; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800F8DB8; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800F8E28; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800F8E30; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800F8E38; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800F8E44; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800F8E4C; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800F8E78; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800F8EC0; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800F8F0C; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800F8F64; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800F8FC0; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800F8FF4; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800F9038; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800F9074; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800F90BC; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800F92DC; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800F9350; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800F9390; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800F93D0; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800F9404; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800F9444; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800F9484; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800F9758; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800F97B8; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F9A28; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800F9B6C; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800F9BD0; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800F9D98; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800F9E28; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800F9E88; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800F9EDC; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800FA080; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800FA084; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800FA0CC; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800FA178; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800FA2F4; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800FA318; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800FA438; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800FA4A0; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800FA508; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800FA70C; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800FA770; // type:function size:0x74 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800FA7E4; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800FA9BC; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800FAA5C; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800FAABC; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800FAC08; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800FAC8C; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800FAD10; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800FAD94; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800FAD9C; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800FADA4; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800FADAC; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800FADE8; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800FADF0; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800FADF8; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800FADFC; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800FAE78; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800FAEA8; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800FAF14; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800FAF80; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800FAFEC; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800FB058; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800FB060; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800FB064; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800FB06C; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800FB09C; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800FB0A4; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800FB0D4; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800FB104; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800FB16C; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800FB1DC; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800FB1E4; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800FB274; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800FB2E0; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800FB548; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800FB584; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800FB5F4; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800FB680; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800FB684; // type:function size:0xB8 scope:global align:4 +_Error__FPce = .text:0x800FB73C; // type:function size:0x9C scope:local align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800FB7D8; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800FB874; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800FB8D0; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800FB8F8; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800FB900; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800FB908; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800FB930; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800FB9E0; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800FB9E4; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800FB9E8; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800FBA20; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800FBA34; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800FBA48; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800FBA54; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800FBA60; // type:function size:0x44C scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800FBEAC; // type:function size:0x234 scope:global align:4 +__ct__8NaviPropFv = .text:0x800FC0E0; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800FCD00; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800FCD20; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800FCD40; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800FCD60; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800FCD64; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800FCD6C; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800FCFA0; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800FD0C0; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800FD0C4; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FD72C; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FD780; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FD7C0; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FDBC8; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FDBD4; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FDC1C; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FDDA8; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FDDE0; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FDE30; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FE1EC; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FE220; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FE720; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FE914; // type:function size:0x7EC scope:global align:4 +callDebugs__4NaviFf = .text:0x800FF100; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x800FF47C; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x800FFC58; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x800FFD1C; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x800FFD58; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x800FFD5C; // type:function size:0xA58 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x801007B4; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x801007F0; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x80100848; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x8010084C; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x80100898; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x801008E4; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x80100934; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x80100B0C; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x80100E7C; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x80100E80; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x80101068; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x80101964; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x801021BC; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x80102764; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x8010284C; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x80102B24; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x80102D20; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x80102D24; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x80102D60; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x80102D9C; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x80102EB4; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x80102EB8; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x80102EBC; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x80102EC0; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x80102EC4; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x80102EC8; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x80102ECC; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x80102ED0; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x80102ED4; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x80102ED8; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x80102EDC; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x80102EE0; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x80102F54; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x80103018; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x80103114; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x801031A8; // type:function size:0x148 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x801032F0; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x80103494; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x801035A4; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x8010375C; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x80103874; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x801038F4; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x80103A38; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x80103B28; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x80103C18; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x80103CD8; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80103F0C; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x80103F68; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x80103F7C; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x801042BC; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x80104638; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x8010465C; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x80104660; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x80104664; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x801046A8; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x801046B0; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x801046B8; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x801046BC; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x801046C4; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x801046CC; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x801046D4; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x801046DC; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x801046E4; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x801046EC; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x801046F4; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x80105CC8; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x80105D0C; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x80105D78; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x80105F78; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x80105FC8; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x80105FF8; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x8010603C; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x80106090; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x80106158; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x80106244; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x801062C8; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x8010630C; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x80106310; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x8010632C; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x80106330; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x80106384; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80106414; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x80106754; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x80106758; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x801067AC; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x801068B8; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x80106BC8; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x80106F9C; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x80106FA0; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x80106FE0; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x80107064; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x80107090; // type:function size:0xDE8 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x80107E78; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x80107E9C; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x80107EFC; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x80107F10; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x80107F1C; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x80107F70; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80107FF8; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x801080B0; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80108518; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x80108560; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x80108590; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x8010863C; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x80108840; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x80108870; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x80108888; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x80108970; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x80108B58; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x80108B80; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x80108BB8; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x80108BFC; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x80108C00; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x80108C70; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x80108CBC; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x80108CE0; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x80108D24; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x80108D98; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x80108FF4; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x80108FF8; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x8010903C; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x80109118; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x8010911C; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x80109120; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x80109150; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x80109194; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x80109228; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x80109244; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x80109288; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x8010928C; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x801092D0; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x8010939C; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x801094D8; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x8010953C; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x80109548; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x8010958C; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x801096B0; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x80109828; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x80109978; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x801099AC; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x80109A00; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x80109B40; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x80109D54; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x80109E74; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x80109F08; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x80109F3C; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x80109F80; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x80109FAC; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x80109FDC; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x8010A114; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x8010A700; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x8010A768; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x8010A7D4; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x8010A818; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x8010A8B8; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x8010A948; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x8010A94C; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x8010A9DC; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x8010AA20; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x8010AA4C; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x8010AA7C; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x8010AE48; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x8010AED4; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x8010B470; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x8010B5DC; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x8010B5E0; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x8010B624; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x8010B6C8; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x8010B6D4; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x8010B81C; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x8010B914; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x8010B918; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x8010B95C; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x8010B9EC; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x8010BC34; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x8010BC48; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x8010BD3C; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x8010BD40; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x8010BD84; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x8010BE14; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x8010BFBC; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x8010BFC0; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x8010C0A4; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x8010C0B0; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x8010C0F4; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x8010C278; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x8010C388; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x8010C3C0; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x8010C4EC; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x8010C54C; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x8010C578; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x8010C5A8; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x8010C78C; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x8010CBE8; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x8010CBF8; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x8010CC3C; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x8010CC4C; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x8010CD40; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x8010CD44; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x8010CD88; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x8010CDFC; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x8010CE00; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x8010CE04; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x8010CE48; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x8010CEEC; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x8010CEF0; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x8010CEF4; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x8010CF38; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x8010CF64; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x8010CF94; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x8010D060; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x8010D484; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x8010D488; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x8010D508; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x8010D54C; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x8010D550; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x8010D554; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x8010D558; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x8010D59C; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x8010D640; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x8010D644; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x8010D694; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x8010D698; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x8010D6DC; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x8010D6E0; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010D6FC; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010D700; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010D744; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010D748; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010D89C; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010D8B8; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010D8BC; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010D910; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010D954; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010D9EC; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010DA40; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010DA44; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010DA48; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010DAB4; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010DD28; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010DE04; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010E0A8; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010E0DC; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010E160; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010E1A4; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010E2A8; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010E2F8; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010E344; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010E3EC; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010E430; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010E500; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010E550; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010E578; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010E5F0; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010E5F8; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010E600; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010E608; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010E610; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010E618; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010E620; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010E628; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010E630; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010E638; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010E63C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010E644; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010E64C; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010E654; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010E65C; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010E664; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010E678; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x8010E68C; // type:function size:0x9C scope:local align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010E728; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010EBA0; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010EC30; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010EF7C; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010EFAC; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010F05C; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010F060; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F064; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010F190; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F194; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F218; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F21C; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F220; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F29C; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F338; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F33C; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F3FC; // type:function size:0x2E4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F6E0; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F6E4; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F75C; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F760; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010F764; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010F7DC; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010F7E0; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x8010F7E4; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x8010F8B8; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x8010FAB8; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x8010FF58; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801100B8; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801100F4; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x801100F8; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x80110310; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x80110344; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x80110380; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x80110498; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x8011049C; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x801104A0; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x801104A4; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x801104A8; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x801104AC; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x801104B0; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x801104B4; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x801104B8; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x801104BC; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x801104C0; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801104C4; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801104C8; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x801104CC; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x801104D0; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x80110510; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x801105FC; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFi = .text:0x80110A60; // type:function size:0x254 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x80110CB4; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x80110E04; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x80110F8C; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x80111108; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x80111428; // type:function size:0xD5C scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x80112184; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x801122B4; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x80112344; // type:function size:0xCD4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x80113018; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x80113478; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x80113E1C; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x801140CC; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x801140D8; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x80114110; // type:function size:0x568 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x80114678; // type:function size:0x5A4 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x80114C1C; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x80114E7C; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x80115440; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x8011544C; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80115498; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x80115634; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x80115658; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x801156A8; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x80115728; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x801157A8; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x80115800; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x80115868; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80115900; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x801159A8; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80115A40; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x80115AE4; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x80115B8C; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x80115C50; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x80115C54; // type:function size:0x9C scope:local align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x80115CF0; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x80115D8C; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x80115F3C; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x801160FC; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x801162B4; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x801164E0; // type:function size:0x254 scope:global align:4 +_Error__FPce = .text:0x80116734; // type:function size:0x9C scope:local align:4 +__ct__11SlimeEffectFv = .text:0x801167D0; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x80116838; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x80116854; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x80116870; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80116900; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x8011699C; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x801169E8; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x8011793C; // type:function size:0x60 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x8011799C; // type:function size:0x80 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x80117A1C; // type:function size:0x70 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x80117A8C; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x80117AC0; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x80117B4C; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x80117B80; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x80117C00; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x80117C1C; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x80117C38; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x80117C84; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x80117D04; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x80117D20; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x80117D3C; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x80117D58; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x80117DA4; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x80117ED8; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x80117F6C; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x80117FA0; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x80117FD4; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x80117FF0; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x8011800C; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x80118158; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x801181C8; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x801181D0; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x80118394; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x801183B0; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x801183FC; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x801184DC; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011854C; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x80118898; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x80118970; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x80118974; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x80118A64; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x80118A68; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x80118AAC; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x80118AE4; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x80118AEC; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x80118BAC; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x80118C60; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x80118C94; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x80118CC8; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x80118CFC; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x80118D30; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x80118E2C; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80118EC0; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x80119224; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x8011925C; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119298; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801192A0; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801192A8; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x801192B0; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x8011937C; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x801193CC; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x8011941C; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x80119584; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x8011958C; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x80119698; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x801197A4; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x801197B0; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x801197CC; // type:function size:0x68 scope:global align:4 +_Error__FPce = .text:0x80119834; // type:function size:0x9C scope:local align:4 +selectRandomly__FP6Choicei = .text:0x801198D0; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x80119980; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x80119990; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x801199E8; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x80119A58; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x80119AC8; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x80119B1C; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x80119B44; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x80119B74; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x80119BAC; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x80119BB8; // type:function size:0x54 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x80119C0C; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x80119D78; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x8011A19C; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x8011A408; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x8011A5F0; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x8011A9B0; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x8011AB30; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x8011AB90; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x8011ABB0; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x8011AC24; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x8011AC3C; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x8011AD58; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x8011AE68; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x8011AF84; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x8011AFB4; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x8011B038; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x8011B040; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8011B048; // type:function size:0x9C scope:local align:4 +makeObjectMapParts__Fv = .text:0x8011B0E4; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x8011B2A4; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x8011B334; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x8011B44C; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x8011BAB0; // type:function size:0x288 scope:global align:4 +init__8MapPartsFv = .text:0x8011BD38; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x8011BD3C; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x8011BD54; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x8011BDB0; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x8011BE28; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x8011BF28; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x8011BFF8; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x8011C038; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x8011C3A4; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x8011C590; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x8011C594; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x8011C598; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x8011D268; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x8011D2A4; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x8011D348; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x8011D3C4; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x8011D43C; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x8011D4C8; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x8011D508; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x8011D578; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x8011D59C; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x8011D5C0; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x8011D5D0; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x8011D698; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x8011D6E0; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x8011D798; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x8011D7D0; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x8011D874; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011DC34; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011DC38; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011DCE4; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011DD78; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011DDDC; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011E254; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011E340; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011E418; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011E448; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011E560; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011E5D8; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011E664; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011E6A4; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011E770; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x8011E900; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x8011E92C; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x8011E9B0; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8011E9B8; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8011E9C8; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x8011E9D0; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x8011E9DC; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x8011EB24; // type:function size:0x3C scope:global align:4 +_Error__FPce = .text:0x8011EB60; // type:function size:0x9C scope:local align:4 +makeObjectTeki__Fv = .text:0x8011EBFC; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x8011EC3C; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x8011ECC4; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x8011ED50; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x8011EDE4; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x8011EE4C; // type:function size:0xAC scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8011EEF8; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8011F018; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x8011F050; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x8011F078; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x8011F18C; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x8011F1E4; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x8011F260; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x8011F288; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x8011F318; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x8011F44C; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x8011F4A4; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x8011F4E0; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x8011F500; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x8011F544; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x8011F5EC; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x8011F644; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x8011F664; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x8011F6E4; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x8011F704; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x8011F774; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x8011F804; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x8011F870; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x8011F894; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8011F8B8; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8011F908; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x8011F980; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x8011FA54; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x8011FAA0; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x8011FCF4; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x8011FD10; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x8011FD4C; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x8011FD7C; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x8011FD9C; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x8011FDAC; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x8011FE54; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x8011FEF8; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x8011FF8C; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8012002C; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8012009C; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x801200D0; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x801201A4; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x801201D8; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x8012023C; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x80120300; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x80120364; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x8012036C; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x801203EC; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x80120474; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x80120610; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x8012063C; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x80120660; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x8012072C; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x8012073C; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x80120764; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x80120794; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x801207C0; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x801207EC; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x8012082C; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x80120848; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x80120888; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x80120898; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x801208D8; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x8012090C; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x80120980; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x80120984; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x80120A6C; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x80120B48; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x80120B54; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x80120CEC; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x80120D68; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x80120DD8; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x80120E0C; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x80120ECC; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x80120F30; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x80120FCC; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x80121018; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x80121050; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x801210B8; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x80121108; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x801211E4; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x801212A4; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x801212C8; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x8012134C; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x8012141C; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x801214B4; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x80121774; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x801217CC; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x801217D8; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x801218B8; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x801219A8; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x80121A64; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x80121B30; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x80121B68; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x80121BA4; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x80121BDC; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x80121C14; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x80121C4C; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x80121C9C; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x80121DB0; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x80121DF0; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x80121E20; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x80121E58; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x80121EA8; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x80121EF8; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x80121F28; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x80121F7C; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x80121FB4; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x80121FEC; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x80122020; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x8012215C; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x801221D8; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x80122208; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x80122210; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x801222A4; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x801222D8; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x80122308; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x80122340; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x80122384; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x801223D8; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x80122414; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x80122550; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x801225A0; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x801226B4; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x801226E4; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x80122718; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x80122748; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x8012277C; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x801227CC; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x80122800; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x80122850; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x80122880; // type:function size:0x44 scope:weak align:4 +_Error__FPce = .text:0x801228C4; // type:function size:0x9C scope:local align:4 +__ct__14PaniMotionInfoFi = .text:0x80122960; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x80122994; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x801229C4; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x801229D0; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x80122A04; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x80122A10; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x80122A7C; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x80122AE8; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x80122B2C; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x80122B98; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x80122BA0; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x80122BC8; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x80122C38; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x80122CE8; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x80122DF4; // type:function size:0x100 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x80122EF4; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x801230B4; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x801231D8; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x8012322C; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x801232D8; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x80123314; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x80123390; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x801233F0; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x80123448; // type:function size:0x58 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x801234A0; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x801234F8; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x8012357C; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x8012363C; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x8012368C; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x801238F4; // type:function size:0x3C scope:global align:4 +__ct__12PaniTestNodeFv = .text:0x80123930; // type:function size:0x554 scope:global align:4 +setTestMode__12PaniTestNodeFi = .text:0x80123E84; // type:function size:0x84 scope:global align:4 +update__12PaniTestNodeFv = .text:0x80123F08; // type:function size:0x48C scope:global align:4 +updatePikis__12PaniTestNodeFv = .text:0x80124394; // type:function size:0x2B4 scope:global align:4 +updateTekis__12PaniTestNodeFv = .text:0x80124648; // type:function size:0x1BC scope:global align:4 +animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80124804; // type:function size:0x6C scope:global align:4 +draw__12PaniTestNodeFR8Graphics = .text:0x80124870; // type:function size:0x684 scope:global align:4 +drawPiki__12PaniTestNodeFP8ViewPikiR8Graphics = .text:0x80124EF4; // type:function size:0x34 scope:global align:4 +drawTeki__12PaniTestNodeFP4TekiR8Graphics = .text:0x80124F28; // type:function size:0x34 scope:global align:4 +init__15PaniTestSectionFv = .text:0x80124F5C; // type:function size:0x78 scope:global align:4 +@32@animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80124FD4; // type:function size:0x8 scope:weak align:4 +read__15ParaParametersIFR6Stream = .text:0x80124FDC; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x8012505C; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x801250DC; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x80125134; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x801251B4; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x80125234; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x8012528C; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x80125334; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x801253C4; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x80125454; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x801254C8; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x80125528; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x80125588; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x801255D8; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x801255DC; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x801255E0; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x801255E4; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x801255E8; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x801255EC; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x801255F0; // type:function size:0x4 scope:global align:4 +__ct__15PcamControlInfoFv = .text:0x801255F4; // type:function size:0x24 scope:global align:4 +init__15PcamControlInfoFbbbbbbbfff = .text:0x80125618; // type:function size:0x2C scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x80125644; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x80125778; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x801257A0; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x8012592C; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x80125964; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x80125A40; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x80125F0C; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x80125F1C; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x80126070; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x801261EC; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x80126218; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x80126328; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x801266C8; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x80126710; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x80126938; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x80126968; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFii = .text:0x801269EC; // type:function size:0x44 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80126A30; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x80126AAC; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x80126B7C; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x80126BE8; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x80126C48; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x80126C5C; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x80126CC0; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x80126CD8; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80126D38; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x80126D94; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x80126E28; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x80126E48; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x80126E90; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x801270FC; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x801271B0; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x80127204; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x80127240; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x8012737C; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x801273CC; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x801274E0; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x80127510; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x80127544; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x80127594; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x801275C8; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x80127618; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x80127648; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x8012768C; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x80127884; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x801278A8; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x801278F8; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x80127990; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x801279C8; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x801279CC; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x801279D0; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x80127A10; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x80127B58; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x80127B90; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x80127B94; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x80127BE0; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x80127CAC; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x80127D84; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x80127DFC; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x80127E80; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x80127EF8; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x80127F68; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x801281F8; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x801282BC; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x8012832C; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x801283C4; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x801283D4; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x801283E4; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x801283F4; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x801283FC; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x80128E74; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x80128E8C; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x80128EA0; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x80128F78; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x80128F88; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x80128FD0; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x80129054; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x801290D8; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x80129154; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x801291A8; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x80129210; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x801292DC; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x80129350; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x801293A0; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x801293A8; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x80129408; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x80129414; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x801294F0; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x8012950C; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x80129528; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x80129548; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x80129568; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x801295C4; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80129620; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80129640; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x80129660; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x80129680; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x801296A0; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x801296E8; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x801296F8; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x80129804; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x801298A4; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x801298B0; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x801298B8; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x801298C4; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x801298E0; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x801298EC; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x80129904; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x80129934; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x80129938; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x8012993C; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x8012997C; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x80129990; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x80129B0C; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x80129B80; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x80129C30; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x80129C64; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x80129CB0; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x80129DC8; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x80129E24; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x80129E4C; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x80129E9C; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x80129FD0; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x8012A07C; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x8012A100; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x8012A10C; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x8012A1CC; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x8012A2F0; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x8012A3DC; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x8012A558; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x8012A5B4; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x8012A650; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x8012A6D8; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x8012A7D8; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x8012A7FC; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x8012A804; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x8012A80C; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x8012A814; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x8012A81C; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x8012A824; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x8012A82C; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x8012A83C; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x8012A898; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x8012A8DC; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x8012A8E0; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x8012A960; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x8012A964; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x8012AA0C; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x8012AA14; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x8012AAC8; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x8012AAD0; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x8012AB1C; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x8012AB9C; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x8012AC1C; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x8012AD08; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x8012AD28; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x8012AE1C; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x8012AE80; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x8012AECC; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x8012AEE0; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x8012AFAC; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x8012B03C; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x8012B0E8; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x8012B174; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012B22C; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x8012B26C; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012B27C; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x8012B8DC; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x8012B8EC; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x8012B904; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012B91C; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x8012BA48; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x8012BAD0; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x8012BBA4; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x8012BBCC; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x8012BC10; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x8012BC44; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x8012BCC0; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x8012BD18; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x8012BD9C; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x8012BDD8; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x8012BDE0; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x8012BDEC; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x8012BE0C; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x8012BE6C; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x8012BEA4; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x8012BEDC; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x8012BF20; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x8012BF58; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x8012BFDC; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x8012C380; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x8012C720; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x8012C7A4; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x8012CB40; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x8012E0AC; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x8012E1F4; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x8012E23C; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x8012E294; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x8012E324; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012E3A8; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x8012E3B0; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x8012E410; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x8012E470; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x8012E4F8; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x8012E57C; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x8012EA00; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x8013019C; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x80130304; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x80130414; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x80130604; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x80130644; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x801306F0; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x80130720; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x80130790; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x80130804; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x8013095C; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x80130A3C; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x80130AA0; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x80130B9C; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x80130C58; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x80130D68; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x80130DB8; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x80130DEC; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x80130E20; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x80130E54; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x80130F0C; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x80130F34; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x80130F5C; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x80130FFC; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x8013109C; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x801311F8; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x801312D8; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80131318; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x801313D4; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x80131418; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8013162C; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x80131680; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x80131720; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x80131734; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x8013181C; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x80131880; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x801318D8; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x80131950; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x801319A0; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x80131A0C; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x80131A64; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x80131AF4; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x80131B7C; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x80131C40; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x80131C98; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x80131D24; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x80131D84; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x80131DE4; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x80131E54; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x80131EC4; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x80131ED8; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x80131EEC; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x80131F00; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x80131F14; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x80131F50; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x80131F8C; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x80131FE0; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x80132018; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x80132044; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x80132070; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x801320FC; // type:function size:0x4 scope:global align:4 +_Error__FPce = .text:0x80132100; // type:function size:0x9C scope:local align:4 +__ct__19TaiIwagonParametersFv = .text:0x8013219C; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x801322A4; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x80132328; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x801327E8; // type:function size:0x128 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x80132910; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x80132980; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x8013299C; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x801329BC; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x80132AD4; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x80132CE4; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x80132D60; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x80132DA4; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x80132E1C; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x80132FB4; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x80133004; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x80133054; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x801330A4; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x80133118; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x801331D4; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x80133294; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x80133340; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x80133430; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x80133558; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x80133680; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x80133704; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x80133C1C; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x80134EB4; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x80134F64; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x80135118; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x8013523C; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x801352B4; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x80135308; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x8013530C; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x8013546C; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x8013583C; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x80135894; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80135944; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x80135974; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x801359A4; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x801359E0; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x80135A0C; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x80135A4C; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x80135AFC; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x80135C78; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x80135D04; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x80135E68; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x80135E70; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x80135F28; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x801362A8; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x8013632C; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x80136BE0; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x80136C88; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x80136D94; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x80136DA8; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x80136E24; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x80136E74; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x80136EFC; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x801372C0; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x801377DC; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x801378E0; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x80137988; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80137B00; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x80137B38; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x80137B58; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x80137C54; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x80137CC8; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x80137CEC; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x80137D38; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x80137D58; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x80137D64; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x80137DA0; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x80137DFC; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x80137ED0; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x80137ED4; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x80137F38; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x80137F3C; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x80137F60; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x80137F9C; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x80138048; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x80138070; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x801380E8; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x80138104; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x80138120; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x801381A0; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x80138220; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x801382F0; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x801383C0; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x801383F4; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x80138428; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x8013845C; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x80138490; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x80138538; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x801385E0; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x8013866C; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x8013868C; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x80138738; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80138768; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x801387AC; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x801387B0; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x801388EC; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x8013895C; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x801389E4; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x801389E8; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x80138A60; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x80138AA4; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x80138BF0; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x80138D4C; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x80138EE0; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x80138FB0; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x801390E0; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x8013910C; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x801391B8; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x80139524; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x80139568; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x80139588; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x80139708; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x8013978C; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x80139CF0; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x8013BFB4; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013C038; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013C0F4; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x8013C344; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x8013C400; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C4A0; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C4F4; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C5A0; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x8013C648; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x8013C700; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x8013C7A8; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013C830; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013C8D8; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x8013C970; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x8013CC0C; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x8013CC24; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x8013CD48; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x8013CDA8; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x8013CDCC; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x8013CE38; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x8013D19C; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x8013D318; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x8013D5E4; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x8013D6C8; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x8013D7AC; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x8013D944; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x8013DA70; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x8013DC44; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013DD08; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x8013DEB0; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x8013DEB8; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x8013DECC; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x8013DFA4; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x8013DFE8; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x8013E06C; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x8013E5AC; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x8013E630; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x8013EB6C; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x80140188; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x80140250; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8014036C; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x80140530; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x80140584; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x801406AC; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x801407F4; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x80140C0C; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x80140C90; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x80140DBC; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x80140F20; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x80140FA4; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x80141000; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x80141060; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x80141094; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x801410F0; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x8014130C; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x80141314; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x8014131C; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x80141320; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x801413D0; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x801413D8; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x801414C8; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x80141520; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x8014159C; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x80141620; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x80141814; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x80141D04; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x80141FB8; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x80141FF0; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x80142138; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x80142238; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x8014229C; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x80142320; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x80142380; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x801423F8; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x8014244C; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x801424B4; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x801424EC; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x80142520; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x80142584; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x80142588; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x80142618; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x801426C0; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x801426DC; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x801426E8; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x801426FC; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x8014272C; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x80142784; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x801427A8; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x801427CC; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x80142818; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x80142864; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x80142870; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x801428B0; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x801428C8; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x801428EC; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x80142974; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x80142A4C; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x80142A8C; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x80142AAC; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x80142B44; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x80142C80; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x80142CC0; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x80142D10; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x80142D80; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x80142D9C; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x80142DB8; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x80142DEC; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x80142E70; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x801432B8; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x801436F4; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x80144DE0; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x80144E64; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x80144F60; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x80145088; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801450AC; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x801450E0; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x801450FC; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x801452D8; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x8014531C; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x80145350; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x801453CC; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x801455A8; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x80145798; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x801457C0; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x801457E8; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x801458AC; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80145904; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x801459C8; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x80145A1C; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x80145AB8; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x80145B3C; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x80145CC8; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x801461BC; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x80146248; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x8014643C; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x8014650C; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x80146544; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x801465BC; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x80146764; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x801467DC; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x801468E0; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x80146AB0; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x80146B34; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x80146C7C; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x80146DC8; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x80147134; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x80147154; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x801471B8; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x801471D8; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80147200; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x801472A8; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x801472C8; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x80147370; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x80147398; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x8014741C; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x80147470; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x80147584; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x801475F4; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x801476D8; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x8014775C; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x801477E8; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x801477F0; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x801477FC; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x8014780C; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x8014781C; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80147824; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80147830; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x80147848; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x80147864; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x80147880; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x8014789C; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x801478B8; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x801478D4; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x801478E8; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x801478F0; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x801478F8; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80147900; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x80147908; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80147910; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x80147918; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80147920; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x80147928; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80147930; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x801479C4; // type:function size:0x80 scope:global align:4 +_Error__FPce = .text:0x80147A44; // type:function size:0x9C scope:local align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80147AE0; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x80147B44; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x80147B4C; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x80147B78; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x80147BC4; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x80147BE0; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80147BF8; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80147C10; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x80147CB4; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x80147CD8; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x80147CE4; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x80147CF0; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x80147DA0; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80147DB0; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x80147E00; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80147E14; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x80147EBC; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x801480F4; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x8014811C; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x801484B4; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x80148518; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x80148890; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x801489AC; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x80148A2C; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x80148ACC; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x80148B94; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x80148BF8; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x80148C90; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x80148CC0; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80148D64; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x80148DE4; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x80148FC4; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x80148FD0; // type:function size:0x270 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x80149240; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x801492D4; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x80149424; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x801494A4; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x80149550; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x80149624; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x80149698; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x80149734; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x80149760; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x80149790; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x801497DC; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x80149800; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x80149950; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x80149A04; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x80149BA0; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x80149E48; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x8014A034; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x8014A074; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x8014A14C; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x8014A2DC; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x8014A52C; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x8014A548; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x8014A564; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x8014A584; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x8014A5A4; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x8014A5AC; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x8014A5B0; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x8014A664; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x8014A74C; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x8014A76C; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x8014A7F4; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x8014A8B0; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x8014AA40; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x8014AB94; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x8014ACE8; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x8014AE9C; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x8014AF8C; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x8014B168; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x8014B230; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x8014B27C; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x8014B4D0; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x8014B5AC; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x8014B6B4; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x8014B730; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x8014B7C0; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x8014B910; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x8014B944; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x8014B988; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x8014B9F0; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x8014BB9C; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x8014BC04; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x8014BE88; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x8014BFFC; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x8014C144; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x8014C198; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x8014C1D8; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x8014C270; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x8014C28C; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x8014C2DC; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x8014C32C; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x8014C37C; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x8014C4C4; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x8014C4D0; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x8014C4FC; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x8014C530; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x8014C574; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x8014C5E8; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x8014C680; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x8014C6B4; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x8014C6E8; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x8014C718; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x8014C744; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x8014C784; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x8014C7F0; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x8014C964; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x8014CBA0; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x8014CC50; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x8014CF10; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x8014D008; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x8014D0FC; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x8014D184; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x8014D2C4; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x8014D344; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x8014D368; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x8014D38C; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x8014D3E4; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x8014D48C; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x8014D4D0; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x8014D518; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x8014D574; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x8014D594; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x8014D5B8; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x8014D5DC; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x8014D60C; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x8014D63C; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x8014D71C; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014D748; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x8014D75C; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x8014D7B0; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x8014D7DC; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x8014D808; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x8014D838; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x8014D84C; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x8014D86C; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x8014D890; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x8014D938; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x8014D9A8; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x8014DA18; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x8014DA2C; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x8014DAD4; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x8014DAE8; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x8014DBCC; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x8014DC3C; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x8014DC54; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x8014DD98; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014DDBC; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x8014DDE0; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014DE1C; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x8014DED8; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x8014DF34; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x8014DF68; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x8014DF98; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x8014DFA8; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x8014DFEC; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x8014E07C; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x8014E0C0; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x8014E0C8; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x8014E120; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x8014E128; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x8014E134; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x8014E434; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x8014E624; // type:function size:0x20 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x8014E644; // type:function size:0xA4 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x8014E6E8; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x8014E764; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x8014E870; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x8014E8B4; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x8014E8C8; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x8014E8D8; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x8014E8E8; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x8014E8F8; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x8014EA14; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x8014EABC; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x8014EB64; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x8014EB70; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x8014EBE0; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x8014EC34; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x8014ECB8; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x8014ECC0; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x8014EF04; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x8014F594; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x8014F6A8; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x8014F87C; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014F8D0; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x8014F8E4; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x80150238; // type:function size:0x3C4 scope:global align:4 +_Error__FPce = .text:0x801505FC; // type:function size:0x9C scope:local align:4 +__ct__15TekiPersonalityFv = .text:0x80150698; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x80150890; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x801509BC; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x80150A5C; // type:function size:0x304 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x80150D60; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x80150DF0; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x80150E00; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x80150E04; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x80150E08; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x80150E0C; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x80150E10; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x80150E44; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x80150E78; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x80150EAC; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x80150EB0; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x80150F1C; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x80150FA8; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x80151030; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x8015111C; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8015113C; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8015115C; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8015117C; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x801511FC; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x8015128C; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x801513DC; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x80151518; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x80151AC4; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x80151BB0; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x80151CC4; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x80151D5C; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x80151FFC; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x80152160; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x80152194; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x801521E4; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x80152214; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x80152358; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x80152628; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x80152904; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x80152A5C; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x80152ABC; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x80152B1C; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x80152BE0; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x80152C98; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x80152CC4; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x80152E1C; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x80152F74; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x80152FBC; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x8015300C; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x80153078; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x80153178; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x80153204; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x80153208; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x80153274; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x801532A4; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x801533B8; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x801533C0; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x801533FC; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x80153480; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x80153484; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x80153594; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x80153600; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x80153608; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x80153610; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x80153618; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x80153620; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x80153628; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x80153630; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x8015364C; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x80153654; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x8015365C; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x80153660; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x80153664; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x80153668; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x8015366C; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x80153670; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x801536B4; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x80153748; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x80153788; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x80153850; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x801538C0; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x8015393C; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x801539D4; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x80153B40; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x80153B48; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x80153B50; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x80153B9C; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x80153C1C; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x80153C9C; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x80153F90; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x80153FD4; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x80153FEC; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x801549B8; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x80154B70; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x80155030; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x80155DE4; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x80155EA4; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x80155F54; // type:function size:0x110 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x80156064; // type:function size:0x158 scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x801561BC; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x80156240; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x8015624C; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x8015625C; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x801562C8; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x801562D0; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x801563E0; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x80156DA8; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x80156EE8; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x80156EF0; // type:function size:0xC0 scope:global align:4 +doKill__6SpiderFv = .text:0x80156FB0; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x80157008; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x80157030; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x8015709C; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x801571E8; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x80157260; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x80157284; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x801572C8; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x80157428; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x80157430; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x80157480; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80157488; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x801574A8; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x80157550; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x801575CC; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80157674; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x80157694; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x801576A8; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x801576B8; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x801576FC; // type:function size:0x1DC scope:global align:4 +dieState__8SpiderAiFv = .text:0x801578D8; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x80157B38; // type:function size:0x19F0 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x80159528; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x801596AC; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x80159888; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x80159AB0; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x80159B70; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x80159EF4; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x8015A1AC; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x8015A2F8; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x8015A3D8; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x8015A610; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x8015A764; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x8015A780; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x8015A79C; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x8015A7B8; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x8015A948; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x8015A9D8; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x8015AB40; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x8015AB94; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x8015ACCC; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x8015AE80; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x8015B224; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x8015B50C; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x8015B674; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x8015B7DC; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x8015B9AC; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x8015BC6C; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x8015BE78; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x8015BFEC; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x8015C11C; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x8015C364; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x8015C594; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x8015C858; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x8015C998; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015CC08; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x8015D28C; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015D578; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x8015DC1C; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x8015DC58; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8015DDC0; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x8015DDE4; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x8015E6D4; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x8015E7D8; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x8015E7E0; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x8015E7EC; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x8015E7F4; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x8015E8AC; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x8015E8F8; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x8015E920; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x8015E984; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x8015EA2C; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x8015EAA4; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x8015EB18; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x8015EB3C; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x8015EB90; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x8015EC04; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x8015ECB8; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x8015ED08; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x8015ED10; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x8015EDE0; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x8015EE7C; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x8015EEF8; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x8015F000; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x8015F078; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x8015F124; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x8015F134; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x8015F178; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x8015F27C; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x8015FB04; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x8015FC34; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x8015FCA4; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x8015FE08; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015FE38; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x801600D0; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x80160368; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x801605C4; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x80160820; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x80160C34; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x8016110C; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x80161484; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x8016180C; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x80161A14; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x80161A60; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x80161A80; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x80161C0C; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x801621D4; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x801621DC; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x8016238C; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x801637C8; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x801639E8; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x80163A50; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x80163BA8; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x80163C44; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x80163C6C; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x80163F84; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x80164278; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x801645E0; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x80164834; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x80164A78; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x80164C08; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x80165058; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x80165250; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x801653E8; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x801656DC; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x80165A94; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x80165FB8; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x801664F8; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x80166604; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x801667E4; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x8016719C; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x80167200; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x80167234; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x801677AC; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x80167980; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x801679D4; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80167A28; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80167A34; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x80167A3C; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x80167CB8; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x80167CEC; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x80167CF0; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x80167D94; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x80167E3C; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x80167EDC; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x80167F00; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x80167F24; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x8016808C; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x801680AC; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x801684EC; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x8016850C; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x80168518; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x80168538; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80168648; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80168698; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x801686A0; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x801686A8; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x80168750; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x80168764; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x80168A74; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x80168B38; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x80168C9C; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x80168FD8; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x801690C0; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x801691D8; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x8016931C; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x80169440; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x80169528; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x8016962C; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x801698AC; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x80169B2C; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x80169DC8; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x80169F34; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x8016A23C; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x8016A548; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x8016A6E0; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x8016A9C4; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x8016AF00; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x8016B394; // type:function size:0x2CE0 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x8016E074; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x8016E0A8; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x8016E1E4; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016E488; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x8016E774; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x8016EBD8; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x8016ECF0; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x8016ED68; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x8016EDE8; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x8016EDF0; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x8016EDF8; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x8016EE14; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x8016EE38; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x8016EE68; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x8016EE98; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x8016EEB8; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x8016EEBC; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x8016EEC0; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x8016EF0C; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x8016EF10; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x8016EF14; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x8016EF1C; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x8016F6D8; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x8016F820; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x8016F828; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x8016F848; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x8016F8CC; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8016F92C; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x8016F954; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x8016F9B8; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x8016FB30; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x8016FB84; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x8016FBFC; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x8016FC20; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x8016FC74; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x8016FCC8; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x8016FCD0; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x8016FD20; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x8016FD28; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x8016FD70; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x8016FE7C; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x8016FEF8; // type:function size:0x190 scope:global align:4 +keyAction1__6KingAiFv = .text:0x80170088; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x8017016C; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x801701BC; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x801701D0; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x80170260; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x801702A4; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x801702E4; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x80170438; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x8017044C; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x80170460; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x801708E0; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x80170D40; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x80170FE8; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x80171014; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x801712A4; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x8017175C; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x8017187C; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x80171B00; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x80171C18; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x80171CE4; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x80171D2C; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x80171DF8; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x801720F8; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x80172404; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x801727E4; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x80172C2C; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x80172EE4; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x80173074; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x80173480; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x801735CC; // type:function size:0x1A4 scope:global align:4 +update__6KingAiFv = .text:0x80173770; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x801767F4; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x801768D0; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x80176B1C; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x80176D2C; // type:function size:0x244 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x80176F70; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x8017704C; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x80177288; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x801772A4; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x801772C0; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x801774FC; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x80177524; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x80177704; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x80177844; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x801779DC; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x80177F54; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80178184; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x80178DF0; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80178F8C; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017900C; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x801791B8; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x801791D4; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x801791F0; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017921C; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x8017941C; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x80179494; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x801797C4; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x80179848; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x80179850; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x801798A4; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x801798F0; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x80179918; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x80179938; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x801799D0; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x80179A3C; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x80179A74; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x80179AB8; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x80179B10; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x80179B60; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x80179B68; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x80179D14; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x80179D4C; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x80179DC0; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x80179ED0; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x80179F4C; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x80179FA8; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x8017A050; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x8017A064; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x8017A08C; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x8017A0C8; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x8017A1A4; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x8017A38C; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x8017A5B8; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x8017A760; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x8017A940; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x8017AA04; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x8017ADA4; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x8017AF78; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8017B81C; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x8017B844; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x8017BAF8; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x8017BB90; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x8017BB98; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x8017BBE8; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x8017BC84; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x8017BCD0; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x8017BCF8; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x8017BD44; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x8017BE24; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x8017BEA8; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x8017BECC; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x8017BF10; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x8017BF64; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x8017BFB4; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x8017BFBC; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x8017C030; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x8017C1C4; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x8017C240; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x8017C284; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x8017C2A0; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x8017C2B4; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x8017C37C; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x8017C3C0; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x8017C3F8; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x8017C5AC; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x8017C60C; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x8017C7E0; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x8017CA08; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x8017CBE4; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x8017CDE4; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x8017CFB0; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x8017D848; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x8017D86C; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x8017D8FC; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x8017D968; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x8017D970; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x8017D9BC; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x8017D9F8; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x8017D9FC; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x8017DA48; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x8017DAEC; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x8017DB58; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017DB74; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x8017DBB8; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x8017DC08; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x8017DC10; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x8017DCA0; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x8017DD24; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x8017DD2C; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x8017DD8C; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x8017DDC0; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x8017DDC4; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x8017DDE4; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x8017DE7C; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x8017DEE8; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x8017DF0C; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x8017DF50; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x8017DFA0; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x8017DFA8; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x8017DFC8; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x8017E03C; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x8017E0B8; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x8017E0BC; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x8017E0C0; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x8017E0D4; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x8017E0E4; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x8017E0E8; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x8017E3B8; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x8017E448; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x8017E4CC; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017E4D4; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x8017E538; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x8017E56C; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x8017E570; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x8017E590; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x8017E628; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017E694; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x8017E6B8; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x8017E6FC; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017E750; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017E7A0; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x8017E7A8; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x8017E7C8; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x8017E83C; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x8017E8B8; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x8017E8BC; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x8017E8C0; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x8017E8D4; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x8017E8E4; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x8017E8E8; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x8017E8F4; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x8017EE38; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x8017EEC8; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x8017EF4C; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x8017EFA8; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x8017EFB0; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x8017EFF0; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x8017F030; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x8017F07C; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x8017F0A4; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x8017F0F0; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x8017F188; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x8017F1F4; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x8017F218; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x8017F25C; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x8017F264; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x8017F2B4; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x8017F2BC; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x8017F33C; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x8017F3F4; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x8017F4AC; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x8017F4B0; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x8017F52C; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x8017F5E8; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x8017F6B8; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x8017F924; // type:function size:0x30C scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x8017FC30; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x8017FCE0; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x8017FDA0; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x8017FF3C; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x80180234; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x80180280; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x801802A8; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x80180308; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x80180404; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x801804A0; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x801805C0; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x80180760; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x801807EC; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x8018090C; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x80180AD0; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x80180C10; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x80180D7C; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x80181098; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x801810AC; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x801810D4; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x8018115C; // type:function size:0x2C4 scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x80181420; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x801818FC; // type:function size:0x174 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x80181A70; // type:function size:0x6A4 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x80182114; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x801821A8; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x80182228; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x80182254; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x801822BC; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x80182430; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x8018246C; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x801824D0; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x80182558; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x80182880; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x801828EC; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x80182970; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x801829F4; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x80182B0C; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x80182BFC; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x80182CEC; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x80183054; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x80183078; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x801830D8; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x80183120; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x80183478; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x801834F8; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x80183560; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x801835D8; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x80183718; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x8018373C; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x801838B4; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x801839A8; // type:function size:0x14C scope:global align:4 +setSpecialNumber__3zenFii = .text:0x80183AF4; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x80183B20; // type:function size:0x200 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x80183D20; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x80183DB0; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x80183E24; // type:function size:0x128 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x80183F4C; // type:function size:0x37C scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x801842C8; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x801843CC; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x80184780; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x80184788; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x80184980; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x801849BC; // type:function size:0x498 scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x80184E54; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x80184F38; // type:function size:0x9F8 scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x80185930; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x801859C8; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x80185A8C; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x80185B60; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x80185C34; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x80185F58; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x80185FE4; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x801863A4; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x80186454; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x801864B0; // type:function size:0x7C scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x8018652C; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x801865E8; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x80186618; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x801866F8; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x801867CC; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80186998; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x80186C34; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x80186C94; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x80186D20; // type:function size:0xDDC scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x80187AFC; // type:function size:0x17C scope:global align:4 +__ct__Q23zen14ogScrResultMgrFPQ23zen10EnumResult = .text:0x80187C78; // type:function size:0x170 scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x80187DE8; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x8018852C; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x801888B0; // type:function size:0xE8 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x80188998; // type:function size:0x9CC scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x80189364; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x801893F0; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x80189488; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x801896A8; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x80189B8C; // type:function size:0x5D4 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x8018A160; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x8018A1A8; // type:function size:0x128 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x8018A2D0; // type:function size:0x168 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x8018A438; // type:function size:0x344 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x8018A77C; // type:function size:0x748 scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x8018AEC4; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B030; // type:function size:0x140 scope:global align:4 +getCardFileInfos__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B170; // type:function size:0x1F4 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x8018B364; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B384; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B464; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B518; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x8018B52C; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B61C; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x8018BAFC; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x8018BE28; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x8018BF8C; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x8018C4AC; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C664; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x8018C954; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x8018CC94; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x8018CF5C; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x8018D854; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x8018D860; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x8018DA18; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x8018DBD0; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x8018DC88; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x8018DD10; // type:function size:0x404 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8018E114; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E480; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E67C; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x8018E850; // type:function size:0xA20 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x8018F270; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x8018F294; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x8018F3F0; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x8018F438; // type:function size:0x118 scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x8018F550; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x8018F5D0; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x8018F62C; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x8018F684; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018F6D8; // type:function size:0x1DC scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x8018F8B4; // type:function size:0x20C scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018FAC0; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x8018FB08; // type:function size:0x230 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x8018FD38; // type:function size:0x168 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x8018FEA0; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x8018FEB4; // type:function size:0x568 scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x8019041C; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x80190520; // type:function size:0x914 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x80190E34; // type:function size:0x168 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x80190F9C; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x80190FE0; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x80191018; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x80191050; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x80191274; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x80191404; // type:function size:0xC18 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x8019201C; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x8019212C; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x80192270; // type:function size:0x14C scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x801923BC; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x801924B8; // type:function size:0x174 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x8019262C; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x801928C0; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x8019295C; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x80192A24; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x80192AC4; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x80192AE8; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x80192C40; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x80192ED8; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x80193190; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x801935C0; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x80193788; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x80193894; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x80193998; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x80194218; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x80194308; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x801943C8; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x80194718; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x80194758; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x801949D0; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x80194DEC; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x80195340; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x80195640; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x80195A3C; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x80195CA8; // type:function size:0x590 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x80196238; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x80196600; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x80196710; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x80196760; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x801967B4; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x8019694C; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80196A08; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80196D68; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x80196E54; // type:function size:0x340 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x80197194; // type:function size:0xA8 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x8019723C; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80197C48; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80197C84; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x80197E14; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x80197EB8; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x801985A4; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80198778; // type:function size:0x738 scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x80198EB0; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x80198F70; // type:function size:0x818 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x80199788; // type:function size:0x10C scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x80199894; // type:function size:0x3DC scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x80199C70; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x80199DD8; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x80199E2C; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x80199E80; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x8019A1C4; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8019A2D0; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019A678; // type:function size:0x494 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x8019AB0C; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019AB70; // type:function size:0x2D0 scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x8019AE40; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x8019AF04; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x8019B208; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x8019B528; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x8019B7C4; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x8019B8A0; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x8019B998; // type:function size:0x38 scope:global align:4 +stop__Q23zen13ogScrStartMgrFv = .text:0x8019B9D0; // type:function size:0x28 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x8019B9F8; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x8019BBB8; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019BC44; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x8019BD30; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019BDF4; // type:function size:0x538 scope:global align:4 +_Error__FPce = .text:0x8019C32C; // type:function size:0x9C scope:local align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x8019C3C8; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x8019C428; // type:function size:0xE28 scope:global align:4 +__ct__12CMresultModeFv = .text:0x8019D250; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x8019D2FC; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x8019D374; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x8019D4FC; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x8019D52C; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x8019D56C; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x8019D5F0; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x8019D614; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x8019D694; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x8019D6B8; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x8019D778; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x8019D79C; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x8019D81C; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x8019D840; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x8019D924; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x8019D948; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x8019DA1C; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x8019DA40; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x8019DB70; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x8019DB94; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x8019DC14; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x8019DC38; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x8019DCC0; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x8019DCE4; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x8019DD74; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019DD98; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x8019DE18; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x8019DE3C; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x8019DEBC; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x8019DEE0; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x8019DF90; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x8019DFB4; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x8019E034; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x8019E058; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019E0D8; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x8019E0FC; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x8019E13C; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x8019E140; // type:function size:0x168 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x8019E2A8; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x8019E350; // type:function size:0x36C scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x8019E6BC; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x8019E878; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x8019E89C; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x8019E8A0; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x8019E8D0; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x8019E950; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x8019E954; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019E9E8; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019E9EC; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019EBAC; // type:function size:0x180 scope:global align:4 +_Error__FPce = .text:0x8019ED2C; // type:function size:0x9C scope:local align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x8019EDC8; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x8019F0E4; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x8019F218; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x8019F314; // type:function size:0x6A0 scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x8019F9B4; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x8019FAF4; // type:function size:0x7C scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x8019FB70; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x8019FBAC; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x8019FCC4; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019FCF4; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019FD38; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x8019FD78; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x8019FDBC; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x8019FE64; // type:function size:0x64 scope:global align:4 +_Error__FPce = .text:0x8019FEC8; // type:function size:0x9C scope:local align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019FF64; // type:function size:0x25C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x801A01C0; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x801A0314; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x801A048C; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x801A0FE4; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A12DC; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A21DC; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x801A2930; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x801A2F78; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x801A313C; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x801A3318; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A39C0; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A39FC; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3A38; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3A74; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3AC8; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3B24; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3B80; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x801A3C0C; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x801A3D1C; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x801A3E64; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A3F30; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A3F64; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x801A4054; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x801A40C4; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x801A4118; // type:function size:0x74 scope:global align:4 +_Error__FPce = .text:0x801A418C; // type:function size:0x9C scope:local align:4 +load__Q23zen14particleLoaderFPcb = .text:0x801A4228; // type:function size:0x170 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x801A4398; // type:function size:0x84 scope:global align:4 +_Error__FPce = .text:0x801A441C; // type:function size:0x9C scope:local align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x801A44B8; // type:function size:0x178 scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x801A4630; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A467C; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x801A46F0; // type:function size:0x110 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x801A4800; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x801A4874; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x801A491C; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x801A49B8; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x801A4A50; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x801A4B04; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x801A4B34; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x801A4BC8; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A4CF8; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A4D54; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A4DFC; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A4E58; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A4FD8; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A5020; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A5134; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A519C; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A5204; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A52A0; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A5660; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A5840; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A5ACC; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A5B48; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A5C40; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A5CC4; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A5DE4; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A5E3C; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A5EBC; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A5EF0; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A6040; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A613C; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A6250; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A63F4; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A64BC; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A64C4; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A64CC; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A64D4; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A64DC; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A64E0; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A64E4; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A64EC; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A666C; // type:function size:0x31C scope:global align:4 +_Error__FPce = .text:0x801A6988; // type:function size:0x9C scope:local align:4 +addAnimation__12TAIanimationFPc = .text:0x801A6A24; // type:function size:0x58 scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A6A7C; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A6B00; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A6E64; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A7A78; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A7B98; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A7C5C; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A8358; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A8360; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A836C; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A8374; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A843C; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A844C; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A8498; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A84B0; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A84C8; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A8750; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A8770; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A8788; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A87A8; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A87C0; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A87E0; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A8800; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A8818; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A8830; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A8840; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A88AC; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A8A00; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A8A48; // type:function size:0x1D8 scope:weak align:4 +_Error__FPce = .text:0x801A8C20; // type:function size:0x9C scope:local align:4 +__ct__16TAImarSoundTableFv = .text:0x801A8CBC; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801A8D40; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801A9180; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801A9F68; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801AA134; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801AA1F8; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801AA524; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801AA530; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801AA538; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801AA5A8; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AA5B0; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AA5C8; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801AA5E0; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801AA62C; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801AA64C; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801AA654; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801AA66C; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801AA8E0; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801AAB18; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801AAB20; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801AAB38; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801AAB40; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801AAB58; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801AAB64; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801AABC0; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801AABC8; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801AAC94; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801AACAC; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801AACB0; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801AACC8; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801AADFC; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801AAE14; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801AAE50; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801AAEE4; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AAEEC; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AAEF8; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801AAFE8; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801AB000; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801AB048; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801AB318; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801AB328; // type:function size:0x234 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801AB55C; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801AB59C; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801AB9F4; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AB9FC; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801ABA04; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801ABA54; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801ABA70; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801ABAA0; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801ABB98; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801ABC44; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801ABC88; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801ABDCC; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801ABE10; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801ABEF0; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801ABEF8; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801ABF40; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801ABFA8; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801AC0A8; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801AC150; // type:function size:0x50 scope:global align:4 +_Error__FPce = .text:0x801AC1A0; // type:function size:0x9C scope:local align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801AC23C; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801AC2D0; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801AC474; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801AC5B4; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801AC5BC; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801AC76C; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801AC7B8; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801AC8D0; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801AC9BC; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801ACABC; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACAC4; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACAE4; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACB08; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801ACC18; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801ACC50; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801ACD58; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801ACD70; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801ACDA8; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801ACE44; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801ACEFC; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801ACF14; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801ACF4C; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801ACFD4; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801ACFEC; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801AD0C8; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801AD3E4; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801AD4B0; // type:function size:0x1FC scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801AD6AC; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801AD724; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801AD780; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801AD868; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801AD968; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801AD988; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801ADA3C; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801ADB54; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801ADBCC; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801ADC50; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801ADCE8; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801ADCF0; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801ADD6C; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801AE01C; // type:function size:0x368 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801AE384; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801AE38C; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801AE3C4; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801AE528; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801AE540; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801AE650; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801AE714; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801AE74C; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AE83C; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AE874; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801AE964; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801AE990; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801AEA08; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801AEA44; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801AEBF4; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801AF024; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801AF074; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801AF3A4; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801AF3AC; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF3C4; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF444; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF48C; // type:function size:0x358 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801AF7E4; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801AF820; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801AFBC0; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801AFBE0; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801AFC60; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801AFF1C; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801AFF34; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801AFF3C; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801AFFCC; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801B00DC; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801B00E0; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801B0170; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801B0288; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801B029C; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801B02C0; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801B030C; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801B0328; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801B034C; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801B0500; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801B0588; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801B05BC; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801B06D4; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801B06DC; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801B06E0; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801B08E0; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801B0964; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B09E8; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B0A54; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801B0ABC; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801B0B8C; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B0C5C; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B0E34; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B0E3C; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801B0E44; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801B0F78; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801B1074; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801B1100; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801B1264; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801B12E4; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801B1430; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801B14C8; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801B1514; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801B15B4; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801B15BC; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801B1614; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801B16FC; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801B1710; // type:function size:0xD4 scope:global align:4 +_Error__FPce = .text:0x801B17E4; // type:function size:0x9C scope:local align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801B1880; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801B18BC; // type:function size:0x268 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801B1B24; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801B1B2C; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801B1C50; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801B1C54; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801B1C5C; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801B1E74; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B1EDC; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B1F20; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B1F3C; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801B1FDC; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801B2068; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801B21C0; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B2238; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801B2240; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B2318; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801B2320; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801B2448; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801B2450; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801B24E4; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801B2564; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801B25FC; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801B2690; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801B272C; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801B27C4; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801B27CC; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2840; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2910; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2DC4; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2DCC; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801B2DD4; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801B2DF4; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801B2E74; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B2E9C; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801B2EA4; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801B2F58; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801B3024; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801B3198; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801B3238; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801B324C; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801B3270; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801B331C; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801B3348; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801B3394; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801B33E4; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801B33E8; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801B34AC; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801B3584; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801B35C0; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801B382C; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801B3888; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801B390C; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801B396C; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801B3998; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801B3B04; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801B3B98; // type:function size:0x1FC scope:global align:4 +_Error__FPce = .text:0x801B3D94; // type:function size:0x9C scope:local align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801B3E30; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801B3E38; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801B3E4C; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B3E94; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B3EC4; // type:function size:0x40 scope:global align:4 +update__7P2DPaneFv = .text:0x801B3F04; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801B4038; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801B4040; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801B418C; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B42F4; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801B4584; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801B4664; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801B4B08; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801B4B54; // type:function size:0xC8 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801B4C1C; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801B4E78; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801B4F84; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801B4F88; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801B4F8C; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801B4FF0; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801B4FF8; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801B501C; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801B5040; // type:function size:0x68 scope:weak align:4 +_Error__FPce = .text:0x801B50A8; // type:function size:0x9C scope:local align:4 +makeResident__10P2DPictureFv = .text:0x801B5144; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B51B8; // type:function size:0x70 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B5228; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B52DC; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B5410; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B54BC; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B5558; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B55AC; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B5614; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B568C; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B5CF0; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B5F24; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B63D4; // type:function size:0x14 scope:global align:4 +_Error__FPce = .text:0x801B63E8; // type:function size:0x9C scope:local align:4 +update__9P2DScreenFv = .text:0x801B6484; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B64D0; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B6534; // type:function size:0x144 scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B6678; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B6818; // type:function size:0x30 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B6848; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B6B70; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B6BA0; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B6BC0; // type:function size:0x28 scope:global align:4 +_Error__FPce = .text:0x801B6BE8; // type:function size:0x9C scope:local align:4 +getResource__9P2DStreamFi = .text:0x801B6C84; // type:function size:0x124 scope:global align:4 +align__9P2DStreamFi = .text:0x801B6DA8; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B6E38; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B6E50; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B6EB0; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B6F18; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B6F2C; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B6FE8; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B7098; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B70BC; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B70E0; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B7114; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B7194; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B71D8; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B71F4; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B7230; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B7260; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B72E8; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B7448; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B76A0; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B7708; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B77A0; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B7B34; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B7CC0; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B7DC0; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B7E60; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B7EB8; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B7F1C; // type:function size:0x9C scope:local align:4 +makeResident__10P2DTextBoxFv = .text:0x801B7FB8; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B7FF0; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B8040; // type:function size:0x220 scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B8260; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B82C8; // type:function size:0x1A8 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B8470; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B84D4; // type:function size:0x9C scope:local align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B8570; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B85B8; // type:function size:0x110 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B86C8; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B871C; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B8744; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B8788; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B89D8; // type:function size:0x5C8 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801B8FA0; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801B95C4; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801B9738; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801B9840; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801B9990; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801B9A4C; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801B9B24; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801B9B48; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801B9C0C; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x801B9F14; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801B9FB0; // type:function size:0x1FF4 scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801BBFA4; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801BC1C4; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801BC1D4; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801BC1E4; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801BC220; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801BC674; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BC764; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BC7E0; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BC860; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BC910; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801BC9C4; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801BCBE8; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BCE1C; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BCE24; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801BCE4C; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801BCEB8; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801BCFC0; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801BD294; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801BD578; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801BD730; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BD7A8; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801BD8F4; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801BDA88; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801BDBA0; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801BDD98; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BDDD4; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801BDDDC; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801BE234; // type:function size:0x6C scope:global align:4 +_Error__FPce = .text:0x801BE2A0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801BE33C; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801C0FE8; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801C0FFC; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801C10C4; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801C112C; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801C11C0; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801C1310; // type:function size:0x4DC scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801C17EC; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801C1950; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801C1988; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801C25A8; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801C2AD4; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801C2E98; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801C2EF4; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801C2FFC; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801C3174; // type:function size:0x160 scope:weak align:4 +_Error__FPce = .text:0x801C32D4; // type:function size:0x9C scope:local align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801C3370; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801C3478; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801C349C; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801C34EC; // type:function size:0xDC scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C35C8; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801C36E0; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801C36E8; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C36FC; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C37E8; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801C3818; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C3938; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801C3954; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801C39C4; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801C3AE8; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801C3C50; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801C3FEC; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801C40C8; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801C4134; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801C41C8; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801C42C0; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801C45C8; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801C46D8; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801C4804; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801C49B0; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801C4BA8; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801C4E68; // type:function size:0x5C scope:global align:4 +_Error__FPce = .text:0x801C4EC4; // type:function size:0x9C scope:local align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801C4F60; // type:function size:0x54 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801C4FB4; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801C5030; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C64A4; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C65C8; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C65F4; // type:function size:0x78 scope:global align:4 +_Error__FPce = .text:0x801C666C; // type:function size:0x9C scope:local align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C6708; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C67B4; // type:function size:0x144 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C68F8; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C6EBC; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C6F44; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C6F50; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C6F5C; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C6F68; // type:function size:0x184 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C70EC; // type:function size:0xB4C scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C7C38; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C7C8C; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C7CF8; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C8094; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C8420; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C8514; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C8920; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C894C; // type:function size:0x5C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C89A8; // type:function size:0x54 scope:global align:4 +_Error__FPce = .text:0x801C89FC; // type:function size:0x9C scope:local align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C8A98; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C8AD0; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C8CB0; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801C8E4C; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C91D0; // type:function size:0x240 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C9410; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801C9730; // type:function size:0x450 scope:global align:4 +_Error__FPce = .text:0x801C9B80; // type:function size:0x9C scope:local align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801C9C1C; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801C9CA0; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801CA0B8; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801CAFAC; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801CB0EC; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801CB508; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801CB52C; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801CB544; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801CB568; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801CB684; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CB6B8; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CB74C; // type:function size:0x8EC scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CC038; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CC054; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801CC06C; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801CC10C; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CD1BC; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CD1DC; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801CD1F4; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801CD3E4; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801CD408; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801CD568; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801CD5C4; // type:function size:0x188 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801CD74C; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801CD754; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801CDD00; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801CE0B4; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801CE128; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801CE178; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801CE530; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801CE5B4; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801CE920; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801CF3A4; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801CFAA0; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801CFAF8; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801CFB50; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801CFB68; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CFB80; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CFBA0; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CFBC0; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CFBD8; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CFBF0; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801CFD5C; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801CFD90; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801CFDF0; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801CFE74; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801D0234; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801D1070; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801D176C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801D1784; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D179C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D17BC; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D17DC; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D17F4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D180C; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D1978; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D1990; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801D19A8; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801D1A2C; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801D1EA4; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801D3140; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801D383C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801D3854; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D386C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D388C; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D38AC; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D38C4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D38DC; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801D3A48; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801D3AB0; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801D3C94; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801D3CAC; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801D3CB4; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801D3CF0; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801D3D2C; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D3D54; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D3E1C; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801D404C; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D4064; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D407C; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801D4094; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801D4118; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801D440C; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801D46E8; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801D4DE4; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801D4E08; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801D4E54; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801D4FC8; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D4FD8; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D5094; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D50F0; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801D50F8; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801D515C; // type:function size:0xE8 scope:weak align:4 +_Error__FPce = .text:0x801D5244; // type:function size:0x9C scope:local align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801D52E0; // type:function size:0x274 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801D5554; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801D55D8; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801D5998; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D6468; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D6830; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D6850; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D6900; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D6A48; // type:function size:0xF8 scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D6B40; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D723C; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D7254; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D72B4; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D7488; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D74A8; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D7838; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D78A4; // type:function size:0x2BC scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D7B60; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D7BAC; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D7C7C; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D7DA4; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D7DAC; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D7E40; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D7E48; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D7E94; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D7EF0; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D7FA8; // type:function size:0x8D8 scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D8880; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D8A10; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801D8C3C; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801D8C98; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801D8CA0; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801D8D24; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801D901C; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801D9204; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801D938C; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801D93C8; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801D9AC4; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801D9B00; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801D9DE4; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801D9DFC; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801D9E60; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801D9E68; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801D9E78; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801D9EE0; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801DA034; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801DA210; // type:function size:0xE0 scope:weak align:4 +_Error__FPce = .text:0x801DA2F0; // type:function size:0x9C scope:local align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801DA38C; // type:function size:0xD0 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801DA45C; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801DA4FC; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801DA564; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DA5A4; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DA750; // type:function size:0x70 scope:global align:4 +_Error__FPce = .text:0x801DA7C0; // type:function size:0x9C scope:local align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801DA85C; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801DA8E0; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801DACE4; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801DC6B0; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801DC774; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801DCE70; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801DCEA8; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801DCF54; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801DCF88; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801DD040; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801DD190; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801DD1A0; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801DD248; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801DD41C; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801DD454; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801DD57C; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801DD664; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801DD6C8; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801DD78C; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801DD900; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801DD910; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801DD930; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801DD948; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801DD960; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801DD9B0; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801DDAD8; // type:function size:0x928 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801DE400; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801DE45C; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DE4B8; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DE504; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DE51C; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DE568; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801DE580; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801DE5B4; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801DE6A4; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801DE6B8; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x801DE6C0; // type:function size:0x9C scope:local align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801DE75C; // type:function size:0x4C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801DE7A8; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801DE7DC; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801DE818; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801DE854; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801DE898; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801DE910; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801DE954; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801DEB08; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801DEBE0; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801DEC30; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801DEED0; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801DEF18; // type:function size:0x9C scope:local align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801DEFB4; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801DF348; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801DF3B8; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801DF3DC; // type:function size:0x3A8 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801DF784; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801DF88C; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801DF8D8; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801DF920; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801DF9BC; // type:function size:0x24D4 scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801E1E90; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801E2004; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E2018; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801E2044; // type:function size:0x6C0 scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801E2704; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801E27B0; // type:function size:0x130 scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801E28E0; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801E29E4; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801E2AD0; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801E2C34; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801E2CEC; // type:function size:0x178 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801E2E64; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801E2E98; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E3020; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801E3058; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E3C6C; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801E3EC8; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801E3FB4; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801E4094; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801E43EC; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801E4A14; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801E4D64; // type:function size:0xE4 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E4E48; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E52DC; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801E5690; // type:function size:0x134 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801E57C4; // type:function size:0x1BA0 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E7364; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E742C; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E7744; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E778C; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E7C08; // type:function size:0x275C scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801EA364; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801EA578; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801EAB1C; // type:function size:0x87C scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801EB398; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801EB9AC; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801EBB74; // type:function size:0x154 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801EBCC8; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801EBDA4; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801EBEC8; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801EC0D4; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801EC2F4; // type:function size:0x168 scope:weak align:4 +_Error__FPce = .text:0x801EC45C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801EC4F8; // type:function size:0x224 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801EC71C; // type:function size:0x7C scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801EC798; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801EC940; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801ED3B0; // type:function size:0x30 scope:global align:4 +_Error__FPce = .text:0x801ED3E0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801ED47C; // type:function size:0x34C scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801ED7C8; // type:function size:0x170 scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801ED938; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801ED974; // type:function size:0x100 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801EDA74; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801EDBA8; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801EDCC0; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801EE1D4; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801EE214; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801EE278; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801EE2C4; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801EE308; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801EE3B4; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801EE460; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801EE480; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801EE6FC; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801EE748; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801EE76C; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801EE894; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801EE8B8; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801EE960; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801EE9C0; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801EEB3C; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801EEB60; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801EEDF4; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801EF4F0; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801EF580; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801EF630; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801EF6B4; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801EF9F0; // type:function size:0x548 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801EFF38; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801F0634; // type:function size:0x364 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801F0998; // type:function size:0x3BC scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801F0D54; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801F0DE4; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801F0E78; // type:function size:0xAC scope:weak align:4 +getWaitCounterMax__13TAIAwaitOtamaFR4Teki = .text:0x801F0F24; // type:function size:0x8 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F0F2C; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801F10E4; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801F138C; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801F1730; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801F17B8; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801F1A4C; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F1ACC; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801F1BE8; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801F1C2C; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801F1CBC; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F1CC4; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F1DC4; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F1F2C; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801F1F34; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801F208C; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801F20BC; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801F2108; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801F2154; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801F215C; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801F227C; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x801F2360; // type:function size:0x9C scope:local align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801F23FC; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801F254C; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801F2554; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801F2A38; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801F2AD4; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801F2B48; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801F2BC4; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F2C00; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801F2C64; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F2D78; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801F2D80; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801F2DFC; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801F2E10; // type:function size:0x54 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801F2E64; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801F2F94; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801F3088; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801F3090; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801F32B4; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801F32F4; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801F3318; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801F3394; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801F33B8; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801F33DC; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801F33E4; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801F33EC; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801F3448; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801F361C; // type:function size:0xC8 scope:weak align:4 +_Error__FPce = .text:0x801F36E4; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801F3780; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801F41D4; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801F42A0; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801F42F0; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801F4388; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801F44F8; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801F45B4; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801F4720; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F4728; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F4774; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801F484C; // type:function size:0xFC scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801F4948; // type:function size:0xB8 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801F4A00; // type:function size:0x378 scope:global align:4 +_Error__FPce = .text:0x801F4D78; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801F4E14; // type:function size:0x4A0 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F52B4; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801F5324; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801F5344; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801F54E4; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F5518; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F5520; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801F5734; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F57B0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801F584C; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801F5C24; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801F5D50; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801F5F00; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801F5F84; // type:function size:0x360 scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801F62E4; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801F62F0; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801F6398; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F67C8; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F6810; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F6A1C; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F6B00; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F6B50; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F6C3C; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F6D6C; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F6F20; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F6F54; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F6FBC; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F7008; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F7214; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F73D0; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F744C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F74E8; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F7830; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F7854; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F78A4; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F78EC; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F7910; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F81B4; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F821C; // type:function size:0x1E4 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F8400; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F84F4; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F86E4; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F8720; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F8774; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F880C; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F8840; // type:function size:0x98 scope:global align:4 +_Error__FPce = .text:0x801F88D8; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F8974; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801F9434; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801F9608; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801F9740; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801F9744; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801F9E30; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801FA004; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801FA074; // type:function size:0x1B4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801FA228; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801FA360; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801FA384; // type:function size:0xC8 scope:global align:4 +_Error__FPce = .text:0x801FA44C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801FA4E8; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FA534; // type:function size:0x1C8 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801FA6FC; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FA768; // type:function size:0xA8 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801FA810; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801FA838; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801FA860; // type:function size:0x134 scope:global align:4 +PPCMfmsr = .text:0x801FA994; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801FA99C; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801FA9A4; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801FA9AC; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801FA9B4; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801FA9BC; // type:function size:0x8 scope:global align:4 +PPCSync = .text:0x801FA9C4; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801FA9CC; // type:function size:0x14 scope:global align:4 +PPCMfhid2 = .text:0x801FA9E0; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801FA9E8; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801FA9F0; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801FA9F8; // type:function size:0x28 scope:global align:4 +OSInit = .text:0x801FAA20; // type:function size:0x2DC scope:global align:4 +OSExceptionInit = .text:0x801FACFC; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801FAF7C; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801FAF7C; // type:label scope:global +__OSDBJump = .text:0x801FAFA0; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801FAFA0; // type:label scope:global +__OSDBJUMPEND = .text:0x801FAFA4; // type:label scope:global +__OSSetExceptionHandler = .text:0x801FAFA4; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801FAFC0; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801FAFD4; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801FAFD4; // type:label scope:global +__DBVECTOR = .text:0x801FB02C; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801FB03C; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801FB06C; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801FB070; // type:function size:0x54 scope:local align:4 +__OSPSInit = .text:0x801FB0C4; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801FB0FC; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801FB110; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801FB15C; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801FB168; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801FB3B8; // type:function size:0x68 scope:global align:4 +OSSetAbsAlarm = .text:0x801FB420; // type:function size:0x64 scope:global align:4 +OSCancelAlarm = .text:0x801FB484; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801FB5A0; // type:function size:0x210 scope:local align:4 +DecrementerExceptionHandler = .text:0x801FB7B0; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801FB7FC; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801FB8F8; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801FB968; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801FB970; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801FB978; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801FB980; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801FB988; // type:function size:0x194 scope:global align:4 +__OSStopAudioSystem = .text:0x801FBB1C; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801FBBF4; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801FBC08; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801FBC38; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801FBC6C; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801FBCA0; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801FBCD0; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801FBD00; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801FBD30; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801FBD68; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801FBD78; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x801FBD8C; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801FBE24; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801FBF84; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801FC078; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801FC19C; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801FC2C4; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801FC320; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801FC32C; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801FC3AC; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801FC484; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801FC48C; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801FC4B0; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801FC56C; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801FC814; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801FC898; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801FC8E0; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801FC960; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801FCA8C; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801FCAA8; // type:function size:0x174 scope:global align:4 +SetExiInterruptMask = .text:0x801FCC1C; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x801FCD10; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x801FCF6C; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x801FD00C; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x801FD0F8; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x801FD300; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x801FD348; // type:function size:0x7C scope:global align:4 +EXIProbe = .text:0x801FD3C4; // type:function size:0x168 scope:global align:4 +EXIProbeEx = .text:0x801FD52C; // type:function size:0x60 scope:global align:4 +EXIAttach = .text:0x801FD58C; // type:function size:0xE4 scope:global align:4 +EXIDetach = .text:0x801FD670; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x801FD72C; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x801FD858; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x801FD968; // type:function size:0x80 scope:local align:4 +TCIntrruptHandler = .text:0x801FD9E8; // type:function size:0x1F4 scope:local align:4 +EXTIntrruptHandler = .text:0x801FDBDC; // type:function size:0xAC scope:local align:4 +EXIInit = .text:0x801FDC88; // type:function size:0x104 scope:global align:4 +EXILock = .text:0x801FDD8C; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x801FDE80; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x801FDF5C; // type:function size:0x18 scope:global align:4 +OSGetFontEncode = .text:0x801FDF74; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801FDFCC; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801FDFCC; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801FDFDC; // type:label scope:global +OSEnableInterrupts = .text:0x801FDFE0; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801FDFF4; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801FE018; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801FE034; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801FE048; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801FE0BC; // type:function size:0x2B0 scope:local align:4 +__OSMaskInterrupts = .text:0x801FE36C; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801FE3F4; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801FE47C; // type:function size:0x324 scope:global align:4 +ExternalInterruptHandler = .text:0x801FE7A0; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801FE7EC; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801FE804; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801FE864; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801FE92C; // type:function size:0xDC scope:global align:4 +OSInitMutex = .text:0x801FEA08; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x801FEA40; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x801FEB1C; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x801FEBE4; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x801FEC54; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x801FEC74; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x801FED48; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x801FED68; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x801FEE68; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x801FEEA0; // type:function size:0x74 scope:global align:4 +Run = .text:0x801FEF14; // type:function size:0x40 scope:local align:4 +Callback = .text:0x801FEF54; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x801FEF60; // type:function size:0x1B0 scope:global align:4 +OSRegisterResetFunction = .text:0x801FF110; // type:function size:0x84 scope:global align:4 +Reset = .text:0x801FF194; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x801FF204; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x801FF24C; // type:function size:0x1B8 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x801FF404; // type:function size:0xF4 scope:global align:4 +OSGetResetSwitchState = .text:0x801FF4F8; // type:function size:0x1F4 scope:global align:4 +WriteSramCallback = .text:0x801FF6EC; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x801FF74C; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x801FF864; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x801FF998; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x801FF9F4; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x801FFA50; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x801FFD58; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x801FFD7C; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x801FFDA0; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x801FFDB0; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x801FFE30; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x801FFED4; // type:function size:0x80 scope:global align:4 +OSSetProgressiveMode = .text:0x801FFF54; // type:function size:0xA4 scope:global align:4 +SIBusy = .text:0x801FFFF8; // type:function size:0x20 scope:global align:4 +CompleteTransfer = .text:0x80200018; // type:function size:0x244 scope:local align:4 +SIIntrruptHandler = .text:0x8020025C; // type:function size:0x118 scope:local align:4 +SIInit = .text:0x80200374; // type:function size:0x74 scope:global align:4 +__SITransfer = .text:0x802003E8; // type:function size:0x208 scope:local align:4 +SIGetStatus = .text:0x802005F0; // type:function size:0x10 scope:global align:4 +SISetCommand = .text:0x80200600; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x80200614; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x80200624; // type:function size:0x60 scope:global align:4 +SIEnablePolling = .text:0x80200684; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x80200720; // type:function size:0x6C scope:global align:4 +SIGetResponse = .text:0x8020078C; // type:function size:0x24 scope:global align:4 +AlarmHandler = .text:0x802007B0; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x8020083C; // type:function size:0x13C scope:global align:4 +SystemCallVector = .text:0x80200978; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x80200978; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x80200994; // type:label scope:global +__OSInitSystemCall = .text:0x80200998; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x802009FC; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x80200B24; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x80200B34; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x80200B40; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x80200B74; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x80200BB4; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x80200BF4; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x80200C5C; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x80200C98; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x80200E58; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x80200EA8; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x802010A8; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x802010D8; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x80201114; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x80201234; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x80201318; // type:function size:0x1BC scope:global align:4 +OSResumeThread = .text:0x802014D4; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x8020175C; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x802018CC; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x802019B8; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x80201ABC; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x80201AC4; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x80201B60; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x802022B0; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x802022C8; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x802022D0; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x80202334; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x802024D0; // type:function size:0x204 scope:global align:4 +InitializeUART = .text:0x802026D4; // type:function size:0x48 scope:global align:4 +ReadUARTN = .text:0x8020271C; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x80202724; // type:function size:0x200 scope:global align:4 +__init_user = .text:0x80202924; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x80202944; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x80202998; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x802029B8; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x802029E0; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x80202A28; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x80202A38; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x80202A54; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x80202AA4; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x80202AD0; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x80202B9C; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x80202BEC; // type:function size:0x104 scope:global align:4 +MTXTrans = .text:0x80202CF0; // type:function size:0x3C scope:global align:4 +MTXScale = .text:0x80202D2C; // type:function size:0x38 scope:global align:4 +MTXLightPerspective = .text:0x80202D64; // type:function size:0xCC scope:global align:4 +MTXPerspective = .text:0x80202E30; // type:function size:0xD0 scope:global align:4 +MTXOrtho = .text:0x80202F00; // type:function size:0x98 scope:global align:4 +PSVECSquareMag = .text:0x80202F98; // type:function size:0x1C scope:global align:4 +VECMag = .text:0x80202FB4; // type:function size:0x88 scope:global align:4 +__DVDInitWA = .text:0x8020303C; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x8020307C; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x80203370; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x802033F4; // type:function size:0x70 scope:local align:4 +Read = .text:0x80203464; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x80203574; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x802035F4; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x8020388C; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x80203920; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x8020394C; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x802039F0; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x80203A7C; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x80203B08; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x80203BA4; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x80203C3C; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x80203CC8; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x80203D64; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x80203E20; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x80203E34; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x80203E4C; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x80203E90; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x80203EC8; // type:function size:0x2E0 scope:global align:4 +DVDFastOpen = .text:0x802041A8; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x8020421C; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x802042E4; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x80204308; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x80204468; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x8020452C; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x802045EC; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x8020461C; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x80204734; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x80204758; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x80204844; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x80204874; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x80204970; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x802049C4; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x80204A44; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x80204AEC; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x80204B88; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x80204BB0; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x80204C64; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x80204EF8; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x80204F60; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x80204FF8; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x80205020; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x80205178; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x8020525C; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x80205290; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x802052C8; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x802053DC; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x80205480; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x8020557C; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x802055C0; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x8020568C; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x802056BC; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x8020572C; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x80205754; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x80205838; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x80205A80; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x80205D40; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x80206314; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x802063D0; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x802064AC; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x8020657C; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x80206650; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x80206714; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x802067B4; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x802067DC; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x80206820; // type:function size:0xAC scope:global align:4 +DVDCancelAsync = .text:0x802068CC; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x80206B3C; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x80206BE8; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x80206C0C; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x80206C14; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x80206CF8; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x80206E14; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x80206E4C; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x80206EB4; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x80206F54; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x80206FAC; // type:function size:0x60 scope:global align:4 +__DVDStoreErrorCode = .text:0x8020700C; // type:function size:0x158 scope:global align:4 +cb = .text:0x80207164; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x8020723C; // type:function size:0x150 scope:global align:4 +__VIRetraceHandler = .text:0x8020738C; // type:function size:0x210 scope:local align:4 +VISetPostRetraceCallback = .text:0x8020759C; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x802075E0; // type:function size:0x68 scope:local align:4 +__VIInit = .text:0x80207648; // type:function size:0x1E8 scope:global align:4 +VIInit = .text:0x80207830; // type:function size:0x434 scope:global align:4 +VIWaitForRetrace = .text:0x80207C64; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x80207CB8; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x80207F8C; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x8020812C; // type:function size:0x6B0 scope:global align:4 +VIFlush = .text:0x802087DC; // type:function size:0x104 scope:global align:4 +VISetNextFrameBuffer = .text:0x802088E0; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x8020894C; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x802089C8; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x802089D0; // type:function size:0xBC scope:local align:4 +VIGetTvFormat = .text:0x80208A8C; // type:function size:0xC scope:global align:4 +VIGetDTVStatus = .text:0x80208A98; // type:function size:0x3C scope:global align:4 +ClampStick = .text:0x80208AD4; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x80208C04; // type:function size:0x108 scope:global align:4 +DoReset = .text:0x80208D0C; // type:function size:0xD4 scope:local align:4 +PADProbeCallback = .text:0x80208DE0; // type:function size:0x1DC scope:local align:4 +UpdateOrigin = .text:0x80208FBC; // type:function size:0x194 scope:local align:4 +PADOriginCallback = .text:0x80209150; // type:function size:0x11C scope:local align:4 +PADOriginUpdateCallback = .text:0x8020926C; // type:function size:0x3C scope:local align:4 +PADFixCallback = .text:0x802092A8; // type:function size:0x254 scope:local align:4 +PADResetCallback = .text:0x802094FC; // type:function size:0x730 scope:local align:4 +PADReset = .text:0x80209C2C; // type:function size:0x16C scope:global align:4 +PADRecalibrate = .text:0x80209D98; // type:function size:0x154 scope:global align:4 +PADInit = .text:0x80209EEC; // type:function size:0x1C4 scope:global align:4 +PADReceiveCheckCallback = .text:0x8020A0B0; // type:function size:0x15C scope:local align:4 +PADRead = .text:0x8020A20C; // type:function size:0x338 scope:global align:4 +PADSetSamplingRate = .text:0x8020A544; // type:function size:0xB0 scope:global align:4 +PADControlMotor = .text:0x8020A5F4; // type:function size:0xBC scope:global align:4 +PADSetSpec = .text:0x8020A6B0; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x8020A710; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x8020A884; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x8020A9F8; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x8020ADF0; // type:function size:0x11C scope:local align:4 +AIRegisterDMACallback = .text:0x8020AF0C; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x8020AF50; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x8020AFD8; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x8020AFF0; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x8020B000; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x8020B018; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x8020B028; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x8020B100; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x8020B110; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x8020B1F0; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x8020B204; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x8020B22C; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x8020B300; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x8020B310; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x8020B32C; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x8020B33C; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x8020B358; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x8020B368; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x8020B4CC; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x8020B548; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x8020B5D8; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x8020B630; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x8020B814; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x8020B858; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x8020B948; // type:function size:0xF4 scope:global align:4 +ARGetBaseAddress = .text:0x8020BA3C; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x8020BA44; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x8020BABC; // type:function size:0xECC scope:local align:4 +__ARQServiceQueueLo = .text:0x8020C988; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x8020CA88; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x8020CA8C; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x8020CB58; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x8020CBC0; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x8020CD1C; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x8020CD2C; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x8020CD3C; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x8020CD54; // type:function size:0x14 scope:global align:4 +__CARDDefaultApiCallback = .text:0x8020CD68; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x8020CD6C; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x8020CDA0; // type:function size:0xCC scope:global align:4 +__CARDExiHandler = .text:0x8020CE6C; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x8020CF84; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x8020D02C; // type:function size:0x84 scope:global align:4 +__CARDReadNintendoID = .text:0x8020D0B0; // type:function size:0x10C scope:global align:4 +__CARDEnableInterrupt = .text:0x8020D1BC; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x8020D27C; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x8020D36C; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x8020D418; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x8020D4BC; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x8020D6E8; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x8020D7F8; // type:function size:0x1A0 scope:local align:4 +__CARDReadSegment = .text:0x8020D998; // type:function size:0x138 scope:global align:4 +__CARDWritePage = .text:0x8020DAD0; // type:function size:0x120 scope:global align:4 +__CARDEraseSector = .text:0x8020DBF0; // type:function size:0xDC scope:global align:4 +CARDInit = .text:0x8020DCCC; // type:function size:0x90 scope:global align:4 +__CARDSetDiskID = .text:0x8020DD5C; // type:function size:0x1C scope:global align:4 +__CARDGetControlBlock = .text:0x8020DD78; // type:function size:0xB0 scope:global align:4 +__CARDPutControlBlock = .text:0x8020DE28; // type:function size:0x50 scope:global align:4 +CARDGetResultCode = .text:0x8020DE78; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x8020DEA8; // type:function size:0x120 scope:global align:4 +CARDGetSectorSize = .text:0x8020DFC8; // type:function size:0x6C scope:global align:4 +__CARDSync = .text:0x8020E034; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x8020E0CC; // type:function size:0x50 scope:local align:4 +BlockReadCallback = .text:0x8020E11C; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x8020E1F8; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x8020E25C; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x8020E338; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x8020E39C; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x8020E3B4; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x8020E3BC; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x8020E490; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x8020E558; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x8020E670; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x8020E70C; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x8020E7B8; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x8020E7C0; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x8020E890; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x8020E958; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x8020EA1C; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x8020EBCC; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x8020EE50; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x8020F090; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8020F314; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x8020F3A0; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x8020F930; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x8020F958; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x8020F9AC; // type:function size:0x20 scope:global align:4 +DoMount = .text:0x8020F9CC; // type:function size:0x3B8 scope:local align:4 +__CARDMountCallback = .text:0x8020FD84; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x8020FE8C; // type:function size:0x188 scope:global align:4 +CARDMount = .text:0x80210014; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x8021005C; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x802100F8; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x802101A4; // type:function size:0x144 scope:local align:4 +CARDFormatAsync = .text:0x802102E8; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x80210940; // type:function size:0x48 scope:global align:4 +__CARDCompareFileName = .text:0x80210988; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x802109F0; // type:function size:0x8C scope:global align:4 +__CARDIsPublic = .text:0x80210A7C; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x80210AAC; // type:function size:0x174 scope:global align:4 +CARDOpen = .text:0x80210C20; // type:function size:0x174 scope:global align:4 +CARDClose = .text:0x80210D94; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x80210DE8; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x80210DF0; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x80210F20; // type:function size:0x218 scope:global align:4 +CARDCreate = .text:0x80211138; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x80211180; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x80211338; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x80211468; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x802115AC; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x802115F4; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x80211764; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x80211814; // type:function size:0x110 scope:global align:4 +CARDWrite = .text:0x80211924; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x8021196C; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x80211A10; // type:function size:0x128 scope:global align:4 +CARDFastDelete = .text:0x80211B38; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x80211B80; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x80211D78; // type:function size:0x128 scope:global align:4 +CARDSetStatusAsync = .text:0x80211EA0; // type:function size:0x170 scope:global align:4 +CARDSetStatus = .text:0x80212010; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x80212058; // type:function size:0x1F0 scope:global align:4 +CARDRename = .text:0x80212248; // type:function size:0x48 scope:global align:4 +ExtHandler = .text:0x80212290; // type:function size:0xC scope:local align:4 +ExiHandler = .text:0x8021229C; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x802122CC; // type:function size:0x3C scope:local align:4 +HIOEnumDevices = .text:0x80212308; // type:function size:0x1C4 scope:global align:4 +HIOInit = .text:0x802124CC; // type:function size:0x234 scope:global align:4 +HIOReadMailbox = .text:0x80212700; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x80212830; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x80212924; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x80212A68; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x80212AE4; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x80212B08; // type:function size:0xF40 scope:global align:4 +GXCPInterruptHandler = .text:0x80213A48; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x80213B84; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x80213BF0; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x80213C60; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x80213C6C; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x80213D7C; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x80213EF4; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x80213F14; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x80213FF0; // type:function size:0x44 scope:global align:4 +__GXFifoReadEnable = .text:0x80214034; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x8021405C; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x80214080; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x802140C4; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x80214110; // type:function size:0x4C scope:local align:4 +__GXCleanGPFifo = .text:0x8021415C; // type:function size:0xFC scope:global align:4 +GXSetCurrentGXThread = .text:0x80214258; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x802142A4; // type:function size:0x8 scope:global align:4 +GXGetGPFifo = .text:0x802142AC; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x802142B4; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x8021440C; // type:function size:0x338 scope:global align:4 +GXSetVtxDescv = .text:0x80214744; // type:function size:0x35C scope:global align:4 +__GXSetVCD = .text:0x80214AA0; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x80214C08; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x80214C54; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x80214FB0; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x8021532C; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x802153C8; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x80215454; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x80215464; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80215734; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x8021577C; // type:function size:0x68 scope:global align:4 +GXAbortFrame = .text:0x802157E4; // type:function size:0xCC scope:global align:4 +GXDrawDone = .text:0x802158B0; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x80215930; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x80215954; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x80215968; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x8021597C; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x80215998; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80215A20; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x80215A3C; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x80215A50; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x80215A6C; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x80215A94; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80215B1C; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x80215BA0; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x80215C20; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80215CAC; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x80215D88; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x80215E10; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x80215E68; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80215EBC; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x80215F20; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x80215F70; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x80215FB4; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x80215FD8; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x80216098; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x80216158; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x8021619C; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x8021630C; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x80216338; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x802163B4; // type:function size:0xBC scope:global align:4 +GXSetCopyClear = .text:0x80216470; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x802164D8; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x80216700; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x8021671C; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x8021688C; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80216A1C; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x80216A54; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x80216A70; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x80216A80; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x80216A9C; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x80216B70; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x80216B98; // type:function size:0x144 scope:global align:4 +GXSetChanAmbColor = .text:0x80216CDC; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x80216E44; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x80216FAC; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x80216FF8; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x802171DC; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x802172A4; // type:function size:0x254 scope:global align:4 +GXInitTexObjLOD = .text:0x802174F8; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x8021768C; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x80217694; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x8021783C; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x80217890; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x802179B0; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x802179F8; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x80217A40; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x80217A54; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x80217A68; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x80217B34; // type:function size:0x16C scope:global align:4 +GXSetTevIndirect = .text:0x80217CA0; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x80217D3C; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x80217F10; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x80217F3C; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x80217F84; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x80218050; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x80218074; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x80218218; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x80218298; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x8021831C; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x802183DC; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x8021849C; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x80218510; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x80218584; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x802185F8; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x80218664; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x802186D0; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x80218728; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x802187C8; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x80218818; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x8021889C; // type:function size:0x1A0 scope:global align:4 +GXSetNumTevStages = .text:0x80218A3C; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x80218A70; // type:function size:0x1B4 scope:global align:4 +GXSetFogRangeAdj = .text:0x80218C24; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x80218D24; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x80218E28; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x80218E68; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x80218EA8; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x80218F20; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x80218F60; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x80219070; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x802190B0; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x80219104; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x8021913C; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x802191BC; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x802191C0; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x80219288; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x8021935C; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x802193CC; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x802194A0; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x802194D4; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x80219508; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x8021952C; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x80219568; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x802195A8; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x802195E4; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x80219668; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x80219784; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x802197A8; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x80219858; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x8021989C; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x802198C4; // type:function size:0x84 scope:global align:4 +__va_arg = .text:0x80219948; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x80219A3C; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x80219A84; // type:function size:0x18 scope:global align:4 +__copy = .text:0x80219A9C; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x80219ACC; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x80219B48; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x80219C48; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x80219D00; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x80219E08; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x80219E30; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x80219E64; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x80219EA0; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x80219EFC; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x80219EFC; // type:label scope:global +_savefpr_15 = .text:0x80219F00; // type:label scope:global +_savefpr_16 = .text:0x80219F04; // type:label scope:global +_savefpr_17 = .text:0x80219F08; // type:label scope:global +_savefpr_18 = .text:0x80219F0C; // type:label scope:global +_savefpr_19 = .text:0x80219F10; // type:label scope:global +_savefpr_20 = .text:0x80219F14; // type:label scope:global +_savefpr_21 = .text:0x80219F18; // type:label scope:global +_savefpr_22 = .text:0x80219F1C; // type:label scope:global +_savefpr_23 = .text:0x80219F20; // type:label scope:global +_savefpr_24 = .text:0x80219F24; // type:label scope:global +_savefpr_25 = .text:0x80219F28; // type:label scope:global +_savefpr_26 = .text:0x80219F2C; // type:label scope:global +_savefpr_27 = .text:0x80219F30; // type:label scope:global +_savefpr_28 = .text:0x80219F34; // type:label scope:global +_savefpr_29 = .text:0x80219F38; // type:label scope:global +_savefpr_30 = .text:0x80219F3C; // type:label scope:global +_savefpr_31 = .text:0x80219F40; // type:label scope:global +__restore_fpr = .text:0x80219F48; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x80219F48; // type:label scope:global +_restfpr_15 = .text:0x80219F4C; // type:label scope:global +_restfpr_16 = .text:0x80219F50; // type:label scope:global +_restfpr_17 = .text:0x80219F54; // type:label scope:global +_restfpr_18 = .text:0x80219F58; // type:label scope:global +_restfpr_19 = .text:0x80219F5C; // type:label scope:global +_restfpr_20 = .text:0x80219F60; // type:label scope:global +_restfpr_21 = .text:0x80219F64; // type:label scope:global +_restfpr_22 = .text:0x80219F68; // type:label scope:global +_restfpr_23 = .text:0x80219F6C; // type:label scope:global +_restfpr_24 = .text:0x80219F70; // type:label scope:global +_restfpr_25 = .text:0x80219F74; // type:label scope:global +_restfpr_26 = .text:0x80219F78; // type:label scope:global +_restfpr_27 = .text:0x80219F7C; // type:label scope:global +_restfpr_28 = .text:0x80219F80; // type:label scope:global +_restfpr_29 = .text:0x80219F84; // type:label scope:global +_restfpr_30 = .text:0x80219F88; // type:label scope:global +_restfpr_31 = .text:0x80219F8C; // type:label scope:global +__div2u = .text:0x80219F94; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x8021A080; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x8021A1B8; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x8021A29C; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x8021A3A8; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x8021A3CC; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x8021A3F0; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x8021A418; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x8021A4CC; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x8021A598; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x8021A5A0; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x8021A5D4; // type:function size:0x40 scope:global align:4 +exit = .text:0x8021A614; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x8021A720; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x8021A9C4; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x8021AD78; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x8021AD88; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x8021AE54; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x8021AE88; // type:function size:0x4 scope:global align:4 +toupper = .text:0x8021AE8C; // type:function size:0x28 scope:global align:4 +tolower = .text:0x8021AEB4; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x8021AEDC; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x8021B1B8; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x8021B1F4; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x8021B244; // type:function size:0x44 scope:global align:4 +memchr = .text:0x8021B288; // type:function size:0x2C scope:global align:4 +memmove = .text:0x8021B2B4; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x8021B390; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x8021B440; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x8021B504; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x8021B5B0; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x8021B66C; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x8021B670; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x8021B744; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x8021B7BC; // type:function size:0x7C scope:global align:4 +printf = .text:0x8021B838; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x8021B904; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x8021B970; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x8021B9C8; // type:function size:0x630 scope:local align:4 +float2str = .text:0x8021BFF8; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x8021C630; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x8021C764; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x8021CA44; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x8021CC68; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x8021D140; // type:function size:0x8 scope:global align:4 +rand = .text:0x8021D148; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x8021D16C; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x8021D228; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x8021D2B8; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x8021DC5C; // type:function size:0x564 scope:local align:4 +strstr = .text:0x8021E1C0; // type:function size:0x6C scope:global align:4 +strchr = .text:0x8021E22C; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x8021E25C; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x8021E29C; // type:function size:0x124 scope:global align:4 +strcat = .text:0x8021E3C0; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x8021E3EC; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x8021E430; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x8021E4E4; // type:function size:0x20 scope:global align:4 +atof = .text:0x8021E504; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x8021E590; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x8021EC74; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x8021ED38; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x8021EE28; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x8021EED4; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x8021F2A0; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8021F5E8; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x8021F5F0; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8021F688; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8021F768; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8021F7E8; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x8021F7F0; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x8021FA88; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x802202A0; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x802202C0; // type:function size:0x80 scope:weak align:4 +atan = .text:0x80220340; // type:function size:0x240 scope:global align:4 +copysign = .text:0x80220580; // type:function size:0x2C scope:global align:4 +frexp = .text:0x802205AC; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x80220648; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x802207C0; // type:function size:0x20 scope:global align:4 +pow = .text:0x802207E0; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x80220800; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x80220808; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x802209FC; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x80220A1C; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x80220A8C; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x80220AD0; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x80220BA8; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x80220BEC; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x80220C0C; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x80220C2C; // type:function size:0x194 scope:global align:4 +sinf = .text:0x80220DC0; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x80220F64; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x80220F94; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x80221024; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x8022104C; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x8022106C; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x80221098; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x8022118C; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x802211E8; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x8022120C; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x802212CC; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x802213AC; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x802213C4; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x802213E8; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x802214BC; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x802214E0; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x80221508; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x8022157C; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x802215A4; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x802215AC; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x80221624; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x802216C0; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x802216EC; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x80221754; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x80221794; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x802217C4; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x80221868; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x802218F4; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x80221948; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x802219AC; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x80221A34; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x80221A9C; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x80221B18; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x80221B3C; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x80221BBC; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x80221C4C; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x80221CFC; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x80221D70; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x80221DEC; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x80221EBC; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x80221F38; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x80221F88; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x80221FAC; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x80221FB4; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x80221FB8; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x80221FCC; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x80222050; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x802220E8; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x80222138; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x8022216C; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x80222194; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x802221BC; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x8022220C; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x8022223C; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x802223C0; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x8022249C; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x802226E0; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x802228C8; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x80222AC4; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x80222CC8; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x80222ED0; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x80223008; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x8022306C; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x80223270; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x802232F4; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x802235CC; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x80223770; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x80223778; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x80223780; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x80223788; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x80223860; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x80223898; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x8022395C; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x80223964; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x8022396C; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x80223AA4; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x80223AE0; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x80223C44; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x80223C90; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x80223D8C; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x80223ED4; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x8022404C; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x802241C8; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x802241F0; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x80224294; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x802242FC; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x80224490; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x8022452C; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x802245DC; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x802246A0; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x802246F4; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x80224758; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x802247E8; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x80224870; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x802248AC; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x80224930; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x802249A0; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x80224A08; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x80224A4C; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x80224A94; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x80224AA4; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x80224B94; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x80224BD0; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x80224BE0; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x80224BF0; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x80224C18; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x80224CC8; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x80224D40; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x80224EC0; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x80224F28; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x80224F38; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x80224FCC; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x80224FEC; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x80225034; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x80225094; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x80225128; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x80225178; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x80225330; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x802254E8; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x802254F0; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x80225538; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x802255C0; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x802255F8; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x802256E0; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x802256E4; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x80225724; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x80225754; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x80225784; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x802257C8; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x8022580C; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x8022583C; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x8022586C; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x80225890; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x802258C4; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x80225B08; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80225CA0; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x80225CE0; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x80225D4C; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x80225DCC; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80225E34; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80225E84; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80225EC4; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x80225F04; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80225F44; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x80226000; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x8022602C; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x80226134; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x802263F0; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x802265A0; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x802265A4; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x802265A8; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x802265B0; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x80226848; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x802268F4; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x802269D0; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x80226AAC; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x80226B58; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80226B94; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x80226BD4; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x80226C4C; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80226CA0; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x80226D3C; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x80226DC8; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x80227028; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x8022702C; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80227030; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80227040; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80227040; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x802270A0; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x802270A0; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x802270A4; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x802270A8; // type:object size:0x4 scope:local align:4 +@191 = .rodata:0x802270C0; // type:object size:0x9 scope:local align:4 data:string +@208 = .rodata:0x802270CC; // type:object size:0xC scope:local align:4 data:string +@80 = .rodata:0x802270D8; // type:object size:0xB scope:local align:4 data:string +@191 = .rodata:0x802270E8; // type:object size:0x9 scope:local align:4 data:string +@193 = .rodata:0x802270F4; // type:object size:0xB scope:local align:4 data:string +@178 = .rodata:0x80227100; // type:object size:0x1D scope:local align:4 data:string +@38 = .rodata:0x80227120; // type:object size:0x31 scope:local align:4 data:string +@39 = .rodata:0x80227154; // type:object size:0x33 scope:local align:4 data:string +@60 = .rodata:0x80227188; // type:object size:0x1D scope:local align:4 data:string +@61 = .rodata:0x802271A8; // type:object size:0x11 scope:local align:4 data:string +@62 = .rodata:0x802271BC; // type:object size:0x27 scope:local align:4 data:string +@254 = .rodata:0x802271E8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x802271F8; // type:label scope:local +@161 = .rodata:0x802271F8; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x8022720C; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x80227220; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x80227234; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x80227248; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x8022725C; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x80227270; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x80227284; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x80227298; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x802272AC; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x802272C0; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x802272D4; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x802272E8; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x802272FC; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x80227310; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x8022731C; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x80227328; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x80227334; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x80227344; // type:object size:0xD scope:local align:4 data:string +@81 = .rodata:0x80227358; // type:object size:0x14 scope:local align:4 data:4byte +@82 = .rodata:0x8022736C; // type:object size:0x14 scope:local align:4 data:4byte +mcbtypetrans$1481 = .rodata:0x80227380; // type:object size:0x18 scope:local align:4 +@3836 = .rodata:0x80227398; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x802273F8; // type:object size:0x60 scope:local align:4 data:4byte +@2563 = .rodata:0x80227458; // type:object size:0xC scope:local align:4 data:4byte +@2579 = .rodata:0x80227464; // type:object size:0xC scope:local align:4 data:4byte +@2660 = .rodata:0x80227470; // type:object size:0xC scope:local align:4 data:4byte +@2531 = .rodata:0x80227480; // type:object size:0x14 scope:local align:4 data:4byte +@2578 = .rodata:0x80227494; // type:object size:0x18 scope:local align:4 data:4byte +@1089 = .rodata:0x802274B0; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x802274C0; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x802274CC; // type:object size:0xC scope:local align:4 data:4byte +@2255 = .rodata:0x802274D8; // type:object size:0x10 scope:local align:4 data:4byte +@2256 = .rodata:0x802274E8; // type:object size:0x10 scope:local align:4 data:4byte +@2061 = .rodata:0x802274F8; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x80227520; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x80227540; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x80227560; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x80227580; // type:object size:0x10 scope:local align:4 data:4byte +@4072 = .rodata:0x80227590; // type:object size:0x1C scope:local align:4 data:4byte +@4076 = .rodata:0x802275AC; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x802275B8; // type:label scope:local +@5142 = .rodata:0x802275B8; // type:object size:0x18 scope:local align:4 data:4byte +@5213 = .rodata:0x802275D0; // type:object size:0x10 scope:local align:4 +@5218 = .rodata:0x802275E0; // type:object size:0x18 scope:local align:4 +@5219 = .rodata:0x802275F8; // type:object size:0xC scope:local align:4 +@5223 = .rodata:0x80227604; // type:object size:0x10 scope:local align:4 +@5227 = .rodata:0x80227614; // type:object size:0x10 scope:local align:4 +@5243 = .rodata:0x80227624; // type:object size:0x28 scope:local align:4 +@5244 = .rodata:0x8022764C; // type:object size:0x14 scope:local align:4 +@1994 = .rodata:0x80227660; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80227678; // type:label scope:local +@1620 = .rodata:0x80227678; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x80227684; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x8022769C; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x802276B4; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x802276C4; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x802276DC; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x802276F4; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x8022770C; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x80227720; // type:object size:0xC scope:local align:4 data:4byte +@1694 = .rodata:0x8022772C; // type:object size:0xC scope:local align:4 data:4byte +@1704 = .rodata:0x80227738; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x80227748; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x80227754; // type:object size:0xC scope:local align:4 data:4byte +@3938 = .rodata:0x80227760; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x80227780; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x802277B0; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x802277C0; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x802277D0; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x802277E8; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x80227828; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x80227838; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80227848; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x80227860; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x802278A8; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x802278E8; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x802279E8; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x80227AE8; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x80227BE8; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x80227BF0; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x80227C00; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x80227C28; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x80227C58; // type:label scope:local +bp = .rodata:0x80227C58; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x80227C68; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x80227C78; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x80227C88; // type:label scope:local +atanhi = .rodata:0x80227C88; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x80227CA8; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x80227CC8; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x80227D20; // type:label scope:local +atan_coeff$96 = .rodata:0x80227D20; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x80227D3C; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x80227D54; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x80227D6C; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x80227D88; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x80227DA4; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x80227DBC; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x80227DD8; // type:label scope:local +tmp_float = .rodata:0x80227DD8; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x80227DE8; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x80227E08; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x80227E30; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x80227E50; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x80227E60; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x80227E74; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x80227E88; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x80227EA0; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x80227EB0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x80227EC0; // type:label scope:local +J_STREAMNAME = .data:0x80227EC0; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x80227F40; // type:object size:0x2C scope:global align:4 +@102 = .data:0x80227F6C; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x80227F90; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x80227FC0; // type:object size:0x1A00 scope:global align:32 +calc_sw_table = .data:0x802299C0; // type:object size:0x51 scope:local align:4 +@345 = .data:0x80229A14; // type:object size:0x20 scope:local align:4 +@344 = .data:0x80229A34; // type:object size:0x20 scope:local align:4 +history = .data:0x80229A58; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$94 = .data:0x80229A80; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x80229AA0; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x80229AE0; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x80229EE0; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x80229EF8; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x8022A0F8; // type:object size:0xC scope:local align:4 +extdir = .data:0x8022A108; // type:object size:0x40 scope:local align:4 +@149 = .data:0x8022A148; // type:object size:0x34 scope:local align:4 +@239 = .data:0x8022A17C; // type:object size:0x44 scope:local align:4 +@276 = .data:0x8022A1C0; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x8022A204; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x8022A304; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x8022A408; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x8022A808; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x8022A908; // type:label scope:local +VIB_TABLE = .data:0x8022A908; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x8022A92C; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x8022A950; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x8022A95C; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x8022A974; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x8022A98C; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x8022A9A4; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x8022A9BC; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x8022A9D4; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x8022A9F0; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x8022AA08; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x8022AA20; // type:object size:0x10 scope:global align:4 +@151 = .data:0x8022AA30; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x8022AAC8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x8022AB48; // type:label scope:local +EVENT_OFFSET = .data:0x8022AB48; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x8022AB68; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x8022B1EC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022B210; // type:label scope:local +bgm_mute_set = .data:0x8022B210; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x8022B260; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x8022B2B0; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x8022B2DC; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x8022B2F4; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022B30C; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x8022B328; // type:label scope:local +tbl_scene_to_bgm = .data:0x8022B328; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x8022B360; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x8022B398; // type:object size:0x14 scope:local align:4 +filelist = .data:0x8022B3AC; // type:object size:0x1C0 scope:global align:4 +header = .data:0x8022B56C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022B590; // type:label scope:local +parts_bright_table = .data:0x8022B590; // type:object size:0x1F scope:local align:4 +demo4 = .data:0x8022B5B0; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x8022B5DC; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x8022B604; // type:object size:0xC scope:local align:4 +demo16 = .data:0x8022B610; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x8022B634; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x8022B688; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x8022B698; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x8022B6C4; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022B6EC; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x8022B714; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x8022B73C; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x8022B75C; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x8022B790; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022B80C; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x8022B888; // type:object size:0xC scope:local align:4 +demo40 = .data:0x8022B894; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x8022B8A8; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x8022B8D4; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x8022B908; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x8022B948; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x8022B95C; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x8022B990; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x8022B9C8; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x8022B9F0; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x8022BA04; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022BA1C; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x8022BA3C; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x8022BA84; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x8022BA90; // type:object size:0x564 scope:local align:4 +@362 = .data:0x8022BFF4; // type:object size:0x2C scope:local align:4 +@460 = .data:0x8022C020; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x8022C050; // type:label scope:local +filter_table = .data:0x8022C050; // type:object size:0x40 scope:local align:4 +table4 = .data:0x8022C090; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x8022C0C0; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x8022C3A0; // type:object size:0x10 scope:local align:4 +@388 = .data:0x8022C3B0; // type:object size:0xD scope:local align:4 data:string +@409 = .data:0x8022C3C0; // type:object size:0x1B scope:local align:4 data:string +...data.0 = .data:0x8022C3E0; // type:label scope:local +@388 = .data:0x8022C3E0; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x8022C3EC; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x8022C3F8; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x8022C404; // type:object size:0xC scope:local align:4 +@435 = .data:0x8022C410; // type:object size:0x14 scope:local align:4 +@430 = .data:0x8022C424; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x8022C440; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x8022C48C; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x8022C49C; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x8022C4A8; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022C500; // type:label scope:local +@388 = .data:0x8022C500; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x8022C518; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022C52C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x8022C540; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x8022C554; // type:object size:0xC scope:local align:4 +@431 = .data:0x8022C560; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x8022C574; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x8022C5D8; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x8022C640; // type:label scope:local +@577 = .data:0x8022C640; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x8022C650; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x8022C65C; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x8022C668; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x8022C674; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x8022CB40; // type:object size:0x499 scope:local align:32 data:byte +@1671 = .data:0x8022CFDC; // type:object size:0x1B scope:local align:4 data:string +@1705 = .data:0x8022CFF8; // type:object size:0x19 scope:local align:4 data:string +convFmts = .data:0x8022D014; // type:object size:0x3C scope:local align:4 +@1720 = .data:0x8022D050; // type:object size:0xF scope:local align:4 data:string +@1721 = .data:0x8022D060; // type:object size:0xD scope:local align:4 data:string +@1722 = .data:0x8022D070; // type:object size:0xF scope:local align:4 data:string +@1723 = .data:0x8022D080; // type:object size:0xB scope:local align:4 data:string +@1724 = .data:0x8022D08C; // type:object size:0xB scope:local align:4 data:string +@1725 = .data:0x8022D098; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x8022D0A4; // type:object size:0xC scope:local align:4 data:string +@1727 = .data:0x8022D0B0; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x8022D0C0; // type:object size:0x20 scope:local align:4 +@1742 = .data:0x8022D0E0; // type:object size:0x28 scope:local align:4 +@1772 = .data:0x8022D108; // type:object size:0x9 scope:local align:4 data:string +@1773 = .data:0x8022D114; // type:object size:0x9 scope:local align:4 data:string +@1774 = .data:0x8022D120; // type:object size:0xA scope:local align:4 data:string +@1775 = .data:0x8022D12C; // type:object size:0xA scope:local align:4 data:string +@1776 = .data:0x8022D138; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x8022D148; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x8022D158; // type:object size:0xC scope:local align:4 data:string +@1780 = .data:0x8022D164; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x8022D170; // type:object size:0x3C scope:local align:4 +@1781 = .data:0x8022D1AC; // type:object size:0x9 scope:local align:4 data:string +@1782 = .data:0x8022D1B8; // type:object size:0x9 scope:local align:4 data:string +@1783 = .data:0x8022D1C4; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x8022D1D0; // type:object size:0xC scope:local align:4 +@1835 = .data:0x8022D1DC; // type:object size:0x28 scope:local align:4 data:string +@1836 = .data:0x8022D204; // type:object size:0x28 scope:local align:4 data:string +@1879 = .data:0x8022D22C; // type:object size:0x1A scope:local align:4 data:string +@2186 = .data:0x8022D248; // type:object size:0xD scope:local align:4 data:string +@2188 = .data:0x8022D258; // type:object size:0xA scope:local align:4 data:string +@2190 = .data:0x8022D264; // type:object size:0xC scope:local align:4 +@2187 = .data:0x8022D270; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x8022D284; // type:object size:0x14 scope:global align:4 +@2194 = .data:0x8022D298; // type:object size:0x9 scope:local align:4 data:string +@2195 = .data:0x8022D2A4; // type:object size:0xC scope:local align:4 +@2192 = .data:0x8022D2B0; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x8022D2C4; // type:object size:0x10 scope:global align:4 +@2198 = .data:0x8022D2D4; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x8022D2E8; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x8022D2F8; // type:object size:0xF4 scope:global align:4 +@2214 = .data:0x8022D3EC; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x8022D3FC; // type:object size:0x10 scope:global align:4 +@2215 = .data:0x8022D40C; // type:object size:0x9 scope:local align:4 data:string +@2216 = .data:0x8022D418; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x8022D42C; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x8022D440; // type:label scope:local +@570 = .data:0x8022D440; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x8022D44C; // type:object size:0x1C scope:local align:4 +@733 = .data:0x8022D468; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x8022D474; // type:object size:0xC scope:local align:4 +@731 = .data:0x8022D480; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x8022D494; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022D4C0; // type:label scope:local +@577 = .data:0x8022D4C0; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x8022D4D0; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x8022D4DC; // type:object size:0x14 scope:local align:4 +@653 = .data:0x8022D4F0; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x8022D4FC; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x8022D514; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x8022D528; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x8022D53C; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x8022D548; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x8022D554; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x8022D560; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x8022D56C; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x8022D578; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x8022D584; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x8022D590; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x8022D59C; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x8022D5A8; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x8022D5C0; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x8022D5DC; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x8022D5E8; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x8022D5F4; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x8022D600; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x8022D610; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x8022D620; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x8022D630; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x8022D640; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x8022D64C; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x8022D65C; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x8022D668; // type:object size:0x31 scope:local align:4 data:string +@1678 = .data:0x8022D69C; // type:object size:0xB scope:local align:4 data:string +@1679 = .data:0x8022D6A8; // type:object size:0xA scope:local align:4 data:string +@1680 = .data:0x8022D6B4; // type:object size:0xB scope:local align:4 data:string +@1683 = .data:0x8022D6C0; // type:object size:0xE scope:local align:4 data:string +@1688 = .data:0x8022D6D0; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x8022D6E0; // type:object size:0xD scope:local align:4 data:string +@1690 = .data:0x8022D6F0; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x8022D6FC; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x8022D708; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x8022D714; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x8022D720; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x8022D72C; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x8022D738; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x8022D744; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x8022D750; // type:object size:0x9 scope:local align:4 data:string +@1725 = .data:0x8022D75C; // type:object size:0xA scope:local align:4 data:string +@2046 = .data:0x8022D768; // type:object size:0xF scope:local align:4 data:string +@2047 = .data:0x8022D778; // type:object size:0xE scope:local align:4 data:string +@2048 = .data:0x8022D788; // type:object size:0xF scope:local align:4 data:string +@2049 = .data:0x8022D798; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x8022D7AC; // type:object size:0x1A scope:local align:4 data:string +@2165 = .data:0x8022D7C8; // type:object size:0x20 scope:local align:4 data:string +@2166 = .data:0x8022D7E8; // type:object size:0x1E scope:local align:4 data:string +@2216 = .data:0x8022D808; // type:object size:0x9 scope:local align:4 data:string +@2218 = .data:0x8022D814; // type:object size:0xB scope:local align:4 data:string +@2407 = .data:0x8022D820; // type:object size:0xC scope:local align:4 data:4byte +@2477 = .data:0x8022D82C; // type:object size:0x9 scope:local align:4 data:string +@3576 = .data:0x8022D838; // type:object size:0x23 scope:local align:4 data:string +@4099 = .data:0x8022D85C; // type:object size:0x2F scope:local align:4 data:string +@4180 = .data:0x8022D88C; // type:object size:0xA scope:local align:4 data:string +@4410 = .data:0x8022D898; // type:object size:0x11 scope:local align:4 data:string +@4411 = .data:0x8022D8AC; // type:object size:0x34 scope:local align:4 data:string +@4558 = .data:0x8022D8E0; // type:object size:0xB scope:local align:4 data:string +@4560 = .data:0x8022D8EC; // type:object size:0xB scope:local align:4 data:string +@4559 = .data:0x8022D8F8; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x8022D904; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x8022D914; // type:object size:0x10 scope:weak align:4 +@4565 = .data:0x8022D924; // type:object size:0xA scope:local align:4 data:string +@4568 = .data:0x8022D930; // type:object size:0xC scope:local align:4 +@4566 = .data:0x8022D93C; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x8022D950; // type:object size:0x24 scope:global align:4 +@4574 = .data:0x8022D974; // type:object size:0x2D scope:local align:4 data:string +@4576 = .data:0x8022D9A4; // type:object size:0x23 scope:local align:4 data:string +@4575 = .data:0x8022D9C8; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x8022D9D4; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x8022D9E0; // type:object size:0xC scope:weak align:4 +@4577 = .data:0x8022D9EC; // type:object size:0xB scope:local align:4 data:string +@4578 = .data:0x8022D9F8; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x8022DA0C; // type:object size:0x10 scope:weak align:4 +@4580 = .data:0x8022DA1C; // type:object size:0xB scope:local align:4 data:string +@4581 = .data:0x8022DA28; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x8022DA3C; // type:object size:0x10 scope:weak align:4 +@4582 = .data:0x8022DA4C; // type:object size:0xC scope:local align:4 data:string +@4583 = .data:0x8022DA58; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x8022DA6C; // type:object size:0x10 scope:weak align:4 +@4586 = .data:0x8022DA7C; // type:object size:0x9 scope:local align:4 data:string +@4587 = .data:0x8022DA88; // type:object size:0x14 scope:local align:4 +@4585 = .data:0x8022DA9C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x8022DAB8; // type:object size:0x20 scope:global align:4 +@4590 = .data:0x8022DAD8; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x8022DAF4; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x8022DB14; // type:object size:0x20 scope:global align:4 +@4591 = .data:0x8022DB34; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x8022DB40; // type:object size:0xC scope:global align:4 +@4592 = .data:0x8022DB4C; // type:object size:0xF scope:local align:4 data:string +@4593 = .data:0x8022DB5C; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x8022DB70; // type:object size:0x10 scope:weak align:4 +@4595 = .data:0x8022DB80; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x8022DB94; // type:object size:0x10 scope:global align:4 +@4597 = .data:0x8022DBA4; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x8022DBB8; // type:object size:0x10 scope:global align:4 +@4598 = .data:0x8022DBC8; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x8022DBD4; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x8022DBE8; // type:object size:0x10 scope:weak align:4 +@4600 = .data:0x8022DC14; // type:object size:0x9 scope:local align:4 data:string +@4601 = .data:0x8022DC20; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x8022DC34; // type:object size:0x10 scope:global align:4 +@690 = .data:0x8022DC48; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x8022DC54; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x8022DC60; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x8022DC70; // type:label scope:local +@571 = .data:0x8022DC70; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x8022DC80; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x8022DC8C; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x8022DC9C; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x8022DCAC; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x8022DCB8; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x8022DCC4; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x8022DCD4; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x8022DCEC; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x8022DCFC; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x8022DD0C; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x8022DD1C; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x8022DD30; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x8022DD40; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x8022DD54; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x8022DD60; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x8022DD6C; // type:object size:0xC scope:local align:4 +@1109 = .data:0x8022DD78; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x8022DD84; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x8022DD98; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x8022DDB4; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x8022DDCC; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x8022DDE4; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x8022DDF0; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x8022DE04; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x8022DE14; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x8022DE20; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x8022DE34; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022DE60; // type:label scope:local +@570 = .data:0x8022DE60; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x8022DE70; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x8022DE7C; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x8022DE88; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x8022DE94; // type:object size:0xE scope:local align:4 data:string +@691 = .data:0x8022DEA4; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x8022DEC0; // type:object size:0x36 scope:local align:4 data:string +@1000 = .data:0x8022DEF8; // type:object size:0x2A scope:local align:4 data:string +@1001 = .data:0x8022DF24; // type:object size:0xB scope:local align:4 data:string +@1003 = .data:0x8022DF30; // type:object size:0xB scope:local align:4 data:string +@1002 = .data:0x8022DF3C; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x8022DF48; // type:object size:0x10 scope:weak align:4 +@1004 = .data:0x8022DF58; // type:object size:0xC scope:local align:4 data:string +@1007 = .data:0x8022DF64; // type:object size:0xC scope:local align:4 +@1005 = .data:0x8022DF70; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x8022DF84; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x8022DF94; // type:object size:0x34 scope:global align:4 +@1016 = .data:0x8022DFC8; // type:object size:0xB scope:local align:4 data:string +@1017 = .data:0x8022DFD4; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x8022DFE0; // type:object size:0x10 scope:weak align:4 +@1022 = .data:0x8022DFF0; // type:object size:0xB scope:local align:4 data:string +@1023 = .data:0x8022DFFC; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x8022E008; // type:object size:0x10 scope:weak align:4 +@1024 = .data:0x8022E044; // type:object size:0xB scope:local align:4 data:string +@1025 = .data:0x8022E050; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x8022E05C; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x8022E070; // type:label scope:local +@570 = .data:0x8022E070; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x8022E07C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x8022E088; // type:object size:0xC scope:local align:4 +@755 = .data:0x8022E094; // type:object size:0x14 scope:local align:4 +@752 = .data:0x8022E0A8; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x8022E0C4; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x8022E110; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x8022E140; // type:label scope:local +@388 = .data:0x8022E140; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x8022E150; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x8022E15C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x8022E168; // type:object size:0xC scope:local align:4 +@428 = .data:0x8022E174; // type:object size:0x14 scope:local align:4 +@423 = .data:0x8022E188; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x8022E1A4; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x8022E1D8; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x8022E1F0; // type:label scope:local +@466 = .data:0x8022E1F0; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x8022E200; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x8022E214; // type:object size:0xC scope:local align:4 +@467 = .data:0x8022E220; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x8022E234; // type:object size:0x68 scope:global align:4 +@476 = .data:0x8022E29C; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x8022E2A8; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x8022E2B4; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022E310; // type:label scope:local +@570 = .data:0x8022E310; // type:object size:0xC scope:local align:4 data:string +@663 = .data:0x8022E31C; // type:object size:0x22 scope:local align:4 data:string +gxTexFmts = .data:0x8022E340; // type:object size:0x24 scope:local align:4 +@711 = .data:0x8022E364; // type:object size:0xA scope:local align:4 data:string +@710 = .data:0x8022E370; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x8022E37C; // type:object size:0x14 scope:global align:4 +@713 = .data:0x8022E390; // type:object size:0x9 scope:local align:4 data:string +@714 = .data:0x8022E39C; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x8022E3C4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022E3E0; // type:label scope:local +bigFont_data = .data:0x8022E3E0; // type:object size:0x7C080 scope:local align:32 noreloc +@577 = .data:0x802AA460; // type:object size:0xB scope:local align:4 data:string +@687 = .data:0x802AA46C; // type:object size:0x27 scope:local align:4 data:string +@789 = .data:0x802AA494; // type:object size:0x1F scope:local align:4 data:string +@798 = .data:0x802AA4B4; // type:object size:0x39 scope:local align:4 data:string +@908 = .data:0x802AA4F0; // type:object size:0xA scope:local align:4 data:string +@952 = .data:0x802AA4FC; // type:object size:0x9 scope:local align:4 data:string +@983 = .data:0x802AA508; // type:object size:0xC scope:local align:4 data:string +@986 = .data:0x802AA514; // type:object size:0x1D scope:local align:4 +@987 = .data:0x802AA534; // type:object size:0x17 scope:local align:4 +@988 = .data:0x802AA54C; // type:object size:0x19 scope:local align:4 +@989 = .data:0x802AA568; // type:object size:0xE scope:local align:4 +@990 = .data:0x802AA578; // type:object size:0x17 scope:local align:4 +@991 = .data:0x802AA590; // type:object size:0x15 scope:local align:4 +@992 = .data:0x802AA5A8; // type:object size:0x21 scope:local align:4 +@993 = .data:0x802AA5CC; // type:object size:0x1B scope:local align:4 +@994 = .data:0x802AA5E8; // type:object size:0x19 scope:local align:4 +@995 = .data:0x802AA604; // type:object size:0x19 scope:local align:4 +@996 = .data:0x802AA620; // type:object size:0x15 scope:local align:4 +@997 = .data:0x802AA638; // type:object size:0x11 scope:local align:4 +@998 = .data:0x802AA64C; // type:object size:0x11 scope:local align:4 +@999 = .data:0x802AA660; // type:object size:0x1D scope:local align:4 +@1000 = .data:0x802AA680; // type:object size:0x19 scope:local align:4 +errorMessages = .data:0x802AA69C; // type:object size:0x5C scope:local align:4 +errorList = .data:0x802AA6F8; // type:object size:0x18 scope:local align:4 +@1035 = .data:0x802AA710; // type:object size:0xC scope:local align:4 +@1089 = .data:0x802AA71C; // type:object size:0x12 scope:local align:4 data:string +@1090 = .data:0x802AA730; // type:object size:0xD scope:local align:4 data:string +@1193 = .data:0x802AA740; // type:object size:0x1C scope:local align:4 data:string +@1194 = .data:0x802AA75C; // type:object size:0x1F scope:local align:4 data:string +@1219 = .data:0x802AA77C; // type:object size:0x26 scope:local align:4 data:string +@1220 = .data:0x802AA7A4; // type:object size:0x21 scope:local align:4 data:string +@1274 = .data:0x802AA7C8; // type:object size:0x1E scope:local align:4 data:string +@1276 = .data:0x802AA7E8; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802AA800; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802AA80C; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802AA818; // type:object size:0xC scope:weak align:4 +@1277 = .data:0x802AA824; // type:object size:0xA scope:local align:4 data:string +@1278 = .data:0x802AA830; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802AA83C; // type:object size:0x58 scope:weak align:4 +@1299 = .data:0x802AA894; // type:object size:0xC scope:local align:4 data:string +@1302 = .data:0x802AA8A0; // type:object size:0x9 scope:local align:4 data:string +@1303 = .data:0x802AA8AC; // type:object size:0xC scope:local align:4 +@1300 = .data:0x802AA8B8; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802AA8CC; // type:object size:0x10 scope:weak align:4 +@1306 = .data:0x802AA8DC; // type:object size:0x9 scope:local align:4 data:string +@1307 = .data:0x802AA8E8; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802AA8FC; // type:object size:0x10 scope:weak align:4 +@1308 = .data:0x802AA928; // type:object size:0xA scope:local align:4 data:string +@1310 = .data:0x802AA934; // type:object size:0x13 scope:local align:4 data:string +@1311 = .data:0x802AA948; // type:object size:0xC scope:local align:4 +@1309 = .data:0x802AA954; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802AA968; // type:object size:0x64 scope:weak align:4 +@1320 = .data:0x802AAA30; // type:object size:0xA scope:local align:4 data:string +@1319 = .data:0x802AAA3C; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802AAA48; // type:object size:0x34 scope:global align:4 +@1336 = .data:0x802AAA7C; // type:object size:0xB scope:local align:4 data:string +@1337 = .data:0x802AAA88; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802AAA9C; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802AAB00; // type:label scope:local +@388 = .data:0x802AAB00; // type:object size:0xB scope:local align:4 data:string +@434 = .data:0x802AAB0C; // type:object size:0x1D scope:local align:4 data:string +@435 = .data:0x802AAB2C; // type:object size:0x29 scope:local align:4 data:string +@436 = .data:0x802AAB58; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802AAB70; // type:label scope:local +@388 = .data:0x802AAB70; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802AAB84; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802AAB94; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802AABA4; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802AABB0; // type:label scope:local +@577 = .data:0x802AABB0; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802AABC0; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802AABCC; // type:object size:0x3C scope:global align:4 +localNtsc480IntDf = .data:0x802AAC08; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802AAC44; // type:object size:0x20 scope:local align:4 +@655 = .data:0x802AAC64; // type:object size:0x21 scope:local align:4 data:string +@723 = .data:0x802AAC88; // type:object size:0x27 scope:local align:4 data:string +@738 = .data:0x802AACB0; // type:object size:0x15 scope:local align:4 data:string +@951 = .data:0x802AACC8; // type:object size:0xB scope:local align:4 data:string +@952 = .data:0x802AACD4; // type:object size:0xB scope:local align:4 data:string +@953 = .data:0x802AACE0; // type:object size:0xB scope:local align:4 data:string +@954 = .data:0x802AACEC; // type:object size:0xB scope:local align:4 data:string +@955 = .data:0x802AACF8; // type:object size:0xB scope:local align:4 data:string +@956 = .data:0x802AAD04; // type:object size:0xB scope:local align:4 data:string +@957 = .data:0x802AAD10; // type:object size:0xB scope:local align:4 data:string +@958 = .data:0x802AAD1C; // type:object size:0xB scope:local align:4 data:string +@959 = .data:0x802AAD28; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802AAD34; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802AAD40; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802AAD4C; // type:object size:0x2C scope:local align:4 +@962 = .data:0x802AAD78; // type:object size:0xA scope:local align:4 data:string +@963 = .data:0x802AAD84; // type:object size:0xA scope:local align:4 data:string +@964 = .data:0x802AAD90; // type:object size:0xC scope:local align:4 data:string +@965 = .data:0x802AAD9C; // type:object size:0xE scope:local align:4 data:string +@966 = .data:0x802AADAC; // type:object size:0xB scope:local align:4 data:string +@967 = .data:0x802AADB8; // type:object size:0xB scope:local align:4 data:string +@968 = .data:0x802AADC4; // type:object size:0xB scope:local align:4 data:string +@969 = .data:0x802AADD0; // type:object size:0xB scope:local align:4 data:string +@970 = .data:0x802AADDC; // type:object size:0xB scope:local align:4 data:string +@971 = .data:0x802AADE8; // type:object size:0xB scope:local align:4 data:string +@972 = .data:0x802AADF4; // type:object size:0xB scope:local align:4 data:string +@973 = .data:0x802AAE00; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802AAE0C; // type:object size:0x10 scope:local align:4 data:string +@975 = .data:0x802AAE1C; // type:object size:0x10 scope:local align:4 data:string +@976 = .data:0x802AAE2C; // type:object size:0x10 scope:local align:4 data:string +@977 = .data:0x802AAE3C; // type:object size:0x10 scope:local align:4 data:string +@978 = .data:0x802AAE4C; // type:object size:0x10 scope:local align:4 data:string +@979 = .data:0x802AAE5C; // type:object size:0x10 scope:local align:4 data:string +@980 = .data:0x802AAE6C; // type:object size:0x10 scope:local align:4 data:string +@981 = .data:0x802AAE7C; // type:object size:0xD scope:local align:4 data:string +@982 = .data:0x802AAE8C; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802AAE9C; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802AAEF0; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802AAFA8; // type:object size:0xB0 scope:local align:4 +@1333 = .data:0x802AB058; // type:object size:0x1C scope:local align:4 +@1425 = .data:0x802AB074; // type:object size:0x11 scope:local align:4 data:string +@1946 = .data:0x802AB088; // type:object size:0x10 scope:local align:4 data:string +@1967 = .data:0x802AB098; // type:object size:0xA scope:local align:4 data:string +@1968 = .data:0x802AB0A4; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802AB0BC; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802AB13C; // type:object size:0x100 scope:local align:4 +@2084 = .data:0x802AB23C; // type:object size:0x9 scope:local align:4 data:string +@2085 = .data:0x802AB248; // type:object size:0xC scope:local align:4 +@2086 = .data:0x802AB254; // type:object size:0xA scope:local align:4 data:string +@2087 = .data:0x802AB260; // type:object size:0x14 scope:local align:4 +@2082 = .data:0x802AB274; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802AB290; // type:object size:0x24 scope:global align:4 +@2096 = .data:0x802AB2B4; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802AB2C0; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802AB2CC; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802AB3C8; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802AB3F0; // type:label scope:local +@713 = .data:0x802AB3F0; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802AB404; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802AB414; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802AB420; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802AB42C; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802AB438; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802AB44C; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802AB468; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802AB4D8; // type:label scope:local +@697 = .data:0x802AB4D8; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802AB4E4; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802AB4F0; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802AB4FC; // type:object size:0xA scope:local align:4 data:string +@1156 = .data:0x802AB508; // type:object size:0x3B scope:local align:4 data:string +@1165 = .data:0x802AB544; // type:object size:0x28 scope:local align:4 data:string +@1263 = .data:0x802AB56C; // type:object size:0x22 scope:local align:4 data:string +@1266 = .data:0x802AB590; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802AB59C; // type:object size:0x18 scope:global align:4 +@1270 = .data:0x802AB5B4; // type:object size:0xC scope:local align:4 +@1268 = .data:0x802AB5C0; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802AB5D4; // type:object size:0x10 scope:global align:4 +@1272 = .data:0x802AB5E4; // type:object size:0xD scope:local align:4 data:string +@1274 = .data:0x802AB5F4; // type:object size:0x9 scope:local align:4 data:string +@1273 = .data:0x802AB600; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802AB60C; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802AB620; // type:object size:0xC scope:local align:4 data:string +@1276 = .data:0x802AB62C; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802AB638; // type:object size:0x14 scope:weak align:4 +@1277 = .data:0x802AB64C; // type:object size:0xA scope:local align:4 data:string +@1278 = .data:0x802AB658; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802AB664; // type:object size:0x14 scope:weak align:4 +@1279 = .data:0x802AB678; // type:object size:0x9 scope:local align:4 data:string +@1280 = .data:0x802AB684; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802AB698; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AB6C8; // type:label scope:local +@1799 = .data:0x802AB6C8; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802AB6D8; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802AB6E4; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802AB6F0; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802AB704; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802AB714; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802AB724; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802AB738; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802AB748; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802AB75C; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802AB76C; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802AB778; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802AB784; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802AB790; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802AB79C; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802AB7A8; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802AB7B4; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802AB7C0; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802AB7CC; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802AB7E0; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802AB7EC; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802AB7F8; // type:object size:0xC scope:local align:4 +@2263 = .data:0x802AB804; // type:object size:0x17 scope:local align:4 data:string +@2264 = .data:0x802AB81C; // type:object size:0x1F scope:local align:4 data:string +@2265 = .data:0x802AB83C; // type:object size:0x1C scope:local align:4 data:string +@2266 = .data:0x802AB858; // type:object size:0x12 scope:local align:4 data:string +@2267 = .data:0x802AB86C; // type:object size:0x12 scope:local align:4 data:string +@2268 = .data:0x802AB880; // type:object size:0x18 scope:local align:4 data:string +@2269 = .data:0x802AB898; // type:object size:0x20 scope:local align:4 data:string +@2270 = .data:0x802AB8B8; // type:object size:0x1D scope:local align:4 data:string +@2271 = .data:0x802AB8D8; // type:object size:0x13 scope:local align:4 data:string +@2272 = .data:0x802AB8EC; // type:object size:0x13 scope:local align:4 data:string +@2273 = .data:0x802AB900; // type:object size:0x10 scope:local align:4 data:string +@2298 = .data:0x802AB910; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802AB924; // type:object size:0xD scope:local align:4 data:string +@2301 = .data:0x802AB934; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802AB940; // type:object size:0x18 scope:local align:4 data:string +@2303 = .data:0x802AB958; // type:object size:0x18 scope:local align:4 data:string +@2498 = .data:0x802AB970; // type:object size:0xC scope:local align:4 data:string +@2501 = .data:0x802AB97C; // type:object size:0x9 scope:local align:4 data:string +@2502 = .data:0x802AB988; // type:object size:0xC scope:local align:4 +@2504 = .data:0x802AB994; // type:object size:0x14 scope:local align:4 +@2499 = .data:0x802AB9A8; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802AB9C4; // type:object size:0x30 scope:weak align:4 +@2512 = .data:0x802AB9F4; // type:object size:0xC scope:local align:4 data:string +@2513 = .data:0x802ABA00; // type:object size:0x14 scope:local align:4 +@2515 = .data:0x802ABA24; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802ABA40; // type:object size:0x34 scope:weak align:4 +@2516 = .data:0x802ABA74; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802ABA90; // type:object size:0x30 scope:weak align:4 +@2524 = .data:0x802ABADC; // type:object size:0xD scope:local align:4 data:string +@2526 = .data:0x802ABAEC; // type:object size:0x9 scope:local align:4 data:string +@2525 = .data:0x802ABAF8; // type:object size:0xC scope:local align:4 +@2527 = .data:0x802ABB18; // type:object size:0xA scope:local align:4 data:string +@2528 = .data:0x802ABB24; // type:object size:0xC scope:local align:4 +@2529 = .data:0x802ABB44; // type:object size:0xC scope:local align:4 data:string +@2530 = .data:0x802ABB50; // type:object size:0xC scope:local align:4 +@2531 = .data:0x802ABB70; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802ABB8C; // type:object size:0x30 scope:global align:4 +@2532 = .data:0x802ABBBC; // type:object size:0x1C scope:local align:4 data:string +@2534 = .data:0x802ABBD8; // type:object size:0x13 scope:local align:4 data:string +@2533 = .data:0x802ABBEC; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802ABBF8; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802ABC04; // type:object size:0xC scope:weak align:4 +@2535 = .data:0x802ABC10; // type:object size:0xE scope:local align:4 data:string +@2537 = .data:0x802ABC20; // type:object size:0xA scope:local align:4 data:string +@2538 = .data:0x802ABC2C; // type:object size:0x14 scope:local align:4 +@2536 = .data:0x802ABC40; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802ABC5C; // type:object size:0x18 scope:global align:4 +@2567 = .data:0x802ABC74; // type:object size:0xB scope:local align:4 data:string +@2568 = .data:0x802ABC80; // type:object size:0xA scope:local align:4 data:string +@2569 = .data:0x802ABC8C; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802ABC98; // type:object size:0x18 scope:weak align:4 +@2617 = .data:0x802ABCB0; // type:object size:0xB scope:local align:4 data:string +@2618 = .data:0x802ABCBC; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802ABCD0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802ABCE0; // type:label scope:local +@681 = .data:0x802ABCE0; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802ABCEC; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802ABCFC; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802ABD08; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802ABD14; // type:object size:0xF scope:local align:4 data:string +@794 = .data:0x802ABD24; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802ABD34; // type:object size:0xF scope:local align:4 data:string +@796 = .data:0x802ABD44; // type:object size:0xF scope:local align:4 data:string +@797 = .data:0x802ABD54; // type:object size:0xF scope:local align:4 data:string +levNames = .data:0x802ABD64; // type:object size:0x14 scope:local align:4 +@944 = .data:0x802ABD78; // type:object size:0x13 scope:local align:4 data:string +@946 = .data:0x802ABD8C; // type:object size:0x14 scope:local align:4 data:string +@947 = .data:0x802ABDA0; // type:object size:0x12 scope:local align:4 data:string +@948 = .data:0x802ABDB4; // type:object size:0x12 scope:local align:4 data:string +@949 = .data:0x802ABDC8; // type:object size:0x30 scope:local align:4 +@950 = .data:0x802ABDF8; // type:object size:0x11 scope:local align:4 data:string +@953 = .data:0x802ABE0C; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802ABE18; // type:object size:0xC scope:local align:4 +@956 = .data:0x802ABE24; // type:object size:0x14 scope:local align:4 +@958 = .data:0x802ABE38; // type:object size:0x1C scope:local align:4 +@951 = .data:0x802ABE54; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802ABE78; // type:object size:0x34 scope:global align:4 +@966 = .data:0x802ABEAC; // type:object size:0xC scope:local align:4 data:string +@967 = .data:0x802ABEB8; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802ABECC; // type:object size:0x10 scope:weak align:4 +@968 = .data:0x802ABEF8; // type:object size:0xA scope:local align:4 data:string +@969 = .data:0x802ABF04; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802ABF18; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802ABF28; // type:label scope:local +@683 = .data:0x802ABF28; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802ABF38; // type:object size:0xA scope:local align:4 data:string +@970 = .data:0x802ABF44; // type:object size:0xA scope:local align:4 data:string +@973 = .data:0x802ABF50; // type:object size:0x9 scope:local align:4 data:string +@974 = .data:0x802ABF5C; // type:object size:0xC scope:local align:4 +@971 = .data:0x802ABF68; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802ABF7C; // type:object size:0x14 scope:global align:4 +@976 = .data:0x802ABF90; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802ABFA4; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802ABFB8; // type:label scope:local +@1013 = .data:0x802ABFB8; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802ABFC8; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802ABFD4; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802ABFF0; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802AC00C; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802AC028; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802AC044; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802AC060; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802AC07C; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802AC098; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802AC0B4; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802AC0C8; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802AC0DC; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802AC0F0; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802AC104; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802AC118; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802AC12C; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802AC17C; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802AC194; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802AC1AC; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802AC1C8; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802AC1E4; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802AC200; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802AC21C; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802AC238; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802AC254; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802AC270; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802AC28C; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802AC2A8; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802AC2C4; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802AC2E4; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802AC304; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802AC324; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802AC344; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802AC364; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802AC384; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802AC3A4; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802AC3C4; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802AC3E4; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802AC404; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802AC424; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802AC444; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802AC464; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802AC484; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802AC4A4; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802AC4C4; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802AC4E4; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802AC504; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802AC524; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802AC544; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802AC564; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802AC584; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802AC614; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802AC628; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802AC644; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802AC658; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802AC674; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802AC68C; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802AC6AC; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802AC6C4; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802AC6E4; // type:object size:0x14 scope:local align:4 data:string +@1081 = .data:0x802AC6F8; // type:object size:0x1C scope:local align:4 data:string +@1082 = .data:0x802AC714; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802AC730; // type:object size:0x21 scope:local align:4 data:string +@1084 = .data:0x802AC754; // type:object size:0x15 scope:local align:4 data:string +@1085 = .data:0x802AC76C; // type:object size:0x1D scope:local align:4 data:string +@1086 = .data:0x802AC78C; // type:object size:0x13 scope:local align:4 data:string +@1087 = .data:0x802AC7A0; // type:object size:0x1B scope:local align:4 data:string +@1088 = .data:0x802AC7BC; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802AC7D0; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802AC7EC; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802AC800; // type:object size:0x1A scope:local align:4 data:string +@1092 = .data:0x802AC81C; // type:object size:0x13 scope:local align:4 data:string +@1093 = .data:0x802AC830; // type:object size:0x1B scope:local align:4 data:string +@1094 = .data:0x802AC84C; // type:object size:0x16 scope:local align:4 data:string +@1095 = .data:0x802AC864; // type:object size:0x1E scope:local align:4 data:string +@1096 = .data:0x802AC884; // type:object size:0x18 scope:local align:4 data:string +@1097 = .data:0x802AC89C; // type:object size:0x20 scope:local align:4 data:string +@1098 = .data:0x802AC8BC; // type:object size:0x16 scope:local align:4 data:string +@1099 = .data:0x802AC8D4; // type:object size:0x1E scope:local align:4 data:string +@1100 = .data:0x802AC8F4; // type:object size:0x17 scope:local align:4 data:string +@1101 = .data:0x802AC90C; // type:object size:0x1F scope:local align:4 data:string +@1102 = .data:0x802AC92C; // type:object size:0x13 scope:local align:4 data:string +@1103 = .data:0x802AC940; // type:object size:0x1B scope:local align:4 data:string +@1104 = .data:0x802AC95C; // type:object size:0x12 scope:local align:4 data:string +@1105 = .data:0x802AC970; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802AC98C; // type:object size:0x90 scope:local align:4 +@1189 = .data:0x802ACA1C; // type:object size:0x13 scope:local align:4 data:string +@1191 = .data:0x802ACA30; // type:object size:0x12 scope:local align:4 data:string +@1192 = .data:0x802ACA44; // type:object size:0x9 scope:local align:4 data:string +@1193 = .data:0x802ACA50; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802ACA5C; // type:object size:0x11 scope:local align:4 data:string +@1204 = .data:0x802ACA70; // type:object size:0x9 scope:local align:4 data:string +@1205 = .data:0x802ACA7C; // type:object size:0xC scope:local align:4 +@1207 = .data:0x802ACA88; // type:object size:0x14 scope:local align:4 +@1209 = .data:0x802ACA9C; // type:object size:0x1C scope:local align:4 +@1202 = .data:0x802ACAB8; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802ACADC; // type:object size:0x34 scope:global align:4 +@1218 = .data:0x802ACB2C; // type:object size:0xA scope:local align:4 data:string +@1221 = .data:0x802ACB38; // type:object size:0x13 scope:local align:4 data:string +@1222 = .data:0x802ACB4C; // type:object size:0xC scope:local align:4 +@1219 = .data:0x802ACB58; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802ACB6C; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802ACC70; // type:label scope:local +@1108 = .data:0x802ACC70; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802ACC80; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802ACC8C; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802ACCA0; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802ACCB4; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802ACCC4; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802ACCD0; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802ACCF8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802ACD10; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802ACD24; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802ACD40; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802ACD70; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802ACD84; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802ACDA0; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802ACDC4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802ACE30; // type:label scope:local +@1109 = .data:0x802ACE30; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802ACE40; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802ACE4C; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802ACE58; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802ACE64; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802ACE70; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802ACE7C; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802ACE90; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802ACEA4; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802ACEB4; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802ACEC4; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802ACED0; // type:object size:0xE scope:local align:4 data:string +@1431 = .data:0x802ACEE0; // type:object size:0xF scope:local align:4 data:string +@1463 = .data:0x802ACEF0; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802ACEFC; // type:object size:0xC scope:local align:4 +@1468 = .data:0x802ACF24; // type:object size:0x16 scope:local align:4 data:string +@1471 = .data:0x802ACF3C; // type:object size:0x14 scope:local align:4 +@1469 = .data:0x802ACF50; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802ACF6C; // type:object size:0x30 scope:weak align:4 +@1569 = .data:0x802ACF9C; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802ACFB0; // type:object size:0x1C scope:local align:4 +@1570 = .data:0x802ACFCC; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802ACFF0; // type:object size:0x34 scope:weak align:4 +@1574 = .data:0x802AD058; // type:object size:0x18 scope:local align:4 data:string +@1576 = .data:0x802AD070; // type:object size:0x13 scope:local align:4 data:string +@1575 = .data:0x802AD084; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802AD090; // type:object size:0xC scope:weak align:4 +@1577 = .data:0x802AD09C; // type:object size:0x29 scope:local align:4 data:string +@1578 = .data:0x802AD0C8; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802AD0D4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AD0F0; // type:label scope:local +@1892 = .data:0x802AD0F0; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802AD100; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802AD10C; // type:object size:0xD scope:local align:4 data:string +@2651 = .data:0x802AD11C; // type:object size:0xD scope:local align:4 data:string +@2990 = .data:0x802AD12C; // type:object size:0x20 scope:local align:4 data:string +@2993 = .data:0x802AD14C; // type:object size:0x48 scope:local align:4 +@3089 = .data:0x802AD194; // type:object size:0x15 scope:local align:4 data:string +@3093 = .data:0x802AD1AC; // type:object size:0xB scope:local align:4 data:string +@3097 = .data:0x802AD1B8; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802AD1C4; // type:object size:0xC scope:local align:4 data:string +@3122 = .data:0x802AD1D0; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802AD1DC; // type:object size:0xA scope:local align:4 data:string +@3146 = .data:0x802AD1E8; // type:object size:0x9 scope:local align:4 data:string +@3148 = .data:0x802AD1F4; // type:object size:0xD scope:local align:4 data:string +@3167 = .data:0x802AD204; // type:object size:0x9 scope:local align:4 data:string +@3174 = .data:0x802AD210; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802AD220; // type:object size:0x18 scope:weak align:4 +@3178 = .data:0x802AD238; // type:object size:0xA scope:local align:4 data:string +@3181 = .data:0x802AD244; // type:object size:0x9 scope:local align:4 data:string +@3182 = .data:0x802AD250; // type:object size:0xC scope:local align:4 +@3179 = .data:0x802AD25C; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802AD270; // type:object size:0x10 scope:weak align:4 +@3185 = .data:0x802AD280; // type:object size:0x18 scope:local align:4 data:string +@3188 = .data:0x802AD298; // type:object size:0x14 scope:local align:4 +@3189 = .data:0x802AD2AC; // type:object size:0x10 scope:local align:4 data:string +@3190 = .data:0x802AD2BC; // type:object size:0x1C scope:local align:4 +@3186 = .data:0x802AD2D8; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802AD2FC; // type:object size:0x34 scope:weak align:4 +@3363 = .data:0x802AD330; // type:object size:0x13 scope:local align:4 data:string +@3366 = .data:0x802AD344; // type:object size:0x1C scope:local align:4 +@3364 = .data:0x802AD360; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802AD384; // type:object size:0x34 scope:weak align:4 +@3368 = .data:0x802AD3EC; // type:object size:0x13 scope:local align:4 data:string +@3369 = .data:0x802AD400; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802AD40C; // type:object size:0x20 scope:global align:4 +@3384 = .data:0x802AD42C; // type:object size:0x11 scope:local align:4 data:string +@3386 = .data:0x802AD440; // type:object size:0xA scope:local align:4 data:string +@3385 = .data:0x802AD44C; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802AD458; // type:object size:0x14 scope:global align:4 +@3397 = .data:0x802AD46C; // type:object size:0x11 scope:local align:4 data:string +@3398 = .data:0x802AD480; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802AD48C; // type:object size:0x14 scope:global align:4 +@3405 = .data:0x802AD4A0; // type:object size:0x11 scope:local align:4 data:string +@3406 = .data:0x802AD4B4; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802AD4C0; // type:object size:0x14 scope:global align:4 +@3407 = .data:0x802AD4D4; // type:object size:0x16 scope:local align:4 data:string +@3408 = .data:0x802AD4EC; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802AD4F8; // type:object size:0x14 scope:weak align:4 +__vt__9ModeState = .data:0x802AD50C; // type:object size:0x14 scope:weak align:4 +@3414 = .data:0x802AD520; // type:object size:0x13 scope:local align:4 data:string +@3415 = .data:0x802AD534; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802AD540; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802AD554; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AD5A8; // type:label scope:local +@1181 = .data:0x802AD5A8; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802AD5B8; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802AD5C4; // type:object size:0x13 scope:local align:4 data:string +@1308 = .data:0x802AD5D8; // type:object size:0x9 scope:local align:4 data:string +@1309 = .data:0x802AD5E4; // type:object size:0xC scope:local align:4 +@1313 = .data:0x802AD60C; // type:object size:0xF scope:local align:4 data:string +@1315 = .data:0x802AD61C; // type:object size:0xA scope:local align:4 data:string +@1314 = .data:0x802AD628; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802AD634; // type:object size:0x14 scope:weak align:4 +@1325 = .data:0x802AD648; // type:object size:0x12 scope:local align:4 data:string +@1326 = .data:0x802AD65C; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802AD668; // type:object size:0x14 scope:weak align:4 +@1334 = .data:0x802AD690; // type:object size:0x16 scope:local align:4 data:string +@1337 = .data:0x802AD6A8; // type:object size:0x14 scope:local align:4 +@1338 = .data:0x802AD6BC; // type:object size:0x10 scope:local align:4 data:string +@1339 = .data:0x802AD6CC; // type:object size:0x1C scope:local align:4 +@1335 = .data:0x802AD6E8; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802AD70C; // type:object size:0x34 scope:weak align:4 +@1416 = .data:0x802AD740; // type:object size:0x11 scope:local align:4 data:string +@1419 = .data:0x802AD754; // type:object size:0x1C scope:local align:4 +@1417 = .data:0x802AD770; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802AD794; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802AD800; // type:label scope:local +@684 = .data:0x802AD800; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802AD810; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802AD81C; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802AD82C; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802AD838; // type:object size:0xC scope:local align:4 +@721 = .data:0x802AD844; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802AD858; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802AD874; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802AD898; // type:object size:0x34 scope:global align:4 +@829 = .data:0x802AD920; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802AD938; // type:label scope:local +@810 = .data:0x802AD938; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802AD94C; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802AD95C; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802AD968; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802AD97C; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802AD988; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802AD994; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802AD9BC; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802AD9CC; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802AD9E0; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802AD9EC; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802ADA08; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802ADA14; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802ADA38; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802ADA64; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802ADADC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802ADAF0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802ADAFC; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802ADB08; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802ADB14; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802ADB28; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802ADB44; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802ADB80; // type:label scope:local +@841 = .data:0x802ADB80; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802ADC04; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802ADC10; // type:object size:0xC scope:local align:4 +@956 = .data:0x802ADC1C; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802ADC30; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802ADC4C; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802ADCC0; // type:label scope:local +@570 = .data:0x802ADCC0; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802ADCD0; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802ADCDC; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802ADCF0; // type:label scope:local +@677 = .data:0x802ADCF0; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802ADD00; // type:object size:0x9 scope:local align:4 data:string +@800 = .data:0x802ADD0C; // type:object size:0x12 scope:local align:4 data:string +@801 = .data:0x802ADD20; // type:object size:0x9 scope:local align:4 data:string +@803 = .data:0x802ADD2C; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802ADD38; // type:object size:0x1E scope:local align:4 data:string +@806 = .data:0x802ADD58; // type:object size:0xE scope:local align:4 data:string +@809 = .data:0x802ADD68; // type:object size:0x14 scope:local align:4 data:string +@860 = .data:0x802ADD7C; // type:object size:0xE scope:local align:4 data:string +@866 = .data:0x802ADD8C; // type:object size:0x11 scope:local align:4 data:string +@869 = .data:0x802ADDA0; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802ADDAC; // type:object size:0xC scope:local align:4 +@867 = .data:0x802ADDB8; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802ADDCC; // type:object size:0x58 scope:weak align:4 +@875 = .data:0x802ADE24; // type:object size:0x9 scope:local align:4 data:string +@876 = .data:0x802ADE30; // type:object size:0xC scope:local align:4 +@878 = .data:0x802ADE3C; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802ADE50; // type:object size:0x1C scope:local align:4 +@873 = .data:0x802ADE6C; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802ADE90; // type:object size:0x4C scope:weak align:4 +@892 = .data:0x802ADEDC; // type:object size:0xC scope:local align:4 data:string +@893 = .data:0x802ADEE8; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802ADF14; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802ADF60; // type:label scope:local +@982 = .data:0x802ADF60; // type:object size:0xB scope:local align:4 data:string +@1307 = .data:0x802ADF6C; // type:object size:0xC scope:local align:4 +@1311 = .data:0x802ADF78; // type:object size:0xC scope:local align:4 +@1474 = .data:0x802ADF84; // type:object size:0x10 scope:local align:4 data:string +@1475 = .data:0x802ADF94; // type:object size:0x9 scope:local align:4 data:string +@1478 = .data:0x802ADFA0; // type:object size:0xF scope:local align:4 data:string +@1480 = .data:0x802ADFB0; // type:object size:0xD scope:local align:4 data:string +@1481 = .data:0x802ADFC0; // type:object size:0x14 scope:local align:4 data:string +@1482 = .data:0x802ADFD4; // type:object size:0x14 scope:local align:4 data:string +@1485 = .data:0x802ADFE8; // type:object size:0xB scope:local align:4 data:string +@1486 = .data:0x802ADFF4; // type:object size:0x15 scope:local align:4 data:string +@1492 = .data:0x802AE00C; // type:object size:0xA scope:local align:4 data:string +@1506 = .data:0x802AE018; // type:object size:0x9 scope:local align:4 data:string +@1507 = .data:0x802AE024; // type:object size:0xC scope:local align:4 +@1511 = .data:0x802AE04C; // type:object size:0x18 scope:local align:4 data:string +@1513 = .data:0x802AE064; // type:object size:0x13 scope:local align:4 data:string +@1512 = .data:0x802AE078; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802AE090; // type:object size:0x25 scope:local align:4 data:string +@1515 = .data:0x802AE0B8; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802AE0C4; // type:object size:0xC scope:weak align:4 +@1516 = .data:0x802AE0DC; // type:object size:0xE scope:local align:4 data:string +@1521 = .data:0x802AE104; // type:object size:0x12 scope:local align:4 data:string +@1524 = .data:0x802AE118; // type:object size:0x14 scope:local align:4 +@1522 = .data:0x802AE12C; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802AE148; // type:object size:0x30 scope:weak align:4 +@1797 = .data:0x802AE178; // type:object size:0xE scope:local align:4 data:string +@1800 = .data:0x802AE188; // type:object size:0x1C scope:local align:4 +@1798 = .data:0x802AE1A4; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802AE1C8; // type:object size:0x34 scope:global align:4 +@1801 = .data:0x802AE1FC; // type:object size:0x15 scope:local align:4 data:string +@1802 = .data:0x802AE214; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802AE220; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802AE238; // type:label scope:local +@853 = .data:0x802AE238; // type:object size:0xC scope:local align:4 data:string +@940 = .data:0x802AE244; // type:object size:0x11 scope:local align:4 data:string +@942 = .data:0x802AE258; // type:object size:0x10 scope:local align:4 data:string +@943 = .data:0x802AE268; // type:object size:0xD scope:local align:4 data:string +@950 = .data:0x802AE278; // type:object size:0x9 scope:local align:4 data:string +@951 = .data:0x802AE284; // type:object size:0xC scope:local align:4 +@955 = .data:0x802AE2AC; // type:object size:0x14 scope:local align:4 data:string +@958 = .data:0x802AE2C0; // type:object size:0x14 scope:local align:4 +@956 = .data:0x802AE2D4; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802AE2F0; // type:object size:0x30 scope:weak align:4 +@1022 = .data:0x802AE320; // type:object size:0xF scope:local align:4 data:string +@1025 = .data:0x802AE330; // type:object size:0x1C scope:local align:4 +@1023 = .data:0x802AE34C; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802AE370; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AE3A8; // type:label scope:local +@1269 = .data:0x802AE3A8; // type:object size:0xB scope:local align:4 data:string +@2553 = .data:0x802AE3B4; // type:object size:0xB scope:local align:4 data:string +@2554 = .data:0x802AE3C0; // type:object size:0x9 scope:local align:4 data:string +@2556 = .data:0x802AE3CC; // type:object size:0xB scope:local align:4 data:string +@2558 = .data:0x802AE3D8; // type:object size:0xA scope:local align:4 data:string +@2559 = .data:0x802AE3E4; // type:object size:0x9 scope:local align:4 data:string +@2560 = .data:0x802AE3F0; // type:object size:0x9 scope:local align:4 data:string +@2885 = .data:0x802AE3FC; // type:object size:0xB scope:local align:4 data:string +@2886 = .data:0x802AE408; // type:object size:0xA scope:local align:4 data:string +@2888 = .data:0x802AE414; // type:object size:0xC scope:local align:4 data:string +@2889 = .data:0x802AE420; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802AE42C; // type:object size:0xD scope:local align:4 data:string +@2893 = .data:0x802AE43C; // type:object size:0x11 scope:local align:4 data:string +@2907 = .data:0x802AE450; // type:object size:0x9 scope:local align:4 data:string +@2998 = .data:0x802AE45C; // type:object size:0xA scope:local align:4 data:string +@3002 = .data:0x802AE468; // type:object size:0x14 scope:local align:4 data:string +@3038 = .data:0x802AE47C; // type:object size:0xA scope:local align:4 data:string +@4595 = .data:0x802AE488; // type:object size:0xD scope:local align:4 data:string +@4598 = .data:0x802AE498; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x802AE4A4; // type:object size:0xC scope:local align:4 +@4596 = .data:0x802AE4B0; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802AE4C4; // type:object size:0x10 scope:weak align:4 +@4602 = .data:0x802AE4D4; // type:object size:0xD scope:local align:4 data:string +@4605 = .data:0x802AE4E4; // type:object size:0x14 scope:local align:4 +@4603 = .data:0x802AE4F8; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802AE514; // type:object size:0x30 scope:weak align:4 +@4611 = .data:0x802AE544; // type:object size:0x12 scope:local align:4 data:string +@4613 = .data:0x802AE558; // type:object size:0x10 scope:local align:4 data:string +@4612 = .data:0x802AE568; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802AE574; // type:object size:0x10 scope:weak align:4 +@4616 = .data:0x802AE584; // type:object size:0x12 scope:local align:4 data:string +@4617 = .data:0x802AE598; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802AE5A4; // type:object size:0x10 scope:weak align:4 +@4619 = .data:0x802AE5B4; // type:object size:0xF scope:local align:4 data:string +@4621 = .data:0x802AE5C4; // type:object size:0xA scope:local align:4 data:string +@4622 = .data:0x802AE5D0; // type:object size:0x1C scope:local align:4 +@4623 = .data:0x802AE5EC; // type:object size:0xB scope:local align:4 data:string +@4624 = .data:0x802AE5F8; // type:object size:0x24 scope:local align:4 +@4620 = .data:0x802AE61C; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802AE648; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802AE6C0; // type:object size:0x78 scope:global align:4 +@4695 = .data:0x802AE738; // type:object size:0xD scope:local align:4 data:string +@4696 = .data:0x802AE748; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802AE774; // type:object size:0x78 scope:global align:4 +@4697 = .data:0x802AE7EC; // type:object size:0xF scope:local align:4 data:string +@4699 = .data:0x802AE7FC; // type:object size:0xE scope:local align:4 data:string +@4700 = .data:0x802AE80C; // type:object size:0x1C scope:local align:4 +@4701 = .data:0x802AE828; // type:object size:0xD scope:local align:4 data:string +@4702 = .data:0x802AE838; // type:object size:0x24 scope:local align:4 +@4698 = .data:0x802AE85C; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802AE888; // type:object size:0x48 scope:global align:4 +@4706 = .data:0x802AE8D0; // type:object size:0xD scope:local align:4 data:string +@4707 = .data:0x802AE8E0; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802AE90C; // type:object size:0x48 scope:global align:4 +@4709 = .data:0x802AE970; // type:object size:0xE scope:local align:4 data:string +@4710 = .data:0x802AE980; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802AE9AC; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802AE9F4; // type:object size:0x40 scope:weak align:4 +@4718 = .data:0x802AEA34; // type:object size:0xF scope:local align:4 data:string +@4720 = .data:0x802AEA44; // type:object size:0x9 scope:local align:4 data:string +@4719 = .data:0x802AEA50; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802AEA5C; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802AEA74; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802AEAC0; // type:label scope:local +@1229 = .data:0x802AEAC0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802AEACC; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802AEAD8; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802AEAE4; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802AEAF0; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802AEAFC; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802AEB08; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802AEB14; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802AEB20; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802AEB2C; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802AEB38; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802AEB44; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802AEB50; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802AEB5C; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802AEB68; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802AEB74; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802AEB80; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802AEB8C; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802AEB98; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802AEBA4; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802AEBB0; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802AEBBC; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802AEBC8; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802AEBD4; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802AEBE0; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802AEBEC; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802AEBF8; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802AEC04; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802AEC10; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802AEC1C; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802AEC28; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802AEC34; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802AEC40; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802AEC4C; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802AEC5C; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802AEC6C; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802AEC7C; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802AEC88; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802AEC94; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802AECA0; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802AECAC; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802AECB8; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802AECC4; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802AECD0; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802AECDC; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802AECE8; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802AECF4; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802AED00; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802AED0C; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802AED18; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802AED24; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802AED30; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802AED3C; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802AED48; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802AED54; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802AED60; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802AED6C; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802AED78; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802AED88; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802AED98; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802AEDA8; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802AEDBC; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802AEDCC; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802AEDD8; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802AEDE4; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802AEDF0; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802AEDFC; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802AEE08; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802AEE14; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802AEE20; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802AEE3C; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802AEE50; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802AEE6C; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802AEE88; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802AEE94; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802AEEA0; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802AEEAC; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802AEEB8; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802AEECC; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802AEEE8; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802AEEF4; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802AEF00; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802AEF0C; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802AEF28; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802AEF3C; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802AEF48; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802AEF54; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802AEF60; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802AEF6C; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802AEF80; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802AEF9C; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802AEFC0; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802AF014; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802AF020; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802AF044; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802AF098; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802AF0A4; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802AF0C8; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802AF11C; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802AF138; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802AF144; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802AF150; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802AF170; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802AF17C; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802AF188; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802AF198; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802AF1BC; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802AF210; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802AF230; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802AF23C; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802AF248; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802AF260; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802AF278; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802AF284; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802AF2A8; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802AF2FC; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802AF31C; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802AF328; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AF340; // type:label scope:local +@1343 = .data:0x802AF340; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802AF350; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802AF35C; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802AF368; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802AF374; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802AF38C; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802AF3C4; // type:object size:0x80 scope:local align:4 +@2515 = .data:0x802AF444; // type:object size:0x13 scope:local align:4 data:string +@2516 = .data:0x802AF458; // type:object size:0x13 scope:local align:4 data:string +@2517 = .data:0x802AF46C; // type:object size:0x13 scope:local align:4 data:string +@2518 = .data:0x802AF480; // type:object size:0x1E scope:local align:4 data:string +@2531 = .data:0x802AF4A0; // type:object size:0xE scope:local align:4 data:string +@2534 = .data:0x802AF4B0; // type:object size:0x9 scope:local align:4 data:string +@2535 = .data:0x802AF4BC; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802AF4C8; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802AF4DC; // type:object size:0x10 scope:weak align:4 +@2538 = .data:0x802AF4EC; // type:object size:0x9 scope:local align:4 data:string +@2539 = .data:0x802AF4F8; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802AF50C; // type:object size:0x10 scope:weak align:4 +@2540 = .data:0x802AF51C; // type:object size:0x10 scope:local align:4 data:string +@2541 = .data:0x802AF52C; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802AF540; // type:object size:0x10 scope:weak align:4 +@2542 = .data:0x802AF550; // type:object size:0xA scope:local align:4 data:string +@2543 = .data:0x802AF55C; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802AF570; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AF5A0; // type:label scope:local +@571 = .data:0x802AF5A0; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802AF5B0; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802AF5BC; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802AF5C8; // type:object size:0xC scope:local align:4 +@819 = .data:0x802AF5D4; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802AF5E8; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802AF604; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AF660; // type:label scope:local +@1027 = .data:0x802AF660; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802AF670; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802AF67C; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802AF6A0; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802AF8A0; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802AFCA0; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802AFEA0; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802B02A0; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802B04A0; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802B10A0; // type:object size:0x20 scope:local align:4 +@1206 = .data:0x802B10C0; // type:object size:0x9 scope:local align:4 data:string +@1207 = .data:0x802B10CC; // type:object size:0xD scope:local align:4 data:string +@1208 = .data:0x802B10DC; // type:object size:0x10 scope:local align:4 data:string +@1209 = .data:0x802B10EC; // type:object size:0x11 scope:local align:4 data:string +@1210 = .data:0x802B1100; // type:object size:0x11 scope:local align:4 data:string +@1211 = .data:0x802B1114; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802B112C; // type:object size:0xE scope:local align:4 data:string +@1213 = .data:0x802B113C; // type:object size:0xD scope:local align:4 data:string +@1214 = .data:0x802B114C; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802B1160; // type:object size:0x24 scope:local align:4 +@1497 = .data:0x802B1184; // type:object size:0x9 scope:local align:4 +@1498 = .data:0x802B1190; // type:object size:0x9 scope:local align:4 +@1577 = .data:0x802B119C; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802B11A8; // type:object size:0x14 scope:local align:4 data:string +@2021 = .data:0x802B11BC; // type:object size:0xA scope:local align:4 data:string +@2022 = .data:0x802B11C8; // type:object size:0xA scope:local align:4 data:string +@2023 = .data:0x802B11D4; // type:object size:0xB scope:local align:4 data:string +@2024 = .data:0x802B11E0; // type:object size:0xB scope:local align:4 data:string +@2025 = .data:0x802B11EC; // type:object size:0xB scope:local align:4 data:string +@2026 = .data:0x802B11F8; // type:object size:0xB scope:local align:4 data:string +sectionNames$2019 = .data:0x802B1204; // type:object size:0x1C scope:local align:4 +@2253 = .data:0x802B1220; // type:object size:0x9 scope:local align:4 data:string +@2254 = .data:0x802B122C; // type:object size:0xC scope:local align:4 +@2258 = .data:0x802B1254; // type:object size:0xA scope:local align:4 data:string +@2261 = .data:0x802B1260; // type:object size:0x13 scope:local align:4 data:string +@2262 = .data:0x802B1274; // type:object size:0xC scope:local align:4 +@2259 = .data:0x802B1280; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802B1360; // type:label scope:local +@1345 = .data:0x802B1360; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802B1370; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802B137C; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802B1390; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802B13A4; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802B13B8; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802B13CC; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802B13E0; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802B13F4; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802B1408; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802B141C; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802B1430; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802B1444; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802B1458; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802B146C; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802B1480; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802B1494; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802B14A8; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802B14BC; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802B14D0; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802B14E4; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802B14F8; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802B150C; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802B1520; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802B1534; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802B1548; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802B155C; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802B1570; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802B1584; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802B1598; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802B15AC; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802B15C0; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802B15D4; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802B15E8; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802B15FC; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802B1610; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802B1624; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802B1638; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802B164C; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802B1660; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802B1674; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802B1688; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802B169C; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802B16B0; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802B16C4; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802B16D8; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802B16EC; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802B1700; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802B1714; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802B1728; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802B173C; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802B1750; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802B1764; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802B1778; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802B178C; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802B17A0; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802B17B4; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802B17C8; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802B17DC; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802B17F0; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802B1804; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802B1818; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802B182C; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802B1840; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802B1854; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B1868; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B187C; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802B1890; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802B18A4; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802B18B8; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802B18CC; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802B18E0; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802B18F4; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802B1908; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802B191C; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802B1930; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802B1944; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802B1958; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802B196C; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802B1980; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802B1994; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802B19A8; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802B19BC; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802B19D0; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802B19E4; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802B19F8; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802B1A0C; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802B1A20; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802B1A34; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802B1CEC; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802B1CF8; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802B1D04; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802B1D10; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802B1D24; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802B1D38; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802B1D4C; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802B1D60; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802B1D74; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802B1D88; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802B1D9C; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802B1DB0; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802B1DC4; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802B1DD8; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802B1DEC; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802B1E00; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802B1E14; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802B1E28; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802B1E3C; // type:object size:0x90 scope:local align:4 data:4byte +@1671 = .data:0x802B1ECC; // type:object size:0x30 scope:local align:4 data:string +@1833 = .data:0x802B1EFC; // type:object size:0xA scope:local align:4 data:string +@1836 = .data:0x802B1F08; // type:object size:0x9 scope:local align:4 data:string +@1837 = .data:0x802B1F14; // type:object size:0xC scope:local align:4 +@1834 = .data:0x802B1F20; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802B1F34; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B1F60; // type:label scope:local +@685 = .data:0x802B1F60; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802B1F70; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802B1F7C; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802B1F94; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802B1FAC; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802B1FC4; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802B1FDC; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802B1FF4; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802B200C; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802B2024; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802B2038; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802B204C; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802B205C; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802B2068; // type:object size:0xC scope:local align:4 +@872 = .data:0x802B2090; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802B20A8; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802B20BC; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802B20D8; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802B2108; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802B211C; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802B2138; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802B215C; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802B2190; // type:label scope:local +@1227 = .data:0x802B2190; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802B219C; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802B21AC; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802B21B8; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802B21D0; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802B21DC; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802B21FC; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802B2208; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802B2214; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802B2234; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802B2244; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802B2250; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802B2270; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802B2290; // type:label scope:local +@625 = .data:0x802B2290; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802B22A0; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802B22AC; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802B22B8; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802B22D0; // type:object size:0xC scope:local align:4 +@700 = .data:0x802B22DC; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802B22F0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B2320; // type:label scope:local +@1578 = .data:0x802B2320; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802B2334; // type:object size:0xF scope:local align:4 data:string +@1855 = .data:0x802B2344; // type:object size:0x1B scope:local align:4 data:string +@1857 = .data:0x802B2360; // type:object size:0x19 scope:local align:4 data:string +@2080 = .data:0x802B237C; // type:object size:0xE scope:local align:4 data:string +@2082 = .data:0x802B238C; // type:object size:0xC scope:local align:4 data:string +@2081 = .data:0x802B2398; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802B23A4; // type:object size:0x2C scope:global align:4 +@2091 = .data:0x802B23D0; // type:object size:0xE scope:local align:4 data:string +@2092 = .data:0x802B23E0; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802B23EC; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802B2418; // type:object size:0xD scope:local align:4 data:string +@2094 = .data:0x802B2428; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802B2434; // type:object size:0x2C scope:global align:4 +@2096 = .data:0x802B2460; // type:object size:0x10 scope:local align:4 data:string +@2097 = .data:0x802B2470; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802B247C; // type:object size:0x2C scope:global align:4 +@2098 = .data:0x802B24A8; // type:object size:0xF scope:local align:4 data:string +@2099 = .data:0x802B24B8; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802B24C4; // type:object size:0x2C scope:global align:4 +@2100 = .data:0x802B24F0; // type:object size:0x14 scope:local align:4 data:string +@2101 = .data:0x802B2504; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802B2510; // type:object size:0x2C scope:global align:4 +@2102 = .data:0x802B253C; // type:object size:0xE scope:local align:4 data:string +@2103 = .data:0x802B254C; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802B2558; // type:object size:0x2C scope:global align:4 +@2104 = .data:0x802B2584; // type:object size:0xD scope:local align:4 data:string +@2105 = .data:0x802B2594; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802B25A0; // type:object size:0x2C scope:global align:4 +@2106 = .data:0x802B25CC; // type:object size:0xD scope:local align:4 data:string +@2107 = .data:0x802B25DC; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802B25E8; // type:object size:0x2C scope:global align:4 +@2108 = .data:0x802B2614; // type:object size:0xF scope:local align:4 data:string +@2109 = .data:0x802B2624; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802B2630; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802B265C; // type:object size:0x2C scope:weak align:4 +@2110 = .data:0x802B2688; // type:object size:0xE scope:local align:4 data:string +@2111 = .data:0x802B2698; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802B26A4; // type:object size:0x2C scope:global align:4 +@2112 = .data:0x802B26D0; // type:object size:0x14 scope:local align:4 data:string +@2113 = .data:0x802B26E4; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802B26F0; // type:object size:0x2C scope:global align:4 +@2114 = .data:0x802B271C; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802B2730; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802B273C; // type:object size:0x2C scope:global align:4 +@2116 = .data:0x802B2768; // type:object size:0x12 scope:local align:4 data:string +@2117 = .data:0x802B277C; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802B2788; // type:object size:0x2C scope:global align:4 +@2118 = .data:0x802B27B4; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802B27C4; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802B27D0; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2800; // type:label scope:local +@625 = .data:0x802B2800; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B2814; // type:object size:0xD scope:local align:4 data:string +@642 = .data:0x802B2824; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802B283C; // type:object size:0x10 scope:local align:4 data:string +@680 = .data:0x802B284C; // type:object size:0xC scope:local align:4 data:string +@679 = .data:0x802B2858; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802B2864; // type:object size:0x2C scope:global align:4 +@689 = .data:0x802B2890; // type:object size:0xD scope:local align:4 data:string +@690 = .data:0x802B28A0; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802B28AC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B28D8; // type:label scope:local +@1133 = .data:0x802B28D8; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802B28E8; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802B28F4; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802B2904; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802B2910; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802B291C; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802B2948; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802B2958; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802B2964; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2990; // type:label scope:local +@1358 = .data:0x802B2990; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B29A4; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802B29B4; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802B29C4; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802B29D0; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802B29DC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2A08; // type:label scope:local +@716 = .data:0x802B2A08; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802B2A18; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802B2A24; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802B2A34; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802B2A4C; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802B2A58; // type:object size:0xC scope:local align:4 +@790 = .data:0x802B2A64; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802B2A78; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802B2AB0; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802B2AC0; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802B2AD4; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802B2B0C; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802B2B1C; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802B2B30; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802B2B68; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802B2B78; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802B2B8C; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802B2BC4; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802B2BDC; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802B2BF0; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802B2C28; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802B2C40; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802B2C54; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802B2C8C; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802B2CA4; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802B2CB8; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802B2CF0; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802B2D04; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802B2D18; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802B2D50; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802B2D88; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802B2DC0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B2DF0; // type:label scope:local +@868 = .data:0x802B2DF0; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802B2E00; // type:object size:0x9 scope:local align:4 data:string +@936 = .data:0x802B2E0C; // type:object size:0x10 scope:local align:4 data:string +@939 = .data:0x802B2E1C; // type:object size:0x14 scope:local align:4 data:string +@943 = .data:0x802B2E30; // type:object size:0x11 scope:local align:4 data:string +@993 = .data:0x802B2E44; // type:object size:0x9 scope:local align:4 data:string +@994 = .data:0x802B2E50; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802B2E5C; // type:object size:0xD scope:local align:4 data:string +@1073 = .data:0x802B2E6C; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802B2E7C; // type:object size:0xA scope:local align:4 data:string +@1138 = .data:0x802B2E88; // type:object size:0x2C scope:local align:4 +@1154 = .data:0x802B2EB4; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802B2EC0; // type:object size:0x15 scope:local align:4 data:string +@1157 = .data:0x802B2ED8; // type:object size:0x13 scope:local align:4 data:string +@1158 = .data:0x802B2EEC; // type:object size:0xC scope:local align:4 +@1155 = .data:0x802B2EF8; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802B2F0C; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802B2F5C; // type:object size:0x50 scope:weak align:4 +@1159 = .data:0x802B2FE4; // type:object size:0xD scope:local align:4 data:string +@1162 = .data:0x802B2FF4; // type:object size:0xC scope:local align:4 +@1160 = .data:0x802B3000; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802B3014; // type:object size:0x14 scope:weak align:4 +@1165 = .data:0x802B3028; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802B303C; // type:object size:0x10 scope:weak align:4 +@1166 = .data:0x802B3068; // type:object size:0x9 scope:local align:4 data:string +@1168 = .data:0x802B3074; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802B3090; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802B309C; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802B30B4; // type:object size:0x18 scope:weak align:4 +@1169 = .data:0x802B30CC; // type:object size:0xB scope:local align:4 data:string +@1171 = .data:0x802B30D8; // type:object size:0x14 scope:local align:4 data:string +@1172 = .data:0x802B30EC; // type:object size:0xC scope:local align:4 data:string +@1173 = .data:0x802B30F8; // type:object size:0xD scope:local align:4 data:string +@1174 = .data:0x802B3108; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B3114; // type:object size:0x14 scope:local align:4 +@1170 = .data:0x802B3128; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802B314C; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802B32A4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B32B0; // type:label scope:local +@1064 = .data:0x802B32B0; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802B32C4; // type:object size:0xA scope:local align:4 data:string +@1224 = .data:0x802B32D0; // type:object size:0x2E scope:local align:4 data:string +@2865 = .data:0x802B3300; // type:object size:0xD scope:local align:4 data:string +@2867 = .data:0x802B3310; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802B3320; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802B332C; // type:object size:0x10 scope:global align:4 +@2868 = .data:0x802B333C; // type:object size:0xD scope:local align:4 data:string +@2869 = .data:0x802B334C; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802B3358; // type:object size:0x10 scope:global align:4 +@2870 = .data:0x802B3368; // type:object size:0x10 scope:local align:4 data:string +@2871 = .data:0x802B3378; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802B3384; // type:object size:0x10 scope:global align:4 +@2872 = .data:0x802B3394; // type:object size:0xF scope:local align:4 data:string +@2873 = .data:0x802B33A4; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802B33B0; // type:object size:0x10 scope:global align:4 +@2874 = .data:0x802B33C0; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802B33CC; // type:object size:0x18 scope:weak align:4 +@2875 = .data:0x802B33E4; // type:object size:0xD scope:local align:4 data:string +@2876 = .data:0x802B33F4; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802B3400; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802B3418; // type:label scope:local +@676 = .data:0x802B3418; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802B342C; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802B3438; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802B3454; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802B3470; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802B3488; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802B34A0; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802B34B8; // type:label scope:local +@1581 = .data:0x802B34B8; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802B34C8; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802B34D4; // type:object size:0x28 scope:global align:4 +@1618 = .data:0x802B34FC; // type:object size:0x15 scope:local align:4 data:string +@1861 = .data:0x802B3514; // type:object size:0xA scope:local align:4 data:string +@1866 = .data:0x802B3520; // type:object size:0x14 scope:local align:4 data:string +@2026 = .data:0x802B3534; // type:object size:0x13 scope:local align:4 +@2618 = .data:0x802B3548; // type:object size:0x16 scope:local align:4 data:string +@2620 = .data:0x802B3560; // type:object size:0x14 scope:local align:4 data:string +@2619 = .data:0x802B3574; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802B3580; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802B3598; // type:label scope:local +@1085 = .data:0x802B3598; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802B35A8; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802B35B4; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802B35C0; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802B35D8; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802B35F0; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802B3608; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802B361C; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802B362C; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802B363C; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802B364C; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802B3664; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802B3670; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802B3690; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802B36A4; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802B36B8; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802B36D0; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802B36E4; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802B36F4; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802B3704; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802B371C; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802B3734; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802B3744; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802B3754; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802B3768; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802B3784; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802B379C; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802B37B4; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802B37D0; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802B37E8; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802B37F8; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802B3808; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802B3814; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802B3824; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802B3830; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802B383C; // type:object size:0x11 scope:local align:4 +@1300 = .data:0x802B3850; // type:object size:0x9 scope:local align:4 +@1357 = .data:0x802B385C; // type:object size:0xC scope:local align:4 data:string +@1359 = .data:0x802B3868; // type:object size:0x9 scope:local align:4 data:string +@1358 = .data:0x802B3874; // type:object size:0xC scope:local align:4 +@1360 = .data:0x802B3894; // type:object size:0xA scope:local align:4 data:string +@1363 = .data:0x802B38A0; // type:object size:0x9 scope:local align:4 data:string +@1364 = .data:0x802B38AC; // type:object size:0xC scope:local align:4 +@1366 = .data:0x802B38B8; // type:object size:0x14 scope:local align:4 +@1361 = .data:0x802B38CC; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802B38E8; // type:object size:0x30 scope:weak align:4 +@1478 = .data:0x802B3938; // type:object size:0x10 scope:local align:4 data:string +@1762 = .data:0x802B3948; // type:object size:0x20 scope:local align:4 data:string +@1711 = .data:0x802B3968; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802B3984; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802B39A8; // type:label scope:local +@903 = .data:0x802B39A8; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802B39B8; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802B39C4; // type:object size:0x4C0 scope:global align:4 data:4byte +@1064 = .data:0x802B3E84; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x802B3E98; // type:label scope:local +@461 = .data:0x802B3E98; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802B3EA8; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802B3EB4; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802B3EC0; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802B3ECC; // type:object size:0xC scope:local align:4 +@658 = .data:0x802B3EEC; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802B3EF8; // type:object size:0xC scope:local align:4 +@660 = .data:0x802B3F18; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802B3F24; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802B3F30; // type:object size:0xC scope:local align:4 +@666 = .data:0x802B3F3C; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802B3F50; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802B3F6C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B3FB8; // type:label scope:local +@388 = .data:0x802B3FB8; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802B3FC8; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802B3FD4; // type:object size:0xD scope:local align:4 +@445 = .data:0x802B3FE4; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802B3FF0; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802B3FFC; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802B400C; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802B4018; // type:object size:0xC scope:local align:4 +@463 = .data:0x802B4024; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802B4038; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802B4054; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802B4084; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802B4090; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802B40AC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B40F8; // type:label scope:local +@1533 = .data:0x802B40F8; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802B4104; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802B4110; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802B411C; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802B4128; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802B4134; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802B4140; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802B414C; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802B4158; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802B4164; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802B4170; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802B417C; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802B4188; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802B4194; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802B41A0; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802B41AC; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802B41B8; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802B41C4; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802B41D0; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802B41DC; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802B41E8; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802B41F4; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802B4200; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802B420C; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802B4218; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802B4224; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802B4234; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802B4248; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802B425C; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802B4270; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B4280; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802B4290; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802B42A4; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802B42B8; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802B42CC; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802B42E0; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802B42F4; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802B4304; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802B4310; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802B431C; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802B4328; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802B4334; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802B4340; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802B434C; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802B4358; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802B4364; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802B4370; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802B4380; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802B4390; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802B43A0; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802B43B0; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802B43C0; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802B43D4; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802B43E4; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802B43F4; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802B4408; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802B4418; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802B4428; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802B4438; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802B444C; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802B445C; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802B4470; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802B4480; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802B4490; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802B44A0; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802B4518; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802B4528; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802B4538; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802B4550; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802B4588; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802B45A4; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802B45B8; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802B45C4; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802B45D0; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802B45E8; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4610; // type:label scope:local +@731 = .data:0x802B4610; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802B4620; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802B462C; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802B4638; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802B4648; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802B4658; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802B4664; // type:object size:0xC scope:local align:4 +@826 = .data:0x802B4670; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802B467C; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802B4690; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802B46AC; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802B46E4; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802B46F0; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802B46FC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4720; // type:label scope:local +@388 = .data:0x802B4720; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802B472C; // type:object size:0x9 scope:local align:4 data:string +@430 = .data:0x802B4738; // type:object size:0x9 scope:local align:4 data:string +@552 = .data:0x802B4744; // type:object size:0x9 scope:local align:4 data:string +@553 = .data:0x802B4750; // type:object size:0xC scope:local align:4 +@554 = .data:0x802B475C; // type:object size:0xC scope:local align:4 data:string +@555 = .data:0x802B4768; // type:object size:0x14 scope:local align:4 +@550 = .data:0x802B477C; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802B4798; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802B47A8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B47D8; // type:label scope:local +@625 = .data:0x802B47D8; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802B47E8; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B47F4; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802B4800; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802B480C; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802B4818; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802B4824; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802B4830; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802B483C; // type:object size:0x1C scope:local align:4 +@1855 = .data:0x802B4858; // type:object size:0xE scope:local align:4 data:string +@2391 = .data:0x802B4868; // type:object size:0x13 scope:local align:4 data:string +@2392 = .data:0x802B487C; // type:object size:0xE scope:local align:4 data:string +@2421 = .data:0x802B488C; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B48A0; // type:label scope:local +@1470 = .data:0x802B48A0; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802B48B0; // type:object size:0x9 scope:local align:4 data:string +@2117 = .data:0x802B48BC; // type:object size:0xD scope:local align:4 data:string +@3293 = .data:0x802B48CC; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802B48D8; // type:object size:0xC scope:weak align:4 +@3295 = .data:0x802B48E4; // type:object size:0xC scope:local align:4 data:string +@3296 = .data:0x802B48F0; // type:object size:0xD scope:local align:4 data:string +@3294 = .data:0x802B4900; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802B4914; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B4A28; // type:label scope:local +@655 = .data:0x802B4A28; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802B4A40; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802B4A54; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802B4A68; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802B4A74; // type:object size:0xC scope:local align:4 +@753 = .data:0x802B4A80; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802B4A94; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802B4AA4; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802B4AC0; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802B4AD0; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802B4AF4; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802B4B20; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802B4B68; // type:label scope:local +@1007 = .data:0x802B4B68; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802B4B7C; // type:object size:0xE scope:local align:4 data:string +@1270 = .data:0x802B4B8C; // type:object size:0x12 scope:local align:4 data:string +@1271 = .data:0x802B4BA0; // type:object size:0xD scope:local align:4 data:string +@1495 = .data:0x802B4BB0; // type:object size:0xD scope:local align:4 data:string +@1504 = .data:0x802B4BC0; // type:object size:0x16 scope:local align:4 data:string +@1785 = .data:0x802B4BD8; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802B4BE4; // type:object size:0x10 scope:global align:4 +@2012 = .data:0x802B4BF4; // type:object size:0x1E scope:local align:4 data:string +@2013 = .data:0x802B4C14; // type:object size:0xB scope:local align:4 data:string +@2169 = .data:0x802B4C20; // type:object size:0x1E scope:local align:4 data:string +@2454 = .data:0x802B4C40; // type:object size:0x11 scope:local align:4 data:string +@2455 = .data:0x802B4C54; // type:object size:0xE scope:local align:4 data:string +@2456 = .data:0x802B4C64; // type:object size:0x10 scope:local align:4 data:string +@2457 = .data:0x802B4C74; // type:object size:0x9 scope:local align:4 data:string +@2459 = .data:0x802B4C80; // type:object size:0xC scope:local align:4 data:string +@2458 = .data:0x802B4C8C; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802B4C98; // type:object size:0x18 scope:global align:4 +@2460 = .data:0x802B4CC8; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802B4D00; // type:label scope:local +@939 = .data:0x802B4D00; // type:object size:0x11 scope:local align:4 data:string +@1329 = .data:0x802B4D14; // type:object size:0xC scope:local align:4 data:string +@1331 = .data:0x802B4D20; // type:object size:0xC scope:local align:4 data:string +@1332 = .data:0x802B4D2C; // type:object size:0xD scope:local align:4 data:string +@1333 = .data:0x802B4D3C; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802B4D48; // type:object size:0x14 scope:local align:4 +@1335 = .data:0x802B4D5C; // type:object size:0xC scope:local align:4 data:string +@1336 = .data:0x802B4D68; // type:object size:0x1C scope:local align:4 +@1337 = .data:0x802B4D84; // type:object size:0xD scope:local align:4 data:string +@1338 = .data:0x802B4D94; // type:object size:0x24 scope:local align:4 +@1330 = .data:0x802B4DB8; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802B4DE4; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802B4F04; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802B5028; // type:label scope:local +@863 = .data:0x802B5028; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802B5038; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802B5044; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802B5050; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802B5060; // type:object size:0xD scope:local align:4 data:string +@1034 = .data:0x802B5070; // type:object size:0xA scope:local align:4 data:string +@1893 = .data:0x802B507C; // type:object size:0xC scope:local align:4 data:string +@1895 = .data:0x802B5088; // type:object size:0xC scope:local align:4 data:string +@1896 = .data:0x802B5094; // type:object size:0xD scope:local align:4 data:string +@1897 = .data:0x802B50A4; // type:object size:0x9 scope:local align:4 data:string +@1898 = .data:0x802B50B0; // type:object size:0x14 scope:local align:4 +@1894 = .data:0x802B50C4; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802B50E0; // type:object size:0x114 scope:global align:4 +@1949 = .data:0x802B51F4; // type:object size:0xC scope:local align:4 data:string +@1951 = .data:0x802B5200; // type:object size:0x9 scope:local align:4 data:string +@1950 = .data:0x802B520C; // type:object size:0xC scope:local align:4 +@1952 = .data:0x802B522C; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802B523C; // type:object size:0xC scope:weak align:4 +@1954 = .data:0x802B5248; // type:object size:0xC scope:local align:4 data:string +@1957 = .data:0x802B5254; // type:object size:0xC scope:local align:4 +@1955 = .data:0x802B5260; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802B5274; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B52B0; // type:label scope:local +@389 = .data:0x802B52B0; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802B52C4; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802B52D4; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802B52E0; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802B52F0; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802B5300; // type:object size:0xC scope:local align:4 +@421 = .data:0x802B530C; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802B5320; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802B5350; // type:label scope:local +@625 = .data:0x802B5350; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B5364; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802B5374; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802B5384; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802B5390; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802B53A0; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802B53AC; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802B53C0; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802B53DC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B54F0; // type:label scope:local +@396 = .data:0x802B54F0; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802B54FC; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802B550C; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802B5518; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802B5524; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802B5534; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802B5540; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802B554C; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802B5558; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802B5568; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802B5574; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802B5588; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802B559C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802B55A8; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802B55B4; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802B55C0; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802B55CC; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802B55D8; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802B55E4; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802B55F4; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802B5600; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802B560C; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802B5618; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802B5624; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802B5634; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802B5640; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802B564C; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802B5804; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B5818; // type:label scope:local +@1331 = .data:0x802B5818; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802B5828; // type:object size:0x7C scope:local align:4 data:4byte +@1359 = .data:0x802B58A4; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802B58B0; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B58BC; // type:object size:0xD scope:local align:4 data:string +@1871 = .data:0x802B58CC; // type:object size:0x9 scope:local align:4 data:string +@1872 = .data:0x802B58D8; // type:object size:0x11 scope:local align:4 data:string +@1873 = .data:0x802B58EC; // type:object size:0x13 scope:local align:4 data:string +@2124 = .data:0x802B5900; // type:object size:0xF scope:local align:4 data:string +@2314 = .data:0x802B5910; // type:object size:0x10 scope:local align:4 data:string +bounceSounds = .data:0x802B5920; // type:object size:0x30 scope:local align:4 +numberPellets = .data:0x802B5950; // type:object size:0x9C scope:global align:4 data:4byte +@3083 = .data:0x802B59EC; // type:object size:0xB scope:local align:4 data:string +@3120 = .data:0x802B59F8; // type:object size:0x9 scope:local align:4 data:string +@3121 = .data:0x802B5A04; // type:object size:0xC scope:local align:4 data:string +@3192 = .data:0x802B5A10; // type:object size:0x13 scope:local align:4 data:string +@3259 = .data:0x802B5A24; // type:object size:0x23 scope:local align:4 data:string +@3399 = .data:0x802B5A48; // type:object size:0xA scope:local align:4 data:string +@3402 = .data:0x802B5A54; // type:object size:0xC scope:local align:4 +@3404 = .data:0x802B5A60; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802B5A74; // type:object size:0xC scope:local align:4 data:string +@3406 = .data:0x802B5A80; // type:object size:0xA scope:local align:4 data:string +@3407 = .data:0x802B5A8C; // type:object size:0x24 scope:local align:4 +@3408 = .data:0x802B5AB0; // type:object size:0xE scope:local align:4 data:string +@3409 = .data:0x802B5AC0; // type:object size:0x2C scope:local align:4 +@3400 = .data:0x802B5AEC; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B5B20; // type:object size:0x88 scope:global align:4 +@3425 = .data:0x802B5BA8; // type:object size:0xB scope:local align:4 data:string +@3427 = .data:0x802B5BB4; // type:object size:0xD scope:local align:4 data:string +@3426 = .data:0x802B5BC4; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B5BD0; // type:object size:0xC scope:weak align:4 +@3429 = .data:0x802B5BE8; // type:object size:0x13 scope:local align:4 data:string +@3430 = .data:0x802B5BFC; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B5C10; // type:object size:0x10 scope:weak align:4 +@3432 = .data:0x802B5C20; // type:object size:0xC scope:local align:4 data:string +@3442 = .data:0x802B5C58; // type:object size:0x14 scope:local align:4 data:string +@3443 = .data:0x802B5C6C; // type:object size:0xC scope:local align:4 data:string +@3444 = .data:0x802B5C78; // type:object size:0xD scope:local align:4 data:string +@3445 = .data:0x802B5C88; // type:object size:0x9 scope:local align:4 data:string +@3446 = .data:0x802B5C94; // type:object size:0x14 scope:local align:4 +@3447 = .data:0x802B5CA8; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802B5CB4; // type:object size:0x1C scope:local align:4 +@3449 = .data:0x802B5CD0; // type:object size:0xD scope:local align:4 data:string +@3450 = .data:0x802B5CE0; // type:object size:0x24 scope:local align:4 +@3441 = .data:0x802B5D04; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B5D38; // type:object size:0x130 scope:global align:4 +@3484 = .data:0x802B5E68; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B5E80; // type:object size:0x18 scope:weak align:4 +@3487 = .data:0x802B5E98; // type:object size:0x23 scope:local align:4 data:string +@3488 = .data:0x802B5EBC; // type:object size:0x3D scope:local align:4 data:string +@3489 = .data:0x802B5EFC; // type:object size:0x29 scope:local align:4 data:string +@3486 = .data:0x802B5F28; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B5F44; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B5F80; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B5F8C; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B5F98; // type:object size:0xC scope:weak align:4 +@3496 = .data:0x802B5FB0; // type:object size:0xD scope:local align:4 data:string +@3498 = .data:0x802B5FC0; // type:object size:0xB scope:local align:4 data:string +@3497 = .data:0x802B5FCC; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B5FE8; // type:object size:0x1C scope:global align:4 +@3499 = .data:0x802B6004; // type:object size:0xC scope:local align:4 data:string +@3501 = .data:0x802B6010; // type:object size:0x9 scope:local align:4 data:string +@3500 = .data:0x802B601C; // type:object size:0xC scope:local align:4 +@3502 = .data:0x802B603C; // type:object size:0xA scope:local align:4 data:string +@3503 = .data:0x802B6048; // type:object size:0xC scope:local align:4 +@3504 = .data:0x802B6068; // type:object size:0xD scope:local align:4 data:string +@3505 = .data:0x802B6078; // type:object size:0xC scope:local align:4 +@3540 = .data:0x802B60B4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B60E0; // type:label scope:local +@1008 = .data:0x802B60E0; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B60F0; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B60FC; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B6108; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B6118; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B612C; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B613C; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B6158; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B616C; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B6178; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B6188; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B6194; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B61A8; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B61C4; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B61D4; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B61E0; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B61EC; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B6208; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B6224; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B6234; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B6240; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B6280; // type:label scope:local +@1040 = .data:0x802B6280; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B6290; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B629C; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B62A8; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B62B8; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B62C8; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B62D4; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B62E0; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B62EC; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B6300; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B631C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B6358; // type:label scope:local +@1325 = .data:0x802B6358; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B6368; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B6374; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B6380; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B6390; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B63A4; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B63B4; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B63C0; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B63CC; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B63E0; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B63FC; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B644C; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B6460; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B647C; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B64CC; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B64E4; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B6500; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B6550; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B6564; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B6580; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B65D0; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B65E0; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B65FC; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B664C; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B6660; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B667C; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B66CC; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B671C; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B676C; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B67A4; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B67B8; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B67D0; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B67DC; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B67F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6820; // type:label scope:local +@1312 = .data:0x802B6820; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B6830; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B683C; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B6850; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B6864; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B6878; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B6884; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B6890; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B68A8; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B68B4; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B68C0; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B68D0; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B68DC; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B68E8; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B6918; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B6934; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B6950; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B696C; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B698C; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B69A8; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B69BC; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802B69C8; // type:object size:0x9 scope:local align:4 data:string +@1558 = .data:0x802B69D4; // type:object size:0xC scope:local align:4 data:string +@1559 = .data:0x802B69E0; // type:object size:0x11 scope:local align:4 +@1615 = .data:0x802B69F4; // type:object size:0x17 scope:local align:4 +@1645 = .data:0x802B6A0C; // type:object size:0x9 scope:local align:4 data:string +@2036 = .data:0x802B6A18; // type:object size:0x15 scope:local align:4 data:string +@2423 = .data:0x802B6A30; // type:object size:0x10 scope:local align:4 data:string +@2574 = .data:0x802B6A40; // type:object size:0x13 scope:local align:4 data:string +@2994 = .data:0x802B6A54; // type:object size:0xE scope:local align:4 data:string +@2996 = .data:0x802B6A64; // type:object size:0xC scope:local align:4 data:string +@2995 = .data:0x802B6A70; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B6A7C; // type:object size:0x2C scope:global align:4 +@3003 = .data:0x802B6AA8; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802B6AB8; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B6AC4; // type:object size:0x2C scope:global align:4 +@3007 = .data:0x802B6AF0; // type:object size:0x14 scope:local align:4 data:string +@3008 = .data:0x802B6B04; // type:object size:0xC scope:local align:4 data:string +@3009 = .data:0x802B6B10; // type:object size:0xD scope:local align:4 data:string +@3010 = .data:0x802B6B20; // type:object size:0x9 scope:local align:4 data:string +@3011 = .data:0x802B6B2C; // type:object size:0x14 scope:local align:4 +@3012 = .data:0x802B6B40; // type:object size:0xB scope:local align:4 data:string +@3013 = .data:0x802B6B4C; // type:object size:0x24 scope:local align:4 +@3014 = .data:0x802B6B70; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802B6B80; // type:object size:0x2C scope:local align:4 +@3016 = .data:0x802B6BAC; // type:object size:0xB scope:local align:4 data:string +@3017 = .data:0x802B6BB8; // type:object size:0x34 scope:local align:4 +@3006 = .data:0x802B6BEC; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B6C28; // type:object size:0x16C scope:global align:4 +@3067 = .data:0x802B6D94; // type:object size:0xD scope:local align:4 data:string +@3068 = .data:0x802B6DA4; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802B6DB0; // type:object size:0x2C scope:global align:4 +@3069 = .data:0x802B6DDC; // type:object size:0xB scope:local align:4 data:string +@3070 = .data:0x802B6DE8; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802B6E24; // type:object size:0x16C scope:global align:4 +@3075 = .data:0x802B6F90; // type:object size:0xE scope:local align:4 data:string +@3078 = .data:0x802B6FA0; // type:object size:0xC scope:local align:4 +@3080 = .data:0x802B6FAC; // type:object size:0x14 scope:local align:4 +@3076 = .data:0x802B6FC0; // type:object size:0x1C scope:local align:4 +@3092 = .data:0x802B701C; // type:object size:0xE scope:local align:4 data:string +@3094 = .data:0x802B702C; // type:object size:0xD scope:local align:4 data:string +@3095 = .data:0x802B703C; // type:object size:0x24 scope:local align:4 +@3093 = .data:0x802B7060; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802B708C; // type:object size:0x48 scope:weak align:4 +@3099 = .data:0x802B70D4; // type:object size:0x14 scope:local align:4 data:string +@3101 = .data:0x802B70E8; // type:object size:0xB scope:local align:4 data:string +@3103 = .data:0x802B70F4; // type:object size:0xC scope:local align:4 +@3104 = .data:0x802B7100; // type:object size:0xA scope:local align:4 data:string +@3105 = .data:0x802B710C; // type:object size:0x14 scope:local align:4 +@3100 = .data:0x802B7120; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802B713C; // type:object size:0x38 scope:global align:4 +@3111 = .data:0x802B7174; // type:object size:0xC scope:local align:4 data:string +@3113 = .data:0x802B7180; // type:object size:0x9 scope:local align:4 data:string +@3112 = .data:0x802B718C; // type:object size:0xC scope:local align:4 +@3114 = .data:0x802B71AC; // type:object size:0xA scope:local align:4 data:string +@3115 = .data:0x802B71B8; // type:object size:0xC scope:local align:4 +@3116 = .data:0x802B71D8; // type:object size:0xE scope:local align:4 data:string +@3118 = .data:0x802B71E8; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802B71F4; // type:object size:0xA scope:local align:4 data:string +@3120 = .data:0x802B7200; // type:object size:0x24 scope:local align:4 +@3117 = .data:0x802B7224; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802B7250; // type:object size:0x78 scope:global align:4 +@3127 = .data:0x802B72C8; // type:object size:0xF scope:local align:4 data:string +@3128 = .data:0x802B72D8; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802B72EC; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802B7330; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802B74A0; // type:label scope:local +@882 = .data:0x802B74A0; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802B74B0; // type:object size:0x9 scope:local align:4 data:string +@1013 = .data:0x802B74BC; // type:object size:0xD scope:local align:4 data:string +@1014 = .data:0x802B74CC; // type:object size:0xC scope:local align:4 data:string +@1074 = .data:0x802B74D8; // type:object size:0xE scope:local align:4 data:string +@1176 = .data:0x802B74E8; // type:object size:0xC scope:local align:4 data:string +@1177 = .data:0x802B74F4; // type:object size:0x10 scope:local align:4 data:string +@1178 = .data:0x802B7504; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802B7510; // type:object size:0x1C scope:local align:4 data:string +@2001 = .data:0x802B752C; // type:object size:0x1E scope:local align:4 data:string +@3241 = .data:0x802B754C; // type:object size:0x9 scope:local align:4 data:string +@3242 = .data:0x802B7558; // type:object size:0xC scope:local align:4 +@3246 = .data:0x802B7580; // type:object size:0x9 scope:local align:4 data:string +@3249 = .data:0x802B758C; // type:object size:0x14 scope:local align:4 +@3247 = .data:0x802B75A0; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802B75BC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B75F0; // type:label scope:local +@573 = .data:0x802B75F0; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802B75FC; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802B7608; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802B7614; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802B7624; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802B7630; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802B7644; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802B7650; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802B765C; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802B766C; // type:object size:0xC scope:local align:4 data:string +@622 = .data:0x802B7678; // type:object size:0xC scope:local align:4 data:string +@644 = .data:0x802B7684; // type:object size:0xA scope:local align:4 +@755 = .data:0x802B7690; // type:object size:0x9 scope:local align:4 data:string +@756 = .data:0x802B769C; // type:object size:0xC scope:local align:4 +@758 = .data:0x802B76A8; // type:object size:0x14 scope:local align:4 +@753 = .data:0x802B76BC; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802B76D8; // type:object size:0x48 scope:global align:4 +@764 = .data:0x802B7720; // type:object size:0x14 scope:local align:4 +@762 = .data:0x802B7734; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802B7750; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B77A0; // type:label scope:local +@399 = .data:0x802B77A0; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802B77B0; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802B77BC; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802B77C8; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802B77D4; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802B77E0; // type:object size:0xC scope:local align:4 +@449 = .data:0x802B7800; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802B780C; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802B7818; // type:object size:0xC scope:local align:4 +@455 = .data:0x802B7824; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802B7838; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802B7854; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B78A0; // type:label scope:local +@1321 = .data:0x802B78A0; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802B78B0; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802B78BC; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802B78CC; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802B78DC; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802B78EC; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802B78FC; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802B790C; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802B791C; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802B792C; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802B793C; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802B7954; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802B7964; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802B7974; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B7980; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802B7990; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802B79A0; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802B79B0; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802B79C0; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802B79D0; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802B79E0; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802B79F0; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802B79FC; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802B7A10; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802B7A24; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802B7A34; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802B7A4C; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802B7A58; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802B7A6C; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802B7A7C; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802B7A8C; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802B7A98; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802B7AA8; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802B7AB8; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802B7AC8; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B7ADC; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802B7AEC; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802B7AFC; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802B7B0C; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802B7B1C; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802B7B2C; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802B7B3C; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802B7B4C; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802B7B5C; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802B7B6C; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802B7B7C; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802B7B8C; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802B7B9C; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802B7BAC; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802B7BC4; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802B7BD4; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802B7BE4; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802B7BF4; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802B7C04; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802B7C14; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802B7C24; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802B7C34; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802B7C44; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802B7C54; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802B7C64; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B7C74; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802B7C84; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802B7C94; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802B7CA4; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802B7CB4; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802B7CC4; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802B7CD4; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802B7CE4; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802B7CF4; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802B7D04; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802B7D14; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802B7D24; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802B7D34; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802B7D44; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802B7D54; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802B7D64; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802B7D74; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802B7D84; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802B7D94; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802B7DA4; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802B7DB4; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802B7DC4; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802B7DD4; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802B7DE4; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802B7DF4; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802B7E00; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802B7E10; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802B7E20; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802B7E2C; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802B7E3C; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802B7E4C; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802B7E5C; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802B7E6C; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802B7E80; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802B7E94; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802B7EA4; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802B7EB4; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802B7EC4; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802B7ED4; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B7EE8; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B7EFC; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802B7F0C; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802B7F1C; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802B7F2C; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802B7F40; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802B7F50; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802B7F60; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802B7F74; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802B7F84; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802B7F94; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802B7FA8; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802B7FBC; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802B7FD0; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802B7FE0; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802B7FF0; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802B8000; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B8010; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802B8020; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802B8030; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802B8044; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802B8054; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802B8068; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802B8078; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802B8088; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802B8098; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802B80A8; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802B80B8; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802B80C8; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802B80D8; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802B80EC; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802B80F8; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802B8108; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802B8114; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802B8120; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802B8130; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802B8140; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802B8150; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802B8160; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802B8170; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802B8180; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802B8194; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802B81A8; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802B81BC; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802B81CC; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802B81E0; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802B81F4; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802B8208; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802B8218; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802B8228; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802B8238; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802B8248; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802B825C; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802B826C; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802B827C; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802B828C; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802B829C; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802B82B0; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802B82C0; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802B82D4; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802B82E8; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802B82F8; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802B830C; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802B8320; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802B8334; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802B8344; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802B8354; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802B8364; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802B8374; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802B8384; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802B8398; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802B83AC; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802B83BC; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802B83D0; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802B83E0; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802B83F4; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802B8408; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802B8414; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802B8428; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802B8438; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802B8448; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802B8458; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802B846C; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802B8480; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B8490; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802B84A0; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802B84B0; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802B84BC; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802B84CC; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802B84DC; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802B84EC; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802B84FC; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802B8510; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802B8524; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802B8538; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802B854C; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802B8560; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802B8574; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802B8588; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802B859C; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802B85B4; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802B85CC; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802B85E4; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802B85F4; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802B8604; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802B8614; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802B8624; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802B8634; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802B8644; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802B8654; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802B8664; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802B8678; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802B8690; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802B86A4; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802B86B8; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802B86CC; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802B86DC; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802B86F0; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802B8704; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802B8718; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802B8728; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802B8738; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802B8748; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802B875C; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802B876C; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802B877C; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802B878C; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802B879C; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802B87AC; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802B87C0; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802B87D0; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802B87E4; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802B87F4; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802B8804; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802B8814; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802B8824; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802B8834; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802B8848; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802B8858; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802B8868; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802B8878; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802B8888; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802B8898; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802B88A8; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802B88B8; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802B88C8; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802B88D8; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802B88EC; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802B88FC; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802B890C; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802B891C; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802B892C; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802B893C; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802B8950; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802B8960; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802B8970; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802B8980; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802B8990; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802B89A4; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802B89BC; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802B89D0; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802B89E4; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802B89F8; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802B8A08; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802B8A18; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802B8A28; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802B8A38; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802B8A48; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802B8A58; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802B8A70; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802B8A80; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802B8A90; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802B8A9C; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802B8AA8; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802B8ABC; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802B8ACC; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802B8ADC; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802B8AEC; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802B8B00; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802B8B14; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802B8B28; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802B8B3C; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802B8B50; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802B8B60; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802B8B74; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802B8B84; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802B8B98; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802B8BA8; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802B8BBC; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802B8BD0; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802B8BE4; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802B8BF8; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802B8C10; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802B8C24; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802B8C38; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802B8C48; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802B8C58; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802B8C70; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802B8C84; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802B8C90; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802B8C9C; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802B8CAC; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802B8CC0; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802B8CD4; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802B8CE8; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802B8CF8; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802B8D10; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802B8D20; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802B8D30; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802B8D40; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802B8D4C; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802B8D58; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802B8D64; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802B8D70; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802B8D7C; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802B8D88; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802B8D98; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802B8DB0; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B8DBC; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802B8DC8; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802B8DE0; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802B8DF4; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B8E04; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802B8E14; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802B8E24; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802B8E38; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802B8E4C; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802B8E64; // type:object size:0x19DC scope:local align:4 +@1782 = .data:0x802BA840; // type:object size:0xD scope:local align:4 data:string +@1866 = .data:0x802BA850; // type:object size:0x11 scope:local align:4 data:string +@1867 = .data:0x802BA864; // type:object size:0x1E scope:local align:4 data:string +@2002 = .data:0x802BA884; // type:object size:0x12 scope:local align:4 +@2085 = .data:0x802BA898; // type:object size:0x31 scope:local align:4 data:string +@2087 = .data:0x802BA8CC; // type:object size:0x15 scope:local align:4 data:string +@2088 = .data:0x802BA8E4; // type:object size:0x22 scope:local align:4 data:string +@2233 = .data:0x802BA908; // type:object size:0xD scope:local align:4 data:string +@570 = .data:0x802BA918; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802BA928; // type:object size:0xD scope:local align:4 data:string +...data.0 = .data:0x802BA938; // type:label scope:local +@1358 = .data:0x802BA938; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802BA944; // type:object size:0xA scope:local align:4 data:string +@1636 = .data:0x802BA950; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802BA95C; // type:object size:0x9 scope:local align:4 data:string +@2108 = .data:0x802BA968; // type:object size:0xC scope:local align:4 +@2110 = .data:0x802BA974; // type:object size:0x14 scope:local align:4 +@2111 = .data:0x802BA988; // type:object size:0xC scope:local align:4 data:string +@2105 = .data:0x802BA994; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802BA9B8; // type:object size:0x54 scope:global align:4 +@2122 = .data:0x802BAA0C; // type:object size:0xC scope:local align:4 data:string +@2124 = .data:0x802BAA18; // type:object size:0x9 scope:local align:4 data:string +@2123 = .data:0x802BAA24; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802BAA78; // type:label scope:local +@1426 = .data:0x802BAA78; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802BAA84; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802BAA90; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802BAAA0; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802BAAAC; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802BAAC0; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802BAB34; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802BAB54; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BAB80; // type:label scope:local +@1167 = .data:0x802BAB80; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802BAB90; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802BAB9C; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802BABA8; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802BABB8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802BABC4; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802BABD8; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802BAC3C; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802BAC54; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802BAC68; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802BAC74; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802BAC80; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802BAC94; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802BACF8; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802BAD0C; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802BAD18; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802BAD24; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802BAD5C; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BAD70; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802BAD8C; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802BAE00; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802BAE18; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802BAE24; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802BAE3C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BAE68; // type:label scope:local +@1794 = .data:0x802BAE68; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802BAE78; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802BAE84; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802BAEA0; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802BAED8; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802BAEE8; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802BAEFC; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802BAF0C; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802BAF18; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802BAF34; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802BAFA8; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802BAFB4; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802BAFC0; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802BAFD4; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802BAFF8; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802BB078; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB0A8; // type:label scope:local +@1651 = .data:0x802BB0A8; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802BB0B4; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802BB0C0; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802BB0CC; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802BB0E0; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802BB0F0; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802BB0FC; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802BB118; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802BB18C; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802BB19C; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802BB1B8; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802BB22C; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802BB23C; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802BB250; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802BB2B4; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802BB2EC; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802BB2F8; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802BB314; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802BB394; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802BB3A4; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802BB3B8; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802BB41C; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802BB42C; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802BB440; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802BB4A4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB4D0; // type:label scope:local +@1418 = .data:0x802BB4D0; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802BB4E0; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802BB4EC; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802BB524; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802BB530; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802BB540; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802BB54C; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802BB560; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802BB5D4; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802BB5F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB620; // type:label scope:local +@1372 = .data:0x802BB620; // type:object size:0xA scope:local align:4 data:string +@1404 = .data:0x802BB62C; // type:object size:0x16 scope:local align:4 data:string +@1525 = .data:0x802BB644; // type:object size:0xF scope:local align:4 data:string +@1527 = .data:0x802BB654; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802BB660; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802BB674; // type:object size:0x64 scope:global align:4 +@1574 = .data:0x802BB6D8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB708; // type:label scope:local +@1793 = .data:0x802BB708; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BB718; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802BB724; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802BB730; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802BB768; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802BB774; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802BB788; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802BB798; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802BB7A4; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802BB7C0; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802BB840; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB870; // type:label scope:local +@1255 = .data:0x802BB870; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802BB880; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802BB88C; // type:object size:0xA scope:local align:4 data:string +@1499 = .data:0x802BB898; // type:object size:0xC scope:local align:4 data:string +@1509 = .data:0x802BB8D0; // type:object size:0xD scope:local align:4 data:string +@1511 = .data:0x802BB8E0; // type:object size:0x14 scope:local align:4 data:string +@1512 = .data:0x802BB8F4; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802BB904; // type:object size:0xC scope:local align:4 +@1510 = .data:0x802BB910; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802BB92C; // type:object size:0x74 scope:global align:4 +@1561 = .data:0x802BB9AC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB9D8; // type:label scope:local +@1671 = .data:0x802BB9D8; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802BB9E8; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802BB9F4; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802BBA04; // type:object size:0xF scope:local align:4 data:string +@3061 = .data:0x802BBA14; // type:object size:0xF scope:local align:4 data:string +@3063 = .data:0x802BBA24; // type:object size:0x20 scope:local align:4 +@3397 = .data:0x802BBA44; // type:object size:0x9 scope:local align:4 data:string +@4239 = .data:0x802BBA50; // type:object size:0xB scope:local align:4 data:string +@4240 = .data:0x802BBA5C; // type:object size:0xD scope:local align:4 data:string +@4241 = .data:0x802BBA6C; // type:object size:0xE scope:local align:4 data:string +@4432 = .data:0x802BBA7C; // type:object size:0xD scope:local align:4 data:string +@4434 = .data:0x802BBA8C; // type:object size:0x14 scope:local align:4 data:string +@4435 = .data:0x802BBAA0; // type:object size:0xF scope:local align:4 data:string +@4437 = .data:0x802BBAB0; // type:object size:0xC scope:local align:4 +@4433 = .data:0x802BBABC; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802BBAD8; // type:object size:0x74 scope:global align:4 +@4486 = .data:0x802BBB58; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBB88; // type:label scope:local +@1793 = .data:0x802BBB88; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BBB98; // type:object size:0x9 scope:local align:4 data:string +@2363 = .data:0x802BBBA4; // type:object size:0x11 scope:local align:4 data:string +@2365 = .data:0x802BBBB8; // type:object size:0xC scope:local align:4 data:string +@2375 = .data:0x802BBBF0; // type:object size:0xA scope:local align:4 data:string +@2377 = .data:0x802BBBFC; // type:object size:0x14 scope:local align:4 data:string +@2378 = .data:0x802BBC10; // type:object size:0xF scope:local align:4 data:string +@2380 = .data:0x802BBC20; // type:object size:0xC scope:local align:4 +@2376 = .data:0x802BBC2C; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802BBC48; // type:object size:0x74 scope:global align:4 +@2430 = .data:0x802BBCC8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBCF8; // type:label scope:local +@1050 = .data:0x802BBCF8; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802BBD04; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802BBD14; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BBD20; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802BBD30; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802BBD3C; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802BBD50; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802BBDB4; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802BBDCC; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802BBDE0; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802BBDEC; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802BBDF8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBE28; // type:label scope:local +@1507 = .data:0x802BBE28; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802BBE34; // type:object size:0x12 scope:local align:4 data:string +@2353 = .data:0x802BBE48; // type:object size:0xF scope:local align:4 data:string +@2354 = .data:0x802BBE58; // type:object size:0x11 scope:local align:4 data:string +@2431 = .data:0x802BBE6C; // type:object size:0x9 scope:local align:4 data:string +@2433 = .data:0x802BBE78; // type:object size:0x12 scope:local align:4 data:string +@2434 = .data:0x802BBE8C; // type:object size:0xF scope:local align:4 data:string +@2436 = .data:0x802BBE9C; // type:object size:0xC scope:local align:4 +@2432 = .data:0x802BBEA8; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802BBEC4; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802BBF38; // type:object size:0xC scope:weak align:4 +@2483 = .data:0x802BBF44; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBF70; // type:label scope:local +@1475 = .data:0x802BBF70; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802BBF7C; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802BBF88; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BBF9C; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BBFAC; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BBFB8; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802BBFD4; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BC054; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC080; // type:label scope:local +@1372 = .data:0x802BC080; // type:object size:0xC scope:local align:4 data:string +@1432 = .data:0x802BC08C; // type:object size:0x16 scope:local align:4 data:string +@1619 = .data:0x802BC0A4; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802BC0DC; // type:object size:0x9 scope:local align:4 data:string +@1631 = .data:0x802BC0E8; // type:object size:0xF scope:local align:4 data:string +@1633 = .data:0x802BC0F8; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802BC104; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802BC118; // type:object size:0x64 scope:global align:4 +@1680 = .data:0x802BC17C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC1A8; // type:label scope:local +@1051 = .data:0x802BC1A8; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802BC1B8; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802BC1C4; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802BC1D8; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802BC1E4; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802BC1F4; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802BC200; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802BC214; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802BC278; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802BC290; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802BC2A4; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802BC2B0; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802BC2BC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC2E8; // type:label scope:local +@1370 = .data:0x802BC2E8; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802BC2F4; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802BC304; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802BC310; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802BC324; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802BC388; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC3B8; // type:label scope:local +@1169 = .data:0x802BC3B8; // type:object size:0xB scope:local align:4 data:string +@1188 = .data:0x802BC3C4; // type:object size:0x1C scope:local align:4 data:string +@1342 = .data:0x802BC3E0; // type:object size:0x14 scope:local align:4 data:string +@1343 = .data:0x802BC3F4; // type:object size:0xF scope:local align:4 data:string +@1345 = .data:0x802BC404; // type:object size:0xC scope:local align:4 +@1341 = .data:0x802BC410; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802BC42C; // type:object size:0x74 scope:global align:4 +@1359 = .data:0x802BC4A0; // type:object size:0xC scope:local align:4 data:string +@1405 = .data:0x802BC4E4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC510; // type:label scope:local +@1357 = .data:0x802BC510; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802BC520; // type:object size:0xC scope:local align:4 data:string +@1531 = .data:0x802BC52C; // type:object size:0x12 scope:local align:4 data:string +@1775 = .data:0x802BC540; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x802BC550; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BC564; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BC574; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BC580; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802BC59C; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BC61C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC648; // type:label scope:local +@1610 = .data:0x802BC648; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802BC654; // type:object size:0x10 scope:local align:4 +@1801 = .data:0x802BC664; // type:object size:0x12 scope:local align:4 data:string +@1900 = .data:0x802BC678; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BC68C; // type:object size:0xF scope:local align:4 data:string +@1903 = .data:0x802BC69C; // type:object size:0xC scope:local align:4 +@1899 = .data:0x802BC6A8; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802BC6C4; // type:object size:0x74 scope:global align:4 +@1952 = .data:0x802BC744; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC770; // type:label scope:local +@1050 = .data:0x802BC770; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802BC77C; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802BC78C; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802BC798; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802BC7AC; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802BC810; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802BC828; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802BC83C; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802BC848; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802BC854; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC880; // type:label scope:local +@1476 = .data:0x802BC880; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802BC88C; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802BC898; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802BC8A8; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802BC8B4; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802BC8C8; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802BC92C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC958; // type:label scope:local +@1147 = .data:0x802BC958; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802BC964; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BC970; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802BC97C; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802BC9B4; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802BC9C0; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BC9D4; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802BC9E4; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802BC9F0; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802BCA0C; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802BCA8C; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802BCA98; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802BCAA4; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802BCAB8; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802BCAD4; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802BCB38; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCB68; // type:label scope:local +@1050 = .data:0x802BCB68; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802BCB7C; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802BCB8C; // type:object size:0x11 scope:local align:4 data:string +@1139 = .data:0x802BCBA0; // type:object size:0xB scope:local align:4 data:string +@1141 = .data:0x802BCBAC; // type:object size:0xF scope:local align:4 data:string +@1143 = .data:0x802BCBBC; // type:object size:0xC scope:local align:4 +@1144 = .data:0x802BCBC8; // type:object size:0xA scope:local align:4 data:string +@1145 = .data:0x802BCBD4; // type:object size:0x14 scope:local align:4 +@1140 = .data:0x802BCBE8; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802BCC04; // type:object size:0x64 scope:global align:4 +@1164 = .data:0x802BCC68; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802BCC80; // type:object size:0x14 scope:local align:4 data:string +@1165 = .data:0x802BCC94; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802BCCA0; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802BCCAC; // type:object size:0xC scope:weak align:4 +@1168 = .data:0x802BCCB8; // type:object size:0x10 scope:local align:4 data:string +@1169 = .data:0x802BCCC8; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802BCCE4; // type:object size:0x64 scope:global align:4 +@1212 = .data:0x802BCD48; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCD78; // type:label scope:local +@1375 = .data:0x802BCD78; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802BCD88; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802BCD94; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802BCDCC; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802BCDE0; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802BCDF0; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802BCDFC; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802BCE10; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802BCE84; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802BCEA4; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802BCEB0; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802BCEBC; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802BCED0; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802BCEEC; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802BCF50; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCF80; // type:label scope:local +@1795 = .data:0x802BCF80; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802BCF8C; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802BCFC0; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802BCFF8; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802BD00C; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802BD01C; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802BD028; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802BD044; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802BD0C4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD0F0; // type:label scope:local +@1701 = .data:0x802BD0F0; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802BD0FC; // type:object size:0x9 scope:local align:4 data:string +@2645 = .data:0x802BD108; // type:object size:0xB scope:local align:4 data:string +@2647 = .data:0x802BD114; // type:object size:0xF scope:local align:4 data:string +@2649 = .data:0x802BD124; // type:object size:0xC scope:local align:4 +@2646 = .data:0x802BD130; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802BD144; // type:object size:0x64 scope:global align:4 +@2661 = .data:0x802BD1A8; // type:object size:0xB scope:local align:4 data:string +@2663 = .data:0x802BD1B4; // type:object size:0x14 scope:local align:4 data:string +@2662 = .data:0x802BD1C8; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802BD1E4; // type:object size:0x74 scope:global align:4 +@2669 = .data:0x802BD258; // type:object size:0xC scope:local align:4 data:string +@2715 = .data:0x802BD29C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD2C8; // type:label scope:local +@1052 = .data:0x802BD2C8; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802BD2DC; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802BD2EC; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802BD2F8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802BD304; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802BD314; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802BD324; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802BD330; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802BD344; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802BD3A8; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802BD3C4; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802BD3D8; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802BD3E4; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802BD3F0; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802BD410; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802BD42C; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802BD438; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802BD444; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD470; // type:label scope:local +@1793 = .data:0x802BD470; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BD480; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802BD48C; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802BD498; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802BD4AC; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802BD4BC; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802BD4C8; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802BD4E4; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802BD564; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD590; // type:label scope:local +@1370 = .data:0x802BD590; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802BD59C; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802BD5AC; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802BD5B8; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802BD5CC; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802BD630; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD660; // type:label scope:local +@1477 = .data:0x802BD660; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802BD66C; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802BD680; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802BD694; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802BD6A4; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802BD6B0; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802BD6CC; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802BD74C; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802BD758; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802BD764; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802BD778; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802BD794; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802BD7F8; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BD818; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD848; // type:label scope:local +@1050 = .data:0x802BD848; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802BD854; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802BD860; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802BD86C; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802BD87C; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802BD888; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802BD89C; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802BD900; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802BD918; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802BD92C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802BD938; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802BD944; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802BD964; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802BD97C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802BD988; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802BD994; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD9C0; // type:label scope:local +@1426 = .data:0x802BD9C0; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802BD9CC; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802BD9DC; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802BD9E8; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802BD9FC; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802BDA70; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802BDA90; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDAC0; // type:label scope:local +@1216 = .data:0x802BDAC0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BDAD0; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802BDADC; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802BDAE8; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802BDB0C; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802BDB38; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802BDB64; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802BDB70; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802BDB7C; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802BDB90; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802BDBA8; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802BDBB4; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802BDBC4; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802BDBD0; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802BDBE4; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802BDC48; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802BDC68; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802BDC84; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802BDC90; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802BDC9C; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802BDCA8; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802BDCBC; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802BDD20; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802BDD2C; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802BDD40; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802BDDA4; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802BDE08; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802BDE40; // type:label scope:local +@1468 = .data:0x802BDE40; // type:object size:0xC scope:local align:4 data:string +@1533 = .data:0x802BDE4C; // type:object size:0x10 scope:local align:4 data:string +@1534 = .data:0x802BDE5C; // type:object size:0x12 scope:local align:4 data:string +@1597 = .data:0x802BDE70; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802BDE7C; // type:object size:0xF scope:local align:4 data:string +@1649 = .data:0x802BDE8C; // type:object size:0x10 scope:local align:4 data:string +@1688 = .data:0x802BDE9C; // type:object size:0xB scope:local align:4 data:string +@1689 = .data:0x802BDEA8; // type:object size:0x9 scope:local align:4 data:string +@1716 = .data:0x802BDEB4; // type:object size:0xF scope:local align:4 data:string +@1872 = .data:0x802BDEC4; // type:object size:0xC scope:local align:4 data:string +@1875 = .data:0x802BDED0; // type:object size:0xC scope:local align:4 +@1877 = .data:0x802BDEDC; // type:object size:0x14 scope:local align:4 +@1873 = .data:0x802BDEF0; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802BDF0C; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802BDF2C; // type:object size:0xF scope:local align:4 data:string +@1883 = .data:0x802BDF3C; // type:object size:0xB scope:local align:4 data:string +@1884 = .data:0x802BDF48; // type:object size:0xC scope:local align:4 +@1881 = .data:0x802BDF54; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802BDF68; // type:object size:0x20 scope:global align:4 +@1885 = .data:0x802BDF88; // type:object size:0xC scope:local align:4 data:string +@1886 = .data:0x802BDF94; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802BDFA8; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802BDFC8; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802BDFE8; // type:object size:0x1C scope:weak align:4 +@1888 = .data:0x802BE004; // type:object size:0x9 scope:local align:4 data:string +@1889 = .data:0x802BE010; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802BE02C; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802BE04C; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802BE088; // type:label scope:local +@1919 = .data:0x802BE088; // type:object size:0x9 scope:local align:4 data:string +@2194 = .data:0x802BE094; // type:object size:0x12 scope:local align:4 data:string +@2539 = .data:0x802BE0A8; // type:object size:0xB scope:local align:4 data:string +@2656 = .data:0x802BE0B4; // type:object size:0x17 scope:local align:4 data:string +@2657 = .data:0x802BE0CC; // type:object size:0x3C scope:local align:4 +@2670 = .data:0x802BE108; // type:object size:0x58 scope:local align:4 +@3265 = .data:0x802BE160; // type:object size:0xE scope:local align:4 data:string +@3268 = .data:0x802BE170; // type:object size:0xB scope:local align:4 data:string +@3416 = .data:0x802BE17C; // type:object size:0x2C scope:local align:4 +@3886 = .data:0x802BE1A8; // type:object size:0x11 scope:local align:4 data:string +@4822 = .data:0x802BE1BC; // type:object size:0xA scope:local align:4 data:string +@5040 = .data:0x802BE1C8; // type:object size:0x11 scope:local align:4 data:string +@5081 = .data:0x802BE1DC; // type:object size:0x26 scope:local align:4 data:string +@5114 = .data:0x802BE204; // type:object size:0x4C scope:local align:4 +@5121 = .data:0x802BE250; // type:object size:0x9 scope:local align:4 data:string +@5122 = .data:0x802BE25C; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802BE268; // type:object size:0x38 scope:global align:4 +@5127 = .data:0x802BE2A0; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802BE2AC; // type:object size:0x10 scope:global align:4 +@5130 = .data:0x802BE2BC; // type:object size:0xA scope:local align:4 data:string +@5131 = .data:0x802BE2C8; // type:object size:0xF scope:local align:4 data:string +@5132 = .data:0x802BE2D8; // type:object size:0xC scope:local align:4 data:string +@5133 = .data:0x802BE2E4; // type:object size:0xA scope:local align:4 data:string +@5134 = .data:0x802BE2F0; // type:object size:0xB scope:local align:4 data:string +@5135 = .data:0x802BE2FC; // type:object size:0xA scope:local align:4 data:string +@5136 = .data:0x802BE308; // type:object size:0xB scope:local align:4 data:string +@5137 = .data:0x802BE314; // type:object size:0xB scope:local align:4 data:string +@5138 = .data:0x802BE320; // type:object size:0xB scope:local align:4 data:string +@5139 = .data:0x802BE32C; // type:object size:0xF scope:local align:4 data:string +@5140 = .data:0x802BE33C; // type:object size:0xA scope:local align:4 data:string +@5141 = .data:0x802BE348; // type:object size:0xB scope:local align:4 data:string +@5142 = .data:0x802BE354; // type:object size:0xA scope:local align:4 data:string +@5143 = .data:0x802BE360; // type:object size:0xF scope:local align:4 data:string +@5144 = .data:0x802BE370; // type:object size:0xA scope:local align:4 data:string +@5145 = .data:0x802BE37C; // type:object size:0xC scope:local align:4 data:string +@5146 = .data:0x802BE388; // type:object size:0xC scope:local align:4 data:string +@5147 = .data:0x802BE394; // type:object size:0xF scope:local align:4 data:string +@5148 = .data:0x802BE3A4; // type:object size:0xD scope:local align:4 data:string +@5149 = .data:0x802BE3B4; // type:object size:0xC scope:local align:4 data:string +@5150 = .data:0x802BE3C0; // type:object size:0xA scope:local align:4 data:string +@5151 = .data:0x802BE3CC; // type:object size:0xC scope:local align:4 data:string +@5152 = .data:0x802BE3D8; // type:object size:0xC scope:local align:4 data:string +@5154 = .data:0x802BE3E4; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802BE3F4; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802BE458; // type:object size:0xC scope:local align:4 +@5398 = .data:0x802BE464; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802BE478; // type:object size:0x18 scope:weak align:4 +@5401 = .data:0x802BE490; // type:object size:0x23 scope:local align:4 data:string +@5402 = .data:0x802BE4B4; // type:object size:0x3D scope:local align:4 data:string +@5403 = .data:0x802BE4F4; // type:object size:0x29 scope:local align:4 data:string +@5400 = .data:0x802BE520; // type:object size:0x1C scope:local align:4 +@5410 = .data:0x802BE59C; // type:object size:0x14 scope:local align:4 data:string +@5413 = .data:0x802BE5BC; // type:object size:0xC scope:local align:4 data:string +@5414 = .data:0x802BE5C8; // type:object size:0xD scope:local align:4 data:string +@5415 = .data:0x802BE5D8; // type:object size:0x9 scope:local align:4 data:string +@5416 = .data:0x802BE5E4; // type:object size:0x14 scope:local align:4 +@5412 = .data:0x802BE5F8; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802BE61C; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BE758; // type:label scope:local +@1306 = .data:0x802BE758; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802BE764; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802BE77C; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802BE794; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802BE7AC; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802BE7B8; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802BE7C4; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802BE7D0; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802BE7DC; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802BE7F0; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802BE7FC; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802BE808; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802BE82C; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802BE83C; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802BE868; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802BE89C; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802BE924; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802BE930; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802BE93C; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802BE95C; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802BE968; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802BE988; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BE994; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802BE9A4; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802BE9B0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802BE9C8; // type:label scope:local +@1927 = .data:0x802BE9C8; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802BE9D8; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802BE9E4; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802BE9F0; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802BE9FC; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802BEA08; // type:object size:0xD scope:local align:4 data:string +@4586 = .data:0x802BEA18; // type:object size:0x16 scope:local align:4 data:string +@4621 = .data:0x802BEA30; // type:object size:0xF scope:local align:4 data:string +@4645 = .data:0x802BEA40; // type:object size:0xE scope:local align:4 data:string +@4829 = .data:0x802BEA50; // type:object size:0x9 scope:local align:4 data:string +@4925 = .data:0x802BEA5C; // type:object size:0xC scope:local align:4 data:string +@4966 = .data:0x802BEA68; // type:object size:0xA scope:local align:4 data:string +@5045 = .data:0x802BEA74; // type:object size:0x9 scope:local align:4 data:string +@5327 = .data:0x802BEA80; // type:object size:0x28 scope:local align:4 +@5372 = .data:0x802BEAA8; // type:object size:0x11 scope:local align:4 data:string +@5374 = .data:0x802BEABC; // type:object size:0xF scope:local align:4 data:string +@5375 = .data:0x802BEACC; // type:object size:0xD scope:local align:4 data:string +@5376 = .data:0x802BEADC; // type:object size:0xC scope:local align:4 +@5377 = .data:0x802BEAE8; // type:object size:0xA scope:local align:4 data:string +@5378 = .data:0x802BEAF4; // type:object size:0x14 scope:local align:4 +@5373 = .data:0x802BEB08; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802BEB24; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802BEB90; // type:object size:0xE scope:local align:4 data:string +@5385 = .data:0x802BEBA0; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802BEBBC; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802BEC28; // type:object size:0xF scope:local align:4 data:string +@5388 = .data:0x802BEC38; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802BEC54; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802BECC0; // type:object size:0x11 scope:local align:4 data:string +@5391 = .data:0x802BECD4; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802BECF0; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802BED5C; // type:object size:0x12 scope:local align:4 data:string +@5394 = .data:0x802BED70; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802BED8C; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802BEDF8; // type:object size:0x10 scope:local align:4 data:string +@5397 = .data:0x802BEE08; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802BEE24; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802BEE90; // type:object size:0x14 scope:local align:4 data:string +@5400 = .data:0x802BEEA4; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802BEEC0; // type:object size:0x6C scope:global align:4 +@5402 = .data:0x802BEF2C; // type:object size:0xE scope:local align:4 data:string +@5403 = .data:0x802BEF3C; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802BEF58; // type:object size:0x6C scope:global align:4 +@5404 = .data:0x802BEFC4; // type:object size:0x12 scope:local align:4 data:string +@5405 = .data:0x802BEFD8; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802BEFF4; // type:object size:0x6C scope:global align:4 +@5406 = .data:0x802BF060; // type:object size:0xE scope:local align:4 data:string +@5407 = .data:0x802BF070; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802BF08C; // type:object size:0x6C scope:global align:4 +@5408 = .data:0x802BF0F8; // type:object size:0xE scope:local align:4 data:string +@5409 = .data:0x802BF108; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802BF124; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802BF190; // type:object size:0x10 scope:local align:4 data:string +@5411 = .data:0x802BF1A0; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802BF1BC; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802BF228; // type:object size:0x16 scope:local align:4 data:string +@5414 = .data:0x802BF240; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802BF25C; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802BF2C8; // type:object size:0xE scope:local align:4 data:string +@5417 = .data:0x802BF2D8; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802BF2F4; // type:object size:0x6C scope:global align:4 +@5419 = .data:0x802BF360; // type:object size:0x10 scope:local align:4 data:string +@5420 = .data:0x802BF370; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802BF38C; // type:object size:0x6C scope:global align:4 +@5421 = .data:0x802BF3F8; // type:object size:0xE scope:local align:4 data:string +@5422 = .data:0x802BF408; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802BF424; // type:object size:0x6C scope:global align:4 +@5423 = .data:0x802BF490; // type:object size:0x15 scope:local align:4 data:string +@5424 = .data:0x802BF4A8; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802BF4C4; // type:object size:0x6C scope:global align:4 +@5425 = .data:0x802BF530; // type:object size:0x10 scope:local align:4 data:string +@5426 = .data:0x802BF540; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802BF55C; // type:object size:0x6C scope:global align:4 +@5427 = .data:0x802BF5C8; // type:object size:0x10 scope:local align:4 data:string +@5428 = .data:0x802BF5D8; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802BF5F4; // type:object size:0x6C scope:global align:4 +@5429 = .data:0x802BF660; // type:object size:0xF scope:local align:4 data:string +@5430 = .data:0x802BF670; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802BF68C; // type:object size:0x6C scope:global align:4 +@5431 = .data:0x802BF6F8; // type:object size:0xE scope:local align:4 data:string +@5432 = .data:0x802BF708; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802BF724; // type:object size:0x6C scope:global align:4 +@5433 = .data:0x802BF790; // type:object size:0x12 scope:local align:4 data:string +@5434 = .data:0x802BF7A4; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802BF7C0; // type:object size:0x6C scope:global align:4 +@5435 = .data:0x802BF82C; // type:object size:0xF scope:local align:4 data:string +@5436 = .data:0x802BF83C; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802BF858; // type:object size:0x6C scope:global align:4 +@5437 = .data:0x802BF8C4; // type:object size:0xF scope:local align:4 data:string +@5438 = .data:0x802BF8D4; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802BF8F0; // type:object size:0x6C scope:global align:4 +@5439 = .data:0x802BF95C; // type:object size:0x10 scope:local align:4 data:string +@5440 = .data:0x802BF96C; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802BF988; // type:object size:0x6C scope:global align:4 +@5441 = .data:0x802BF9F4; // type:object size:0x13 scope:local align:4 data:string +@5442 = .data:0x802BFA08; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802BFA24; // type:object size:0x6C scope:global align:4 +@5443 = .data:0x802BFA90; // type:object size:0xF scope:local align:4 data:string +@5444 = .data:0x802BFAA0; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802BFABC; // type:object size:0x6C scope:global align:4 +@5445 = .data:0x802BFB28; // type:object size:0x10 scope:local align:4 data:string +@5446 = .data:0x802BFB38; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802BFB54; // type:object size:0x6C scope:global align:4 +@5447 = .data:0x802BFBC0; // type:object size:0x10 scope:local align:4 data:string +@5448 = .data:0x802BFBD0; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802BFBEC; // type:object size:0x6C scope:global align:4 +@5449 = .data:0x802BFC58; // type:object size:0xC scope:local align:4 data:string +@5459 = .data:0x802BFC90; // type:object size:0xF scope:local align:4 data:string +@5460 = .data:0x802BFCA0; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802BFCBC; // type:object size:0x6C scope:global align:4 +@5461 = .data:0x802BFD28; // type:object size:0x10 scope:local align:4 data:string +@5462 = .data:0x802BFD38; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802BFD54; // type:object size:0x6C scope:global align:4 +@5463 = .data:0x802BFDC0; // type:object size:0x10 scope:local align:4 data:string +@5464 = .data:0x802BFDD0; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802BFDEC; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802BFE58; // type:object size:0x10 scope:local align:4 data:string +@5468 = .data:0x802BFE68; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802BFE84; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802BFEF0; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802BFF78; // type:object size:0x6C scope:global align:4 +@5470 = .data:0x802BFFE4; // type:object size:0x11 scope:local align:4 data:string +@5472 = .data:0x802BFFF8; // type:object size:0x13 scope:local align:4 data:string +@5471 = .data:0x802C000C; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802C0018; // type:object size:0x18 scope:global align:4 +@5518 = .data:0x802C0030; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0060; // type:label scope:local +@1525 = .data:0x802C0060; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802C0070; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802C007C; // type:object size:0xD scope:local align:4 data:string +@1545 = .data:0x802C008C; // type:object size:0x12 scope:local align:4 data:string +@1568 = .data:0x802C00A0; // type:object size:0x13 scope:local align:4 data:string +@1569 = .data:0x802C00B4; // type:object size:0x12 scope:local align:4 data:string +@1570 = .data:0x802C00C8; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802C00D4; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802C00E8; // type:object size:0x13 scope:local align:4 data:string +@1573 = .data:0x802C00FC; // type:object size:0x13 scope:local align:4 data:string +@2297 = .data:0x802C0110; // type:object size:0xE scope:local align:4 data:string +@2300 = .data:0x802C0120; // type:object size:0x9 scope:local align:4 data:string +@2302 = .data:0x802C012C; // type:object size:0x14 scope:local align:4 data:string +@2303 = .data:0x802C0140; // type:object size:0xC scope:local align:4 data:string +@2304 = .data:0x802C014C; // type:object size:0xD scope:local align:4 data:string +@2305 = .data:0x802C015C; // type:object size:0x9 scope:local align:4 data:string +@2306 = .data:0x802C0168; // type:object size:0x14 scope:local align:4 +@2308 = .data:0x802C017C; // type:object size:0x24 scope:local align:4 +@2301 = .data:0x802C01A0; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802C01CC; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802C0308; // type:label scope:local +@634 = .data:0x802C0308; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802C0318; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802C0324; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802C0330; // type:object size:0xC scope:global align:4 +@637 = .data:0x802C033C; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802C0348; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802C0354; // type:object size:0xC scope:global align:4 +@639 = .data:0x802C0360; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802C0370; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802C037C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802C0388; // type:label scope:local +@1616 = .data:0x802C0388; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802C0398; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802C03A4; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802C03B0; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802C03BC; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802C03C8; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802C03D8; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802C03EC; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802C0408; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802C0414; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802C0424; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802C0438; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802C0444; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802C0454; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802C0460; // type:object size:0x17 scope:local align:4 data:string +@2137 = .data:0x802C0478; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802C0490; // type:object size:0x8 scope:global align:4 +@2551 = .data:0x802C0498; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802C04A8; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802C04B8; // type:object size:0xB scope:local align:4 data:string +@3006 = .data:0x802C04C4; // type:object size:0xC scope:local align:4 +@3008 = .data:0x802C04D0; // type:object size:0x14 scope:local align:4 +@3003 = .data:0x802C04E4; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802C0500; // type:object size:0x38 scope:global align:4 +@3014 = .data:0x802C0538; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802C0548; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802C0564; // type:object size:0x38 scope:global align:4 +@3017 = .data:0x802C059C; // type:object size:0x10 scope:local align:4 data:string +@3020 = .data:0x802C05AC; // type:object size:0x14 scope:local align:4 +@3018 = .data:0x802C05C0; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802C05DC; // type:object size:0x38 scope:global align:4 +@3022 = .data:0x802C0614; // type:object size:0xE scope:local align:4 data:string +@3023 = .data:0x802C0624; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802C0640; // type:object size:0x38 scope:global align:4 +@3024 = .data:0x802C0678; // type:object size:0xB scope:local align:4 data:string +@3025 = .data:0x802C0684; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802C06A0; // type:object size:0x38 scope:global align:4 +@3027 = .data:0x802C06D8; // type:object size:0xE scope:local align:4 data:string +@3029 = .data:0x802C06E8; // type:object size:0xA scope:local align:4 data:string +@3030 = .data:0x802C06F4; // type:object size:0x14 scope:local align:4 +@3028 = .data:0x802C0708; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802C0724; // type:object size:0x38 scope:global align:4 +@3034 = .data:0x802C075C; // type:object size:0x9 scope:local align:4 data:string +@3035 = .data:0x802C0768; // type:object size:0xC scope:local align:4 +@3037 = .data:0x802C0774; // type:object size:0x14 scope:local align:4 +@3032 = .data:0x802C0788; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802C07A4; // type:object size:0x30 scope:global align:4 +@3045 = .data:0x802C07D4; // type:object size:0xA scope:local align:4 data:string +@3046 = .data:0x802C07E0; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802C07FC; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802C0848; // type:object size:0x38 scope:global align:4 +@3047 = .data:0x802C0880; // type:object size:0xC scope:local align:4 data:string +@3049 = .data:0x802C088C; // type:object size:0x9 scope:local align:4 data:string +@3048 = .data:0x802C0898; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802C08B8; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802C08F0; // type:object size:0x38 scope:global align:4 +@3050 = .data:0x802C0928; // type:object size:0xA scope:local align:4 data:string +@3051 = .data:0x802C0934; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802C0954; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802C0978; // type:label scope:local +@1070 = .data:0x802C0978; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802C098C; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802C099C; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802C09A8; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802C09C0; // type:object size:0xB scope:local align:4 data:string +@1352 = .data:0x802C09CC; // type:object size:0x1D scope:local align:4 data:string +@1353 = .data:0x802C09EC; // type:object size:0x1A scope:local align:4 data:string +@1366 = .data:0x802C0A08; // type:object size:0x24 scope:local align:4 data:string +@1397 = .data:0x802C0A2C; // type:object size:0x18 scope:local align:4 data:string +@1399 = .data:0x802C0A44; // type:object size:0x14 scope:local align:4 data:string +@1415 = .data:0x802C0A58; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802C0A74; // type:object size:0x24 scope:local align:4 data:string +@1490 = .data:0x802C0A98; // type:object size:0x19 scope:local align:4 data:string +@1523 = .data:0x802C0AB4; // type:object size:0x13 scope:local align:4 data:string +@1554 = .data:0x802C0AC8; // type:object size:0x11 scope:local align:4 data:string +@1555 = .data:0x802C0ADC; // type:object size:0xA scope:local align:4 data:string +@1558 = .data:0x802C0AE8; // type:object size:0x13 scope:local align:4 data:string +@1559 = .data:0x802C0AFC; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802C0B08; // type:object size:0x14 scope:local align:4 +@1572 = .data:0x802C0BE8; // type:object size:0x16 scope:local align:4 data:string +@1575 = .data:0x802C0C00; // type:object size:0xC scope:local align:4 +@1573 = .data:0x802C0C0C; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802C0C20; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802C0C50; // type:label scope:local +@737 = .data:0x802C0C50; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802C0C60; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C0C6C; // type:object size:0x9 scope:local align:4 data:string +@1654 = .data:0x802C0C78; // type:object size:0xB scope:local align:4 data:string +@1987 = .data:0x802C0C84; // type:object size:0x10 scope:local align:4 data:string +@1990 = .data:0x802C0C94; // type:object size:0x9 scope:local align:4 data:string +@1991 = .data:0x802C0CA0; // type:object size:0xC scope:local align:4 +@1993 = .data:0x802C0CAC; // type:object size:0x14 scope:local align:4 +@1994 = .data:0x802C0CC0; // type:object size:0xC scope:local align:4 data:string +@1995 = .data:0x802C0CCC; // type:object size:0xA scope:local align:4 data:string +@1996 = .data:0x802C0CD8; // type:object size:0x24 scope:local align:4 +@1988 = .data:0x802C0CFC; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802C0D28; // type:object size:0x78 scope:global align:4 +@2010 = .data:0x802C0DA0; // type:object size:0xE scope:local align:4 data:string +@2011 = .data:0x802C0DB0; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802C0DDC; // type:object size:0x80 scope:global align:4 +@2019 = .data:0x802C0E5C; // type:object size:0xE scope:local align:4 data:string +@2020 = .data:0x802C0E6C; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802C0E98; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802C0F50; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802C0FC8; // type:label scope:local +@1700 = .data:0x802C0FC8; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802C0FDC; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802C0FE8; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802C0FF8; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802C1004; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802C1010; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802C1040; // type:label scope:local +@388 = .data:0x802C1040; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802C1050; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802C105C; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802C106C; // type:object size:0x10 scope:weak align:4 +table = .data:0x802C1080; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802C1110; // type:label scope:local +@886 = .data:0x802C1110; // type:object size:0xE scope:local align:4 data:string +@1382 = .data:0x802C1120; // type:object size:0x14 scope:local align:4 data:string +@1383 = .data:0x802C1134; // type:object size:0xC scope:local align:4 data:string +@1384 = .data:0x802C1140; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802C1150; // type:object size:0x9 scope:local align:4 data:string +@1386 = .data:0x802C115C; // type:object size:0x14 scope:local align:4 +@1387 = .data:0x802C1170; // type:object size:0xB scope:local align:4 data:string +@1388 = .data:0x802C117C; // type:object size:0x24 scope:local align:4 +@1389 = .data:0x802C11A0; // type:object size:0xD scope:local align:4 data:string +@1390 = .data:0x802C11B0; // type:object size:0x2C scope:local align:4 +@1381 = .data:0x802C11DC; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802C1210; // type:object size:0x15C scope:global align:4 +@1441 = .data:0x802C136C; // type:object size:0x9 scope:local align:4 data:string +@1442 = .data:0x802C1378; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802C13AC; // type:object size:0x15C scope:global align:4 +@1447 = .data:0x802C1508; // type:object size:0x9 scope:local align:4 data:string +@1448 = .data:0x802C1514; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802C1548; // type:object size:0x15C scope:global align:4 +@1453 = .data:0x802C16A4; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802C16D8; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C1838; // type:label scope:local +@908 = .data:0x802C1838; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802C1848; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802C1854; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802C1868; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802C1874; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802C1884; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802C1890; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802C18A4; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802C18B0; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802C18D4; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802C18E4; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802C1910; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802C1944; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802C1AA0; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802C1AAC; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802C1AE0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C1C40; // type:label scope:local +@868 = .data:0x802C1C40; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802C1C50; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802C1C60; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802C1C74; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802C1C80; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802C1C90; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802C1C9C; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802C1CB0; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802C1CBC; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802C1CE0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802C1CF0; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802C1D1C; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802C1D50; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C1EB0; // type:label scope:local +@1538 = .data:0x802C1EB0; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802C1EBC; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802C1EC8; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802C1ED4; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802C1F54; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802C1F60; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802C1F74; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802C1F80; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802C1F90; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802C1F9C; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802C1FB0; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802C1FBC; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802C1FE0; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802C1FF0; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802C201C; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802C2050; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802C21C4; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802C2200; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802C2378; // type:label scope:local +@909 = .data:0x802C2378; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802C2384; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802C239C; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802C23A8; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802C23B4; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C23C0; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802C23CC; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802C23D8; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802C23E4; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802C23F0; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802C23FC; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802C2440; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802C2450; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802C245C; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802C246C; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802C2478; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802C248C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C24A8; // type:label scope:local +@1257 = .data:0x802C24A8; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802C24B8; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802C24C4; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802C24D0; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802C24E4; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802C24F0; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802C2500; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C250C; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802C2520; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802C252C; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802C2550; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802C2560; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802C258C; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802C25C0; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802C2728; // type:label scope:local +@1532 = .data:0x802C2728; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802C2738; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802C2744; // type:object size:0xC scope:local align:4 data:4byte +@1666 = .data:0x802C2750; // type:object size:0xA scope:local align:4 data:string +@1691 = .data:0x802C275C; // type:object size:0xF scope:local align:4 data:string +@1826 = .data:0x802C276C; // type:object size:0x16 scope:local align:4 data:string +@2027 = .data:0x802C2784; // type:object size:0x10 scope:local align:4 data:string +@2111 = .data:0x802C2794; // type:object size:0x3D scope:local align:4 data:string +@2112 = .data:0x802C27E0; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802C27EC; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802C2800; // type:object size:0xC scope:local align:4 data:string +@2116 = .data:0x802C280C; // type:object size:0xD scope:local align:4 data:string +@2117 = .data:0x802C281C; // type:object size:0x9 scope:local align:4 data:string +@2118 = .data:0x802C2828; // type:object size:0x14 scope:local align:4 +@2119 = .data:0x802C283C; // type:object size:0xB scope:local align:4 data:string +@2120 = .data:0x802C2848; // type:object size:0x24 scope:local align:4 +@2121 = .data:0x802C286C; // type:object size:0xD scope:local align:4 data:string +@2122 = .data:0x802C287C; // type:object size:0x2C scope:local align:4 +@2113 = .data:0x802C28A8; // type:object size:0x34 scope:local align:4 +@2176 = .data:0x802C2A50; // type:object size:0x9 scope:local align:4 data:string +@2177 = .data:0x802C2A5C; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802C2AA0; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802C2C28; // type:label scope:local +@1376 = .data:0x802C2C28; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802C2C3C; // type:object size:0xD scope:local align:4 data:string +@1474 = .data:0x802C2C4C; // type:object size:0x23 scope:local align:4 data:string +@1631 = .data:0x802C2C70; // type:object size:0xD scope:local align:4 data:string +@1633 = .data:0x802C2C80; // type:object size:0x14 scope:local align:4 data:string +@1634 = .data:0x802C2C94; // type:object size:0xC scope:local align:4 data:string +@1635 = .data:0x802C2CA0; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802C2CB0; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802C2CBC; // type:object size:0x14 scope:local align:4 +@1638 = .data:0x802C2CD0; // type:object size:0xB scope:local align:4 data:string +@1639 = .data:0x802C2CDC; // type:object size:0x24 scope:local align:4 +@1640 = .data:0x802C2D00; // type:object size:0xD scope:local align:4 data:string +@1641 = .data:0x802C2D10; // type:object size:0x2C scope:local align:4 +@1632 = .data:0x802C2D3C; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802C2D70; // type:object size:0x15C scope:global align:4 +@1686 = .data:0x802C2ECC; // type:object size:0x23 scope:local align:4 data:string +@1687 = .data:0x802C2EF0; // type:object size:0x3D scope:local align:4 data:string +@1688 = .data:0x802C2F30; // type:object size:0x29 scope:local align:4 data:string +@1685 = .data:0x802C2F5C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802C2FD8; // type:label scope:local +@870 = .data:0x802C2FD8; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C2FE4; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802C2FF0; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802C3004; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802C3010; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802C3020; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802C302C; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802C3040; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802C304C; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802C3070; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802C3080; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802C30AC; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802C30E0; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802C323C; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802C3258; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C3370; // type:label scope:local +@868 = .data:0x802C3370; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802C3380; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802C338C; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802C3398; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802C33A4; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802C33B4; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802C33C0; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802C33D4; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802C33E4; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802C3400; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802C3424; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C3538; // type:label scope:local +@1458 = .data:0x802C3538; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802C3548; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802C3554; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802C3560; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802C356C; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802C357C; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802C3588; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802C359C; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802C35B8; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C36D0; // type:label scope:local +@1071 = .data:0x802C36D0; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802C36DC; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802C36E8; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802C36F8; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802C3708; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802C3764; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802C3774; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802C3780; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802C378C; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802C3798; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802C37AC; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802C37C8; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802C3800; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802C380C; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802C3818; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C3838; // type:label scope:local +@1775 = .data:0x802C3838; // type:object size:0xB scope:local align:4 data:string +@2223 = .data:0x802C3844; // type:object size:0x15 scope:local align:4 data:string +@2766 = .data:0x802C385C; // type:object size:0x9 scope:local align:4 data:string +@2868 = .data:0x802C3868; // type:object size:0x9 scope:local align:4 data:string +@2887 = .data:0x802C3874; // type:object size:0x12 scope:local align:4 data:string +@3001 = .data:0x802C3888; // type:object size:0x9 scope:local align:4 data:string +@3044 = .data:0x802C3894; // type:object size:0xE scope:local align:4 data:string +@3150 = .data:0x802C38A4; // type:object size:0x16 scope:local align:4 data:string +@3249 = .data:0x802C38BC; // type:object size:0x1B scope:local align:4 data:string +@3251 = .data:0x802C38D8; // type:object size:0xA scope:local align:4 data:string +@3250 = .data:0x802C38E4; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802C38F0; // type:object size:0xC scope:global align:4 +@3252 = .data:0x802C38FC; // type:object size:0x16 scope:local align:4 data:string +@3253 = .data:0x802C3914; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802C3920; // type:object size:0xC scope:global align:4 +@3254 = .data:0x802C392C; // type:object size:0x19 scope:local align:4 data:string +@3255 = .data:0x802C3948; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802C3954; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802C3960; // type:object size:0xC scope:local align:4 data:string +@3258 = .data:0x802C396C; // type:object size:0x19 scope:local align:4 data:string +@3259 = .data:0x802C3988; // type:object size:0x9 scope:local align:4 data:string +@3260 = .data:0x802C3994; // type:object size:0xC scope:local align:4 +@3257 = .data:0x802C39A0; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802C39B4; // type:object size:0x18 scope:weak align:4 +@3261 = .data:0x802C39CC; // type:object size:0xD scope:local align:4 data:string +@3262 = .data:0x802C39DC; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802C39E8; // type:object size:0xC scope:global align:4 +@3263 = .data:0x802C39F4; // type:object size:0x15 scope:local align:4 data:string +@3266 = .data:0x802C3A0C; // type:object size:0xC scope:local align:4 +@3267 = .data:0x802C3A18; // type:object size:0xD scope:local align:4 data:string +@3268 = .data:0x802C3A28; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802C3A3C; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802C3A58; // type:object size:0x14 scope:global align:4 +@3272 = .data:0x802C3A6C; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802C3A80; // type:object size:0x18 scope:weak align:4 +@3273 = .data:0x802C3A98; // type:object size:0xB scope:local align:4 data:string +@3274 = .data:0x802C3AA4; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802C3AB0; // type:object size:0xC scope:global align:4 +@3275 = .data:0x802C3ABC; // type:object size:0x10 scope:local align:4 data:string +@3276 = .data:0x802C3ACC; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802C3AD8; // type:object size:0xC scope:global align:4 +@3277 = .data:0x802C3AE4; // type:object size:0x10 scope:local align:4 data:string +@3278 = .data:0x802C3AF4; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802C3B00; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802C3B0C; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802C3B20; // type:object size:0x18 scope:weak align:4 +@3281 = .data:0x802C3B38; // type:object size:0xF scope:local align:4 data:string +@3282 = .data:0x802C3B48; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802C3B54; // type:object size:0xC scope:global align:4 +@3283 = .data:0x802C3B60; // type:object size:0x11 scope:local align:4 data:string +@3284 = .data:0x802C3B74; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802C3B80; // type:object size:0xC scope:global align:4 +@3285 = .data:0x802C3B8C; // type:object size:0x11 scope:local align:4 data:string +@3286 = .data:0x802C3BA0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802C3BAC; // type:object size:0xC scope:global align:4 +@3287 = .data:0x802C3BB8; // type:object size:0x11 scope:local align:4 data:string +@3288 = .data:0x802C3BCC; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802C3BD8; // type:object size:0xC scope:global align:4 +@3289 = .data:0x802C3BE4; // type:object size:0x11 scope:local align:4 data:string +@3290 = .data:0x802C3BF8; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802C3C04; // type:object size:0xC scope:global align:4 +@3291 = .data:0x802C3C10; // type:object size:0x11 scope:local align:4 data:string +@3292 = .data:0x802C3C24; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802C3C30; // type:object size:0xC scope:global align:4 +@3293 = .data:0x802C3C3C; // type:object size:0x11 scope:local align:4 data:string +@3294 = .data:0x802C3C50; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802C3C5C; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802C3C68; // type:object size:0x14 scope:local align:4 data:string +@3296 = .data:0x802C3C7C; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802C3C98; // type:object size:0x14 scope:global align:4 +@3299 = .data:0x802C3CDC; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802C3CF0; // type:object size:0x18 scope:weak align:4 +@3300 = .data:0x802C3D08; // type:object size:0x10 scope:local align:4 data:string +@3301 = .data:0x802C3D18; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802C3D24; // type:object size:0xC scope:global align:4 +@3302 = .data:0x802C3D30; // type:object size:0x10 scope:local align:4 data:string +@3303 = .data:0x802C3D40; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802C3D4C; // type:object size:0xC scope:global align:4 +@3304 = .data:0x802C3D58; // type:object size:0x11 scope:local align:4 data:string +@3305 = .data:0x802C3D6C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802C3D78; // type:object size:0xC scope:global align:4 +@3306 = .data:0x802C3D84; // type:object size:0x11 scope:local align:4 data:string +@3307 = .data:0x802C3D98; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802C3DA4; // type:object size:0xC scope:global align:4 +@3308 = .data:0x802C3DB0; // type:object size:0x11 scope:local align:4 data:string +@3309 = .data:0x802C3DC4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802C3DD0; // type:object size:0xC scope:global align:4 +@3310 = .data:0x802C3DDC; // type:object size:0xC scope:local align:4 data:string +@3320 = .data:0x802C3E14; // type:object size:0xC scope:local align:4 data:string +@3322 = .data:0x802C3E20; // type:object size:0xC scope:local align:4 data:string +@3321 = .data:0x802C3E2C; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802C3E38; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802C3E44; // type:object size:0xC scope:weak align:4 +@3327 = .data:0x802C3E50; // type:object size:0x11 scope:local align:4 data:string +@3328 = .data:0x802C3E64; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802C3E70; // type:object size:0xC scope:global align:4 +@3329 = .data:0x802C3E7C; // type:object size:0x10 scope:local align:4 data:string +@3330 = .data:0x802C3E8C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802C3E98; // type:object size:0xC scope:global align:4 +@3331 = .data:0x802C3EA4; // type:object size:0x10 scope:local align:4 data:string +@3332 = .data:0x802C3EB4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802C3EC0; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802C3ECC; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802C3EE0; // type:object size:0x18 scope:weak align:4 +@3335 = .data:0x802C3EF8; // type:object size:0x11 scope:local align:4 data:string +@3336 = .data:0x802C3F0C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802C3F18; // type:object size:0xC scope:global align:4 +@3337 = .data:0x802C3F24; // type:object size:0x17 scope:local align:4 data:string +@3338 = .data:0x802C3F3C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802C3F48; // type:object size:0xC scope:global align:4 +@3339 = .data:0x802C3F54; // type:object size:0x17 scope:local align:4 data:string +@3340 = .data:0x802C3F6C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802C3F78; // type:object size:0xC scope:global align:4 +@3341 = .data:0x802C3F84; // type:object size:0x17 scope:local align:4 data:string +@3342 = .data:0x802C3F9C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802C3FA8; // type:object size:0xC scope:global align:4 +@3343 = .data:0x802C3FB4; // type:object size:0x19 scope:local align:4 data:string +@3344 = .data:0x802C3FD0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802C3FDC; // type:object size:0xC scope:global align:4 +@3345 = .data:0x802C3FE8; // type:object size:0x15 scope:local align:4 data:string +@3346 = .data:0x802C4000; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802C400C; // type:object size:0xC scope:global align:4 +@3347 = .data:0x802C4018; // type:object size:0x15 scope:local align:4 data:string +@3348 = .data:0x802C4030; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802C403C; // type:object size:0xC scope:global align:4 +@3349 = .data:0x802C4048; // type:object size:0x15 scope:local align:4 data:string +@3350 = .data:0x802C4060; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802C406C; // type:object size:0xC scope:global align:4 +@3351 = .data:0x802C4078; // type:object size:0x15 scope:local align:4 data:string +@3352 = .data:0x802C4090; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802C409C; // type:object size:0xC scope:global align:4 +@3353 = .data:0x802C40A8; // type:object size:0x15 scope:local align:4 data:string +@3354 = .data:0x802C40C0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802C40CC; // type:object size:0xC scope:global align:4 +@3355 = .data:0x802C40D8; // type:object size:0x15 scope:local align:4 data:string +@3356 = .data:0x802C40F0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802C40FC; // type:object size:0xC scope:global align:4 +@3357 = .data:0x802C4108; // type:object size:0x16 scope:local align:4 data:string +@3358 = .data:0x802C4120; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802C412C; // type:object size:0xC scope:global align:4 +@3359 = .data:0x802C4138; // type:object size:0x16 scope:local align:4 data:string +@3360 = .data:0x802C4150; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802C415C; // type:object size:0xC scope:global align:4 +@3361 = .data:0x802C4168; // type:object size:0x1A scope:local align:4 data:string +@3362 = .data:0x802C4184; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802C4190; // type:object size:0xC scope:global align:4 +@3363 = .data:0x802C419C; // type:object size:0x17 scope:local align:4 data:string +@3364 = .data:0x802C41B4; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802C41C0; // type:object size:0xC scope:global align:4 +@3365 = .data:0x802C41CC; // type:object size:0x19 scope:local align:4 data:string +@3366 = .data:0x802C41E8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802C41F4; // type:object size:0xC scope:global align:4 +@3367 = .data:0x802C4200; // type:object size:0x18 scope:local align:4 data:string +@3368 = .data:0x802C4218; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802C4224; // type:object size:0xC scope:global align:4 +@3369 = .data:0x802C4230; // type:object size:0xB scope:local align:4 data:string +@3370 = .data:0x802C423C; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802C4250; // type:object size:0x18 scope:weak align:4 +@3371 = .data:0x802C4268; // type:object size:0x15 scope:local align:4 data:string +@3372 = .data:0x802C4280; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802C428C; // type:object size:0xC scope:global align:4 +@3373 = .data:0x802C4298; // type:object size:0x15 scope:local align:4 data:string +@3374 = .data:0x802C42B0; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802C42BC; // type:object size:0xC scope:global align:4 +@3375 = .data:0x802C42C8; // type:object size:0x13 scope:local align:4 data:string +@3376 = .data:0x802C42DC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802C42E8; // type:object size:0xC scope:global align:4 +@3377 = .data:0x802C42F4; // type:object size:0x13 scope:local align:4 data:string +@3378 = .data:0x802C4308; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802C4314; // type:object size:0xC scope:global align:4 +@3379 = .data:0x802C4320; // type:object size:0x15 scope:local align:4 data:string +@3380 = .data:0x802C4338; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802C4344; // type:object size:0xC scope:global align:4 +@3381 = .data:0x802C4350; // type:object size:0xF scope:local align:4 data:string +@3382 = .data:0x802C4360; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802C436C; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802C4378; // type:object size:0xC scope:weak align:4 +@3383 = .data:0x802C4384; // type:object size:0x9 scope:local align:4 data:string +@3385 = .data:0x802C4390; // type:object size:0x15 scope:local align:4 data:string +@3384 = .data:0x802C43A8; // type:object size:0xC scope:local align:4 +@3386 = .data:0x802C4424; // type:object size:0x9 scope:local align:4 data:string +@3387 = .data:0x802C4430; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802C4444; // type:object size:0x18 scope:weak align:4 +@3425 = .data:0x802C445C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C4488; // type:label scope:local +@1259 = .data:0x802C4488; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802C4494; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802C44A4; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802C44BC; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802C44D4; // type:object size:0xB scope:local align:4 data:string +@1723 = .data:0x802C44E0; // type:object size:0x58 scope:local align:4 +@1799 = .data:0x802C4538; // type:object size:0x9 scope:local align:4 data:string +@1800 = .data:0x802C4544; // type:object size:0xA scope:local align:4 data:string +@2063 = .data:0x802C4550; // type:object size:0x18 scope:local align:4 data:string +@2064 = .data:0x802C4568; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802C4584; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802C45A0; // type:object size:0x19 scope:local align:4 data:string +@2067 = .data:0x802C45BC; // type:object size:0x18 scope:local align:4 data:string +@2504 = .data:0x802C45D4; // type:object size:0x1E scope:local align:4 data:string +@2505 = .data:0x802C45F4; // type:object size:0x9 scope:local align:4 data:string +@2506 = .data:0x802C4600; // type:object size:0xA scope:local align:4 data:string +@2507 = .data:0x802C460C; // type:object size:0x16 scope:local align:4 data:string +@2509 = .data:0x802C4624; // type:object size:0x18 scope:local align:4 data:string +@2511 = .data:0x802C463C; // type:object size:0x1E scope:local align:4 data:string +@2512 = .data:0x802C465C; // type:object size:0x9 scope:local align:4 data:string +@2513 = .data:0x802C4668; // type:object size:0x16 scope:local align:4 data:string +@2514 = .data:0x802C4680; // type:object size:0xD scope:local align:4 data:string +@2515 = .data:0x802C4690; // type:object size:0x19 scope:local align:4 data:string +@2517 = .data:0x802C46AC; // type:object size:0x9 scope:local align:4 data:string +@2518 = .data:0x802C46B8; // type:object size:0x19 scope:local align:4 data:string +@2519 = .data:0x802C46D4; // type:object size:0xA scope:local align:4 data:string +@2520 = .data:0x802C46E0; // type:object size:0xB scope:local align:4 data:string +@2521 = .data:0x802C46EC; // type:object size:0x16 scope:local align:4 data:string +@2523 = .data:0x802C4704; // type:object size:0x9 scope:local align:4 data:string +@2866 = .data:0x802C4710; // type:object size:0x5C scope:local align:4 +@2952 = .data:0x802C476C; // type:object size:0x9 scope:local align:4 data:string +@3063 = .data:0x802C4778; // type:object size:0xC scope:local align:4 data:string +@3066 = .data:0x802C4784; // type:object size:0xC scope:local align:4 +@3068 = .data:0x802C4790; // type:object size:0x14 scope:local align:4 +@3069 = .data:0x802C47A4; // type:object size:0xC scope:local align:4 data:string +@3070 = .data:0x802C47B0; // type:object size:0xA scope:local align:4 data:string +@3071 = .data:0x802C47BC; // type:object size:0x24 scope:local align:4 +@3072 = .data:0x802C47E0; // type:object size:0xE scope:local align:4 data:string +@3073 = .data:0x802C47F0; // type:object size:0x2C scope:local align:4 +@3064 = .data:0x802C481C; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802C4850; // type:object size:0x84 scope:global align:4 +@3090 = .data:0x802C48D4; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802C48E8; // type:object size:0xD scope:local align:4 data:string +@3091 = .data:0x802C48F8; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802C4904; // type:object size:0xC scope:weak align:4 +@3096 = .data:0x802C4910; // type:object size:0xE scope:local align:4 data:string +@3097 = .data:0x802C4920; // type:object size:0x2C scope:local align:4 +@3095 = .data:0x802C494C; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802C4980; // type:object size:0x84 scope:global align:4 +@3107 = .data:0x802C4A04; // type:object size:0x10 scope:local align:4 data:string +@3109 = .data:0x802C4A14; // type:object size:0xC scope:local align:4 data:string +@3108 = .data:0x802C4A20; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802C4A2C; // type:object size:0x2C scope:global align:4 +@3117 = .data:0x802C4A58; // type:object size:0xD scope:local align:4 data:string +@3119 = .data:0x802C4A68; // type:object size:0x14 scope:local align:4 data:string +@3120 = .data:0x802C4A7C; // type:object size:0xC scope:local align:4 data:string +@3121 = .data:0x802C4A88; // type:object size:0xD scope:local align:4 data:string +@3122 = .data:0x802C4A98; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802C4AA4; // type:object size:0x14 scope:local align:4 +@3124 = .data:0x802C4AB8; // type:object size:0xB scope:local align:4 data:string +@3125 = .data:0x802C4AC4; // type:object size:0x24 scope:local align:4 +@3118 = .data:0x802C4AE8; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802C4B14; // type:object size:0x15C scope:global align:4 +@3176 = .data:0x802C4C70; // type:object size:0x9 scope:local align:4 data:string +@3177 = .data:0x802C4C7C; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802C4C88; // type:object size:0xC scope:weak align:4 +@3179 = .data:0x802C4C94; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802C4CA0; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802C4CAC; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802C4CB8; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802C4CC4; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802C4CD0; // type:object size:0x9 scope:local align:4 data:string +@3183 = .data:0x802C4CDC; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802C4CE8; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802C4CF4; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802C4D04; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802C4D10; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802C4D1C; // type:object size:0xD scope:local align:4 data:string +@3187 = .data:0x802C4D2C; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802C4D38; // type:object size:0xC scope:weak align:4 +@3188 = .data:0x802C4D44; // type:object size:0x11 scope:local align:4 data:string +@3189 = .data:0x802C4D58; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802C4D6C; // type:object size:0x10 scope:weak align:4 +@3190 = .data:0x802C4D7C; // type:object size:0xD scope:local align:4 data:string +@3191 = .data:0x802C4D8C; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802C4D98; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802C4DA4; // type:object size:0x11 scope:local align:4 data:string +@3193 = .data:0x802C4DB8; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802C4DC4; // type:object size:0xC scope:weak align:4 +@3194 = .data:0x802C4DD0; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802C4DDC; // type:object size:0x9 scope:local align:4 data:string +@3195 = .data:0x802C4DE8; // type:object size:0xC scope:local align:4 +@3197 = .data:0x802C4E08; // type:object size:0xC scope:local align:4 data:string +@3198 = .data:0x802C4E14; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802C4E20; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802C4E2C; // type:object size:0xD scope:local align:4 data:string +@3200 = .data:0x802C4E3C; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802C4E48; // type:object size:0xC scope:weak align:4 +@3201 = .data:0x802C4E60; // type:object size:0xE scope:local align:4 data:string +@3203 = .data:0x802C4E70; // type:object size:0x10 scope:local align:4 data:string +@3204 = .data:0x802C4E80; // type:object size:0x2C scope:local align:4 +@3202 = .data:0x802C4EAC; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802C4EE0; // type:object size:0x78 scope:weak align:4 +@3213 = .data:0x802C4F58; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802C4F68; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802C4F7C; // type:object size:0x10 scope:weak align:4 +@3215 = .data:0x802C4FC0; // type:object size:0xD scope:local align:4 data:string +@3216 = .data:0x802C4FD0; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802C5004; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802C5168; // type:label scope:local +@868 = .data:0x802C5168; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802C5178; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802C5184; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802C5198; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802C51AC; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802C51B8; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802C51C8; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802C51D4; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802C51E8; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802C51F4; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802C5218; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802C5228; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802C5254; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802C5260; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802C5294; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802C52D0; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802C542C; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802C5440; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802C547C; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802C55D8; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802C5614; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802C5770; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C577C; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802C57B8; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802C5914; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802C5A70; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802C5A7C; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802C5AB0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C5C10; // type:label scope:local +@882 = .data:0x802C5C10; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802C5C20; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802C5C2C; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802C5C38; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802C5C4C; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802C5C58; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802C5C68; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802C5C74; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802C5C88; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802C5C94; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802C5CB8; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802C5CC8; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802C5CF4; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802C5D28; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C5E88; // type:label scope:local +@661 = .data:0x802C5E88; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C5EA0; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802C5EB4; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802C5EF0; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802C5F04; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802C5F10; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802C5F20; // type:object size:0xC scope:local align:4 +@753 = .data:0x802C5F2C; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802C5F40; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C5F60; // type:label scope:local +@1242 = .data:0x802C5F60; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802C5F6C; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802C5F78; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802C5F8C; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802C5FA4; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802C5FB4; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802C5FC0; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802C5FCC; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802C5FD8; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802C5FEC; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802C6008; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C6040; // type:label scope:local +@2026 = .data:0x802C6040; // type:object size:0x9 scope:local align:4 data:string +@2212 = .data:0x802C604C; // type:object size:0xC scope:local align:4 data:string +@2213 = .data:0x802C6058; // type:object size:0x13 scope:local align:4 data:string +@2291 = .data:0x802C606C; // type:object size:0xD scope:local align:4 data:string +@2292 = .data:0x802C607C; // type:object size:0xC scope:local align:4 data:string +@3020 = .data:0x802C6088; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802C6094; // type:object size:0xB scope:local align:4 data:string +@3851 = .data:0x802C60A0; // type:object size:0xE scope:local align:4 data:string +@4627 = .data:0x802C60B0; // type:object size:0x20 scope:local align:4 data:string +@6088 = .data:0x802C60D0; // type:object size:0x2C scope:local align:4 +@6149 = .data:0x802C60FC; // type:object size:0x13 scope:local align:4 data:string +@6150 = .data:0x802C6110; // type:object size:0x15 scope:local align:4 data:string +@6721 = .data:0x802C6128; // type:object size:0xD scope:local align:4 data:string +@6723 = .data:0x802C6138; // type:object size:0xC scope:local align:4 data:string +@6722 = .data:0x802C6144; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C6150; // type:object size:0x2C scope:global align:4 +@6731 = .data:0x802C617C; // type:object size:0xF scope:local align:4 data:string +@6732 = .data:0x802C618C; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C6198; // type:object size:0x2C scope:global align:4 +@6733 = .data:0x802C61F0; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C6204; // type:object size:0x18 scope:weak align:4 +@6736 = .data:0x802C621C; // type:object size:0x23 scope:local align:4 data:string +@6737 = .data:0x802C6240; // type:object size:0x3D scope:local align:4 data:string +@6738 = .data:0x802C6280; // type:object size:0x29 scope:local align:4 data:string +@6735 = .data:0x802C62AC; // type:object size:0x1C scope:local align:4 +@6745 = .data:0x802C6328; // type:object size:0xB scope:local align:4 data:string +@6748 = .data:0x802C6334; // type:object size:0x9 scope:local align:4 data:string +@6749 = .data:0x802C6340; // type:object size:0xC scope:local align:4 +@6751 = .data:0x802C634C; // type:object size:0x14 scope:local align:4 +@6746 = .data:0x802C6360; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C637C; // type:object size:0x30 scope:weak align:4 +@6760 = .data:0x802C63C8; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C63D4; // type:object size:0x34 scope:weak align:4 +@6768 = .data:0x802C6408; // type:object size:0x14 scope:local align:4 data:string +@6769 = .data:0x802C6428; // type:object size:0xA scope:local align:4 data:string +@6771 = .data:0x802C6434; // type:object size:0x9 scope:local align:4 data:string +@6770 = .data:0x802C6440; // type:object size:0xC scope:local align:4 +@6772 = .data:0x802C6460; // type:object size:0x9 scope:local align:4 data:string +@6774 = .data:0x802C646C; // type:object size:0xD scope:local align:4 data:string +@6773 = .data:0x802C647C; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C6488; // type:object size:0xC scope:weak align:4 +@6777 = .data:0x802C6494; // type:object size:0xC scope:local align:4 data:string +@6778 = .data:0x802C64A0; // type:object size:0xC scope:local align:4 +@6782 = .data:0x802C64CC; // type:object size:0xC scope:local align:4 data:string +@6783 = .data:0x802C64D8; // type:object size:0xD scope:local align:4 data:string +@6784 = .data:0x802C64E8; // type:object size:0x9 scope:local align:4 data:string +@6785 = .data:0x802C64F4; // type:object size:0x14 scope:local align:4 +@6781 = .data:0x802C6508; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C6534; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C66A0; // type:label scope:local +@1929 = .data:0x802C66A0; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C66B0; // type:object size:0xA scope:local align:4 data:string +@5845 = .data:0x802C66BC; // type:object size:0x13 scope:local align:4 data:string +@5847 = .data:0x802C66D0; // type:object size:0xF scope:local align:4 data:string +@5848 = .data:0x802C66E0; // type:object size:0xD scope:local align:4 data:string +@5849 = .data:0x802C66F0; // type:object size:0xC scope:local align:4 +@5850 = .data:0x802C66FC; // type:object size:0xA scope:local align:4 data:string +@5851 = .data:0x802C6708; // type:object size:0x14 scope:local align:4 +@5846 = .data:0x802C671C; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C6738; // type:object size:0x54 scope:global align:4 +@5853 = .data:0x802C678C; // type:object size:0x15 scope:local align:4 data:string +@5854 = .data:0x802C67A4; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C67C0; // type:object size:0x54 scope:global align:4 +@5856 = .data:0x802C6814; // type:object size:0x12 scope:local align:4 data:string +@5857 = .data:0x802C6828; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C6844; // type:object size:0x54 scope:global align:4 +@5859 = .data:0x802C6898; // type:object size:0x12 scope:local align:4 data:string +@5860 = .data:0x802C68AC; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C68C8; // type:object size:0x54 scope:global align:4 +@5862 = .data:0x802C691C; // type:object size:0xE scope:local align:4 data:string +@5863 = .data:0x802C692C; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C6948; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C699C; // type:object size:0x10 scope:local align:4 data:string +@5866 = .data:0x802C69AC; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C69C8; // type:object size:0x54 scope:global align:4 +@5867 = .data:0x802C6A1C; // type:object size:0xF scope:local align:4 data:string +@5868 = .data:0x802C6A2C; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C6A48; // type:object size:0x54 scope:global align:4 +@5869 = .data:0x802C6A9C; // type:object size:0xE scope:local align:4 data:string +@5870 = .data:0x802C6AAC; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C6AC8; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C6B1C; // type:object size:0x10 scope:local align:4 data:string +@5872 = .data:0x802C6B2C; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C6B48; // type:object size:0x54 scope:global align:4 +@5873 = .data:0x802C6B9C; // type:object size:0xF scope:local align:4 data:string +@5874 = .data:0x802C6BAC; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C6BC8; // type:object size:0x54 scope:global align:4 +@5875 = .data:0x802C6C1C; // type:object size:0xD scope:local align:4 data:string +@5876 = .data:0x802C6C2C; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C6C48; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C6C9C; // type:object size:0x11 scope:local align:4 data:string +@5878 = .data:0x802C6CB0; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C6CCC; // type:object size:0x54 scope:global align:4 +@5880 = .data:0x802C6D20; // type:object size:0x14 scope:local align:4 data:string +@5881 = .data:0x802C6D34; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802C6D50; // type:object size:0x54 scope:global align:4 +@5882 = .data:0x802C6DA4; // type:object size:0xE scope:local align:4 data:string +@5883 = .data:0x802C6DB4; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802C6DD0; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C6E24; // type:object size:0x12 scope:local align:4 data:string +@5886 = .data:0x802C6E38; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802C6E54; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C6EA8; // type:object size:0xE scope:local align:4 data:string +@5888 = .data:0x802C6EB8; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802C6ED4; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C6F28; // type:object size:0xF scope:local align:4 data:string +@5890 = .data:0x802C6F38; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802C6F54; // type:object size:0x54 scope:global align:4 +@5891 = .data:0x802C6FA8; // type:object size:0x13 scope:local align:4 data:string +@5892 = .data:0x802C6FBC; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802C6FD8; // type:object size:0x54 scope:global align:4 +@5893 = .data:0x802C702C; // type:object size:0x11 scope:local align:4 data:string +@5894 = .data:0x802C7040; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802C705C; // type:object size:0x54 scope:global align:4 +@5895 = .data:0x802C70B0; // type:object size:0x10 scope:local align:4 data:string +@5896 = .data:0x802C70C0; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802C70DC; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802C7130; // type:object size:0x10 scope:local align:4 data:string +@5898 = .data:0x802C7140; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802C715C; // type:object size:0x54 scope:global align:4 +@5900 = .data:0x802C71B0; // type:object size:0xF scope:local align:4 data:string +@5901 = .data:0x802C71C0; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802C71DC; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802C7230; // type:object size:0xE scope:local align:4 data:string +@5904 = .data:0x802C7240; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802C725C; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802C72B0; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802C72C4; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802C72E0; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802C7334; // type:object size:0x12 scope:local align:4 data:string +@5908 = .data:0x802C7348; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802C7364; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802C73B8; // type:object size:0xE scope:local align:4 data:string +@5910 = .data:0x802C73C8; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802C73E4; // type:object size:0x54 scope:global align:4 +@5911 = .data:0x802C7438; // type:object size:0xE scope:local align:4 data:string +@5912 = .data:0x802C7448; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802C7464; // type:object size:0x54 scope:global align:4 +@5913 = .data:0x802C74B8; // type:object size:0x13 scope:local align:4 data:string +@5915 = .data:0x802C74CC; // type:object size:0x15 scope:local align:4 data:string +@5916 = .data:0x802C74E4; // type:object size:0x17 scope:local align:4 data:string +@5914 = .data:0x802C74FC; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802C7528; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802C759C; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802C75A8; // type:object size:0xC scope:weak align:4 +@5919 = .data:0x802C75B4; // type:object size:0xD scope:local align:4 data:string +@5920 = .data:0x802C75C4; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802C75E0; // type:object size:0x54 scope:global align:4 +@5922 = .data:0x802C7634; // type:object size:0xE scope:local align:4 data:string +@5923 = .data:0x802C7644; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802C7660; // type:object size:0x54 scope:global align:4 +@5924 = .data:0x802C76B4; // type:object size:0xE scope:local align:4 data:string +@5925 = .data:0x802C76C4; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802C76E0; // type:object size:0x54 scope:global align:4 +@5927 = .data:0x802C7734; // type:object size:0xC scope:local align:4 data:string +@5937 = .data:0x802C776C; // type:object size:0xF scope:local align:4 data:string +@5938 = .data:0x802C777C; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802C7798; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802C77EC; // type:object size:0x11 scope:local align:4 data:string +@5940 = .data:0x802C7800; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802C781C; // type:object size:0x54 scope:global align:4 +@5942 = .data:0x802C7870; // type:object size:0x12 scope:local align:4 data:string +@5943 = .data:0x802C7884; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802C78A0; // type:object size:0x54 scope:global align:4 +@5945 = .data:0x802C78F4; // type:object size:0x10 scope:local align:4 data:string +@5946 = .data:0x802C7904; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802C7920; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802C7974; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802C79C8; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802C7A18; // type:object size:0x38 scope:weak align:4 +@5948 = .data:0x802C7A50; // type:object size:0x11 scope:local align:4 data:string +@5950 = .data:0x802C7A64; // type:object size:0x13 scope:local align:4 data:string +@5949 = .data:0x802C7A78; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802C7A84; // type:object size:0x18 scope:global align:4 +@5996 = .data:0x802C7A9C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C7AC8; // type:label scope:local +@1884 = .data:0x802C7AC8; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802C7ADC; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802C7AE8; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802C7AF8; // type:object size:0xC scope:local align:4 data:string +@2347 = .data:0x802C7B04; // type:object size:0xB scope:local align:4 data:string +@2750 = .data:0x802C7B10; // type:object size:0x2C scope:local align:4 +@2762 = .data:0x802C7B3C; // type:object size:0x14 scope:local align:4 data:string +@2764 = .data:0x802C7B50; // type:object size:0xF scope:local align:4 data:string +@2765 = .data:0x802C7B60; // type:object size:0xD scope:local align:4 data:string +@2766 = .data:0x802C7B70; // type:object size:0xC scope:local align:4 +@2767 = .data:0x802C7B7C; // type:object size:0xA scope:local align:4 data:string +@2768 = .data:0x802C7B88; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802C7B9C; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802C7BB8; // type:object size:0x54 scope:global align:4 +@2770 = .data:0x802C7C0C; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802C7C30; // type:object size:0x18 scope:weak align:4 +@2771 = .data:0x802C7D24; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802C7D44; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802C7D64; // type:object size:0x1C scope:local align:4 data:string +@2775 = .data:0x802C7D80; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802C7D8C; // type:object size:0x1F scope:local align:4 data:string +@2777 = .data:0x802C7DAC; // type:object size:0x14 scope:local align:4 +@2772 = .data:0x802C7DC0; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802C7DDC; // type:object size:0x50 scope:global align:4 +@2778 = .data:0x802C7E2C; // type:object size:0x1F scope:local align:4 data:string +@2779 = .data:0x802C7E4C; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802C7E68; // type:object size:0x50 scope:global align:4 +@2780 = .data:0x802C7EB8; // type:object size:0x22 scope:local align:4 data:string +@2781 = .data:0x802C7EDC; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802C7EF8; // type:object size:0x50 scope:global align:4 +@2782 = .data:0x802C7F48; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802C7F68; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802C7F84; // type:object size:0x50 scope:global align:4 +@2784 = .data:0x802C7FD4; // type:object size:0x1D scope:local align:4 data:string +@2785 = .data:0x802C7FF4; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802C8010; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802C8060; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802C80B0; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802C8100; // type:object size:0x38 scope:weak align:4 +@2786 = .data:0x802C8138; // type:object size:0x26 scope:local align:4 data:string +@2787 = .data:0x802C8160; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802C816C; // type:object size:0x18 scope:global align:4 +@2845 = .data:0x802C8184; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C81B0; // type:label scope:local +@2086 = .data:0x802C81B0; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802C81C4; // type:object size:0x10 scope:local align:4 data:string +@2632 = .data:0x802C81D4; // type:object size:0x4C scope:local align:4 +@3521 = .data:0x802C8220; // type:object size:0x9 scope:local align:4 data:string +@3522 = .data:0x802C822C; // type:object size:0xA scope:local align:4 data:string +@3523 = .data:0x802C8238; // type:object size:0x9 scope:local align:4 data:string +@3525 = .data:0x802C8244; // type:object size:0xB scope:local align:4 data:string +@3527 = .data:0x802C8250; // type:object size:0xE scope:local align:4 data:string +@3528 = .data:0x802C8260; // type:object size:0x9 scope:local align:4 data:string +@3529 = .data:0x802C826C; // type:object size:0xB scope:local align:4 data:string +@3530 = .data:0x802C8278; // type:object size:0xD scope:local align:4 data:string +@3540 = .data:0x802C8288; // type:object size:0x11 scope:local align:4 data:string +@3795 = .data:0x802C829C; // type:object size:0x9 scope:local align:4 data:string +@3798 = .data:0x802C82A8; // type:object size:0x13 scope:local align:4 +@3799 = .data:0x802C82BC; // type:object size:0x17 scope:local align:4 +@3800 = .data:0x802C82D4; // type:object size:0x13 scope:local align:4 data:string +@3801 = .data:0x802C82E8; // type:object size:0xC scope:local align:4 data:string +@3802 = .data:0x802C82F4; // type:object size:0x9 scope:local align:4 data:string +@3804 = .data:0x802C8300; // type:object size:0xC scope:local align:4 data:string +@3807 = .data:0x802C830C; // type:object size:0xA scope:local align:4 data:string +@3809 = .data:0x802C8318; // type:object size:0x16 scope:local align:4 +@3811 = .data:0x802C8330; // type:object size:0x13 scope:local align:4 +@3813 = .data:0x802C8344; // type:object size:0x14 scope:local align:4 +@3814 = .data:0x802C8358; // type:object size:0x15 scope:local align:4 +@3816 = .data:0x802C8370; // type:object size:0x14 scope:local align:4 +@3821 = .data:0x802C8384; // type:object size:0xA scope:local align:4 data:string +@4135 = .data:0x802C8390; // type:object size:0x2C scope:local align:4 data:string +@4138 = .data:0x802C83BC; // type:object size:0xA scope:local align:4 data:string +@4139 = .data:0x802C83C8; // type:object size:0xA scope:local align:4 data:string +@4140 = .data:0x802C83D4; // type:object size:0xA scope:local align:4 data:string +@4141 = .data:0x802C83E0; // type:object size:0xA scope:local align:4 data:string +@4142 = .data:0x802C83EC; // type:object size:0xC scope:local align:4 data:string +@4143 = .data:0x802C83F8; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802C8404; // type:object size:0xC scope:local align:4 data:string +@4145 = .data:0x802C8410; // type:object size:0x9 scope:local align:4 data:string +triNames$4137 = .data:0x802C841C; // type:object size:0x28 scope:local align:4 +@4367 = .data:0x802C8444; // type:object size:0x10 scope:local align:4 data:string +@4370 = .data:0x802C8454; // type:object size:0x9 scope:local align:4 data:string +@4371 = .data:0x802C8460; // type:object size:0xC scope:local align:4 +@4373 = .data:0x802C846C; // type:object size:0x14 scope:local align:4 +@4368 = .data:0x802C8480; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802C849C; // type:object size:0x30 scope:global align:4 +@4381 = .data:0x802C84E8; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802C8520; // type:label scope:local +@1158 = .data:0x802C8520; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802C8530; // type:object size:0x9 scope:local align:4 data:string +@1617 = .data:0x802C853C; // type:object size:0x10 scope:local align:4 data:string +@1625 = .data:0x802C854C; // type:object size:0xE scope:local align:4 data:string +@1633 = .data:0x802C855C; // type:object size:0xE scope:local align:4 data:string +@1897 = .data:0x802C856C; // type:object size:0xB scope:local align:4 data:string +@1899 = .data:0x802C8578; // type:object size:0x23 scope:local align:4 data:string +@1900 = .data:0x802C859C; // type:object size:0x3D scope:local align:4 data:string +@1901 = .data:0x802C85DC; // type:object size:0x29 scope:local align:4 data:string +@1903 = .data:0x802C8608; // type:object size:0x1C scope:local align:4 +@1898 = .data:0x802C8624; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802C8648; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802C8684; // type:object size:0xD scope:local align:4 data:string +@1907 = .data:0x802C8694; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802C86B8; // type:object size:0x3C scope:global align:4 +@1909 = .data:0x802C86F4; // type:object size:0x10 scope:local align:4 data:string +@1910 = .data:0x802C8704; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802C8728; // type:object size:0x3C scope:global align:4 +@1911 = .data:0x802C8764; // type:object size:0x11 scope:local align:4 data:string +@1912 = .data:0x802C8778; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802C879C; // type:object size:0x3C scope:weak align:4 +@1998 = .data:0x802C87D8; // type:object size:0xE scope:local align:4 data:string +@2000 = .data:0x802C87E8; // type:object size:0x10 scope:local align:4 data:string +@2001 = .data:0x802C87F8; // type:object size:0x24 scope:local align:4 +@1999 = .data:0x802C881C; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802C8848; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802C8884; // type:object size:0x3C scope:weak align:4 +@2104 = .data:0x802C88C0; // type:object size:0x10 scope:local align:4 data:string +@2105 = .data:0x802C88D0; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802C88F4; // type:object size:0x3C scope:weak align:4 +@2111 = .data:0x802C8930; // type:object size:0xB scope:local align:4 data:string +@2112 = .data:0x802C893C; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802C8960; // type:object size:0x3C scope:weak align:4 +@2118 = .data:0x802C899C; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802C89AC; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802C89D0; // type:object size:0x3C scope:weak align:4 +@2128 = .data:0x802C8A0C; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802C8A30; // type:object size:0x3C scope:weak align:4 +@2153 = .data:0x802C8A6C; // type:object size:0x10 scope:local align:4 data:string +@2154 = .data:0x802C8A7C; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802C8AA0; // type:object size:0x3C scope:weak align:4 +@2160 = .data:0x802C8ADC; // type:object size:0x10 scope:local align:4 data:string +@2161 = .data:0x802C8AEC; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802C8B10; // type:object size:0x3C scope:weak align:4 +@2167 = .data:0x802C8B4C; // type:object size:0x11 scope:local align:4 data:string +@2168 = .data:0x802C8B60; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802C8B84; // type:object size:0x3C scope:weak align:4 +@2174 = .data:0x802C8BC0; // type:object size:0x10 scope:local align:4 data:string +@2175 = .data:0x802C8BD0; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802C8BF4; // type:object size:0x3C scope:weak align:4 +@2181 = .data:0x802C8C30; // type:object size:0xC scope:local align:4 data:string +@2182 = .data:0x802C8C3C; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802C8C60; // type:object size:0x3C scope:weak align:4 +@2300 = .data:0x802C8C9C; // type:object size:0xB scope:local align:4 data:string +@2301 = .data:0x802C8CA8; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802C8CCC; // type:object size:0x3C scope:weak align:4 +@2321 = .data:0x802C8D08; // type:object size:0xC scope:local align:4 data:string +@2322 = .data:0x802C8D14; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802C8D38; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802C8DD8; // type:label scope:local +@390 = .data:0x802C8DD8; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802C8DE8; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802C8DF4; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802C8E04; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802C8E10; // type:object size:0xC scope:local align:4 +@446 = .data:0x802C8E1C; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802C8E30; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802C8E3C; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802C8E58; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802C8E7C; // type:object size:0x30 scope:global align:4 +@655 = .data:0x802C8EC8; // type:object size:0xC scope:local align:4 data:string +@736 = .data:0x802C8ED4; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x802C8EE0; // type:label scope:local +@1462 = .data:0x802C8EE0; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802C8EEC; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802C8EF8; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802C8F04; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802C8F10; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802C8F20; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802C8F2C; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802C8F38; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802C8F4C; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802C8F60; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802C8F70; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802C8F7C; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802C8F88; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802C8F9C; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802C8FA8; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802C8FB4; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802C8FD8; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802C8FE8; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802C9014; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802C9048; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802C90D0; // type:label scope:local +@734 = .data:0x802C90D0; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802C90E0; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802C90EC; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802C9100; // type:object size:0xC scope:local align:4 +@793 = .data:0x802C910C; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802C9118; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802C912C; // type:object size:0x13 scope:local align:4 +@1048 = .data:0x802C9140; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802C9154; // type:object size:0xB scope:local align:4 data:string +@1052 = .data:0x802C9160; // type:object size:0xC scope:local align:4 +@1053 = .data:0x802C916C; // type:object size:0xA scope:local align:4 data:string +@1054 = .data:0x802C9178; // type:object size:0x14 scope:local align:4 +@1049 = .data:0x802C918C; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802C91A8; // type:object size:0x38 scope:global align:4 +@1061 = .data:0x802C91E0; // type:object size:0xC scope:local align:4 data:string +@1063 = .data:0x802C91EC; // type:object size:0x9 scope:local align:4 data:string +@1062 = .data:0x802C91F8; // type:object size:0xC scope:local align:4 +@1064 = .data:0x802C9218; // type:object size:0xA scope:local align:4 data:string +@1065 = .data:0x802C9224; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C9248; // type:label scope:local +@657 = .data:0x802C9248; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802C9258; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802C9264; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802C9278; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802C9290; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802C92A4; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802C92B8; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802C92C8; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802C92D4; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802C92E0; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802C92EC; // type:object size:0xC scope:local align:4 +@905 = .data:0x802C92F8; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802C930C; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802C931C; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802C9338; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802C9348; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802C936C; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802C9378; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802C93A4; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802C93D8; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802C9424; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802C9430; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802C9464; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802C950C; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802C9558; // type:label scope:local +@661 = .data:0x802C9558; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C9570; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802C9584; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802C9590; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802C959C; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802C95A8; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802C95B4; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802C95C0; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C95CC; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802C95D8; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802C95E4; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802C95F0; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802C95FC; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802C9608; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802C9614; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802C9620; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802C962C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802C9638; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802C9644; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802C9650; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802C965C; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802C97C4; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802C97D8; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802C97E4; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802C97F4; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802C9800; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802C9814; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C9830; // type:label scope:local +@853 = .data:0x802C9830; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802C9840; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802C984C; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802C9858; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802C9868; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802C9878; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802C9888; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802C9894; // type:object size:0xC scope:local align:4 +@887 = .data:0x802C98A0; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802C98AC; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802C98C0; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802C98DC; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C9918; // type:label scope:local +@1114 = .data:0x802C9918; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802C9928; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802C9934; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C9940; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802C994C; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802C9958; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802C9964; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802C9970; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802C997C; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802C99AC; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802C99C4; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802C99D8; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802C99E4; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802C99F4; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802C9A04; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802C9A14; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802C9A20; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802C9A2C; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802C9A38; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802C9A4C; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802C9A68; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802C9AA0; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802C9AAC; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802C9AB8; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802C9ACC; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802C9AD8; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802C9AE4; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802C9B08; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802C9B18; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802C9B44; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802C9B78; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802C9BF4; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802C9C00; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802C9C0C; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802C9C2C; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802C9C48; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802C9C5C; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802C9C70; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802C9C80; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802C9C90; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802C9CCC; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802C9CE0; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802C9CEC; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802C9CF8; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802C9D04; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802C9D18; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802C9D24; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802C9D30; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802C9D48; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802C9D58; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802C9D6C; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802C9D88; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802C9DD8; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802C9DF4; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802C9E00; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802C9E0C; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802C9E20; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802C9E38; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802C9E4C; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802C9E58; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802C9E68; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802C9E74; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802C9E88; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802C9E94; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802C9EB8; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802C9EE4; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802CA040; // type:label scope:local +@661 = .data:0x802CA040; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802CA058; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802CA06C; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802CA088; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802CA09C; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802CA0A8; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802CA0B8; // type:object size:0xC scope:local align:4 +@713 = .data:0x802CA0C4; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802CA0D8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CA0F8; // type:label scope:local +@1206 = .data:0x802CA0F8; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802CA104; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802CA110; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802CA11C; // type:object size:0x9 scope:local align:4 +@1265 = .data:0x802CA128; // type:object size:0x26 scope:local align:4 data:string +@1266 = .data:0x802CA150; // type:object size:0x19 scope:local align:4 data:string +@1290 = .data:0x802CA16C; // type:object size:0xE scope:local align:4 data:string +@1292 = .data:0x802CA17C; // type:object size:0xB scope:local align:4 data:string +@1294 = .data:0x802CA188; // type:object size:0xC scope:local align:4 +@1295 = .data:0x802CA194; // type:object size:0xA scope:local align:4 data:string +@1296 = .data:0x802CA1A0; // type:object size:0x14 scope:local align:4 +@1291 = .data:0x802CA1B4; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802CA1D0; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CA208; // type:label scope:local +@445 = .data:0x802CA208; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CA21C; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802CA22C; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802CA240; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802CA24C; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802CA258; // type:object size:0xC scope:global align:4 +@667 = .data:0x802CA264; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802CA27C; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802CA290; // type:object size:0xC scope:local align:4 +@671 = .data:0x802CA29C; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802CA2AC; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802CA2C0; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802CA2DC; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802CA2EC; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802CA2FC; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802CA30C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CA318; // type:label scope:local +@445 = .data:0x802CA318; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CA32C; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802CA33C; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802CA348; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802CA354; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802CA364; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802CA370; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802CA37C; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802CA38C; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802CA398; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802CA3A4; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802CA3B4; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802CA3C0; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802CA3CC; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802CA3D8; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802CA3E4; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802CA3F0; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802CA3FC; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802CA408; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802CA418; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802CA428; // type:label scope:local +@441 = .data:0x802CA428; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802CA438; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802CA444; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802CAC48; // type:label scope:local +@410 = .data:0x802CAC48; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802CAC58; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802CAC64; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802CAC74; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802CAC84; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802CACC4; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802CACE4; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802CACF4; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CAD38; // type:label scope:local +@657 = .data:0x802CAD38; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802CAD4C; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802CAD5C; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802CAD68; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802CAD74; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802CAD80; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802CAD8C; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802CAD98; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802CADA4; // type:object size:0x18 scope:global align:4 +@774 = .data:0x802CADBC; // type:object size:0x2A scope:local align:4 data:string +@775 = .data:0x802CADE8; // type:object size:0x2B scope:local align:4 data:string +@865 = .data:0x802CAE14; // type:object size:0x24 scope:local align:4 data:string +@867 = .data:0x802CAE38; // type:object size:0xD scope:local align:4 data:string +@869 = .data:0x802CAE48; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802CAE54; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802CAE60; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CAE80; // type:label scope:local +@1106 = .data:0x802CAE80; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802CAE98; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802CAEAC; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802CAEBC; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802CAECC; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802CAF08; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802CAF1C; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802CAF28; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802CAF38; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802CAF44; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802CAF58; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CAF78; // type:label scope:local +@1783 = .data:0x802CAF78; // type:object size:0x14 scope:local align:4 data:string +@1793 = .data:0x802CAF8C; // type:object size:0x10 scope:local align:4 data:string +@1931 = .data:0x802CAF9C; // type:object size:0xD scope:local align:4 data:string +@1932 = .data:0x802CAFAC; // type:object size:0xD scope:local align:4 data:string +@1933 = .data:0x802CAFBC; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802CAFD0; // type:object size:0x1A scope:local align:4 data:string +@1940 = .data:0x802CAFEC; // type:object size:0xD scope:local align:4 data:string +@2307 = .data:0x802CAFFC; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802CB010; // type:object size:0xC scope:local align:4 data:string +@2309 = .data:0x802CB01C; // type:object size:0xD scope:local align:4 data:string +@2310 = .data:0x802CB02C; // type:object size:0x11 scope:local align:4 data:string +@2323 = .data:0x802CB040; // type:object size:0x12 scope:local align:4 data:string +@2324 = .data:0x802CB054; // type:object size:0x10 scope:local align:4 data:string +@2327 = .data:0x802CB064; // type:object size:0x9 scope:local align:4 data:string +@2328 = .data:0x802CB070; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802CB07C; // type:object size:0x14 scope:local align:4 +@2332 = .data:0x802CB090; // type:object size:0x1C scope:local align:4 +@2325 = .data:0x802CB0AC; // type:object size:0x24 scope:local align:4 +__vt__15PaniTestSection = .data:0x802CB0D0; // type:object size:0x34 scope:global align:4 +@2341 = .data:0x802CB104; // type:object size:0x14 scope:local align:4 data:string +@2340 = .data:0x802CB118; // type:object size:0x24 scope:local align:4 +__vt__12PaniTestNode = .data:0x802CB13C; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802CB1A8; // type:label scope:local +@410 = .data:0x802CB1A8; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802CB1BC; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802CB1CC; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802CB1E0; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802CB1F4; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802CB204; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802CB21C; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802CB228; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CB23C; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802CB250; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802CB260; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802CB274; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802CB280; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CB294; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CB2A8; // type:label scope:local +@1481 = .data:0x802CB2A8; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802CB2B8; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802CB2C4; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802CB2D4; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802CB300; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802CB30C; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802CB318; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802CB324; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802CB338; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CB378; // type:label scope:local +@1122 = .data:0x802CB378; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802CB390; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802CB3A4; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802CB3B8; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802CB3C4; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802CB3D0; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802CB3E4; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802CB400; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CB450; // type:label scope:local +@717 = .data:0x802CB450; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CB468; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802CB47C; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802CB494; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802CB4A0; // type:object size:0xC scope:local align:4 +@855 = .data:0x802CB4AC; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802CB4C0; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802CB4FC; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802CB514; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802CB528; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802CB53C; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802CB578; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802CB588; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802CB59C; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802CB5B0; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802CB5CC; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802CB608; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802CB61C; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802CB638; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802CB674; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802CB68C; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802CB69C; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802CB6B0; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802CB6CC; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CB708; // type:label scope:local +@446 = .data:0x802CB708; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802CB724; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802CB73C; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802CB74C; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802CB760; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802CB770; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802CB780; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802CB79C; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802CB7B8; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802CB7C8; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802CB7DC; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802CB7F0; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802CB800; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802CB81C; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802CB83C; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802CB84C; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802CB860; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802CB870; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802CB87C; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802CB898; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802CB8B4; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802CB8C4; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802CB8D8; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802CB8E8; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802CB8F8; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802CB914; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802CB930; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802CB940; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802CB958; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802CB96C; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802CB97C; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802CB99C; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802CB9BC; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802CB9D0; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802CB9E4; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802CB9F4; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802CBA04; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802CBA20; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802CBA3C; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802CBA4C; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802CBA64; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802CBA7C; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802CBA90; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802CBAB0; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802CBAD4; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802CBAE8; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802CBAF8; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802CBB0C; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802CBB1C; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802CBB30; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802CBB48; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802CBB5C; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802CBB74; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802CBB90; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802CBBA4; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802CBBB8; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802CBBD0; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802CBBE4; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802CBC00; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802CBC18; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802CBC24; // type:object size:0xC scope:local align:4 +@867 = .data:0x802CBC30; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802CBC44; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802CBC60; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CBCB0; // type:label scope:local +@698 = .data:0x802CBCB0; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802CBCBC; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802CBCD0; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802CBCDC; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802CBCF0; // type:object size:0xC scope:local align:4 +@853 = .data:0x802CBCFC; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802CBD10; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802CBD20; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802CBD30; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802CBD48; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802CBD54; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802CBD64; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802CBD78; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802CBD88; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802CBD94; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802CBDA4; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802CBDB4; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802CBDCC; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802CBDD8; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802CBDE8; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802CBE00; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802CBE0C; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802CBE1C; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802CBE2C; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802CBE3C; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802CBE48; // type:object size:0xC scope:local align:4 +@922 = .data:0x802CBE54; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802CBE68; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802CBEA4; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802CBEB8; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802CBECC; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802CBF08; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802CBF44; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802CBF54; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CBF68; // type:label scope:local +@698 = .data:0x802CBF68; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802CBF7C; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802CBF8C; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802CBFA8; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802CBFB8; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802CBFD0; // type:object size:0xC scope:local align:4 +@762 = .data:0x802CBFDC; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802CBFF0; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802CC004; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802CC01C; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802CC030; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802CC044; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802CC058; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802CC064; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802CC078; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802CC090; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802CC09C; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802CC0B0; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CC0C8; // type:label scope:local +@717 = .data:0x802CC0C8; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CC0E0; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802CC0F4; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802CC108; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802CC114; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802CC120; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802CC134; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802CC170; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802CC188; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802CC198; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802CC1AC; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802CC1E8; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802CC200; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802CC214; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802CC26C; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802CC284; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802CC298; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802CC2AC; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802CC2C8; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802CC304; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802CC31C; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802CC330; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802CC36C; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802CC384; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802CC398; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802CC3D4; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802CC3F0; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802CC40C; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802CC448; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802CC45C; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802CC470; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802CC4AC; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802CC4C8; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802CC4DC; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802CC518; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802CC52C; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802CC538; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802CC564; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802CC578; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802CC590; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802CC5A4; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802CC5C0; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802CC5FC; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802CC638; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802CC648; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802CC65C; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CC698; // type:label scope:local +@1231 = .data:0x802CC698; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802CC6A4; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802CC6B4; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802CC6C0; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802CC6E8; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802CC6F4; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802CC70C; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802CC71C; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802CC728; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802CC734; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802CC750; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CC770; // type:label scope:local +@1686 = .data:0x802CC770; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802CC788; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802CC79C; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802CC7B4; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802CC7C0; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802CC7D0; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802CC7DC; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802CC7F0; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802CC80C; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802CC820; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802CC834; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802CC850; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802CC868; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802CC874; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802CC890; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802CC8A0; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802CC8AC; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802CC8C8; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802CC8DC; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802CC8E8; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802CC904; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802CC93C; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802CC950; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802CC95C; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802CC96C; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802CC978; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802CC98C; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802CC998; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802CC9AC; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802CC9C0; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802CC9CC; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802CC9EC; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802CC9F8; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802CCA14; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802CCA2C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802CCA38; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802CCA54; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802CCA6C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802CCA78; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802CCA94; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802CCAAC; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802CCAC8; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802CCAD4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCAF0; // type:label scope:local +@1211 = .data:0x802CCAF0; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802CCB04; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802CCB14; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802CCB30; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802CCB3C; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802CCB48; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802CCB64; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802CCB84; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802CCB90; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802CCBAC; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802CCBC0; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802CCBCC; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802CCBE8; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802CCBFC; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802CCC08; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802CCC24; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802CCC38; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802CCC44; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802CCC60; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802CCC78; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802CCC84; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCCA0; // type:label scope:local +@1730 = .data:0x802CCCA0; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802CCCB0; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802CCCBC; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802CCCC8; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802CCCD8; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802CCCE8; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802CCCF8; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802CCD14; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802CCD20; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802CCD34; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802CCD40; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802CCD58; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802CCD6C; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802CCD88; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802CCDA8; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802CCDC0; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802CCDD4; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802CCDE0; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802CCDF4; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802CCE10; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802CCE24; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802CCE30; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802CCE40; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802CCE4C; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802CCE6C; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802CCE7C; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802CCE90; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802CCEB4; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802CCEC8; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802CCED4; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802CCEF0; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802CCF00; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802CCF0C; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802CCF28; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802CCF38; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802CCF44; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802CCF7C; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802CCF90; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802CCFA0; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802CCFAC; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802CCFB8; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802CCFCC; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802CCFF4; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802CD00C; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802CD018; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802CD024; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802CD038; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802CD048; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802CD064; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802CD088; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802CD0B8; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802CD0D4; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802CD0F8; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802CD128; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802CD13C; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802CD160; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CD190; // type:label scope:local +@1729 = .data:0x802CD190; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802CD1A0; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802CD1AC; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802CD1B8; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802CD1C8; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802CD1D8; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802CD1F4; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802CD208; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802CD228; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802CD244; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802CD250; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802CD264; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802CD278; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802CD28C; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802CD2A0; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802CD2B0; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802CD2BC; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802CD2C8; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802CD2DC; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802CD304; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802CD318; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802CD324; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802CD330; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802CD344; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802CD354; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802CD370; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802CD394; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802CD3C4; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802CD3E0; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802CD3EC; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802CD400; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802CD40C; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802CD424; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802CD438; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802CD454; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802CD474; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802CD48C; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802CD498; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802CD4B4; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802CD4CC; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802CD4D8; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802CD4F4; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802CD510; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802CD51C; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802CD538; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802CD564; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802CD570; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802CD58C; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802CD5B4; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802CD5C0; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802CD5DC; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802CD5F8; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802CD604; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802CD620; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802CD640; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802CD64C; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802CD668; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802CD688; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802CD698; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802CD6A4; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802CD6C0; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802CD6D4; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802CD6F0; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802CD710; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802CD748; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802CD768; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802CD774; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802CD790; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802CD7A4; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802CD7B0; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802CD7CC; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802CD7EC; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802CD7F8; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802CD814; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802CD830; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802CD83C; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802CD858; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802CD874; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802CD880; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802CD89C; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802CD8B4; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802CD8C0; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802CD8DC; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802CD8F4; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802CD900; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802CD91C; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802CD938; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802CD944; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802CD960; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802CD984; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802CD990; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802CD9AC; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802CD9C8; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802CD9D4; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802CD9F0; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802CDA1C; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802CDA2C; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802CDA38; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802CDA4C; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802CDA68; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802CDA90; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802CDA9C; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802CDAB8; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802CDACC; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802CDAD8; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802CDAE8; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802CDAF4; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802CDB14; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802CDB28; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802CDB60; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802CDB7C; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802CDB88; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802CDBA4; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802CDBC4; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802CDBD0; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CDBEC; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802CDC08; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802CDC14; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802CDC30; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802CDC50; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802CDC64; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802CDC70; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802CDC84; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802CDC98; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802CDCC0; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802CDCD4; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802CDCE0; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802CDD18; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802CDD2C; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802CDD50; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CDD80; // type:label scope:local +@1111 = .data:0x802CDD80; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802CDD98; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802CDDAC; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802CDDC8; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802CDDD4; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802CDDF0; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802CDDFC; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802CDE10; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802CDE2C; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802CDE44; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802CDE58; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802CDE74; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802CDE8C; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802CDEA0; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802CDEBC; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802CDED8; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802CDEF0; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802CDEFC; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802CDF18; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802CDF34; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802CDF40; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802CDF5C; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802CDF6C; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802CDF78; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CDF98; // type:label scope:local +@1716 = .data:0x802CDF98; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802CDFB0; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802CDFC4; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802CDFDC; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802CDFE8; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802CDFFC; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802CE008; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802CE01C; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802CE058; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802CE07C; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802CE088; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CE0A4; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802CE0C8; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802CE0D4; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802CE0F0; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802CE100; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802CE10C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE128; // type:label scope:local +@1728 = .data:0x802CE128; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802CE138; // type:object size:0xA scope:local align:4 data:string +@1951 = .data:0x802CE144; // type:object size:0x1A scope:local align:4 data:string +@2003 = .data:0x802CE160; // type:object size:0xD scope:local align:4 data:string +@2152 = .data:0x802CE170; // type:object size:0x18 scope:local align:4 data:string +@2154 = .data:0x802CE188; // type:object size:0xA scope:local align:4 data:string +@2153 = .data:0x802CE194; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802CE1A0; // type:object size:0x1C scope:global align:4 +@2161 = .data:0x802CE1BC; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x802CE1D0; // type:object size:0xD scope:local align:4 data:string +@2164 = .data:0x802CE1E0; // type:object size:0xC scope:local align:4 data:string +@2165 = .data:0x802CE1EC; // type:object size:0xC scope:local align:4 +@2162 = .data:0x802CE1F8; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802CE20C; // type:object size:0x28 scope:global align:4 +@2166 = .data:0x802CE234; // type:object size:0x14 scope:local align:4 data:string +@2169 = .data:0x802CE248; // type:object size:0x9 scope:local align:4 data:string +@2170 = .data:0x802CE254; // type:object size:0xC scope:local align:4 +@2172 = .data:0x802CE260; // type:object size:0x14 scope:local align:4 +@2173 = .data:0x802CE274; // type:object size:0xF scope:local align:4 data:string +@2174 = .data:0x802CE284; // type:object size:0x1C scope:local align:4 +@2167 = .data:0x802CE2A0; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802CE2C4; // type:object size:0x30 scope:weak align:4 +@2181 = .data:0x802CE2F4; // type:object size:0x17 scope:local align:4 data:string +@2182 = .data:0x802CE30C; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802CE318; // type:object size:0x1C scope:global align:4 +@2183 = .data:0x802CE334; // type:object size:0x1A scope:local align:4 data:string +@2184 = .data:0x802CE350; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802CE35C; // type:object size:0x1C scope:global align:4 +@2186 = .data:0x802CE378; // type:object size:0x12 scope:local align:4 data:string +@2187 = .data:0x802CE38C; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802CE3A0; // type:object size:0x28 scope:global align:4 +@2189 = .data:0x802CE3E4; // type:object size:0x14 scope:local align:4 data:string +@2190 = .data:0x802CE3F8; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802CE41C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CE450; // type:label scope:local +@1669 = .data:0x802CE450; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802CE468; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802CE47C; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802CE498; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802CE4A4; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802CE4B0; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CE4CC; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802CE4E8; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802CE4F4; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CE510; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802CE524; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802CE530; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802CE540; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802CE54C; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802CE56C; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802CE588; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802CE594; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802CE5C8; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802CE5E8; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802CE5F4; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802CE610; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802CE62C; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802CE638; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802CE654; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802CE670; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802CE67C; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802CE698; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802CE6AC; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802CE6B8; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802CE6D4; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802CE6EC; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802CE6F8; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802CE714; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802CE72C; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802CE738; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802CE754; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802CE76C; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802CE778; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE798; // type:label scope:local +@1793 = .data:0x802CE798; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802CE7A8; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802CE7B4; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802CE7D0; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802CE7E4; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802CE7F8; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802CE80C; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802CE81C; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802CE830; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802CE848; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802CE85C; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802CE86C; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802CE87C; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802CE890; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802CE8AC; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802CE8C8; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802CE8D4; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802CE8E8; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802CE8F4; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802CE90C; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802CE920; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802CE93C; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802CE95C; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802CE980; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802CE98C; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802CE9A8; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802CE9BC; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802CE9C8; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802CE9D8; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802CE9E4; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802CEA1C; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802CEA54; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802CEA78; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802CEA84; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802CEAA0; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802CEAC0; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802CEACC; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802CEAE8; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802CEB04; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802CEB10; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802CEB2C; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802CEB40; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802CEB50; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802CEB5C; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802CEB68; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802CEB7C; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802CEBA4; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802CEBB4; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802CEBC0; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802CEBDC; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802CEBEC; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802CEC30; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802CEC44; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802CEC50; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802CEC5C; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802CEC70; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802CEC80; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802CEC9C; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802CECC0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CECF0; // type:label scope:local +@1211 = .data:0x802CECF0; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802CED08; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802CED1C; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802CED34; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802CED40; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802CED4C; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802CED68; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802CED80; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802CED8C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CEDA8; // type:label scope:local +@1796 = .data:0x802CEDA8; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802CEDB8; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802CEDC4; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802CEDD4; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802CEDE4; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802CEDFC; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802CEE18; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802CEE24; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802CEE34; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802CEE50; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802CEE6C; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802CEE80; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802CEEA0; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802CEEB4; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802CEED4; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802CEEE0; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802CEEF8; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802CEF14; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802CEF20; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802CEF2C; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802CEF48; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802CEF60; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802CEF6C; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802CEF88; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802CEFA4; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802CEFB0; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802CEFCC; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802CEFE4; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802CEFF0; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802CF00C; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802CF024; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802CF030; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802CF04C; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802CF064; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802CF070; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802CF08C; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802CF0A8; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802CF0B8; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802CF0C4; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802CF0D8; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802CF0F4; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802CF110; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802CF124; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802CF140; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802CF154; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802CF164; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802CF170; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802CF17C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802CF190; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802CF1B8; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802CF1D0; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802CF1DC; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802CF1E8; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802CF1FC; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802CF20C; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802CF228; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802CF24C; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802CF27C; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802CF29C; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802CF2A8; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802CF2C4; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802CF2E0; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802CF2EC; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802CF308; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802CF31C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802CF330; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802CF374; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802CF38C; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802CF3B0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CF3E0; // type:label scope:local +@1111 = .data:0x802CF3E0; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802CF3F8; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802CF40C; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802CF430; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802CF43C; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802CF448; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802CF464; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802CF47C; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802CF488; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802CF4A4; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802CF4C0; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802CF4CC; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802CF4E8; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802CF500; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802CF50C; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802CF528; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802CF544; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802CF550; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802CF56C; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802CF584; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802CF594; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802CF5A0; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802CF5B4; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802CF5D0; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802CF5E4; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802CF5F0; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802CF60C; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802CF624; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802CF630; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802CF64C; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802CF664; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802CF678; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802CF694; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802CF6B0; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802CF6C4; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802CF6E4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CF700; // type:label scope:local +@1669 = .data:0x802CF700; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CF714; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802CF724; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802CF748; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802CF754; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802CF760; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802CF77C; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802CF790; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802CF79C; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802CF7B8; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802CF7DC; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802CF7E8; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802CF804; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802CF81C; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802CF82C; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802CF838; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802CF854; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802CF868; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802CF884; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802CF8A4; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802CF8CC; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802CF8E8; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802CF908; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802CF91C; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802CF928; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802CF944; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802CF968; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802CF984; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802CF9A4; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802CF9C0; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802CF9CC; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802CF9E8; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802CFA00; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802CFA1C; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802CFA3C; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802CFA54; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802CFA70; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802CFA90; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802CFAA0; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802CFAAC; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802CFAD0; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802CFAE4; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802CFB00; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802CFB20; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802CFB34; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802CFB40; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802CFB5C; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802CFB70; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802CFB8C; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802CFBAC; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802CFBC0; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802CFBDC; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802CFBFC; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802CFC1C; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802CFC38; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802CFC58; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802CFC6C; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802CFC78; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802CFC94; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802CFCB0; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802CFCBC; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802CFCD8; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802CFCF0; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802CFCFC; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802CFD18; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802CFD30; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802CFD3C; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802CFD58; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802CFD74; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802CFD80; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802CFD9C; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802CFDB0; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802CFDBC; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802CFDD8; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802CFDEC; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802CFDF8; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802CFE14; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802CFE2C; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802CFE38; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802CFE54; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802CFE70; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802CFE7C; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802CFE98; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802CFEB4; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802CFEC0; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802CFEDC; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802CFF00; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802CFF0C; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802CFF28; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802CFF48; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802CFF54; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802CFF70; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802CFF88; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802CFF94; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802CFFB0; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802CFFC8; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802CFFD4; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802CFFF0; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802D0004; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802D0010; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802D002C; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802D0048; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802D0054; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D0070; // type:label scope:local +@1736 = .data:0x802D0070; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802D0080; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802D008C; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802D00A0; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802D00B4; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802D00CC; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802D00E8; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802D0100; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802D011C; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802D0134; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802D0150; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802D0168; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802D0184; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802D019C; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802D01B8; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802D01C8; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802D01D8; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802D01FC; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802D0208; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802D0214; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802D0230; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802D0254; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802D0260; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802D027C; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802D0298; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802D02A4; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802D02C0; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802D02D8; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802D02E4; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802D0300; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802D0318; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802D0324; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802D0340; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802D035C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802D0368; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802D0384; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802D03A4; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802D03B0; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802D03CC; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802D03F0; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802D03FC; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802D0418; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802D0438; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802D0444; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802D0460; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802D047C; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802D0488; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802D04A4; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802D04C0; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802D04CC; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802D04E8; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802D0508; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802D0514; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802D0530; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802D0568; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802D057C; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802D0588; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802D0598; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802D05A4; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802D05C4; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802D05D8; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802D05F8; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802D0610; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802D061C; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802D0638; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802D0654; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802D0660; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802D067C; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802D0698; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802D06A4; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802D06C0; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802D06D8; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802D06E4; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802D0700; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802D0718; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802D0724; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802D0740; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802D0760; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802D076C; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802D0788; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802D07A4; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802D07B0; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802D07CC; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802D07E4; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802D07F0; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802D080C; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802D0828; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802D0834; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802D0850; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802D0870; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802D0880; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802D088C; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802D08A8; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802D08BC; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802D08D8; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802D08F8; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802D0918; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802D092C; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802D0950; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802D0970; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802D0984; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802D0990; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802D09A4; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802D09B4; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802D09C0; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802D09CC; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802D09E0; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802D0A08; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802D0A18; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802D0A40; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802D0A50; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802D0A94; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802D0AA8; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802D0AB4; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802D0AC0; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802D0AD4; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802D0AE4; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802D0B00; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802D0B24; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D0B58; // type:label scope:local +@1794 = .data:0x802D0B58; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802D0B68; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802D0B74; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802D0B90; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802D0BA0; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802D0BB4; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802D0BC8; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802D0BE4; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802D0BF8; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802D0C14; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802D0C28; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802D0C3C; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802D0C54; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802D0C6C; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802D0C8C; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802D0CAC; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802D0CC8; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802D0CD4; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802D0CE8; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802D0CF4; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802D0D0C; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802D0D20; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802D0D3C; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802D0D5C; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802D0D7C; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802D0D88; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802D0DA4; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802D0DC0; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802D0DCC; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802D0DE8; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802D0E04; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802D0E10; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802D0E2C; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802D0E40; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802D0E4C; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802D0E5C; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802D0E68; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802D0E88; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802D0EC0; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802D0EDC; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802D0EE8; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802D0F04; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802D0F20; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802D0F2C; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802D0F48; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802D0F64; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802D0F70; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802D0F8C; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802D0FA4; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802D0FB0; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802D0FCC; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802D0FE8; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802D0FF4; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802D1010; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802D1024; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802D105C; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802D1074; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802D1080; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802D109C; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802D10C0; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802D10CC; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802D10E8; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802D10FC; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802D110C; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802D1118; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802D1124; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802D1138; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802D1160; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802D1170; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802D11B4; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802D11CC; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802D11D8; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802D11E4; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802D11F8; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802D1208; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802D1224; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802D1248; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802D1278; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802D1290; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802D12B4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D12E8; // type:label scope:local +@1765 = .data:0x802D12E8; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802D12F4; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802D130C; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802D1330; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802D1340; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802D135C; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802D1368; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802D1374; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802D1390; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802D13AC; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802D13B8; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802D13D4; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802D13EC; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802D13F8; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802D1414; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802D1430; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802D143C; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802D1458; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802D146C; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802D1478; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802D1494; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802D14AC; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802D14B8; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802D14D4; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802D14EC; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802D14FC; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802D1508; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802D151C; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802D1530; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802D154C; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802D1568; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802D157C; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802D158C; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802D15A0; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802D15BC; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802D15D8; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802D15EC; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802D1600; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802D161C; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802D1630; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802D163C; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802D164C; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802D1658; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802D1678; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802D168C; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802D16C4; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802D16D4; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802D16E4; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802D16F0; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802D16FC; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802D1710; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802D1754; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802D1768; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802D1774; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802D1780; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802D1794; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802D17A4; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802D17C0; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802D17E4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D1818; // type:label scope:local +@1680 = .data:0x802D1818; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802D1830; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802D1844; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802D1858; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802D1864; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802D1870; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802D188C; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802D189C; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802D18A8; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802D18C4; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802D18D8; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802D18E4; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802D1900; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802D1918; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802D1924; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802D1940; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802D1954; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802D1960; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802D197C; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802D1990; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802D199C; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802D19B8; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802D19CC; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802D19D8; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802D19E8; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802D19F4; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802D1A2C; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802D1A4C; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802D1A58; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802D1A74; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802D1A94; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802D1AA0; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802D1ABC; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802D1AD0; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802D1AE0; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802D1AEC; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802D1B00; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802D1B1C; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802D1B48; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802D1B54; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802D1B70; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802D1B8C; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802D1B98; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802D1BB4; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802D1BC4; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802D1BD0; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802D1BEC; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802D1C04; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802D1C10; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802D1C2C; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802D1C44; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802D1C50; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802D1C6C; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802D1C88; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802D1C94; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802D1CB0; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802D1CC0; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802D1CD4; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802D1CF0; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802D1D0C; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802D1D18; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802D1D34; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802D1D48; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802D1D54; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802D1D70; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802D1D84; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802D1D90; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802D1DAC; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802D1DBC; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802D1DC8; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802D1DE4; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802D1DF8; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802D1E04; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802D1E20; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802D1E34; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802D1E40; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802D1E5C; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802D1E6C; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802D1E78; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D1E98; // type:label scope:local +@1727 = .data:0x802D1E98; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802D1EA8; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802D1EB4; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802D1EC4; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802D1ED8; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802D1EF0; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802D1F14; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802D1F34; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802D1F48; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802D1F6C; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802D1F78; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802D1F8C; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802D1F98; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802D1FB0; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802D1FC4; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802D1FE0; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802D2000; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802D201C; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802D2038; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802D2058; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802D2070; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802D207C; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802D2098; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802D20B0; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802D20BC; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802D20D8; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802D20F8; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802D2104; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802D2120; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802D2134; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802D2140; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802D2150; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802D215C; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802D217C; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802D21B4; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802D21D0; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802D21E0; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802D21EC; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802D2200; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802D221C; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802D2230; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802D2268; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802D2280; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802D229C; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802D22B0; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802D22CC; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802D22EC; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802D230C; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802D2318; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802D2334; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802D2348; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802D2358; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802D2364; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802D2370; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802D2384; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802D23AC; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802D23BC; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802D2400; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802D241C; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802D2428; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802D2434; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802D2448; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802D2458; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802D2474; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802D2498; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802D24C8; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802D24E0; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802D2504; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2538; // type:label scope:local +@1769 = .data:0x802D2538; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802D2548; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802D2554; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802D2568; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802D2578; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802D2594; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802D25A0; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802D25AC; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802D25C8; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802D25DC; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802D25EC; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802D25F8; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802D2604; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802D2618; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802D2640; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802D2658; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802D2664; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802D2670; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802D2684; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802D2694; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802D26B0; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802D26D4; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802D2704; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802D2718; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802D273C; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802D276C; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802D27A4; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802D27B8; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802D27C4; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802D27D4; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802D27E0; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802D2800; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802D2814; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802D2834; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802D2848; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802D2854; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802D2888; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802D28A8; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802D28B4; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802D28D0; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802D28F0; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802D28FC; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802D2918; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802D2934; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802D2940; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802D295C; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802D2970; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802D2984; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802D29AC; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802D29BC; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802D2A00; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802D2A14; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802D2A38; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2A68; // type:label scope:local +@1669 = .data:0x802D2A68; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802D2A7C; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802D2A8C; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802D2AA4; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802D2AB0; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802D2AC0; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D2ACC; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802D2AE0; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802D2AFC; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802D2B14; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802D2B20; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802D2B3C; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802D2B50; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802D2B5C; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802D2B78; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D2B98; // type:label scope:local +@1669 = .data:0x802D2B98; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802D2BAC; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802D2BBC; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802D2BD4; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802D2BE0; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802D2BF0; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802D2BFC; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802D2C10; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D2C30; // type:label scope:local +@1106 = .data:0x802D2C30; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802D2C3C; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802D2C48; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802D2C5C; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802D2C68; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802D2C78; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802D2C84; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802D2C98; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802D2CC4; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802D2CF8; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802D2D34; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802D2D78; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D2F88; // type:label scope:local +@1206 = .data:0x802D2F88; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802D2FA4; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802D2FBC; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802D2FD4; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802D2FE0; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802D2FEC; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802D3000; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802D301C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D3068; // type:label scope:local +@1787 = .data:0x802D3068; // type:object size:0xE scope:local align:4 data:string +@2477 = .data:0x802D3078; // type:object size:0x23 scope:local align:4 data:string +@4670 = .data:0x802D309C; // type:object size:0x11 scope:local align:4 data:string +@4672 = .data:0x802D30B0; // type:object size:0xA scope:local align:4 data:string +@4673 = .data:0x802D30BC; // type:object size:0xE scope:local align:4 data:string +@4674 = .data:0x802D30CC; // type:object size:0xC scope:local align:4 +@4671 = .data:0x802D30D8; // type:object size:0x14 scope:local align:4 +@4676 = .data:0x802D30F8; // type:object size:0x11 scope:local align:4 data:string +@4677 = .data:0x802D310C; // type:object size:0x14 scope:local align:4 +@4681 = .data:0x802D312C; // type:object size:0xC scope:local align:4 data:string +@4690 = .data:0x802D317C; // type:object size:0xC scope:local align:4 data:string +@4692 = .data:0x802D3188; // type:object size:0x9 scope:local align:4 data:string +@4691 = .data:0x802D3194; // type:object size:0xC scope:local align:4 +@4693 = .data:0x802D31B4; // type:object size:0xD scope:local align:4 data:string +@4695 = .data:0x802D31D0; // type:object size:0x11 scope:local align:4 data:string +@4697 = .data:0x802D31E4; // type:object size:0xC scope:local align:4 data:string +@4696 = .data:0x802D31F0; // type:object size:0xC scope:local align:4 +@4704 = .data:0x802D321C; // type:object size:0xB scope:local align:4 data:string +@4712 = .data:0x802D325C; // type:object size:0x14 scope:local align:4 data:string +@4715 = .data:0x802D327C; // type:object size:0xC scope:local align:4 data:string +@4716 = .data:0x802D3288; // type:object size:0xD scope:local align:4 data:string +@4717 = .data:0x802D3298; // type:object size:0x9 scope:local align:4 data:string +@4718 = .data:0x802D32A4; // type:object size:0x14 scope:local align:4 +@4714 = .data:0x802D32B8; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802D32E4; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802D34E8; // type:label scope:local +@1379 = .data:0x802D34E8; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802D34FC; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802D350C; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802D3520; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802D352C; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802D353C; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802D3548; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802D355C; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802D3568; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802D357C; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802D359C; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802D35B0; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802D35E8; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802D35FC; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802D3610; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802D361C; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802D3638; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802D364C; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802D3658; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802D3670; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802D3684; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802D3690; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802D36A8; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802D36BC; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802D36C8; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802D36E0; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802D36F4; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802D3700; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802D3718; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802D372C; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802D3738; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802D3754; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802D3768; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802D3774; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802D378C; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802D37A0; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802D37AC; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802D37CC; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802D37E0; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802D37EC; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802D3808; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802D381C; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802D3828; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802D3840; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802D3854; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802D3860; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802D3884; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802D3898; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802D38A4; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802D38C8; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802D38DC; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802D38E8; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802D3908; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802D391C; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802D3928; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802D393C; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802D3950; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802D395C; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802D3974; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802D3988; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802D3994; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802D39A8; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802D39BC; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802D39C8; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802D39DC; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802D39F0; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802D39FC; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802D3A10; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802D3A24; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802D3A30; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802D3A44; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802D3A58; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802D3A64; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802D3A7C; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802D3A90; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D3AA0; // type:label scope:local +@1411 = .data:0x802D3AA0; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802D3AB4; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802D3AC4; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802D3AD8; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802D3AE4; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802D3AF0; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802D3B48; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802D3B58; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802D3B64; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802D3B90; // type:label scope:local +@1206 = .data:0x802D3B90; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802D3B9C; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802D3BA8; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802D3BB4; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802D3BC0; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802D3C4C; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802D3CD8; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802D3CE8; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802D3CF4; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802D3D04; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802D3D14; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802D3D28; // type:object size:0x10 scope:local align:4 data:string +@1520 = .data:0x802D3D38; // type:object size:0x9 scope:local align:4 data:string +@1521 = .data:0x802D3D44; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802D3D50; // type:object size:0x14 scope:local align:4 +@1524 = .data:0x802D3D64; // type:object size:0xC scope:local align:4 data:string +@1525 = .data:0x802D3D70; // type:object size:0xA scope:local align:4 data:string +@1526 = .data:0x802D3D7C; // type:object size:0x24 scope:local align:4 +@1527 = .data:0x802D3DA0; // type:object size:0xE scope:local align:4 data:string +@1528 = .data:0x802D3DB0; // type:object size:0x2C scope:local align:4 +@1518 = .data:0x802D3DDC; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802D3E10; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802D3E98; // type:label scope:local +@1206 = .data:0x802D3E98; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802D3EA8; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802D3EB4; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802D3EC0; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802D3ED4; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802D3EE0; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802D3EF0; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802D3EFC; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802D3F10; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802D3F3C; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802D3F70; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D4180; // type:label scope:local +@991 = .data:0x802D4180; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802D4194; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802D41A4; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802D41B0; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802D41BC; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802D41CC; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802D41D8; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802D41E4; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802D41F4; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802D4208; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802D4214; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802D4220; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802D4230; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802D4244; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802D4258; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802D426C; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802D4284; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802D429C; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802D42B4; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802D42CC; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D42E4; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802D42FC; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802D4310; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802D4320; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802D4330; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802D4340; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802D4350; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802D4360; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802D4374; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802D4388; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802D4398; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802D43AC; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802D43BC; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802D43D0; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802D43E4; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D43FC; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D4414; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802D4428; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802D4434; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802D4444; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802D4450; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802D4460; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802D4470; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802D4480; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802D4490; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802D449C; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802D44AC; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802D44B8; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802D44C8; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802D44D8; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802D44F0; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802D4508; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802D451C; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802D4530; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802D4544; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802D4558; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802D456C; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802D4580; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802D458C; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802D45B0; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802D45D0; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802D45EC; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802D4608; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802D461C; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802D4630; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802D463C; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802D4650; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802D4664; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802D4678; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802D468C; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802D469C; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802D46A8; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802D46B4; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802D46C8; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802D46E4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D4730; // type:label scope:local +@991 = .data:0x802D4730; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802D4744; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802D4754; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802D4768; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802D477C; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802D478C; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802D479C; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802D47A8; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802D47B4; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802D47C4; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802D47E4; // type:object size:0x1D scope:local align:4 data:string +@1199 = .data:0x802D4804; // type:object size:0x2A scope:local align:4 data:string +@1201 = .data:0x802D4830; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802D4840; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D4850; // type:label scope:local +@1106 = .data:0x802D4850; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802D4864; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802D4874; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802D4884; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802D48B0; // type:label scope:local +@1022 = .data:0x802D48B0; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802D48BC; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802D48C8; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802D48D4; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802D48E0; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802D48F0; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802D48FC; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802D4908; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802D4914; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802D4928; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802D4944; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802D4980; // type:label scope:local +@1543 = .data:0x802D4980; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802D498C; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802D49AC; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802D49B8; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802D49C8; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802D49D4; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802D49E8; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802D4A04; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802D4B28; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802D4B40; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802D4B78; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802D4B84; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802D4B90; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802D4BB0; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802D4BBC; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802D4BCC; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802D4BD8; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802D4BE4; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802D4BF0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802D4C20; // type:label scope:local +@388 = .data:0x802D4C20; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802D4C30; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802D4C3C; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802D4C54; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802D4C60; // type:object size:0xC scope:local align:4 +@411 = .data:0x802D4C6C; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802D4C80; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802D4C9C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D4CE8; // type:label scope:local +@856 = .data:0x802D4CE8; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802D4CF4; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802D4D04; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802D4D10; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802D4D1C; // type:object size:0xC scope:global align:4 +@927 = .data:0x802D4D28; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802D4D3C; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802D4D48; // type:object size:0xC scope:global align:4 +@929 = .data:0x802D4D54; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802D4D68; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802D4D74; // type:object size:0xC scope:global align:4 +@931 = .data:0x802D4D80; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802D4D90; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802D4D9C; // type:object size:0xC scope:global align:4 +@933 = .data:0x802D4DA8; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802D4DB4; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802D4DC0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D4DD0; // type:label scope:local +@1828 = .data:0x802D4DD0; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802D4DDC; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802D4DE8; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802D4DF8; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802D4E10; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802D4E1C; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802D4E28; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802D4E38; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802D4E44; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802D4E50; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802D4E68; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802D4E74; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802D4E80; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802D4E90; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802D4E9C; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802D4EB4; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802D4EC0; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802D4ECC; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802D4EDC; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802D4EEC; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802D4F08; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802D4F18; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802D4F28; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802D4F38; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802D4F4C; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802D4F64; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802D4F78; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802D4F8C; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802D4F9C; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802D4FA8; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802D4FC0; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802D4FCC; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802D4FD8; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802D4FE8; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802D4FF8; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802D5014; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802D5020; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802D502C; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802D503C; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802D5048; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802D505C; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802D5068; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802D5074; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802D5080; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802D5090; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802D50B0; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802D50C0; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802D50CC; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802D50DC; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802D50F0; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802D50FC; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802D5114; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802D5120; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802D512C; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802D513C; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802D516C; // type:object size:0x28 scope:local align:4 +@2887 = .data:0x802D5194; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802D51A0; // type:object size:0xC scope:local align:4 +@2888 = .data:0x802D51AC; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802D51C0; // type:object size:0x10 scope:weak align:4 +@2893 = .data:0x802D51EC; // type:object size:0xC scope:local align:4 data:string +@2896 = .data:0x802D5210; // type:object size:0x14 scope:local align:4 +@2897 = .data:0x802D5224; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802D5230; // type:object size:0x24 scope:local align:4 +@2894 = .data:0x802D5254; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802D5280; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802D52F8; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802D5310; // type:label scope:local +@1113 = .data:0x802D5310; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802D531C; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x802D5328; // type:object size:0xD scope:local align:4 data:string +@1700 = .data:0x802D5338; // type:object size:0xC scope:local align:4 +@1702 = .data:0x802D5344; // type:object size:0x14 scope:local align:4 +@1698 = .data:0x802D5358; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802D5374; // type:object size:0x30 scope:global align:4 +@1711 = .data:0x802D53A4; // type:object size:0xC scope:local align:4 data:string +@1712 = .data:0x802D53B0; // type:object size:0xD scope:local align:4 data:string +@1713 = .data:0x802D53C0; // type:object size:0x9 scope:local align:4 data:string +@1714 = .data:0x802D53CC; // type:object size:0x14 scope:local align:4 +@1716 = .data:0x802D53E0; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802D53FC; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802D5420; // type:object size:0x124 scope:global align:4 +@1769 = .data:0x802D5544; // type:object size:0xA scope:local align:4 data:string +@1771 = .data:0x802D5550; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802D555C; // type:object size:0xC scope:local align:4 +@1772 = .data:0x802D557C; // type:object size:0xC scope:local align:4 data:string +@1773 = .data:0x802D5588; // type:object size:0xC scope:local align:4 +@1774 = .data:0x802D55A8; // type:object size:0xB scope:local align:4 data:string +@1776 = .data:0x802D55B4; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x802D55C4; // type:object size:0x9 scope:local align:4 data:string +@1778 = .data:0x802D55D0; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802D55DC; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802D5600; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D5638; // type:label scope:local +spiderSE = .data:0x802D5638; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802D564C; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802D565C; // type:object size:0x9 scope:local align:4 data:string +@3113 = .data:0x802D5668; // type:object size:0x24 scope:local align:4 +@3118 = .data:0x802D568C; // type:object size:0x14 scope:local align:4 data:string +@3117 = .data:0x802D56A0; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802D56AC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D56C8; // type:label scope:local +leg_index__4Kumo = .data:0x802D56C8; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802D56F8; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802D571C; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802D572C; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802D5738; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802D5770; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802D5790; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802D57BC; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802D57C8; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802D57D4; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802D57EC; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802D57F8; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802D5804; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802D581C; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802D5828; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D5840; // type:label scope:local +@1109 = .data:0x802D5840; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802D584C; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802D5858; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802D5864; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802D5874; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802D5880; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802D5894; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802D58B0; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802D58D4; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802D59F8; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802D5A14; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802D5A24; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802D5A30; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802D5A40; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802D5A50; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802D5A5C; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802D5A68; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802D5A88; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802D5A94; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802D5AB4; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802D5AC0; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802D5ACC; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802D5ADC; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802D5AE8; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802D5AF4; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802D5B18; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D5B50; // type:label scope:local +snakeSE = .data:0x802D5B50; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802D5B74; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802D5B80; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802D5BA8; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802D5BE0; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802D5BF4; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802D5C00; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D5C18; // type:label scope:local +@1221 = .data:0x802D5C18; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802D5C28; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802D5C34; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802D5C50; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802D5C7C; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802D5C88; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802D5C94; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802D5CB4; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802D5CC0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D5CD8; // type:label scope:local +@1171 = .data:0x802D5CD8; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802D5CE4; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802D5CF0; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802D5D28; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802D5D34; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802D5D44; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802D5D50; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802D5D64; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802D5D80; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802D5DA4; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802D5EC8; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802D5EE4; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802D5EF4; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802D5F00; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802D5F10; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802D5F2C; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802D5F38; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802D5F48; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802D5F64; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802D5F70; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802D5F90; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802D5F9C; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802D5FA8; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802D5FC8; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802D5FD4; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D5FF4; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802D6000; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D600C; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802D601C; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802D6028; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802D6034; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802D6058; // type:object size:0x1C scope:weak align:4 +@6081 = .data:0x802D6090; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802D60B8; // type:label scope:local +@979 = .data:0x802D60B8; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802D60CC; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802D60DC; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D60E8; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D60F8; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D6104; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802D6118; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802D6134; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D6248; // type:label scope:local +@1080 = .data:0x802D6248; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D6254; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D6260; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D626C; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D6278; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D628C; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D62A8; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D62D8; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D62E4; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D62F4; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D6300; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D6314; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D6330; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D6354; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D6478; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D6484; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D6490; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D64B0; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D64BC; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D64DC; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D64E8; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D64F8; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D6504; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D6510; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D6534; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D6570; // type:label scope:local +kingSE = .data:0x802D6570; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D65A8; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D65B4; // type:object size:0x24 scope:local align:4 +@1778 = .data:0x802D65D8; // type:object size:0x38 scope:local align:4 +@6168 = .data:0x802D6610; // type:object size:0x44 scope:local align:4 +@6169 = .data:0x802D6654; // type:object size:0xC scope:local align:4 data:string +@6180 = .data:0x802D668C; // type:object size:0x14 scope:local align:4 data:string +@6179 = .data:0x802D66A0; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D66AC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D66C8; // type:label scope:local +@1229 = .data:0x802D66C8; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D66D8; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D66E4; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D66FC; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D6728; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D6734; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D6740; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D6758; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D6764; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D6770; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D6794; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D67D4; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D67E0; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D67EC; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D6808; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D6814; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D6820; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D6840; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D684C; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D6864; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D6880; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D688C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D68A8; // type:label scope:local +@1251 = .data:0x802D68A8; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D68B4; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D68C0; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D68CC; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D68DC; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D68E8; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D68FC; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D6918; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D693C; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D6A60; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D6A6C; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D6A78; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D6A98; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D6AA4; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D6AB0; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D6AC0; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D6ACC; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D6AD8; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D6AFC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D6B38; // type:label scope:local +@1603 = .data:0x802D6B38; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D6B48; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D6B54; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D6B70; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D6B84; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D6B90; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D6B9C; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D6BB4; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D6BE0; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D6BEC; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D6C10; // type:label scope:local +@995 = .data:0x802D6C10; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D6C1C; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D6C28; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D6C38; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D6C44; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D6C58; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D6C74; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D6C98; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802D6DBC; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802D6DC8; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802D6DD4; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802D6DF4; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802D6E00; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802D6E20; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802D6E2C; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802D6E3C; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802D6E48; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802D6E54; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802D6E78; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D6EB0; // type:label scope:local +pomSE = .data:0x802D6EB0; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802D6EC8; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802D6ED4; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802D6F0C; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802D6F20; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802D6F2C; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802D6F38; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802D6F50; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802D6F7C; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802D6F88; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D6FB0; // type:label scope:local +@910 = .data:0x802D6FB0; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802D6FC0; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802D6FCC; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802D6FD8; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802D6FE4; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802D6FF4; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802D7000; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802D7014; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802D7030; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802D7054; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802D7178; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802D7188; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802D7194; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802D71A4; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802D71B0; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802D71BC; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802D71E0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7218; // type:label scope:local +@1053 = .data:0x802D7218; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802D7224; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802D7230; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802D723C; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802D724C; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802D7258; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802D726C; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802D7288; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802D72AC; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802D73D0; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802D73DC; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802D73E8; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802D73F8; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802D7404; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802D7410; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802D7434; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7470; // type:label scope:local +@1668 = .data:0x802D7470; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802D7480; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802D748C; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802D74A0; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802D74AC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D74C8; // type:label scope:local +@1334 = .data:0x802D74C8; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802D74D8; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802D74E4; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802D74F0; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802D74FC; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802D750C; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802D7518; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802D752C; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802D7548; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802D756C; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802D7690; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802D76A0; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802D76AC; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802D76BC; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802D76C8; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D76D4; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802D76F8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7730; // type:label scope:local +@1668 = .data:0x802D7730; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802D7744; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802D7754; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802D7768; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802D7774; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D7790; // type:label scope:local +@964 = .data:0x802D7790; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802D779C; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802D77A8; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D77B4; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D77C4; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D77D0; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802D77E4; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802D7800; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802D7824; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802D7948; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802D7954; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802D7960; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802D7970; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802D797C; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802D7988; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802D79AC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D79E8; // type:label scope:local +@1288 = .data:0x802D79E8; // type:object size:0xB scope:local align:4 data:string +@1694 = .data:0x802D79F4; // type:object size:0xC scope:local align:4 data:string +@1705 = .data:0x802D7A2C; // type:object size:0x14 scope:local align:4 data:string +@1704 = .data:0x802D7A40; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802D7A4C; // type:object size:0xC scope:global align:4 +@1706 = .data:0x802D7A58; // type:object size:0x1A scope:local align:4 data:string +@1708 = .data:0x802D7A74; // type:object size:0x29 scope:local align:4 data:string +@1707 = .data:0x802D7AA0; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802D7AAC; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D7AD0; // type:label scope:local +patternTable = .data:0x802D7AD0; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802D7B50; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802D7B7C; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802D7BA8; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802D7C08; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802D7C68; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802D7C7C; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802D7C90; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802D7D00; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802D7D70; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802D7D88; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802D7DA0; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802D7DF4; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802D7E48; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802D7E98; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802D7EE8; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802D7F38; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802D7F88; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802D7FB0; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802D7FD8; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802D8004; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802D8030; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802D8048; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802D8060; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802D8098; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802D80D0; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802D8134; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802D8198; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802D81D0; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802D8208; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802D8228; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802D8248; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802D8260; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802D8278; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802D82E4; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802D8350; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802D83E8; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802D8480; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802D84BC; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802D84F8; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802D8504; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802D8510; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802D8600; // type:label scope:local +@877 = .data:0x802D8600; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802D860C; // type:object size:0xE scope:local align:4 data:string +@970 = .data:0x802D861C; // type:object size:0xD scope:local align:4 data:string +@971 = .data:0x802D862C; // type:object size:0xD scope:local align:4 data:string +@972 = .data:0x802D863C; // type:object size:0xC scope:local align:4 data:string +@1088 = .data:0x802D8648; // type:object size:0x30 scope:local align:4 +@1177 = .data:0x802D8678; // type:object size:0x1B scope:local align:4 +@1178 = .data:0x802D8694; // type:object size:0xE scope:local align:4 +@1179 = .data:0x802D86A4; // type:object size:0x14 scope:local align:4 +@1180 = .data:0x802D86B8; // type:object size:0x14 scope:local align:4 +@1181 = .data:0x802D86CC; // type:object size:0xC scope:local align:4 +@1182 = .data:0x802D86D8; // type:object size:0x15 scope:local align:4 +@1183 = .data:0x802D86F0; // type:object size:0x17 scope:local align:4 +@1184 = .data:0x802D8708; // type:object size:0xA scope:local align:4 +@1185 = .data:0x802D8714; // type:object size:0x9 scope:local align:4 +@1186 = .data:0x802D8720; // type:object size:0xC scope:local align:4 +@1187 = .data:0x802D872C; // type:object size:0xD scope:local align:4 +@1188 = .data:0x802D873C; // type:object size:0x9 scope:local align:4 +@1190 = .data:0x802D8748; // type:object size:0x26 scope:local align:4 +@1200 = .data:0x802D8770; // type:object size:0x10 scope:local align:4 data:string +@1211 = .data:0x802D8780; // type:object size:0x13 scope:local align:4 data:string +@1214 = .data:0x802D8794; // type:object size:0x9 scope:local align:4 data:string +@1215 = .data:0x802D87A0; // type:object size:0xC scope:local align:4 +@1217 = .data:0x802D87AC; // type:object size:0x14 scope:local align:4 +@1219 = .data:0x802D87C0; // type:object size:0x1C scope:local align:4 +@1212 = .data:0x802D87DC; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802D8800; // type:object size:0x34 scope:global align:4 +@1227 = .data:0x802D8868; // type:object size:0x12 scope:local align:4 data:string +@1228 = .data:0x802D887C; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802D8898; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D88E8; // type:label scope:local +@890 = .data:0x802D88E8; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802D88F4; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802D8904; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802D8D04; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802D8E04; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802D8F04; // type:object size:0x190 scope:local align:4 +@1549 = .data:0x802D9094; // type:object size:0x19 scope:local align:4 data:string +@1721 = .data:0x802D90B0; // type:object size:0x1C scope:local align:4 data:string +@1723 = .data:0x802D90CC; // type:object size:0xF scope:local align:4 data:string +@1724 = .data:0x802D90DC; // type:object size:0x14 scope:local align:4 data:string +@1725 = .data:0x802D90F0; // type:object size:0xC scope:local align:4 +@1726 = .data:0x802D90FC; // type:object size:0x14 scope:local align:4 data:string +@1727 = .data:0x802D9110; // type:object size:0x1A scope:local align:4 data:string +@1728 = .data:0x802D912C; // type:object size:0x10 scope:local align:4 data:string +@1729 = .data:0x802D913C; // type:object size:0x14 scope:local align:4 +@1722 = .data:0x802D9150; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802D917C; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802D918C; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802D919C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D91A8; // type:label scope:local +@890 = .data:0x802D91A8; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802D91B4; // type:object size:0xF scope:local align:4 data:string +@1015 = .data:0x802D91C4; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D91DC; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802D91F4; // type:object size:0x16 scope:local align:4 data:string +@1018 = .data:0x802D920C; // type:object size:0x18 scope:local align:4 data:string +@1019 = .data:0x802D9224; // type:object size:0x18 scope:local align:4 data:string +@1020 = .data:0x802D923C; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D9258; // type:label scope:local +@1133 = .data:0x802D9258; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D9264; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802D9274; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802D928C; // type:object size:0x15 scope:local align:4 data:string +@1190 = .data:0x802D92A4; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802D92C0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D92D8; // type:label scope:local +@1133 = .data:0x802D92D8; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802D92EC; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802D9300; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802D9318; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802D9330; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802D933C; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D9354; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D936C; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D9384; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D939C; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D93B4; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802D93CC; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802D93DC; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D93F4; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D940C; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D9424; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802D943C; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802D9448; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D9460; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D9478; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802D9490; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802D94A8; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D94C0; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802D94D8; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D94F0; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802D9508; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D9520; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802D9538; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802D9550; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802D956C; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802D9588; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802D9594; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802D95AC; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D95C4; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D95DC; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D95F4; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D960C; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D9624; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D963C; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D9654; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D966C; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802D9688; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802D96A4; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802D96B0; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802D96CC; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802D96E8; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802D9704; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802D9714; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D972C; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D9744; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D975C; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D9774; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D978C; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802D97A4; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802D97BC; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802D97D4; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802D97EC; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802D9804; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802D981C; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802D9834; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802D984C; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802D9864; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802D987C; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802D9894; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802D98AC; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802D98C4; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802D98DC; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802D98F4; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802D990C; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802D9924; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802D993C; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802D9954; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802D996C; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D9984; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D999C; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D99B4; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D99CC; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802D99E4; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802D99FC; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802D9A14; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802D9A2C; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802D9A44; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802D9A5C; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802D9A74; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802D9A8C; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802D9AA4; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802D9ABC; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802D9AD4; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802D9AEC; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802D9B04; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802D9B1C; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802D9B34; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802D9B4C; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D9B64; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D9B7C; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D9B94; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D9BAC; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D9BC4; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D9BDC; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D9BF4; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D9C0C; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D9C24; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D9C3C; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802D9C54; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802D9C6C; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802D9C84; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802D9C9C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802D9CA8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802D9CB4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802D9CC0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802D9CCC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802D9CD8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802D9CE4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802D9CF0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802D9CFC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802D9D08; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802D9D14; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802D9D20; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802D9D2C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802D9D38; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802D9D44; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802D9D50; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802D9D5C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802D9D68; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802D9D74; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802D9D80; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802D9D8C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802D9D98; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802D9DA4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802D9DB0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802D9DBC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802D9DC8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802D9DD4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802D9DE0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802D9DEC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802D9DF8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802D9E04; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802D9E10; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802D9E1C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802D9E28; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802D9E34; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802D9E40; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802D9E4C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802D9E58; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802D9E64; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802D9E70; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802D9E7C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802D9E88; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802D9E94; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802D9EA0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802D9EAC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802D9EB8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802D9EC4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802D9ED0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802D9EDC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802D9EE8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802D9EF4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802D9F00; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802D9F0C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802D9F18; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802D9F24; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802D9F30; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802D9F3C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802D9F48; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802D9F54; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802D9F60; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802D9F6C; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802D9F84; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802DA1F0; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802DA204; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DA220; // type:label scope:local +@1133 = .data:0x802DA220; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802DA230; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802DA240; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802DA258; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802DA270; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802DA288; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802DA2A0; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802DA2B8; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802DA2D0; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802DA2E8; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DA300; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802DA318; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802DA330; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802DA348; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802DA360; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802DA378; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802DA390; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802DA3A8; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802DA3C0; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802DA3D8; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802DA3F0; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802DA408; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802DA420; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802DA438; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802DA450; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802DA468; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802DA480; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802DA498; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DA4B0; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802DA4C8; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802DA4E0; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802DA4F8; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802DA510; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802DA528; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802DA540; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802DA558; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802DA570; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802DA588; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802DA5A0; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802DA5B8; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802DA5D0; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802DA5E8; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802DA600; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802DA618; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802DA630; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802DA648; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802DA660; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802DA678; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802DA690; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802DA6A8; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802DA6C0; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802DA6D8; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802DA6F0; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802DA708; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802DA720; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802DA738; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802DA750; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802DA768; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802DA780; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802DA798; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802DA7B0; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802DA7C8; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802DA7E0; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802DA7F8; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802DA810; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802DA828; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802DA840; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802DA858; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802DA870; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802DA888; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802DA8A0; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802DA8B8; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802DA8D0; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802DA8E8; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802DA900; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802DA918; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802DA930; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802DA948; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802DA960; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802DA978; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802DA990; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802DA9A8; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802DA9C0; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802DA9D8; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802DA9F0; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802DAA08; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802DAA20; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802DAA38; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802DAA50; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802DAA68; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802DAA80; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802DAA98; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802DAAB0; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802DAAC8; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802DAAE0; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802DAAF8; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802DAB10; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802DAB28; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802DAB40; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802DAB58; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802DAB70; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802DAB88; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802DABA0; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802DABB8; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802DABD0; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802DABE8; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802DAC00; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802DAC18; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802DAC30; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802DAC48; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802DAC60; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802DAC78; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802DAC90; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802DACA8; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802DACC0; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802DACD8; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802DACF0; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802DAD08; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802DAD20; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802DAD38; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802DAD50; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802DAD68; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802DAD80; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802DAD98; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802DADB0; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802DADC8; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802DADE0; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802DADF8; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802DAE10; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802DAE28; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802DAE40; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802DAE58; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DAE70; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802DAE88; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802DAEA0; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802DAEB8; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802DAED0; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802DAEE8; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802DAF00; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802DAF18; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802DAF30; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802DAF48; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802DAF60; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802DAF78; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802DAF90; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802DAFA8; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802DB1FC; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802DB204; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802DB21C; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802DB234; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DB250; // type:label scope:local +@1767 = .data:0x802DB250; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802DB25C; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802DB26C; // type:object size:0x3C scope:local align:4 +@2048 = .data:0x802DB2A8; // type:object size:0x17 scope:local align:4 data:string +@2049 = .data:0x802DB2C0; // type:object size:0x17 scope:local align:4 data:string +@2050 = .data:0x802DB2D8; // type:object size:0x17 scope:local align:4 data:string +@2051 = .data:0x802DB2F0; // type:object size:0x17 scope:local align:4 data:string +@2052 = .data:0x802DB308; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DB320; // type:label scope:local +@890 = .data:0x802DB320; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802DB334; // type:object size:0x14 scope:local align:4 data:string +@1461 = .data:0x802DB348; // type:object size:0x38 scope:local align:4 +@1701 = .data:0x802DB380; // type:object size:0x15 scope:local align:4 data:string +@1702 = .data:0x802DB398; // type:object size:0x15 scope:local align:4 data:string +@1703 = .data:0x802DB3B0; // type:object size:0x15 scope:local align:4 data:string +@1704 = .data:0x802DB3C8; // type:object size:0x17 scope:local align:4 data:string +@1705 = .data:0x802DB3E0; // type:object size:0x17 scope:local align:4 data:string +@1706 = .data:0x802DB3F8; // type:object size:0x17 scope:local align:4 data:string +@1707 = .data:0x802DB410; // type:object size:0x17 scope:local align:4 data:string +@1708 = .data:0x802DB428; // type:object size:0x17 scope:local align:4 data:string +@1709 = .data:0x802DB440; // type:object size:0x16 scope:local align:4 data:string +@1710 = .data:0x802DB458; // type:object size:0x15 scope:local align:4 data:string +@1995 = .data:0x802DB470; // type:object size:0xC scope:local align:4 data:string +@1015 = .data:0x802DB480; // type:object size:0x15 scope:local align:4 data:string +@1016 = .data:0x802DB498; // type:object size:0x16 scope:local align:4 data:string +@1068 = .data:0x802DB4B0; // type:object size:0x4C scope:local align:4 +@1840 = .data:0x802DB4FC; // type:object size:0x4C scope:local align:4 +@1873 = .data:0x802DB548; // type:object size:0x38 scope:local align:4 +@1916 = .data:0x802DB580; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802DB5A0; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802DB5AC; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802DB5C4; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802DB5D4; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802DB5EC; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802DB604; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DB620; // type:label scope:local +@1810 = .data:0x802DB620; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802DB62C; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802DB63C; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802DB6BC; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802DB6E0; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802DB704; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802DB728; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802DB74C; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802DB764; // type:object size:0x17 scope:local align:4 data:string +@2274 = .data:0x802DB77C; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802DB794; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802DB7AC; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802DB7C8; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802DB7E0; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802DB7F8; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802DB810; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802DB828; // type:label scope:local +@1133 = .data:0x802DB828; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802DB834; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802DB844; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DB85C; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802DB874; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802DB88C; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802DB8C0; // type:label scope:local +@1133 = .data:0x802DB8C0; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802DB8CC; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802DB8E0; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802DB920; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802DB960; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802DB9A0; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802DB9C0; // type:object size:0xC scope:local align:32 +@871 = .data:0x802DB9D0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DB9E8; // type:label scope:local +@749 = .data:0x802DB9E8; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802DB9F8; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802DBA0C; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802DBA24; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802DBA38; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802DBA54; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802DBA64; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802DBA78; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802DBA94; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802DBAC0; // type:label scope:local +@885 = .data:0x802DBAC0; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802DBAD4; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DBAEC; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802DBAF8; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802DBB04; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802DBB20; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802DBB38; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802DBB48; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802DBB54; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802DBB68; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802DBB78; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802DBB8C; // type:object size:0x11 scope:local align:4 +@1472 = .data:0x802DBBA0; // type:object size:0xD scope:local align:4 +@1473 = .data:0x802DBBB0; // type:object size:0xB scope:local align:4 +@1474 = .data:0x802DBBBC; // type:object size:0x21 scope:local align:4 +@1475 = .data:0x802DBBE0; // type:object size:0xF scope:local align:4 +@1476 = .data:0x802DBBF0; // type:object size:0x1D scope:local align:4 +@1477 = .data:0x802DBC10; // type:object size:0x11 scope:local align:4 +@1478 = .data:0x802DBC24; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802DBC34; // type:object size:0xF scope:local align:4 +@1481 = .data:0x802DBC44; // type:object size:0x15 scope:local align:4 +@1482 = .data:0x802DBC5C; // type:object size:0xB scope:local align:4 +@1484 = .data:0x802DBC68; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802DBC74; // type:object size:0x18 scope:local align:4 data:string +@1487 = .data:0x802DBC8C; // type:object size:0x17 scope:local align:4 data:string +@1488 = .data:0x802DBCA4; // type:object size:0x16 scope:local align:4 data:string +@1495 = .data:0x802DBCBC; // type:object size:0x1B scope:local align:4 +@1596 = .data:0x802DBCD8; // type:object size:0x9 scope:local align:4 data:string +@1597 = .data:0x802DBCE4; // type:object size:0xC scope:local align:4 +@1601 = .data:0x802DBD0C; // type:object size:0x17 scope:local align:4 data:string +@1603 = .data:0x802DBD24; // type:object size:0xD scope:local align:4 data:string +@1602 = .data:0x802DBD34; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802DBD40; // type:object size:0x10 scope:weak align:4 +@1607 = .data:0x802DBD50; // type:object size:0xD scope:local align:4 data:string +@1609 = .data:0x802DBD60; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802DBD70; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802DBD7C; // type:object size:0x10 scope:weak align:4 +@1619 = .data:0x802DBD8C; // type:object size:0xC scope:local align:4 data:string +@1620 = .data:0x802DBD98; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802DBDA4; // type:object size:0x10 scope:weak align:4 +@1629 = .data:0x802DBDB4; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802DBDC4; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802DBDD0; // type:object size:0x10 scope:weak align:4 +@1640 = .data:0x802DBDE0; // type:object size:0x10 scope:local align:4 data:string +@1641 = .data:0x802DBDF0; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802DBDFC; // type:object size:0x10 scope:weak align:4 +@1650 = .data:0x802DBE0C; // type:object size:0xE scope:local align:4 data:string +@1651 = .data:0x802DBE1C; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802DBE28; // type:object size:0x10 scope:weak align:4 +@1665 = .data:0x802DBE38; // type:object size:0xD scope:local align:4 data:string +@1666 = .data:0x802DBE48; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802DBE54; // type:object size:0x10 scope:weak align:4 +@1679 = .data:0x802DBE64; // type:object size:0xE scope:local align:4 data:string +@1680 = .data:0x802DBE74; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802DBE80; // type:object size:0x10 scope:weak align:4 +@1694 = .data:0x802DBE90; // type:object size:0xC scope:local align:4 data:string +@1695 = .data:0x802DBE9C; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802DBEA8; // type:object size:0x10 scope:weak align:4 +@1704 = .data:0x802DBEB8; // type:object size:0xD scope:local align:4 data:string +@1705 = .data:0x802DBEC8; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802DBED4; // type:object size:0x10 scope:weak align:4 +@1714 = .data:0x802DBEE4; // type:object size:0x13 scope:local align:4 data:string +@1715 = .data:0x802DBEF8; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802DBF04; // type:object size:0x10 scope:weak align:4 +@1725 = .data:0x802DBF14; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x802DBF20; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802DBF2C; // type:object size:0x10 scope:weak align:4 +@1735 = .data:0x802DBF3C; // type:object size:0xD scope:local align:4 data:string +@1736 = .data:0x802DBF4C; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802DBF58; // type:object size:0x10 scope:weak align:4 +@1745 = .data:0x802DBF68; // type:object size:0xC scope:local align:4 data:string +@1746 = .data:0x802DBF74; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802DBF80; // type:object size:0x10 scope:weak align:4 +@1759 = .data:0x802DBF90; // type:object size:0x10 scope:local align:4 data:string +@1760 = .data:0x802DBFA0; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802DBFAC; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802DBFBC; // type:object size:0x10 scope:local align:4 data:string +@1770 = .data:0x802DBFCC; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802DBFD8; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802DBFE8; // type:object size:0x10 scope:weak align:4 +@1784 = .data:0x802DBFF8; // type:object size:0x29 scope:local align:4 data:string +@1786 = .data:0x802DC024; // type:object size:0x13 scope:local align:4 data:string +@1785 = .data:0x802DC038; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802DC044; // type:object size:0xC scope:weak align:4 +@1787 = .data:0x802DC050; // type:object size:0x18 scope:local align:4 data:string +@1788 = .data:0x802DC068; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802DC08C; // type:object size:0x10 scope:weak align:4 +@1790 = .data:0x802DC09C; // type:object size:0xA scope:local align:4 data:string +@1792 = .data:0x802DC0A8; // type:object size:0x9 scope:local align:4 data:string +@1791 = .data:0x802DC0B4; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802DC0D4; // type:object size:0xC scope:local align:4 data:string +@1794 = .data:0x802DC0E0; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802DC100; // type:object size:0x14 scope:local align:4 +@1795 = .data:0x802DC114; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802DC130; // type:object size:0x30 scope:weak align:4 +@1821 = .data:0x802DC160; // type:object size:0xC scope:local align:4 data:string +@1890 = .data:0x802DC16C; // type:object size:0x1C scope:local align:4 +@1888 = .data:0x802DC188; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802DC1AC; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC218; // type:label scope:local +@1486 = .data:0x802DC218; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802DC22C; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802DC244; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802DC25C; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802DC268; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802DC290; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802DC2A4; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802DC2C0; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802DC2E4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC350; // type:label scope:local +@749 = .data:0x802DC350; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802DC360; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802DC374; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802DC38C; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802DC398; // type:object size:0xC scope:local align:4 +@779 = .data:0x802DC3C0; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802DC3D4; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802DC3F0; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802DC414; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC480; // type:label scope:local +@787 = .data:0x802DC480; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802DC490; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802DC49C; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802DC4B4; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802DC4CC; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802DC4E4; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802DC500; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802DC518; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802DC534; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802DC54C; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802DC568; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802DC580; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802DC59C; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802DC5B8; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802DC5D0; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802DC5EC; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802DC604; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802DC620; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802DC63C; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802DC654; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802DC670; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802DC68C; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802DC6A8; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802DC6C4; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802DC6DC; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802DC6F4; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802DC710; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802DC72C; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802DC748; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802DC760; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802DC77C; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802DC798; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802DC7B4; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802DC7D0; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802DC7EC; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802DC804; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802DC81C; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802DC838; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802DC854; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802DC870; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802DC88C; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802DC8A8; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802DC8C4; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802DC8DC; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802DC8F8; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802DC910; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802DC92C; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802DC944; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802DC960; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802DC97C; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802DC998; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802DC9B0; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802DC9CC; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802DC9E4; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802DCA00; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802DCA1C; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802DCA38; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802DCA50; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802DCA6C; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802DCA84; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802DCAA0; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802DCABC; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802DCAD4; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802DCAEC; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802DCB04; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802DCB18; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802DCB2C; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802DCB44; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802DCB60; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802DCB7C; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802DCB98; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802DCBB4; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802DCBD0; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802DCBEC; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802DCC04; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802DCC1C; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802DCC38; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802DCC54; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802DCC70; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802DCC88; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802DCCA4; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802DCCC0; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802DCCD8; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802DCCF4; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802DCD0C; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802DCD24; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802DCD3C; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802DCD54; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802DCD6C; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802DCD84; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802DCD9C; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802DCDB4; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802DCDCC; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802DCDE4; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802DCDFC; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802DCE14; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802DCE2C; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802DCE48; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802DCE64; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802DCE7C; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802DCE94; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802DCEB0; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802DCECC; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802DCEE4; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802DCEFC; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802DCF18; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802DCF30; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802DCF4C; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802DCF64; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802DCF80; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802DCF9C; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802DCFB8; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802DCFD4; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802DCFF0; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802DD00C; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802DD028; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802DD044; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802DD060; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802DD07C; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802DD094; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802DD0AC; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802DD0C4; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802DD0DC; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802DD0F4; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802DD10C; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802DD124; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802DD140; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802DD15C; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802DD174; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802DD18C; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802DD1A8; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802DD1C4; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802DD1E0; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802DD1FC; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802DD218; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802DD234; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802DD24C; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802DD268; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802DD284; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802DD29C; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802DD2B8; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802DD2D4; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802DD2F0; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802DD308; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802DD324; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802DD340; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802DD35C; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802DD378; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802DD394; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802DD3B0; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802DD3CC; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802DD3E8; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802DD404; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802DD420; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802DD43C; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802DD458; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802DD470; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802DD48C; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802DD4A4; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802DD4C0; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802DD4DC; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802DD4F8; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802DD514; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802DD530; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802DD54C; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802DD568; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802DD584; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802DD5A0; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802DD5BC; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802DD5D8; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802DD5F4; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802DD610; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802DD628; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802DD644; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802DD660; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802DD67C; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802DD698; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802DD6B0; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802DD6C8; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802DD6E0; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802DD6F8; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802DD714; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802DD730; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802DD748; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802DD760; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802DD778; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802DD790; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802DD7AC; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802DD7C8; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802DD7E4; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802DD7FC; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802DD818; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802DD830; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802DD848; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802DD860; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802DD87C; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802DD898; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802DD8B4; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802DD8D0; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802DD8EC; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802DD904; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802DD91C; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802DD934; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802DD950; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802DD968; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802DD984; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802DD9A0; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802DD9BC; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802DD9D8; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802DD9F4; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802DDA0C; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802DDA28; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802DDA44; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802DDA5C; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802DDA74; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802DDA8C; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802DDAA4; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802DDABC; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802DDAD8; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802DDAF4; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802DDB10; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802DDB2C; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802DDB48; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802DDB64; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802DDB80; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802DDB9C; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802DDBB0; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802DDBC8; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802DDBE0; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802DDBF8; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802DDC10; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802DDC2C; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802DDC44; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802DDC5C; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802DDC74; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802DDC90; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802DDCAC; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802DDCC4; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802DDCDC; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802DDCF4; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802DDD0C; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802DDD28; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802DDD44; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802DDD5C; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802DDD74; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802DDD8C; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802DDDA8; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802DDDC0; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802DDDDC; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802DDDF8; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802DDE14; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802DDE2C; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802DDE44; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DDE5C; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802DDE74; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802DDE90; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802DDEAC; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802DDEC8; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802DDEE4; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802DDEFC; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802DDF18; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802DDF34; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802DDF4C; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802DDF64; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802DDF7C; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802DDF94; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802DDFB0; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802DDFC8; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802DDFE0; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802DDFF8; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802DE010; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802DE02C; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802DE044; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802DE060; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802DE07C; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802DE098; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802DE0B4; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802DE0CC; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802DE0E4; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802DE0FC; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802DE118; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802DE134; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802DE14C; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802DE168; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802DE184; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802DE1A0; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802DE1B8; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802DE1D0; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802DE1EC; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802DE204; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802DE220; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802DE23C; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802DE258; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802DE274; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802DE290; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802DE2A8; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802DE2C0; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802DE2DC; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802DE2F8; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802DE314; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802DE330; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802DE34C; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802DE368; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802DE380; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802DE398; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802DE3B0; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802DE3C8; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802DE3E0; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802DE3F8; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802DE410; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802DE428; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802DE440; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802DE458; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802DE470; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802DE488; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802DE4A0; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802DE4BC; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802DE4D8; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802DE4F0; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802DE50C; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802DE528; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802DE544; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802DE560; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802DE578; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802DE590; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802DE5A8; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802DE5C0; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802DE5DC; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802DE5F8; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802DE614; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802DE630; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802DE64C; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802DE664; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802DE680; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802DE698; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802DE6B0; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802DE6C8; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802DE6E0; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802DE6FC; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802DE718; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802DE734; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802DE74C; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802DE764; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802DE77C; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802DE794; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802DE7AC; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802DE7C8; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802DE7E4; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802DE7FC; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802DE814; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802DE82C; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802DE848; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802DE864; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802DE87C; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DE894; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802DE8AC; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802DE8C4; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802DE8DC; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802DE8F4; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802DE90C; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802DE928; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802DE944; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802DE960; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802DE97C; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802DE998; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802DE9B4; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802DE9D0; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802DE9EC; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802DEA08; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802DEA24; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802DEA40; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802DEA5C; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DEA74; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802DEA8C; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802DEAA4; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802DEABC; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802DEAD4; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802DEAEC; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802DEB04; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802DEB1C; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802DEB38; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802DEB54; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802DEB6C; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802DEB84; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802DEB9C; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802DEBB8; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802DEBD4; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802DEBF0; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802DFB80; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802DFB9C; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802DFBB8; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802DFBD4; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802DFC04; // type:object size:0xC scope:global align:4 +@1340 = .data:0x802DFC10; // type:object size:0x18 scope:local align:4 data:string +@1427 = .data:0x802DFC28; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802DFC3C; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802DFC48; // type:object size:0x20 scope:local align:4 data:string +@1632 = .data:0x802DFC68; // type:object size:0xB scope:local align:4 data:string +@1633 = .data:0x802DFC74; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802DFC80; // type:object size:0xD scope:local align:4 data:string +@1757 = .data:0x802DFC90; // type:object size:0xB scope:local align:4 data:string +@1760 = .data:0x802DFC9C; // type:object size:0x9 scope:local align:4 data:string +@1761 = .data:0x802DFCA8; // type:object size:0xC scope:local align:4 +@1758 = .data:0x802DFCB4; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802DFCC8; // type:object size:0x10 scope:weak align:4 +@1764 = .data:0x802DFCD8; // type:object size:0xD scope:local align:4 data:string +@1767 = .data:0x802DFCF8; // type:object size:0xA scope:local align:4 data:string +@1768 = .data:0x802DFD04; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802DFD18; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802DFD28; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802DFD44; // type:object size:0xC scope:global align:4 +@1770 = .data:0x802DFD50; // type:object size:0xC scope:local align:4 data:string +@1771 = .data:0x802DFD5C; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802DFD70; // type:object size:0x10 scope:weak align:4 +@1772 = .data:0x802DFD80; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802DFD9C; // type:object size:0xC scope:weak align:4 +@1773 = .data:0x802DFDA8; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x802DFDB8; // type:object size:0x14 scope:local align:4 +@1774 = .data:0x802DFDCC; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802DFDE8; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802DFE40; // type:label scope:local +@671 = .data:0x802DFE40; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802DFE58; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802DFE80; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802DFEB0; // type:object size:0xC scope:local align:4 +@705 = .data:0x802DFEBC; // type:object size:0xC scope:local align:4 +@708 = .data:0x802DFEC8; // type:object size:0xC scope:local align:4 +@710 = .data:0x802DFED4; // type:object size:0xC scope:local align:4 +@712 = .data:0x802DFEE0; // type:object size:0xC scope:local align:4 +@714 = .data:0x802DFEEC; // type:object size:0xC scope:local align:4 +@716 = .data:0x802DFEF8; // type:object size:0xC scope:local align:4 +@718 = .data:0x802DFF04; // type:object size:0xC scope:local align:4 +@720 = .data:0x802DFF10; // type:object size:0xC scope:local align:4 +@736 = .data:0x802DFF1C; // type:object size:0x1A scope:local align:4 data:string +@737 = .data:0x802DFF38; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802DFF58; // type:label scope:local +@409 = .data:0x802DFF58; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802DFF6C; // type:object size:0xF scope:local align:4 data:string +@443 = .data:0x802DFF7C; // type:object size:0x18 scope:local align:4 data:string +@461 = .data:0x802DFF94; // type:object size:0xD scope:local align:4 data:string +@463 = .data:0x802DFFA4; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802DFFB4; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802DFFC0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DFFE0; // type:label scope:local +ami = .data:0x802DFFE0; // type:object size:0x800 scope:local align:4 +check = .data:0x802E07E0; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802E0FE0; // type:object size:0x800 scope:local align:4 +marble = .data:0x802E17E0; // type:object size:0x800 scope:local align:4 +noise = .data:0x802E1FE0; // type:object size:0x800 scope:local align:4 +yura = .data:0x802E27E0; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802E2FE0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802E2FF8; // type:label scope:local +@649 = .data:0x802E2FF8; // type:object size:0x14 scope:local align:4 data:string +@659 = .data:0x802E300C; // type:object size:0x10 scope:local align:4 data:string +@688 = .data:0x802E301C; // type:object size:0x30 scope:local align:4 +@689 = .data:0x802E304C; // type:object size:0x26 scope:local align:4 +@690 = .data:0x802E3074; // type:object size:0x30 scope:local align:4 +@913 = .data:0x802E30A4; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802E30C4; // type:object size:0x17 scope:local align:4 data:string +@915 = .data:0x802E30DC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E30F8; // type:label scope:local +@618 = .data:0x802E30F8; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802E3110; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802E3124; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802E3138; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802E3148; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802E3160; // type:object size:0xC scope:local align:4 +@715 = .data:0x802E316C; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802E3180; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802E31A0; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802E31B0; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802E31C8; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802E31DC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E31F0; // type:label scope:local +@1344 = .data:0x802E31F0; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802E3200; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802E320C; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802E3244; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802E3250; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802E3264; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802E3270; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802E3280; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802E328C; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802E32A0; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802E32CC; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802E3300; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802E333C; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802E353C; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802E3574; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802E3594; // type:object size:0x24 scope:weak align:4 +@1211 = .data:0x802E35C8; // type:object size:0x11 scope:local align:4 data:string +@1225 = .data:0x802E35DC; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802E35F0; // type:label scope:local +@1737 = .data:0x802E35F0; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802E35FC; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802E3610; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802E3624; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802E3630; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802E3648; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802E3664; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802E3684; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802E36A0; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802E36BC; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802E36DC; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802E36FC; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802E3718; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802E3734; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802E3754; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802E3770; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802E378C; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802E37A0; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802E37B0; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802E37BC; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802E37C8; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802E37D8; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802E37E8; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802E37F4; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802E3800; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802E3814; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802E383C; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802E384C; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802E3858; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802E3864; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802E3880; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802E3890; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802E389C; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802E38B8; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802E38D0; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802E38DC; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802E38F8; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802E390C; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802E3918; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802E3924; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802E3934; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802E3948; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802E3964; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802E3988; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802E399C; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802E39B0; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802E39BC; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E39CC; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802E39E0; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802E39FC; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802E3A20; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802E3A2C; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802E3A44; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802E3A50; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802E3A5C; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802E3A68; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802E3A7C; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802E3A8C; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802E3AA0; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802E3ABC; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802E3ADC; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802E3AFC; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802E3B14; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802E3B20; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802E3B3C; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802E3B50; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802E3B6C; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802E3B94; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802E3BB0; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802E3BC8; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802E3BD4; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802E3BE8; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802E3C08; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802E3C18; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802E3C2C; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802E3C40; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802E3C4C; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802E3C68; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802E3C8C; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802E3CCC; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802E3CE0; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802E3CEC; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802E3CF8; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802E3D0C; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802E3D1C; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802E3D38; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802E3D5C; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802E3D8C; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E3DB0; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802E3DD0; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802E3DDC; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802E3E00; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E3E60; // type:label scope:local +@1737 = .data:0x802E3E60; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802E3E6C; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802E3E88; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802E3EA0; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802E3EB8; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802E3ECC; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E3EE4; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802E3EFC; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802E3F1C; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802E3F34; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802E3F50; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802E3F60; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802E3F7C; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802E3F98; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802E3FB4; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802E3FD0; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802E3FF0; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802E4010; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802E402C; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802E4048; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802E4064; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802E4080; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802E409C; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802E40AC; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802E40BC; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802E40C8; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802E40D4; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802E40E4; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802E40F4; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802E4100; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802E410C; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802E4120; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802E4148; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802E4154; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802E4160; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802E416C; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802E4188; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802E4198; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802E41A4; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802E41C0; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802E41E4; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E41F4; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802E4208; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802E4214; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802E4228; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802E423C; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802E425C; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802E4280; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802E42AC; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802E42E0; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802E42F8; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802E4320; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802E4334; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802E4344; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802E4358; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802E4374; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802E4398; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802E43A8; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802E43C0; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802E43CC; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802E43E4; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802E43FC; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802E4410; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802E4424; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802E4440; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802E4470; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802E447C; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802E4490; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802E44A4; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802E44B0; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802E44C4; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802E44E4; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802E4504; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802E4514; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802E4520; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802E4534; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802E4550; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802E4570; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802E4580; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802E45A8; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802E45BC; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802E45D0; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802E45DC; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802E45F0; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802E4610; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802E4624; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E4634; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802E4640; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802E4654; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802E4674; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802E4684; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802E4690; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802E46A4; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802E46C0; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802E46E0; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802E46F8; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802E470C; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802E472C; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802E473C; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802E4748; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802E4754; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802E4764; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802E4778; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802E4794; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802E47B8; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802E47F0; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802E4808; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802E4814; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802E4830; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802E4840; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802E484C; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802E4870; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802E4884; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802E4894; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802E48A0; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802E48B4; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802E48D4; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802E48E4; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802E48F0; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802E4904; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802E4920; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802E4958; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802E496C; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802E4978; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802E4984; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802E4998; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802E49A8; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802E49C4; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802E49E8; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802E4A18; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802E4A38; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802E4A58; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802E4A64; // type:object size:0x24 scope:weak align:4 +@3146 = .data:0x802E4A88; // type:object size:0x1F scope:local align:4 data:string +@3147 = .data:0x802E4AA8; // type:object size:0x1E scope:local align:4 data:string +...data.0 = .data:0x802E4AF0; // type:label scope:local +@1728 = .data:0x802E4AF0; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802E4B04; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802E4B14; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802E4B28; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802E4B34; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802E4B40; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802E4B4C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802E4B60; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802E4B7C; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802E4B98; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802E4BA4; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802E4BB0; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802E4BD0; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802E4BE8; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802E4BF4; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802E4C00; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802E4C0C; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802E4C20; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802E4C34; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802E4C50; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802E4C74; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802E4C90; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802E4CAC; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802E4CC8; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802E4CD4; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802E4CF0; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802E4D00; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802E4D0C; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802E4D28; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802E4D40; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802E4D4C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E4D68; // type:label scope:local +@1788 = .data:0x802E4D68; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802E4D78; // type:object size:0x9 scope:local align:4 data:string +@2397 = .data:0x802E4D84; // type:object size:0x3A scope:local align:4 data:string +@2866 = .data:0x802E4DC0; // type:object size:0x14 scope:local align:4 data:string +@3596 = .data:0x802E4DD4; // type:object size:0xC scope:local align:4 data:string +@3942 = .data:0x802E4DE0; // type:object size:0xC scope:local align:4 data:string +@3944 = .data:0x802E4DEC; // type:object size:0xA scope:local align:4 data:string +@3945 = .data:0x802E4DF8; // type:object size:0x12 scope:local align:4 data:string +@3946 = .data:0x802E4E0C; // type:object size:0xC scope:local align:4 +@3943 = .data:0x802E4E18; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802E4E2C; // type:object size:0x20 scope:global align:4 +@3953 = .data:0x802E4E4C; // type:object size:0xC scope:local align:4 data:string +@3954 = .data:0x802E4E58; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802E4E6C; // type:object size:0x20 scope:global align:4 +@3955 = .data:0x802E4E8C; // type:object size:0xC scope:local align:4 data:string +@3956 = .data:0x802E4E98; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802E4EAC; // type:object size:0x24 scope:global align:4 +@3957 = .data:0x802E4ED0; // type:object size:0x13 scope:local align:4 data:string +@3959 = .data:0x802E4EE4; // type:object size:0xF scope:local align:4 data:string +@3958 = .data:0x802E4EF4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802E4F08; // type:object size:0x2C scope:global align:4 +@3960 = .data:0x802E4F34; // type:object size:0x1E scope:local align:4 data:string +@3962 = .data:0x802E4F54; // type:object size:0x11 scope:local align:4 data:string +@3963 = .data:0x802E4F68; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802E4F7C; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802E4FA0; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802E4FD0; // type:object size:0x24 scope:global align:4 +@3964 = .data:0x802E4FF4; // type:object size:0x16 scope:local align:4 data:string +@3965 = .data:0x802E500C; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802E5018; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802E5034; // type:object size:0xF scope:local align:4 data:string +@3967 = .data:0x802E5044; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802E5050; // type:object size:0x20 scope:global align:4 +@3968 = .data:0x802E5070; // type:object size:0x1D scope:local align:4 data:string +@3969 = .data:0x802E5090; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802E50A4; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802E50C0; // type:object size:0xE scope:local align:4 data:string +@3971 = .data:0x802E50D0; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802E50E4; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802E5100; // type:object size:0xD scope:local align:4 data:string +@3974 = .data:0x802E5110; // type:object size:0x11 scope:local align:4 data:string +@3975 = .data:0x802E5124; // type:object size:0x14 scope:local align:4 +@3973 = .data:0x802E5138; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802E5154; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802E5170; // type:object size:0xD scope:local align:4 data:string +@3977 = .data:0x802E5180; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802E5194; // type:object size:0x20 scope:global align:4 +@3978 = .data:0x802E51B4; // type:object size:0xB scope:local align:4 data:string +@3980 = .data:0x802E51C0; // type:object size:0x11 scope:local align:4 data:string +@3981 = .data:0x802E51D4; // type:object size:0x14 scope:local align:4 +@3979 = .data:0x802E51E8; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802E5204; // type:object size:0x24 scope:global align:4 +@3982 = .data:0x802E5228; // type:object size:0x9 scope:local align:4 data:string +@3983 = .data:0x802E5234; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802E5248; // type:object size:0x20 scope:global align:4 +@3984 = .data:0x802E5268; // type:object size:0x16 scope:local align:4 data:string +@3985 = .data:0x802E5280; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802E529C; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802E52BC; // type:object size:0x1C scope:global align:4 +@3986 = .data:0x802E52D8; // type:object size:0xF scope:local align:4 data:string +@3987 = .data:0x802E52E8; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802E52FC; // type:object size:0x1C scope:global align:4 +@3988 = .data:0x802E5318; // type:object size:0x9 scope:local align:4 data:string +@3989 = .data:0x802E5324; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802E5330; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802E534C; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802E536C; // type:object size:0xF scope:local align:4 data:string +@3992 = .data:0x802E537C; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802E5390; // type:object size:0x1C scope:global align:4 +@3993 = .data:0x802E53AC; // type:object size:0x22 scope:local align:4 data:string +@3994 = .data:0x802E53D0; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802E53E4; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802E5404; // type:object size:0x1C scope:local align:4 data:string +@3996 = .data:0x802E5420; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802E5434; // type:object size:0x24 scope:global align:4 +@3997 = .data:0x802E5458; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802E5468; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802E547C; // type:object size:0x20 scope:global align:4 +@3999 = .data:0x802E549C; // type:object size:0x19 scope:local align:4 data:string +@4000 = .data:0x802E54B8; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802E54C4; // type:object size:0x1C scope:global align:4 +@4001 = .data:0x802E54E0; // type:object size:0x1F scope:local align:4 data:string +@4002 = .data:0x802E5500; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802E550C; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802E5528; // type:object size:0xF scope:local align:4 data:string +@4004 = .data:0x802E5538; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802E5554; // type:object size:0x24 scope:global align:4 +@4005 = .data:0x802E5578; // type:object size:0x1D scope:local align:4 data:string +@4006 = .data:0x802E5598; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802E55A4; // type:object size:0x1C scope:global align:4 +@4007 = .data:0x802E55C0; // type:object size:0x12 scope:local align:4 data:string +@4009 = .data:0x802E55D4; // type:object size:0xB scope:local align:4 data:string +@4010 = .data:0x802E55E0; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802E55EC; // type:object size:0x13 scope:local align:4 data:string +@4012 = .data:0x802E5600; // type:object size:0x14 scope:local align:4 +@4008 = .data:0x802E5614; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802E5630; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5650; // type:label scope:local +@1116 = .data:0x802E5650; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802E5660; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802E566C; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802E567C; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802E5688; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802E569C; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802E56A8; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802E56BC; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802E56DC; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802E56F8; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802E5704; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5740; // type:label scope:local +@1569 = .data:0x802E5740; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802E5750; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802E575C; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802E5770; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802E577C; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802E5788; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802E57A4; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802E57B8; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802E57C4; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802E57E0; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802E57F0; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802E57FC; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802E5820; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802E5834; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802E5840; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802E5860; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802E5874; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802E5880; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802E589C; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802E58B4; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802E58C0; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802E58E0; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802E58F0; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802E58FC; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802E5918; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802E5928; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802E5934; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802E5950; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802E5970; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802E597C; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802E5998; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802E59B8; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802E59C4; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802E59E0; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802E59FC; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802E5A08; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802E5A2C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802E5A48; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802E5A60; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802E5A6C; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802E5A80; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802E5AA8; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E5AC0; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E5AD4; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E5AFC; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E5B24; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E5B34; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E5B44; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E5B50; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E5B64; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E5B84; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E5B94; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E5BA8; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E5BC8; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E5BE0; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E5BEC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5C08; // type:label scope:local +@1718 = .data:0x802E5C08; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E5C18; // type:object size:0xB scope:local align:4 data:string +@1806 = .data:0x802E5C24; // type:object size:0x14 scope:local align:4 data:string +@2314 = .data:0x802E5C38; // type:object size:0xC scope:local align:4 data:string +@2316 = .data:0x802E5C44; // type:object size:0xA scope:local align:4 data:string +@2317 = .data:0x802E5C50; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E5C64; // type:object size:0xC scope:local align:4 +@2315 = .data:0x802E5C70; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E5C84; // type:object size:0x20 scope:global align:4 +@2325 = .data:0x802E5CA4; // type:object size:0x13 scope:local align:4 data:string +@2326 = .data:0x802E5CB8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E5CCC; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E5CF0; // type:object size:0x1A scope:local align:4 data:string +@2328 = .data:0x802E5D0C; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E5D20; // type:object size:0x24 scope:global align:4 +@2329 = .data:0x802E5D44; // type:object size:0xD scope:local align:4 data:string +@2331 = .data:0x802E5D54; // type:object size:0xB scope:local align:4 data:string +@2332 = .data:0x802E5D60; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802E5D6C; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E5D80; // type:object size:0x24 scope:global align:4 +@2333 = .data:0x802E5DA4; // type:object size:0xE scope:local align:4 data:string +@2335 = .data:0x802E5DB4; // type:object size:0xA scope:local align:4 data:string +@2334 = .data:0x802E5DC0; // type:object size:0xC scope:local align:4 +@2337 = .data:0x802E5DE4; // type:object size:0xF scope:local align:4 data:string +@2338 = .data:0x802E5DF4; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E5E00; // type:object size:0x20 scope:global align:4 +@2340 = .data:0x802E5E20; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E5E30; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E5E44; // type:object size:0x24 scope:global align:4 +@2342 = .data:0x802E5E68; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E5E78; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E5E84; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E5EA0; // type:object size:0xF scope:local align:4 data:string +@2345 = .data:0x802E5EB0; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E5EBC; // type:object size:0x1C scope:global align:4 +@2346 = .data:0x802E5ED8; // type:object size:0x1C scope:local align:4 data:string +@2348 = .data:0x802E5EF4; // type:object size:0xF scope:local align:4 data:string +@2349 = .data:0x802E5F04; // type:object size:0x14 scope:local align:4 +@2347 = .data:0x802E5F18; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E5F34; // type:object size:0x24 scope:global align:4 +@2351 = .data:0x802E5F58; // type:object size:0xC scope:local align:4 data:string +@2361 = .data:0x802E5F90; // type:object size:0x15 scope:local align:4 data:string +@2362 = .data:0x802E5FA8; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E5FBC; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E5FE8; // type:label scope:local +@579 = .data:0x802E5FE8; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E5FFC; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E600C; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E6030; // type:label scope:local +@658 = .data:0x802E6030; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E6040; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E6050; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E605C; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E6080; // type:label scope:local +@581 = .data:0x802E6080; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E6094; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E60A4; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E60B4; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E60C4; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E60D0; // type:object size:0x24 scope:global align:4 +@637 = .data:0x802E60F8; // type:object size:0xC scope:local align:4 data:string +@667 = .data:0x802E6104; // type:object size:0x1B scope:local align:4 data:string +@1091 = .data:0x802E6120; // type:object size:0x29 scope:local align:4 +__vt__7P2DPane = .data:0x802E614C; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E6188; // type:label scope:local +@655 = .data:0x802E6188; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E6198; // type:object size:0xB scope:local align:4 data:string +@685 = .data:0x802E61A4; // type:object size:0x1A scope:local align:4 data:string +@1153 = .data:0x802E61C0; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E61CC; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E6208; // type:label scope:local +@765 = .data:0x802E6208; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E6218; // type:object size:0xA scope:local align:4 data:string +@802 = .data:0x802E6224; // type:object size:0x18 scope:local align:4 data:string +@841 = .data:0x802E623C; // type:object size:0x50 scope:local align:4 +@843 = .data:0x802E628C; // type:object size:0x2A scope:local align:4 data:string +@881 = .data:0x802E62B8; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E62C4; // type:object size:0x40 scope:global align:4 +@572 = .data:0x802E6308; // type:object size:0xE scope:local align:4 data:string +@597 = .data:0x802E6318; // type:object size:0xC scope:local align:4 data:string +@598 = .data:0x802E6324; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E6340; // type:label scope:local +@641 = .data:0x802E6340; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E6350; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E635C; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E6368; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E63A8; // type:label scope:local +@636 = .data:0x802E63A8; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E63B8; // type:object size:0xB scope:local align:4 data:string +@682 = .data:0x802E63C4; // type:object size:0x10 scope:local align:4 data:string +@726 = .data:0x802E63D4; // type:object size:0xE scope:local align:4 +@730 = .data:0x802E63E4; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E63F0; // type:object size:0x3C scope:global align:4 +@570 = .data:0x802E6430; // type:object size:0xD scope:local align:4 data:string +@612 = .data:0x802E6440; // type:object size:0xE scope:local align:4 data:string +@879 = .data:0x802E6450; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E64B0; // type:label scope:local +@570 = .data:0x802E64B0; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E64BC; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E64C8; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E64D4; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E64E0; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E64EC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E6510; // type:label scope:local +@1273 = .data:0x802E6510; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E6524; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E6534; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E654C; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E6564; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E657C; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E6594; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E65AC; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E65C4; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E65DC; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E65F4; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E660C; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E6624; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E663C; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E6654; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E666C; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E6684; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E669C; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E66B4; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E66CC; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E66E4; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E66FC; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E6748; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E6760; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E6778; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E6790; // type:object size:0x18 scope:local align:4 data:string +@2238 = .data:0x802E67A8; // type:object size:0x1E scope:local align:4 data:string +@2239 = .data:0x802E67C8; // type:object size:0x1A scope:local align:4 data:string +@2589 = .data:0x802E67E4; // type:object size:0x18 scope:local align:4 data:string +@2591 = .data:0x802E67FC; // type:object size:0xF scope:local align:4 data:string +@2592 = .data:0x802E680C; // type:object size:0x14 scope:local align:4 data:string +@2593 = .data:0x802E6820; // type:object size:0x1A scope:local align:4 data:string +@2594 = .data:0x802E683C; // type:object size:0x10 scope:local align:4 data:string +@2595 = .data:0x802E684C; // type:object size:0x14 scope:local align:4 +@2590 = .data:0x802E6860; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E6884; // type:object size:0x10 scope:weak align:4 +@2660 = .data:0x802E6894; // type:object size:0x1D scope:local align:4 data:string +@2661 = .data:0x802E68B4; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E68D0; // type:object size:0x10 scope:weak align:4 +@2705 = .data:0x802E68E0; // type:object size:0x1C scope:local align:4 data:string +@2706 = .data:0x802E68FC; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E6918; // type:object size:0x10 scope:weak align:4 +@2709 = .data:0x802E6928; // type:object size:0x1B scope:local align:4 data:string +@2710 = .data:0x802E6944; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E6960; // type:object size:0x10 scope:weak align:4 +@2719 = .data:0x802E6970; // type:object size:0x1C scope:local align:4 data:string +@2720 = .data:0x802E698C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E69A8; // type:object size:0x10 scope:weak align:4 +@2743 = .data:0x802E69B8; // type:object size:0x1C scope:local align:4 data:string +@2745 = .data:0x802E69D4; // type:object size:0x13 scope:local align:4 data:string +@2744 = .data:0x802E69E8; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E6A0C; // type:object size:0x10 scope:weak align:4 +@2816 = .data:0x802E6A1C; // type:object size:0x1C scope:local align:4 data:string +@2818 = .data:0x802E6A38; // type:object size:0x13 scope:local align:4 data:string +@2817 = .data:0x802E6A4C; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E6A78; // type:object size:0x10 scope:weak align:4 +@2900 = .data:0x802E6A88; // type:object size:0x1C scope:local align:4 data:string +@2901 = .data:0x802E6AA4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E6AC8; // type:object size:0x10 scope:weak align:4 +@2947 = .data:0x802E6AD8; // type:object size:0x1E scope:local align:4 data:string +@2948 = .data:0x802E6AF8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E6B14; // type:object size:0x10 scope:weak align:4 +@2965 = .data:0x802E6B24; // type:object size:0x1B scope:local align:4 data:string +@2966 = .data:0x802E6B40; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E6B64; // type:object size:0x1C scope:weak align:4 +@2999 = .data:0x802E6B80; // type:object size:0x1E scope:local align:4 data:string +@3001 = .data:0x802E6BA0; // type:object size:0x16 scope:local align:4 data:string +@3002 = .data:0x802E6BB8; // type:object size:0xC scope:local align:4 +@3000 = .data:0x802E6BC4; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E6BF0; // type:object size:0x10 scope:weak align:4 +@3003 = .data:0x802E6C00; // type:object size:0x23 scope:local align:4 data:string +@3004 = .data:0x802E6C24; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E6C40; // type:object size:0x10 scope:weak align:4 +@3040 = .data:0x802E6C50; // type:object size:0x1C scope:local align:4 data:string +@3041 = .data:0x802E6C6C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E6C88; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E6CB8; // type:label scope:local +@708 = .data:0x802E6CB8; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802E6CCC; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802E6CDC; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802E6CEC; // type:object size:0x15 scope:local align:4 data:string +@1769 = .data:0x802E6D04; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802E6D10; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802E6D1C; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802E6D2C; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802E6D44; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802E6D5C; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802E6D74; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802E6D8C; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802E6DA4; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802E6DBC; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802E6DD4; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802E6DEC; // type:object size:0x17 scope:local align:4 data:string +@2032 = .data:0x802E6E04; // type:object size:0x1C scope:local align:4 data:string +@2885 = .data:0x802E6E20; // type:object size:0x13 scope:local align:4 data:string +@2887 = .data:0x802E6E34; // type:object size:0x14 scope:local align:4 data:string +@2888 = .data:0x802E6E48; // type:object size:0x1A scope:local align:4 data:string +@2889 = .data:0x802E6E64; // type:object size:0x10 scope:local align:4 data:string +@2890 = .data:0x802E6E74; // type:object size:0x14 scope:local align:4 +@2886 = .data:0x802E6E88; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802E6EA4; // type:object size:0x10 scope:weak align:4 +@2916 = .data:0x802E6EB4; // type:object size:0x15 scope:local align:4 data:string +@2918 = .data:0x802E6ECC; // type:object size:0x18 scope:local align:4 data:string +@2917 = .data:0x802E6EE4; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802E6F08; // type:object size:0x10 scope:weak align:4 +@2962 = .data:0x802E6F18; // type:object size:0x19 scope:local align:4 data:string +@2963 = .data:0x802E6F34; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802E6F58; // type:object size:0x10 scope:weak align:4 +@2997 = .data:0x802E6F68; // type:object size:0x1C scope:local align:4 data:string +@2999 = .data:0x802E6F84; // type:object size:0xF scope:local align:4 data:string +@3000 = .data:0x802E6F94; // type:object size:0x14 scope:local align:4 data:string +@3001 = .data:0x802E6FA8; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802E6FB4; // type:object size:0x2C scope:local align:4 +@3002 = .data:0x802E700C; // type:object size:0x9 scope:local align:4 data:string +@3003 = .data:0x802E7018; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E7040; // type:label scope:local +@637 = .data:0x802E7040; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802E7050; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E705C; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802E7068; // type:object size:0x1A scope:local align:4 data:string +@678 = .data:0x802E7084; // type:object size:0xD scope:local align:4 data:string +@1536 = .data:0x802E7094; // type:object size:0x11 scope:local align:4 data:string +@1538 = .data:0x802E70A8; // type:object size:0x14 scope:local align:4 data:string +@1539 = .data:0x802E70BC; // type:object size:0x1A scope:local align:4 data:string +@1540 = .data:0x802E70D8; // type:object size:0x10 scope:local align:4 data:string +@1541 = .data:0x802E70E8; // type:object size:0x14 scope:local align:4 +@1537 = .data:0x802E70FC; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802E7118; // type:object size:0x10 scope:global align:4 +@1543 = .data:0x802E7144; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802E7154; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E7168; // type:object size:0x14 scope:local align:4 data:string +@391 = .data:0x802E7180; // type:object size:0xC scope:local align:4 data:string +@409 = .data:0x802E718C; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802E71A8; // type:label scope:local +@635 = .data:0x802E71A8; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802E71B8; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802E71C4; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802E71DC; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802E71F0; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802E7200; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802E720C; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E721C; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802E723C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802E724C; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802E7264; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802E7270; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802E7284; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802E72A0; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802E72B0; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802E72C4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E7320; // type:label scope:local +@659 = .data:0x802E7320; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802E7330; // type:object size:0x9 scope:local align:4 data:string +@766 = .data:0x802E733C; // type:object size:0x1C scope:local align:4 data:string +@968 = .data:0x802E7358; // type:object size:0x14 scope:local align:4 data:string +@1301 = .data:0x802E736C; // type:object size:0x21 scope:local align:4 data:string +@1305 = .data:0x802E7390; // type:object size:0x1B scope:local align:4 data:string +@1823 = .data:0x802E73AC; // type:object size:0x21 scope:local align:4 data:string +@1832 = .data:0x802E73D0; // type:object size:0x24 scope:local align:4 data:string +@1833 = .data:0x802E73F4; // type:object size:0xE scope:local align:4 data:string +@1835 = .data:0x802E7404; // type:object size:0x10 scope:local align:4 data:string +@1834 = .data:0x802E7414; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802E7420; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E7430; // type:label scope:local +@1607 = .data:0x802E7430; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802E7444; // type:object size:0x10 scope:local align:4 data:string +@1991 = .data:0x802E7454; // type:object size:0x10 scope:local align:4 data:string +@2303 = .data:0x802E7464; // type:object size:0xD scope:local align:4 data:string +@2304 = .data:0x802E7474; // type:object size:0x11 scope:local align:4 data:string +@2306 = .data:0x802E7488; // type:object size:0x29 scope:local align:4 data:string +@2305 = .data:0x802E74B4; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802E74C0; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802E74CC; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802E74E4; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802E74F0; // type:object size:0xC scope:global align:4 +@2309 = .data:0x802E74FC; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802E7510; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802E751C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802E7528; // type:label scope:local +@1756 = .data:0x802E7528; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802E7538; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802E7544; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802E7550; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802E7568; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802E757C; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802E758C; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802E759C; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802E75B0; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802E75C0; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802E75CC; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802E75D8; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802E75EC; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802E75FC; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802E7608; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E7614; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802E7628; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802E7650; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802E7670; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802E767C; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802E7698; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802E76A4; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802E76B8; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802E76DC; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802E76F0; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802E76FC; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802E7718; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802E7728; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802E7750; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802E7764; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802E7770; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802E777C; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802E778C; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802E77A0; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802E77BC; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802E77E0; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802E7818; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802E782C; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802E7838; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802E7854; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802E7878; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802E788C; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802E7898; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802E78A8; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802E78BC; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802E78D8; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802E78F4; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802E7918; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802E793C; // type:object size:0xE scope:local align:4 data:string +@3153 = .data:0x802E794C; // type:object size:0x15 scope:local align:4 data:string +@3154 = .data:0x802E7964; // type:object size:0xC scope:local align:4 +@3187 = .data:0x802E798C; // type:object size:0xF scope:local align:4 data:string +@3188 = .data:0x802E799C; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802E79B0; // type:object size:0x1C scope:weak align:4 +@3742 = .data:0x802E79CC; // type:object size:0x1E scope:local align:4 data:string +@3744 = .data:0x802E79EC; // type:object size:0x17 scope:local align:4 data:string +@3745 = .data:0x802E7A04; // type:object size:0xC scope:local align:4 +@3746 = .data:0x802E7A10; // type:object size:0x18 scope:local align:4 data:string +@3747 = .data:0x802E7A28; // type:object size:0x14 scope:local align:4 +@3743 = .data:0x802E7A3C; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802E7A58; // type:object size:0x28 scope:weak align:4 +@3753 = .data:0x802E7A80; // type:object size:0x16 scope:local align:4 data:string +@3754 = .data:0x802E7A98; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802E7AA4; // type:object size:0x1C scope:weak align:4 +@3821 = .data:0x802E7AC0; // type:object size:0x12 scope:local align:4 data:string +@3822 = .data:0x802E7AD4; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802E7B00; // type:object size:0x11 scope:local align:4 data:string +@3837 = .data:0x802E7B14; // type:object size:0xB scope:local align:4 data:string +@3838 = .data:0x802E7B20; // type:object size:0xC scope:local align:4 +@3836 = .data:0x802E7B2C; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802E7B40; // type:object size:0x20 scope:weak align:4 +@3842 = .data:0x802E7B60; // type:object size:0x10 scope:local align:4 data:string +@3844 = .data:0x802E7B70; // type:object size:0xA scope:local align:4 data:string +@3845 = .data:0x802E7B7C; // type:object size:0x14 scope:local align:4 +@3843 = .data:0x802E7B90; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802E7BAC; // type:object size:0x1C scope:weak align:4 +@3856 = .data:0x802E7BC8; // type:object size:0xF scope:local align:4 data:string +@3857 = .data:0x802E7BD8; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802E7BE4; // type:object size:0x1C scope:weak align:4 +@3880 = .data:0x802E7C00; // type:object size:0xC scope:local align:4 data:string +@3881 = .data:0x802E7C0C; // type:object size:0xD scope:local align:4 data:string +@3884 = .data:0x802E7C38; // type:object size:0x14 scope:local align:4 data:string +@3887 = .data:0x802E7C4C; // type:object size:0x9 scope:local align:4 data:string +@3888 = .data:0x802E7C58; // type:object size:0xC scope:local align:4 +@3890 = .data:0x802E7C64; // type:object size:0x14 scope:local align:4 +@3891 = .data:0x802E7C78; // type:object size:0xF scope:local align:4 data:string +@3892 = .data:0x802E7C88; // type:object size:0x1C scope:local align:4 +@3885 = .data:0x802E7CA4; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802E7CC8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E7CF8; // type:label scope:local +@635 = .data:0x802E7CF8; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802E7D0C; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802E7D1C; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802E7D2C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802E7D40; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802E7D5C; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802E7D6C; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802E7D80; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802E7D9C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E7DC8; // type:label scope:local +@1737 = .data:0x802E7DC8; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E7DD8; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802E7DE4; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802E7DFC; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802E7E0C; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802E7E24; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802E7E38; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802E7E58; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802E7E7C; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802E7E9C; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802E7EBC; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802E7EE0; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802E7F04; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802E7F24; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802E7F44; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802E7F68; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802E7F88; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802E7FA8; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802E7FC0; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802E7FD0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802E7FDC; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802E7FE8; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802E7FF8; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802E8004; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802E8010; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802E802C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802E803C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802E8048; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802E8064; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802E8078; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802E808C; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802E8098; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802E80AC; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802E80CC; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802E80E0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802E80F4; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802E8134; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802E8154; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802E8168; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802E8174; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802E818C; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802E81A0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802E81BC; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802E81E4; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802E81F8; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802E8220; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802E8234; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802E8240; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802E825C; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802E8270; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802E827C; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802E8288; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802E829C; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802E82D4; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802E82E8; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802E82F8; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802E8304; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802E8310; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802E8324; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802E834C; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802E8364; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802E8370; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802E837C; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802E8390; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802E83A0; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802E83BC; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802E83E0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E8410; // type:label scope:local +@1737 = .data:0x802E8410; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E8420; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802E842C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802E8444; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802E8454; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802E846C; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802E8480; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802E8494; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802E84A8; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802E84C8; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802E84EC; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802E850C; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802E852C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802E8550; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802E8574; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802E8594; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802E85B4; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802E85D8; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802E85F8; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802E8618; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802E8630; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802E8640; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802E864C; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802E8658; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802E8668; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802E8674; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802E869C; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802E86AC; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802E86D4; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802E86E8; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802E86FC; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802E8708; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802E871C; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802E873C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802E8750; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802E8764; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802E87A4; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802E87C4; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802E87D8; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802E87E4; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802E87FC; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802E8810; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802E882C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802E8854; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802E8868; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802E8890; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802E88A4; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802E88CC; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802E88E0; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802E88F4; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802E8908; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802E8924; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E8948; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E895C; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802E8968; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E8974; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802E89C0; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802E89D4; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802E89E4; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802E89F0; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802E89FC; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802E8A10; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802E8A38; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802E8A50; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802E8A5C; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802E8A68; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802E8A7C; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802E8A8C; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802E8AA8; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802E8ACC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E8B00; // type:label scope:local +@1737 = .data:0x802E8B00; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E8B10; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802E8B1C; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802E8B34; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802E8B44; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802E8B6C; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802E8B94; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802E8BAC; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802E8BC8; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802E8BE0; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802E8BF4; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802E8C08; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802E8C1C; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802E8C3C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802E8C60; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802E8C80; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802E8CA0; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802E8CC4; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802E8CE8; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802E8D08; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802E8D28; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802E8D4C; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802E8D6C; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802E8D8C; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802E8DA4; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802E8DB4; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802E8DC0; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802E8DCC; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802E8DDC; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802E8DE8; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802E8E10; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802E8E20; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802E8E48; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802E8E5C; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802E8E70; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802E8E7C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802E8E90; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802E8EB0; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802E8EC4; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802E8ED8; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802E8F18; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802E8F38; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802E8F4C; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802E8F58; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802E8F70; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802E8F84; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802E8FA0; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802E8FC8; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802E8FDC; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802E9004; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802E9018; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E9040; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802E9054; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802E9068; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802E9084; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802E909C; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802E90AC; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802E90B8; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802E90C8; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802E90DC; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802E90F8; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802E9118; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802E9134; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802E914C; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802E9158; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802E916C; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802E9188; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802E91A4; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802E91B8; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802E91D4; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802E91EC; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802E91FC; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802E9208; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802E921C; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802E923C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802E9254; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802E9280; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802E928C; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802E92A4; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802E92B8; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802E92CC; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802E92E8; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802E9300; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802E9310; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802E9324; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802E9340; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802E9360; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802E9380; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802E9394; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802E93A8; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802E93BC; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802E93D8; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802E93FC; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802E9410; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802E941C; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802E9428; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802E9474; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802E9488; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802E9498; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802E94A4; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802E94B0; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802E94C4; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802E94EC; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802E9504; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802E9510; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802E951C; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802E9530; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802E9540; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802E955C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802E9580; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E95B0; // type:label scope:local +@1737 = .data:0x802E95B0; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E95C0; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802E95CC; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802E95E4; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802E95FC; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802E961C; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802E963C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802E965C; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802E967C; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802E96A0; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802E96C4; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802E96E4; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802E9704; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802E9724; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802E9744; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802E9764; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802E9778; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802E9788; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802E9794; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802E97A0; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802E97B8; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802E97C4; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802E97D0; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802E97EC; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802E97F8; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802E9804; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802E9810; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802E9824; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802E9840; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802E9858; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802E986C; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802E9878; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802E988C; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802E98CC; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802E98DC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802E98F0; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802E9928; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E993C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802E994C; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802E9958; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802E9964; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802E9978; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802E99A0; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802E99B4; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802E99C0; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802E99CC; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802E99E0; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802E99F0; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802E9A0C; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802E9A30; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E9A60; // type:label scope:local +@1737 = .data:0x802E9A60; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E9A70; // type:object size:0xA scope:local align:4 data:string +@1752 = .data:0x802E9A7C; // type:object size:0x23 scope:local align:4 data:string +@2115 = .data:0x802E9AA0; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802E9AB0; // type:object size:0xF scope:local align:4 +@2119 = .data:0x802E9AC0; // type:object size:0x1D scope:local align:4 +@2121 = .data:0x802E9AE0; // type:object size:0x19 scope:local align:4 +@2123 = .data:0x802E9AFC; // type:object size:0xF scope:local align:4 +@2125 = .data:0x802E9B0C; // type:object size:0x15 scope:local align:4 +@2578 = .data:0x802E9B24; // type:object size:0x27 scope:local align:4 data:string +@2774 = .data:0x802E9B4C; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802E9B6C; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802E9B8C; // type:object size:0x1E scope:local align:4 data:string +@2777 = .data:0x802E9BAC; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802E9BCC; // type:object size:0x21 scope:local align:4 data:string +@2779 = .data:0x802E9BF0; // type:object size:0x21 scope:local align:4 data:string +@2780 = .data:0x802E9C14; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802E9C34; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802E9C54; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802E9C74; // type:object size:0x1E scope:local align:4 data:string +@2784 = .data:0x802E9C94; // type:object size:0x1E scope:local align:4 data:string +@2785 = .data:0x802E9CB4; // type:object size:0x13 scope:local align:4 data:string +@2787 = .data:0x802E9CC8; // type:object size:0xD scope:local align:4 data:string +@2786 = .data:0x802E9CD8; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802E9CE4; // type:object size:0xC scope:global align:4 +@2788 = .data:0x802E9CF0; // type:object size:0x12 scope:local align:4 data:string +@2790 = .data:0x802E9D04; // type:object size:0xD scope:local align:4 data:string +@2791 = .data:0x802E9D14; // type:object size:0xC scope:local align:4 data:string +@2792 = .data:0x802E9D20; // type:object size:0xC scope:local align:4 +@2789 = .data:0x802E9D2C; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802E9D40; // type:object size:0x28 scope:global align:4 +@2793 = .data:0x802E9D68; // type:object size:0x12 scope:local align:4 data:string +@2795 = .data:0x802E9D7C; // type:object size:0xA scope:local align:4 data:string +@2794 = .data:0x802E9D88; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802E9D94; // type:object size:0x1C scope:weak align:4 +@2813 = .data:0x802E9DB0; // type:object size:0x14 scope:local align:4 data:string +@2814 = .data:0x802E9DC4; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802E9DD0; // type:object size:0x1C scope:weak align:4 +@2903 = .data:0x802E9DEC; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802E9DFC; // type:object size:0x12 scope:local align:4 data:string +@2906 = .data:0x802E9E10; // type:object size:0xC scope:local align:4 +@2907 = .data:0x802E9E1C; // type:object size:0xF scope:local align:4 data:string +@2908 = .data:0x802E9E2C; // type:object size:0x14 scope:local align:4 +@2904 = .data:0x802E9E40; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802E9E5C; // type:object size:0x20 scope:weak align:4 +@3004 = .data:0x802E9E7C; // type:object size:0xC scope:local align:4 data:string +@3014 = .data:0x802E9EB4; // type:object size:0x19 scope:local align:4 data:string +@3015 = .data:0x802E9ED0; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802E9EE4; // type:object size:0x1C scope:weak align:4 +@3064 = .data:0x802E9F00; // type:object size:0x1C scope:local align:4 data:string +@3069 = .data:0x802E9F1C; // type:object size:0x10 scope:local align:4 data:string +@3070 = .data:0x802E9F2C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802E9F40; // type:object size:0x1C scope:weak align:4 +@3090 = .data:0x802E9F5C; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802E9F70; // type:object size:0x1C scope:local align:4 data:string +@3093 = .data:0x802E9F8C; // type:object size:0x14 scope:local align:4 +@3091 = .data:0x802E9FA0; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802E9FBC; // type:object size:0x24 scope:weak align:4 +@3136 = .data:0x802E9FE0; // type:object size:0xF scope:local align:4 data:string +@3137 = .data:0x802E9FF0; // type:object size:0xC scope:local align:4 +@3139 = .data:0x802EA018; // type:object size:0xF scope:local align:4 data:string +@3141 = .data:0x802EA028; // type:object size:0x9 scope:local align:4 data:string +@3142 = .data:0x802EA034; // type:object size:0x14 scope:local align:4 +@3140 = .data:0x802EA048; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802EA064; // type:object size:0x20 scope:weak align:4 +@3169 = .data:0x802EA084; // type:object size:0x13 scope:local align:4 data:string +@3171 = .data:0x802EA098; // type:object size:0xB scope:local align:4 data:string +@3172 = .data:0x802EA0A4; // type:object size:0xC scope:local align:4 +@3173 = .data:0x802EA0B0; // type:object size:0xD scope:local align:4 data:string +@3174 = .data:0x802EA0C0; // type:object size:0x14 scope:local align:4 +@3170 = .data:0x802EA0D4; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802EA0F0; // type:object size:0x24 scope:weak align:4 +@3181 = .data:0x802EA114; // type:object size:0x15 scope:local align:4 data:string +@3183 = .data:0x802EA12C; // type:object size:0xF scope:local align:4 data:string +@3184 = .data:0x802EA13C; // type:object size:0x1C scope:local align:4 +@3182 = .data:0x802EA158; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802EA17C; // type:object size:0x24 scope:weak align:4 +@3224 = .data:0x802EA1A0; // type:object size:0xE scope:local align:4 data:string +@3226 = .data:0x802EA1B0; // type:object size:0xA scope:local align:4 data:string +@3225 = .data:0x802EA1BC; // type:object size:0xC scope:local align:4 +@3228 = .data:0x802EA1E0; // type:object size:0x12 scope:local align:4 data:string +@3229 = .data:0x802EA1F4; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802EA200; // type:object size:0x1C scope:weak align:4 +@3495 = .data:0x802EA21C; // type:object size:0x10 scope:local align:4 data:string +@3497 = .data:0x802EA22C; // type:object size:0xA scope:local align:4 data:string +@3498 = .data:0x802EA238; // type:object size:0x14 scope:local align:4 +@3496 = .data:0x802EA24C; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802EA268; // type:object size:0x1C scope:weak align:4 +@3561 = .data:0x802EA284; // type:object size:0xF scope:local align:4 data:string +@3562 = .data:0x802EA294; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802EA2A0; // type:object size:0x1C scope:weak align:4 +@3568 = .data:0x802EA2D8; // type:object size:0x14 scope:local align:4 data:string +@3571 = .data:0x802EA2EC; // type:object size:0x9 scope:local align:4 data:string +@3572 = .data:0x802EA2F8; // type:object size:0xC scope:local align:4 +@3574 = .data:0x802EA304; // type:object size:0x14 scope:local align:4 +@3575 = .data:0x802EA318; // type:object size:0xF scope:local align:4 data:string +@3576 = .data:0x802EA328; // type:object size:0x1C scope:local align:4 +@3569 = .data:0x802EA344; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802EA368; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EA398; // type:label scope:local +@1737 = .data:0x802EA398; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EA3A8; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802EA3B4; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802EA3C4; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802EA3D4; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802EA3F0; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802EA410; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802EA430; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802EA450; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802EA470; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802EA490; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802EA4B0; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802EA4D0; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802EA4F0; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802EA510; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802EA530; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802EA544; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802EA554; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802EA560; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802EA56C; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802EA580; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802EA590; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802EA59C; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802EA5A8; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802EA5BC; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802EA5E4; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802EA5F8; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802EA604; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802EA618; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802EA624; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802EA638; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802EA654; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802EA66C; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802EA680; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802EA68C; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802EA6A0; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802EA6E0; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802EA6F0; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802EA6FC; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802EA734; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802EA748; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802EA754; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802EA760; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802EA774; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802EA784; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802EA7A0; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802EA7C4; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802EA7F4; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802EA818; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802EA838; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802EA844; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802EA868; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802EA8C8; // type:label scope:local +@1716 = .data:0x802EA8C8; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802EA8D8; // type:object size:0xB scope:local align:4 data:string +@1742 = .data:0x802EA8E4; // type:object size:0xF scope:local align:4 data:string +@1809 = .data:0x802EA8F4; // type:object size:0x18 scope:local align:4 data:string +@1810 = .data:0x802EA90C; // type:object size:0x13 scope:local align:4 data:string +@1812 = .data:0x802EA920; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802EA92C; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802EA938; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802EA958; // type:label scope:local +@1737 = .data:0x802EA958; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802EA968; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802EA974; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802EA988; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802EA99C; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802EA9BC; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802EA9D4; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802EA9E8; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802EAA00; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802EAA14; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802EAA34; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802EAA54; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802EAA74; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802EAA94; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802EAAB8; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802EAADC; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802EAAFC; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802EAB1C; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802EAB3C; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802EAB5C; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802EAB7C; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802EAB90; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802EABA0; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802EABAC; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802EABB8; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802EABCC; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802EABDC; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802EABE8; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802EABF4; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802EAC08; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802EAC30; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802EAC44; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802EAC50; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802EAC64; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802EAC70; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802EAC84; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802EACA0; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802EACBC; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802EACC8; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802EACE4; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802EACF4; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802EAD00; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802EAD0C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802EAD20; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802EAD40; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802EAD78; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802EAD8C; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802EADAC; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802EADB8; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802EADCC; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802EADE8; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802EAE00; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802EAE0C; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802EAE28; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802EAE3C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802EAE50; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802EAE6C; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802EAE80; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802EAE8C; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802EAEA8; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802EAEBC; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802EAEE8; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802EAF04; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802EAF1C; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802EAF28; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802EAF3C; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802EAF74; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802EAF88; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802EAFA4; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802EAFB8; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802EAFD4; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802EAFF8; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802EB010; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802EB020; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802EB02C; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802EB040; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802EB060; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802EB078; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802EB08C; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802EB098; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802EB0AC; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802EB0CC; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802EB0DC; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802EB104; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802EB11C; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802EB128; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802EB144; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802EB158; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802EB16C; // type:object size:0x1C scope:weak align:4 +@3665 = .data:0x802EB188; // type:object size:0x15 scope:local align:4 data:string +@3687 = .data:0x802EB1A0; // type:object size:0x12 scope:local align:4 data:string +@3688 = .data:0x802EB1B4; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802EB1C8; // type:object size:0x1C scope:weak align:4 +@3694 = .data:0x802EB1E4; // type:object size:0x1B scope:local align:4 data:string +@3696 = .data:0x802EB200; // type:object size:0x15 scope:local align:4 data:string +@3697 = .data:0x802EB218; // type:object size:0xC scope:local align:4 +@3695 = .data:0x802EB224; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802EB238; // type:object size:0x20 scope:weak align:4 +@3701 = .data:0x802EB258; // type:object size:0x28 scope:local align:4 data:string +@3703 = .data:0x802EB280; // type:object size:0x22 scope:local align:4 data:string +@3704 = .data:0x802EB2A4; // type:object size:0x14 scope:local align:4 +@3702 = .data:0x802EB2B8; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802EB2D4; // type:object size:0x20 scope:weak align:4 +@3715 = .data:0x802EB2F4; // type:object size:0x1C scope:local align:4 data:string +@3717 = .data:0x802EB310; // type:object size:0x11 scope:local align:4 data:string +@3718 = .data:0x802EB324; // type:object size:0x14 scope:local align:4 +@3719 = .data:0x802EB338; // type:object size:0x16 scope:local align:4 data:string +@3720 = .data:0x802EB350; // type:object size:0x1C scope:local align:4 +@3716 = .data:0x802EB36C; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802EB390; // type:object size:0x20 scope:weak align:4 +@3731 = .data:0x802EB3B0; // type:object size:0x10 scope:local align:4 data:string +@3733 = .data:0x802EB3C0; // type:object size:0xA scope:local align:4 data:string +@3734 = .data:0x802EB3CC; // type:object size:0x14 scope:local align:4 +@3732 = .data:0x802EB3E0; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802EB3FC; // type:object size:0x1C scope:weak align:4 +@3754 = .data:0x802EB418; // type:object size:0xF scope:local align:4 data:string +@3755 = .data:0x802EB428; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802EB434; // type:object size:0x1C scope:weak align:4 +@3758 = .data:0x802EB46C; // type:object size:0x14 scope:local align:4 data:string +@3761 = .data:0x802EB480; // type:object size:0x9 scope:local align:4 data:string +@3762 = .data:0x802EB48C; // type:object size:0xC scope:local align:4 +@3764 = .data:0x802EB498; // type:object size:0x14 scope:local align:4 +@3765 = .data:0x802EB4AC; // type:object size:0xF scope:local align:4 data:string +@3766 = .data:0x802EB4BC; // type:object size:0x1C scope:local align:4 +@3759 = .data:0x802EB4D8; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802EB4FC; // type:object size:0x30 scope:weak align:4 +@648 = .data:0x802EB530; // type:object size:0x10 scope:local align:4 data:string +@664 = .data:0x802EB540; // type:object size:0x1C scope:local align:4 data:string +@722 = .data:0x802EB560; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802EB578; // type:object size:0xC scope:local align:4 data:string +@635 = .data:0x802EB588; // type:object size:0x16 scope:local align:4 data:string +@881 = .data:0x802EB5A0; // type:object size:0x12 scope:local align:4 data:string +@883 = .data:0x802EB5B4; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802EB5C8; // type:label scope:local +@1134 = .data:0x802EB5C8; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802EB5DC; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802EB5EC; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802EB604; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802EB61C; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802EB634; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802EB64C; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802EB664; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802EB67C; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802EB694; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802EB6AC; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802EB6C4; // type:object size:0x13 scope:local align:4 data:string +@2816 = .data:0x802EB6D8; // type:object size:0x14 scope:local align:4 data:string +@2817 = .data:0x802EB6EC; // type:object size:0x21 scope:local align:4 data:string +@2820 = .data:0x802EB710; // type:object size:0x1B scope:local align:4 data:string +@3075 = .data:0x802EB72C; // type:object size:0x14 scope:local align:4 data:string +@3076 = .data:0x802EB740; // type:object size:0x14 scope:local align:4 data:string +@3701 = .data:0x802EB754; // type:object size:0x24 scope:local align:4 +@4279 = .data:0x802EB778; // type:object size:0x11 scope:local align:4 data:string +@5376 = .data:0x802EB78C; // type:object size:0x17 scope:local align:4 data:string +@6150 = .data:0x802EB7A4; // type:object size:0x12 scope:local align:4 data:string +@6987 = .data:0x802EB7B8; // type:object size:0x1C scope:local align:4 data:string +@6989 = .data:0x802EB7D4; // type:object size:0xF scope:local align:4 data:string +@6990 = .data:0x802EB7E4; // type:object size:0x14 scope:local align:4 data:string +@6991 = .data:0x802EB7F8; // type:object size:0xC scope:local align:4 +@6992 = .data:0x802EB804; // type:object size:0x14 scope:local align:4 data:string +@6993 = .data:0x802EB818; // type:object size:0x1A scope:local align:4 data:string +@6994 = .data:0x802EB834; // type:object size:0x10 scope:local align:4 data:string +@6995 = .data:0x802EB844; // type:object size:0x14 scope:local align:4 +@6988 = .data:0x802EB858; // type:object size:0x2C scope:local align:4 +@6997 = .data:0x802EB894; // type:object size:0x24 scope:local align:4 data:string +@6998 = .data:0x802EB8B8; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802EB8DC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EB908; // type:label scope:local +@757 = .data:0x802EB908; // type:object size:0x12 scope:local align:4 data:string +@767 = .data:0x802EB91C; // type:object size:0xE scope:local align:4 data:string +@818 = .data:0x802EB92C; // type:object size:0x15 scope:local align:4 data:string +@820 = .data:0x802EB944; // type:object size:0x13 scope:local align:4 data:string +@830 = .data:0x802EB958; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802EB970; // type:label scope:local +@635 = .data:0x802EB970; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802EB984; // type:object size:0xD scope:local align:4 data:string +@768 = .data:0x802EB994; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802EB9AC; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802EB9C0; // type:object size:0x18 scope:local align:4 data:string +@801 = .data:0x802EB9D8; // type:object size:0x13 scope:local align:4 data:string +@828 = .data:0x802EB9EC; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802EBA00; // type:label scope:local +@1135 = .data:0x802EBA00; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802EBA0C; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802EBA1C; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802EBA28; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802EBA50; // type:label scope:local +@660 = .data:0x802EBA50; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802EBA60; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802EBA6C; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802EBA84; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802EBA9C; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802EBAB4; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802EBACC; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802EBAE4; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802EBAFC; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802EBB14; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802EBB2C; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802EBB48; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802EBB64; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802EBB80; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802EBB98; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802EBBB4; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802EBBD0; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802EBBEC; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802EBC08; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802EBC20; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802EBC38; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802EBC50; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802EBC6C; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802EBC84; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802EBC9C; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802EBCB8; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802EBCD4; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802EBCF0; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802EBD08; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802EBD24; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802EBD40; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802EBD5C; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802EBD78; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802EBD94; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802EBDB0; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802EBDCC; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802EBDE8; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802EBE04; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802EBE20; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802EBE3C; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802EBE58; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802EBE70; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802EBE8C; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802EBEA8; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802EBEC4; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802EBEE0; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802EBEFC; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802EBF18; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802EBF34; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802EBF4C; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802EBF68; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802EBF80; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802EBF9C; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802EBFB8; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802EBFD0; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802EBFE8; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802EC000; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802EC018; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802EC030; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802EC048; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802EC060; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802EC07C; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802EC094; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802EC0AC; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802EC0C4; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802EC334; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802EC358; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802EC370; // type:label scope:local +@1737 = .data:0x802EC370; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EC380; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802EC38C; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802EC3A8; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802EC3C8; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802EC3E8; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802EC408; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802EC428; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802EC448; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802EC468; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802EC488; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802EC4A8; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802EC4C8; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802EC4E8; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802EC4FC; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802EC50C; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802EC518; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802EC524; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802EC534; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802EC540; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802EC54C; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802EC558; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802EC56C; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802EC5A4; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802EC5B8; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802EC5C8; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802EC5D4; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802EC5E0; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802EC5F4; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802EC61C; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802EC630; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802EC63C; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802EC648; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802EC65C; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802EC66C; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802EC688; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802EC6AC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EC6E0; // type:label scope:local +@1737 = .data:0x802EC6E0; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EC6F0; // type:object size:0x9 scope:local align:4 data:string +@1931 = .data:0x802EC6FC; // type:object size:0x17 scope:local align:4 +@1934 = .data:0x802EC714; // type:object size:0x17 scope:local align:4 +@2291 = .data:0x802EC72C; // type:object size:0x1C scope:local align:4 data:string +@2292 = .data:0x802EC748; // type:object size:0x1E scope:local align:4 data:string +@2293 = .data:0x802EC768; // type:object size:0x1D scope:local align:4 data:string +@2294 = .data:0x802EC788; // type:object size:0x1D scope:local align:4 data:string +@2295 = .data:0x802EC7A8; // type:object size:0x20 scope:local align:4 data:string +@2296 = .data:0x802EC7C8; // type:object size:0x20 scope:local align:4 data:string +@2297 = .data:0x802EC7E8; // type:object size:0x1D scope:local align:4 data:string +@2298 = .data:0x802EC808; // type:object size:0x1D scope:local align:4 data:string +@2299 = .data:0x802EC828; // type:object size:0x1E scope:local align:4 data:string +@2300 = .data:0x802EC848; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802EC868; // type:object size:0x1D scope:local align:4 data:string +@2302 = .data:0x802EC888; // type:object size:0x12 scope:local align:4 data:string +@2304 = .data:0x802EC89C; // type:object size:0xD scope:local align:4 data:string +@2303 = .data:0x802EC8AC; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802EC8B8; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802EC8C4; // type:object size:0x12 scope:local align:4 data:string +@2307 = .data:0x802EC8D8; // type:object size:0xA scope:local align:4 data:string +@2306 = .data:0x802EC8E4; // type:object size:0xC scope:local align:4 +@2326 = .data:0x802EC910; // type:object size:0x11 scope:local align:4 data:string +@2328 = .data:0x802EC924; // type:object size:0x12 scope:local align:4 data:string +@2329 = .data:0x802EC938; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802EC944; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802EC958; // type:object size:0x1C scope:weak align:4 +@2588 = .data:0x802EC974; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802EC984; // type:object size:0x1A scope:local align:4 data:string +@2591 = .data:0x802EC9A0; // type:object size:0x14 scope:local align:4 +@2589 = .data:0x802EC9B4; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802EC9D0; // type:object size:0x24 scope:weak align:4 +@2601 = .data:0x802EC9F4; // type:object size:0x13 scope:local align:4 data:string +@2603 = .data:0x802ECA08; // type:object size:0x1F scope:local align:4 data:string +@2604 = .data:0x802ECA28; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802ECA34; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802ECA48; // type:object size:0x1C scope:weak align:4 +@2615 = .data:0x802ECA64; // type:object size:0xE scope:local align:4 data:string +@2617 = .data:0x802ECA74; // type:object size:0x9 scope:local align:4 data:string +@2618 = .data:0x802ECA80; // type:object size:0x14 scope:local align:4 +@2616 = .data:0x802ECA94; // type:object size:0x1C scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802ECAB0; // type:object size:0x20 scope:weak align:4 +@2660 = .data:0x802ECAEC; // type:object size:0x11 scope:local align:4 data:string +@2662 = .data:0x802ECB00; // type:object size:0xD scope:local align:4 data:string +@2663 = .data:0x802ECB10; // type:object size:0xC scope:local align:4 data:string +@2664 = .data:0x802ECB1C; // type:object size:0xC scope:local align:4 +@2661 = .data:0x802ECB28; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802ECB3C; // type:object size:0x28 scope:weak align:4 +@2665 = .data:0x802ECB64; // type:object size:0x13 scope:local align:4 data:string +@2668 = .data:0x802ECB78; // type:object size:0x9 scope:local align:4 data:string +@2669 = .data:0x802ECB84; // type:object size:0xC scope:local align:4 +@2671 = .data:0x802ECB90; // type:object size:0x14 scope:local align:4 +@2672 = .data:0x802ECBA4; // type:object size:0xF scope:local align:4 data:string +@2673 = .data:0x802ECBB4; // type:object size:0x1C scope:local align:4 +@2666 = .data:0x802ECBD0; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802ECBF4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802ECC28; // type:label scope:local +@1092 = .data:0x802ECC28; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802ECC40; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802ECC54; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802ECC60; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802ECC78; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802ECC90; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802ECCA8; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802ECCC0; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802ECCD4; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802ECCE4; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802ECCF8; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802ECD04; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802ECD18; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802ECD48; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802ECD54; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802ECD60; // type:object size:0xC scope:local align:4 data:4byte +@635 = .data:0x802ECD70; // type:object size:0x10 scope:local align:4 data:string +@649 = .data:0x802ECD80; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802ECD8C; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802ECD98; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802ECDA4; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802ECDB0; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802ECDBC; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802ECDC8; // type:object size:0xC scope:local align:4 data:4byte +@929 = .data:0x802ECDD4; // type:object size:0x20 scope:local align:4 data:string +...data.0 = .data:0x802ECDF8; // type:label scope:local +@635 = .data:0x802ECDF8; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802ECE08; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802ECE14; // type:object size:0xC scope:local align:4 +@650 = .data:0x802ECE20; // type:object size:0xC scope:local align:4 +@652 = .data:0x802ECE2C; // type:object size:0xC scope:local align:4 +@727 = .data:0x802ECE38; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802ECE44; // type:object size:0xC scope:local align:4 +@817 = .data:0x802ECE50; // type:object size:0xC scope:local align:4 +@824 = .data:0x802ECE5C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802ECE68; // type:label scope:local +@866 = .data:0x802ECE68; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802ECE7C; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802ECE8C; // type:object size:0x16 scope:local align:4 data:string +@1118 = .data:0x802ECEA4; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802ECEBC; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802ECED4; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802ECEE0; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802ECEEC; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802ECEF8; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802ECF04; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802ECF10; // type:object size:0xC scope:local align:4 +@1272 = .data:0x802ECF1C; // type:object size:0x12 scope:local align:4 data:string +@1364 = .data:0x802ECF30; // type:object size:0x17 scope:local align:4 data:string +@1366 = .data:0x802ECF48; // type:object size:0x17 scope:local align:4 data:string +@1365 = .data:0x802ECF60; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802ECF6C; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802ECF78; // type:object size:0xC scope:weak align:4 +@1367 = .data:0x802ECF84; // type:object size:0x1C scope:local align:4 data:string +@1369 = .data:0x802ECFA0; // type:object size:0xF scope:local align:4 data:string +@1370 = .data:0x802ECFB0; // type:object size:0x14 scope:local align:4 data:string +@1371 = .data:0x802ECFC4; // type:object size:0xC scope:local align:4 +@1372 = .data:0x802ECFD0; // type:object size:0x14 scope:local align:4 data:string +@1373 = .data:0x802ECFE4; // type:object size:0x1A scope:local align:4 data:string +@1374 = .data:0x802ED000; // type:object size:0x10 scope:local align:4 data:string +@1375 = .data:0x802ED010; // type:object size:0x14 scope:local align:4 +@1368 = .data:0x802ED024; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802ED080; // type:label scope:local +@660 = .data:0x802ED080; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802ED094; // type:object size:0xD scope:local align:4 data:string +@765 = .data:0x802ED0A4; // type:object size:0x21 scope:local align:4 data:string +@767 = .data:0x802ED0C8; // type:object size:0x33 scope:local align:4 +@770 = .data:0x802ED0FC; // type:object size:0x1B scope:local align:4 data:string +@900 = .data:0x802ED118; // type:object size:0xC scope:local align:4 +@902 = .data:0x802ED124; // type:object size:0xC scope:local align:4 +@904 = .data:0x802ED130; // type:object size:0xC scope:local align:4 +@906 = .data:0x802ED13C; // type:object size:0x12 scope:local align:4 data:string +@908 = .data:0x802ED150; // type:object size:0x10 scope:local align:4 data:string +@907 = .data:0x802ED160; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802ED16C; // type:object size:0x2C scope:global align:4 +@839 = .data:0x802ED198; // type:object size:0x10 scope:local align:4 data:string +@901 = .data:0x802ED1A8; // type:object size:0x16 scope:local align:4 data:string +@1002 = .data:0x802ED1C0; // type:object size:0x26 scope:local align:4 data:string +@977 = .data:0x802ED1E8; // type:object size:0x15 scope:local align:4 data:string +@650 = .data:0x802ED200; // type:object size:0x10 scope:local align:4 data:string +@731 = .data:0x802ED210; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802ED228; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802ED240; // type:object size:0x28 scope:local align:4 +@1153 = .data:0x802ED268; // type:object size:0x14 scope:local align:4 data:string +@1154 = .data:0x802ED27C; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802ED2A8; // type:object size:0xB scope:local align:4 data:string +@874 = .data:0x802ED2B8; // type:object size:0x14 scope:local align:4 data:string +@974 = .data:0x802ED2CC; // type:object size:0xD scope:local align:4 data:string +@1447 = .data:0x802ED2DC; // type:object size:0x18 scope:local align:4 data:string +@1448 = .data:0x802ED2F4; // type:object size:0x1C scope:local align:4 +@1468 = .data:0x802ED310; // type:object size:0x1C scope:local align:4 +@1483 = .data:0x802ED32C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802ED348; // type:label scope:local +@866 = .data:0x802ED348; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802ED35C; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802ED36C; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802ED37C; // type:object size:0x28 scope:local align:4 +@930 = .data:0x802ED3A4; // type:object size:0x16 scope:local align:4 data:string +@953 = .data:0x802ED3BC; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802ED3E8; // type:label scope:local +@51 = .data:0x802ED3E8; // type:object size:0x1E scope:local align:4 data:string +@52 = .data:0x802ED408; // type:object size:0x16 scope:local align:4 data:string +@53 = .data:0x802ED420; // type:object size:0xC scope:local align:4 data:string +@54 = .data:0x802ED42C; // type:object size:0x9 scope:local align:4 data:string +@55 = .data:0x802ED438; // type:object size:0x10 scope:local align:4 data:string +@56 = .data:0x802ED448; // type:object size:0xB scope:local align:4 data:string +@57 = .data:0x802ED454; // type:object size:0xE scope:local align:4 data:string +@58 = .data:0x802ED464; // type:object size:0xD scope:local align:4 data:string +@59 = .data:0x802ED474; // type:object size:0xD scope:local align:4 data:string +@60 = .data:0x802ED484; // type:object size:0xD scope:local align:4 data:string +@61 = .data:0x802ED494; // type:object size:0x12 scope:local align:4 data:string +@62 = .data:0x802ED4A8; // type:object size:0xE scope:local align:4 data:string +@63 = .data:0x802ED4B8; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802ED4D0; // type:object size:0x3C scope:local align:4 +@97 = .data:0x802ED50C; // type:object size:0x1B scope:local align:4 data:string +@98 = .data:0x802ED528; // type:object size:0x2E scope:local align:4 data:string +@99 = .data:0x802ED558; // type:object size:0x2F scope:local align:4 data:string +@100 = .data:0x802ED588; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802ED5A8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802ED628; // type:label scope:local +@69 = .data:0x802ED628; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802ED654; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802ED66C; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802ED688; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802ED6B8; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802ED6F4; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802ED72C; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802ED76C; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802ED798; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802ED7B8; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802ED7D4; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802ED7F0; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802ED80C; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802ED824; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802ED858; // type:label scope:local +@59 = .data:0x802ED858; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802ED89C; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802ED8CC; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802ED8FC; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802ED92C; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802ED940; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802ED964; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802ED978; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802ED994; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802ED9A8; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802ED9C8; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802ED9F0; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802EDA0C; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802EDA30; // type:label scope:local +@10 = .data:0x802EDA30; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802EDA48; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802EDA70; // type:object size:0x1C scope:local align:4 data:string +@29 = .data:0x802EDA8C; // type:object size:0x1D scope:local align:4 data:string +@30 = .data:0x802EDAAC; // type:object size:0x17 scope:local align:4 data:string +@32 = .data:0x802EDAC4; // type:object size:0x30 scope:local align:4 data:string +@33 = .data:0x802EDAF4; // type:object size:0x60 scope:local align:4 data:string +@34 = .data:0x802EDB54; // type:object size:0x4C scope:local align:4 data:string +@35 = .data:0x802EDBA0; // type:object size:0x62 scope:local align:4 data:string +@36 = .data:0x802EDC04; // type:object size:0x60 scope:local align:4 data:string +InterruptPrioTable = .data:0x802EDC68; // type:object size:0x2C scope:local align:4 data:4byte +@99 = .data:0x802EDC94; // type:object size:0x6C scope:local align:4 +...data.0 = .data:0x802EDD00; // type:label scope:local +Si = .data:0x802EDD00; // type:object size:0x14 scope:local align:4 data:4byte +...data.0 = .data:0x802EDD18; // type:label scope:local +@794 = .data:0x802EDD18; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802EDD78; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802EDD84; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802EDDE4; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802EDE2C; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802EDEAC; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802EDF2C; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802EDFA8; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802EE024; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802EE078; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802EE0EC; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802EE128; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802EE174; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802EE1C8; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802EE21C; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802EE278; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802EE2BC; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802EE2F8; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802EE334; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802EE378; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802EE3BC; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802EE3F8; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802EE438; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802EE4A0; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802EE4E8; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802EE528; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802EE558; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802EE588; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802EE5A0; // type:label scope:local +@117 = .data:0x802EE5A0; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802EE668; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802EE6A0; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802EE6D4; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802EE704; // type:object size:0x27 scope:local align:4 data:string +@328 = .data:0x802EE72C; // type:object size:0x66 scope:local align:4 data:string +@329 = .data:0x802EE794; // type:object size:0x55 scope:local align:4 data:string +@330 = .data:0x802EE7EC; // type:object size:0x5C scope:local align:4 data:string +@361 = .data:0x802EE848; // type:object size:0x61 scope:local align:4 data:string +@362 = .data:0x802EE8AC; // type:object size:0x50 scope:local align:4 data:string +@363 = .data:0x802EE8FC; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802EE958; // type:label scope:local +@13 = .data:0x802EE958; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802EE970; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802EE97C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802EE998; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802EE9A4; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802EE9C4; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802EEA04; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802EEA38; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802EEA70; // type:object size:0x40 scope:local align:4 data:4byte +...data.0 = .data:0x802EEAB0; // type:label scope:local +@36 = .data:0x802EEAB0; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802EEACC; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802EEAE4; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802EEAF8; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802EEB0C; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802EEB20; // type:label scope:local +timing = .data:0x802EEB20; // type:object size:0x10A scope:local align:4 +taps = .data:0x802EEC2C; // type:object size:0x32 scope:local align:4 +@87 = .data:0x802EEC60; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802EEC88; // type:label scope:local +ResetFunctionInfo = .data:0x802EEC88; // type:object size:0x10 scope:local align:4 +XYNTSC = .data:0x802EEC98; // type:object size:0x18 scope:local align:4 +XYPAL = .data:0x802EECB0; // type:object size:0x18 scope:local align:4 +@414 = .data:0x802EECC8; // type:object size:0x26 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802EECF0; // type:object size:0x10 scope:local align:4 +SectorSizeTable = .data:0x802EED00; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802EED20; // type:object size:0x20 scope:local align:4 +@124 = .data:0x802EED40; // type:object size:0x68 scope:local align:4 +@183 = .data:0x802EEDA8; // type:object size:0x68 scope:local align:4 +@292 = .data:0x802EEE10; // type:object size:0x44 scope:local align:4 +@319 = .data:0x802EEE54; // type:object size:0x44 scope:local align:4 +@489 = .data:0x802EEE98; // type:object size:0x1C scope:local align:4 +@488 = .data:0x802EEEB4; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802EEF08; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802EEF44; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802EEF80; // type:object size:0x3C scope:global align:4 data:byte +@133 = .data:0x802EEFC0; // type:object size:0xF4 scope:local align:4 +@163 = .data:0x802EF0B4; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802EF0F0; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802EF118; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802EF138; // type:label scope:local +__files = .data:0x802EF138; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802EF210; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802EF240; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802EF2C4; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802EF348; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802EF418; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802EF460; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802EF530; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802EF574; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802EF5B8; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802EF5BC; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802EF5C0; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802EF5C8; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802EF5D0; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802EF5D8; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802EF5E0; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802EF5E8; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802EF5F0; // type:label scope:local +__four_over_pi_m1 = .data:0x802EF5F0; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802EF600; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802EF688; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802EF6A4; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802EF6C0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802EF6CC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802EF6DC; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802EF6F0; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802EF730; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802EF750; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802EF780; // type:label scope:local +dac = .bss:0x802EF780; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802EF78C; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802EF7A0; // type:label scope:local +audioproc_mq = .bss:0x802EF7A0; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EF7C0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802EF800; // type:label scope:local +finfo$42 = .bss:0x802EF800; // type:object size:0x3C scope:local align:4 +cmd$43 = .bss:0x802EF83C; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802EF870; // type:label scope:local +dsp_buf = .bss:0x802EF870; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EF880; // type:label scope:local +dsp_buf = .bss:0x802EF880; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EF890; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802EF890; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802EF950; // type:label scope:local +mq = .bss:0x802EF950; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EF970; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802EFB70; // type:object size:0x8000 scope:local align:4 +finfo$221 = .bss:0x802F7B70; // type:object size:0x3C scope:local align:4 +req$222 = .bss:0x802F7BAC; // type:object size:0x80 scope:local align:4 +finfo$264 = .bss:0x802F7C2C; // type:object size:0x3C scope:local align:4 +req$265 = .bss:0x802F7C68; // type:object size:0x20 scope:local align:4 +finfo$272 = .bss:0x802F7C88; // type:object size:0x3C scope:local align:4 +req$273 = .bss:0x802F7CC4; // type:object size:0x20 scope:local align:4 +finfo$290 = .bss:0x802F7CE4; // type:object size:0x3C scope:local align:4 +finfo$307 = .bss:0x802F7D20; // type:object size:0x3C scope:local align:4 +finfo$312 = .bss:0x802F7D5C; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802F7D98; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802F8598; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F8620; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802F8620; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802F86A0; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x8030C6A0; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x8030C720; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8030C7A0; // type:label scope:local +DSPCH = .bss:0x8030C7A0; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x8030CBA0; // type:object size:0x6000 scope:local align:32 +FX_BUF = .bss:0x80312BA0; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x80312C20; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x80313020; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x80313420; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x80313820; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x80313A20; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x80313C20; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x80314028; // type:label scope:local +FH_TO_FAT = .bss:0x80314028; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x80314428; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80314C28; // type:label scope:local +JV_DIR_NAME = .bss:0x80314C28; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x80315028; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x80315228; // type:object size:0x40 scope:local align:4 +finfo$150 = .bss:0x80315268; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x803152C0; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x803252C0; // type:label scope:local +TRACK_LIST = .bss:0x803252C0; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x803253C0; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x803253E0; // type:label scope:local +seq = .bss:0x803253E0; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x803687E0; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x80368BE0; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x80368C20; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x80369020; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x80369030; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x8036909C; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80369108; // type:label scope:local +player_se$123 = .bss:0x80369108; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x80369174; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x803691E0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x80369220; // type:label scope:local +bgm = .bss:0x80369220; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x80369F58; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80369FC8; // type:label scope:local +seq_loadbuffer = .bss:0x80369FC8; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x8036A3C8; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x8036E708; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x8036E748; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8036E7E0; // type:label scope:local +SC = .bss:0x8036E7E0; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x80390230; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x80390248; // type:label scope:local +interleavebuf = .bss:0x80390248; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x80390280; // type:label scope:local +filename = .bss:0x80390280; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x803902C0; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x803902CC; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x80390310; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x80390328; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x80390640; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x80391640; // type:label scope:local +clipTable = .bss:0x80391640; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x80391840; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x80391880; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80392080; // type:label scope:local +fnVerts = .bss:0x80392080; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x80393880; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x80395080; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x80396080; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x80396180; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x8039A180; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x8039E180; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x8039E1C0; // type:label scope:local +@588 = .bss:0x8039E1C0; // type:object size:0xC scope:local align:4 +sys = .bss:0x8039E1CC; // type:object size:0x334 scope:global align:4 +dvdMesgQueue = .bss:0x8039E500; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x8039E520; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x8039E540; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x8039E560; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x8039E574; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x8039E674; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x8039E6C8; // type:object size:0x20 scope:local align:4 +mMemoryTable$1026 = .bss:0x8039E6E8; // type:object size:0xC scope:local align:4 +Thread = .bss:0x8039E6F8; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x8039EA20; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x803A0A20; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x803A0D40; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x803A2D40; // type:label scope:local +sControllerPad = .bss:0x803A2D40; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x803A2D70; // type:label scope:local +GColors = .bss:0x803A2D70; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x803A2D78; // type:label scope:local +CardThread = .bss:0x803A2D78; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x803A3088; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x803A30F8; // type:label scope:local +gameflow = .bss:0x803A30F8; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x803A3460; // type:label scope:local +flowCont = .bss:0x803A3460; // type:object size:0x25C scope:global align:4 data:4byte +...bss.0 = .bss:0x803A36C0; // type:label scope:local +resultTable = .bss:0x803A36C0; // type:object size:0x40 scope:local align:4 data:4byte +...bss.0 = .bss:0x803A3700; // type:label scope:local +collExtents = .bss:0x803A3700; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x803A3718; // type:label scope:local +bcs = .bss:0x803A3718; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803A3B20; // type:label scope:local +cst = .bss:0x803A3B20; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x803A3BA0; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803ADBA0; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803D3BA0; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D5BA0; // type:label scope:local +YtexObj = .bss:0x803D5BA0; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D5BC0; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D5BE0; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D5EF0; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803D6EF0; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803D6F30; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D7730; // type:label scope:local +pikiInfMgr = .bss:0x803D7730; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D7758; // type:label scope:local +pikiColors__4Piki = .bss:0x803D7758; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803D7770; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803D7788; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803D7788; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D7798; // type:label scope:local +deadPikis__8GameStat = .bss:0x803D7798; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803D77A4; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803D77B0; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803D77BC; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803D77C8; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803D77D4; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803D77E0; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803D77EC; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803D77F8; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803D7804; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803D7810; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803D7820; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803D7C20; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803D7C20; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D7C48; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803D7C48; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803D7CA0; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803D7CC8; // type:object size:0x28 scope:global align:4 data:4byte +OSErrorTable = .bss:0x803D7CF0; // type:object size:0x3C scope:local align:4 +Ecb = .bss:0x803D7D30; // type:object size:0xA8 scope:local align:4 +...bss.0 = .bss:0x803D7DE0; // type:label scope:local +Header = .bss:0x803D7DE0; // type:object size:0x20 scope:global align:32 +...bss.0 = .bss:0x803D7E00; // type:label scope:local +Scb = .bss:0x803D7E00; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803D7E58; // type:label scope:local +Packet = .bss:0x803D7E58; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803D7ED8; // type:object size:0xA0 scope:local align:8 +...bss.0 = .bss:0x803D7F78; // type:label scope:local +RunQueue = .bss:0x803D7F78; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803D8078; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803D8388; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803D8698; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803D8960; // type:label scope:local +CommandList = .bss:0x803D8960; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803D89A0; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803D89C8; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803D89F0; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803D8A18; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803D8A24; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803D8A40; // type:label scope:local +tmpBuffer = .bss:0x803D8A40; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803D8AC0; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803D8AF0; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803D8B18; // type:label scope:local +WaitingQueue = .bss:0x803D8B18; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803D8B38; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803D8B78; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803D8BA8; // type:label scope:local +regs = .bss:0x803D8BA8; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803D8C20; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803D8C98; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x803D8CF0; // type:label scope:local +PADType = .bss:0x803D8CF0; // type:object size:0x10 scope:local align:4 +Type = .bss:0x803D8D00; // type:object size:0x10 scope:local align:4 data:4byte +Origin = .bss:0x803D8D10; // type:object size:0x30 scope:local align:4 +cmdProbeDevice = .bss:0x803D8D40; // type:object size:0x10 scope:local align:4 +cmdFixDevice = .bss:0x803D8D50; // type:object size:0x10 scope:local align:4 +__CARDBlock = .bss:0x803D8D60; // type:object size:0x210 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803D8F70; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803D8F90; // type:label scope:local +gxData = .bss:0x803D8F90; // type:object size:0x4F4 scope:local align:4 +FifoObj = .bss:0x803D9484; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803D9508; // type:label scope:local +DisplayListFifo = .bss:0x803D9508; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803D952C; // type:object size:0x4F4 scope:local align:4 +fragmentinfo = .bss:0x803D9A20; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803D9A30; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803D9B30; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803D9C30; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803D9C58; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803D9C60; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803DB610; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803DB624; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803DB628; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803DB630; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803DB634; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803DB6C8; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803DB6D8; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803DB780; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803DBBB0; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803DBBB8; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DBBC0; // type:label scope:local +Ecb = .bss:0x803DBBC0; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803DBBD8; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803DBC00; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803DE540; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803DE540; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803DF540; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803DF860; // type:object size:0x1000 scope:global align:32 +EX_DSPTASK = .bss:0x803E0860; // type:object size:0x40 scope:global align:4 +CGRP_ARRAY = .bss:0x803E08A0; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803E08E0; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803E090C; // type:object size:0x1B00 scope:global align:4 +CAMERA = .bss:0x803E090C; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803E2430; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803E25E0; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803E2620; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803E2624; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803E2628; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803E262C; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803E2630; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803E2638; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803E263C; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$81 = .sdata:0x803E2640; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$82 = .sdata:0x803E2648; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803E2650; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803E2654; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803E2658; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803E265C; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803E2660; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803E2668; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803E2670; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803E2671; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803E2674; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803E2678; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803E2680; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803E2688; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803E268C; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803E2690; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803E2698; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803E26A0; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803E26A8; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803E26B0; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803E26B8; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803E26C0; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803E26C8; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803E26D0; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803E26D8; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803E26E0; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803E26E8; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803E26F0; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803E26F8; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803E2700; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803E2704; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803E2708; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803E270C; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803E270E; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803E2710; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803E2714; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803E2718; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803E271C; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803E2724; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803E2728; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803E2730; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803E2738; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803E2740; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803E2748; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803E2750; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803E2758; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803E2760; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803E2764; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803E2768; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803E2770; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E2778; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803E2780; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2788; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2790; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803E2798; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E27A0; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803E27A8; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803E27B0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E27B8; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803E27C0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E27C8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E27D0; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803E27D8; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803E27E0; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E27E4; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E27E8; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E27EC; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803E27F0; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803E27F4; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803E27F8; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E27FC; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803E2800; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803E2804; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803E2808; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803E280C; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E2810; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E2814; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803E281C; // type:object size:0x8 scope:local align:4 data:string +@1666 = .sdata:0x803E2824; // type:object size:0x1 scope:local align:4 +@1779 = .sdata:0x803E2828; // type:object size:0x8 scope:local align:4 data:string +@1880 = .sdata:0x803E2830; // type:object size:0x6 scope:local align:4 data:string +@1889 = .sdata:0x803E2838; // type:object size:0x4 scope:local align:4 data:float +@1890 = .sdata:0x803E283C; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata:0x803E2840; // type:object size:0x4 scope:local align:4 data:float +@1892 = .sdata:0x803E2844; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata:0x803E2848; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E284C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E2850; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E2854; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E2858; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E285C; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E2860; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E2864; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E2868; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E286C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803E2870; // type:object size:0x8 scope:local align:4 +@2189 = .sdata:0x803E2878; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803E2880; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803E2888; // type:object size:0x8 scope:local align:4 +@2191 = .sdata:0x803E2890; // type:object size:0x8 scope:local align:4 data:string +@2193 = .sdata:0x803E2898; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E28A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E28A8; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803E28B0; // type:object size:0x8 scope:local align:4 +@2197 = .sdata:0x803E28B8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803E28C0; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E28C8; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E28D0; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803E28D8; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E28E0; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E28E4; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E28E8; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803E28EC; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803E28F0; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E28F4; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E28F8; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E28FC; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E2900; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803E2904; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803E290C; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803E2914; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E291C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2924; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803E292C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E2938; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E293C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E2940; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E2944; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E2948; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E294C; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803E2950; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E2954; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E2958; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E295C; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803E2964; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803E2968; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803E296C; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803E2970; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803E2978; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803E297C; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803E2984; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803E298C; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803E2990; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803E2994; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803E299C; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803E29A4; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803E29AC; // type:object size:0x8 scope:local align:4 data:string +@1685 = .sdata:0x803E29B4; // type:object size:0x5 scope:local align:4 data:string +@1686 = .sdata:0x803E29BC; // type:object size:0x7 scope:local align:4 data:string +@1687 = .sdata:0x803E29C4; // type:object size:0x6 scope:local align:4 data:string +@2219 = .sdata:0x803E29CC; // type:object size:0x6 scope:local align:4 data:string +@2329 = .sdata:0x803E29D4; // type:object size:0x7 scope:local align:4 data:string +@2781 = .sdata:0x803E29DC; // type:object size:0x5 scope:local align:4 data:string +@2787 = .sdata:0x803E29E4; // type:object size:0x8 scope:local align:4 data:string +@3629 = .sdata:0x803E29EC; // type:object size:0x5 scope:local align:4 data:string +@3670 = .sdata:0x803E29F4; // type:object size:0x7 scope:local align:4 data:string +@4260 = .sdata:0x803E29FC; // type:object size:0x5 scope:local align:4 data:string +@4261 = .sdata:0x803E2A04; // type:object size:0x5 scope:local align:4 data:string +@4299 = .sdata:0x803E2A0C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E2A14; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803E2A1C; // type:object size:0x8 scope:local align:4 +@4567 = .sdata:0x803E2A24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2A2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2A34; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E2A3C; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803E2A44; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803E2A4C; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803E2A54; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803E2A5C; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803E2A64; // type:object size:0x8 scope:local align:4 +@4584 = .sdata:0x803E2A6C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803E2A74; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803E2A7C; // type:object size:0x8 scope:local align:4 +@4589 = .sdata:0x803E2A84; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803E2A8C; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803E2A94; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803E2A9C; // type:object size:0x8 scope:local align:4 +@4594 = .sdata:0x803E2AA4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803E2AAC; // type:object size:0x8 scope:local align:4 +@4596 = .sdata:0x803E2AB4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803E2ABC; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803E2AC4; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803E2ACC; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803E2AD8; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803E2AE0; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803E2AE4; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803E2AE8; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803E2AF0; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803E2AF8; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E2AFC; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803E2B04; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803E2B08; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803E2B10; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803E2B18; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803E2B20; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E2B24; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E2B28; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E2B2C; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803E2B30; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E2B38; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803E2B40; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E2B44; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E2B48; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803E2B50; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803E2B58; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803E2B5C; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803E2B60; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803E2B64; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803E2B6C; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803E2B70; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803E2B74; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803E2B7C; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803E2B84; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E2B88; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E2B8C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E2B90; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E2B94; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803E2B98; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803E2B9C; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803E2BA4; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803E2BAC; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803E2BB4; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803E2BBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2BC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2BCC; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803E2BD4; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803E2BDC; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803E2BE4; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803E2BEC; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803E2BF8; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E2BFC; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E2C00; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E2C04; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E2C08; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803E2C0C; // type:object size:0x4 scope:global align:4 data:float +@869 = .sdata:0x803E2C10; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803E2C18; // type:object size:0x1 scope:local align:4 +@690 = .sdata:0x803E2C1C; // type:object size:0x3 scope:local align:4 data:string +@845 = .sdata:0x803E2C20; // type:object size:0x8 scope:local align:4 data:string +@953 = .sdata:0x803E2C28; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E2C30; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803E2C38; // type:object size:0x8 scope:local align:4 +@1006 = .sdata:0x803E2C40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2C48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2C50; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803E2C58; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E2C60; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803E2C68; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803E2C70; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803E2C78; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E2C80; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803E2C88; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803E2C90; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803E2C98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2CA0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2CA8; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803E2CB0; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803E2CB8; // type:object size:0x8 scope:local align:4 +@424 = .sdata:0x803E2CC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2CC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2CD0; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803E2CD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2CE0; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E2CE8; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E2CF0; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E2CF4; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E2CF8; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E2CFC; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E2D00; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803E2D04; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E2D08; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803E2D0C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803E2D10; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803E2D14; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803E2D18; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803E2D1C; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803E2D20; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803E2D24; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E2D28; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E2D2C; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E2D30; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E2D34; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803E2D38; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803E2D3C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803E2D40; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E2D44; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E2D48; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E2D4C; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E2D50; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803E2D54; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803E2D58; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E2D5C; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803E2D60; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803E2D64; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803E2D68; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E2D6C; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803E2D70; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E2D78; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E2D80; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803E2D88; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E2D90; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E2D98; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803E2DA0; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803E2DA4; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803E2DAC; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803E2DB0; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803E2DB8; // type:object size:0x8 scope:local align:4 +@715 = .sdata:0x803E2DC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2DC8; // type:object size:0x8 scope:local align:4 +@587 = .sdata:0x803E2DD0; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803E2DD8; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803E2DDC; // type:object size:0x4 scope:global align:4 data:4byte +@684 = .sdata:0x803E2DE0; // type:object size:0x1 scope:local align:4 +@685 = .sdata:0x803E2DE4; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E2DE8; // type:object size:0x7 scope:local align:4 data:string +@909 = .sdata:0x803E2DF0; // type:object size:0x6 scope:local align:4 data:string +@910 = .sdata:0x803E2DF8; // type:object size:0x7 scope:local align:4 data:string +@911 = .sdata:0x803E2E00; // type:object size:0x5 scope:local align:4 data:string +@912 = .sdata:0x803E2E08; // type:object size:0x3 scope:local align:4 data:string +@913 = .sdata:0x803E2E0C; // type:object size:0x7 scope:local align:4 data:string +@951 = .sdata:0x803E2E14; // type:object size:0x5 scope:local align:4 data:string +@982 = .sdata:0x803E2E1C; // type:object size:0x7 scope:local align:4 data:string +@1087 = .sdata:0x803E2E24; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803E2E28; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803E2E30; // type:object size:0x8 scope:local align:4 +@1279 = .sdata:0x803E2E38; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E2E40; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803E2E48; // type:object size:0x8 scope:local align:4 +@1282 = .sdata:0x803E2E50; // type:object size:0x4 scope:local align:4 data:string +@1301 = .sdata:0x803E2E54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2E5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2E64; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803E2E6C; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803E2E74; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E2E7C; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803E2E84; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E2E8C; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803E2E94; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803E2E9C; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803E2EA8; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803E2EB0; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803E2EB8; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803E2EBC; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803E2EC0; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803E2EC4; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803E2EC8; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803E2ECC; // type:object size:0x8 scope:local align:4 data:byte +@1344 = .sdata:0x803E2ED4; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E2ED8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E2EDC; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803E2EE0; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata:0x803E2EE4; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E2EE8; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata:0x803E2EEC; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E2EF0; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E2EF4; // type:object size:0x6 scope:local align:4 data:string +@2083 = .sdata:0x803E2EFC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2F04; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2F0C; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E2F14; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803E2F1C; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E2F24; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803E2F2C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E2F38; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E2F3C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E2F40; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E2F44; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E2F48; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E2F4C; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E2F50; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E2F54; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E2F58; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E2F5C; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E2F60; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E2F64; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E2F68; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E2F6C; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E2F70; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803E2F74; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E2F78; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E2F7C; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E2F80; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E2F84; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E2F88; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E2F8C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E2F90; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E2F94; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E2F98; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E2F9C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E2FA0; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E2FA4; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E2FA8; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E2FAC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E2FB0; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803E2FB4; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E2FB8; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E2FBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2FC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2FCC; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803E2FD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2FDC; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E2FE4; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803E2FF0; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803E2FF8; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803E2FFC; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803E3000; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803E3004; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803E3008; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803E300C; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803E3014; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803E301C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E3020; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E3028; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3030; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3038; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803E3040; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E3048; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803E3050; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E3058; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E3060; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803E3068; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E3070; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803E3078; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803E3080; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803E3088; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803E3090; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803E3098; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803E30A0; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803E30A8; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803E30B0; // type:object size:0x1 scope:local align:4 +@2274 = .sdata:0x803E30B4; // type:object size:0x4 scope:local align:4 data:4byte +@2276 = .sdata:0x803E30B8; // type:object size:0x4 scope:local align:4 data:4byte +@2278 = .sdata:0x803E30BC; // type:object size:0x4 scope:local align:4 data:4byte +@2280 = .sdata:0x803E30C0; // type:object size:0x4 scope:local align:4 data:4byte +@2281 = .sdata:0x803E30C4; // type:object size:0x4 scope:local align:4 data:4byte +@2283 = .sdata:0x803E30C8; // type:object size:0x4 scope:local align:4 data:4byte +@2285 = .sdata:0x803E30CC; // type:object size:0x4 scope:local align:4 data:4byte +@2287 = .sdata:0x803E30D0; // type:object size:0x4 scope:local align:4 data:4byte +@2289 = .sdata:0x803E30D4; // type:object size:0x4 scope:local align:4 data:4byte +@2291 = .sdata:0x803E30D8; // type:object size:0x4 scope:local align:4 data:4byte +@2293 = .sdata:0x803E30DC; // type:object size:0x4 scope:local align:4 data:4byte +@2294 = .sdata:0x803E30E0; // type:object size:0x4 scope:local align:4 data:4byte +@2295 = .sdata:0x803E30E4; // type:object size:0x4 scope:local align:4 data:4byte +@2296 = .sdata:0x803E30E8; // type:object size:0x5 scope:local align:4 data:string +@2297 = .sdata:0x803E30F0; // type:object size:0x5 scope:local align:4 data:string +@2299 = .sdata:0x803E30F8; // type:object size:0x7 scope:local align:4 data:string +@2462 = .sdata:0x803E3100; // type:object size:0x4 scope:local align:4 data:string +@2463 = .sdata:0x803E3104; // type:object size:0x7 scope:local align:4 data:string +@2465 = .sdata:0x803E310C; // type:object size:0x8 scope:local align:4 data:string +@2500 = .sdata:0x803E3114; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E311C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3124; // type:object size:0x8 scope:local align:4 +@2503 = .sdata:0x803E312C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3134; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803E313C; // type:object size:0x8 scope:local align:4 +@2514 = .sdata:0x803E3144; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E314C; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803E3154; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E315C; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803E3164; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E316C; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803E3174; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803E317C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803E3184; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803E318C; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803E3198; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803E31A0; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803E31A4; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803E31A8; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803E31AC; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803E31B4; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803E31BC; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803E31C4; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803E31CC; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803E31D0; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803E31D8; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E31E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E31E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E31F0; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E31F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3200; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803E3208; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3210; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803E3218; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803E3220; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803E3228; // type:object size:0x8 scope:local align:4 +@972 = .sdata:0x803E3230; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3238; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3240; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803E3248; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803E3250; // type:object size:0x8 scope:local align:4 +@1146 = .sdata:0x803E3258; // type:object size:0x1 scope:local align:4 +@1188 = .sdata:0x803E325C; // type:object size:0x7 scope:local align:4 data:string +@1190 = .sdata:0x803E3264; // type:object size:0x6 scope:local align:4 data:string +@1203 = .sdata:0x803E326C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3274; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E327C; // type:object size:0x8 scope:local align:4 +@1206 = .sdata:0x803E3284; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E328C; // type:object size:0x8 scope:local align:4 +@1208 = .sdata:0x803E3294; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E329C; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803E32A4; // type:object size:0x8 scope:local align:4 +@1220 = .sdata:0x803E32AC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E32B4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E32BC; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803E32C4; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803E32D0; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803E32D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E32E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E32E8; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803E32F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E32F8; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803E3300; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E3308; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803E330C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3314; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803E331C; // type:object size:0x8 scope:local align:4 +@1333 = .sdata:0x803E3328; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803E332C; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803E3334; // type:object size:0x8 scope:local align:4 data:string +@1430 = .sdata:0x803E333C; // type:object size:0x1 scope:local align:4 +@1465 = .sdata:0x803E3340; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3348; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3350; // type:object size:0x8 scope:local align:4 +@1470 = .sdata:0x803E3358; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3360; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803E3368; // type:object size:0x8 scope:local align:4 +@1571 = .sdata:0x803E3370; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3378; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803E3380; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E3388; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803E3390; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803E3398; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803E33A0; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E33A4; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E33A8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E33AC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803E33B0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E33B4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E33B8; // type:object size:0x1 scope:local align:4 +@2294 = .sdata:0x803E33BC; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E33C0; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E33C4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E33C8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E33CC; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E33D0; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E33D4; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata:0x803E33D8; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata:0x803E33DC; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata:0x803E33E0; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata:0x803E33E4; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata:0x803E33E8; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata:0x803E33EC; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E33F0; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E33F4; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E33F8; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata:0x803E33FC; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E3400; // type:object size:0x4 scope:local align:4 data:float +@2815 = .sdata:0x803E3404; // type:object size:0x4 scope:local align:4 data:float +@2816 = .sdata:0x803E3408; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata:0x803E340C; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata:0x803E3410; // type:object size:0x4 scope:local align:4 data:float +@2819 = .sdata:0x803E3414; // type:object size:0x4 scope:local align:4 data:float +@2820 = .sdata:0x803E3418; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata:0x803E341C; // type:object size:0x7 scope:local align:4 data:string +@3091 = .sdata:0x803E3424; // type:object size:0x4 scope:local align:4 data:string +@3094 = .sdata:0x803E3428; // type:object size:0x5 scope:local align:4 data:string +@3095 = .sdata:0x803E3430; // type:object size:0x6 scope:local align:4 data:string +@3096 = .sdata:0x803E3438; // type:object size:0x7 scope:local align:4 data:string +@3098 = .sdata:0x803E3440; // type:object size:0x6 scope:local align:4 data:string +@3099 = .sdata:0x803E3448; // type:object size:0x8 scope:local align:4 data:string +@3120 = .sdata:0x803E3450; // type:object size:0x4 scope:local align:4 data:string +@3121 = .sdata:0x803E3454; // type:object size:0x6 scope:local align:4 data:string +@3147 = .sdata:0x803E345C; // type:object size:0x3 scope:local align:4 data:string +@3149 = .sdata:0x803E3460; // type:object size:0x3 scope:local align:4 data:string +@3150 = .sdata:0x803E3464; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803E346C; // type:object size:0x8 scope:local align:4 +@3180 = .sdata:0x803E3474; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E347C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3484; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803E348C; // type:object size:0x8 scope:local align:4 +@3187 = .sdata:0x803E3494; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E349C; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E34A4; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803E34AC; // type:object size:0x8 scope:local align:4 +@3365 = .sdata:0x803E34B4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E34BC; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803E34C4; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803E34CC; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E34D4; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803E34DC; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803E34E4; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803E34EC; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803E34F4; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803E34FC; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803E3508; // type:object size:0x4 scope:local align:4 data:float +@1227 = .sdata:0x803E350C; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata:0x803E3510; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803E3514; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E3518; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E351C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E3520; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803E3524; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803E3528; // type:object size:0x4 scope:local align:4 data:float +@1243 = .sdata:0x803E352C; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E3530; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E3534; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E3538; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E353C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E3540; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E3544; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803E354C; // type:object size:0x6 scope:local align:4 data:string +@1310 = .sdata:0x803E3554; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E355C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3564; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E356C; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803E3574; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803E357C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E3584; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E358C; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E3594; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803E359C; // type:object size:0x8 scope:local align:4 +@1418 = .sdata:0x803E35A4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E35AC; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803E35B4; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803E35C0; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803E35C8; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803E35CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E35D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E35DC; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803E35E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E35EC; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E35F4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E35FC; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803E3604; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E3610; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata:0x803E3614; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata:0x803E3618; // type:object size:0x4 scope:local align:4 data:float +@760 = .sdata:0x803E361C; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E3620; // type:object size:0x1 scope:local align:4 +@861 = .sdata:0x803E3624; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata:0x803E3628; // type:object size:0x4 scope:local align:4 data:float +@863 = .sdata:0x803E362C; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803E3630; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803E3634; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata:0x803E3638; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata:0x803E363C; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata:0x803E3640; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E3644; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803E3648; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E364C; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E3650; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E3654; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E3658; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803E3660; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E3664; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E3668; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E366C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E3670; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E3674; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E3678; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3680; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3688; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803E3690; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3698; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E36A0; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E36A8; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803E36B0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E36B8; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803E36C0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E36C8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E36D0; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803E36D8; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803E36E0; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803E36E8; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803E36F0; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803E36F4; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E36FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3704; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E370C; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E3714; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E371C; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803E3724; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E3730; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803E3738; // type:object size:0x4 scope:local align:4 data:string +@802 = .sdata:0x803E373C; // type:object size:0x8 scope:local align:4 data:string +@804 = .sdata:0x803E3744; // type:object size:0x8 scope:local align:4 data:string +@830 = .sdata:0x803E374C; // type:object size:0x4 scope:local align:4 data:string +@861 = .sdata:0x803E3750; // type:object size:0x4 scope:local align:4 data:string +@868 = .sdata:0x803E3754; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E375C; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E3764; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803E376C; // type:object size:0x8 scope:local align:4 +@872 = .sdata:0x803E3774; // type:object size:0x8 scope:local align:4 data:string +@874 = .sdata:0x803E377C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3784; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E378C; // type:object size:0x8 scope:local align:4 +@877 = .sdata:0x803E3794; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E379C; // type:object size:0x8 scope:local align:4 +@879 = .sdata:0x803E37A4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803E37AC; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803E37B4; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803E37BC; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E37C8; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E37CC; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E37D0; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata:0x803E37D4; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803E37D8; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E37DC; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata:0x803E37E0; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E37E4; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E37E8; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E37EC; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E37F0; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E37F4; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803E37F8; // type:object size:0x4 scope:local align:4 data:float +@1288 = .sdata:0x803E37FC; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803E3800; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E3804; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E3808; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E380C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E3810; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803E3814; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata:0x803E3818; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E381C; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803E3820; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803E3824; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803E3828; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E382C; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E3830; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803E3834; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803E3838; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata:0x803E383C; // type:object size:0x7 scope:local align:4 data:string +@1483 = .sdata:0x803E3844; // type:object size:0x7 scope:local align:4 data:string +@1508 = .sdata:0x803E384C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3854; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E385C; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E3864; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803E386C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803E3874; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E387C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3884; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803E388C; // type:object size:0x8 scope:local align:4 +@1769 = .sdata:0x803E3894; // type:object size:0x1 scope:local align:4 +@1799 = .sdata:0x803E3898; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E38A0; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803E38A8; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803E38B0; // type:object size:0x8 scope:local align:4 +@941 = .sdata:0x803E38B8; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803E38C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E38C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E38D0; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803E38D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E38E0; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803E38E8; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803E38F0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E38F8; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803E3900; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E3908; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E390C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E3910; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E3914; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E3918; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E391C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E3920; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E3924; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803E3928; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803E392C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E3930; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803E3934; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803E3938; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803E393C; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803E3940; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803E3944; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803E3948; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803E394C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E3950; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803E3954; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E3958; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E395C; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E3960; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E3964; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E3968; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E396C; // type:object size:0x4 scope:local align:4 data:float +@2552 = .sdata:0x803E3970; // type:object size:0x5 scope:local align:4 data:string +@2555 = .sdata:0x803E3978; // type:object size:0x3 scope:local align:4 data:string +@2557 = .sdata:0x803E397C; // type:object size:0x3 scope:local align:4 data:string +@2565 = .sdata:0x803E3980; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata:0x803E3984; // type:object size:0x4 scope:local align:4 data:float +@2567 = .sdata:0x803E3988; // type:object size:0x4 scope:local align:4 data:float +@2568 = .sdata:0x803E398C; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803E3990; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803E3994; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803E3998; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803E399C; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803E39A0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E39A4; // type:object size:0x5 scope:local align:4 data:string +@2884 = .sdata:0x803E39AC; // type:object size:0x7 scope:local align:4 data:string +@2887 = .sdata:0x803E39B4; // type:object size:0x6 scope:local align:4 data:string +@2927 = .sdata:0x803E39BC; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E39C0; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E39C4; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E39C8; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E39CC; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803E39D0; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E39D4; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E39D8; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E39DC; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E39E0; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E39E4; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E39E8; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803E39EC; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803E39F0; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata:0x803E39F4; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata:0x803E39F8; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803E39FC; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E3A00; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803E3A04; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E3A08; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E3A0C; // type:object size:0x4 scope:local align:4 data:float +@3300 = .sdata:0x803E3A10; // type:object size:0x4 scope:local align:4 data:float +@3301 = .sdata:0x803E3A14; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata:0x803E3A18; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata:0x803E3A1C; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata:0x803E3A20; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803E3A24; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata:0x803E3A28; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata:0x803E3A2C; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata:0x803E3A30; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata:0x803E3A34; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata:0x803E3A38; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata:0x803E3A3C; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata:0x803E3A40; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803E3A44; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803E3A48; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata:0x803E3A4C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata:0x803E3A50; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata:0x803E3A54; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata:0x803E3A58; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata:0x803E3A5C; // type:object size:0x8 scope:local align:4 data:string +@3804 = .sdata:0x803E3A64; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata:0x803E3A68; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata:0x803E3A6C; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata:0x803E3A70; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata:0x803E3A74; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata:0x803E3A78; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata:0x803E3A7C; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata:0x803E3A80; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata:0x803E3A84; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata:0x803E3A88; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata:0x803E3A8C; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata:0x803E3A90; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata:0x803E3A94; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata:0x803E3A98; // type:object size:0x4 scope:local align:4 data:float +@4597 = .sdata:0x803E3A9C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3AA4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3AAC; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803E3AB4; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803E3ABC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3AC4; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803E3ACC; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E3AD4; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803E3ADC; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803E3AE4; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E3AEC; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E3AF4; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803E3AFC; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803E3B04; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E3B0C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E3B14; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803E3B1C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803E3B24; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803E3B2C; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E3B34; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803E3B3C; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803E3B48; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803E3B4C; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803E3B50; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E3B54; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E3B58; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803E3B5C; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803E3B60; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E3B64; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E3B68; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E3B6C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E3B70; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E3B74; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E3B78; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E3B7C; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E3B80; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E3B84; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803E3B88; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803E3B8C; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803E3B90; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803E3B94; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803E3B98; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803E3B9C; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E3BA0; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803E3BA4; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803E3BA8; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803E3BAC; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803E3BB0; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803E3BB4; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803E3BB8; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803E3BBC; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803E3BC0; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803E3BC4; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E3BC8; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E3BCC; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803E3BD0; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E3BD4; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803E3BD8; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803E3BDC; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803E3BE0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803E3BE4; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803E3BE8; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803E3BEC; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803E3BF0; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803E3BF4; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803E3BF8; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803E3BFC; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803E3C00; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803E3C08; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803E3C0C; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803E3C10; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803E3C14; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803E3C18; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803E3C20; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E3C24; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803E3C2C; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803E3C34; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E3C3C; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803E3C44; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803E3C4C; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803E3C54; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803E3C58; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803E3C60; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803E3C68; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803E3C70; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803E3C78; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803E3C80; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803E3C84; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803E3C88; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803E3C8C; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803E3C90; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803E3C94; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803E3C98; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803E3C9C; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E3CA0; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803E3CA4; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803E3CA8; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803E3CAC; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E3CB0; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E3CB4; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E3CB8; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E3CBC; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E3CC0; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E3CC4; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803E3CC8; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E3CCC; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E3CD0; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803E3CD4; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E3CDC; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803E3CE4; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803E3CE8; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803E3CF0; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803E3CF8; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803E3CFC; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803E3D00; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803E3D04; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803E3D08; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803E3D0C; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803E3D10; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803E3D18; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803E3D20; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803E3D28; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803E3D2C; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803E3D30; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803E3D38; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E3D40; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803E3D48; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803E3D50; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803E3D58; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3D60; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3D68; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803E3D70; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3D78; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803E3D80; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803E3D88; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803E3D90; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803E3D98; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803E3DA0; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803E3DA8; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803E3DB0; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803E3DB8; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803E3DC0; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803E3DC8; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803E3DD0; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803E3DD8; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803E3DDC; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803E3DE4; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803E3DE8; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803E3DF0; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803E3DF8; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E3E00; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803E3E08; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803E3E10; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803E3E18; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803E3E1C; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803E3E24; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803E3E2C; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803E3E34; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803E3E3C; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803E3E40; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803E3E44; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803E3E48; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803E3E4C; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803E3E50; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803E3E54; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803E3E58; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803E3E5C; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803E3E60; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803E3E64; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803E3E68; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803E3E6C; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803E3E70; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803E3E74; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803E3E78; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803E3E7C; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803E3E80; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803E3E84; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803E3E88; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803E3E8C; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803E3E90; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803E3E94; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803E3E98; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803E3E9C; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803E3EA0; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803E3EA4; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803E3EA8; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803E3EAC; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803E3EB0; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803E3EB4; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803E3EB8; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803E3EBC; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803E3EC0; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803E3EC4; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803E3EC8; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803E3ECC; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803E3ED0; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803E3ED4; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803E3ED8; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803E3EDC; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803E3EE0; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803E3EE4; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E3EE8; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E3EEC; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E3EF0; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E3EF4; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E3EF8; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E3EFC; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E3F00; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E3F04; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E3F08; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E3F0C; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E3F10; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E3F14; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E3F18; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E3F1C; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803E3F20; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E3F24; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E3F28; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E3F2C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E3F30; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E3F34; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E3F38; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803E3F3C; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803E3F40; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803E3F44; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803E3F48; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E3F4C; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803E3F50; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E3F54; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E3F58; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803E3F5C; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803E3F60; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E3F64; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803E3F68; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803E3F6C; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E3F70; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803E3F74; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803E3F78; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803E3F7C; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E3F80; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E3F84; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E3F88; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E3F8C; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E3F90; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E3F94; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E3F98; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803E3F9C; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803E3FA0; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803E3FA4; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E3FA8; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E3FAC; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803E3FB0; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E3FB4; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E3FB8; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E3FBC; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E3FC0; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E3FC4; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E3FC8; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803E3FCC; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803E3FD0; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803E3FD4; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803E3FD8; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803E3FDC; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803E3FE0; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803E3FE4; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803E3FE8; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803E3FEC; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803E3FF0; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803E3FF4; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803E3FF8; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803E3FFC; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E4000; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803E4004; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803E4008; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803E400C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803E4010; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E4014; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E4018; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E401C; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803E4020; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E4024; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803E4028; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803E402C; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803E4030; // type:object size:0x4 scope:local align:4 data:float +@2533 = .sdata:0x803E4034; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E403C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4044; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803E404C; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803E4054; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803E405C; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803E4064; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803E4070; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E4074; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E4078; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E407C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E4080; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803E4084; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E4088; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803E408C; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803E4090; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E4094; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803E409C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E40A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E40AC; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803E40B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E40BC; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803E40C4; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803E40D0; // type:object size:0x4 scope:local align:4 data:4byte +@1204 = .sdata:0x803E40D4; // type:object size:0x7 scope:local align:4 data:string +@1205 = .sdata:0x803E40DC; // type:object size:0x8 scope:local align:4 data:string +@1697 = .sdata:0x803E40E4; // type:object size:0x3 scope:local align:4 data:string +@2020 = .sdata:0x803E40E8; // type:object size:0x7 scope:local align:4 data:string +@2255 = .sdata:0x803E40F0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E40F8; // type:object size:0x8 scope:local align:4 +@2260 = .sdata:0x803E4100; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E4108; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E4110; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803E4118; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803E411C; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E4120; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E4124; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E4128; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E412C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E4130; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803E4134; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E413C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4144; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803E414C; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803E4158; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803E4160; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4168; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4170; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803E4178; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4180; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803E4188; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E4190; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E4198; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803E41A0; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803E41A8; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E41AC; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E41B0; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803E41B4; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E41B8; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803E41BC; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E41C0; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E41C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803E41C8; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803E41D0; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803E41D8; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803E41E0; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803E41E8; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803E41F0; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803E41F8; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E41FC; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E4200; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E4204; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E420C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4214; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803E421C; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803E4228; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E422C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E4230; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803E4234; // type:object size:0x7 scope:local align:4 data:string +@2065 = .sdata:0x803E423C; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803E4240; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata:0x803E4244; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E4248; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803E4250; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803E4258; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803E4260; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803E4268; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803E4270; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803E4278; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803E4280; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803E4288; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803E4290; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803E4298; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803E42A0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803E42A8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803E42B0; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803E42B8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803E42C0; // type:object size:0x8 scope:local align:4 +@643 = .sdata:0x803E42C8; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E42CC; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803E42D0; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata:0x803E42D4; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803E42D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E42DC; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803E42E4; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803E42EC; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E42F8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803E4300; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803E4308; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803E4310; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E4314; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E4318; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E431C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E4320; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803E4328; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E4330; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803E4338; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803E4340; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803E4348; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803E4350; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803E4358; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803E4360; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803E4368; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803E4370; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803E4378; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E4380; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E4384; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E4388; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803E438C; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803E4390; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803E4394; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E4398; // type:object size:0x5 scope:local align:4 data:string +@938 = .sdata:0x803E43A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__22Receiver<10AICreature> = .sdata:0x803E43A8; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803E43B0; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803E43B8; // type:object size:0x8 scope:local align:4 +@1161 = .sdata:0x803E43C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E43C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E43D0; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E43D8; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803E43E0; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E43E8; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E43F0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E43F8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4400; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4408; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4410; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E4418; // type:object size:0x8 scope:local align:4 +@1180 = .sdata:0x803E4420; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803E4428; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E442C; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803E4430; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E4434; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E4438; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E443C; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E4440; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E4444; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E4448; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E444C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E4450; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E4454; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E4458; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803E445C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E4460; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E4464; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E4468; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E446C; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E4470; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E4474; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E4478; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E447C; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E4480; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E4484; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E4488; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E448C; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E4490; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803E4494; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata:0x803E4498; // type:object size:0x4 scope:local align:4 data:float +@1703 = .sdata:0x803E449C; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803E44A0; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803E44A4; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803E44A8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803E44AC; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803E44B4; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803E44BC; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803E44C4; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803E44CC; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E44D4; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803E44DC; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803E44E8; // type:object size:0x4 scope:global align:4 data:4byte +@2105 = .sdata:0x803E44EC; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803E44F0; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata:0x803E44F4; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E44F8; // type:object size:0x7 scope:local align:4 data:string +@2501 = .sdata:0x803E4500; // type:object size:0x7 scope:local align:4 data:string +@2502 = .sdata:0x803E4508; // type:object size:0x8 scope:local align:4 data:string +@2572 = .sdata:0x803E4510; // type:object size:0x6 scope:local align:4 data:string +@2573 = .sdata:0x803E4518; // type:object size:0x7 scope:local align:4 data:string +@2574 = .sdata:0x803E4520; // type:object size:0x6 scope:local align:4 data:string +@2575 = .sdata:0x803E4528; // type:object size:0x7 scope:local align:4 data:string +@2576 = .sdata:0x803E4530; // type:object size:0x8 scope:local align:4 data:string +@2577 = .sdata:0x803E4538; // type:object size:0x2 scope:local align:4 data:string +@2579 = .sdata:0x803E453C; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803E4540; // type:object size:0x4 scope:local align:4 data:float +@2581 = .sdata:0x803E4544; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata:0x803E4548; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata:0x803E454C; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata:0x803E4550; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata:0x803E4554; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata:0x803E4558; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803E455C; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E4560; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E4564; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E4568; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E456C; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E4570; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E4574; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4578; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803E4580; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803E4588; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803E4590; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803E4598; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803E459C; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803E45A0; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803E45A4; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803E45A8; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803E45AC; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E45B4; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E45B8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E45BC; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E45C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803E45C4; // type:object size:0x8 scope:local align:4 +@1362 = .sdata:0x803E45CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E45D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E45DC; // type:object size:0x8 scope:local align:4 +@1365 = .sdata:0x803E45E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E45EC; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803E45F4; // type:object size:0x8 scope:local align:4 +@1086 = .sdata:0x803E4600; // type:object size:0x4 scope:local align:4 data:string +@1087 = .sdata:0x803E4604; // type:object size:0x3 scope:local align:4 data:string +@1088 = .sdata:0x803E4608; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803E4610; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803E4618; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803E461C; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803E4620; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803E4624; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803E4628; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803E462C; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803E4630; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803E4634; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803E4638; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803E463C; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803E4640; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803E4644; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803E4648; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803E464C; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803E4650; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803E4654; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803E4658; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803E465C; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803E4660; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803E4664; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803E4668; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803E466C; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803E4670; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803E4674; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E467C; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803E4684; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E468C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4694; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803E469C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E46A4; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803E46AC; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803E46B8; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803E46C0; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803E46C8; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E46D0; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803E46D8; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803E46E0; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803E46E8; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803E46F0; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803E46F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4700; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4708; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803E4710; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4718; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803E4720; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803E4728; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803E4730; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803E4731; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803E4732; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803E4733; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803E4734; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803E4738; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803E473C; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803E4740; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803E4741; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803E4742; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803E4743; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803E4744; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803E4748; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803E4750; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803E4758; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803E4760; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E4764; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803E476C; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803E4778; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803E477C; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803E4780; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803E4784; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803E4788; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803E4790; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E4798; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E47A0; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803E47A8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E47B0; // type:object size:0x8 scope:local align:4 +@405 = .sdata:0x803E47B8; // type:object size:0x8 scope:local align:4 data:string +@549 = .sdata:0x803E47C0; // type:object size:0x8 scope:local align:4 data:string +@551 = .sdata:0x803E47C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E47D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E47D8; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803E47E0; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803E47E8; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E47F0; // type:object size:0x5 scope:local align:4 data:string +@1677 = .sdata:0x803E47F8; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E47FC; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E4800; // type:object size:0x7 scope:local align:4 data:string +@1504 = .sdata:0x803E4808; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E480C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E4810; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E4814; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803E4818; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E481C; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E4820; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E4824; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E4828; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E482C; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E4830; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803E4834; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803E4838; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E483C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E4840; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E4844; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803E4848; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E484C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803E4850; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803E4854; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E4858; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803E485C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803E4860; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E4864; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803E4868; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803E486C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803E4870; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803E4874; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803E4878; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E487C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803E4880; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803E4884; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E4888; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E488C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E4890; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E4894; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803E4898; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803E489C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E48A0; // type:object size:0x4 scope:local align:4 data:float +@2442 = .sdata:0x803E48A4; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata:0x803E48A8; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E48AC; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E48B0; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E48B4; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E48B8; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata:0x803E48BC; // type:object size:0x4 scope:local align:4 data:float +@2913 = .sdata:0x803E48C0; // type:object size:0x4 scope:local align:4 data:float +@2914 = .sdata:0x803E48C4; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E48C8; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E48CC; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E48D0; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E48D4; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E48D8; // type:object size:0x4 scope:local align:4 data:float +@3187 = .sdata:0x803E48DC; // type:object size:0x4 scope:local align:4 data:float +@3188 = .sdata:0x803E48E0; // type:object size:0x4 scope:local align:4 data:float +@3189 = .sdata:0x803E48E4; // type:object size:0x4 scope:local align:4 data:float +@3190 = .sdata:0x803E48E8; // type:object size:0x4 scope:local align:4 data:float +@3191 = .sdata:0x803E48EC; // type:object size:0x4 scope:local align:4 data:float +@3192 = .sdata:0x803E48F0; // type:object size:0x4 scope:local align:4 data:float +@3193 = .sdata:0x803E48F4; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803E48F8; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E48FC; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E4900; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E4904; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803E4908; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803E490C; // type:object size:0x4 scope:local align:4 data:float +@3205 = .sdata:0x803E4910; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803E4914; // type:object size:0x4 scope:local align:4 data:float +@3207 = .sdata:0x803E4918; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata:0x803E491C; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803E4920; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803E4924; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803E4928; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803E492C; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803E4930; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803E4934; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803E4938; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata:0x803E493C; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803E4940; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803E4944; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803E4948; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803E494C; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803E4950; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803E4954; // type:object size:0x4 scope:local align:4 data:float +@3224 = .sdata:0x803E4958; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata:0x803E495C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E4960; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4968; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4970; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4978; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803E4980; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E4984; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803E4988; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4990; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4998; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E49A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E49A8; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E49B0; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E49B8; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803E49C0; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E49C8; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E49CC; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E49D0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E49D4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E49D8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E49DC; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803E49E0; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803E49E4; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E49E8; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803E49EC; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803E49F0; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803E49F4; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E49F8; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E49FC; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E4A00; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E4A04; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E4A08; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E4A0C; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E4A10; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E4A14; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803E4A18; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E4A1C; // type:object size:0x7 scope:local align:4 data:string +@1786 = .sdata:0x803E4A24; // type:object size:0x5 scope:local align:4 data:string +@1787 = .sdata:0x803E4A2C; // type:object size:0x4 scope:local align:4 data:string +@1910 = .sdata:0x803E4A30; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E4A34; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E4A38; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E4A3C; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E4A40; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E4A44; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E4A48; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E4A4C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E4A50; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E4A54; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E4A58; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E4A5C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803E4A60; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata:0x803E4A64; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata:0x803E4A68; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803E4A6C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata:0x803E4A70; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata:0x803E4A74; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E4A78; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E4A7C; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E4A80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803E4A84; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803E4A8C; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E4A98; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E4A9C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E4AA0; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E4AA4; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E4AA8; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803E4AAC; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E4AB0; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803E4AB4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E4AB8; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E4ABC; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E4AC0; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E4AC4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803E4AC8; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E4ACC; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E4AD0; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803E4AD4; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803E4AD8; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E4ADC; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803E4AE0; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803E4AE4; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E4AE8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4AEC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4AF4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4AFC; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E4B04; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E4B0C; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803E4B14; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803E4B20; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E4B24; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E4B28; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E4B2C; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803E4B30; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803E4B34; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803E4B38; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803E4B3C; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803E4B40; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E4B44; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803E4B48; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803E4B4C; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803E4B50; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803E4B54; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803E4B58; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E4B5C; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803E4B60; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803E4B64; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803E4B68; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E4B6C; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803E4B70; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803E4B74; // type:object size:0x4 scope:local align:4 data:float +@1045 = .sdata:0x803E4B78; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E4B7C; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E4B80; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E4B84; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803E4B88; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E4B8C; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E4B90; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803E4B94; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E4B98; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata:0x803E4B9C; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803E4BA0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803E4BA4; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata:0x803E4BA8; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803E4BAC; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803E4BB0; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E4BB4; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803E4BB8; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E4BBC; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803E4BC0; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata:0x803E4BC4; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E4BC8; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E4BCC; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata:0x803E4BD0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4BD4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4BDC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4BE4; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E4BEC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4BF4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4BFC; // type:object size:0x8 scope:local align:4 +@1956 = .sdata:0x803E4C04; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4C0C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4C14; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803E4C1C; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803E4C28; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4C30; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4C38; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803E4C40; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803E4C48; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803E4C4C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E4C58; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4C60; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4C68; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E4C70; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803E4C78; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803E4C80; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803E4C88; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803E4C90; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803E4C98; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803E4CA0; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803E4CA4; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803E4CAC; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803E4CB4; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803E4CBC; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803E4CC4; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803E4CCC; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803E4CD4; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803E4CDC; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803E4CE4; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803E4CEC; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803E4CF4; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803E4CFC; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803E4D00; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803E4D08; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803E4D10; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803E4D14; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803E4D1C; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803E4D24; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803E4D2C; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803E4D34; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803E4D3C; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803E4D44; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E4D4C; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803E4D50; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E4D54; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E4D58; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E4D5C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E4D60; // type:object size:0x4 scope:local align:4 data:string +@1492 = .sdata:0x803E4D64; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E4D68; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E4D6C; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803E4D70; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E4D74; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E4D78; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E4D7C; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E4D80; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803E4D84; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E4D88; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E4D8C; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E4D90; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E4D94; // type:object size:0x4 scope:local align:4 data:4byte +@1509 = .sdata:0x803E4D98; // type:object size:0x4 scope:local align:4 data:4byte +@1519 = .sdata:0x803E4D9C; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E4DA0; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E4DA4; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E4DA8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E4DAC; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E4DB0; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E4DB4; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803E4DB8; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E4DBC; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E4DC0; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E4DC4; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E4DC8; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E4DCC; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803E4DD0; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E4DD4; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803E4DD8; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803E4DDC; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803E4DE0; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803E4DE4; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803E4DE8; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E4DEC; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E4DF0; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803E4DF4; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803E4DF8; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803E4DFC; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803E4E00; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803E4E04; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata:0x803E4E08; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E4E0C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E4E10; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E4E14; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E4E18; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E4E1C; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E4E20; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E4E24; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E4E28; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E4E2C; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E4E30; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E4E34; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803E4E38; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803E4E3C; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata:0x803E4E40; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata:0x803E4E44; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata:0x803E4E48; // type:object size:0x4 scope:local align:4 data:float +@2396 = .sdata:0x803E4E4C; // type:object size:0x4 scope:local align:4 data:float +@2464 = .sdata:0x803E4E50; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E4E54; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E4E58; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E4E5C; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata:0x803E4E60; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E4E64; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E4E68; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E4E6C; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E4E70; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata:0x803E4E74; // type:object size:0x4 scope:local align:4 data:float +@2874 = .sdata:0x803E4E78; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E4E7C; // type:object size:0x4 scope:local align:4 data:float +@3008 = .sdata:0x803E4E80; // type:object size:0x8 scope:local align:4 data:string +@3071 = .sdata:0x803E4E88; // type:object size:0x8 scope:local align:4 data:string +@3072 = .sdata:0x803E4E90; // type:object size:0x1 scope:local align:4 +@3073 = .sdata:0x803E4E94; // type:object size:0x4 scope:local align:4 data:string +@3074 = .sdata:0x803E4E98; // type:object size:0x4 scope:local align:4 data:string +@3075 = .sdata:0x803E4E9C; // type:object size:0x4 scope:local align:4 data:string +@3077 = .sdata:0x803E4EA0; // type:object size:0x4 scope:local align:4 data:string +@3080 = .sdata:0x803E4EA4; // type:object size:0x4 scope:local align:4 data:string +@3082 = .sdata:0x803E4EA8; // type:object size:0x7 scope:local align:4 data:string +@3333 = .sdata:0x803E4EB0; // type:object size:0x6 scope:local align:4 data:string +@3334 = .sdata:0x803E4EB8; // type:object size:0x5 scope:local align:4 data:string +@3401 = .sdata:0x803E4EC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4EC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4ED0; // type:object size:0x8 scope:local align:4 +@3403 = .sdata:0x803E4ED8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4EE0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E4EE8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E4EF0; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E4EF8; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803E4F00; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4F08; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803E4F10; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803E4F18; // type:object size:0x8 scope:local align:4 +@3440 = .sdata:0x803E4F20; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4F28; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4F30; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4F38; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4F40; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E4F48; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E4F50; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803E4F58; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E4F60; // type:object size:0x8 scope:local align:4 +@3485 = .sdata:0x803E4F68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803E4F70; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E4F78; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4F80; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803E4F88; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E4F90; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803E4F98; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4FA0; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803E4FA8; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803E4FAC; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803E4FB4; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803E4FB8; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803E4FC0; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803E4FC8; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803E4FD0; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803E4FD8; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803E4FDC; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803E4FE0; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803E4FE4; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803E4FE8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E4FEC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E4FF4; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803E4FFC; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803E5004; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E500C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5014; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E501C; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803E5024; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E502C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E5038; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803E5040; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E5048; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E5050; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803E5058; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803E5060; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803E5068; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803E5070; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803E5078; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803E5080; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803E5088; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E508C; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E5090; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803E5094; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803E509C; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803E50A4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803E50AC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803E50B4; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803E50BC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803E50C4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803E50CC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803E50D4; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E50DC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803E50E4; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803E50F0; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803E50F4; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803E50FC; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E5104; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803E5108; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E510C; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E5110; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata:0x803E5114; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803E5118; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803E511C; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E5120; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E5124; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata:0x803E5128; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata:0x803E512C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E5130; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata:0x803E5134; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata:0x803E5138; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803E513C; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata:0x803E5140; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E5144; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata:0x803E5148; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata:0x803E514C; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E5150; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E5154; // type:object size:0x4 scope:local align:4 data:float +@2345 = .sdata:0x803E5158; // type:object size:0x4 scope:local align:4 data:float +@2346 = .sdata:0x803E515C; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E5160; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803E5164; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata:0x803E5168; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata:0x803E516C; // type:object size:0x4 scope:local align:4 data:float +@2496 = .sdata:0x803E5170; // type:object size:0x4 scope:local align:4 data:float +@2638 = .sdata:0x803E5174; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E5178; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E517C; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata:0x803E5180; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata:0x803E5184; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E5188; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E518C; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803E5194; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803E519C; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E51A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E51AC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E51B4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E51BC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E51C4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E51CC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E51D4; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803E51DC; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803E51E4; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803E51EC; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803E51F4; // type:object size:0x8 scope:local align:4 +@3077 = .sdata:0x803E51FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5204; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E520C; // type:object size:0x8 scope:local align:4 +@3079 = .sdata:0x803E5214; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E521C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E5224; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E522C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803E5234; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E523C; // type:object size:0x8 scope:local align:4 +@3102 = .sdata:0x803E5244; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E524C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E5254; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803E525C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5264; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E526C; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E5274; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803E527C; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803E5284; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803E5290; // type:object size:0x4 scope:global align:4 data:4byte +@1905 = .sdata:0x803E5294; // type:object size:0x7 scope:local align:4 data:string +@2169 = .sdata:0x803E529C; // type:object size:0x3 scope:local align:4 data:string +@3240 = .sdata:0x803E52A0; // type:object size:0x6 scope:local align:4 data:string +@3243 = .sdata:0x803E52A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E52B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E52B8; // type:object size:0x8 scope:local align:4 +@3248 = .sdata:0x803E52C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E52C8; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803E52D0; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E52D8; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803E52E0; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803E52E8; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803E52F0; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803E52F8; // type:object size:0x6 scope:local align:4 data:string +@646 = .sdata:0x803E5300; // type:object size:0x3 scope:local align:4 data:string +@752 = .sdata:0x803E5304; // type:object size:0x6 scope:local align:4 data:string +@754 = .sdata:0x803E530C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5314; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E531C; // type:object size:0x8 scope:local align:4 +@757 = .sdata:0x803E5324; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803E532C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803E5334; // type:object size:0x8 scope:local align:4 +@761 = .sdata:0x803E533C; // type:object size:0x6 scope:local align:4 data:string +@763 = .sdata:0x803E5344; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E534C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803E5354; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803E5360; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803E5368; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803E536C; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803E5370; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803E5374; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E537C; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803E5384; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E538C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5394; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803E539C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E53A4; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803E53AC; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803E53B8; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803E53C0; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803E53C8; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803E53D0; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803E53D8; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803E53E0; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803E53E8; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E53EC; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803E53F0; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803E53F4; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E53F8; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E53FC; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E5400; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E5404; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E5408; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E540C; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E5410; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E5414; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803E5418; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803E541C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E5420; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E5424; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E5428; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E542C; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E5430; // type:object size:0x6 scope:local align:4 data:string +@2052 = .sdata:0x803E5438; // type:object size:0x6 scope:local align:4 data:string +@2053 = .sdata:0x803E5440; // type:object size:0x7 scope:local align:4 data:string +@2054 = .sdata:0x803E5448; // type:object size:0x7 scope:local align:4 data:string +@2055 = .sdata:0x803E5450; // type:object size:0x6 scope:local align:4 data:string +@2056 = .sdata:0x803E5458; // type:object size:0x6 scope:local align:4 data:string +@2057 = .sdata:0x803E5460; // type:object size:0x6 scope:local align:4 data:string +@2058 = .sdata:0x803E5468; // type:object size:0x5 scope:local align:4 data:string +@2059 = .sdata:0x803E5470; // type:object size:0x5 scope:local align:4 data:string +@2060 = .sdata:0x803E5478; // type:object size:0x5 scope:local align:4 data:string +@2086 = .sdata:0x803E5480; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803E5488; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E548C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E5490; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E5494; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E5498; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E549C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E54A0; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E54A8; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803E54AC; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E54B0; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E54B4; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E54BC; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803E54C0; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E54C4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E54C8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E54CC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E54D0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E54D4; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E54D8; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E54DC; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E54E0; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E54E4; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E54E8; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803E54EC; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E54F0; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E54F4; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803E54F8; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803E54FC; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803E5500; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E5504; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E5508; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803E550C; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata:0x803E5510; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E5514; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E5518; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata:0x803E551C; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata:0x803E5520; // type:object size:0x7 scope:local align:4 data:string +@2106 = .sdata:0x803E5528; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5530; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5538; // type:object size:0x8 scope:local align:4 +@2109 = .sdata:0x803E5540; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5548; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E5550; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803E5558; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5560; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E5568; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E556C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E5570; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E5574; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E5578; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E557C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E5580; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E5584; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803E5588; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803E558C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803E5590; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E5594; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E5598; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E559C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E55A0; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803E55A8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E55B0; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803E55B8; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803E55C0; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803E55C8; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E55CC; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E55D0; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E55D4; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803E55D8; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E55DC; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E55E0; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E55E4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E55E8; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803E55F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E55F8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803E5600; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5608; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803E5610; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E5618; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803E5620; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803E5628; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803E5630; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5638; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803E5640; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803E5648; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803E5650; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803E5658; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803E565C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E5660; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E5664; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E5668; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E566C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E5670; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E5674; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E5678; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E567C; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E5680; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E5684; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803E5688; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E568C; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E5690; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E5694; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E5698; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E569C; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E56A0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E56A4; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803E56A8; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803E56AC; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803E56B0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E56B4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E56B8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803E56BC; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803E56C0; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803E56C4; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803E56C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E56CC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E56D4; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803E56DC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E56E4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803E56EC; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E56F4; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803E56FC; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803E5708; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803E570C; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803E5710; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E5714; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803E571C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E5720; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E5724; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5728; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5730; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803E5738; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5740; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803E5748; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803E5750; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803E5758; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803E5760; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803E5768; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803E5770; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5778; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803E5780; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5788; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803E5790; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E5798; // type:object size:0x4 scope:local align:4 data:string +@1411 = .sdata:0x803E579C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E57A0; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E57A4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E57A8; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E57AC; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E57B0; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E57B4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E57B8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E57C0; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E57C8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E57D0; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803E57D8; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803E57E0; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803E57E8; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803E57F0; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803E57F4; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803E57FC; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E5800; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803E5804; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5808; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5810; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803E5818; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5820; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803E5828; // type:object size:0x8 scope:local align:4 +@1455 = .sdata:0x803E5830; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata:0x803E5834; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E5838; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803E583C; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E5840; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803E5844; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5848; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5850; // type:object size:0x8 scope:local align:4 +@1513 = .sdata:0x803E5858; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5860; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803E5868; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803E5870; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E5874; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E5878; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E587C; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803E5880; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E5884; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803E5888; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803E588C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803E5890; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E5894; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E5898; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803E589C; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803E58A0; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803E58A4; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803E58A8; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803E58AC; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803E58B0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E58B4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803E58B8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803E58BC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803E58C0; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803E58C4; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E58C8; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E58CC; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803E58D0; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803E58D4; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803E58D8; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803E58DC; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803E58E0; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803E58E4; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata:0x803E58E8; // type:object size:0x6 scope:local align:4 data:string +@2748 = .sdata:0x803E58F0; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E58F4; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E58F8; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803E58FC; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E5900; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E5904; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803E5908; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata:0x803E590C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E5910; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E5914; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata:0x803E5918; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E591C; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E5920; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E5924; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803E5928; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803E592C; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803E5930; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E5934; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E5938; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803E593C; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E5940; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E5944; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E5948; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803E594C; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E5950; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E5954; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E5958; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803E595C; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803E5960; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803E5964; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803E5968; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803E596C; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E5970; // type:object size:0x4 scope:local align:4 data:float +@3115 = .sdata:0x803E5974; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata:0x803E5978; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E597C; // type:object size:0x8 scope:local align:4 data:string +@3483 = .sdata:0x803E5984; // type:object size:0x8 scope:local align:4 data:string +@4065 = .sdata:0x803E598C; // type:object size:0x3 scope:local align:4 data:string +@4066 = .sdata:0x803E5990; // type:object size:0x5 scope:local align:4 data:string +@4067 = .sdata:0x803E5998; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata:0x803E59A0; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata:0x803E59A8; // type:object size:0x5 scope:local align:4 data:string +@4070 = .sdata:0x803E59B0; // type:object size:0x5 scope:local align:4 data:string +@4071 = .sdata:0x803E59B8; // type:object size:0x4 scope:local align:4 data:string +@4073 = .sdata:0x803E59BC; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata:0x803E59C4; // type:object size:0x5 scope:local align:4 data:string +@4075 = .sdata:0x803E59CC; // type:object size:0x6 scope:local align:4 data:string +@4237 = .sdata:0x803E59D4; // type:object size:0x2 scope:local align:4 data:string +@4244 = .sdata:0x803E59D8; // type:object size:0x3 scope:local align:4 data:string +@4247 = .sdata:0x803E59DC; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata:0x803E59E0; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata:0x803E59E4; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata:0x803E59E8; // type:object size:0x4 scope:local align:4 data:float +@4251 = .sdata:0x803E59EC; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E59F0; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata:0x803E59F4; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata:0x803E59F8; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata:0x803E59FC; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata:0x803E5A00; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata:0x803E5A04; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata:0x803E5A08; // type:object size:0x4 scope:local align:4 data:float +@4273 = .sdata:0x803E5A0C; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata:0x803E5A10; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata:0x803E5A14; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata:0x803E5A18; // type:object size:0x4 scope:local align:4 data:float +@4277 = .sdata:0x803E5A1C; // type:object size:0x4 scope:local align:4 data:float +@4278 = .sdata:0x803E5A20; // type:object size:0x4 scope:local align:4 data:float +@4285 = .sdata:0x803E5A24; // type:object size:0x4 scope:local align:4 data:float +@4286 = .sdata:0x803E5A28; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata:0x803E5A2C; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata:0x803E5A30; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata:0x803E5A34; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata:0x803E5A38; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5A3C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5A44; // type:object size:0x8 scope:local align:4 +@4436 = .sdata:0x803E5A4C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5A54; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E5A5C; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E5A68; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E5A70; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E5A74; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E5A78; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E5A7C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E5A80; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E5A84; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E5A88; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E5A8C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E5A90; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E5A94; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E5A98; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E5A9C; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E5AA0; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E5AA4; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E5AA8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E5AAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5AB0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5AB8; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E5AC0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5AC8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E5AD0; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E5AD8; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E5ADC; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E5AE0; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E5AE4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5AE8; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E5AF0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5AF8; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E5B00; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5B08; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E5B10; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E5B18; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E5B1C; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E5B24; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E5B28; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E5B2C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E5B30; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E5B34; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E5B38; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E5B3C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E5B40; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E5B44; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E5B48; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E5B4C; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E5B50; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E5B54; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E5B58; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E5B5C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E5B60; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E5B64; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E5B68; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata:0x803E5B6C; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata:0x803E5B70; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E5B74; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E5B78; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E5B7C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata:0x803E5B80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E5B84; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5B8C; // type:object size:0x8 scope:local align:4 +@2435 = .sdata:0x803E5B94; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5B9C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E5BA4; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E5BB0; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E5BB4; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E5BB8; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E5BBC; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E5BC0; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E5BC4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E5BC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5BCC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5BD4; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E5BDC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5BE4; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E5BEC; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E5BF8; // type:object size:0x6 scope:local align:4 data:string +@1478 = .sdata:0x803E5C00; // type:object size:0x7 scope:local align:4 data:string +@1489 = .sdata:0x803E5C08; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E5C0C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E5C10; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E5C14; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata:0x803E5C18; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803E5C1C; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E5C20; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5C24; // type:object size:0x8 scope:local align:4 +@1632 = .sdata:0x803E5C2C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5C34; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E5C3C; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E5C48; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E5C4C; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E5C50; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E5C54; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E5C58; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E5C5C; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E5C60; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E5C68; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5C70; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E5C78; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5C80; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E5C88; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5C90; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E5C98; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E5CA0; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E5CA8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E5CAC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E5CB0; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E5CB4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E5CB8; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E5CBC; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E5CC0; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E5CC4; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E5CC8; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E5CCC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E5CD0; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E5CD4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E5CD8; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E5CDC; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E5CE0; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E5CE4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E5CE8; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E5CEC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5CF4; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E5CFC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5D04; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E5D0C; // type:object size:0x8 scope:local align:4 +@1190 = .sdata:0x803E5D18; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E5D1C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E5D20; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E5D24; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E5D28; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E5D2C; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803E5D30; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5D38; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5D40; // type:object size:0x8 scope:local align:4 +@1344 = .sdata:0x803E5D48; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5D50; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E5D58; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E5D60; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E5D64; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E5D68; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E5D6C; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E5D70; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E5D74; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E5D78; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E5D7C; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E5D80; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E5D84; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E5D88; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5D8C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5D94; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E5D9C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5DA4; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E5DAC; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E5DB8; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E5DC0; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E5DC4; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E5DC8; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E5DCC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E5DD0; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E5DD4; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E5DD8; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E5DDC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5DE4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5DEC; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E5DF4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5DFC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E5E04; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E5E10; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E5E14; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E5E18; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E5E1C; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E5E20; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5E28; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E5E30; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5E38; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E5E40; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5E48; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E5E50; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E5E58; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E5E5C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E5E60; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E5E64; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E5E68; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E5E6C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E5E70; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E5E74; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E5E78; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E5E7C; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E5E80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5E84; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E5E8C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5E94; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E5E9C; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E5EAC; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E5EB0; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E5EB4; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E5EB8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E5EBC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5EC0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5EC8; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E5ED0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5ED8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E5EE0; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5EE8; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E5EF0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5EF8; // type:object size:0x8 scope:local align:4 +@1142 = .sdata:0x803E5F00; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5F08; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5F10; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E5F18; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5F20; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E5F28; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E5F30; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E5F38; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E5F3C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E5F40; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E5F44; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E5F48; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E5F4C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E5F50; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E5F54; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E5F58; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E5F5C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E5F60; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E5F64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5F68; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E5F70; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5F78; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E5F80; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5F88; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E5F90; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E5F98; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E5FA0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5FA8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5FB0; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E5FB8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5FC0; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E5FC8; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E5FD0; // type:object size:0x8 scope:local align:4 data:string +@2109 = .sdata:0x803E5FD8; // type:object size:0x4 scope:local align:4 data:float +@2110 = .sdata:0x803E5FDC; // type:object size:0x4 scope:local align:4 data:float +@2111 = .sdata:0x803E5FE0; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E5FE4; // type:object size:0x4 scope:local align:4 data:float +@2115 = .sdata:0x803E5FE8; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata:0x803E5FEC; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E5FF0; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E5FF4; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E5FF8; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata:0x803E5FFC; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata:0x803E6000; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata:0x803E6004; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E6008; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata:0x803E600C; // type:object size:0x4 scope:local align:4 data:float +@2268 = .sdata:0x803E6010; // type:object size:0x4 scope:local align:4 data:float +@2481 = .sdata:0x803E6014; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata:0x803E6018; // type:object size:0x4 scope:local align:4 data:float +@2601 = .sdata:0x803E601C; // type:object size:0x4 scope:local align:4 data:float +@2602 = .sdata:0x803E6020; // type:object size:0x4 scope:local align:4 data:float +@2603 = .sdata:0x803E6024; // type:object size:0x4 scope:local align:4 data:float +@2604 = .sdata:0x803E6028; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E602C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6030; // type:object size:0x8 scope:local align:4 +@2648 = .sdata:0x803E6038; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6040; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E6048; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6050; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E6058; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E6060; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E6064; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E6068; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E606C; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E6070; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E6074; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E6078; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E607C; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E6080; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E6084; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E6088; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E608C; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E6090; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E6094; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E6098; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E609C; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E60A0; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E60A4; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E60A8; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E60AC; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E60B0; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E60B8; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E60C0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E60C4; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E60CC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E60D4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E60DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E60E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E60EC; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E60F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E60FC; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E6108; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E6110; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E6114; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E6118; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E611C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E6120; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E6124; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E6128; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E612C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E6130; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E6134; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E6138; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E613C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6144; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E614C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6154; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E615C; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E6168; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E6170; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E6174; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E6178; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E617C; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E6180; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6188; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E6190; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6198; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E61A0; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E61A8; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E61AC; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E61B0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E61B4; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E61B8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E61BC; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E61C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E61C4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E61CC; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E61D4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E61DC; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E61E4; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E61EC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E61F4; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E6200; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E6204; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E6208; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E620C; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E6210; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6214; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E621C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6224; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E622C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6234; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E623C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6244; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E624C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E6258; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E625C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E6260; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E6264; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E6268; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E626C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E6270; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E6274; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E6278; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E627C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E6280; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E6284; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E6288; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E628C; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E6290; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E6294; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E629C; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E62A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E62AC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E62B4; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E62C0; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E62C4; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E62CC; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E62D4; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E62DC; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E62E4; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E62EC; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E62F0; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E62F8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6300; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E6308; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6310; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E6318; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6320; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E6328; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E6330; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6338; // type:object size:0x8 scope:local align:4 +@1579 = .sdata:0x803E6340; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E6344; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E6348; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E634C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E6350; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E6354; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E6358; // type:object size:0x8 scope:local align:4 data:string +@1608 = .sdata:0x803E6360; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E6364; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E6368; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata:0x803E636C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6374; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E637C; // type:object size:0x8 scope:local align:4 +@1876 = .sdata:0x803E6384; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E638C; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E6394; // type:object size:0x8 scope:local align:4 +@1882 = .sdata:0x803E639C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E63A4; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E63AC; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E63B4; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E63BC; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E63C4; // type:object size:0x8 scope:local align:4 +@2368 = .sdata:0x803E63D0; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E63D4; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata:0x803E63D8; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E63DC; // type:object size:0x8 scope:local align:4 data:string +@3710 = .sdata:0x803E63E4; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata:0x803E63E8; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata:0x803E63EC; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E63F0; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata:0x803E63F4; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata:0x803E63F8; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata:0x803E63FC; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E6400; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata:0x803E6404; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata:0x803E6408; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata:0x803E640C; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata:0x803E6410; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata:0x803E6414; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata:0x803E6418; // type:object size:0x7 scope:local align:4 data:string +@5116 = .sdata:0x803E6420; // type:object size:0x5 scope:local align:4 data:string +@5117 = .sdata:0x803E6428; // type:object size:0x5 scope:local align:4 data:string +@5118 = .sdata:0x803E6430; // type:object size:0x7 scope:local align:4 data:string +@5119 = .sdata:0x803E6438; // type:object size:0x6 scope:local align:4 data:string +@5120 = .sdata:0x803E6440; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E6448; // type:object size:0x7 scope:local align:4 data:string +@5124 = .sdata:0x803E6450; // type:object size:0x7 scope:local align:4 data:string +@5125 = .sdata:0x803E6458; // type:object size:0x8 scope:local align:4 data:string +@5126 = .sdata:0x803E6460; // type:object size:0x7 scope:local align:4 data:string +@5128 = .sdata:0x803E6468; // type:object size:0x5 scope:local align:4 data:string +@5129 = .sdata:0x803E6470; // type:object size:0x4 scope:local align:4 data:string +@5153 = .sdata:0x803E6474; // type:object size:0x8 scope:local align:4 data:string +@5155 = .sdata:0x803E647C; // type:object size:0x5 scope:local align:4 data:string +@5156 = .sdata:0x803E6484; // type:object size:0x4 scope:local align:4 data:string +@5157 = .sdata:0x803E6488; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E6490; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E6498; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E64A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E64A8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E64B0; // type:object size:0x8 scope:local align:4 +@5411 = .sdata:0x803E64B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E64C0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E64C8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E64D0; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E64D8; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E64E0; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E64E4; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E64E8; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E64EC; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E64F0; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E64F4; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E64FC; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E6500; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E6504; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E6508; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E650C; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E6510; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E6514; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E6518; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E651C; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E6520; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E6524; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E6528; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E652C; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E6530; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E6534; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E6538; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E653C; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E6540; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E6544; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E6548; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E654C; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E6550; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E6554; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E6558; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E655C; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E6560; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E6564; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E6568; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E656C; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E6570; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E6574; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E6578; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E657C; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E6580; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E6584; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E6588; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E658C; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E6590; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E6594; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E6598; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E659C; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E65A0; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E65A4; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E65A8; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E65AC; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E65B0; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E65B4; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E65B8; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E65BC; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E65C0; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E65C4; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E65C8; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E65CC; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E65D0; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E65D4; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E65D8; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E65DC; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E65E0; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E65E4; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E65E8; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E65EC; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E65F0; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E65F4; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E65F8; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E65FC; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E6600; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E6608; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E660C; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E6610; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E6614; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E6618; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E661C; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E6620; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E6624; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E6628; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E662C; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E6630; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E6638; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E6640; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6648; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6650; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E6658; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6660; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E6668; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E6670; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E6678; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E6680; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6688; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E6690; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E6698; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E66A0; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E66A8; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E66AC; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E66B0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E66B4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E66B8; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E66BC; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E66C4; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E66CC; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E66D0; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E66D4; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E66D8; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E66E0; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E66E4; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E66E8; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E66EC; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E66F0; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E66F4; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E66F8; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E66FC; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E6700; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E6704; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E6708; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E670C; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E6710; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E6714; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E671C; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E6720; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E6724; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E6728; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E672C; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E6730; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E6734; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E6738; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E673C; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E6740; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E6744; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E6748; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E674C; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E6750; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E6754; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E6758; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E675C; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E6764; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E676C; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E6774; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E677C; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E6780; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E6784; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E6788; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E678C; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E6790; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E6794; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E6798; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E679C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E67A0; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E67A8; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E67AC; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E67B0; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E67B4; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E67B8; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E67BC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E67C0; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E67C4; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E67C8; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E67CC; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E67D0; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E67D8; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E67E0; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E67E4; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E67E8; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E67EC; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E67F0; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E67F8; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E6800; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E6804; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E6808; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E680C; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E6810; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E6814; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E6818; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E681C; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E6820; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E6824; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E6828; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E682C; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E6830; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E6838; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E683C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E6840; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E6844; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E6848; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E684C; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E6850; // type:object size:0x7 scope:local align:4 data:string +@4627 = .sdata:0x803E6858; // type:object size:0x5 scope:local align:4 data:string +@4657 = .sdata:0x803E6860; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E6864; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E6868; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E686C; // type:object size:0x4 scope:local align:4 data:float +@4661 = .sdata:0x803E6870; // type:object size:0x4 scope:local align:4 data:float +@4662 = .sdata:0x803E6874; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata:0x803E6878; // type:object size:0x7 scope:local align:4 data:string +@4705 = .sdata:0x803E6880; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E6884; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E6888; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E688C; // type:object size:0x4 scope:local align:4 data:float +@4709 = .sdata:0x803E6890; // type:object size:0x4 scope:local align:4 data:float +@4710 = .sdata:0x803E6894; // type:object size:0x4 scope:local align:4 data:float +@4736 = .sdata:0x803E6898; // type:object size:0x5 scope:local align:4 data:string +@4753 = .sdata:0x803E68A0; // type:object size:0x5 scope:local align:4 data:string +@4762 = .sdata:0x803E68A8; // type:object size:0x4 scope:local align:4 data:float +@4896 = .sdata:0x803E68AC; // type:object size:0x5 scope:local align:4 data:string +@4904 = .sdata:0x803E68B4; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803E68B8; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803E68BC; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803E68C0; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803E68C4; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803E68C8; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803E68CC; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803E68D0; // type:object size:0x4 scope:local align:4 data:float +@4933 = .sdata:0x803E68D4; // type:object size:0x4 scope:local align:4 data:float +@4934 = .sdata:0x803E68D8; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803E68DC; // type:object size:0x4 scope:local align:4 data:float +@4953 = .sdata:0x803E68E0; // type:object size:0x4 scope:local align:4 data:float +@4954 = .sdata:0x803E68E4; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803E68E8; // type:object size:0x7 scope:local align:4 data:string +@4974 = .sdata:0x803E68F0; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803E68F4; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803E68F8; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803E68FC; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803E6900; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803E6904; // type:object size:0x4 scope:local align:4 data:float +@4980 = .sdata:0x803E6908; // type:object size:0x4 scope:local align:4 data:float +@4981 = .sdata:0x803E690C; // type:object size:0x4 scope:local align:4 data:float +@4982 = .sdata:0x803E6910; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803E6914; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803E6918; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803E691C; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803E6920; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803E6924; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803E6928; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata:0x803E692C; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata:0x803E6930; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata:0x803E6934; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E6938; // type:object size:0x8 scope:local align:4 data:string +@5088 = .sdata:0x803E6940; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803E6944; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803E6948; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803E694C; // type:object size:0x4 scope:local align:4 data:float +@5108 = .sdata:0x803E6950; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803E6954; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata:0x803E6958; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata:0x803E695C; // type:object size:0x6 scope:local align:4 data:string +@5155 = .sdata:0x803E6964; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803E6968; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803E696C; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata:0x803E6970; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata:0x803E6974; // type:object size:0x4 scope:local align:4 data:float +@5160 = .sdata:0x803E6978; // type:object size:0x4 scope:local align:4 data:float +@5175 = .sdata:0x803E697C; // type:object size:0x5 scope:local align:4 data:string +@5181 = .sdata:0x803E6984; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803E6988; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803E698C; // type:object size:0x4 scope:local align:4 data:float +@5184 = .sdata:0x803E6990; // type:object size:0x4 scope:local align:4 data:float +@5185 = .sdata:0x803E6994; // type:object size:0x4 scope:local align:4 data:float +@5186 = .sdata:0x803E6998; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata:0x803E699C; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata:0x803E69A0; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803E69A4; // type:object size:0x4 scope:local align:4 data:float +@5208 = .sdata:0x803E69A8; // type:object size:0x8 scope:local align:4 data:string +@5331 = .sdata:0x803E69B0; // type:object size:0x4 scope:local align:4 data:float +@5332 = .sdata:0x803E69B4; // type:object size:0x4 scope:local align:4 data:float +@5333 = .sdata:0x803E69B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E69BC; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803E69C4; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803E69CC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803E69D4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803E69DC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803E69E4; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803E69EC; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803E69F4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803E69FC; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803E6A04; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803E6A0C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803E6A14; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803E6A1C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803E6A24; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803E6A2C; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803E6A34; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803E6A3C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803E6A44; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803E6A4C; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803E6A54; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803E6A5C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803E6A64; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803E6A6C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803E6A74; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803E6A7C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803E6A84; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803E6A8C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803E6A94; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803E6A9C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803E6AA4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803E6AAC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803E6AB4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803E6ABC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803E6AC4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803E6ACC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803E6AD4; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803E6ADC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803E6AE4; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803E6AF0; // type:object size:0x1 scope:global align:1 data:byte +@1609 = .sdata:0x803E6AF4; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E6AF8; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E6AFC; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E6B00; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E6B04; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E6B08; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E6B0C; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803E6B10; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata:0x803E6B14; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803E6B18; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata:0x803E6B1C; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata:0x803E6B20; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803E6B24; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata:0x803E6B28; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata:0x803E6B2C; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803E6B30; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E6B34; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803E6B38; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E6B3C; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E6B40; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata:0x803E6B44; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata:0x803E6B48; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E6B4C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803E6B50; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803E6B54; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803E6B58; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E6B5C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata:0x803E6B60; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803E6B64; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803E6B68; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E6B6C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E6B70; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E6B74; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E6B78; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E6B7C; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata:0x803E6B80; // type:object size:0x2 scope:local align:4 data:string +@1989 = .sdata:0x803E6B84; // type:object size:0x2 scope:local align:4 data:string +@1990 = .sdata:0x803E6B88; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803E6B8C; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E6B90; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803E6B94; // type:object size:0x2 scope:local align:4 data:string +@2061 = .sdata:0x803E6B98; // type:object size:0x5 scope:local align:4 data:string +@2133 = .sdata:0x803E6BA0; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata:0x803E6BA4; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata:0x803E6BA8; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803E6BAC; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803E6BB0; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803E6BB4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6BB8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6BC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6BC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6BD0; // type:object size:0x8 scope:local align:4 +@2307 = .sdata:0x803E6BD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803E6BE0; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803E6BE8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E6BF0; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803E6BF8; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803E6C00; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803E6C08; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803E6C10; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803E6C14; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803E6C18; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803E6C1C; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803E6C20; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803E6C24; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E6C28; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E6C2C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E6C30; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E6C38; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803E6C40; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803E6C44; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E6C48; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E6C4C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E6C50; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E6C54; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E6C58; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata:0x803E6C5C; // type:object size:0x5 scope:local align:4 +@2237 = .sdata:0x803E6C64; // type:object size:0x5 scope:local align:4 +@2256 = .sdata:0x803E6C6C; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E6C70; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E6C74; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803E6C78; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803E6C7C; // type:object size:0x4 scope:local align:4 data:float +@2476 = .sdata:0x803E6C80; // type:object size:0x4 scope:local align:4 data:float +@2550 = .sdata:0x803E6C84; // type:object size:0x7 scope:local align:4 data:string +@2802 = .sdata:0x803E6C8C; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E6C90; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata:0x803E6C94; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803E6C98; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E6C9C; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803E6CA0; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata:0x803E6CA4; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E6CA8; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E6CAC; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E6CB0; // type:object size:0x4 scope:local align:4 data:float +@2940 = .sdata:0x803E6CB4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E6CB8; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E6CC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E6CC8; // type:object size:0x8 scope:local align:4 +@3007 = .sdata:0x803E6CD0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803E6CD8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803E6CE0; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803E6CE8; // type:object size:0x8 scope:local align:4 +@3019 = .sdata:0x803E6CF0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803E6CF8; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803E6D00; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803E6D08; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803E6D10; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E6D18; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803E6D20; // type:object size:0x8 scope:local align:4 +@3033 = .sdata:0x803E6D28; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6D30; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6D38; // type:object size:0x8 scope:local align:4 +@3036 = .sdata:0x803E6D40; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6D48; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803E6D50; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803E6D58; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6D60; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803E6D68; // type:object size:0x1 scope:local align:4 +@1329 = .sdata:0x803E6D6C; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E6D74; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E6D7C; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E6D84; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E6D8C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6D94; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6D9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803E6DA4; // type:object size:0x8 scope:local align:4 +@1214 = .sdata:0x803E6DB0; // type:object size:0x7 scope:local align:4 data:string +@1989 = .sdata:0x803E6DB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6DC0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6DC8; // type:object size:0x8 scope:local align:4 +@1992 = .sdata:0x803E6DD0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6DD8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E6DE0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E6DE8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E6DF0; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803E6DF8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E6E00; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E6E08; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803E6E10; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6E18; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E6E20; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E6E24; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803E6E28; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E6E2C; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E6E30; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E6E34; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E6E38; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E6E3C; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803E6E40; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803E6E44; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E6E48; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E6E4C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E6E50; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E6E54; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E6E58; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E6E5C; // type:object size:0x6 scope:local align:4 data:string +@1344 = .sdata:0x803E6E64; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803E6E68; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803E6E6C; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803E6E70; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E6E74; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6E7C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6E84; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6E8C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6E94; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6E9C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6EA4; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803E6EAC; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803E6EB4; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803E6EBC; // type:object size:0x8 scope:local align:4 +@1452 = .sdata:0x803E6EC4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803E6ECC; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803E6ED8; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E6EDC; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E6EE0; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803E6EE4; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E6EE8; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803E6EEC; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E6EF0; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E6EF4; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E6EF8; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E6EFC; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E6F00; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E6F04; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E6F08; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803E6F0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6F10; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6F18; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6F20; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6F28; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6F30; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6F38; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803E6F40; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803E6F48; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803E6F50; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803E6F54; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803E6F58; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E6F5C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E6F60; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E6F64; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803E6F68; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803E6F6C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803E6F70; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803E6F74; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803E6F78; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E6F7C; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E6F80; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E6F84; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E6F88; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E6F8C; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E6F90; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803E6F94; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803E6F98; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803E6F9C; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E6FA0; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803E6FA4; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E6FA8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6FAC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6FB4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6FBC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6FC4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6FCC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6FD4; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803E6FDC; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803E6FE8; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803E6FEC; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803E6FF0; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E6FF4; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E6FF8; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E6FFC; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E7000; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E7004; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803E7008; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803E700C; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E7010; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E7014; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E7018; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E701C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E7020; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E7024; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E7028; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E702C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E7030; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803E7034; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E7038; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E703C; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803E7040; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803E7044; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803E7048; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803E704C; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803E7050; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803E7054; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E7058; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803E705C; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803E7060; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803E7064; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803E7068; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E706C; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E7070; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E7074; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E7078; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E707C; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E7080; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E7084; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E7088; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E708C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E7090; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E7094; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E7098; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803E709C; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E70A0; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E70A4; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E70A8; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E70AC; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E70B0; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E70B4; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E70B8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803E70BC; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803E70C0; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803E70C4; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803E70C8; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E70CC; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E70D0; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E70D4; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E70D8; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E70DC; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E70E0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E70E4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E70EC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E70F4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E70FC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7104; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E710C; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E7114; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E711C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803E7124; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803E7130; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803E7138; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803E7140; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803E7148; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803E7150; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803E7158; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803E7160; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803E7168; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803E7170; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803E7178; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E7180; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E7188; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803E7190; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803E7198; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E719C; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E71A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E71A4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E71AC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E71B4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E71BC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E71C4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E71CC; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803E71D4; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803E71E0; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E71E4; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803E71E8; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803E71EC; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803E71F0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E71F4; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E71F8; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E71FC; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E7200; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E7204; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E7208; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E720C; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E7210; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E7214; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E7218; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803E721C; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803E7220; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E7224; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803E7228; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata:0x803E722C; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata:0x803E7230; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata:0x803E7234; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803E7238; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803E723C; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803E7240; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7244; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E724C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7254; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E725C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7264; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E726C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7274; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E727C; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803E7284; // type:object size:0x8 scope:local align:4 +@1499 = .sdata:0x803E7290; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E7294; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803E7298; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata:0x803E729C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E72A0; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E72A4; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E72A8; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E72AC; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E72B0; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata:0x803E72B4; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803E72B8; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803E72BC; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803E72C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E72C4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E72CC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E72D4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E72DC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E72E4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E72EC; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803E72F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E72FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7304; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E730C; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803E7318; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E731C; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803E7320; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803E7324; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E7328; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E732C; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7330; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7338; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7340; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7348; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7350; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7358; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803E7360; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803E7368; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803E7370; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7378; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7380; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7388; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E7390; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803E7398; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E73A0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E73A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E73A8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E73B0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E73B8; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803E73C0; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E73C8; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803E73CC; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803E73D0; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803E73D4; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803E73D8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E73DC; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803E73E4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E73EC; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E73F4; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803E73FC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7404; // type:object size:0x8 scope:local align:4 +@2224 = .sdata:0x803E7410; // type:object size:0x8 scope:local align:4 data:string +@2236 = .sdata:0x803E7418; // type:object size:0x8 scope:local align:4 data:string +@2784 = .sdata:0x803E7420; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E7424; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata:0x803E7428; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata:0x803E742C; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E7430; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803E7434; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata:0x803E7438; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803E743C; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803E7440; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803E7444; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803E744C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803E7454; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803E745C; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E7464; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E746C; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803E7474; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803E747C; // type:object size:0x8 scope:local align:4 +@3265 = .sdata:0x803E7484; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E748C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7494; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E749C; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803E74A4; // type:object size:0x8 scope:local align:4 +@3271 = .sdata:0x803E74AC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803E74B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803E74BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803E74C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803E74CC; // type:object size:0x8 scope:local align:4 +@3279 = .sdata:0x803E74D4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803E74DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803E74E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803E74EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803E74F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803E74FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803E7504; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803E750C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803E7514; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803E751C; // type:object size:0x8 scope:local align:4 +@3298 = .sdata:0x803E7524; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803E752C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803E7534; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803E753C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803E7544; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803E754C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803E7554; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803E755C; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803E7564; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803E756C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803E7574; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803E757C; // type:object size:0x8 scope:local align:4 +@3333 = .sdata:0x803E7584; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803E758C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803E7594; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803E759C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803E75A4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803E75AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803E75B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803E75BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803E75C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803E75CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803E75D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803E75DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803E75E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803E75EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803E75F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803E75FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803E7604; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803E760C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803E7614; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803E761C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803E7624; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803E762C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803E7634; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803E763C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803E7644; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803E764C; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E7654; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803E765C; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E7668; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803E7670; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E7678; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803E7680; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803E7684; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803E7688; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803E768C; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803E7690; // type:object size:0x4 scope:local align:4 data:string +@2508 = .sdata:0x803E7694; // type:object size:0x5 scope:local align:4 data:string +@2510 = .sdata:0x803E769C; // type:object size:0x6 scope:local align:4 data:string +@2516 = .sdata:0x803E76A4; // type:object size:0x5 scope:local align:4 data:string +@2522 = .sdata:0x803E76AC; // type:object size:0x5 scope:local align:4 data:string +@2540 = .sdata:0x803E76B4; // type:object size:0x5 scope:local align:4 data:string +@2767 = .sdata:0x803E76BC; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E76C0; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E76C4; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E76C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E76D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E76D8; // type:object size:0x8 scope:local align:4 +@3067 = .sdata:0x803E76E0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E76E8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E76F0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E76F8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E7700; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803E7708; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E7710; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803E7718; // type:object size:0x8 scope:local align:4 +@3094 = .sdata:0x803E7720; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803E7728; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803E7730; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E7738; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803E7740; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7748; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7750; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7758; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7760; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7768; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7770; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803E7778; // type:object size:0x8 scope:local align:4 +@3178 = .sdata:0x803E7780; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803E7788; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803E7790; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803E7798; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803E77A0; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803E77A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803E77B0; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803E77B8; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803E77C0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E77C8; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803E77D0; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803E77D8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E77E0; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803E77E8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803E77F0; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803E77F8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7800; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7808; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7810; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7818; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7820; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7828; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803E7830; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803E7838; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803E7840; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803E7848; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803E7850; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803E7858; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803E7860; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7868; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7870; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7878; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7880; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7888; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7890; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803E7898; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E78A0; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E78A4; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E78A8; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E78AC; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E78B0; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E78B4; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E78B8; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803E78BC; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803E78C0; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803E78C4; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E78C8; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E78CC; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803E78D0; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803E78D4; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E78D8; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E78DC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E78E4; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803E78EC; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E78F8; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E7900; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7908; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7910; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803E7918; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803E7920; // type:object size:0x1 scope:global align:1 data:byte +@2704 = .sdata:0x803E7924; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803E7928; // type:object size:0x4 scope:local align:4 data:string +@2707 = .sdata:0x803E792C; // type:object size:0x4 scope:local align:4 data:string +@2709 = .sdata:0x803E7930; // type:object size:0x4 scope:local align:4 data:string +@2711 = .sdata:0x803E7934; // type:object size:0x4 scope:local align:4 data:string +@2713 = .sdata:0x803E7938; // type:object size:0x4 scope:local align:4 data:4byte +@2715 = .sdata:0x803E793C; // type:object size:0x4 scope:local align:4 data:4byte +@2717 = .sdata:0x803E7940; // type:object size:0x4 scope:local align:4 data:4byte +@2719 = .sdata:0x803E7944; // type:object size:0x4 scope:local align:4 data:4byte +@2721 = .sdata:0x803E7948; // type:object size:0x4 scope:local align:4 data:4byte +@2723 = .sdata:0x803E794C; // type:object size:0x4 scope:local align:4 data:4byte +@2725 = .sdata:0x803E7950; // type:object size:0x4 scope:local align:4 data:4byte +@2727 = .sdata:0x803E7954; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803E7958; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803E795C; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803E7960; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803E7964; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803E7968; // type:object size:0x4 scope:local align:4 data:4byte +@2737 = .sdata:0x803E796C; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803E7970; // type:object size:0x4 scope:local align:4 data:4byte +@2739 = .sdata:0x803E7974; // type:object size:0x4 scope:local align:4 data:4byte +@2741 = .sdata:0x803E7978; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803E797C; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803E7980; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803E7984; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803E7988; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803E798C; // type:object size:0x4 scope:local align:4 data:4byte +@2750 = .sdata:0x803E7990; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803E7994; // type:object size:0x4 scope:local align:4 data:4byte +@2752 = .sdata:0x803E7998; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803E799C; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803E79A0; // type:object size:0x4 scope:local align:4 data:4byte +@2757 = .sdata:0x803E79A4; // type:object size:0x4 scope:local align:4 data:4byte +@2759 = .sdata:0x803E79A8; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803E79AC; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803E79B0; // type:object size:0x4 scope:local align:4 data:4byte +@2764 = .sdata:0x803E79B4; // type:object size:0x4 scope:local align:4 data:4byte +@2766 = .sdata:0x803E79B8; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803E79BC; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803E79C0; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803E79C4; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803E79C8; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803E79CC; // type:object size:0x4 scope:local align:4 data:4byte +@2774 = .sdata:0x803E79D0; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803E79D4; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803E79D8; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803E79DC; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803E79E0; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803E79E4; // type:object size:0x4 scope:local align:4 data:4byte +@2781 = .sdata:0x803E79E8; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803E79EC; // type:object size:0x4 scope:local align:4 data:4byte +@2783 = .sdata:0x803E79F0; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803E79F4; // type:object size:0x4 scope:local align:4 data:4byte +@2787 = .sdata:0x803E79F8; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803E79FC; // type:object size:0x4 scope:local align:4 data:4byte +@2791 = .sdata:0x803E7A00; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803E7A04; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803E7A08; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803E7A0C; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803E7A10; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803E7A14; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803E7A18; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803E7A1C; // type:object size:0x4 scope:local align:4 data:4byte +@2801 = .sdata:0x803E7A20; // type:object size:0x4 scope:local align:4 data:4byte +@2802 = .sdata:0x803E7A24; // type:object size:0x4 scope:local align:4 data:4byte +@2803 = .sdata:0x803E7A28; // type:object size:0x4 scope:local align:4 data:4byte +@2858 = .sdata:0x803E7A2C; // type:object size:0x4 scope:local align:4 data:float +@2859 = .sdata:0x803E7A30; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata:0x803E7A34; // type:object size:0x4 scope:local align:4 data:float +@2917 = .sdata:0x803E7A38; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E7A3C; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E7A40; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E7A44; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E7A48; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E7A4C; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E7A50; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E7A54; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E7A58; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E7A5C; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E7A60; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E7A64; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E7A68; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E7A6C; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803E7A70; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata:0x803E7A74; // type:object size:0x1 scope:local align:4 +@3023 = .sdata:0x803E7A78; // type:object size:0x8 scope:local align:4 data:string +@3063 = .sdata:0x803E7A80; // type:object size:0x4 scope:local align:4 data:float +@3064 = .sdata:0x803E7A84; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E7A88; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E7A8C; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803E7A90; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E7A94; // type:object size:0x4 scope:local align:4 data:float +@3075 = .sdata:0x803E7A98; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E7A9C; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803E7AA0; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803E7AA4; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata:0x803E7AA8; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata:0x803E7AAC; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata:0x803E7AB0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E7AB4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E7AB8; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E7ABC; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata:0x803E7AC0; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata:0x803E7AC4; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata:0x803E7AC8; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E7ACC; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803E7AD0; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E7AD4; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E7AD8; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata:0x803E7ADC; // type:object size:0x4 scope:local align:4 data:float +@4809 = .sdata:0x803E7AE0; // type:object size:0x3 scope:local align:4 data:string +@4818 = .sdata:0x803E7AE4; // type:object size:0x4 scope:local align:4 data:float +@4879 = .sdata:0x803E7AE8; // type:object size:0x4 scope:local align:4 data:float +@4880 = .sdata:0x803E7AEC; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata:0x803E7AF0; // type:object size:0x4 scope:local align:4 data:float +@4911 = .sdata:0x803E7AF4; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803E7AF8; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803E7AFC; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803E7B00; // type:object size:0x4 scope:local align:4 data:float +@4915 = .sdata:0x803E7B04; // type:object size:0x4 scope:local align:4 data:float +@4917 = .sdata:0x803E7B08; // type:object size:0x4 scope:local align:4 data:float +@4918 = .sdata:0x803E7B0C; // type:object size:0x4 scope:local align:4 data:float +@4919 = .sdata:0x803E7B10; // type:object size:0x4 scope:local align:4 data:float +@5204 = .sdata:0x803E7B14; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803E7B18; // type:object size:0x4 scope:local align:4 data:float +@5206 = .sdata:0x803E7B1C; // type:object size:0x4 scope:local align:4 data:float +@5215 = .sdata:0x803E7B20; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803E7B24; // type:object size:0x4 scope:local align:4 data:float +@5217 = .sdata:0x803E7B28; // type:object size:0x4 scope:local align:4 data:float +@5221 = .sdata:0x803E7B2C; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E7B30; // type:object size:0x4 scope:local align:4 data:float +@5468 = .sdata:0x803E7B34; // type:object size:0x4 scope:local align:4 data:float +@5469 = .sdata:0x803E7B38; // type:object size:0x4 scope:local align:4 data:float +@5470 = .sdata:0x803E7B3C; // type:object size:0x4 scope:local align:4 data:float +@5670 = .sdata:0x803E7B40; // type:object size:0x4 scope:local align:4 data:float +@6196 = .sdata:0x803E7B44; // type:object size:0x4 scope:local align:4 data:float +@6197 = .sdata:0x803E7B48; // type:object size:0x4 scope:local align:4 data:float +@6198 = .sdata:0x803E7B4C; // type:object size:0x4 scope:local align:4 data:float +@6383 = .sdata:0x803E7B50; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803E7B54; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803E7B58; // type:object size:0x4 scope:local align:4 data:float +@6391 = .sdata:0x803E7B5C; // type:object size:0x4 scope:local align:4 data:float +@6392 = .sdata:0x803E7B60; // type:object size:0x4 scope:local align:4 data:float +@6393 = .sdata:0x803E7B64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E7B68; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803E7B70; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803E7B78; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E7B80; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E7B88; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7B90; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E7B98; // type:object size:0x8 scope:local align:4 +@6747 = .sdata:0x803E7BA0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7BA8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7BB0; // type:object size:0x8 scope:local align:4 +@6750 = .sdata:0x803E7BB8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7BC0; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803E7BC8; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E7BD0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7BD8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7BE0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E7BE8; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803E7BF0; // type:object size:0x8 scope:local align:4 +@6780 = .sdata:0x803E7BF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E7C00; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7C08; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7C10; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803E7C18; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803E7C20; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803E7C24; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803E7C28; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E7C2C; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E7C30; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E7C34; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803E7C38; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803E7C3C; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803E7C40; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803E7C44; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803E7C48; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803E7C4C; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803E7C50; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803E7C54; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803E7C58; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803E7C5C; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803E7C60; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803E7C64; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E7C68; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E7C6C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E7C70; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E7C74; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E7C78; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E7C7C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803E7C80; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803E7C84; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803E7C88; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803E7C8C; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803E7C90; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803E7C94; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803E7C98; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803E7C9C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803E7CA0; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E7CA4; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata:0x803E7CA8; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata:0x803E7CAC; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata:0x803E7CB0; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata:0x803E7CB4; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata:0x803E7CB8; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata:0x803E7CBC; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata:0x803E7CC0; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803E7CC4; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803E7CC8; // type:object size:0x4 scope:local align:4 data:float +@3515 = .sdata:0x803E7CCC; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata:0x803E7CD0; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata:0x803E7CD4; // type:object size:0x4 scope:local align:4 data:float +@3518 = .sdata:0x803E7CD8; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata:0x803E7CDC; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata:0x803E7CE0; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E7CE4; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E7CE8; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E7CEC; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E7CF0; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E7CF4; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E7CF8; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E7CFC; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803E7D00; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata:0x803E7D04; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E7D08; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E7D0C; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata:0x803E7D10; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata:0x803E7D14; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata:0x803E7D18; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata:0x803E7D1C; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata:0x803E7D20; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata:0x803E7D24; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata:0x803E7D28; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata:0x803E7D2C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata:0x803E7D30; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E7D34; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata:0x803E7D38; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata:0x803E7D3C; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata:0x803E7D40; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata:0x803E7D44; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata:0x803E7D48; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata:0x803E7D4C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata:0x803E7D50; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata:0x803E7D54; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata:0x803E7D58; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata:0x803E7D5C; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata:0x803E7D60; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata:0x803E7D64; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata:0x803E7D68; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803E7D6C; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata:0x803E7D70; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata:0x803E7D74; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata:0x803E7D78; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata:0x803E7D7C; // type:object size:0x4 scope:local align:4 data:float +@4779 = .sdata:0x803E7D80; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata:0x803E7D84; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata:0x803E7D88; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata:0x803E7D8C; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata:0x803E7D90; // type:object size:0x4 scope:local align:4 data:float +@4937 = .sdata:0x803E7D94; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E7D98; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata:0x803E7D9C; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata:0x803E7DA0; // type:object size:0x4 scope:local align:4 data:float +@5070 = .sdata:0x803E7DA4; // type:object size:0x4 scope:local align:4 data:float +@5071 = .sdata:0x803E7DA8; // type:object size:0x4 scope:local align:4 data:float +@5072 = .sdata:0x803E7DAC; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata:0x803E7DB0; // type:object size:0x4 scope:local align:4 data:float +@5074 = .sdata:0x803E7DB4; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata:0x803E7DB8; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata:0x803E7DBC; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E7DC0; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803E7DC4; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata:0x803E7DC8; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata:0x803E7DCC; // type:object size:0x4 scope:local align:4 data:float +@5223 = .sdata:0x803E7DD0; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E7DD4; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata:0x803E7DD8; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata:0x803E7DDC; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata:0x803E7DE0; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata:0x803E7DE4; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata:0x803E7DE8; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata:0x803E7DEC; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata:0x803E7DF0; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata:0x803E7DF4; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata:0x803E7DF8; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata:0x803E7DFC; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata:0x803E7E00; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata:0x803E7E04; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata:0x803E7E08; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata:0x803E7E0C; // type:object size:0x4 scope:local align:4 data:float +@5572 = .sdata:0x803E7E10; // type:object size:0x4 scope:local align:4 data:float +@5573 = .sdata:0x803E7E14; // type:object size:0x4 scope:local align:4 data:float +@5574 = .sdata:0x803E7E18; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803E7E1C; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803E7E20; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803E7E24; // type:object size:0x4 scope:local align:4 data:float +@5587 = .sdata:0x803E7E28; // type:object size:0x4 scope:local align:4 data:float +@5588 = .sdata:0x803E7E2C; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata:0x803E7E30; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803E7E34; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803E7E38; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata:0x803E7E3C; // type:object size:0x4 scope:local align:4 data:float +@5632 = .sdata:0x803E7E40; // type:object size:0x4 scope:local align:4 data:float +@5634 = .sdata:0x803E7E44; // type:object size:0x4 scope:local align:4 data:float +@5691 = .sdata:0x803E7E48; // type:object size:0x4 scope:local align:4 data:float +@5692 = .sdata:0x803E7E4C; // type:object size:0x4 scope:local align:4 data:float +@5693 = .sdata:0x803E7E50; // type:object size:0x4 scope:local align:4 data:float +@5694 = .sdata:0x803E7E54; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata:0x803E7E58; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata:0x803E7E5C; // type:object size:0x4 scope:local align:4 data:float +@5712 = .sdata:0x803E7E60; // type:object size:0x4 scope:local align:4 data:float +@5718 = .sdata:0x803E7E64; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata:0x803E7E68; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata:0x803E7E6C; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata:0x803E7E70; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata:0x803E7E74; // type:object size:0x4 scope:local align:4 data:float +@5723 = .sdata:0x803E7E78; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata:0x803E7E7C; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata:0x803E7E80; // type:object size:0x4 scope:local align:4 data:float +@5775 = .sdata:0x803E7E84; // type:object size:0x4 scope:local align:4 data:float +@5776 = .sdata:0x803E7E88; // type:object size:0x4 scope:local align:4 data:float +@5777 = .sdata:0x803E7E8C; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata:0x803E7E90; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803E7E94; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803E7E98; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803E7E9C; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803E7EA0; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata:0x803E7EA4; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata:0x803E7EA8; // type:object size:0x4 scope:local align:4 data:float +@5818 = .sdata:0x803E7EAC; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata:0x803E7EB0; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata:0x803E7EB4; // type:object size:0x4 scope:local align:4 data:float +@5821 = .sdata:0x803E7EB8; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata:0x803E7EBC; // type:object size:0x4 scope:local align:4 data:float +@5823 = .sdata:0x803E7EC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E7EC4; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E7ECC; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E7ED4; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803E7EDC; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803E7EE4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803E7EEC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803E7EF4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803E7EFC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803E7F04; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803E7F0C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803E7F14; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803E7F1C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803E7F24; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803E7F2C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803E7F34; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803E7F3C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803E7F44; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803E7F4C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803E7F54; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803E7F5C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803E7F64; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803E7F6C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803E7F74; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803E7F7C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803E7F84; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803E7F8C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803E7F94; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803E7F9C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803E7FA4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803E7FAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803E7FB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803E7FBC; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803E7FC4; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803E7FCC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803E7FD4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803E7FDC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803E7FE4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803E7FEC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803E7FF4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803E7FFC; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E8004; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803E800C; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803E8018; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E801C; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803E8020; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E8024; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E8028; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E802C; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E8030; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E8034; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E8038; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E803C; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803E8040; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803E8044; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E8048; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E804C; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803E8050; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E8054; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E805C; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E8064; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803E806C; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803E8074; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803E807C; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803E8084; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803E808C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803E8094; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803E809C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803E80A4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803E80AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803E80B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803E80BC; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803E80C8; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E80CC; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E80D0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E80D4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E80D8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E80DC; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803E80E0; // type:object size:0x1 scope:local align:4 +@3387 = .sdata:0x803E80E4; // type:object size:0x4 scope:local align:4 data:float +@3388 = .sdata:0x803E80E8; // type:object size:0x4 scope:local align:4 data:float +@3389 = .sdata:0x803E80EC; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata:0x803E80F0; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata:0x803E80F4; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E80F8; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E80FC; // type:object size:0x5 scope:local align:4 data:string +@3526 = .sdata:0x803E8104; // type:object size:0x8 scope:local align:4 data:string +@3531 = .sdata:0x803E810C; // type:object size:0x5 scope:local align:4 data:string +@3532 = .sdata:0x803E8114; // type:object size:0x5 scope:local align:4 data:string +@3533 = .sdata:0x803E811C; // type:object size:0x7 scope:local align:4 data:string +@3534 = .sdata:0x803E8124; // type:object size:0x6 scope:local align:4 data:string +@3535 = .sdata:0x803E812C; // type:object size:0x5 scope:local align:4 data:string +@3536 = .sdata:0x803E8134; // type:object size:0x5 scope:local align:4 data:string +@3537 = .sdata:0x803E813C; // type:object size:0x7 scope:local align:4 data:string +@3538 = .sdata:0x803E8144; // type:object size:0x8 scope:local align:4 data:string +@3539 = .sdata:0x803E814C; // type:object size:0x6 scope:local align:4 data:string +@3796 = .sdata:0x803E8154; // type:object size:0x4 scope:local align:4 data:string +@3803 = .sdata:0x803E8158; // type:object size:0x7 scope:local align:4 +@3805 = .sdata:0x803E8160; // type:object size:0x5 scope:local align:4 data:string +@3806 = .sdata:0x803E8168; // type:object size:0x8 scope:local align:4 data:string +@3808 = .sdata:0x803E8170; // type:object size:0x8 scope:local align:4 data:string +@3810 = .sdata:0x803E8178; // type:object size:0x5 scope:local align:4 data:string +@3812 = .sdata:0x803E8180; // type:object size:0x6 scope:local align:4 data:string +@3815 = .sdata:0x803E8188; // type:object size:0x6 scope:local align:4 data:string +@3817 = .sdata:0x803E8190; // type:object size:0x8 scope:local align:4 data:string +@3818 = .sdata:0x803E8198; // type:object size:0x8 scope:local align:4 data:string +@4146 = .sdata:0x803E81A0; // type:object size:0x8 scope:local align:4 data:string +@4369 = .sdata:0x803E81A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E81B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E81B8; // type:object size:0x8 scope:local align:4 +@4372 = .sdata:0x803E81C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E81C8; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803E81D0; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E81D8; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E81E0; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803E81E4; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803E81E8; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803E81EC; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E81F0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E81F4; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E81F8; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E81FC; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803E8200; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E8204; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803E8208; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E820C; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E8210; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803E8214; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E8218; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E821C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803E8220; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E8224; // type:object size:0x4 scope:local align:4 data:float +@1735 = .sdata:0x803E8228; // type:object size:0x4 scope:local align:4 data:float +@1736 = .sdata:0x803E822C; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata:0x803E8230; // type:object size:0x4 scope:local align:4 data:float +@1822 = .sdata:0x803E8234; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata:0x803E8238; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata:0x803E823C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803E8240; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E8248; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E8250; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E8258; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803E8260; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803E8268; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803E8270; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803E8278; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803E8280; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803E8288; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803E8290; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803E8298; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803E82A0; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803E82A8; // type:object size:0x8 scope:local align:4 +@2127 = .sdata:0x803E82B0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803E82B8; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803E82C0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803E82C8; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803E82D0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803E82D8; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803E82E0; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803E82E8; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803E82F0; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803E82F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8300; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8308; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803E8310; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8318; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E8320; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803E8328; // type:object size:0x8 scope:local align:4 +@737 = .sdata:0x803E8330; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E8334; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E8338; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E833C; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803E8340; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803E8344; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803E8348; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata:0x803E834C; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803E8350; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803E8358; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803E8360; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8368; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8370; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803E8378; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8380; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E8388; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E8390; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E8398; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803E83A0; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803E83A8; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803E83AC; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803E83B0; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803E83B4; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803E83B8; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E83BC; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803E83C0; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803E83C4; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803E83C8; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803E83CC; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803E83D0; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803E83D4; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803E83D8; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E83E0; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E83E8; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803E83F0; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803E83F4; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803E83F8; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803E83FC; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803E8400; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803E8404; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803E8408; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803E840C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803E8410; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803E8414; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E8418; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E841C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E8420; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E8424; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803E8428; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803E842C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803E8430; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803E8434; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803E8438; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803E843C; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803E8440; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803E8444; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803E8448; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata:0x803E844C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E8454; // type:object size:0x8 scope:local align:4 +@1051 = .sdata:0x803E845C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8464; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E846C; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803E8474; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E847C; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803E8488; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E848C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E8490; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E8494; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803E8498; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803E849C; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803E84A0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803E84A4; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803E84A8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803E84AC; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803E84B0; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803E84B4; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803E84B8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E84BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E84C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E84CC; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803E84D4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E84DC; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E84E4; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E84EC; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803E84F4; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803E84FC; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803E8504; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E8510; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803E8514; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803E851C; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803E8524; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803E852C; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803E8534; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803E853C; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E8544; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803E854C; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803E8554; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803E855C; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803E8564; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803E856C; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803E8574; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803E857C; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803E8584; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803E858C; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803E8594; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803E859C; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803E85A4; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803E85AC; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803E85B4; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803E85BC; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803E85C4; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803E85CC; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803E85D4; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803E85DC; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803E85E4; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803E85EC; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803E85F4; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803E85FC; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803E8604; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803E860C; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803E8614; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803E861C; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803E8624; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803E862C; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803E8634; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803E863C; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803E8644; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803E864C; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803E8650; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803E8658; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803E8660; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803E8668; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803E8670; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803E8678; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803E8680; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803E8688; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803E8690; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803E8698; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803E86A0; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803E86A8; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803E86B0; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803E86B8; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803E86C0; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803E86C8; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803E86CC; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803E86D4; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803E86DC; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803E86E4; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803E86EC; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803E86F4; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803E86FC; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E8704; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E870C; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E8714; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803E871C; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803E8724; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803E872C; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803E8730; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803E8738; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E8740; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8748; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803E8750; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8758; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803E8760; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8768; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8770; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803E8778; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803E8780; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E8788; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E8790; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803E8794; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803E8798; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803E879C; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803E87A0; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803E87A4; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803E87AC; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803E87B4; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803E87BC; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803E87C0; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803E87C8; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803E87D0; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803E87D8; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803E87DC; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803E87E0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E87E8; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803E87F0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E87F8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8800; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803E8808; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E8810; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8818; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8820; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803E8828; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8830; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E8838; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E8840; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E8848; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803E8850; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E8858; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803E8860; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803E8868; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803E8870; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803E8878; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E8880; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803E8888; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803E8890; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E8898; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E88A0; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803E88A8; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803E88B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E88B8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E88C0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E88C8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E88D0; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E88D8; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803E88E0; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E88E8; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E88EC; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E88F0; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E88F4; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E88F8; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E88FC; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E8900; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E8904; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E890C; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803E8914; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8920; // type:object size:0x8 scope:local align:4 +@1293 = .sdata:0x803E8928; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8930; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8938; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803E8940; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803E8948; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803E8950; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803E8958; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803E8960; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803E8968; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803E8970; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E8974; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803E8978; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803E897C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803E8984; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803E898C; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803E8994; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803E899C; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803E89A4; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803E89AC; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803E89B4; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E89C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803E89C8; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803E89D0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803E89D8; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803E89E0; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E89E4; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803E89E8; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803E89EC; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803E89F0; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803E89F4; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803E89F8; // type:object size:0x4 scope:global align:4 data:float +degreePerRadian__6NMathF = .sdata:0x803E89FC; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803E8A00; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803E8A04; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803E8A08; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803E8A10; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803E8A18; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E8A20; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8A28; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803E8A30; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E8A38; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8A40; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803E8A48; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803E8A50; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803E8A58; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803E8A60; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E8A68; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803E8A70; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803E8A78; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803E8A80; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803E8A88; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803E8A90; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803E8A98; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803E8AA0; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803E8AA8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E8AB0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8AB8; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803E8AC0; // type:object size:0x8 scope:local align:4 +@1799 = .sdata:0x803E8AC8; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E8ACC; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E8AD0; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata:0x803E8AD4; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata:0x803E8AD8; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata:0x803E8ADC; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata:0x803E8AE0; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E8AE4; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E8AE8; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E8AEC; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E8AF0; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E8AF4; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803E8AF8; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E8AFC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E8B00; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E8B04; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E8B08; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803E8B0C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E8B10; // type:object size:0x7 scope:local align:4 data:string +@1937 = .sdata:0x803E8B18; // type:object size:0x8 scope:local align:4 data:string +@1938 = .sdata:0x803E8B20; // type:object size:0x8 scope:local align:4 data:string +@2237 = .sdata:0x803E8B28; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E8B2C; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E8B34; // type:object size:0x1 scope:local align:4 +@2311 = .sdata:0x803E8B38; // type:object size:0x8 scope:local align:4 data:string +@2326 = .sdata:0x803E8B40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8B48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8B50; // type:object size:0x8 scope:local align:4 +@2329 = .sdata:0x803E8B58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8B60; // type:object size:0x8 scope:local align:4 +@2331 = .sdata:0x803E8B68; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E8B70; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniTestSection = .sdata:0x803E8B78; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8B80; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniTestNode = .sdata:0x803E8B88; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803E8B90; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E8B98; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803E8BA0; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E8BA8; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803E8BB0; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E8BB8; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803E8BC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803E8BC8; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803E8BD0; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803E8BD8; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E8BE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8BE8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8BF0; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E8BF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8C00; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803E8C08; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803E8C10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8C18; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E8C20; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803E8C28; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803E8C30; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E8C38; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803E8C40; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803E8C48; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E8C50; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803E8C58; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E8C60; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803E8C68; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8C70; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8C78; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803E8C80; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8C88; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803E8C90; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E8C98; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803E8CA0; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803E8CA8; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803E8CB0; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803E8CB8; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803E8CC0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803E8CC8; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803E8CD0; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803E8CD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8CE0; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E8CE8; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E8CF0; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E8CF8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E8D00; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E8D08; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803E8D10; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803E8D18; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803E8D20; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803E8D28; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803E8D30; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803E8D38; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8D40; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E8D48; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E8D50; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803E8D58; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803E8D60; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E8D68; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803E8D70; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803E8D78; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803E8D80; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803E8D88; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803E8D90; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803E8D98; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E8DA0; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803E8DA8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803E8DB0; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803E8DB8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8DC0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803E8DD0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8DD8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803E8DE0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8DE8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8DF0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803E8DF8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803E8E00; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803E8E08; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803E8E10; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803E8E18; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8E20; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8E28; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803E8E30; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803E8E38; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803E8E40; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803E8E48; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803E8E50; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803E8E58; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8E60; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803E8E68; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803E8E70; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803E8E78; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803E8E80; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803E8E88; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803E8E90; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8E98; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8EA0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E8EA8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803E8EB0; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E8EB8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803E8EC0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8EC8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8ED0; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803E8ED8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803E8EE0; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803E8EE8; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803E8EF0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8EF8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8F00; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803E8F08; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E8F10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8F18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8F20; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803E8F28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8F30; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8F38; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803E8F40; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803E8F48; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803E8F50; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E8F58; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803E8F5C; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803E8F60; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803E8F64; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803E8F68; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803E8F6C; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803E8F70; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803E8F74; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803E8F78; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803E8F7C; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803E8F80; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E8F84; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E8F88; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803E8F8C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8F94; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803E8F9C; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803E8FA4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8FAC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8FB4; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803E8FBC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8FC4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8FCC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803E8FD4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8FDC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8FE4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E8FEC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803E8FF4; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803E8FFC; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803E9004; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803E900C; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803E9014; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803E901C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803E9024; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803E902C; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9034; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E903C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803E9044; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803E904C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803E9054; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803E905C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803E9064; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803E906C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803E9074; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803E907C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803E9084; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803E908C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803E9094; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E909C; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803E90A4; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803E90AC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E90B4; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E90BC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803E90C4; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803E90CC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803E90D4; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803E90DC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803E90E4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803E90EC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803E90F4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9100; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803E9108; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803E9110; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803E9118; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803E9120; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803E9128; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803E9130; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803E9138; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9140; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9148; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9150; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803E9158; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803E9160; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803E9168; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9170; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9174; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9178; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E917C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9180; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9184; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9188; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E918C; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E9190; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E9194; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803E9198; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803E919C; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803E91A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E91A4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803E91AC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E91B4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E91BC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803E91C4; // type:object size:0x8 scope:local align:4 +@2168 = .sdata:0x803E91CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E91D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E91DC; // type:object size:0x8 scope:local align:4 +@2171 = .sdata:0x803E91E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E91EC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E91F4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803E91FC; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803E9204; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803E920C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803E9214; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803E921C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9228; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803E9230; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803E9238; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9240; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9248; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803E9250; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803E9258; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803E9260; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803E9268; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803E9270; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803E9278; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803E9280; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803E9288; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E9290; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803E9294; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803E9298; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803E929C; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803E92A0; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803E92A4; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803E92A8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E92AC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E92B4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E92BC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803E92C4; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803E92CC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E92D4; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E92DC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803E92E4; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803E92EC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803E92F4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E92FC; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9304; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803E930C; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803E9314; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803E931C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9324; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E932C; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803E9334; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E933C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9344; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803E934C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9358; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803E9360; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803E9368; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9370; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9374; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9378; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E937C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9380; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9384; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9388; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803E938C; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803E9390; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803E9394; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803E9398; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803E939C; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803E93A0; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803E93A4; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803E93A8; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803E93AC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E93B0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803E93B8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803E93C0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803E93C8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803E93D0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803E93D8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803E93E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E93E8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803E93F0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803E93F8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9400; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9408; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803E9410; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803E9418; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9420; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9428; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E9430; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9438; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9440; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803E9448; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803E9450; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803E9458; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803E9460; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803E9468; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E9470; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9474; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E9478; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E947C; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E9480; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E9484; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9488; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803E9490; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803E9498; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803E94A0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803E94A8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803E94B0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E94B8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803E94C0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803E94C8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803E94D0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803E94D8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E94E0; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803E94E8; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803E94EC; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803E94F0; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803E94F4; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803E94F8; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803E94FC; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803E9500; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9504; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803E950C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803E9514; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803E951C; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9524; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E952C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803E9534; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803E953C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803E9544; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803E954C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803E9554; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803E955C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803E9564; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E956C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803E9574; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803E957C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803E9584; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803E958C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803E9594; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803E959C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803E95A4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803E95AC; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803E95B4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803E95BC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803E95C4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803E95CC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803E95D4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803E95DC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803E95E4; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803E95EC; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803E95F4; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803E95FC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803E9604; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803E960C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803E9614; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9620; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9624; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9628; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E962C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9630; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9634; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9638; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803E963C; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803E9640; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803E9644; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9648; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803E9650; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803E9658; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803E9660; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803E9668; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803E9670; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803E9678; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803E9680; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803E9688; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803E9690; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803E9698; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803E96A0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803E96A8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E96B0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E96B8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803E96C0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803E96C8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803E96D0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803E96D8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803E96E0; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803E96E8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803E96F0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803E96F8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803E9700; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9708; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E9710; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803E9718; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803E9720; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803E9728; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9730; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9738; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803E9740; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803E9748; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9750; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9758; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803E9760; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9768; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9770; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803E9778; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9780; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9784; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9788; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E978C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9790; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9794; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9798; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E979C; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E97A0; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E97A4; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E97A8; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E97AC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E97B0; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803E97B4; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803E97B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E97BC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E97C4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E97CC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803E97D4; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803E97DC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803E97E4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803E97EC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E97F4; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E97FC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803E9804; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803E980C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803E9814; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803E981C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803E9824; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803E982C; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803E9834; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E983C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9844; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803E984C; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803E9854; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E985C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9864; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803E986C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9874; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E987C; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803E9884; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803E988C; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E9898; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E989C; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E98A0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E98A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E98A8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803E98B0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803E98B8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803E98C0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803E98C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803E98D0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803E98D8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E98E0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E98E8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803E98F0; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E98F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803E9900; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803E9908; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9910; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9918; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9920; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9928; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803E9930; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803E9938; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9940; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9948; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803E9950; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9958; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9960; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803E9968; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9970; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803E9978; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803E9980; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803E9988; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803E9990; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E9998; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803E99A0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E99A8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E99B0; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803E99B8; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803E99C0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E99C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E99D0; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803E99D8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803E99E0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803E99E8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803E99F0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803E99F8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803E9A00; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E9A08; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803E9A10; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803E9A18; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803E9A20; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803E9A28; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803E9A30; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803E9A38; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803E9A40; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E9A48; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803E9A4C; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803E9A50; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E9A54; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9A58; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9A60; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9A68; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803E9A70; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803E9A78; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803E9A80; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803E9A88; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803E9A90; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9A98; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9AA0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9AA8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803E9AB0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E9AB8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803E9AC0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803E9AC8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9AD0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9AD8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803E9AE0; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803E9AE8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9AF0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9AF8; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803E9B00; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9B08; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9B10; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803E9B18; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803E9B20; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803E9B28; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E9B2C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E9B30; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9B34; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803E9B3C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9B44; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9B4C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803E9B54; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803E9B5C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9B64; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9B6C; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803E9B74; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9B7C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9B84; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803E9B8C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803E9B94; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9B9C; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9BA4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803E9BAC; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803E9BB4; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803E9BBC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803E9BC4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803E9BCC; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803E9BD4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9BE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E9BE8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803E9BF0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803E9BF8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803E9C00; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9C08; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9C10; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803E9C18; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803E9C20; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E9C28; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9C30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E9C38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9C40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9C48; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803E9C50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E9C58; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E9C60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E9C68; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E9C70; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803E9C78; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803E9C80; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803E9C88; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9C90; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9C98; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803E9CA0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9CA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803E9CB0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9CB8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9CBC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9CC0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E9CC4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9CC8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9CCC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9CD0; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803E9CD4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803E9CD8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803E9CDC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803E9CE0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803E9CE4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803E9CE8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803E9CEC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803E9CF0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803E9CF4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803E9CF8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803E9CFC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803E9D00; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803E9D04; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803E9D08; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803E9D0C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803E9D10; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803E9D14; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803E9D18; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803E9D1C; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803E9D20; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803E9D24; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803E9D28; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803E9D2C; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803E9D30; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803E9D34; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E9D38; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E9D3C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E9D40; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E9D44; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E9D48; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803E9D4C; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803E9D50; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E9D54; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E9D58; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E9D5C; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E9D60; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803E9D64; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803E9D68; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803E9D6C; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E9D70; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803E9D74; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803E9D78; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803E9D7C; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata:0x803E9D80; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803E9D84; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803E9D88; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803E9D8C; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803E9D90; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803E9D94; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803E9D98; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803E9D9C; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803E9DA0; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata:0x803E9DA4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E9DA8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9DB0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9DB8; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E9DC0; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E9DC8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9DD0; // type:object size:0x8 scope:local align:4 +@4713 = .sdata:0x803E9DD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E9DE0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9DE8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9DF0; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803E9DF8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9E00; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9E08; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803E9E10; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803E9E18; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803E9E20; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803E9E28; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803E9E30; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803E9E38; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803E9E40; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803E9E48; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803E9E50; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803E9E58; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803E9E60; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803E9E68; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803E9E70; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803E9E78; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803E9E80; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803E9E88; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803E9E90; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803E9E98; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803E9EA0; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803E9EA8; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803E9EB0; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803E9EB8; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E9EC0; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803E9EC8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803E9ED0; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803E9ED8; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803E9EE0; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803E9EE8; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803E9EF0; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803E9EF8; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803E9F00; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803E9F08; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E9F10; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803E9F18; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803E9F20; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803E9F28; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803E9F30; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803E9F38; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803E9F40; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E9F48; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E9F50; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803E9F58; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E9F60; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E9F64; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803E9F6C; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803E9F74; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803E9F7C; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803E9F84; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803E9F8C; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803E9F94; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803E9F9C; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803E9FA4; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803E9FAC; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803E9FB4; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803E9FBC; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803E9FC4; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803E9FCC; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803E9FD4; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E9FDC; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803E9FE0; // type:object size:0x6 scope:local align:4 data:string +@1517 = .sdata:0x803E9FE8; // type:object size:0x8 scope:local align:4 data:string +@1519 = .sdata:0x803E9FF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9FF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA000; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803EA008; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA010; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EA018; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EA020; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803EA028; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803EA030; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803EA038; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EA040; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA048; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA050; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA058; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA060; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803EA068; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EA070; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803EA078; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803EA080; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803EA088; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803EA090; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803EA098; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803EA0A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA0A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA0B0; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803EA0B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA0C0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA0C8; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803EA0D0; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803EA0D8; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803EA0DC; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803EA0E0; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803EA0E4; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803EA0E8; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803EA0EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803EA0F0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA0F8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803EA100; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803EA108; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EA110; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EA118; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803EA120; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803EA128; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803EA130; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803EA134; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803EA138; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803EA13C; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803EA140; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803EA144; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803EA148; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803EA14C; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803EA150; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803EA154; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803EA158; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803EA15C; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803EA160; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803EA164; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803EA168; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803EA16C; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803EA170; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803EA174; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803EA178; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803EA17C; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803EA180; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803EA184; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803EA188; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803EA18C; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803EA190; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803EA194; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803EA198; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803EA19C; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803EA1A0; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803EA1A4; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803EA1A8; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803EA1AC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803EA1B0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803EA1B4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803EA1B8; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803EA1BC; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803EA1C0; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803EA1C4; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803EA1C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EA1CC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA1D4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA1DC; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803EA1E4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA1EC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA1F4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA1FC; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803EA208; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA210; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA218; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803EA220; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA228; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803EA230; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA238; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803EA240; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803EA248; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803EA250; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803EA258; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803EA260; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803EA268; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803EA270; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803EA278; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803EA280; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803EA288; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803EA290; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803EA298; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803EA2A0; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803EA2A8; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803EA2B0; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803EA2B4; // type:object size:0x5 scope:local align:4 data:string +@2889 = .sdata:0x803EA2BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA2C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA2CC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803EA2D4; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EA2DC; // type:object size:0x8 scope:local align:4 +@2895 = .sdata:0x803EA2E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA2EC; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EA2F4; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803EA2FC; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803EA308; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803EA310; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EA314; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EA318; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EA31C; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EA320; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EA324; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EA328; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EA32C; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803EA330; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803EA334; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EA338; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EA33C; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EA340; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EA344; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803EA348; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EA34C; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803EA350; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803EA354; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803EA358; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EA35C; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EA360; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EA364; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803EA368; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803EA36C; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803EA370; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803EA374; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803EA378; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803EA37C; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803EA380; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803EA384; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803EA388; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803EA38C; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803EA390; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803EA394; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803EA398; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803EA39C; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803EA3A0; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803EA3A4; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803EA3A8; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803EA3AC; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803EA3B0; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803EA3B4; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803EA3B8; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803EA3BC; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803EA3C0; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803EA3C4; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803EA3C8; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803EA3CC; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803EA3D0; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803EA3D4; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803EA3D8; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803EA3DC; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803EA3E0; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803EA3E4; // type:object size:0x1 scope:local align:4 +@1699 = .sdata:0x803EA3E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA3F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA3F8; // type:object size:0x8 scope:local align:4 +@1701 = .sdata:0x803EA400; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA408; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803EA410; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA418; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA420; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA428; // type:object size:0x8 scope:local align:4 +@1715 = .sdata:0x803EA430; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA438; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803EA440; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA448; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA450; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA458; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803EA460; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA468; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803EA470; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803EA478; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803EA47C; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803EA480; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803EA484; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803EA488; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803EA48C; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803EA490; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803EA494; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803EA498; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803EA49C; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803EA4A0; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803EA4A4; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803EA4A8; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803EA4AC; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803EA4B0; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803EA4B4; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803EA4B8; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803EA4BC; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803EA4C0; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803EA4C4; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803EA4C8; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803EA4CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EA4D0; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803EA4D8; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803EA4E0; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803EA4E8; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803EA4F0; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803EA4F8; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803EA4FC; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803EA500; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803EA504; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803EA508; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803EA50C; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803EA510; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803EA514; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803EA518; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803EA51C; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EA520; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803EA524; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803EA528; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803EA52C; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803EA530; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803EA534; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803EA538; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803EA53C; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803EA540; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803EA544; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803EA548; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803EA54C; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EA550; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EA554; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EA558; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803EA55C; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EA560; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803EA564; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EA568; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EA56C; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EA570; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803EA574; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803EA578; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EA57C; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EA580; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EA584; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EA588; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803EA58C; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EA590; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803EA594; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803EA598; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803EA59C; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803EA5A0; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EA5A4; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803EA5A8; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EA5AC; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803EA5B0; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EA5B4; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EA5B8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA5C0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA5C8; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803EA5D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA5D8; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803EA5E0; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EA5E8; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803EA5F0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA5F8; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803EA600; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA608; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA610; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA618; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA620; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803EA628; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803EA630; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803EA638; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803EA63C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803EA640; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803EA644; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803EA648; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA64C; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803EA654; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803EA660; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803EA664; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803EA668; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803EA66C; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803EA670; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803EA674; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803EA678; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803EA67C; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803EA680; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803EA684; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803EA688; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803EA68C; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803EA690; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803EA694; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803EA698; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803EA69C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EA6A0; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803EA6A8; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803EA6B0; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803EA6B8; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803EA6BC; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803EA6C0; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803EA6C4; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803EA6C8; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803EA6CC; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803EA6D0; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803EA6D8; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EA6DC; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EA6E0; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EA6E4; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EA6E8; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EA6EC; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EA6F0; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EA6F4; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EA6F8; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EA6FC; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EA700; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EA704; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EA708; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EA70C; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EA710; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EA714; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EA718; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EA71C; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803EA720; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EA724; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EA728; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EA72C; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803EA730; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EA734; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EA738; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803EA73C; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803EA740; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EA744; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EA748; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA750; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA758; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803EA760; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA768; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803EA770; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EA778; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803EA780; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803EA788; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803EA790; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA798; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803EA7A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA7A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA7B0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA7B8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA7C0; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803EA7C8; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803EA7D0; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EA7D4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EA7D8; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EA7DC; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803EA7E0; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803EA7E4; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803EA7E8; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803EA7EC; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803EA7F0; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803EA7F4; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803EA7F8; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803EA7FC; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803EA800; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803EA804; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803EA808; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803EA80C; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803EA810; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803EA814; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803EA818; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803EA820; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803EA824; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803EA828; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803EA82C; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803EA830; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803EA834; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EA838; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803EA83C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EA840; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA848; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA850; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803EA858; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803EA860; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803EA868; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803EA86C; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803EA870; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803EA874; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803EA878; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EA87C; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EA880; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803EA884; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EA888; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EA88C; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EA890; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803EA894; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EA898; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EA89C; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EA8A0; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EA8A4; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EA8A8; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EA8AC; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EA8B0; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EA8B4; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EA8B8; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EA8BC; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803EA8C0; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EA8C4; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EA8C8; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EA8CC; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EA8D0; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EA8D4; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803EA8D8; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803EA8DC; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EA8E0; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803EA8E4; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803EA8E8; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803EA8EC; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803EA8F0; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803EA8F4; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803EA8F8; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803EA8FC; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803EA900; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803EA904; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803EA908; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803EA90C; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EA910; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803EA914; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA91C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA924; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803EA92C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA934; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803EA93C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA944; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA94C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA954; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803EA95C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA964; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803EA96C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA974; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA97C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA984; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803EA98C; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803EA998; // type:object size:0x7 scope:local align:4 data:string +@3365 = .sdata:0x803EA9A0; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata:0x803EA9A4; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata:0x803EA9A8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA9AC; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803EA9B4; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803EA9C0; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803EA9C4; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803EA9C8; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803EA9CC; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803EA9D0; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803EA9D4; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803EA9D8; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803EA9DC; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803EA9E0; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803EA9E4; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803EA9E8; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803EA9EC; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803EA9F4; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803EA9F8; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803EA9FC; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803EAA00; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803EAA04; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803EAA08; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803EAA0C; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803EAA10; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803EAA14; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803EAA18; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803EAA1C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803EAA20; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803EAA24; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803EAA28; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803EAA2C; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803EAA30; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803EAA34; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803EAA38; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803EAA3C; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803EAA40; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803EAA44; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803EAA48; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803EAA4C; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803EAA50; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803EAA54; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803EAA58; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803EAA5C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803EAA60; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803EAA64; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803EAA68; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803EAA6C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803EAA70; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803EAA74; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803EAA78; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803EAA7C; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803EAA80; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803EAA84; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803EAA88; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803EAA8C; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803EAA90; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803EAA94; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803EAA98; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803EAA9C; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803EAAA0; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803EAAA4; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EAAA8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EAAAC; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803EAAB4; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803EAABC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EAAC4; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803EAACC; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803EAAD4; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803EAADC; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803EAAE4; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803EAAF0; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803EAAF8; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EAAFC; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EAB00; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803EAB04; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EAB08; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EAB0C; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EAB10; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EAB14; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EAB18; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EAB1C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EAB20; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EAB24; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EAB28; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EAB2C; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803EAB30; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EAB34; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAB3C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAB44; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803EAB4C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EAB54; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803EAB5C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAB64; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803EAB6C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAB74; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAB7C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAB84; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EAB8C; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803EAB94; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803EABA0; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803EABA8; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803EABAC; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803EABB0; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803EABB4; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803EABB8; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803EABBC; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803EABC0; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803EABC4; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803EABC8; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803EABCC; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803EABD0; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803EABD4; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EABD8; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803EABDC; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803EABE0; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EABE4; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803EABE8; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803EABEC; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EABF0; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803EABF4; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803EABF8; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EABFC; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803EAC00; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803EAC04; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803EAC08; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803EAC0C; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803EAC10; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803EAC14; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803EAC18; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803EAC1C; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803EAC20; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EAC24; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803EAC28; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAC2C; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803EAC34; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EAC3C; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803EAC44; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803EAC50; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803EAC54; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803EAC58; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803EAC5C; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803EAC60; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803EAC64; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803EAC68; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803EAC6C; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803EAC70; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803EAC74; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803EAC78; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803EAC7C; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803EAC80; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EAC84; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAC8C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAC94; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803EAC9C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EACA4; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803EACAC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EACB4; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803EACBC; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803EACC4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EACCC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EACD4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EACDC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EACE4; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803EACEC; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803EACF8; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803EAD00; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAD04; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803EAD0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EAD14; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803EAD1C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAD28; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAD30; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAD38; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803EAD40; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EAD48; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803EAD50; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EAD58; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAD60; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAD68; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAD70; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EAD78; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803EAD80; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803EAD88; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803EAD90; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803EAD94; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803EAD98; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EAD9C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EADA4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EADAC; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803EADB4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EADBC; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803EADC4; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803EADCC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EADD4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EADDC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EADE4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EADEC; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803EADF4; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAE00; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803EAE08; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803EAE10; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803EAE14; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803EAE18; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EAE1C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAE24; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAE2C; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803EAE34; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EAE3C; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803EAE44; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803EAE4C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAE54; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAE5C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAE64; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EAE6C; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803EAE74; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803EAE80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAE84; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803EAE8C; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803EAE98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EAEA0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAEA8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAEB0; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803EAEB8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EAEC0; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803EAEC8; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803EAED0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAED8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAEE0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAEE8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EAEF0; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803EAEF8; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803EAF00; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803EAF08; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803EAF0C; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803EAF10; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803EAF14; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAF18; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803EAF20; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EAF28; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803EAF30; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803EAF38; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803EAF3C; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803EAF40; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803EAF44; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803EAF48; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803EAF4C; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803EAF50; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803EAF54; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803EAF58; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803EAF5C; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803EAF60; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803EAF64; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803EAF68; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803EAF6C; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803EAF70; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803EAF74; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803EAF78; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803EAF7C; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803EAF80; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803EAF84; // type:object size:0x4 scope:local align:4 +@969 = .sdata:0x803EAF88; // type:object size:0x7 scope:local align:4 data:string +@1113 = .sdata:0x803EAF90; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata:0x803EAF94; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803EAF98; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803EAF9C; // type:object size:0x4 scope:local align:4 data:float +@1117 = .sdata:0x803EAFA0; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EAFA4; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803EAFA8; // type:object size:0x3 scope:local align:4 +@1210 = .sdata:0x803EAFAC; // type:object size:0x8 scope:local align:4 data:string +@1213 = .sdata:0x803EAFB4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAFBC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAFC4; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803EAFCC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAFD4; // type:object size:0x8 scope:local align:4 +@1218 = .sdata:0x803EAFDC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EAFE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803EAFEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803EAFF4; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803EB000; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803EB008; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803EB00C; // type:object size:0x7 scope:local align:4 data:string +@1525 = .sdata:0x803EB014; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803EB018; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803EB01C; // type:object size:0x7 scope:local align:4 data:string +@1602 = .sdata:0x803EB024; // type:object size:0x3 scope:local align:4 data:string +@1603 = .sdata:0x803EB028; // type:object size:0x3 scope:local align:4 data:string +@1604 = .sdata:0x803EB02C; // type:object size:0x2 scope:local align:4 data:string +@1605 = .sdata:0x803EB030; // type:object size:0x3 scope:local align:4 data:string +@1606 = .sdata:0x803EB034; // type:object size:0x3 scope:local align:4 data:string +@1607 = .sdata:0x803EB038; // type:object size:0x3 scope:local align:4 data:string +@1608 = .sdata:0x803EB03C; // type:object size:0x3 scope:local align:4 data:string +@1609 = .sdata:0x803EB040; // type:object size:0x3 scope:local align:4 data:string +@1610 = .sdata:0x803EB044; // type:object size:0x3 scope:local align:4 data:string +@1611 = .sdata:0x803EB048; // type:object size:0x3 scope:local align:4 data:string +@1612 = .sdata:0x803EB04C; // type:object size:0x3 scope:local align:4 data:string +@1613 = .sdata:0x803EB050; // type:object size:0x3 scope:local align:4 data:string +@1614 = .sdata:0x803EB054; // type:object size:0x3 scope:local align:4 data:string +@1615 = .sdata:0x803EB058; // type:object size:0x3 scope:local align:4 data:string +@1616 = .sdata:0x803EB05C; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803EB060; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803EB064; // type:object size:0x3 scope:local align:4 data:string +@1619 = .sdata:0x803EB068; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803EB06C; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803EB070; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803EB074; // type:object size:0x2 scope:local align:4 data:string +@1720 = .sdata:0x803EB078; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803EB07C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EB084; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB08C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB094; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB09C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EB0A4; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803EB0B0; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803EB0B8; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803EB0BC; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803EB0C4; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803EB0CC; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803EB0D4; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803EB0DC; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803EB0E4; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803EB0EC; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803EB0F4; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803EB0FC; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803EB104; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803EB10C; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803EB114; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803EB11C; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803EB124; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803EB12C; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803EB134; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803EB13C; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803EB144; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803EB14C; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803EB154; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803EB15C; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803EB164; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803EB16C; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803EB174; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803EB17C; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803EB184; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803EB18C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803EB194; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803EB19C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803EB1A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803EB1AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803EB1B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803EB1BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803EB1C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803EB1CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803EB1D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803EB1DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803EB1E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803EB1EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803EB1F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803EB1FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803EB204; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803EB20C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803EB214; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803EB21C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803EB224; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803EB22C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803EB234; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803EB23C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803EB244; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803EB24C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803EB254; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803EB25C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803EB264; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803EB26C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803EB274; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803EB27C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803EB284; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803EB28C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803EB294; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803EB29C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803EB2A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803EB2AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803EB2B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803EB2BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803EB2C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803EB2CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803EB2D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803EB2DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803EB2E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803EB2EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803EB2F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803EB2FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803EB304; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803EB30C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803EB314; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803EB31C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803EB324; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803EB32C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803EB334; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803EB33C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803EB344; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803EB34C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803EB354; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803EB35C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803EB364; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803EB36C; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803EB378; // type:object size:0x4 scope:local align:4 data:string +@1824 = .sdata:0x803EB380; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata:0x803EB384; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803EB388; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803EB38C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@1832 = .sdata:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata:0x803EB3A4; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EB3A8; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EB3AC; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803EB3B0; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803EB3B4; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803EB3B8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803EB3BC; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803EB3C0; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803EB3C4; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803EB3C8; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata:0x803EB3CC; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EB3D0; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803EB3D4; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803EB3D8; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803EB3DC; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803EB3E0; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803EB3E4; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803EB3E8; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803EB3EC; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803EB3F0; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803EB3F8; // type:object size:0x1 scope:local align:4 +@1922 = .sdata:0x803EB3FC; // type:object size:0x4 scope:local align:4 data:string +@1965 = .sdata:0x803EB400; // type:object size:0x7 scope:local align:4 data:string +@1251 = .sdata:0x803EB408; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803EB40C; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803EB410; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803EB418; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803EB420; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803EB428; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803EB42C; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EB430; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EB434; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EB438; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803EB440; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803EB448; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803EB450; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803EB458; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803EB45C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803EB460; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803EB464; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803EB468; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803EB46C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803EB470; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803EB474; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803EB478; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803EB47C; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803EB480; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803EB488; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803EB490; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803EB498; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803EB4A0; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803EB4A8; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803EB4AC; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803EB4B0; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803EB4B4; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803EB4B8; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803EB4BC; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803EB4C0; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803EB4C4; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803EB4C8; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803EB4CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB4D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB4D8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB4E0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803EB4E8; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EB4F0; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EB4F4; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EB4F8; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EB4FC; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EB500; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EB504; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EB508; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803EB50C; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803EB510; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803EB514; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803EB51C; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803EB520; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803EB524; // type:object size:0x5 scope:local align:4 data:string +@1598 = .sdata:0x803EB52C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB534; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB53C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803EB544; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803EB54C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803EB554; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803EB55C; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803EB564; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803EB56C; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803EB574; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803EB57C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803EB584; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803EB58C; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803EB594; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803EB59C; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803EB5A4; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803EB5AC; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803EB5B4; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803EB5BC; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803EB5C4; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803EB5CC; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803EB5D4; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803EB5DC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB5E4; // type:object size:0x8 scope:local align:4 +@1796 = .sdata:0x803EB5EC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB5F4; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803EB5FC; // type:object size:0x8 scope:local align:4 +@1889 = .sdata:0x803EB604; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EB60C; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803EB614; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803EB620; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803EB628; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB630; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB638; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803EB640; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB648; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803EB650; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EB658; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803EB660; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EB668; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803EB670; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB678; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB680; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803EB688; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB690; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803EB698; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EB6A0; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803EB6A8; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803EB6B0; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803EB6B4; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EB6B8; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EB6BC; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EB6C0; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EB6C4; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803EB6C8; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803EB6CC; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EB6D0; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803EB6D4; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803EB6D8; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803EB6DC; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803EB6E0; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803EB6E4; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803EB6E8; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EB6EC; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803EB6F0; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata:0x803EB6F4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803EB6F8; // type:object size:0x1 scope:local align:4 +@1631 = .sdata:0x803EB6FC; // type:object size:0x8 scope:local align:4 data:string +@1759 = .sdata:0x803EB704; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB70C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB714; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803EB71C; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803EB724; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803EB72C; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803EB734; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803EB73C; // type:object size:0x8 scope:local align:4 +@1775 = .sdata:0x803EB744; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB74C; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803EB754; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803EB760; // type:object size:0x8 scope:local align:32 +@2020 = .sdata:0x803EB768; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803EB76C; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EB780; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803EB788; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803EB790; // type:object size:0x4 scope:global align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EB794; // type:object size:0x8 scope:local align:4 +@595 = .sdata:0x803EB7A0; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803EB7A4; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803EB7A8; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803EB7AC; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803EB7B0; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803EB7B4; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803EB7B8; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803EB7BC; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803EB7C0; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803EB7C4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803EB7C8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803EB7CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EB7D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803EB7D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803EB7E0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803EB7E8; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EB7F0; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803EB7F4; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EB7F8; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EB7FC; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EB800; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EB804; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EB808; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803EB80C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803EB810; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803EB814; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803EB818; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803EB81C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803EB820; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803EB824; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EB828; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EB830; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB838; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EB840; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB848; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB850; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803EB858; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EB860; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803EB868; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803EB870; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803EB878; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EB880; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803EB888; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803EB88C; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803EB890; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803EB894; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803EB898; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803EB89C; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803EB8A0; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803EB8A4; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803EB8A8; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803EB8AC; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803EB8B0; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803EB8B4; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803EB8B8; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803EB8BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EB8C0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803EB8C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EB8D0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EB8D8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803EB8E0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB8E8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803EB8F0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803EB8F8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803EB900; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB908; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EB910; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803EB918; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB920; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EB928; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803EB930; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EB938; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803EB940; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EB948; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803EB950; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EB958; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EB960; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803EB968; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EB970; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803EB978; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EB980; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EB988; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803EB990; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803EB998; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB9A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB9A8; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803EB9B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB9B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EB9C0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803EB9C8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EB9D0; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803EB9D8; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803EB9E0; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EB9E4; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EB9E8; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803EB9EC; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EB9F0; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EB9F4; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803EB9F8; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803EB9FC; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803EBA00; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803EBA04; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EBA08; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803EBA10; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBA18; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBA20; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803EBA28; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBA30; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803EBA38; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803EBA40; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EBA48; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBA50; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EBA58; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EBA60; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803EBA68; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EBA70; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803EBA78; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EBA80; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803EBA88; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EBA90; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803EBA98; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EBAA0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803EBAA8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EBAB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803EBAB8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EBAC0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803EBAC8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EBAD0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803EBAD8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EBAE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803EBAE8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803EBAF0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBAF8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EBB00; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803EBB08; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803EBB10; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EBB18; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EBB20; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803EBB28; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EBB30; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803EBB38; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803EBB40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBB48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBB50; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803EBB58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBB60; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBB68; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803EBB70; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EBB78; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803EBB80; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBB88; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803EBB90; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803EBB98; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EBBA0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBBA8; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EBBB0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803EBBB8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803EBBC0; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803EBBC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803EBBD0; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803EBBD8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EBBE0; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EBBE8; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803EBBEC; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803EBBF0; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803EBBF4; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803EBBF8; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803EBBFC; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803EBC00; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803EBC04; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803EBC08; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803EBC0C; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803EBC10; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803EBC14; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EBC18; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803EBC1C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803EBC20; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803EBC24; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803EBC28; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata:0x803EBC2C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803EBC30; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803EBC34; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803EBC38; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803EBC3C; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803EBC40; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata:0x803EBC44; // type:object size:0x4 scope:local align:4 data:float +@3458 = .sdata:0x803EBC48; // type:object size:0x4 scope:local align:4 data:float +@3459 = .sdata:0x803EBC4C; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata:0x803EBC50; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata:0x803EBC54; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata:0x803EBC58; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata:0x803EBC5C; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata:0x803EBC60; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata:0x803EBC64; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata:0x803EBC68; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata:0x803EBC6C; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata:0x803EBC70; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata:0x803EBC74; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata:0x803EBC78; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EBC7C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBC84; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EBC8C; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EBC94; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803EBC9C; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EBCA4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EBCAC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EBCB4; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EBCBC; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803EBCC4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EBCCC; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803EBCD4; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803EBCDC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803EBCE4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803EBCEC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EBCF4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EBCFC; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EBD04; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EBD0C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803EBD14; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803EBD1C; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803EBD24; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803EBD2C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803EBD34; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EBD3C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803EBD44; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803EBD4C; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803EBD54; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EBD5C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803EBD64; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBD6C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EBD74; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803EBD7C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBD88; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBD90; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EBD98; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBDA0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBDA8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803EBDB0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803EBDB8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EBDC0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EBDC8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803EBDD0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EBDD8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803EBDE0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803EBDE8; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803EBDF0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803EBDF8; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EBE00; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EBE08; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EBE10; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EBE18; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EBE20; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EBE28; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EBE30; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803EBE38; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803EBE40; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EBE44; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803EBE48; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EBE4C; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803EBE50; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803EBE54; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803EBE58; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803EBE5C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803EBE60; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803EBE64; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803EBE68; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803EBE6C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EBE70; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBE78; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803EBE80; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EBE88; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EBE90; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBE98; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EBEA0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EBEA8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EBEB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EBEB8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803EBEC0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803EBEC8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EBED0; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EBED8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EBEE0; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EBEE8; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EBEF0; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803EBEF8; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EBF00; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803EBF04; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803EBF08; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803EBF0C; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803EBF10; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803EBF14; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803EBF18; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803EBF1C; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803EBF20; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EBF24; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803EBF28; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EBF2C; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803EBF30; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803EBF34; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EBF38; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EBF3C; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EBF40; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803EBF44; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803EBF48; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803EBF50; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EBF58; // type:object size:0x8 scope:local align:4 data:string +@668 = .sdata:0x803EBF60; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803EBF64; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata:0x803EBF68; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata:0x803EBF6C; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803EBF70; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803EBF74; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803EBF78; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803EBF7C; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803EBF80; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803EBF84; // type:object size:0x8 scope:local align:4 +@1154 = .sdata:0x803EBF90; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EBF98; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803EBFA0; // type:object size:0x8 scope:local align:4 +@882 = .sdata:0x803EBFA8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EBFB0; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803EBFB8; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803EBFC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EBFC8; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803EBFD0; // type:object size:0x8 scope:local align:4 +@731 = .sdata:0x803EBFD8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EBFE0; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803EBFE8; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803EBFF0; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803EBFF4; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803EBFF8; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803EC000; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EC008; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803EC00C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803EC010; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC018; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC020; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC028; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803EC030; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803EC038; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803EC040; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803EC048; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803EC050; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803EC058; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803EC060; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803EC068; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803EC070; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803EC078; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803EC080; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803EC088; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EC090; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EC098; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803EC0A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EC0A8; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803EC0B0; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803EC0B8; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803EC0BC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803EC0C0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803EC0C4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803EC0C8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803EC0CC; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803EC0D0; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803EC0D4; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803EC0D8; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803EC0DC; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803EC0E4; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803EC0EC; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803EC0F4; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803EC0FC; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803EC104; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC10C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC114; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC11C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803EC124; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803EC12C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803EC134; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803EC13C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EC144; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EC14C; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803EC154; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC15C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803EC168; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803EC16C; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803EC170; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803EC174; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803EC178; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC17C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC184; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC18C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803EC194; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803EC19C; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803EC1A8; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803EC1AC; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803EC1B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803EC1B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803EC1C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EC1C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EC1D0; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC1D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC1E0; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC1E8; // type:object size:0x8 scope:local align:4 +@767 = .sdata:0x803EC1F0; // type:object size:0x4 scope:local align:4 +@770 = .sdata:0x803EC1F4; // type:object size:0x4 scope:local align:4 +@1302 = .sdata:0x803EC1F8; // type:object size:0x7 scope:local align:4 data:string +@1303 = .sdata:0x803EC200; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803EC208; // type:object size:0x7 scope:local align:4 data:string +@1306 = .sdata:0x803EC210; // type:object size:0x7 scope:local align:4 data:string +@1307 = .sdata:0x803EC218; // type:object size:0x7 scope:local align:4 data:string +@1309 = .sdata:0x803EC220; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803EC228; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803EC230; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803EC238; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803EC23C; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EC240; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EC244; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EC248; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803EC24C; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803EC250; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803EC254; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803EC258; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803EC25C; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803EC260; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803EC264; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803EC268; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803EC26C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803EC270; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803EC274; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EC278; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803EC280; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803EC288; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803EC290; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EC298; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803EC29C; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EC2A0; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803EC2A4; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803EC2A8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EC2AC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EC2B0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EC2B4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803EC2B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC2BC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803EC2C4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC2CC; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC2D4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803EC2DC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC2E4; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EC2EC; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803EC2F4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803EC2FC; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC304; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EC30C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803EC314; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803EC31C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC324; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EC32C; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EC334; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803EC33C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803EC344; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EC34C; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EC354; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803EC35C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803EC364; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EC36C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803EC374; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EC37C; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803EC384; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803EC38C; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803EC394; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC39C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC3A4; // type:object size:0x8 scope:local align:4 +@3889 = .sdata:0x803EC3AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC3B4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC3BC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803EC3C4; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803EC3D0; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EC3D4; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EC3D8; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EC3DC; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EC3E0; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803EC3E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC3EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC3F4; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC3FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803EC404; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EC410; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EC414; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EC418; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EC41C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EC420; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EC424; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC428; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803EC430; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC438; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803EC440; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803EC448; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC450; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803EC458; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803EC460; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC468; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EC470; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803EC478; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803EC480; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC488; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EC490; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC498; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC4A0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803EC4A8; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803EC4B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC4B8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC4C0; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803EC4C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC4D0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC4D8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803EC4E0; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EC4E8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EC4EC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EC4F0; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EC4F4; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EC4F8; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EC4FC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC500; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803EC508; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC510; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC518; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803EC520; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803EC528; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC530; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EC538; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803EC540; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EC548; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803EC550; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC558; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC560; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC568; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803EC570; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803EC578; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC580; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC588; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803EC590; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC598; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC5A0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803EC5A8; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EC5B0; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EC5B4; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EC5B8; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EC5BC; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EC5C0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EC5C4; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803EC5C8; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803EC5CC; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803EC5D0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC5D4; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803EC5DC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC5E4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC5EC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803EC5F4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803EC5FC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC604; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EC60C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803EC614; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803EC61C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EC624; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EC62C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803EC634; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EC63C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803EC644; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803EC64C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EC654; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803EC65C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EC664; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803EC66C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803EC674; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EC67C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803EC684; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EC68C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803EC694; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC69C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC6A4; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC6AC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803EC6B4; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803EC6BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC6C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC6CC; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803EC6D4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC6DC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC6E4; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803EC6EC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EC6F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803EC700; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC708; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803EC710; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC718; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803EC720; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC728; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803EC730; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803EC738; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC740; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC748; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803EC750; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803EC758; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC760; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC768; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803EC770; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC778; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC780; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803EC788; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EC790; // type:object size:0x4 scope:local align:4 +@1854 = .sdata:0x803EC794; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803EC798; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803EC79C; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803EC7A0; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803EC7A4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803EC7A8; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803EC7AC; // type:object size:0x4 scope:local align:4 data:float +@2444 = .sdata:0x803EC7B0; // type:object size:0x4 scope:local align:4 data:float +@2447 = .sdata:0x803EC7B4; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803EC7B8; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803EC7BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC7C0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803EC7C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC7D0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC7D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803EC7E0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC7E8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803EC7F0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803EC7F8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC800; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EC808; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803EC810; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803EC818; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803EC820; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EC828; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803EC830; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EC838; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803EC840; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC848; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EC850; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803EC858; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EC860; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803EC868; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC870; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803EC878; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EC880; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803EC888; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803EC890; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803EC898; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC8A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC8A8; // type:object size:0x8 scope:local align:4 +@3573 = .sdata:0x803EC8B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC8B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC8C0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803EC8C8; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803EC8D0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC8D4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803EC8DC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC8E4; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC8EC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803EC8F4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC8FC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC904; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803EC90C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC914; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803EC91C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803EC924; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803EC92C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC934; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC93C; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803EC944; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC94C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC954; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803EC95C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EC964; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803EC96C; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803EC978; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803EC97C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EC984; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EC990; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803EC998; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC9A0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC9A8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803EC9B0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC9B8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC9C0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803EC9C8; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803EC9D0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC9D8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803EC9E0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803EC9E8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803EC9F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803EC9F8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803ECA00; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803ECA08; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803ECA10; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803ECA18; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803ECA20; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803ECA28; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803ECA30; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803ECA38; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803ECA40; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803ECA48; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803ECA50; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803ECA58; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803ECA60; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803ECA68; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803ECA70; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803ECA78; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803ECA80; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803ECA88; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803ECA90; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803ECA98; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803ECAA0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803ECAA8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803ECAB0; // type:object size:0x8 scope:local align:4 +@3760 = .sdata:0x803ECAB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECAC0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECAC8; // type:object size:0x8 scope:local align:4 +@3763 = .sdata:0x803ECAD0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECAD8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECAE0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803ECAE8; // type:object size:0x8 scope:local align:4 +@920 = .sdata:0x803ECAF0; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803ECAF8; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803ECB00; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803ECB08; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803ECB0C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803ECB10; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803ECB14; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803ECB18; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803ECB1C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803ECB20; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803ECB24; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803ECB28; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803ECB2C; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803ECB30; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803ECB34; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803ECB38; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803ECB3C; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803ECB40; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803ECB44; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803ECB48; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803ECB4C; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803ECB50; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803ECB54; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803ECB58; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803ECB5C; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803ECB60; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803ECB64; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803ECB68; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803ECB6C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803ECB70; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803ECB74; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803ECB78; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803ECB7C; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803ECB80; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803ECB84; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803ECB88; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803ECB8C; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803ECB90; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803ECB94; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803ECB98; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803ECB9C; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803ECBA0; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803ECBA4; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803ECBA8; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803ECBAC; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803ECBB0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803ECBB4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803ECBB8; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803ECBBC; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803ECBC0; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803ECBC4; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803ECBC8; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803ECBCC; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803ECBD0; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803ECBD4; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803ECBD8; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803ECBDC; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803ECBE0; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803ECBE4; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803ECBE8; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803ECBEC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803ECBF0; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803ECBF4; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803ECBF8; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803ECBFC; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803ECC00; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803ECC04; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803ECC08; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803ECC0C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803ECC10; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803ECC14; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803ECC18; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803ECC1C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803ECC20; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803ECC24; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803ECC28; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803ECC2C; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803ECC30; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803ECC34; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803ECC38; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803ECC3C; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803ECC40; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803ECC44; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803ECC48; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803ECC4C; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803ECC50; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803ECC54; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803ECC58; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803ECC5C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803ECC60; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803ECC64; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803ECC68; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803ECC6C; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803ECC70; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803ECC74; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803ECC78; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803ECC7C; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803ECC80; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803ECC84; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803ECC88; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803ECC8C; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803ECC90; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803ECC94; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803ECC98; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803ECCA0; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803ECCA8; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803ECCB0; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803ECCB8; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803ECCC0; // type:object size:0x7 scope:local align:4 data:string +@2819 = .sdata:0x803ECCC8; // type:object size:0x7 scope:local align:4 data:string +@2821 = .sdata:0x803ECCD0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803ECCD8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803ECCE0; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECCE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECCF0; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECCF8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803ECD00; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803ECD08; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803ECD10; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803ECD18; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ECD20; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803ECD28; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803ECD2C; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803ECD30; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803ECD34; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803ECD38; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803ECD40; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803ECD44; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803ECD48; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803ECD4C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803ECD50; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803ECD54; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ECD58; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803ECD60; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECD68; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ECD70; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803ECD78; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECD80; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ECD88; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803ECD90; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803ECD98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECDA0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECDA8; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803ECDB0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECDB8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECDC0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803ECDC8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803ECDD0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803ECDD8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECDE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ECDE8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803ECDF0; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803ECDF8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803ECE00; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803ECE08; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803ECE10; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803ECE18; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803ECE20; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECE28; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ECE30; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803ECE38; // type:object size:0x8 scope:local align:4 +@2667 = .sdata:0x803ECE40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECE48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ECE50; // type:object size:0x8 scope:local align:4 +@2670 = .sdata:0x803ECE58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ECE60; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ECE68; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803ECE70; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803ECE78; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803ECE7C; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803ECE80; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803ECE84; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803ECE88; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803ECE8C; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803ECE90; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803ECE94; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803ECE98; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803ECE9C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803ECEA0; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803ECEA4; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803ECEA8; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803ECEB0; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803ECEB4; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803ECEB8; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803ECEBC; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803ECEC0; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803ECEC4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803ECEC8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803ECECC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803ECED0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803ECED4; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803ECED8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803ECEDC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803ECEE0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803ECEE4; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803ECEE8; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803ECEEC; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803ECEF0; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803ECEF4; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803ECEF8; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803ECEFC; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803ECF00; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803ECF04; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803ECF08; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803ECF0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803ECF10; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803ECF18; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803ECF20; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803ECF28; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803ECF30; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803ECF34; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803ECF3C; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803ECF44; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803ECF4C; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803ECF54; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803ECF58; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803ECF60; // type:object size:0x6 scope:local align:4 data:string +@1277 = .sdata:0x803ECF68; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803ECF6C; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803ECF70; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803ECF74; // type:object size:0x4 scope:local align:4 data:float +@1289 = .sdata:0x803ECF78; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803ECF7C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803ECF84; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803ECF8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803ECF94; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803ECF9C; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECFA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECFAC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECFB4; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803ECFC0; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803ECFC8; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803ECFD0; // type:object size:0x7 scope:local align:4 data:string +@771 = .sdata:0x803ECFD8; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803ECFE0; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803ECFE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803ECFEC; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803ECFF8; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803ED000; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803ED008; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803ED010; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803ED018; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803ED020; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803ED028; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803ED030; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803ED038; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803ED040; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803ED048; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803ED050; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803ED058; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803ED060; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803ED068; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803ED070; // type:object size:0x4 scope:local align:4 data:4byte +@31 = .sdata:0x803ED078; // type:object size:0x2 scope:local align:4 data:string +fontEncode$55 = .sdata:0x803ED080; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803ED088; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803ED090; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803ED098; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803ED0A0; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803ED0A8; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803ED0B0; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803ED0B4; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803ED0B8; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803ED0C0; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803ED0C8; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803ED0CC; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803ED0D0; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803ED0D4; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803ED0D8; // type:object size:0x4 scope:local align:4 data:4byte +cmdReadOrigin = .sdata:0x803ED0DC; // type:object size:0x4 scope:local align:4 +cmdCalibrate = .sdata:0x803ED0E0; // type:object size:0x4 scope:local align:4 +@413 = .sdata:0x803ED0E4; // type:object size:0x6 scope:local align:4 data:string +Chan = .sdata:0x803ED0F0; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803ED0F8; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$208 = .sdata:0x803ED100; // type:object size:0x4 scope:local align:4 +tbl2$209 = .sdata:0x803ED104; // type:object size:0x4 scope:local align:4 +tbl3$210 = .sdata:0x803ED108; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803ED110; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803ED118; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803ED120; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803ED128; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803ED130; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803ED138; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803ED140; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803ED148; // type:object size:0x6 scope:local align:4 +fragmentID = .sdata:0x803ED150; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803ED158; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803ED160; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803ED168; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803ED170; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803ED174; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803ED178; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803ED180; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803ED188; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803ED1A0; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803ED1A4; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803ED1A8; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803ED1AC; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803ED1B0; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803ED1B4; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803ED1B8; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803ED1BC; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803ED1C0; // type:object size:0x1 scope:local align:1 data:byte +dacp$240 = .sbss:0x803ED1C4; // type:object size:0x4 scope:local align:4 data:4byte +init$241 = .sbss:0x803ED1C8; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803ED1D0; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803ED1D4; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803ED1D8; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803ED1DC; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803ED1E0; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803ED1E4; // type:object size:0x4 scope:local align:4 data:4byte +first$70 = .sbss:0x803ED1E8; // type:object size:0x4 scope:local align:4 data:4byte +init$71 = .sbss:0x803ED1EC; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803ED1F0; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803ED1F4; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803ED1F8; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803ED1FC; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803ED200; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803ED201; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803ED202; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803ED204; // type:object size:0x4 scope:local align:4 data:4byte +cur$194 = .sbss:0x803ED208; // type:object size:0x4 scope:local align:4 data:4byte +init$195 = .sbss:0x803ED20C; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803ED210; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803ED211; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803ED212; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803ED218; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803ED21C; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803ED220; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803ED224; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803ED228; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803ED22C; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803ED230; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803ED234; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803ED23C; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803ED240; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803ED244; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803ED24C; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803ED250; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$223 = .sbss:0x803ED254; // type:object size:0x4 scope:local align:4 data:4byte +init$224 = .sbss:0x803ED258; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803ED25C; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803ED260; // type:object size:0x4 scope:global align:4 data:4byte +TASK_READPTR = .sbss:0x803ED268; // type:object size:0x1 scope:local align:1 data:byte +TASK_WRITEPTR = .sbss:0x803ED269; // type:object size:0x1 scope:local align:1 data:byte +TASK_REMAIN = .sbss:0x803ED26A; // type:object size:0x1 scope:local align:1 data:byte +cur_waits = .sbss:0x803ED270; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803ED274; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803ED278; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803ED280; // type:object size:0x4 scope:local align:4 data:4byte +inited$64 = .sbss:0x803ED288; // type:object size:0x4 scope:local align:4 data:4byte +init$65 = .sbss:0x803ED28C; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803ED290; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803ED294; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803ED298; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803ED2A0; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803ED2A8; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803ED2B0; // type:object size:0x4 scope:local align:4 data:4byte +first$164 = .sbss:0x803ED2B4; // type:object size:0x4 scope:local align:4 data:4byte +init$165 = .sbss:0x803ED2B8; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803ED2C0; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803ED2C8; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803ED2CC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803ED2D0; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803ED2D4; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803ED2D8; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803ED2DC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803ED2E0; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803ED2E8; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803ED2EC; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803ED2F0; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803ED2F4; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803ED2F8; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803ED2FC; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803ED300; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803ED304; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803ED308; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803ED30C; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803ED310; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803ED318; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803ED320; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803ED324; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803ED328; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803ED330; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803ED334; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803ED338; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803ED339; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803ED33A; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803ED33C; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803ED340; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803ED344; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803ED348; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803ED34C; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803ED34D; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803ED350; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803ED354; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803ED358; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803ED35C; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803ED35E; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803ED360; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803ED362; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803ED364; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803ED366; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803ED368; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803ED36C; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803ED370; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803ED374; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803ED378; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803ED37C; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803ED380; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803ED384; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803ED388; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803ED38C; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803ED390; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803ED398; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803ED39C; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803ED3A0; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803ED3A4; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803ED3A8; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803ED3AC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803ED3B0; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803ED3B4; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803ED3B8; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803ED3BC; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803ED3C0; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803ED3C4; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803ED3C8; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803ED3D0; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803ED3D4; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803ED3D8; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803ED3DC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803ED3E0; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803ED3E4; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803ED3E8; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803ED3EC; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803ED3ED; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803ED3EE; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803ED3F0; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803ED3F8; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803ED400; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803ED408; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803ED40C; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803ED410; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803ED414; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803ED418; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803ED41C; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803ED420; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803ED424; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803ED428; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803ED42C; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803ED434; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803ED438; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803ED43C; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803ED440; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803ED444; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803ED448; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803ED44C; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803ED450; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803ED454; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803ED458; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803ED460; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803ED464; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803ED468; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803ED46C; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803ED470; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803ED478; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803ED480; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803ED488; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803ED48C; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803ED490; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803ED494; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803ED498; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803ED49C; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803ED4A0; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803ED4A4; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803ED4A8; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803ED4AC; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803ED4B0; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803ED4B4; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803ED4B8; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803ED4BC; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803ED4C0; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803ED4C4; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803ED4C8; // type:object size:0x4 scope:local align:4 data:4byte +gfx__11DGXGraphics = .sbss:0x803ED4CC; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803ED4D0; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803ED4D1; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803ED4D2; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803ED4D8; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803ED4DC; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803ED4E0; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803ED4E8; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803ED4EC; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803ED4F0; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803ED4F4; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803ED4F8; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803ED4FC; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803ED500; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803ED504; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803ED508; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803ED50C; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803ED510; // type:object size:0x4 scope:local align:4 data:4byte +memcardWindow = .sbss:0x803ED514; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803ED518; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803ED519; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803ED51A; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803ED51C; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803ED520; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803ED524; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803ED525; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803ED528; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803ED530; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803ED534; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803ED538; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803ED53C; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803ED540; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803ED544; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803ED548; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803ED550; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803ED554; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803ED558; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803ED55C; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803ED560; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803ED564; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED568; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED56C; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED570; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED574; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED578; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED57C; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED580; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED584; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED588; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ED58C; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803ED590; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803ED598; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803ED59C; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803ED5A0; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803ED5A4; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803ED5A8; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803ED5B0; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803ED5B2; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803ED5B4; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803ED5B8; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803ED5C0; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803ED5C8; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803ED5CC; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803ED5D0; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803ED5D4; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803ED5D8; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803ED5DC; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803ED5E0; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803ED5E8; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803ED5EC; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803ED5F0; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803ED5F4; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803ED5F8; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803ED5FC; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803ED600; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803ED604; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803ED608; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803ED610; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803ED618; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803ED620; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803ED624; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803ED628; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803ED630; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803ED638; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803ED639; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803ED63C; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803ED640; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803ED641; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803ED642; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803ED643; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803ED644; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803ED648; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803ED64C; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803ED650; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803ED654; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803ED658; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803ED65C; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803ED660; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803ED664; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803ED668; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803ED66C; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803ED670; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803ED674; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803ED678; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803ED67C; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803ED680; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803ED688; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803ED68C; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803ED690; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803ED698; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803ED6A0; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803ED6A4; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803ED6A8; // type:object size:0x1 scope:global align:1 data:byte +count$1860 = .sbss:0x803ED6AC; // type:object size:0x4 scope:local align:4 data:4byte +init$1861 = .sbss:0x803ED6B0; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803ED6B4; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803ED6B8; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803ED6C0; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803ED6C4; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803ED6C8; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803ED6D0; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803ED6D8; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803ED6DC; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803ED6E0; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803ED6E4; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803ED6E8; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803ED6F0; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803ED6F8; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803ED700; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803ED704; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803ED705; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803ED706; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803ED707; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803ED708; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803ED70C; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803ED710; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803ED714; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803ED718; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803ED71C; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803ED720; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803ED724; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803ED728; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803ED72C; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803ED730; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803ED738; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803ED740; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803ED744; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803ED748; // type:object size:0x4 scope:local align:4 data:float +ang$5660 = .sbss:0x803ED74C; // type:object size:0x4 scope:local align:4 data:float +init$5661 = .sbss:0x803ED750; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803ED758; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803ED759; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803ED75C; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803ED760; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803ED764; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803ED768; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803ED76C; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803ED770; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803ED774; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803ED778; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803ED77C; // type:object size:0x4 scope:global align:4 data:4byte +timer$4151 = .sbss:0x803ED780; // type:object size:0x4 scope:local align:4 data:4byte +init$4152 = .sbss:0x803ED784; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803ED788; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803ED78C; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803ED790; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803ED794; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803ED798; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803ED79C; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803ED7A0; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803ED7A8; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803ED7AC; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803ED7B0; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803ED7B8; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803ED7C0; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803ED7C4; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803ED7C5; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803ED7C8; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803ED7D0; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803ED7D8; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803ED7E0; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803ED7E8; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803ED7F0; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803ED7F8; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803ED800; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803ED808; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803ED80C; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803ED810; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803ED818; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803ED820; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803ED828; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803ED82C; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803ED830; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803ED834; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803ED838; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803ED840; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803ED844; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803ED848; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803ED850; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803ED858; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803ED860; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803ED864; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803ED868; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803ED86C; // type:object size:0x4 scope:local align:4 data:4byte +AlarmQueue = .sbss:0x803ED870; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803ED878; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803ED87C; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803ED880; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803ED884; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803ED888; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803ED890; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803ED898; // type:object size:0x4 scope:global align:4 data:4byte +ResetFunctionQueue = .sbss:0x803ED8A0; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803ED8A8; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803ED8AC; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803ED8B0; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803ED8B8; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803ED8C0; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x803ED8C8; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803ED8CC; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803ED8D0; // type:object size:0x4 scope:local align:4 data:4byte +serEnabled = .sbss:0x803ED8D8; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803ED8E0; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803ED8E4; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803ED8E8; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803ED8EC; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803ED8F0; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803ED8F4; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803ED8F8; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803ED900; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803ED904; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803ED908; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803ED90C; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803ED910; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803ED918; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803ED920; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803ED928; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803ED92C; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803ED930; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803ED934; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803ED938; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803ED93C; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803ED940; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803ED944; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803ED948; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803ED950; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803ED954; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803ED958; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803ED95C; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803ED960; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803ED964; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803ED968; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803ED96C; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803ED970; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803ED974; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803ED978; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803ED97C; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803ED980; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803ED984; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803ED988; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803ED98C; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803ED990; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803ED994; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803ED998; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803ED99C; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803ED9A0; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803ED9A8; // type:object size:0x4 scope:local align:4 data:4byte +changeMode = .sbss:0x803ED9AC; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803ED9B0; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803ED9B4; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803ED9BC; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803ED9C0; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803ED9C4; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803ED9C8; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803ED9CA; // type:object size:0x2 scope:local align:2 data:2byte +changed = .sbss:0x803ED9D0; // type:object size:0x8 scope:local align:8 data:4byte +shdwChanged = .sbss:0x803ED9D8; // type:object size:0x8 scope:local align:8 data:4byte +FBSet = .sbss:0x803ED9E0; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803ED9E8; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803ED9EC; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803ED9F0; // type:object size:0x4 scope:local align:4 data:4byte +ProbingBits = .sbss:0x803ED9F4; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803ED9F8; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803ED9FC; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803EDA00; // type:object size:0x4 scope:local align:4 data:4byte +cmdTypeAndStatus = .sbss:0x803EDA04; // type:object size:0x4 scope:local align:4 +recalibrated$595 = .sbss:0x803EDA08; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803EDA0C; // type:object size:0x4 scope:global align:4 data:4byte +__PADFixBits = .sbss:0x803EDA10; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803EDA18; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803EDA1C; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803EDA20; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803EDA24; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803EDA28; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803EDA30; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803EDA38; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803EDA40; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803EDA48; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803EDA50; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803EDA58; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803EDA5C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803EDA60; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803EDA64; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803EDA68; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803EDA6C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803EDA70; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803EDA74; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803EDA78; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803EDA7C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803EDA80; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803EDA84; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803EDA88; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803EDA8C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803EDA90; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803EDA94; // type:object size:0x4 scope:local align:4 data:4byte +__CARDDiskID = .sbss:0x803EDA98; // type:object size:0x4 scope:global align:4 data:4byte +ExiCallback = .sbss:0x803EDAA0; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803EDAA4; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803EDAA8; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803EDAB0; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803EDAB4; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803EDAB8; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803EDABC; // type:object size:0x4 scope:global align:4 data:4byte +__GXCurrentThread = .sbss:0x803EDAC0; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803EDAC4; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803EDAC8; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803EDACC; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803EDAD0; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803EDAD4; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803EDAD8; // type:object size:0x4 scope:global align:4 data:4byte +TokenCB = .sbss:0x803EDAE0; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803EDAE4; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803EDAE8; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803EDAEC; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803EDAF8; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803EDB00; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803EDB08; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803EDB0C; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803EDB10; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803EDB14; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803EDB18; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803EDB20; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803EDB28; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803EDB30; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803EDB34; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803EDB38; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803EDB40; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803EDB44; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803EDB48; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803EDB4C; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803EDB50; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803EDB54; // type:object size:0x1 scope:local align:1 data:byte +@225 = .sdata2:0x803EDB60; // type:object size:0x7 scope:local align:4 data:string +@226 = .sdata2:0x803EDB68; // type:object size:0x7 scope:local align:4 data:string +@103 = .sdata2:0x803EDB70; // type:object size:0x8 scope:local align:4 data:string +@32 = .sdata2:0x803EDB78; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x803EDB80; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x803EDB88; // type:object size:0x7 scope:local align:4 data:string +@79 = .sdata2:0x803EDB90; // type:object size:0x4 scope:local align:4 data:float +@52 = .sdata2:0x803EDB98; // type:object size:0x4 scope:local align:4 data:float +@202 = .sdata2:0x803EDB9C; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803EDBA0; // type:object size:0x4 scope:local align:4 data:float +@216 = .sdata2:0x803EDBA4; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x803EDBA8; // type:object size:0x4 scope:local align:4 data:float +@346 = .sdata2:0x803EDBB0; // type:object size:0x8 scope:local align:8 data:double +@262 = .sdata2:0x803EDBB8; // type:object size:0x4 scope:local align:4 data:float +@264 = .sdata2:0x803EDBC0; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x803EDBC8; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803EDBCC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803EDBD0; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x803EDBD8; // type:object size:0x8 scope:local align:8 data:double +@196 = .sdata2:0x803EDBE0; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803EDBE4; // type:object size:0x4 scope:local align:4 data:float +@198 = .sdata2:0x803EDBE8; // type:object size:0x4 scope:local align:4 data:float +@199 = .sdata2:0x803EDBEC; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803EDBF0; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803EDBF8; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803EDC00; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803EDC08; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803EDC10; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EDC18; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803EDC1C; // type:object size:0x4 scope:local align:4 data:float +@124 = .sdata2:0x803EDC20; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803EDC28; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803EDC30; // type:object size:0x2 scope:local align:4 data:string +@116 = .sdata2:0x803EDC38; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803EDC3C; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x803EDC40; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EDC48; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x803EDC50; // type:object size:0x4 scope:local align:4 data:float +@147 = .sdata2:0x803EDC54; // type:object size:0x4 scope:local align:4 data:float +@148 = .sdata2:0x803EDC58; // type:object size:0x4 scope:local align:4 data:float +@523 = .sdata2:0x803EDC5C; // type:object size:0x4 scope:local align:4 data:float +@577 = .sdata2:0x803EDC60; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803EDC64; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803EDC68; // type:object size:0x4 scope:local align:4 data:float +@1007 = .sdata2:0x803EDC6C; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803EDC70; // type:object size:0x7 scope:local align:4 data:4byte +@1020 = .sdata2:0x803EDC78; // type:object size:0x7 scope:local align:4 data:4byte +@146 = .sdata2:0x803EDC80; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803EDC88; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803EDC8C; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803EDC90; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803EDC98; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803EDC9C; // type:object size:0x4 scope:local align:4 data:float +@72 = .sdata2:0x803EDCA0; // type:object size:0x4 scope:local align:4 data:float +@73 = .sdata2:0x803EDCA4; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803EDCA8; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803EDCB0; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EDCB8; // type:object size:0x4 scope:local align:4 data:float +@65 = .sdata2:0x803EDCBC; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803EDCC0; // type:object size:0x4 scope:local align:4 data:float +@310 = .sdata2:0x803EDCC8; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x803EDCD0; // type:object size:0x4 scope:local align:4 data:float +@549 = .sdata2:0x803EDCD8; // type:object size:0x8 scope:local align:8 data:double +@561 = .sdata2:0x803EDCE0; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803EDCE8; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803EDCEC; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803EDCF0; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803EDCF4; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803EDCF8; // type:object size:0x4 scope:local align:4 data:float +@130 = .sdata2:0x803EDCFC; // type:object size:0x4 scope:local align:4 data:float +@131 = .sdata2:0x803EDD00; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803EDD04; // type:object size:0x4 scope:local align:4 data:float +@133 = .sdata2:0x803EDD08; // type:object size:0x4 scope:local align:4 data:float +@134 = .sdata2:0x803EDD0C; // type:object size:0x4 scope:local align:4 data:float +@135 = .sdata2:0x803EDD10; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803EDD18; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803EDD20; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803EDD24; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803EDD28; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803EDD30; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803EDD34; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803EDD38; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803EDD40; // type:object size:0x4 scope:local align:4 data:float +@319 = .sdata2:0x803EDD48; // type:object size:0x4 scope:local align:4 data:float +@320 = .sdata2:0x803EDD4C; // type:object size:0x4 scope:local align:4 data:float +@321 = .sdata2:0x803EDD50; // type:object size:0x4 scope:local align:4 data:float +@392 = .sdata2:0x803EDD54; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803EDD58; // type:object size:0x4 scope:local align:4 data:float +@79 = .sdata2:0x803EDD60; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803EDD68; // type:object size:0x4 scope:local align:4 data:float +@311 = .sdata2:0x803EDD6C; // type:object size:0x4 scope:local align:4 data:float +@313 = .sdata2:0x803EDD70; // type:object size:0x8 scope:local align:8 data:double +@502 = .sdata2:0x803EDD78; // type:object size:0x4 scope:local align:4 data:float +@307 = .sdata2:0x803EDD80; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803EDD88; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803EDD8C; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EDD90; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803EDD98; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803EDD9C; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803EDDA0; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803EDDA4; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803EDDA8; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EDDAC; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803EDDB0; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EDDB8; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803EDDC0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803EDDC4; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x803EDDC8; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803EDDD0; // type:object size:0x8 scope:local align:8 data:double +@1659 = .sdata2:0x803EDDD8; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803EDDDC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EDDE0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EDDE4; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803EDDE8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EDDF0; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EDDF4; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803EDDF8; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803EDDFC; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EDE00; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803EDE04; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803EDE08; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803EDE0C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803EDE10; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803EDE14; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803EDE18; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803EDE1C; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803EDE20; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803EDE24; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803EDE28; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803EDE2C; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803EDE30; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803EDE34; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803EDE38; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803EDE3C; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EDE40; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803EDE44; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EDE48; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EDE4C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EDE50; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EDE54; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EDE58; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803EDE5C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803EDE60; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803EDE64; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803EDE68; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803EDE6C; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803EDE70; // type:object size:0x4 scope:local align:4 data:float +@2478 = .sdata2:0x803EDE74; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata2:0x803EDE78; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x803EDE7C; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x803EDE80; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x803EDE84; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x803EDE88; // type:object size:0x8 scope:local align:8 data:double +@3582 = .sdata2:0x803EDE90; // type:object size:0x8 scope:local align:8 data:double +@4427 = .sdata2:0x803EDE98; // type:object size:0x8 scope:local align:4 data:4byte +@4492 = .sdata2:0x803EDEA0; // type:object size:0x8 scope:local align:8 data:double +@4493 = .sdata2:0x803EDEA8; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EDEB0; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803EDEB8; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EDEC0; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803EDEC8; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803EDED0; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803EDED4; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803EDED8; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803EDEDC; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803EDEE0; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EDEE4; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803EDEE8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803EDEEC; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EDEF0; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803EDEF8; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803EDF00; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803EDF04; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803EDF08; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EDF0C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EDF10; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EDF18; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803EDF20; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803EDF28; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803EDF30; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803EDF38; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803EDF3C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803EDF40; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803EDF44; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803EDF48; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803EDF50; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803EDF54; // type:object size:0x4 scope:local align:4 data:float +@414 = .sdata2:0x803EDF58; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803EDF60; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803EDF68; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803EDF6C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803EDF70; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803EDF74; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803EDF78; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803EDF80; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803EDF88; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803EDF8C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EDF90; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803EDF98; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803EDFA0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803EDFA4; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803EDFA8; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EDFAC; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EDFB0; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803EDFB8; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803EDFC0; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata2:0x803EDFC8; // type:object size:0x8 scope:local align:8 data:double +@695 = .sdata2:0x803EDFD0; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x803EDFD8; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EDFDC; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EDFE0; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EDFE8; // type:object size:0x8 scope:local align:8 data:double +@723 = .sdata2:0x803EDFF0; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EDFF8; // type:object size:0x8 scope:local align:8 data:double +@726 = .sdata2:0x803EE000; // type:object size:0x4 scope:local align:4 data:float +@727 = .sdata2:0x803EE004; // type:object size:0x4 scope:local align:4 data:float +@874 = .sdata2:0x803EE008; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803EE00C; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EE010; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata2:0x803EE014; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803EE018; // type:object size:0x8 scope:local align:8 data:double +@1304 = .sdata2:0x803EE020; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803EE028; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EE02C; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803EE030; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803EE034; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EE038; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803EE03C; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803EE040; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803EE044; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803EE048; // type:object size:0x8 scope:local align:8 data:double +@1262 = .sdata2:0x803EE050; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EE058; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EE05C; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EE060; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EE064; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803EE068; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803EE070; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803EE078; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EE07C; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803EE080; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803EE084; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata2:0x803EE088; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803EE08C; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EE090; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803EE094; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata2:0x803EE098; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EE09C; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803EE0A0; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x803EE0A4; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x803EE0A8; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x803EE0AC; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EE0B0; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EE0B8; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EE0BC; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803EE0C0; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803EE0C4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803EE0C8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803EE0CC; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata2:0x803EE0D0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EE0D8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EE0DC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EE0E0; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EE0E4; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EE0E8; // type:object size:0x4 scope:local align:4 data:float +@2281 = .sdata2:0x803EE0EC; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803EE0F0; // type:object size:0x4 scope:local align:4 data:float +@2283 = .sdata2:0x803EE0F4; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EE0F8; // type:object size:0x4 scope:local align:4 data:float +@2425 = .sdata2:0x803EE0FC; // type:object size:0x4 scope:local align:4 data:float +@2991 = .sdata2:0x803EE100; // type:object size:0x4 scope:local align:4 data:float +@2992 = .sdata2:0x803EE104; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata2:0x803EE108; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata2:0x803EE10C; // type:object size:0x4 scope:local align:4 data:float +@3100 = .sdata2:0x803EE110; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata2:0x803EE114; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x803EE118; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x803EE11C; // type:object size:0x4 scope:local align:4 data:float +@3124 = .sdata2:0x803EE120; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x803EE124; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803EE128; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x803EE12C; // type:object size:0x4 scope:local align:4 data:float +@3353 = .sdata2:0x803EE130; // type:object size:0x4 scope:local align:4 data:float +@3355 = .sdata2:0x803EE138; // type:object size:0x8 scope:local align:8 data:double +@1300 = .sdata2:0x803EE140; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x803EE144; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EE148; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata2:0x803EE14C; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EE150; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803EE158; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EE160; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803EE164; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803EE168; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803EE16C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803EE170; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803EE174; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EE178; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803EE17C; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803EE180; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EE184; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803EE188; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803EE190; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803EE198; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803EE19C; // type:object size:0x4 scope:local align:4 data:float +@809 = .sdata2:0x803EE1A0; // type:object size:0x4 scope:local align:4 data:float +@873 = .sdata2:0x803EE1A4; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EE1A8; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803EE1AC; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803EE1B0; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EE1B4; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EE1B8; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EE1BC; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EE1C0; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EE1C4; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EE1C8; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EE1CC; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803EE1D0; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803EE1D4; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803EE1D8; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803EE1E0; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EE1E4; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EE1E8; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803EE1EC; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EE1F0; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803EE1F4; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803EE1F8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EE1FC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EE200; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EE204; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EE208; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EE20C; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803EE210; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803EE218; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803EE220; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803EE224; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803EE228; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803EE230; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803EE234; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EE238; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803EE23C; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EE240; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EE244; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EE248; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EE24C; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803EE250; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EE254; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EE258; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803EE260; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803EE264; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EE268; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803EE26C; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803EE270; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EE274; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EE278; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EE27C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EE280; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EE284; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EE288; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803EE28C; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803EE290; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803EE294; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803EE298; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EE29C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803EE2A0; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803EE2A4; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803EE2A8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803EE2B0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803EE2B4; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803EE2B8; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803EE2C0; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803EE2C8; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803EE2CC; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EE2D0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EE2D4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803EE2D8; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EE2DC; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803EE2E0; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803EE2E4; // type:object size:0x4 scope:local align:4 data:float +@2499 = .sdata2:0x803EE2E8; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EE2EC; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EE2F0; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x803EE2F4; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803EE2F8; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803EE2FC; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x803EE300; // type:object size:0x4 scope:local align:4 data:float +@3268 = .sdata2:0x803EE304; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803EE308; // type:object size:0x8 scope:local align:8 data:double +@3487 = .sdata2:0x803EE310; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x803EE314; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803EE318; // type:object size:0x8 scope:local align:8 data:double +@3789 = .sdata2:0x803EE320; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803EE324; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x803EE328; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x803EE32C; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x803EE330; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x803EE334; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x803EE338; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x803EE33C; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x803EE340; // type:object size:0x4 scope:local align:4 data:float +@4393 = .sdata2:0x803EE344; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x803EE348; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x803EE34C; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x803EE350; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EE358; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EE35C; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803EE360; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803EE364; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803EE368; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803EE36C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803EE370; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803EE374; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803EE378; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803EE380; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803EE388; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803EE38C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803EE390; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803EE394; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803EE398; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803EE39C; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803EE3A0; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803EE3A4; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803EE3A8; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803EE3B0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803EE3B4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EE3B8; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803EE3C0; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803EE3C8; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803EE3CC; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x803EE3D0; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803EE3D4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EE3D8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803EE3DC; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803EE3E0; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803EE3E4; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803EE3E8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EE3EC; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803EE3F0; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803EE3F8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EE3FC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EE400; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EE408; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803EE40C; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EE410; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata2:0x803EE414; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata2:0x803EE418; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EE41C; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EE420; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EE428; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803EE430; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803EE434; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803EE438; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803EE43C; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803EE440; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803EE444; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EE448; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EE450; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EE454; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EE458; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EE45C; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803EE460; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803EE468; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803EE470; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803EE478; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803EE480; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803EE484; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803EE488; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EE48C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803EE490; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803EE494; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803EE498; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EE49C; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803EE4A0; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EE4A4; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803EE4A8; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803EE4AC; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803EE4B0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EE4B4; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EE4B8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EE4C0; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EE4C4; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EE4C8; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803EE4D0; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata2:0x803EE4D4; // type:object size:0x4 scope:local align:4 data:float +@1194 = .sdata2:0x803EE4D8; // type:object size:0x4 scope:local align:4 data:float +@1196 = .sdata2:0x803EE4DC; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EE4E0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EE4E8; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata2:0x803EE4EC; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EE4F0; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EE4F4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EE4F8; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EE4FC; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EE500; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EE504; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803EE508; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EE50C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803EE510; // type:object size:0x8 scope:local align:8 data:double +@1600 = .sdata2:0x803EE518; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803EE520; // type:object size:0x8 scope:local align:8 data:double +@1602 = .sdata2:0x803EE528; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803EE530; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EE534; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EE538; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EE53C; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata2:0x803EE540; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803EE544; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EE548; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803EE54C; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803EE550; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EE554; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803EE558; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803EE55C; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata2:0x803EE560; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803EE564; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803EE568; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EE56C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803EE570; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803EE578; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803EE580; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EE584; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803EE588; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803EE58C; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803EE590; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EE594; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803EE598; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EE5A0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EE5A8; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803EE5B0; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803EE5B8; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803EE5BC; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EE5C0; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803EE5C4; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803EE5C8; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata2:0x803EE5CC; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata2:0x803EE5D0; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803EE5D8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803EE5DC; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803EE5E0; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803EE5E8; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803EE5F0; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EE5F4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EE5F8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EE5FC; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EE600; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EE604; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EE608; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803EE60C; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EE610; // type:object size:0x4 scope:local align:4 data:float +@2502 = .sdata2:0x803EE614; // type:object size:0x4 scope:local align:4 data:float +@2503 = .sdata2:0x803EE618; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x803EE61C; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x803EE620; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata2:0x803EE624; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EE628; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EE62C; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EE630; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EE638; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EE63C; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803EE640; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803EE644; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EE648; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803EE64C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803EE650; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803EE654; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803EE658; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EE65C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EE660; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EE664; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EE668; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EE66C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EE670; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EE674; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EE678; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EE680; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803EE688; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803EE68C; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803EE690; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803EE698; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EE6A0; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803EE6A8; // type:object size:0x8 scope:local align:8 data:double +@1455 = .sdata2:0x803EE6B0; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EE6B4; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803EE6B8; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata2:0x803EE6BC; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803EE6C0; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EE6C4; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803EE6C8; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata2:0x803EE6CC; // type:object size:0x4 scope:local align:4 data:float +@1062 = .sdata2:0x803EE6D0; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803EE6D4; // type:object size:0x4 scope:local align:4 data:float +@1323 = .sdata2:0x803EE6D8; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803EE6DC; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EE6E0; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EE6E4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EE6E8; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803EE6F0; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803EE6F4; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EE6F8; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EE6FC; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803EE700; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803EE704; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EE708; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803EE70C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EE710; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803EE714; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EE718; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803EE71C; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EE720; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803EE724; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EE728; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EE730; // type:object size:0x8 scope:local align:8 data:double +@1440 = .sdata2:0x803EE738; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EE73C; // type:object size:0x4 scope:local align:4 data:float +@1571 = .sdata2:0x803EE740; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EE748; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803EE750; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803EE758; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803EE760; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EE768; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803EE76C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EE770; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EE774; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata2:0x803EE778; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803EE77C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EE780; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EE784; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803EE788; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803EE78C; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803EE790; // type:object size:0x8 scope:local align:8 data:double +@2020 = .sdata2:0x803EE798; // type:object size:0x8 scope:local align:8 data:double +@2040 = .sdata2:0x803EE7A0; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EE7A8; // type:object size:0x8 scope:local align:8 data:double +@2085 = .sdata2:0x803EE7B0; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803EE7B4; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EE7B8; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EE7BC; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EE7C0; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EE7C4; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EE7C8; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EE7CC; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803EE7D0; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803EE7D4; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata2:0x803EE7D8; // type:object size:0x4 scope:local align:4 data:float +@2900 = .sdata2:0x803EE7DC; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata2:0x803EE7E0; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata2:0x803EE7E4; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803EE7E8; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803EE7EC; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803EE7F0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803EE7F4; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803EE7F8; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803EE7FC; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803EE800; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803EE804; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EE808; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EE80C; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EE810; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803EE818; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803EE820; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803EE824; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EE828; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EE830; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EE834; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803EE838; // type:object size:0x8 scope:local align:8 data:double +@1751 = .sdata2:0x803EE840; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EE844; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803EE848; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803EE850; // type:object size:0x8 scope:local align:8 data:double +@2335 = .sdata2:0x803EE858; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803EE85C; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803EE860; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803EE864; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803EE868; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata2:0x803EE86C; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata2:0x803EE870; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata2:0x803EE874; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803EE878; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata2:0x803EE87C; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803EE880; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803EE884; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EE888; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata2:0x803EE890; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EE894; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EE898; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EE8A0; // type:object size:0x8 scope:local align:8 data:double +@1329 = .sdata2:0x803EE8A8; // type:object size:0x8 scope:local align:8 data:double +@3145 = .sdata2:0x803EE8B0; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata2:0x803EE8B4; // type:object size:0x4 scope:local align:4 data:float +@3161 = .sdata2:0x803EE8B8; // type:object size:0x4 scope:local align:4 data:float +@3236 = .sdata2:0x803EE8BC; // type:object size:0x4 scope:local align:4 data:float +@3237 = .sdata2:0x803EE8C0; // type:object size:0x4 scope:local align:4 data:float +@3238 = .sdata2:0x803EE8C4; // type:object size:0x4 scope:local align:4 data:float +@3239 = .sdata2:0x803EE8C8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EE8D0; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EE8D4; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EE8D8; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803EE8DC; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803EE8E0; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803EE8E8; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EE8EC; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803EE8F0; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803EE8F8; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EE8FC; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EE900; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EE908; // type:object size:0x8 scope:local align:8 data:double +@1967 = .sdata2:0x803EE910; // type:object size:0x8 scope:local align:8 data:double +@2050 = .sdata2:0x803EE918; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803EE91C; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803EE920; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EE924; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EE928; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EE92C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EE930; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EE934; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EE938; // type:object size:0x8 scope:local align:8 data:double +@1915 = .sdata2:0x803EE940; // type:object size:0x8 scope:local align:8 data:double +@1951 = .sdata2:0x803EE948; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EE94C; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EE950; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EE954; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EE958; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EE960; // type:object size:0x8 scope:local align:8 data:double +@2102 = .sdata2:0x803EE968; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EE96C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EE970; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EE978; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803EE980; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803EE988; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EE98C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803EE990; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803EE994; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EE998; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EE99C; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EE9A0; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EE9A4; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803EE9A8; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EE9AC; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803EE9B0; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803EE9B4; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803EE9B8; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803EE9C0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803EE9C4; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EE9C8; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803EE9CC; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803EE9D0; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803EE9D4; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EE9D8; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803EE9E0; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803EE9E8; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803EE9F0; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EE9F8; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EE9FC; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EEA00; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EEA08; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803EEA10; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803EEA14; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803EEA18; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803EEA1C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803EEA20; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803EEA24; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803EEA28; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EEA2C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EEA30; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803EEA38; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803EEA40; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803EEA48; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803EEA4C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803EEA50; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EEA54; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803EEA58; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803EEA5C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EEA60; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EEA64; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EEA68; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EEA6C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EEA70; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803EEA78; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EEA7C; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803EEA80; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EEA84; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803EEA88; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EEA90; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EEA94; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EEA98; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EEAA0; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata2:0x803EEAA4; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EEAA8; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EEAAC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EEAB0; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EEAB4; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EEAB8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EEABC; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EEAC0; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803EEAC8; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803EEACC; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803EEAD0; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803EEAD4; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803EEAD8; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803EEAE0; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EEAE4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EEAE8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EEAEC; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EEAF0; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803EEAF4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EEAF8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EEAFC; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803EEB00; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803EEB04; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803EEB08; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803EEB10; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803EEB14; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EEB18; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803EEB1C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EEB20; // type:object size:0x8 scope:local align:8 data:double +@1376 = .sdata2:0x803EEB28; // type:object size:0x8 scope:local align:8 data:double +@1377 = .sdata2:0x803EEB30; // type:object size:0x8 scope:local align:8 data:double +@1378 = .sdata2:0x803EEB38; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EEB3C; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EEB40; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EEB44; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803EEB48; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803EEB4C; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803EEB50; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803EEB58; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EEB60; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803EEB68; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EEB6C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EEB70; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EEB78; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803EEB80; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803EEB84; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803EEB88; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803EEB8C; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803EEB90; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803EEB94; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EEB98; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803EEB9C; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803EEBA0; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803EEBA4; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803EEBA8; // type:object size:0x4 scope:local align:4 data:float +@2674 = .sdata2:0x803EEBAC; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803EEBB0; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803EEBB4; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata2:0x803EEBB8; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803EEBBC; // type:object size:0x4 scope:local align:4 data:float +@3293 = .sdata2:0x803EEBC0; // type:object size:0x4 scope:local align:4 data:float +@3294 = .sdata2:0x803EEBC4; // type:object size:0x4 scope:local align:4 data:float +@3295 = .sdata2:0x803EEBC8; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x803EEBCC; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x803EEBD0; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x803EEBD4; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x803EEBD8; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x803EEBDC; // type:object size:0x4 scope:local align:4 data:float +@4242 = .sdata2:0x803EEBE0; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x803EEBE4; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EEBE8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803EEBEC; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EEBF0; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EEBF4; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EEBF8; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EEBFC; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EEC00; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EEC04; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803EEC08; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EEC0C; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803EEC10; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EEC14; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EEC18; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803EEC20; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803EEC28; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803EEC2C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803EEC30; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803EEC38; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803EEC3C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EEC40; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803EEC44; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803EEC48; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803EEC50; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803EEC58; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803EEC60; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803EEC68; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EEC70; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803EEC74; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803EEC78; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EEC7C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EEC80; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EEC88; // type:object size:0x8 scope:local align:8 data:double +@2356 = .sdata2:0x803EEC90; // type:object size:0x8 scope:local align:8 data:double +@2357 = .sdata2:0x803EEC98; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803EEC9C; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803EECA0; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803EECA4; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803EECA8; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803EECAC; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803EECB0; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803EECB4; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803EECB8; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803EECBC; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803EECC0; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803EECC4; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata2:0x803EECC8; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803EECCC; // type:object size:0x4 scope:local align:4 data:float +@2371 = .sdata2:0x803EECD0; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata2:0x803EECD4; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata2:0x803EECD8; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803EECE0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EECE4; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803EECE8; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803EECEC; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803EECF0; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803EECF8; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803EED00; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EED04; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EED08; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EED0C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EED10; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EED18; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803EED20; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803EED28; // type:object size:0x8 scope:local align:8 data:double +@1435 = .sdata2:0x803EED30; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EED34; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803EED38; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803EED3C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EED40; // type:object size:0x4 scope:local align:4 data:float +@1446 = .sdata2:0x803EED44; // type:object size:0x4 scope:local align:4 data:float +@1448 = .sdata2:0x803EED48; // type:object size:0x8 scope:local align:8 data:double +@1477 = .sdata2:0x803EED50; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata2:0x803EED54; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803EED58; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803EED5C; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803EED60; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EED64; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EED68; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EED70; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803EED74; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EED78; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EED7C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EED80; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EED88; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803EED90; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803EED98; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803EEDA0; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803EEDA8; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EEDB0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803EEDB4; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803EEDB8; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EEDBC; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EEDC0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EEDC4; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EEDC8; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EEDCC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EEDD0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EEDD8; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803EEDE0; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803EEDE8; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803EEDEC; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803EEDF0; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EEDF8; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803EEDFC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EEE00; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803EEE04; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803EEE08; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EEE10; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803EEE18; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803EEE20; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803EEE28; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803EEE30; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EEE34; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EEE38; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata2:0x803EEE3C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EEE40; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EEE44; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EEE48; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EEE4C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EEE50; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EEE54; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EEE58; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803EEE60; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EEE64; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803EEE68; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EEE6C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EEE70; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EEE74; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EEE78; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EEE7C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EEE80; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803EEE88; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EEE8C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EEE90; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EEE94; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EEE98; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803EEEA0; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803EEEA4; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803EEEA8; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803EEEB0; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803EEEB8; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803EEEBC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EEEC0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EEEC4; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803EEEC8; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EEED0; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803EEED8; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803EEEE0; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EEEE4; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EEEE8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EEEEC; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EEEF0; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EEEF4; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EEEF8; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EEEFC; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EEF00; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803EEF08; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EEF0C; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EEF10; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EEF14; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EEF18; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EEF1C; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EEF20; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EEF28; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803EEF30; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803EEF34; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803EEF38; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803EEF40; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EEF44; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803EEF48; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803EEF4C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EEF50; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EEF54; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803EEF58; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EEF60; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EEF64; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EEF68; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803EEF70; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EEF74; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803EEF78; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803EEF7C; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803EEF80; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EEF84; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803EEF88; // type:object size:0x8 scope:local align:8 data:double +@1991 = .sdata2:0x803EEF90; // type:object size:0x8 scope:local align:8 data:double +@2175 = .sdata2:0x803EEF98; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata2:0x803EEF9C; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EEFA0; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803EEFA4; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata2:0x803EEFA8; // type:object size:0x4 scope:local align:4 data:float +@2581 = .sdata2:0x803EEFAC; // type:object size:0x4 scope:local align:4 data:float +@2583 = .sdata2:0x803EEFB0; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803EEFB8; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803EEFBC; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803EEFC0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EEFC4; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803EEFC8; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803EEFCC; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803EEFD0; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803EEFD8; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803EEFE0; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803EEFE4; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803EEFE8; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803EEFEC; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803EEFF0; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803EEFF4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EEFF8; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803EEFFC; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EF000; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803EF008; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803EF010; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EF018; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EF01C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EF020; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EF024; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EF028; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EF02C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EF030; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EF034; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EF038; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803EF03C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803EF040; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803EF044; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803EF048; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803EF04C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EF050; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803EF058; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EF05C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803EF060; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EF064; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EF068; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803EF06C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803EF070; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803EF078; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EF080; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EF088; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EF08C; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803EF090; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803EF094; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EF098; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803EF0A0; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803EF0A8; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EF0B0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EF0B8; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803EF0C0; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803EF0C8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EF0CC; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803EF0D0; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803EF0D4; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803EF0D8; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803EF0DC; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EF0E0; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803EF0E4; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803EF0E8; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803EF0EC; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803EF0F0; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803EF0F4; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803EF0F8; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803EF100; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EF104; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EF108; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803EF110; // type:object size:0x8 scope:local align:8 data:double +@2236 = .sdata2:0x803EF118; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803EF120; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803EF128; // type:object size:0x8 scope:local align:8 data:double +@2239 = .sdata2:0x803EF130; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803EF134; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EF138; // type:object size:0x8 scope:local align:8 data:double +@2540 = .sdata2:0x803EF140; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata2:0x803EF144; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803EF148; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803EF14C; // type:object size:0x4 scope:local align:4 data:float +@3267 = .sdata2:0x803EF150; // type:object size:0x4 scope:local align:4 data:float +@3269 = .sdata2:0x803EF154; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803EF158; // type:object size:0x4 scope:local align:4 data:float +@3332 = .sdata2:0x803EF15C; // type:object size:0x4 scope:local align:4 data:float +@3334 = .sdata2:0x803EF160; // type:object size:0x8 scope:local align:8 data:double +@3664 = .sdata2:0x803EF168; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x803EF16C; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x803EF170; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x803EF174; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803EF178; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x803EF17C; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata2:0x803EF180; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x803EF184; // type:object size:0x4 scope:local align:4 data:float +@4589 = .sdata2:0x803EF188; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x803EF18C; // type:object size:0x4 scope:local align:4 data:float +@4591 = .sdata2:0x803EF190; // type:object size:0x4 scope:local align:4 data:float +@4819 = .sdata2:0x803EF194; // type:object size:0x4 scope:local align:4 data:float +@4820 = .sdata2:0x803EF198; // type:object size:0x4 scope:local align:4 data:float +@4821 = .sdata2:0x803EF19C; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata2:0x803EF1A0; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EF1A8; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803EF1AC; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EF1B0; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803EF1B8; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EF1C0; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803EF1C4; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EF1C8; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803EF1D0; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EF1D4; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EF1D8; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EF1DC; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803EF1E0; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803EF1E4; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803EF1E8; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803EF1EC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EF1F0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EF1F4; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EF1F8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EF1FC; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EF200; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EF204; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EF208; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EF20C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF210; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EF214; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EF218; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EF21C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EF220; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EF224; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EF228; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EF22C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EF230; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EF234; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EF238; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EF23C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EF240; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EF244; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EF248; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EF24C; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EF250; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803EF254; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EF258; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EF25C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EF260; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EF264; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EF268; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EF26C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EF270; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803EF274; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EF278; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EF27C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803EF280; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803EF288; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803EF290; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803EF294; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803EF298; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803EF29C; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803EF2A0; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803EF2A4; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803EF2A8; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803EF2AC; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803EF2B0; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803EF2B8; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803EF2C0; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803EF2C8; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803EF2CC; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803EF2D0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803EF2D4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803EF2D8; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803EF2DC; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803EF2E0; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803EF2E4; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803EF2E8; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803EF2EC; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803EF2F0; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803EF2F4; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803EF2F8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803EF2FC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803EF300; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803EF304; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803EF308; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803EF30C; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803EF310; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803EF314; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803EF318; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x803EF31C; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata2:0x803EF320; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata2:0x803EF324; // type:object size:0x8 scope:local align:4 data:4byte +@5196 = .sdata2:0x803EF32C; // type:object size:0x4 scope:local align:4 data:float +@5214 = .sdata2:0x803EF330; // type:object size:0x8 scope:local align:4 data:4byte +@5228 = .sdata2:0x803EF338; // type:object size:0x8 scope:local align:4 data:4byte +@5326 = .sdata2:0x803EF340; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803EF348; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803EF34C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803EF350; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803EF354; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EF358; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EF35C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803EF360; // type:object size:0x8 scope:local align:8 data:double +@1701 = .sdata2:0x803EF368; // type:object size:0x8 scope:local align:8 data:double +@1702 = .sdata2:0x803EF370; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803EF378; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803EF37C; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata2:0x803EF380; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803EF384; // type:object size:0x4 scope:local align:4 data:float +@1836 = .sdata2:0x803EF388; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803EF38C; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EF390; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EF394; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF398; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EF39C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EF3A0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EF3A4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EF3A8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EF3AC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EF3B0; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EF3B4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EF3B8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EF3BC; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EF3C0; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata2:0x803EF3C4; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803EF3C8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803EF3CC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803EF3D0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EF3D4; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EF3D8; // type:object size:0x8 scope:local align:8 data:double +@2232 = .sdata2:0x803EF3E0; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EF3E4; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803EF3E8; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803EF3EC; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803EF3F0; // type:object size:0x4 scope:local align:4 data:float +@2678 = .sdata2:0x803EF3F4; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803EF3F8; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803EF3FC; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata2:0x803EF400; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EF408; // type:object size:0x8 scope:local align:8 data:double +@946 = .sdata2:0x803EF410; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EF414; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EF418; // type:object size:0x8 scope:local align:8 data:double +@1097 = .sdata2:0x803EF420; // type:object size:0x8 scope:local align:8 data:double +@1488 = .sdata2:0x803EF428; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803EF430; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EF434; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803EF438; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EF440; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803EF444; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803EF448; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803EF450; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803EF458; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EF45C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EF460; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EF464; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EF468; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EF470; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803EF478; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803EF480; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803EF488; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803EF48C; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EF490; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803EF494; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803EF498; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803EF49C; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803EF4A0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803EF4A8; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803EF4B0; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803EF4B4; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803EF4B8; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803EF4C0; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803EF4C8; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803EF4CC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EF4D0; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803EF4D8; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EF4DC; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EF4E0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803EF4E4; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803EF4E8; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EF4F0; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803EF4F4; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803EF4F8; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803EF4FC; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803EF500; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803EF504; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EF508; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803EF510; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803EF514; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EF518; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803EF51C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803EF520; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803EF524; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803EF528; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803EF52C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803EF530; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803EF534; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EF538; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803EF53C; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803EF540; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803EF548; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803EF550; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EF554; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EF558; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EF55C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EF560; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EF564; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803EF568; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803EF56C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803EF570; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803EF574; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EF578; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803EF580; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803EF588; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803EF58C; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803EF590; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EF594; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EF598; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803EF59C; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803EF5A0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803EF5A4; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803EF5A8; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803EF5AC; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata2:0x803EF5B0; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803EF5B8; // type:object size:0x8 scope:local align:8 data:double +@1757 = .sdata2:0x803EF5C0; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803EF5C4; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803EF5C8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EF5D0; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803EF5D8; // type:object size:0x8 scope:local align:8 data:double +@1968 = .sdata2:0x803EF5E0; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EF5E4; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EF5E8; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata2:0x803EF5EC; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EF5F0; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EF5F8; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803EF5FC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803EF600; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803EF604; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803EF608; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EF610; // type:object size:0x8 scope:local align:8 data:double +@1490 = .sdata2:0x803EF618; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803EF61C; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EF620; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803EF628; // type:object size:0x8 scope:local align:8 data:double +@1618 = .sdata2:0x803EF630; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803EF638; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EF63C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EF640; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EF648; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803EF650; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803EF658; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803EF65C; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803EF660; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803EF664; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803EF668; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803EF66C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EF670; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803EF674; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803EF678; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803EF67C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EF680; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803EF688; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803EF68C; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803EF690; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803EF694; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EF698; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EF69C; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803EF6A0; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EF6A4; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803EF6A8; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803EF6B0; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803EF6B8; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803EF6BC; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803EF6C0; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803EF6C4; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803EF6C8; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803EF6CC; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803EF6D0; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803EF6D4; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803EF6D8; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803EF6DC; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803EF6E0; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EF6E4; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EF6E8; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803EF6F0; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803EF6F4; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803EF6F8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803EF700; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803EF708; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EF70C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EF710; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EF714; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EF718; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803EF720; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EF724; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803EF728; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803EF72C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata2:0x803EF730; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803EF738; // type:object size:0x8 scope:local align:8 data:double +@2770 = .sdata2:0x803EF740; // type:object size:0x8 scope:local align:8 data:double +@2789 = .sdata2:0x803EF748; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803EF74C; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803EF750; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata2:0x803EF754; // type:object size:0x4 scope:local align:4 data:float +@3053 = .sdata2:0x803EF758; // type:object size:0x4 scope:local align:4 data:float +@3151 = .sdata2:0x803EF75C; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803EF760; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x803EF764; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803EF768; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EF76C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803EF770; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EF774; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EF778; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EF77C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803EF780; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803EF784; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803EF788; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803EF78C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803EF790; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EF798; // type:object size:0x8 scope:local align:8 data:double +@2762 = .sdata2:0x803EF7A0; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803EF7A4; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803EF7A8; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803EF7AC; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EF7B0; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EF7B8; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EF7BC; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EF7C0; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803EF7C8; // type:object size:0x8 scope:local align:8 data:double +@2215 = .sdata2:0x803EF7D0; // type:object size:0x8 scope:local align:8 data:double +@2216 = .sdata2:0x803EF7D8; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803EF7DC; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803EF7E0; // type:object size:0x4 scope:local align:4 data:float +@2710 = .sdata2:0x803EF7E4; // type:object size:0x4 scope:local align:4 data:float +@2712 = .sdata2:0x803EF7E8; // type:object size:0x4 scope:local align:4 data:float +@2714 = .sdata2:0x803EF7EC; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata2:0x803EF7F0; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803EF7F4; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata2:0x803EF7F8; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x803EF7FC; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata2:0x803EF800; // type:object size:0x4 scope:local align:4 data:float +@2726 = .sdata2:0x803EF804; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803EF808; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803EF80C; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803EF810; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803EF814; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803EF818; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803EF81C; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803EF820; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata2:0x803EF824; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata2:0x803EF828; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803EF82C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803EF830; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EF834; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EF838; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EF83C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803EF840; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803EF844; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803EF848; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata2:0x803EF84C; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803EF850; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803EF854; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803EF858; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803EF85C; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803EF860; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803EF864; // type:object size:0x8 scope:local align:4 data:4byte +@2878 = .sdata2:0x803EF86C; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x803EF870; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata2:0x803EF878; // type:object size:0x8 scope:local align:8 data:double +@3022 = .sdata2:0x803EF880; // type:object size:0x4 scope:local align:4 data:float +@3383 = .sdata2:0x803EF884; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x803EF888; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x803EF88C; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata2:0x803EF890; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x803EF894; // type:object size:0x4 scope:local align:4 data:float +@4629 = .sdata2:0x803EF898; // type:object size:0x4 scope:local align:4 data:float +@4712 = .sdata2:0x803EF89C; // type:object size:0x4 scope:local align:4 data:float +@4808 = .sdata2:0x803EF8A0; // type:object size:0x4 scope:local align:4 data:float +@4810 = .sdata2:0x803EF8A4; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata2:0x803EF8A8; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x803EF8AC; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata2:0x803EF8B0; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803EF8B4; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803EF8B8; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803EF8BC; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803EF8C0; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x803EF8C4; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x803EF8C8; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x803EF8CC; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x803EF8D0; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x803EF8D4; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata2:0x803EF8D8; // type:object size:0x4 scope:local align:4 data:float +@5725 = .sdata2:0x803EF8DC; // type:object size:0x4 scope:local align:4 data:float +@5726 = .sdata2:0x803EF8E0; // type:object size:0x4 scope:local align:4 data:float +@5727 = .sdata2:0x803EF8E4; // type:object size:0x4 scope:local align:4 data:float +@6699 = .sdata2:0x803EF8E8; // type:object size:0x4 scope:local align:4 data:float +@6700 = .sdata2:0x803EF8EC; // type:object size:0x4 scope:local align:4 data:float +@6701 = .sdata2:0x803EF8F0; // type:object size:0x4 scope:local align:4 data:float +@6702 = .sdata2:0x803EF8F4; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803EF8F8; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803EF8FC; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803EF900; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803EF904; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803EF908; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803EF90C; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803EF910; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803EF914; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803EF918; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803EF920; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803EF928; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803EF930; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803EF938; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803EF93C; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803EF940; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803EF944; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803EF948; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EF94C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803EF950; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x803EF954; // type:object size:0x4 scope:local align:4 data:float +@3444 = .sdata2:0x803EF958; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x803EF95C; // type:object size:0x4 scope:local align:4 data:float +@3446 = .sdata2:0x803EF960; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x803EF964; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x803EF968; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x803EF96C; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x803EF970; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x803EF974; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x803EF978; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x803EF97C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x803EF980; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x803EF984; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EF988; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x803EF98C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x803EF990; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x803EF994; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x803EF998; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x803EF99C; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x803EF9A0; // type:object size:0x4 scope:local align:4 data:float +@4155 = .sdata2:0x803EF9A4; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x803EF9A8; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x803EF9AC; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata2:0x803EF9B0; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata2:0x803EF9B4; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x803EF9B8; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x803EF9BC; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x803EF9C0; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x803EF9C4; // type:object size:0x4 scope:local align:4 data:float +@5686 = .sdata2:0x803EF9C8; // type:object size:0x4 scope:local align:4 data:float +@5687 = .sdata2:0x803EF9CC; // type:object size:0x4 scope:local align:4 data:float +@5766 = .sdata2:0x803EF9D0; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803EF9D8; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EF9DC; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EF9E0; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803EF9E8; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803EF9F0; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803EF9F4; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803EF9F8; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EF9FC; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803EFA00; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803EFA04; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803EFA08; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803EFA0C; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803EFA10; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803EFA18; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803EFA20; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EFA24; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803EFA28; // type:object size:0x4 scope:local align:4 data:float +@2479 = .sdata2:0x803EFA30; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata2:0x803EFA34; // type:object size:0x4 scope:local align:4 data:float +@3797 = .sdata2:0x803EFA38; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x803EFA3C; // type:object size:0x4 scope:local align:4 data:float +@3820 = .sdata2:0x803EFA40; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x803EFA48; // type:object size:0x8 scope:local align:8 data:double +@4357 = .sdata2:0x803EFA50; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EFA58; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EFA5C; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803EFA60; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EFA64; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EFA68; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EFA6C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EFA70; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EFA74; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EFA78; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EFA7C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EFA80; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EFA84; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EFA88; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EFA90; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803EFA98; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803EFAA0; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803EFAA4; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803EFAA8; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803EFAB0; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EFAB4; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EFAB8; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EFABC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803EFAC0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EFAC4; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata2:0x803EFAC8; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803EFACC; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata2:0x803EFAD0; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803EFAD8; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803EFAE0; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EFAE8; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803EFAEC; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EFAF0; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803EFAF8; // type:object size:0x8 scope:local align:8 data:double +@958 = .sdata2:0x803EFB00; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803EFB04; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EFB08; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EFB0C; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EFB10; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EFB14; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803EFB18; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803EFB1C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EFB20; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803EFB28; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EFB2C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EFB30; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EFB38; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803EFB40; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EFB48; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EFB4C; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EFB50; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EFB54; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EFB58; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EFB5C; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803EFB60; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803EFB64; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803EFB68; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EFB70; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803EFB74; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EFB78; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EFB80; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803EFB88; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803EFB90; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803EFB98; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803EFB9C; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803EFBA0; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803EFBA4; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EFBA8; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803EFBAC; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803EFBB0; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803EFBB8; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EFBC0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EFBC4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EFBC8; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803EFBD0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803EFBD8; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803EFBE0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EFBE8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EFBEC; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EFBF0; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EFBF4; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EFBF8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EFBFC; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EFC00; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EFC04; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EFC08; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EFC0C; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata2:0x803EFC10; // type:object size:0x8 scope:local align:8 data:double +@495 = .sdata2:0x803EFC18; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EFC20; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EFC24; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EFC28; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EFC2C; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EFC30; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EFC34; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EFC38; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EFC40; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803EFC48; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EFC4C; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EFC50; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803EFC54; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803EFC58; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803EFC60; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EFC64; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EFC68; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EFC6C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EFC70; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EFC74; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EFC78; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EFC7C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803EFC80; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803EFC84; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803EFC88; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EFC8C; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EFC90; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EFC94; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EFC98; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EFC9C; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EFCA0; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803EFCA8; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EFCAC; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803EFCB0; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803EFCB4; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803EFCB8; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803EFCBC; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803EFCC0; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803EFCC4; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EFCC8; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803EFCCC; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803EFCD0; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EFCD4; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EFCD8; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803EFCDC; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803EFCE0; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EFCE4; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EFCE8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EFCEC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803EFCF0; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EFCF4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EFCF8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EFCFC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EFD00; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EFD04; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EFD08; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EFD0C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EFD10; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EFD14; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EFD18; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EFD1C; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EFD20; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EFD24; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EFD28; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EFD2C; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803EFD30; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803EFD34; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EFD38; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803EFD3C; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803EFD40; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EFD48; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803EFD4C; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EFD50; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803EFD58; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EFD60; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803EFD68; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EFD6C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EFD70; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EFD78; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803EFD80; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EFD84; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EFD88; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EFD8C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EFD90; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EFD94; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EFD98; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EFD9C; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EFDA0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EFDA4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EFDA8; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EFDAC; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EFDB0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EFDB4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EFDB8; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EFDBC; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EFDC0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EFDC4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EFDC8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EFDCC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EFDD0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EFDD4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EFDD8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EFDDC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EFDE0; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803EFDE4; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803EFDE8; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EFDEC; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803EFDF0; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803EFDF4; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EFDF8; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EFE00; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EFE04; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EFE08; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EFE0C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EFE10; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EFE14; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EFE18; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EFE1C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EFE20; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EFE24; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EFE28; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EFE2C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EFE30; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EFE34; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EFE38; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EFE3C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EFE40; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EFE44; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EFE48; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EFE4C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EFE50; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EFE54; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EFE58; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EFE5C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EFE60; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803EFE64; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803EFE68; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EFE70; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EFE74; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803EFE78; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803EFE7C; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EFE80; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803EFE84; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EFE88; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EFE8C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EFE90; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EFE94; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EFE98; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EFE9C; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803EFEA0; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EFEA4; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EFEA8; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EFEB0; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EFEB4; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EFEB8; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EFEBC; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EFEC0; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EFEC4; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EFEC8; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EFECC; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EFED0; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EFED4; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EFED8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EFEDC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EFEE0; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EFEE4; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EFEE8; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EFEEC; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EFEF0; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EFEF4; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EFEF8; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EFEFC; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EFF00; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EFF04; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EFF08; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EFF0C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EFF10; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EFF14; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EFF18; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EFF1C; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803EFF20; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803EFF24; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803EFF28; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803EFF30; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803EFF38; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803EFF40; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EFF48; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EFF4C; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EFF50; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EFF54; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EFF58; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EFF5C; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EFF60; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EFF64; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803EFF68; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EFF6C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EFF70; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EFF74; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EFF78; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EFF7C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EFF80; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EFF84; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EFF88; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803EFF8C; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803EFF90; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803EFF98; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803EFFA0; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803EFFA4; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EFFA8; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803EFFB0; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803EFFB4; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EFFB8; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EFFBC; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EFFC0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EFFC8; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EFFCC; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EFFD0; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EFFD4; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803EFFD8; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EFFDC; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EFFE0; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EFFE4; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EFFE8; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803EFFEC; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EFFF0; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803EFFF4; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803EFFF8; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803EFFFC; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803F0000; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803F0004; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803F0008; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F000C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F0010; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803F0014; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803F0018; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F001C; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803F0020; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803F0024; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803F0028; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F002C; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F0030; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F0034; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803F0038; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F003C; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803F0040; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F0044; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803F0048; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803F004C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803F0050; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803F0054; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803F0058; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803F005C; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803F0060; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803F0064; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803F0068; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803F0070; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803F0078; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803F007C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F0080; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F0084; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F0088; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F008C; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F0090; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F0094; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F0098; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F009C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F00A0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F00A4; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F00A8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F00AC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F00B0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F00B4; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F00B8; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F00BC; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803F00C0; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F00C4; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803F00C8; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803F00CC; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F00D0; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803F00D4; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F00D8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F00DC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803F00E0; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F00E4; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803F00E8; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803F00EC; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F00F0; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F00F4; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803F00F8; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803F00FC; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803F0100; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803F0104; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F0108; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803F010C; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803F0110; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803F0118; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803F0120; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803F0128; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803F0130; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803F0134; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803F0138; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F013C; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F0140; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F0144; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803F0148; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F014C; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803F0150; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803F0154; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803F0158; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F015C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F0160; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F0164; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F0168; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803F0170; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803F0178; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803F017C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F0180; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803F0188; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803F0190; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F0194; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F0198; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F019C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F01A0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F01A4; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F01A8; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F01AC; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F01B0; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F01B4; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F01B8; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F01BC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F01C0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F01C4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F01C8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F01CC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F01D0; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F01D4; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F01D8; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F01DC; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F01E0; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F01E4; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F01E8; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F01EC; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F01F0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F01F4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F01F8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F01FC; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F0200; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F0204; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F0208; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803F020C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803F0210; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803F0218; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803F0220; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F0224; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F0228; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803F022C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803F0230; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803F0234; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803F0238; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803F023C; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F0240; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803F0244; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803F0248; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803F024C; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803F0250; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803F0254; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803F0258; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803F025C; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803F0260; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F0268; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F026C; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803F0270; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803F0274; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803F0278; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803F0280; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803F0288; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F028C; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F0290; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803F0298; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803F02A0; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803F02A4; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803F02A8; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F02B0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F02B4; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803F02B8; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803F02C0; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803F02C8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F02CC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803F02D0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803F02D4; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F02D8; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803F02DC; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803F02E0; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F02E4; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803F02E8; // type:object size:0x8 scope:local align:8 data:double +@3868 = .sdata2:0x803F02F0; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x803F02F4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F02F8; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803F02FC; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F0300; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F0308; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F030C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F0310; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F0314; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F0318; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803F031C; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F0320; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803F0324; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803F0328; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803F032C; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F0330; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803F0334; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F0338; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803F033C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803F0340; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803F0344; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803F0348; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803F034C; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803F0350; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803F0354; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803F0358; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803F035C; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803F0360; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803F0364; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F0368; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F036C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F0370; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803F0374; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803F0378; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F037C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803F0380; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803F0384; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F0388; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F038C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803F0390; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F0394; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803F0398; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803F039C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803F03A0; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803F03A4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F03A8; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803F03B0; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F03B4; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F03B8; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F03BC; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F03C0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803F03C4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803F03C8; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803F03D0; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803F03D8; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F03DC; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F03E0; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F03E4; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F03E8; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F03EC; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803F03F0; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F03F4; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F03F8; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803F03FC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F0400; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F0404; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F0408; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F040C; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F0410; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F0414; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F0418; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F041C; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F0420; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F0424; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803F0428; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803F042C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803F0430; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803F0434; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F0438; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F043C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F0440; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803F0444; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803F0448; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F044C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803F0450; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803F0454; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803F0458; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803F045C; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803F0460; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F0464; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F0468; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803F046C; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803F0470; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803F0474; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803F0478; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803F047C; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F0480; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F0484; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F0488; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803F048C; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F0490; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F0494; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F0498; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F04A0; // type:object size:0x8 scope:local align:8 data:double +@1984 = .sdata2:0x803F04A8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F04AC; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803F04B0; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803F04B4; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F04B8; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F04BC; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F04C0; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F04C4; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F04C8; // type:object size:0x4 scope:local align:4 data:float +@2160 = .sdata2:0x803F04CC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F04D0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F04D4; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F04D8; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803F04E0; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803F04E8; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F04EC; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F04F0; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F04F8; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803F0500; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F0504; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803F0508; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803F050C; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803F0510; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803F0514; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803F0518; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F051C; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F0520; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803F0524; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803F0528; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803F052C; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803F0530; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803F0534; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803F0538; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803F053C; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803F0540; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803F0544; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803F0548; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803F054C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803F0550; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803F0554; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F0558; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803F055C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803F0560; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803F0564; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803F0568; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803F056C; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803F0570; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803F0574; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803F0578; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F057C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803F0580; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803F0584; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F0588; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F058C; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F0590; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F0594; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F0598; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F059C; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803F05A0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803F05A4; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F05A8; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F05AC; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F05B0; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F05B4; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F05B8; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F05BC; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F05C0; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F05C4; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803F05C8; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803F05CC; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F05D0; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F05D4; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F05D8; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F05DC; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F05E0; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803F05E8; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F05EC; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803F05F0; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803F05F4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803F05F8; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803F05FC; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803F0600; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803F0604; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803F0608; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803F0610; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803F0614; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F0618; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803F061C; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F0620; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803F0624; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F0628; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F062C; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803F0630; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803F0638; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803F063C; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803F0640; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F0648; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F064C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F0650; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F0654; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F0658; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F065C; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F0660; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F0664; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F0668; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F066C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F0670; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803F0674; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F0678; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F067C; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803F0680; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803F0684; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F0688; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803F068C; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803F0690; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F0694; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F0698; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803F06A0; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803F06A8; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803F06B0; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803F06B8; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803F06BC; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F06C0; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803F06C8; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803F06D0; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F06D4; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F06D8; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803F06DC; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803F06E0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F06E4; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803F06E8; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803F06EC; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803F06F0; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803F06F4; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803F06F8; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803F06FC; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803F0700; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803F0704; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x803F0708; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x803F070C; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x803F0710; // type:object size:0x4 scope:local align:4 data:float +@4541 = .sdata2:0x803F0714; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803F0718; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803F071C; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803F0720; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803F0724; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803F0728; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803F072C; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803F0730; // type:object size:0x4 scope:local align:4 data:float +@4617 = .sdata2:0x803F0734; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803F0738; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803F073C; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803F0740; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803F0748; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803F0750; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803F0754; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803F0758; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F075C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803F0760; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F0764; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803F0768; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F076C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F0770; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F0774; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F0778; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F077C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803F0780; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F0784; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F0788; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F078C; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F0790; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803F0794; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F0798; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F079C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F07A0; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F07A4; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803F07A8; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F07AC; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803F07B0; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803F07B4; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803F07B8; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803F07BC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F07C0; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F07C4; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F07C8; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F07D0; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803F07D4; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F07D8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F07DC; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata2:0x803F07E0; // type:object size:0x4 scope:local align:4 data:float +@1878 = .sdata2:0x803F07E4; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803F07E8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F07EC; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F07F0; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F07F4; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F07F8; // type:object size:0x8 scope:local align:8 data:double +@2300 = .sdata2:0x803F0800; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803F0804; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata2:0x803F0808; // type:object size:0x4 scope:local align:4 data:float +@2623 = .sdata2:0x803F080C; // type:object size:0x4 scope:local align:4 data:float +@3007 = .sdata2:0x803F0810; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F0814; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x803F0818; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x803F081C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x803F0820; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x803F0824; // type:object size:0x4 scope:local align:4 data:float +@4361 = .sdata2:0x803F0828; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803F082C; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803F0830; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803F0838; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F083C; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F0840; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F0844; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F0848; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803F0850; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803F0858; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803F0860; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803F0864; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803F0868; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F086C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803F0870; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F0874; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803F0878; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F087C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F0880; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F0884; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803F0888; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F088C; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F0890; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F0894; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F0898; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F089C; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803F08A0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F08A4; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F08A8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803F08AC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F08B0; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803F08B4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F08B8; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803F08C0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803F08C4; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803F08C8; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803F08CC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803F08D0; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803F08D8; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803F08DC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F08E0; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F08E4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F08E8; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803F08EC; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F08F0; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F08F4; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803F08F8; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803F08FC; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803F0900; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803F0904; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F0908; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F0910; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803F0914; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803F0918; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F091C; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803F0920; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F0924; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F0928; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F092C; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F0930; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803F0934; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803F0938; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803F093C; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803F0940; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803F0948; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F094C; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803F0950; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F0954; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F0958; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803F095C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F0960; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803F0968; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803F096C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F0970; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803F0978; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803F0980; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F0984; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F0988; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F098C; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F0990; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F0994; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F0998; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F099C; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803F09A0; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803F09A4; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F09A8; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F09AC; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803F09B0; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F09B4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F09B8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F09C0; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803F09C4; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803F09C8; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F09CC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F09D0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F09D4; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803F09D8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F09E0; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803F09E4; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803F09E8; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803F09EC; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803F09F0; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803F09F4; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F09F8; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F0A00; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803F0A04; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803F0A08; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F0A0C; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata2:0x803F0A10; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803F0A18; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F0A1C; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803F0A20; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803F0A24; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803F0A28; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803F0A30; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803F0A38; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F0A40; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F0A44; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F0A48; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803F0A4C; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F0A50; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803F0A54; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F0A58; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F0A5C; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803F0A60; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803F0A64; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F0A68; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F0A70; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F0A74; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F0A78; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F0A7C; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803F0A80; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803F0A88; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803F0A90; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F0A98; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803F0A9C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803F0AA0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F0AA4; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F0AA8; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F0AB0; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F0AB4; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F0AB8; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata2:0x803F0ABC; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803F0AC0; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F0AC4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F0AC8; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F0ACC; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F0AD0; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F0AD4; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F0AD8; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803F0AE0; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F0AE4; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F0AE8; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803F0AEC; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803F0AF0; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803F0AF4; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803F0AF8; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803F0AFC; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803F0B00; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803F0B08; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803F0B10; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803F0B14; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F0B18; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803F0B1C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata2:0x803F0B20; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F0B28; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803F0B2C; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F0B30; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F0B34; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803F0B38; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803F0B3C; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803F0B40; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F0B44; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F0B48; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F0B4C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F0B50; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F0B54; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803F0B58; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata2:0x803F0B5C; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata2:0x803F0B60; // type:object size:0x8 scope:local align:8 data:double +@2683 = .sdata2:0x803F0B68; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803F0B6C; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803F0B70; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata2:0x803F0B74; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803F0B78; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803F0B7C; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F0B80; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F0B84; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F0B88; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F0B8C; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F0B90; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803F0B94; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata2:0x803F0B98; // type:object size:0x4 scope:local align:4 data:4byte +@3041 = .sdata2:0x803F0B9C; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F0BA0; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata2:0x803F0BA4; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F0BA8; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F0BAC; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F0BB0; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F0BB8; // type:object size:0x8 scope:local align:8 data:double +@1044 = .sdata2:0x803F0BC0; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata2:0x803F0BC4; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata2:0x803F0BC8; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803F0BD0; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803F0BD4; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803F0BD8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F0BDC; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F0BE0; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803F0BE4; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F0BE8; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F0BEC; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F0BF0; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803F0BF4; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803F0BF8; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F0C00; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F0C04; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F0C08; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F0C0C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F0C10; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F0C14; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata2:0x803F0C18; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata2:0x803F0C1C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803F0C20; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803F0C24; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803F0C28; // type:object size:0x4 scope:local align:4 data:float +@2158 = .sdata2:0x803F0C2C; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata2:0x803F0C30; // type:object size:0x4 scope:local align:4 data:4byte +@2177 = .sdata2:0x803F0C34; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803F0C38; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803F0C3C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F0C40; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F0C44; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata2:0x803F0C48; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata2:0x803F0C4C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F0C50; // type:object size:0x8 scope:local align:8 data:double +@1838 = .sdata2:0x803F0C58; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803F0C5C; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F0C60; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F0C64; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F0C68; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803F0C70; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803F0C78; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F0C7C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F0C80; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F0C84; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F0C88; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F0C8C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F0C90; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803F0C94; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803F0C98; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F0C9C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F0CA0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F0CA4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F0CA8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F0CAC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0CB0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F0CB8; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F0CBC; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803F0CC0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F0CC4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F0CC8; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F0CCC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F0CD0; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F0CD4; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F0CD8; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F0CDC; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F0CE0; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F0CE4; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F0CE8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F0CEC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F0CF0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F0CF4; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803F0CF8; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803F0CFC; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803F0D00; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803F0D04; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803F0D08; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803F0D0C; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803F0D10; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803F0D14; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F0D18; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803F0D20; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803F0D24; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F0D28; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F0D2C; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803F0D30; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803F0D38; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F0D3C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F0D40; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F0D44; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F0D48; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F0D4C; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F0D50; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F0D54; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803F0D58; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F0D5C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F0D60; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F0D64; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803F0D68; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F0D70; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F0D78; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F0D7C; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F0D80; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803F0D84; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F0D88; // type:object size:0x8 scope:local align:8 data:double +@1564 = .sdata2:0x803F0D90; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F0D94; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F0D98; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F0D9C; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F0DA0; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F0DA8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803F0DB0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F0DB4; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F0DB8; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F0DBC; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803F0DC0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F0DC4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F0DC8; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F0DCC; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F0DD0; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803F0DD8; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F0DDC; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803F0DE0; // type:object size:0x8 scope:local align:8 data:double +@1152 = .sdata2:0x803F0DE8; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F0DEC; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata2:0x803F0DF0; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803F0DF8; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803F0DFC; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F0E00; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F0E04; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F0E08; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803F0E10; // type:object size:0x8 scope:local align:8 data:double +@999 = .sdata2:0x803F0E18; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F0E20; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F0E24; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F0E28; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803F0E30; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F0E34; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803F0E38; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F0E3C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F0E40; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F0E44; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F0E48; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F0E4C; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F0E50; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F0E54; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F0E58; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F0E60; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803F0E68; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F0E6C; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F0E70; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F0E74; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803F0E78; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F0E7C; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F0E80; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803F0E84; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803F0E88; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F0E90; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803F0E98; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803F0E9C; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803F0EA0; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803F0EA8; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803F0EB0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F0EB4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F0EB8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F0EBC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F0EC0; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F0EC8; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803F0ED0; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803F0ED4; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F0ED8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F0EE0; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803F0EE8; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803F0EF0; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803F0EF8; // type:object size:0x8 scope:local align:8 data:double +@1406 = .sdata2:0x803F0F00; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F0F08; // type:object size:0x8 scope:local align:8 data:double +@2013 = .sdata2:0x803F0F10; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F0F14; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F0F18; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F0F1C; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803F0F20; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F0F28; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803F0F2C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803F0F30; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803F0F34; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803F0F38; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F0F40; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803F0F48; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F0F4C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F0F50; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F0F58; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803F0F60; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803F0F68; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803F0F70; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803F0F74; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F0F78; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F0F7C; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F0F80; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803F0F84; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F0F88; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F0F8C; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F0F90; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F0F94; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0F98; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0F9C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0FA0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0FA4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0FA8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0FAC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F0FB0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F0FB4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F0FB8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F0FBC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F0FC0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F0FC4; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F0FC8; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F0FCC; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F0FD0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F0FD4; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F0FD8; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F0FDC; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803F0FE0; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F0FE4; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F0FE8; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803F0FEC; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F0FF0; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803F0FF4; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803F0FF8; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803F0FFC; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803F1000; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803F1008; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803F1010; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F1014; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F1018; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F1020; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F1024; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F1028; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F102C; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F1030; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F1034; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F1038; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F103C; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F1040; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F1044; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F1048; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F104C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F1050; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F1054; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F1058; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F105C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F1060; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F1064; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F1068; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F106C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F1070; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F1074; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F1078; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803F107C; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803F1080; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F1084; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F1088; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803F108C; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803F1090; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803F1094; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F1098; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F109C; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F10A0; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803F10A4; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803F10A8; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803F10B0; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803F10B4; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803F10B8; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803F10BC; // type:object size:0x4 scope:local align:4 data:float +@3264 = .sdata2:0x803F10C0; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803F10C4; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F10C8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803F10CC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F10D0; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F10D8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803F10DC; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F10E0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803F10E4; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F10E8; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803F10F0; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F10F8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F1100; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803F1108; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803F1110; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803F1114; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803F1118; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803F111C; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F1120; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803F1124; // type:object size:0x4 scope:local align:4 data:float +@2419 = .sdata2:0x803F1128; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F112C; // type:object size:0x4 scope:local align:4 data:float +@2491 = .sdata2:0x803F1130; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x803F1134; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x803F1138; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x803F113C; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x803F1140; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x803F1144; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x803F1148; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x803F114C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F1150; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803F1158; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F1160; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F1164; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803F1168; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803F116C; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803F1170; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata2:0x803F1174; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata2:0x803F1178; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata2:0x803F117C; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F1180; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F1184; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F1188; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803F1190; // type:object size:0x8 scope:local align:8 data:double +@1969 = .sdata2:0x803F1198; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F119C; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803F11A0; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803F11A4; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803F11A8; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803F11B0; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803F11B8; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803F11BC; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803F11C0; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F11C4; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F11C8; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803F11D0; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803F11D4; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803F11D8; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803F11DC; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803F11E0; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803F11E4; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F11E8; // type:object size:0x4 scope:local align:4 data:float +@1121 = .sdata2:0x803F11F0; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803F11F8; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803F11FC; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803F1200; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803F1208; // type:object size:0x8 scope:local align:8 data:double +@888 = .sdata2:0x803F1210; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803F1218; // type:object size:0x4 scope:local align:4 data:4byte +@1080 = .sdata2:0x803F121C; // type:object size:0x4 scope:local align:4 data:4byte +@727 = .sdata2:0x803F1220; // type:object size:0x4 scope:local align:4 data:float +@728 = .sdata2:0x803F1224; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803F1228; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F1230; // type:object size:0x8 scope:local align:8 data:double +@649 = .sdata2:0x803F1238; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803F1240; // type:object size:0x8 scope:local align:8 data:double +@878 = .sdata2:0x803F1248; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803F1250; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803F1258; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803F1260; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803F1268; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803F1270; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803F1274; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803F1278; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803F127C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803F1280; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F1284; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F1288; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803F1290; // type:object size:0x8 scope:local align:8 data:double +@2314 = .sdata2:0x803F1298; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F129C; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F12A0; // type:object size:0x4 scope:local align:4 data:float +@2442 = .sdata2:0x803F12A4; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata2:0x803F12A8; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata2:0x803F12AC; // type:object size:0x4 scope:local align:4 data:float +@2456 = .sdata2:0x803F12B0; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803F12B4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803F12B8; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F12BC; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803F12C0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F12C8; // type:object size:0x8 scope:local align:8 data:double +@2702 = .sdata2:0x803F12D0; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803F12D4; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F12D8; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803F12DC; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803F12E0; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803F12E4; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F12E8; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803F12EC; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803F12F0; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F12F4; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F12F8; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata2:0x803F12FC; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata2:0x803F1300; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F1304; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803F1308; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803F130C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803F1310; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata2:0x803F1314; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F1318; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803F131C; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803F1320; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803F1324; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata2:0x803F1328; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x803F132C; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803F1330; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803F1334; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803F1338; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F133C; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803F1340; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F1344; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F1348; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803F134C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F1350; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F1354; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F1358; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F1360; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803F1368; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803F136C; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F1370; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803F1374; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F1378; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F137C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F1380; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F1384; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803F1388; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803F138C; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803F1390; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803F1394; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F1398; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803F13A0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F13A4; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803F13A8; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803F13AC; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803F13B0; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata2:0x803F13B4; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata2:0x803F13B8; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803F13C0; // type:object size:0x8 scope:local align:8 data:double +@2553 = .sdata2:0x803F13C8; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803F13CC; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata2:0x803F13D0; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803F13D4; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803F13D8; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803F13E0; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803F13E4; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803F13E8; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F13EC; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata2:0x803F13F0; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803F13F8; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803F1400; // type:object size:0x8 scope:local align:8 data:double +@1485 = .sdata2:0x803F1408; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F140C; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F1410; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F1414; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F1418; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803F141C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F1420; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803F1424; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F1428; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803F142C; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803F1430; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803F1434; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803F1438; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F1440; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803F1444; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803F1448; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803F144C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F1450; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F1458; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803F1460; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803F1464; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F1468; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803F146C; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F1470; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F1474; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F1478; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F147C; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F1480; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F1484; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F1488; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F148C; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F1490; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F1494; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803F1498; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803F149C; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803F14A0; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F14A4; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803F14A8; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803F14B0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803F14B4; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata2:0x803F14B8; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F14C0; // type:object size:0x8 scope:local align:8 data:double +@964 = .sdata2:0x803F14C8; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803F14CC; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803F14D0; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803F14D4; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803F14D8; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F14E0; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803F14E8; // type:object size:0x4 scope:local align:4 data:float +@1552 = .sdata2:0x803F14EC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F14F0; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803F14F8; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F14FC; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803F1500; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803F1508; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803F1510; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F1514; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata2:0x803F1518; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803F1520; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803F1524; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803F1528; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803F152C; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803F1530; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803F1534; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F1538; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F153C; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803F1540; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803F1544; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F1548; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803F154C; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F1550; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F1554; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F1558; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F155C; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F1560; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803F1564; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803F1568; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803F156C; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803F1570; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803F1574; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F1578; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F157C; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803F1580; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803F1584; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803F1588; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803F158C; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F1590; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F1594; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803F1598; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803F15A0; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803F15A8; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803F15AC; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803F15B0; // type:object size:0x4 scope:local align:4 data:float +@3135 = .sdata2:0x803F15B4; // type:object size:0x4 scope:local align:4 data:float +@3137 = .sdata2:0x803F15B8; // type:object size:0x8 scope:local align:8 data:double +@3731 = .sdata2:0x803F15C0; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803F15C4; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803F15C8; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803F15CC; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x803F15D0; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x803F15D4; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803F15D8; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803F15DC; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803F15E0; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803F15E4; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803F15E8; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803F15EC; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F15F0; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803F15F4; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F15F8; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803F15FC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F1600; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F1604; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F1608; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F1610; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F1618; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F161C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F1620; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F1624; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803F1628; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803F162C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F1630; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F1634; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F1638; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F163C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F1640; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F1644; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F1648; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F164C; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F1650; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F1654; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F1658; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F165C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F1660; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F1664; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F1668; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F166C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F1670; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F1674; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F1678; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F167C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F1680; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F1684; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F1688; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F168C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F1690; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F1698; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F169C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F16A0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F16A4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F16A8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F16AC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F16B0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F16B4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F16B8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F16BC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F16C0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F16C4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F16C8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F16CC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F16D0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F16D4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F16D8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F16DC; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F16E0; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F16E4; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F16E8; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F16EC; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F16F0; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F16F4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F16F8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F16FC; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F1700; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803F1704; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803F1708; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F170C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F1710; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803F1714; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F1718; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F171C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803F1720; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F1724; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803F1728; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F172C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F1730; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F1734; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F1738; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F173C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F1740; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F1744; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F1748; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F174C; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F1750; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F1754; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F1758; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F175C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F1760; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803F1764; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F1768; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803F176C; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803F1770; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803F1774; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F1778; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F177C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F1780; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F1784; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F1788; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F178C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F1790; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F1794; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F1798; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F179C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F17A0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F17A4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F17A8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F17AC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F17B0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F17B4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F17B8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F17BC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F17C0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F17C4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F17C8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F17CC; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F17D0; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803F17D8; // type:object size:0x8 scope:local align:8 data:double +@2116 = .sdata2:0x803F17E0; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F17E4; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F17E8; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F17EC; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F17F0; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803F17F4; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F17F8; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F17FC; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F1800; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F1804; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F1808; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803F180C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F1810; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F1814; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F1818; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803F181C; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803F1820; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F1824; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F1828; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F182C; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803F1830; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803F1834; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803F1838; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F183C; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F1840; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata2:0x803F1844; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F1848; // type:object size:0x4 scope:local align:4 data:float +@3165 = .sdata2:0x803F184C; // type:object size:0x4 scope:local align:4 data:float +@3167 = .sdata2:0x803F1850; // type:object size:0x8 scope:local align:8 data:double +@3474 = .sdata2:0x803F1858; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x803F185C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F1860; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F1864; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F1868; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F186C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F1870; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F1874; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F1878; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F187C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F1880; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F1884; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F1888; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F188C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F1890; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F1894; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F1898; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F189C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F18A0; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F18A4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F18A8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F18AC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F18B0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F18B4; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803F18B8; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803F18BC; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F18C0; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F18C8; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803F18D0; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata2:0x803F18D8; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803F18E0; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F18E4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F18E8; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803F18EC; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803F18F0; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F18F4; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F18F8; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F18FC; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F1900; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F1904; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F1908; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F190C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F1910; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F1914; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F1918; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F191C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F1920; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F1924; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F1928; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F192C; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F1930; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F1934; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F1938; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F193C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803F1940; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F1944; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803F1948; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803F194C; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803F1950; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803F1954; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F1958; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803F1960; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803F1968; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803F196C; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803F1970; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803F1974; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F1978; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F197C; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F1980; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803F1988; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803F198C; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803F1990; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803F1994; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803F1998; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803F199C; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803F19A0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F19A8; // type:object size:0x8 scope:local align:8 data:double +@882 = .sdata2:0x803F19B0; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F19B8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F19BC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F19C0; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803F19C4; // type:object size:0x4 scope:local align:4 data:float +@2823 = .sdata2:0x803F19C8; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803F19CC; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata2:0x803F19D0; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata2:0x803F19D8; // type:object size:0x8 scope:local align:8 data:double +@3077 = .sdata2:0x803F19E0; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x803F19E4; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x803F19E8; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x803F19EC; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x803F19F0; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x803F19F4; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata2:0x803F19F8; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x803F19FC; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x803F1A00; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x803F1A04; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x803F1A08; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x803F1A0C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803F1A10; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803F1A18; // type:object size:0x8 scope:local align:8 data:double +@4102 = .sdata2:0x803F1A20; // type:object size:0x8 scope:local align:8 data:double +@4103 = .sdata2:0x803F1A28; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803F1A2C; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803F1A30; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F1A34; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x803F1A38; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x803F1A3C; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x803F1A40; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x803F1A44; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x803F1A48; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803F1A4C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803F1A50; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x803F1A54; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x803F1A58; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803F1A5C; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803F1A60; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803F1A64; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803F1A68; // type:object size:0x4 scope:local align:4 data:float +@4523 = .sdata2:0x803F1A6C; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x803F1A70; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x803F1A74; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x803F1A78; // type:object size:0x4 scope:local align:4 data:float +@4527 = .sdata2:0x803F1A7C; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata2:0x803F1A80; // type:object size:0x4 scope:local align:4 data:float +@5613 = .sdata2:0x803F1A84; // type:object size:0x4 scope:local align:4 data:float +@6617 = .sdata2:0x803F1A88; // type:object size:0x4 scope:local align:4 data:float +@6618 = .sdata2:0x803F1A8C; // type:object size:0x4 scope:local align:4 data:float +@6619 = .sdata2:0x803F1A90; // type:object size:0x4 scope:local align:4 data:float +@6797 = .sdata2:0x803F1A94; // type:object size:0x4 scope:local align:4 data:float +@6895 = .sdata2:0x803F1A98; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F1AA0; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803F1AA4; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803F1AA8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F1AAC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803F1AB0; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F1AB4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F1AB8; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803F1ABC; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F1AC0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803F1AC4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803F1AC8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F1ACC; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F1AD0; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803F1AD4; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F1AD8; // type:object size:0x8 scope:local align:8 data:double +@1108 = .sdata2:0x803F1AE0; // type:object size:0x8 scope:local align:8 data:double +@772 = .sdata2:0x803F1AE8; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F1AEC; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F1AF0; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F1AF4; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F1AF8; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F1AFC; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F1B00; // type:object size:0x4 scope:local align:4 data:float +@809 = .sdata2:0x803F1B08; // type:object size:0x8 scope:local align:8 data:double +@829 = .sdata2:0x803F1B10; // type:object size:0x4 scope:local align:4 data:float +@873 = .sdata2:0x803F1B14; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F1B18; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803F1B1C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F1B20; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F1B24; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F1B28; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803F1B2C; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F1B30; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F1B34; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F1B38; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F1B3C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803F1B40; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803F1B44; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata2:0x803F1B48; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F1B4C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F1B50; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F1B54; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F1B58; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F1B5C; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F1B60; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803F1B64; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803F1B68; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803F1B6C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F1B70; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803F1B78; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F1B7C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F1B80; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F1B84; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F1B88; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F1B8C; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F1B90; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803F1B94; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F1B98; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F1B9C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F1BA0; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803F1BA4; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F1BA8; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F1BAC; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F1BB0; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F1BB4; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F1BB8; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F1BBC; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F1BC0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F1BC4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F1BC8; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F1BCC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F1BD0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F1BD4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F1BD8; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F1BDC; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F1BE0; // type:object size:0x8 scope:local align:8 data:double +@1932 = .sdata2:0x803F1BE8; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F1BEC; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F1BF0; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F1BF4; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F1BF8; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F1BFC; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F1C00; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F1C04; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F1C08; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F1C0C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F1C10; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F1C14; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F1C18; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F1C1C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F1C20; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F1C24; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F1C28; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F1C2C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F1C30; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F1C34; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F1C38; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F1C3C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F1C40; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803F1C44; // type:object size:0x4 scope:local align:4 data:float +@2612 = .sdata2:0x803F1C48; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803F1C50; // type:object size:0x8 scope:local align:8 data:double +@1217 = .sdata2:0x803F1C58; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803F1C5C; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F1C60; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F1C64; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F1C68; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803F1C70; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803F1C78; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F1C80; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F1C88; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F1C90; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803F1C94; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F1C98; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803F1C9C; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803F1CA0; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803F1CA4; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803F1CA8; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803F1CAC; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F1CB0; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F1CB4; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F1CB8; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F1CBC; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F1CC0; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803F1CC8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F1CCC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803F1CD0; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803F1CD4; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F1CD8; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F1CDC; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F1CE0; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F1CE4; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F1CE8; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803F1CF0; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803F1CF8; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F1CFC; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F1D00; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803F1D04; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F1D08; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803F1D0C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803F1D10; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803F1D14; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata2:0x803F1D18; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803F1D20; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F1D24; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata2:0x803F1D28; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata2:0x803F1D2C; // type:object size:0x4 scope:local align:4 data:float +@774 = .sdata2:0x803F1D30; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F1D38; // type:object size:0x8 scope:local align:8 data:double +@893 = .sdata2:0x803F1D40; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F1D48; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F1D4C; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803F1D50; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F1D54; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803F1D58; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F1D5C; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803F1D60; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803F1D68; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803F1D70; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803F1D74; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803F1D78; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803F1D7C; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F1D80; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F1D84; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F1D88; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803F1D90; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803F1D94; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803F1D98; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803F1D9C; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803F1DA0; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803F1DA4; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803F1DA8; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803F1DAC; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803F1DB0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F1DB4; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F1DB8; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803F1DBC; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803F1DC0; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F1DC8; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803F1DCC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803F1DD0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F1DD4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F1DD8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F1DDC; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F1DE0; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803F1DE4; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803F1DE8; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803F1DF0; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803F1DF8; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803F1DFC; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803F1E00; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803F1E04; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803F1E08; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803F1E10; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803F1E14; // type:object size:0x4 scope:local align:4 data:float +@203 = .sdata2:0x803F1E18; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x803F1E1C; // type:object size:0x4 scope:local align:4 data:float +@207 = .sdata2:0x803F1E20; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803F1E28; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803F1E2C; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803F1E30; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803F1E34; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803F1E38; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803F1E3C; // type:object size:0x4 scope:local align:4 data:float +@111 = .sdata2:0x803F1E40; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803F1E48; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x803F1E50; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803F1E58; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803F1E5C; // type:object size:0x4 scope:local align:4 data:float +@114 = .sdata2:0x803F1E60; // type:object size:0x8 scope:local align:8 data:double +@15 = .sdata2:0x803F1E68; // type:object size:0x4 scope:local align:4 data:4byte +@16 = .sdata2:0x803F1E6C; // type:object size:0x4 scope:local align:4 data:4byte +@17 = .sdata2:0x803F1E70; // type:object size:0x4 scope:local align:4 data:4byte +@158 = .sdata2:0x803F1E74; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F1E78; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x803F1E7C; // type:object size:0x4 scope:local align:4 data:float +@162 = .sdata2:0x803F1E80; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x803F1E88; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F1E90; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F1E98; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F1E9C; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803F1EA0; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803F1EA8; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803F1EB0; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F1EB8; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x803F1EC0; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F1EC8; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F1ECC; // type:object size:0x4 scope:local align:4 data:float +@189 = .sdata2:0x803F1ED0; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803F1ED4; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803F1ED8; // type:object size:0x4 scope:local align:4 data:float +@192 = .sdata2:0x803F1EDC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803F1EE0; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803F1EE4; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F1EE8; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803F1EF0; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803F1EF8; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803F1F00; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803F1F08; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803F1F10; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803F1F14; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F1F18; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803F1F20; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803F1F28; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803F1F30; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803F1F38; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803F1F40; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803F1F48; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803F1F50; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803F1F58; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803F1F60; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803F1F68; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803F1F70; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803F1F78; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803F1F80; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803F1F88; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F1F90; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803F1F98; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803F1FA0; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803F1FA8; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803F1FB0; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F1FB8; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803F1FC0; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803F1FC8; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803F1FD0; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803F1FD8; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803F1FE0; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803F1FE8; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803F1FF0; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803F1FF8; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803F2000; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803F2008; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803F2010; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803F2018; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803F2020; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803F2028; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803F2030; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803F2038; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803F2040; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803F2048; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803F2050; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803F2058; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803F2060; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803F2068; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803F2070; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803F2078; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803F2080; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803F2088; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803F2090; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803F2098; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803F20A0; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803F20A8; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803F20B0; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803F20B8; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803F20C0; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803F20C8; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803F20D0; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F20D8; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803F20E0; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803F20E8; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803F20F0; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803F20F8; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803F2100; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803F2108; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803F2110; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803F2118; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803F2120; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F2128; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803F212C; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803F2130; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F2134; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803F2138; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803F213C; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803F2140; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F2144; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803F2148; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803F214C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803F2150; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803F2158; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803F2160; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803F2168; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803F2170; // type:object size:0x8 scope:local align:8 data:double diff --git a/config/GPIJ01_02/build.sha1 b/config/GPIJ01_02/build.sha1 new file mode 100644 index 00000000..ec16df45 --- /dev/null +++ b/config/GPIJ01_02/build.sha1 @@ -0,0 +1 @@ +d87f92a733fc8fa5f65045730fe81a66b0c7d146 build/GPIJ01_02/main.dol diff --git a/config/GPIJ01_02/config.yml b/config/GPIJ01_02/config.yml new file mode 100644 index 00000000..bd04d6f2 --- /dev/null +++ b/config/GPIJ01_02/config.yml @@ -0,0 +1,10 @@ +object: orig/GPIJ01_02/sys/main.dol +hash: d87f92a733fc8fa5f65045730fe81a66b0c7d146 + +# Generated from dataDir/build.map +symbols: config/GPIJ01_02/symbols.txt +splits: config/GPIJ01_02/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPIJ01_02/splits.txt b/config/GPIJ01_02/splits.txt new file mode 100644 index 00000000..26758d5f --- /dev/null +++ b/config/GPIJ01_02/splits.txt @@ -0,0 +1,3122 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:32 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:8 + .bss type:bss align:32 + .sdata type:data align:32 + .sbss type:bss align:32 + .sdata2 type:rodata align:4 + +sysBootup.cpp: + .text start:0x80005560 end:0x80005600 + .data start:0x80228380 end:0x802283A0 + +jaudio/dummyprobe.c: + .text start:0x80005600 end:0x80005640 + +jaudio/memory.c: + .text start:0x80005640 end:0x80005720 + +jaudio/aictrl.c: + .text start:0x80005720 end:0x80005F00 + .rodata start:0x802275A0 end:0x802275B8 + .bss start:0x802EFC60 end:0x802EFC80 + .sbss start:0x803EDEC0 end:0x803EDEF0 + .sdata2 start:0x803EE880 end:0x803EE890 + +jaudio/sample.c: + .text start:0x80005F00 end:0x800061A0 + +jaudio/dummyrom.c: + .text start:0x800061A0 end:0x800062C0 + .bss start:0x803DC8B8 end:0x803DC8E0 align:4 common + .sbss start:0x803EDEF0 end:0x803EDF00 + +jaudio/audiothread.c: + .text start:0x800062C0 end:0x800067E0 + .rodata start:0x802275B8 end:0x802275C8 + .bss start:0x802EFC80 end:0x802EFCE0 + .bss start:0x803DC8E0 end:0x803E1540 align:4 common + .sbss start:0x803EDF00 end:0x803EDF20 + .sdata2 start:0x803EE890 end:0x803EE898 + +jaudio/streamctrl.c: + .text start:0x800067E0 end:0x80006B80 + .data start:0x802283A0 end:0x80228470 + .bss start:0x802EFCE0 end:0x802EFD50 + .sdata2 start:0x803EE898 end:0x803EE8A8 + +jaudio/dspbuf.c: + .text start:0x80006B80 end:0x80006EE0 + .rodata start:0x802275C8 end:0x802275E0 + .bss start:0x802EFD50 end:0x802EFD60 + .sbss start:0x803EDF20 end:0x803EDF30 + +jaudio/cpubuf.c: + .text start:0x80006EE0 end:0x80007120 + .bss start:0x802EFD60 end:0x802EFD70 + .sbss start:0x803EDF30 end:0x803EDF38 + +jaudio/playercall.c: + .text start:0x80007120 end:0x800073E0 + .bss start:0x802EFD70 end:0x802EFE30 + +jaudio/dvdthread.c: + .text start:0x800073E0 end:0x80008160 + .data start:0x80228470 end:0x802284A0 + .bss start:0x802EFE30 end:0x802F8B00 + .sbss start:0x803EDF38 end:0x803EDF80 + +jaudio/rate.c: + .sdata start:0x803E3340 end:0x803E3350 + .sbss start:0x803EDF80 end:0x803EDF88 + +jaudio/audiomesg.c: + .text start:0x80008160 end:0x800082C0 + +jaudio/stackchecker.c: + .text start:0x800082C0 end:0x80008300 + +jaudio/dspboot.c: + .text start:0x80008300 end:0x800086C0 + .rodata start:0x802275E0 end:0x80227600 + .data start:0x802284A0 end:0x80229EA0 + .sdata2 start:0x803EE8A8 end:0x803EE8B0 + +jaudio/dspproc.c: + .text start:0x800086C0 end:0x80008A00 + .rodata start:0x80227600 end:0x80227688 + .sdata start:0x803E3350 end:0x803E3358 + .sdata2 start:0x803EE8B0 end:0x803EE8B8 + +jaudio/ipldec.c: + .text start:0x80008A00 end:0x80008BE0 + .bss start:0x803E1540 end:0x803E1580 align:4 common + .sbss start:0x803EDF88 end:0x803EDF90 + +jaudio/dsp_cardunlock.c: + .text start:0x80008BE0 end:0x80009400 + .rodata start:0x80227688 end:0x802276C8 + +jaudio/driverinterface.c: + .text start:0x80009400 end:0x8000AD00 + .data start:0x80229EA0 end:0x80229F38 + .bss start:0x802F8B00 end:0x8030CC80 + .sdata start:0x803E3358 end:0x803E3360 + .sbss start:0x803EDF90 end:0x803EDFA0 + .sdata2 start:0x803EE8B8 end:0x803EE8D8 + +jaudio/dspdriver.c: + .text start:0x8000AD00 end:0x8000B560 + .data start:0x80229F38 end:0x80229F60 + .bss start:0x8030CC80 end:0x8030D080 + .sbss start:0x803EDFA0 end:0x803EDFA8 + .sdata2 start:0x803EE8D8 end:0x803EE8E8 + +jaudio/dspinterface.c: + .text start:0x8000B560 end:0x8000BCC0 + .data start:0x80229F60 end:0x8022A3C0 + .bss start:0x8030D080 end:0x80313100 + .sdata start:0x803E3360 end:0x803E3370 + +jaudio/fxinterface.c: + .text start:0x8000BCC0 end:0x8000BE00 + .data start:0x8022A3C0 end:0x8022A3D8 + +jaudio/tables.c: + .data start:0x8022A3D8 end:0x8022A5D8 + +jaudio/bankread.c: + .text start:0x8000BE00 end:0x8000C200 + .bss start:0x80313100 end:0x80313500 + +jaudio/waveread.c: + .text start:0x8000C200 end:0x8000C860 + .bss start:0x80313500 end:0x80313D00 + .bss start:0x803E1580 end:0x803E15C0 align:4 common + +jaudio/connect.c: + .text start:0x8000C860 end:0x8000CFC0 + .bss start:0x80313D00 end:0x80314100 + +jaudio/bankdrv.c: + .text start:0x8000CFC0 end:0x8000D740 + .data start:0x8022A5D8 end:0x8022A5E8 + .sdata2 start:0x803EE8E8 end:0x803EE910 + +jaudio/random.c: + .text start:0x8000D740 end:0x8000D8A0 + .sdata start:0x803E3370 end:0x803E3378 + .sdata2 start:0x803EE910 end:0x803EE920 + +jaudio/aramcall.c: + .text start:0x8000D8A0 end:0x8000DC20 + .data start:0x8022A5E8 end:0x8022A628 + .bss start:0x803E15C0 end:0x803E15EC align:4 common + .sdata start:0x803E3378 end:0x803E3380 + .sbss start:0x803EDFA8 end:0x803EDFB0 + +jaudio/ja_calc.c: + .text start:0x8000DC20 end:0x8000DDE0 + .bss start:0x80314100 end:0x80314508 + .sdata2 start:0x803EE920 end:0x803EE950 + +jaudio/fat.c: + .text start:0x8000DDE0 end:0x8000E300 + .bss start:0x80314508 end:0x80315908 + .sbss start:0x803EDFB0 end:0x803EDFC0 + +jaudio/cmdstack.c: + .text start:0x8000E300 end:0x8000E580 + .sbss start:0x803EDFC0 end:0x803EDFD0 + +jaudio/virload.c: + .text start:0x8000E580 end:0x8000E9C0 + .bss start:0x80315908 end:0x80315FA0 + .sbss start:0x803EDFD0 end:0x803EDFE0 + .sdata2 start:0x803EE950 end:0x803EE958 + +jaudio/heapctrl.c: + .text start:0x8000E9C0 end:0x8000F400 + .rodata start:0x802276C8 end:0x802276D8 + .bss start:0x80315FA0 end:0x80325FA0 + .sbss start:0x803EDFE0 end:0x803EDFE8 + +jaudio/jammain_2.c: + .text start:0x8000F400 end:0x80013840 + .data start:0x8022A628 end:0x8022A8E8 + .bss start:0x80325FA0 end:0x803260C0 + .sdata start:0x803E3380 end:0x803E3388 + .sbss start:0x803EDFE8 end:0x803EDFF8 + .sdata2 start:0x803EE958 end:0x803EE9A0 + +jaudio/midplay.c: + .data start:0x8022A8E8 end:0x8022ACE8 + +jaudio/noteon.c: + .text start:0x80013840 end:0x80013DA0 + .sdata2 start:0x803EE9A0 end:0x803EE9A8 + +jaudio/seqsetup.c: + .text start:0x80013DA0 end:0x80014BC0 + .bss start:0x803260C0 end:0x80369D00 + .sbss start:0x803EDFF8 end:0x803EE008 + .sdata2 start:0x803EE9A8 end:0x803EE9B8 + +jaudio/centcalc.c: + .text start:0x80014BC0 end:0x80014CA0 + .data start:0x8022ACE8 end:0x8022ADE8 + .sdata2 start:0x803EE9B8 end:0x803EE9D0 + +jaudio/jamosc.c: + .text start:0x80014CA0 end:0x80015140 + .data start:0x8022ADE8 end:0x8022AED0 + .sdata2 start:0x803EE9D0 end:0x803EE9D8 + +jaudio/oneshot.c: + .text start:0x80015140 end:0x80016900 + .data start:0x8022AED0 end:0x8022AF10 + .sdata start:0x803E3388 end:0x803E3390 + .sdata2 start:0x803EE9D8 end:0x803EEA08 + +jaudio/interface.c: + .text start:0x80016900 end:0x80016A60 + .bss start:0x80369D00 end:0x80369D10 + .sdata start:0x803E3390 end:0x803E3398 + .sbss start:0x803EE008 end:0x803EE010 + +jaudio/verysimple.c: + .text start:0x80016A60 end:0x80017460 + .rodata start:0x802276D8 end:0x80227838 + .data start:0x8022AF10 end:0x8022B028 + .bss start:0x80369D10 end:0x80369DE8 + .sbss start:0x803EE010 end:0x803EE038 + .sdata2 start:0x803EEA08 end:0x803EEA18 + +jaudio/app_inter.c: + .text start:0x80017460 end:0x800175E0 + .sbss start:0x803EE038 end:0x803EE040 + +jaudio/pikiinter.c: + .text start:0x800175E0 end:0x80018120 + .data start:0x8022B028 end:0x8022B6F0 + .bss start:0x803E15EC end:0x803E3150 align:4 common + .sbss start:0x803EE040 end:0x803EE050 + .sdata2 start:0x803EEA18 end:0x803EEA38 + +jaudio/piki_player.c: + .text start:0x80018120 end:0x80018980 + .bss start:0x80369DE8 end:0x80369F00 + .sbss start:0x803EE050 end:0x803EE0B8 + .sdata2 start:0x803EEA38 end:0x803EEA50 + +jaudio/piki_bgm.c: + .text start:0x80018980 end:0x80019760 + .rodata start:0x80227838 end:0x80227860 + .data start:0x8022B6F0 end:0x8022B808 + .bss start:0x80369F00 end:0x8036AC38 + .sdata start:0x803E3398 end:0x803E3420 + .sbss start:0x803EE0B8 end:0x803EE0C8 + .sdata2 start:0x803EEA50 end:0x803EEA60 + +jaudio/piki_scene.c: + .text start:0x80019760 end:0x8001A0E0 + .data start:0x8022B808 end:0x8022BA70 + .sdata start:0x803E3420 end:0x803E3430 + .sbss start:0x803EE0C8 end:0x803EE0F0 + .sdata2 start:0x803EEA60 end:0x803EEA68 + +jaudio/pikidemo.c: + .text start:0x8001A0E0 end:0x8001B3C0 + .data start:0x8022BA70 end:0x8022C530 + .bss start:0x8036AC38 end:0x8036ACA8 + .sdata start:0x803E3430 end:0x803E3468 + .sbss start:0x803EE0F0 end:0x803EE118 + .sdata2 start:0x803EEA68 end:0x803EEA80 + +jaudio/file_seq.c: + .text start:0x8001B3C0 end:0x8001B940 + .bss start:0x8036ACA8 end:0x8036F4C0 + .sdata start:0x803E3468 end:0x803E3470 + .sbss start:0x803EE118 end:0x803EE120 + +jaudio/cmdqueue.c: + .text start:0x8001B940 end:0x8001BB40 + +jaudio/filter3d.c: + .text start:0x8001BB40 end:0x8001BBC0 + .sdata2 start:0x803EEA80 end:0x803EEA88 + +jaudio/syncstream.c: + .text start:0x8001BBC0 end:0x8001D980 + .data start:0x8022C530 end:0x8022C5A0 + .bss start:0x8036F4C0 end:0x80390F28 + .sdata start:0x803E3470 end:0x803E3478 + .sbss start:0x803EE120 end:0x803EE128 + .sdata2 start:0x803EEA88 end:0x803EEAA0 + +jaudio/pikiseq.c: + .data start:0x8022C5A0 end:0x8022C880 + +jaudio/bankloader.c: + .text start:0x8001D980 end:0x8001DA60 + +jaudio/interleave.c: + .text start:0x8001DA60 end:0x8001DC60 + .bss start:0x80390F28 end:0x80390F60 + .sdata start:0x803E3478 end:0x803E3480 + +jaudio/hvqm_play.c: + .text start:0x8001DC60 end:0x8001EC1C + .bss start:0x80390F60 end:0x80392320 + .bss start:0x803E3150 end:0x803E3330 align:4 common + .sdata start:0x803E3480 end:0x803E3490 + .sbss start:0x803EE128 end:0x803EE180 + .sdata2 start:0x803EEAA0 end:0x803EEAA8 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001EC1C end:0x800246C4 + .rodata start:0x80227860 end:0x80227878 + .data start:0x8022C880 end:0x8022C890 + .bss start:0x80392320 end:0x80392D60 + .sbss start:0x803EE180 end:0x803EE188 + +sysCommon/ayuStack.cpp: + .text start:0x800246C4 end:0x80024EB0 + .data start:0x8022C890 end:0x8022C8C0 + +sysCommon/baseApp.cpp: + .text start:0x80024EB0 end:0x80025164 + .data start:0x8022C8C0 end:0x8022C988 + .sdata start:0x803E3490 end:0x803E34D0 + +sysCommon/stream.cpp: + .text start:0x80025164 end:0x800255B4 + .data start:0x8022C988 end:0x8022C9E0 + .sdata start:0x803E34D0 end:0x803E34E0 + +sysCommon/streamBufferedInput.cpp: + .text start:0x800255B4 end:0x800259A4 + .data start:0x8022C9E0 end:0x8022CB20 + .sdata start:0x803E34E0 end:0x803E3500 + +sysCommon/string.cpp: + .text start:0x800259A4 end:0x800259C8 + +sysCommon/graphics.cpp: + .text start:0x800259C8 end:0x80029BEC + .data start:0x8022CB20 end:0x8022D920 + .sdata start:0x803E3500 end:0x803E3600 + .sdata2 start:0x803EEAA8 end:0x803EEB10 + +sysCommon/grLight.cpp: + .text start:0x80029BEC end:0x8002A13C + .data start:0x8022D920 end:0x8022D9A0 + .sdata start:0x803E3600 end:0x803E3658 + .sdata2 start:0x803EEB10 end:0x803EEB60 + +sysCommon/shapeBase.cpp: + .text start:0x8002A13C end:0x80035E20 + .ctors start:0x80227524 end:0x80227528 + .rodata start:0x80227878 end:0x802278D8 + .data start:0x8022D9A0 end:0x8022E128 + .bss start:0x80392D60 end:0x80396E60 + .sdata start:0x803E3658 end:0x803E37F8 + .sbss start:0x803EE188 end:0x803EE198 + .sdata2 start:0x803EEB60 end:0x803EEBD0 + +sysCommon/shpLightFlares.cpp: + .text start:0x80035E20 end:0x8003640C + .data start:0x8022E128 end:0x8022E140 + .sdata start:0x803E37F8 end:0x803E3840 + .sdata2 start:0x803EEBD0 end:0x803EEBF0 + +sysCommon/shpObjColl.cpp: + .text start:0x8003640C end:0x8003675C + .data start:0x8022E140 end:0x8022E150 + .sdata start:0x803E3840 end:0x803E3878 + .sdata2 start:0x803EEBF0 end:0x803EEBF8 + +sysCommon/shpRoutes.cpp: + .text start:0x8003675C end:0x80037854 + .data start:0x8022E150 end:0x8022E340 + .sdata start:0x803E3878 end:0x803E3918 + .sdata2 start:0x803EEBF8 end:0x803EEC20 + +sysCommon/sysMath.cpp: + .text start:0x80037854 end:0x8003E0A4 + .sdata start:0x803E3918 end:0x803E3930 + .sdata2 start:0x803EEC20 end:0x803EEC60 + +sysCommon/matMath.cpp: + .text start:0x8003E0A4 end:0x8003F0B4 + .ctors start:0x80227528 end:0x8022752C + .bss start:0x80396E60 end:0x8039EEA0 + .sdata start:0x803E3930 end:0x803E3938 + .sdata2 start:0x803EEC60 end:0x803EEC70 + +sysCommon/stdSystem.cpp: + .text start:0x8003F0B4 end:0x80040930 + .data start:0x8022E340 end:0x8022E550 + .sdata start:0x803E3938 end:0x803E39A0 + .sdata2 start:0x803EEC70 end:0x803EEC78 + +sysCommon/node.cpp: + .text start:0x80040930 end:0x80040CDC + .data start:0x8022E550 end:0x8022E620 + .sdata start:0x803E39A0 end:0x803E39E0 + .sbss start:0x803EE198 end:0x803EE1A0 + +sysCommon/timers.cpp: + .text start:0x80040CDC end:0x80040D08 + +sysCommon/controller.cpp: + .text start:0x80040D08 end:0x80040ED4 + .data start:0x8022E620 end:0x8022E6B8 + .sdata start:0x803E39E0 end:0x803E3A10 + .sdata2 start:0x803EEC78 end:0x803EEC88 + +sysCommon/cmdStream.cpp: + .text start:0x80040ED4 end:0x800418DC + .sbss start:0x803EE1A0 end:0x803EE1A8 + +sysCommon/camera.cpp: + .text start:0x800418DC end:0x80043C44 + .data start:0x8022E6B8 end:0x8022E6D0 + .sdata start:0x803E3A10 end:0x803E3A90 + .sdata2 start:0x803EEC88 end:0x803EECE0 + +sysCommon/atx.cpp: + .text start:0x80043C44 end:0x800441B4 + .data start:0x8022E6D0 end:0x8022E7F0 + .sdata start:0x803E3A90 end:0x803E3AB8 + +sysCommon/id32.cpp: + .text start:0x800441B4 end:0x800444EC + +sysDolphin/texture.cpp: + .text start:0x800444EC end:0x80044BF0 + .data start:0x8022E7F0 end:0x8022E8C0 + .sdata start:0x803E3AB8 end:0x803E3AF0 + .sdata2 start:0x803EECE0 end:0x803EECF8 + +sysDolphin/system.cpp: + .text start:0x80044BF0 end:0x800475FC + .ctors start:0x8022752C end:0x80227530 + .data start:0x8022E8C0 end:0x802AAFE0 + .bss start:0x8039EEA0 end:0x803A3A20 + .sdata start:0x803E3AF0 end:0x803E3BC8 + .sbss start:0x803EE1A8 end:0x803EE1D0 + .sdata2 start:0x803EECF8 end:0x803EED18 + +sysDolphin/sysNew.cpp: + .text start:0x800475FC end:0x800478B0 + .data start:0x802AAFE0 end:0x802AB050 + +sysDolphin/controllerMgr.cpp: + .text start:0x800478B0 end:0x80047BB4 + .data start:0x802AB050 end:0x802AB090 + .bss start:0x803A3A20 end:0x803A3A50 + .sdata start:0x803E3BC8 end:0x803E3BD0 + +sysDolphin/dgxGraphics.cpp: + .text start:0x80047BB4 end:0x8004D264 + .ctors start:0x80227530 end:0x80227534 + .data start:0x802AB090 end:0x802AB8A8 + .bss start:0x803A3A50 end:0x803A3A58 + .sdata start:0x803E3BD0 end:0x803E3C58 + .sbss start:0x803EE1D0 end:0x803EE1F8 + .sdata2 start:0x803EED18 end:0x803EED48 + +sysDolphin/gameApp.cpp: + .text start:0x8004D264 end:0x8004D298 + +plugPikiColin/cardutil.cpp: + .text start:0x8004D298 end:0x8004E55C + .data start:0x802AB8A8 end:0x802AB8D0 + .bss start:0x803A3A58 end:0x803A3DD8 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004E55C end:0x80050980 + .rodata start:0x802278D8 end:0x80227938 + .data start:0x802AB8D0 end:0x802AB9B8 + .sdata start:0x803E3C58 end:0x803E3D10 + .sdata2 start:0x803EED48 end:0x803EED60 + +plugPikiColin/animMgr.cpp: + .text start:0x80050980 end:0x80051EB4 + .data start:0x802AB9B8 end:0x802ABBA8 + .sdata start:0x803E3D10 end:0x803E3D90 + .sdata2 start:0x803EED60 end:0x803EED78 + +plugPikiColin/gameflow.cpp: + .text start:0x80051EB4 end:0x80053BAC + .ctors start:0x80227534 end:0x80227538 + .data start:0x802ABBA8 end:0x802AC1C0 + .bss start:0x803A3DD8 end:0x803A4140 + .sdata start:0x803E3D90 end:0x803E3EB8 + .sbss start:0x803EE1F8 end:0x803EE200 + .sdata2 start:0x803EED78 end:0x803EEDD0 + +plugPikiColin/game.cpp: + .text start:0x80053BAC end:0x800546AC + .ctors start:0x80227538 end:0x8022753C + .data start:0x802AC1C0 end:0x802AC408 + .bss start:0x803A4140 end:0x803A43A0 + .sdata start:0x803E3EB8 end:0x803E3F50 + .sdata2 start:0x803EEDD0 end:0x803EEDD8 + +plugPikiColin/gamePrefs.cpp: + .text start:0x800546AC end:0x80055584 + .data start:0x802AC408 end:0x802AC498 + .sdata start:0x803E3F50 end:0x803E3F78 + +plugPikiColin/gameSetup.cpp: + .text start:0x80055584 end:0x80055A8C + .data start:0x802AC498 end:0x802AD150 + .sdata start:0x803E3F78 end:0x803E3FF0 + +plugPikiColin/cardSelect.cpp: + .text start:0x80055A8C end:0x8005615C + .data start:0x802AD150 end:0x802AD310 + .sdata start:0x803E3FF0 end:0x803E4048 + .sbss start:0x803EE200 end:0x803EE208 + .sdata2 start:0x803EEDD8 end:0x803EEDE8 + +plugPikiColin/mapSelect.cpp: + .text start:0x8005615C end:0x80057550 + .data start:0x802AD310 end:0x802AD5D0 + .sdata start:0x803E4048 end:0x803E40C0 + .sbss start:0x803EE208 end:0x803EE210 + .sdata2 start:0x803EEDE8 end:0x803EEDF8 + +plugPikiColin/newPikiGame.cpp: + .text start:0x80057550 end:0x8005B93C + .rodata start:0x80227938 end:0x80227960 + .data start:0x802AD5D0 end:0x802ADA88 + .bss start:0x803A43A0 end:0x803A43E0 + .sdata start:0x803E40C0 end:0x803E4228 + .sbss start:0x803EE210 end:0x803EE248 + .sdata2 start:0x803EEDF8 end:0x803EEE60 + +plugPikiColin/introGame.cpp: + .text start:0x8005B93C end:0x8005C1B0 + .data start:0x802ADA88 end:0x802ADCE0 + .sdata start:0x803E4228 end:0x803E42E0 + .sbss start:0x803EE248 end:0x803EE250 + .sdata2 start:0x803EEE60 end:0x803EEE80 + +plugPikiColin/gameExit.cpp: + .text start:0x8005C1B0 end:0x8005C2A0 + .data start:0x802ADCE0 end:0x802ADE00 + .sdata start:0x803E42E0 end:0x803E4330 + +plugPikiColin/gauges.cpp: + .text start:0x8005C2A0 end:0x8005DC08 + .ctors start:0x8022753C end:0x80227540 + .data start:0x802ADE00 end:0x802ADE18 + .sdata start:0x803E4330 end:0x803E4380 + .sbss start:0x803EE250 end:0x803EE268 + .sdata2 start:0x803EEE80 end:0x803EEF00 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005DC08 end:0x8005E218 + .data start:0x802ADE18 end:0x802AE060 + .sdata start:0x803E4380 end:0x803E4400 + .sbss start:0x803EE268 end:0x803EE270 + .sdata2 start:0x803EEF00 end:0x803EEF10 + +plugPikiColin/gui.cpp: + .text start:0x8005E218 end:0x8005F5A0 + .data start:0x802AE060 end:0x802AE1A0 + .sdata start:0x803E4400 end:0x803E4450 + .sdata2 start:0x803EEF10 end:0x803EEF40 + +plugPikiColin/parameters.cpp: + .text start:0x8005F5A0 end:0x8005F910 + .data start:0x802AE1A0 end:0x802AE1D0 + .sdata start:0x803E4450 end:0x803E4458 + +plugPikiColin/plugPiki.cpp: + .text start:0x8005F910 end:0x80060324 + .data start:0x802AE1D0 end:0x802AE440 + .sdata start:0x803E4458 end:0x803E44E8 + .sdata2 start:0x803EEF40 end:0x803EEF50 + +plugPikiColin/titles.cpp: + .text start:0x80060324 end:0x80061D70 + .data start:0x802AE440 end:0x802AE718 + .sdata start:0x803E44E8 end:0x803E45D8 + .sbss start:0x803EE270 end:0x803EE2B0 + .sdata2 start:0x803EEF50 end:0x803EEFB8 + +plugPikiColin/ninLogo.cpp: + .text start:0x80061D70 end:0x800622E0 + .data start:0x802AE718 end:0x802AE888 + .sdata start:0x803E45D8 end:0x803E4628 + .sbss start:0x803EE2B0 end:0x803EE2B8 + .sdata2 start:0x803EEFB8 end:0x803EEFD0 + +plugPikiColin/mapMgr.cpp: + .text start:0x800622E0 end:0x8006A31C + .ctors start:0x80227540 end:0x80227544 + .data start:0x802AE888 end:0x802AEFA0 + .bss start:0x803A43E0 end:0x803A43F8 + .sdata start:0x803E4628 end:0x803E4868 + .sbss start:0x803EE2B8 end:0x803EE2D0 + .sdata2 start:0x803EEFD0 end:0x803EF078 + +plugPikiColin/dayMgr.cpp: + .text start:0x8006A31C end:0x8007053C + .data start:0x802AEFA0 end:0x802AF820 + .sdata start:0x803E4868 end:0x803E4AF8 + .sdata2 start:0x803EF078 end:0x803EF0D0 + +plugPikiColin/cinePlayer.cpp: + .text start:0x8007053C end:0x80073C84 + .data start:0x802AF820 end:0x802AFA80 + .bss start:0x803A43F8 end:0x803A4800 + .sdata start:0x803E4AF8 end:0x803E4D90 + .sdata2 start:0x803EF0D0 end:0x803EF0F8 + +plugPikiColin/lightPool.cpp: + .text start:0x80073C84 end:0x800743E8 + .data start:0x802AFA80 end:0x802AFB40 + .sdata start:0x803E4D90 end:0x803E4DF0 + .sdata2 start:0x803EF0F8 end:0x803EF128 + +plugPikiColin/memoryCard.cpp: + .text start:0x800743E8 end:0x80077954 + .data start:0x802AFB40 end:0x802B1840 + .bss start:0x803A4800 end:0x803D6880 + .sdata start:0x803E4DF0 end:0x803E4E38 + +plugPikiColin/moviePlayer.cpp: + .text start:0x80077954 end:0x80078AB0 + .data start:0x802B1840 end:0x802B2440 + .sdata start:0x803E4E38 end:0x803E4E78 + .sdata2 start:0x803EF128 end:0x803EF148 + +plugPikiColin/movSample.cpp: + .text start:0x80078AB0 end:0x80079964 + .data start:0x802B2440 end:0x802B2670 + .bss start:0x803D6880 end:0x803D7BD0 + .sdata start:0x803E4E78 end:0x803E4EC8 + .sbss start:0x803EE2D0 end:0x803EE2D8 + .sdata2 start:0x803EF148 end:0x803EF170 + +plugPikiKando/omake.cpp: + .text start:0x80079964 end:0x8007C118 + .data start:0x802B2670 end:0x802B2770 + .sdata start:0x803E4EC8 end:0x803E4F08 + .sbss start:0x803EE2D8 end:0x803EE2E0 + .sdata2 start:0x803EF170 end:0x803EF1C8 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007C118 end:0x8007C37C + .data start:0x802B2770 end:0x802B2800 + .sdata start:0x803E4F08 end:0x803E4F48 + .sbss start:0x803EE2E0 end:0x803EE2E8 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007C37C end:0x8007D52C + .data start:0x802B2800 end:0x802B2CE0 + .sdata start:0x803E4F48 end:0x803E4FE8 + .sdata2 start:0x803EF1C8 end:0x803EF1D8 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007D52C end:0x8007D740 + .data start:0x802B2CE0 end:0x802B2DB8 + .sdata start:0x803E4FE8 end:0x803E5018 + .sdata2 start:0x803EF1D8 end:0x803EF1E0 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007D740 end:0x8007D880 + .data start:0x802B2DB8 end:0x802B2E70 + .sdata start:0x803E5018 end:0x803E5030 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007D880 end:0x8007DB44 + .data start:0x802B2E70 end:0x802B2EE8 + .sdata start:0x803E5030 end:0x803E5050 + .sdata2 start:0x803EF1E0 end:0x803EF1F0 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007DB44 end:0x8007DFB4 + .data start:0x802B2EE8 end:0x802B32D0 + .sdata start:0x803E5050 end:0x803E50A0 + .sbss start:0x803EE2E8 end:0x803EE308 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007DFB4 end:0x8007EDDC + .data start:0x802B32D0 end:0x802B3790 + .sdata start:0x803E50A0 end:0x803E5148 + .sdata2 start:0x803EF1F0 end:0x803EF208 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007EDDC end:0x800801E8 + .data start:0x802B3790 end:0x802B38F8 + .sdata start:0x803E5148 end:0x803E5208 + .sdata2 start:0x803EF208 end:0x803EF260 + +plugPikiKando/globalShapes.cpp: + .text start:0x800801E8 end:0x800802EC + .data start:0x802B38F8 end:0x802B3998 + .sbss start:0x803EE308 end:0x803EE320 + +plugPikiKando/playerState.cpp: + .text start:0x800802EC end:0x80082D70 + .rodata start:0x80227960 end:0x80227990 + .data start:0x802B3998 end:0x802B3A78 + .sdata start:0x803E5208 end:0x803E52A8 + .sbss start:0x803EE320 end:0x803EE328 + .sdata2 start:0x803EF260 end:0x803EF268 + +plugPikiKando/gameDemo.cpp: + .text start:0x80082D70 end:0x80083A48 + .data start:0x802B3A78 end:0x802B3E18 + .sdata start:0x803E52A8 end:0x803E5320 + .sbss start:0x803EE328 end:0x803EE330 + .sdata2 start:0x803EF268 end:0x803EF288 + +plugPikiKando/demoInvoker.cpp: + .text start:0x80083A48 end:0x80084424 + .data start:0x802B3E18 end:0x802B3E48 + .sdata2 start:0x803EF288 end:0x803EF2A0 + +plugPikiKando/demoEvent.cpp: + .text start:0x80084424 end:0x80084874 + .data start:0x802B3E48 end:0x802B3E88 + .sbss start:0x803EE330 end:0x803EE338 + +plugPikiKando/resultFlag.cpp: + .text start:0x80084874 end:0x800851F0 + .rodata start:0x80227990 end:0x802279A0 + .data start:0x802B3E88 end:0x802B4378 + .sdata start:0x803E5320 end:0x803E5330 + +plugPikiKando/aiConstants.cpp: + .text start:0x800851F0 end:0x800856D0 + .data start:0x802B4378 end:0x802B4498 + .sdata start:0x803E5330 end:0x803E53D8 + .sbss start:0x803EE338 end:0x803EE340 + .sdata2 start:0x803EF2A0 end:0x803EF2B0 + +plugPikiKando/kio.cpp: + .text start:0x800856D0 end:0x80085A50 + .sdata start:0x803E53D8 end:0x803E53E8 + .sbss start:0x803EE340 end:0x803EE350 + +plugPikiKando/keyConfig.cpp: + .text start:0x80085A50 end:0x80085D78 + .data start:0x802B4498 end:0x802B45D8 + .sdata start:0x803E53E8 end:0x803E5450 + .sbss start:0x803EE350 end:0x803EE358 + +plugPikiKando/aiPerf.cpp: + .text start:0x80085D78 end:0x80087838 + .rodata start:0x802279A0 end:0x802279B8 + .data start:0x802B45D8 end:0x802B4AF0 + .sdata start:0x803E5450 end:0x803E5498 + .sbss start:0x803EE358 end:0x803EE390 + .sdata2 start:0x803EF2B0 end:0x803EF2C0 + +plugPikiKando/courseDebug.cpp: + .text start:0x80087838 end:0x80087A20 + .data start:0x802B4AF0 end:0x802B4C00 + .sdata start:0x803E5498 end:0x803E54D8 + .sbss start:0x803EE390 end:0x803EE3A0 + +plugPikiKando/memStat.cpp: + .text start:0x80087A20 end:0x80088110 + .data start:0x802B4C00 end:0x802B4CB8 + .sdata start:0x803E54D8 end:0x803E5510 + .sbss start:0x803EE3A0 end:0x803EE3A8 + +plugPikiKando/collInfo.cpp: + .text start:0x80088110 end:0x8008B56C + .ctors start:0x80227544 end:0x80227548 + .data start:0x802B4CB8 end:0x802B4D80 + .bss start:0x803D7BD0 end:0x803D7C10 + .sdata start:0x803E5510 end:0x803E5528 + .sdata2 start:0x803EF2C0 end:0x803EF2F8 + +plugPikiKando/complexCreature.cpp: + .text start:0x8008B56C end:0x8008B580 + +plugPikiKando/creature.cpp: + .text start:0x8008B580 end:0x8008EF50 + .data start:0x802B4D80 end:0x802B4F08 + .bss start:0x803D7C10 end:0x803D8410 + .sdata start:0x803E5528 end:0x803E56A0 + .sbss start:0x803EE3A8 end:0x803EE3B8 + .sdata2 start:0x803EF2F8 end:0x803EF358 + +plugPikiKando/creatureCollision.cpp: + .text start:0x8008EF50 end:0x8008F6B8 + .sdata start:0x803E56A0 end:0x803E56A8 + .sdata2 start:0x803EF358 end:0x803EF370 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x8008F6B8 end:0x8008F8C8 + .data start:0x802B4F08 end:0x802B5048 + .sdata start:0x803E56A8 end:0x803E56E8 + +plugPikiKando/creatureMove.cpp: + .text start:0x8008F8C8 end:0x80090FC0 + .sdata start:0x803E56E8 end:0x803E5738 + .sdata2 start:0x803EF370 end:0x803EF3B8 + +plugPikiKando/creatureStick.cpp: + .text start:0x80090FC0 end:0x800936BC + .data start:0x802B5048 end:0x802B51E0 + .sdata start:0x803E5738 end:0x803E57B8 + .sdata2 start:0x803EF3B8 end:0x803EF3E0 + +plugPikiKando/dualCreature.cpp: + .text start:0x800936BC end:0x80094004 + .data start:0x802B51E0 end:0x802B5508 + .sdata start:0x803E57B8 end:0x803E5840 + .sdata2 start:0x803EF3E0 end:0x803EF410 + +plugPikiKando/dynCreature.cpp: + .text start:0x80094004 end:0x800957A4 + .data start:0x802B5508 end:0x802B5788 + .sdata start:0x803E5840 end:0x803E5948 + .sbss start:0x803EE3B8 end:0x803EE3C0 + .sdata2 start:0x803EF410 end:0x803EF468 + +plugPikiKando/eventListener.cpp: + .text start:0x800957A4 end:0x80095894 + .data start:0x802B5788 end:0x802B5828 + .sdata start:0x803E5948 end:0x803E5968 + +plugPikiKando/fastGrid.cpp: + .text start:0x80095894 end:0x80095EA0 + .sdata start:0x803E5968 end:0x803E5978 + .sbss start:0x803EE3C0 end:0x803EE3C8 + +plugPikiKando/ropeCreature.cpp: + .text start:0x80095EA0 end:0x80096234 + .data start:0x802B5828 end:0x802B59C8 + .sdata start:0x803E5978 end:0x803E5998 + .sdata2 start:0x803EF468 end:0x803EF488 + +plugPikiKando/objectTypes.cpp: + .text start:0x80096234 end:0x80096310 + .data start:0x802B59C8 end:0x802B5CF0 + .sdata start:0x803E5998 end:0x803E5A70 + +plugPikiKando/pelletMgr.cpp: + .text start:0x80096310 end:0x8009AE50 + .rodata start:0x802279B8 end:0x802279D8 + .data start:0x802B5CF0 end:0x802B65B8 + .sdata start:0x803E5A70 end:0x803E5CC8 + .sbss start:0x803EE3C8 end:0x803EE3D8 + .sdata2 start:0x803EF488 end:0x803EF510 + +plugPikiKando/animPellet.cpp: + .text start:0x8009AE50 end:0x8009B624 + .data start:0x802B65B8 end:0x802B6758 + .sdata start:0x803E5CC8 end:0x803E5D58 + .sdata2 start:0x803EF510 end:0x803EF518 + +plugPikiKando/genPellet.cpp: + .text start:0x8009B624 end:0x8009B934 + .data start:0x802B6758 end:0x802B6830 + .sdata start:0x803E5D58 end:0x803E5D80 + +plugPikiKando/pelletState.cpp: + .text start:0x8009B934 end:0x8009CA0C + .data start:0x802B6830 end:0x802B6CF8 + .sdata start:0x803E5D80 end:0x803E5E10 + .sdata2 start:0x803EF518 end:0x803EF550 + +plugPikiKando/workObject.cpp: + .text start:0x8009CA0C end:0x800A10C0 + .data start:0x802B6CF8 end:0x802B7978 + .sdata start:0x803E5E10 end:0x803E5FB0 + .sbss start:0x803EE3D8 end:0x803EE3E0 + .sdata2 start:0x803EF550 end:0x803EF5B0 + +plugPikiKando/routeMgr.cpp: + .text start:0x800A10C0 end:0x800A50D4 + .data start:0x802B7978 end:0x802B7AC8 + .sdata start:0x803E5FB0 end:0x803E5FF8 + .sbss start:0x803EE3E0 end:0x803EE3E8 + .sdata2 start:0x803EF5B0 end:0x803EF5F0 + +plugPikiKando/seMgr.cpp: + .text start:0x800A50D4 end:0x800A58A8 + .data start:0x802B7AC8 end:0x802B7C78 + .sdata start:0x803E5FF8 end:0x803E6080 + .sbss start:0x803EE3E8 end:0x803EE3F0 + .sdata2 start:0x803EF5F0 end:0x803EF608 + +plugPikiKando/seConstants.cpp: + .text start:0x800A58A8 end:0x800A5A00 + .data start:0x802B7C78 end:0x802B7D78 + .sdata start:0x803E6080 end:0x803E60D8 + .sdata2 start:0x803EF608 end:0x803EF618 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A5A00 end:0x800A733C + .rodata start:0x802279D8 end:0x80227A00 + .data start:0x802B7D78 end:0x802BADF0 + .sdata start:0x803E60D8 end:0x803E61A8 + .sbss start:0x803EE3F0 end:0x803EE3F8 + .sdata2 start:0x803EF618 end:0x803EF640 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A733C end:0x800A76EC + .data start:0x802BADF0 end:0x802BAE10 + .sbss start:0x803EE3F8 end:0x803EE410 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803EE410 end:0x803EE418 + +plugPikiKando/cPlate.cpp: + .text start:0x800A76EC end:0x800A8E24 + .data start:0x802BAE10 end:0x802BAF50 + .sdata start:0x803E61A8 end:0x803E6288 + .sdata2 start:0x803EF640 end:0x803EF690 + +plugPikiKando/aiStone.cpp: + .text start:0x800A8E24 end:0x800A9A88 + .data start:0x802BAF50 end:0x802BB058 + .sdata start:0x803E6288 end:0x803E62E8 + .sdata2 start:0x803EF690 end:0x803EF6E0 + +plugPikiKando/aiActions.cpp: + .text start:0x800A9A88 end:0x800AA378 + .data start:0x802BB058 end:0x802BB340 + .sdata start:0x803E62E8 end:0x803E6370 + .sdata2 start:0x803EF6E0 end:0x803EF718 + +plugPikiKando/aiAttack.cpp: + .text start:0x800AA378 end:0x800AC5AC + .data start:0x802BB340 end:0x802BB580 + .sdata start:0x803E6370 end:0x803E6428 + .sdata2 start:0x803EF718 end:0x803EF778 + +plugPikiKando/aiBore.cpp: + .text start:0x800AC5AC end:0x800AE39C + .rodata start:0x80227A00 end:0x80227A60 + .data start:0x802BB580 end:0x802BB9A8 + .sdata start:0x803E6428 end:0x803E6498 + .sdata2 start:0x803EF778 end:0x803EF7B0 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AE39C end:0x800AE82C + .data start:0x802BB9A8 end:0x802BBAF8 + .sdata start:0x803E6498 end:0x803E64B8 + .sdata2 start:0x803EF7B0 end:0x803EF7C0 + +plugPikiKando/aiBou.cpp: + .text start:0x800AE82C end:0x800AEFE0 + .data start:0x802BBAF8 end:0x802BBBE0 + .sdata start:0x803E64B8 end:0x803E6500 + .sdata2 start:0x803EF7C0 end:0x803EF7E8 + +plugPikiKando/aiBridge.cpp: + .text start:0x800AEFE0 end:0x800B027C + .rodata start:0x80227A60 end:0x80227A70 + .data start:0x802BBBE0 end:0x802BBD48 + .sdata start:0x803E6500 end:0x803E6550 + .sdata2 start:0x803EF7E8 end:0x803EF830 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800B027C end:0x800B0DC0 + .data start:0x802BBD48 end:0x802BBEB0 + .sdata start:0x803E6550 end:0x803E6590 + .sdata2 start:0x803EF830 end:0x803EF868 + +plugPikiKando/aiTransport.cpp: + .text start:0x800B0DC0 end:0x800B682C + .rodata start:0x80227A70 end:0x80227A98 + .data start:0x802BBEB0 end:0x802BC060 + .sdata start:0x803E6590 end:0x803E6788 + .sdata2 start:0x803EF868 end:0x803EF908 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B682C end:0x800B7A04 + .data start:0x802BC060 end:0x802BC1D0 + .sdata start:0x803E6788 end:0x803E67F8 + .sdata2 start:0x803EF908 end:0x803EF958 + +plugPikiKando/aiChase.cpp: + .text start:0x800B7A04 end:0x800B7E28 + .data start:0x802BC1D0 end:0x802BC300 + .sdata start:0x803E67F8 end:0x803E6838 + .sdata2 start:0x803EF958 end:0x803EF990 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B7E28 end:0x800B9C10 + .data start:0x802BC300 end:0x802BC448 + .sdata start:0x803E6838 end:0x803E68D0 + .sdata2 start:0x803EF990 end:0x803EFA00 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800B9C10 end:0x800BA3C8 + .data start:0x802BC448 end:0x802BC558 + .sdata start:0x803E68D0 end:0x803E6918 + .sdata2 start:0x803EFA00 end:0x803EFA38 + +plugPikiKando/aiEnter.cpp: + .text start:0x800BA3C8 end:0x800BAD5C + .data start:0x802BC558 end:0x802BC680 + .sdata start:0x803E6918 end:0x803E6968 + .sdata2 start:0x803EFA38 end:0x803EFA90 + +plugPikiKando/aiEscape.cpp: + .text start:0x800BAD5C end:0x800BB29C + .data start:0x802BC680 end:0x802BC7C0 + .sdata start:0x803E6968 end:0x803E69C0 + .sdata2 start:0x803EFA90 end:0x803EFAD0 + +plugPikiKando/aiExit.cpp: + .text start:0x800BB29C end:0x800BB7F4 + .data start:0x802BC7C0 end:0x802BC890 + .sdata start:0x803E69C0 end:0x803E6A38 + .sdata2 start:0x803EFAD0 end:0x803EFB08 + +plugPikiKando/aiMine.cpp: + .text start:0x800BB7F4 end:0x800BBEBC + .data start:0x802BC890 end:0x802BC9E8 + .sdata start:0x803E6A38 end:0x803E6A80 + .sdata2 start:0x803EFB08 end:0x803EFB18 + +plugPikiKando/aiFormation.cpp: + .text start:0x800BBEBC end:0x800BCC98 + .data start:0x802BC9E8 end:0x802BCB20 + .sdata start:0x803E6A80 end:0x803E6AD8 + .sdata2 start:0x803EFB18 end:0x803EFB80 + +plugPikiKando/aiFree.cpp: + .text start:0x800BCC98 end:0x800BD6C4 + .data start:0x802BCB20 end:0x802BCC48 + .sdata start:0x803E6AD8 end:0x803E6B30 + .sdata2 start:0x803EFB80 end:0x803EFBA8 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BD6C4 end:0x800BDC90 + .data start:0x802BCC48 end:0x802BCD58 + .sdata start:0x803E6B30 end:0x803E6B78 + .sdata2 start:0x803EFBA8 end:0x803EFBE0 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BDC90 end:0x800BF258 + .data start:0x802BCD58 end:0x802BCE30 + .sdata start:0x803E6B78 end:0x803E6BC8 + .sdata2 start:0x803EFBE0 end:0x803EFC28 + +plugPikiKando/aiPick.cpp: + .text start:0x800BF258 end:0x800BFAC0 + .data start:0x802BCE30 end:0x802BD040 + .sdata start:0x803E6BC8 end:0x803E6C18 + .sdata2 start:0x803EFC28 end:0x803EFC38 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800BFAC0 end:0x800BFE9C + .data start:0x802BD040 end:0x802BD250 + .sdata start:0x803E6C18 end:0x803E6C58 + +plugPikiKando/aiPullout.cpp: + .text start:0x800BFE9C end:0x800C081C + .data start:0x802BD250 end:0x802BD458 + .sdata start:0x803E6C58 end:0x803E6CB8 + .sdata2 start:0x803EFC38 end:0x803EFC60 + +plugPikiKando/aiPush.cpp: + .text start:0x800C081C end:0x800C1220 + .data start:0x802BD458 end:0x802BD5C8 + .sdata start:0x803E6CB8 end:0x803E6CF0 + .sdata2 start:0x803EFC60 end:0x803EFC90 + +plugPikiKando/aiPut.cpp: + .text start:0x800C1220 end:0x800C323C + .data start:0x802BD5C8 end:0x802BD7A0 + .sdata start:0x803E6CF0 end:0x803E6D80 + .sdata2 start:0x803EFC90 end:0x803EFCD8 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C323C end:0x800C3B14 + .data start:0x802BD7A0 end:0x802BD948 + .sdata start:0x803E6D80 end:0x803E6E28 + .sdata2 start:0x803EFCD8 end:0x803EFD18 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C3B14 end:0x800C4650 + .data start:0x802BD948 end:0x802BDA68 + .sdata start:0x803E6E28 end:0x803E6E88 + .sdata2 start:0x803EFD18 end:0x803EFD58 + +plugPikiKando/aiRope.cpp: + .text start:0x800C4650 end:0x800C4998 + .data start:0x802BDA68 end:0x802BDB38 + .sdata start:0x803E6E88 end:0x803E6EC8 + .sdata2 start:0x803EFD58 end:0x803EFD78 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C4998 end:0x800C5480 + .data start:0x802BDB38 end:0x802BDD20 + .sdata start:0x803E6EC8 end:0x803E6F20 + .sdata2 start:0x803EFD78 end:0x803EFDA8 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C5480 end:0x800C58D4 + .data start:0x802BDD20 end:0x802BDE98 + .sdata start:0x803E6F20 end:0x803E6F78 + .sdata2 start:0x803EFDA8 end:0x803EFDD0 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C58D4 end:0x800C6310 + .data start:0x802BDE98 end:0x802BDF98 + .sdata start:0x803E6F78 end:0x803E6FE0 + .sdata2 start:0x803EFDD0 end:0x803EFE20 + +plugPikiKando/aiAction.cpp: + .text start:0x800C6310 end:0x800C7F00 + .data start:0x802BDF98 end:0x802BE318 + .sdata start:0x803E6FE0 end:0x803E7060 + .sdata2 start:0x803EFE20 end:0x803EFE28 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C7F00 end:0x800C9000 + .ctors start:0x80227548 end:0x8022754C + .data start:0x802BE318 end:0x802BE560 + .bss start:0x803D8410 end:0x803D8438 + .sdata start:0x803E7060 end:0x803E70F0 + .sdata2 start:0x803EFE28 end:0x803EFE38 + +plugPikiKando/piki.cpp: + .text start:0x800C9000 end:0x800D0458 + .ctors start:0x8022754C end:0x80227550 + .data start:0x802BE560 end:0x802BEC30 + .bss start:0x803D8438 end:0x803D8468 + .sdata start:0x803E70F0 end:0x803E7200 + .sbss start:0x803EE418 end:0x803EE420 + .sdata2 start:0x803EFE38 end:0x803EFEC8 + +plugPikiKando/odoMeter.cpp: + .text start:0x800D0458 end:0x800D05A4 + .sdata2 start:0x803EFEC8 end:0x803EFEE0 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800D05A4 end:0x800D0924 + .sdata2 start:0x803EFEE0 end:0x803EFEF0 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800D0924 end:0x800D1D3C + .data start:0x802BEC30 end:0x802BEEA0 + .sdata start:0x803E7200 end:0x803E73C0 + .sbss start:0x803EE420 end:0x803EE428 + .sdata2 start:0x803EFEF0 end:0x803EFF98 + +plugPikiKando/pikiState.cpp: + .text start:0x800D1D3C end:0x800DB5A0 + .rodata start:0x80227A98 end:0x80227B40 + .data start:0x802BEEA0 end:0x802C0538 + .sdata start:0x803E73C0 end:0x803E7810 + .sdata2 start:0x803EFF98 end:0x803F0068 + +plugPikiKando/viewPiki.cpp: + .text start:0x800DB5A0 end:0x800DDA18 + .rodata start:0x80227B40 end:0x80227B58 + .data start:0x802C0538 end:0x802C07E0 + .bss start:0x803D8468 end:0x803D8478 + .sdata start:0x803E7810 end:0x803E7910 + .sdata2 start:0x803F0068 end:0x803F00F0 + +plugPikiKando/conditions.cpp: + .text start:0x800DDA18 end:0x800DDAA4 + .data start:0x802C07E0 end:0x802C0860 + .sdata start:0x803E7910 end:0x803E7930 + +plugPikiKando/generator.cpp: + .text start:0x800DDAA4 end:0x800E1C08 + .data start:0x802C0860 end:0x802C0E50 + .sdata start:0x803E7930 end:0x803E7A88 + .sbss start:0x803EE428 end:0x803EE450 + .sdata2 start:0x803F00F0 end:0x803F0120 + +plugPikiKando/generatorCache.cpp: + .text start:0x800E1C08 end:0x800E32FC + .data start:0x802C0E50 end:0x802C1128 + .sdata start:0x803E7A88 end:0x803E7AD0 + .sbss start:0x803EE450 end:0x803EE458 + .sdata2 start:0x803F0120 end:0x803F0130 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E32FC end:0x800E616C + .data start:0x802C1128 end:0x802C14A0 + .sdata start:0x803E7AD0 end:0x803E7B28 + .sdata2 start:0x803F0130 end:0x803F0150 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E616C end:0x800E74F0 + .data start:0x802C14A0 end:0x802C1518 + .sdata start:0x803E7B28 end:0x803E7B38 + .sdata2 start:0x803F0150 end:0x803F0160 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E74F0 end:0x800E7548 + .data start:0x802C1518 end:0x802C1558 + .sdata start:0x803E7B38 end:0x803E7B40 + +plugPikiKando/itemGem.cpp: + .text start:0x800E7548 end:0x800E7834 + .data start:0x802C1558 end:0x802C15E8 + .sdata2 start:0x803F0160 end:0x803F0190 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E7834 end:0x800E9044 + .data start:0x802C15E8 end:0x802C1D10 + .sdata start:0x803E7B40 end:0x803E7BF8 + .sdata2 start:0x803F0190 end:0x803F01F8 + +plugPikiKando/kusaItem.cpp: + .text start:0x800E9044 end:0x800E98D4 + .data start:0x802C1D10 end:0x802C2118 + .sdata start:0x803E7BF8 end:0x803E7C70 + .sdata2 start:0x803F01F8 end:0x803F0210 + +plugPikiKando/fishItem.cpp: + .text start:0x800E98D4 end:0x800EA284 + .data start:0x802C2118 end:0x802C2388 + .sdata start:0x803E7C70 end:0x803E7D08 + .sdata2 start:0x803F0210 end:0x803F0240 + +plugPikiKando/ufoItem.cpp: + .text start:0x800EA284 end:0x800ECA18 + .rodata start:0x80227B58 end:0x80227C00 + .data start:0x802C2388 end:0x802C2850 + .sdata start:0x803E7D08 end:0x803E7E50 + .sdata2 start:0x803F0240 end:0x803F0290 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800ECA18 end:0x800ED3FC + .data start:0x802C2850 end:0x802C2980 + .sdata start:0x803E7E50 end:0x803E7EB8 + .sdata2 start:0x803F0290 end:0x803F02A8 + +plugPikiKando/bombItem.cpp: + .text start:0x800ED3FC end:0x800ED980 + .data start:0x802C2980 end:0x802C2C00 + .sdata start:0x803E7EB8 end:0x803E7F00 + .sdata2 start:0x803F02A8 end:0x803F02B8 + +plugPikiKando/goalItem.cpp: + .text start:0x800ED980 end:0x800EF894 + .rodata start:0x80227C00 end:0x80227C28 + .data start:0x802C2C00 end:0x802C3100 + .sdata start:0x803E7F00 end:0x803E7FB0 + .sbss start:0x803EE458 end:0x803EE460 + .sdata2 start:0x803F02B8 end:0x803F0318 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800EF894 end:0x800F0690 + .data start:0x802C3100 end:0x802C34B0 + .sdata start:0x803E7FB0 end:0x803E8038 + .sdata2 start:0x803F0318 end:0x803F0358 + +plugPikiKando/keyItem.cpp: + .text start:0x800F0690 end:0x800F0E68 + .data start:0x802C34B0 end:0x802C3848 + .sdata start:0x803E8038 end:0x803E8098 + .sdata2 start:0x803F0358 end:0x803F03A8 + +plugPikiKando/ropeItem.cpp: + .text start:0x800F0E68 end:0x800F125C + .data start:0x802C3848 end:0x802C3A10 + .sdata start:0x803E8098 end:0x803E80C0 + .sdata2 start:0x803F03A8 end:0x803F03B8 + +plugPikiKando/seedItem.cpp: + .text start:0x800F125C end:0x800F17AC + .data start:0x802C3A10 end:0x802C3BA8 + .sdata start:0x803E80C0 end:0x803E80E8 + .sdata2 start:0x803F03B8 end:0x803F0410 + +plugPikiKando/genItem.cpp: + .text start:0x800F17AC end:0x800F2174 + .data start:0x802C3BA8 end:0x802C3D10 + .sdata start:0x803E80E8 end:0x803E8130 + .sdata2 start:0x803F0410 end:0x803F0428 + +plugPikiKando/itemAI.cpp: + .text start:0x800F2174 end:0x800F5F68 + .rodata start:0x80227C28 end:0x80227C40 + .data start:0x802C3D10 end:0x802C4960 + .sdata start:0x803E8130 end:0x803E8388 + .sdata2 start:0x803F0428 end:0x803F0488 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F5F68 end:0x800FB00C + .data start:0x802C4960 end:0x802C5640 + .sdata start:0x803E8388 end:0x803E8520 + .sbss start:0x803EE460 end:0x803EE468 + .sdata2 start:0x803F0488 end:0x803F04D0 + +plugPikiKando/itemObject.cpp: + .text start:0x800FB00C end:0x800FB364 + .data start:0x802C5640 end:0x802C60E8 + .sdata start:0x803E8520 end:0x803E8588 + +plugPikiKando/mizuItem.cpp: + .text start:0x800FB364 end:0x800FB540 + .data start:0x802C60E8 end:0x802C6360 + .sdata start:0x803E8588 end:0x803E85C0 + .sdata2 start:0x803F04D0 end:0x803F04D8 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800FB540 end:0x800FB7E4 + .data start:0x802C6360 end:0x802C6438 + .sdata start:0x803E85C0 end:0x803E8618 + +plugPikiKando/genNavi.cpp: + .text start:0x800FB7E4 end:0x800FB99C + .data start:0x802C6438 end:0x802C6518 + .sdata start:0x803E8618 end:0x803E8640 + +plugPikiKando/navi.cpp: + .text start:0x800FB99C end:0x8010494C + .data start:0x802C6518 end:0x802C6B78 + .sdata start:0x803E8640 end:0x803E8940 + .sbss start:0x803EE468 end:0x803EE478 + .sdata2 start:0x803F04D8 end:0x803F0618 + +plugPikiKando/naviState.cpp: + .text start:0x8010494C end:0x8010E8EC + .rodata start:0x80227C40 end:0x80227C60 + .data start:0x802C6B78 end:0x802C7FA0 + .sdata start:0x803E8940 end:0x803E8D38 + .sdata2 start:0x803F0618 end:0x803F06F8 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010E8EC end:0x80110730 + .data start:0x802C7FA0 end:0x802C8688 + .sdata start:0x803E8D38 end:0x803E8DE8 + .sdata2 start:0x803F06F8 end:0x803F0750 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x80110730 end:0x801156D8 + .data start:0x802C8688 end:0x802C89F8 + .sdata start:0x803E8DE8 end:0x803E8EF8 + .sbss start:0x803EE478 end:0x803EE4A8 + .sdata2 start:0x803F0750 end:0x803F0778 + +plugPikiKando/gmWin.cpp: + .text start:0x801156D8 end:0x80115D7C + .sbss start:0x803EE4A8 end:0x803EE4B0 + +plugPikiKando/gameStat.cpp: + .text start:0x80115D7C end:0x80115F88 + .ctors start:0x80227550 end:0x80227554 + .bss start:0x803D8478 end:0x803D8500 + .sbss start:0x803EE4B0 end:0x803EE4C8 + +plugPikiKando/kmath.cpp: + .text start:0x80115F88 end:0x801169CC + .sdata start:0x803E8EF8 end:0x803E8F00 + .sdata2 start:0x803F0778 end:0x803F07D0 + +plugPikiKando/uteffect.cpp: + .text start:0x801169CC end:0x80119548 + .data start:0x802C89F8 end:0x802C92B0 + .sdata start:0x803E8F00 end:0x803E9018 + .sbss start:0x803EE4C8 end:0x803EE4D0 + .sdata2 start:0x803F07D0 end:0x803F0800 + +plugPikiKando/kontroller.cpp: + .text start:0x80119548 end:0x80119A3C + .data start:0x802C92B0 end:0x802C93A0 + .sdata start:0x803E9018 end:0x803E9050 + .sbss start:0x803EE4D0 end:0x803EE4D8 + +plugPikiKando/mapcode.cpp: + .text start:0x80119A3C end:0x80119ACC + .sdata2 start:0x803F0800 end:0x803F0808 + +plugPikiKando/utkando.cpp: + .text start:0x80119ACC end:0x8011AC48 + .data start:0x802C93A0 end:0x802C93B8 + .sdata start:0x803E9050 end:0x803E9070 + .sdata2 start:0x803F0808 end:0x803F0828 + +plugPikiKando/naviMgr.cpp: + .text start:0x8011AC48 end:0x8011B2E0 + .data start:0x802C93B8 end:0x802C95A8 + .sdata start:0x803E9070 end:0x803E90C8 + .sbss start:0x803EE4D8 end:0x803EE4E0 + +plugPikiKando/genMapParts.cpp: + .text start:0x8011B2E0 end:0x8011BFD4 + .data start:0x802C95A8 end:0x802C9720 + .sdata start:0x803E90C8 end:0x803E91A8 + .sbss start:0x803EE4E0 end:0x803EE4E8 + .sdata2 start:0x803F0828 end:0x803F0838 + +plugPikiKando/mapParts.cpp: + .text start:0x8011BFD4 end:0x8011C830 + .data start:0x802C9720 end:0x802C9A30 + .sdata start:0x803E91A8 end:0x803E9230 + .sdata2 start:0x803F0838 end:0x803F0848 + +plugPikiKando/panipikianimator.cpp: + .text start:0x8011C830 end:0x8011D53C + .data start:0x802C9A30 end:0x802C9D08 + .sdata start:0x803E9230 end:0x803E9478 + +plugPikiKando/actor.cpp: + .text start:0x8011D53C end:0x8011D5E0 + +plugPikiKando/actorMgr.cpp: + .text start:0x8011D5E0 end:0x8011D65C + .sbss start:0x803EE4E8 end:0x803EE4F0 + +plugPikiKando/genActor.cpp: + .text start:0x8011D65C end:0x8011D810 + .data start:0x802C9D08 end:0x802C9DF0 + .sdata start:0x803E9478 end:0x803E94A0 + +plugPikiKando/pikiInfo.cpp: + .text start:0x8011D810 end:0x8011D868 + .sbss start:0x803EE4F0 end:0x803EE4F8 + +plugPikiKando/plantMgr.cpp: + .text start:0x8011D868 end:0x8011EC74 + .data start:0x802C9DF0 end:0x802CA518 + .sdata start:0x803E94A0 end:0x803E9608 + .sbss start:0x803EE4F8 end:0x803EE500 + .sdata2 start:0x803F0848 end:0x803F0880 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x8011EC74 end:0x8011EDF8 + .data start:0x802CA518 end:0x802CA5D0 + .sdata start:0x803E9608 end:0x803E9640 + +plugPikiNakata/genteki.cpp: + .text start:0x8011EDF8 end:0x8011F2B0 + .data start:0x802CA5D0 end:0x802CA6E0 + .sdata start:0x803E9640 end:0x803E9668 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8011F2B0 end:0x8011F2E8 + .sbss start:0x803EE500 end:0x803EE508 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x8011F2E8 end:0x8011F884 + .data start:0x802CA6E0 end:0x802CA7F0 + .sdata start:0x803E9668 end:0x803E9690 + .sdata2 start:0x803F0880 end:0x803F0890 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x8011F884 end:0x80121000 + .data start:0x802CA7F0 end:0x802CA8E0 + .sdata start:0x803E9690 end:0x803E96E0 + .sdata2 start:0x803F0890 end:0x803F08B8 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x80121000 end:0x80121560 + .data start:0x802CA8E0 end:0x802CA900 + .sdata start:0x803E96E0 end:0x803E9700 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x80121560 end:0x8012174C + .sdata start:0x803E9700 end:0x803E9718 + .sdata2 start:0x803F08B8 end:0x803F08C0 + +plugPikiNakata/nlibmath.cpp: + .text start:0x8012174C end:0x80121A64 + .data start:0x802CA900 end:0x802CB120 + .sdata start:0x803E9718 end:0x803E9728 + .sdata2 start:0x803F08C0 end:0x803F08E0 + +plugPikiNakata/nlibspline.cpp: + .text start:0x80121A64 end:0x80121CFC + +plugPikiNakata/nlibsystem.cpp: + .text start:0x80121CFC end:0x80122B5C + .data start:0x802CB120 end:0x802CB210 + .sdata start:0x803E9728 end:0x803E9758 + .sbss start:0x803EE508 end:0x803EE510 + .sdata2 start:0x803F08E0 end:0x803F08F0 + +plugPikiNakata/panianimator.cpp: + .text start:0x80122B5C end:0x80123570 + .data start:0x802CB210 end:0x802CB358 + .sdata start:0x803E9758 end:0x803E9768 + .sdata2 start:0x803F08F0 end:0x803F0900 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x80123570 end:0x80123924 + .sbss start:0x803EE510 end:0x803EE518 + .sdata2 start:0x803F0900 end:0x803F0908 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x80123924 end:0x80123BC8 + .data start:0x802CB358 end:0x802CB450 + .sdata start:0x803E9768 end:0x803E97E8 + +plugPikiNakata/panitestsection.cpp: + .text start:0x80123BC8 end:0x80125274 + .data start:0x802CB450 end:0x802CB680 + .sdata start:0x803E97E8 end:0x803E98B0 + .sdata2 start:0x803F0908 end:0x803F0938 + +plugPikiNakata/paraparameters.cpp: + .text start:0x80125274 end:0x80125888 + .data start:0x802CB680 end:0x802CB780 + .sdata start:0x803E98B0 end:0x803E98D8 + .sdata2 start:0x803F0938 end:0x803F0940 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x80125888 end:0x80127924 + .data start:0x802CB780 end:0x802CB850 + .sdata start:0x803E98D8 end:0x803E9900 + .sdata2 start:0x803F0940 end:0x803F0980 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x80127924 end:0x80127E78 + .data start:0x802CB850 end:0x802CB928 + .sdata start:0x803E9900 end:0x803E9930 + .sdata2 start:0x803F0980 end:0x803F09A0 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x80127E78 end:0x80128694 + .data start:0x802CB928 end:0x802CBBE0 + .sdata start:0x803E9930 end:0x803E9980 + .sdata2 start:0x803F09A0 end:0x803F09D0 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x80128694 end:0x80129210 + .data start:0x802CBBE0 end:0x802CC188 + .sdata start:0x803E9980 end:0x803E99B8 + .sdata2 start:0x803F09D0 end:0x803F0A68 + +plugPikiNakata/peve.cpp: + .text start:0x80129210 end:0x80129938 + .data start:0x802CC188 end:0x802CC440 + .sdata start:0x803E99B8 end:0x803E9A28 + .sdata2 start:0x803F0A68 end:0x803F0A80 + +plugPikiNakata/peveconditions.cpp: + .text start:0x80129938 end:0x80129BD4 + .data start:0x802CC440 end:0x802CC5A0 + .sdata start:0x803E9A28 end:0x803E9A58 + .sdata2 start:0x803F0A80 end:0x803F0A88 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x80129BD4 end:0x8012AAD4 + .data start:0x802CC5A0 end:0x802CCB70 + .sdata start:0x803E9A58 end:0x803E9AE0 + .sdata2 start:0x803F0A88 end:0x803F0A90 + +plugPikiNakata/tai.cpp: + .text start:0x8012AAD4 end:0x8012B2D4 + .data start:0x802CCB70 end:0x802CCC48 + .sdata start:0x803E9AE0 end:0x803E9B08 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x8012B2D4 end:0x8012C078 + .data start:0x802CCC48 end:0x802CCFC8 + .sdata start:0x803E9B08 end:0x803E9B80 + .sdata2 start:0x803F0A90 end:0x803F0AA0 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x8012C078 end:0x8012C1F0 + .data start:0x802CCFC8 end:0x802CD178 + .sdata start:0x803E9B80 end:0x803E9BB8 + +plugPikiNakata/taichappy.cpp: + .text start:0x8012C1F0 end:0x8012E790 + .data start:0x802CD178 end:0x802CD668 + .sdata start:0x803E9BB8 end:0x803E9C78 + .sdata2 start:0x803F0AA0 end:0x803F0B20 + +plugPikiNakata/taicollec.cpp: + .text start:0x8012E790 end:0x8013215C + .data start:0x802CD668 end:0x802CE258 + .sdata start:0x803E9C78 end:0x803E9E20 + .sdata2 start:0x803F0B20 end:0x803F0B90 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x8013215C end:0x80132278 + .data start:0x802CE258 end:0x802CE470 + .sdata start:0x803E9E20 end:0x803E9E60 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x80132278 end:0x80132398 + .data start:0x802CE470 end:0x802CE600 + .sdata start:0x803E9E60 end:0x803E9E90 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x80132398 end:0x8013324C + .data start:0x802CE600 end:0x802CE928 + .sdata start:0x803E9E90 end:0x803E9F48 + .sdata2 start:0x803F0B90 end:0x803F0BC8 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x8013324C end:0x80133918 + .data start:0x802CE928 end:0x802CEC70 + .sdata start:0x803E9F48 end:0x803E9FB0 + .sdata2 start:0x803F0BC8 end:0x803F0BD0 + +plugPikiNakata/taikinoko.cpp: + .text start:0x80133918 end:0x80135C78 + .data start:0x802CEC70 end:0x802CF1C8 + .sdata start:0x803E9FB0 end:0x803EA078 + .sdata2 start:0x803F0BD0 end:0x803F0C68 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x80135C78 end:0x80135CE4 + .data start:0x802CF1C8 end:0x802CF280 + .sdata start:0x803EA078 end:0x803EA090 + +plugPikiNakata/taimizinko.cpp: + .text start:0x80135CE4 end:0x80137D98 + .data start:0x802CF280 end:0x802CF8B8 + .sdata start:0x803EA090 end:0x803EA190 + .sdata2 start:0x803F0C68 end:0x803F0CC0 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80137D98 end:0x801382E0 + .data start:0x802CF8B8 end:0x802CFBD8 + .sdata start:0x803EA190 end:0x803EA208 + .sdata2 start:0x803F0CC0 end:0x803F0CD0 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x801382E0 end:0x801399A0 + .data start:0x802CFBD8 end:0x802D0548 + .sdata start:0x803EA208 end:0x803EA340 + .sdata2 start:0x803F0CD0 end:0x803F0CE8 + +plugPikiNakata/tainapkid.cpp: + .text start:0x801399A0 end:0x8013E280 + .data start:0x802D0548 end:0x802D1030 + .sdata start:0x803EA340 end:0x803EA4A0 + .sdata2 start:0x803F0CE8 end:0x803F0DA0 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x8013E280 end:0x80141834 + .data start:0x802D1030 end:0x802D17C0 + .sdata start:0x803EA4A0 end:0x803EA5B8 + .sdata2 start:0x803F0DA0 end:0x803F0E58 + +plugPikiNakata/taipalm.cpp: + .text start:0x80141834 end:0x80142958 + .data start:0x802D17C0 end:0x802D1CF0 + .sdata start:0x803EA5B8 end:0x803EA690 + .sdata2 start:0x803F0E58 end:0x803F0EA0 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x80142958 end:0x80143084 + .data start:0x802D1CF0 end:0x802D2370 + .sdata start:0x803EA690 end:0x803EA768 + .sdata2 start:0x803F0EA0 end:0x803F0EB0 + +plugPikiNakata/taiswallow.cpp: + .text start:0x80143084 end:0x80145D50 + .data start:0x802D2370 end:0x802D2A10 + .sdata start:0x803EA768 end:0x803EA848 + .sdata2 start:0x803F0EB0 end:0x803F0F40 + +plugPikiNakata/taishell.cpp: + .text start:0x80145D50 end:0x80147450 + .data start:0x802D2A10 end:0x802D2F40 + .sdata start:0x803EA848 end:0x803EA900 + .sdata2 start:0x803F0F40 end:0x803F0F88 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x80147450 end:0x8014781C + .data start:0x802D2F40 end:0x802D3070 + .sdata start:0x803EA900 end:0x803EA928 + .sdata2 start:0x803F0F88 end:0x803F0FA8 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x8014781C end:0x80147970 + .data start:0x802D3070 end:0x802D3108 + .sdata start:0x803EA928 end:0x803EA940 + .sdata2 start:0x803F0FA8 end:0x803F0FC8 + +plugPikiNakata/teki.cpp: + .text start:0x80147970 end:0x80147BC8 + .data start:0x802D3108 end:0x802D3460 + .sdata start:0x803EA940 end:0x803EA9A8 + .sdata2 start:0x803F0FC8 end:0x803F0FD0 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80147BC8 end:0x80147CDC + .data start:0x802D3460 end:0x802D3540 + .sdata start:0x803EA9A8 end:0x803EA9D8 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80147CDC end:0x8014D9F4 + .data start:0x802D3540 end:0x802D39C0 + .sdata start:0x803EA9D8 end:0x803EAB20 + .sdata2 start:0x803F0FD0 end:0x803F1018 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x8014D9F4 end:0x8014E1CC + .data start:0x802D39C0 end:0x802D3F78 + .sdata start:0x803EAB20 end:0x803EABE0 + .sdata2 start:0x803F1018 end:0x803F1020 + +plugPikiNakata/tekievent.cpp: + .text start:0x8014E1CC end:0x8014E240 + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x8014E240 end:0x8014E3C0 + .data start:0x802D3F78 end:0x802D4068 + .sdata start:0x803EABE0 end:0x803EABF8 + +plugPikiNakata/tekimgr.cpp: + .text start:0x8014E3C0 end:0x8014EF58 + .data start:0x802D4068 end:0x802D4370 + .sdata start:0x803EABF8 end:0x803EAD58 + .sbss start:0x803EE518 end:0x803EE520 + +plugPikiNakata/tekinakata.cpp: + .text start:0x8014EF58 end:0x8014F82C + +plugPikiNakata/tekinteki.cpp: + .text start:0x8014F82C end:0x8014FB7C + .data start:0x802D4370 end:0x802D4658 + .sdata start:0x803EAD58 end:0x803EADA0 + .sdata2 start:0x803F1020 end:0x803F1028 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x8014FB7C end:0x80150894 + .data start:0x802D4658 end:0x802D4C08 + .sdata start:0x803EADA0 end:0x803EADF0 + .sdata2 start:0x803F1028 end:0x803F1068 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x80150894 end:0x80151088 + .data start:0x802D4C08 end:0x802D4D28 + .sdata start:0x803EADF0 end:0x803EAE18 + .sdata2 start:0x803F1068 end:0x803F1080 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x80151088 end:0x801511B4 + .data start:0x802D4D28 end:0x802D4D88 + .sdata start:0x803EAE18 end:0x803EAE20 + +plugPikiNishimura/genBoss.cpp: + .text start:0x801511B4 end:0x801517B0 + .data start:0x802D4D88 end:0x802D4E58 + .sdata start:0x803EAE20 end:0x803EAE48 + +plugPikiNishimura/Boss.cpp: + .text start:0x801517B0 end:0x8015394C + .data start:0x802D4E58 end:0x802D50F8 + .sdata start:0x803EAE48 end:0x803EAF28 + .sdata2 start:0x803F1080 end:0x803F10E0 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x8015394C end:0x801539E0 + .data start:0x802D50F8 end:0x802D51C0 + .sdata start:0x803EAF28 end:0x803EAF58 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x801539E0 end:0x80153C6C + .data start:0x802D51C0 end:0x802D52A8 + .sdata start:0x803EAF58 end:0x803EAF88 + .sdata2 start:0x803F10E0 end:0x803F10F8 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x80153C6C end:0x80156568 + .data start:0x802D52A8 end:0x802D57D0 + .sdata start:0x803EAF88 end:0x803EB028 + .sbss start:0x803EE520 end:0x803EE528 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x80156568 end:0x80156678 + .data start:0x802D57D0 end:0x802D57E8 + .sdata2 start:0x803F10F8 end:0x803F1100 + +plugPikiNishimura/Spider.cpp: + .text start:0x80156678 end:0x80157724 + .data start:0x802D57E8 end:0x802D5B10 + .sdata start:0x803EB028 end:0x803EB188 + .sdata2 start:0x803F1100 end:0x803F11A0 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80157724 end:0x801598EC + .data start:0x802D5B10 end:0x802D5BA0 + .sdata start:0x803EB188 end:0x803EB198 + .sdata2 start:0x803F11A0 end:0x803F11F0 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x801598EC end:0x8015E1A8 + .rodata start:0x80227C60 end:0x80227CB0 + .data start:0x802D5BA0 end:0x802D5D18 + .sdata start:0x803EB198 end:0x803EB210 + .sbss start:0x803EE528 end:0x803EE530 + .sdata2 start:0x803F11F0 end:0x803F1278 + +plugPikiNishimura/Snake.cpp: + .text start:0x8015E1A8 end:0x8015F0D4 + .data start:0x802D5D18 end:0x802D6028 + .sdata start:0x803EB210 end:0x803EB350 + .sdata2 start:0x803F1278 end:0x803F12F0 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x8015F0D4 end:0x80163B8C + .rodata start:0x80227CB0 end:0x80227CC8 + .data start:0x802D6028 end:0x802D60F0 + .sdata start:0x803EB350 end:0x803EB380 + .sdata2 start:0x803F12F0 end:0x803F1330 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x80163B8C end:0x801675F8 + .rodata start:0x80227CC8 end:0x80227D08 + .data start:0x802D60F0 end:0x802D61B0 + .sdata start:0x803EB380 end:0x803EB3D8 + .sdata2 start:0x803F1330 end:0x803F1368 + +plugPikiNishimura/Slime.cpp: + .text start:0x801675F8 end:0x80168A64 + .data start:0x802D61B0 end:0x802D6568 + .sdata start:0x803EB3D8 end:0x803EB4F0 + .sdata2 start:0x803F1368 end:0x803F13D8 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x80168A64 end:0x8016E514 + .data start:0x802D6568 end:0x802D6590 + .sdata start:0x803EB4F0 end:0x803EB540 + .sdata2 start:0x803F13D8 end:0x803F1458 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x8016E514 end:0x8016F15C + .sdata start:0x803EB540 end:0x803EB560 + .sdata2 start:0x803F1458 end:0x803F1478 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x8016F15C end:0x8016F388 + .data start:0x802D6590 end:0x802D6720 + .sdata start:0x803EB560 end:0x803EB580 + .sdata2 start:0x803F1478 end:0x803F1488 + +plugPikiNishimura/King.cpp: + .text start:0x8016F388 end:0x80170194 + .data start:0x802D6720 end:0x802D6A48 + .sdata start:0x803EB580 end:0x803EB6B8 + .sdata2 start:0x803F1488 end:0x803F14F0 + +plugPikiNishimura/KingAi.cpp: + .text start:0x80170194 end:0x80176C68 + .data start:0x802D6A48 end:0x802D6BA8 + .sdata start:0x803EB6B8 end:0x803EB6E0 + .sdata2 start:0x803F14F0 end:0x803F1558 + +plugPikiNishimura/KingBody.cpp: + .text start:0x80176C68 end:0x80179914 + .data start:0x802D6BA8 end:0x802D6D88 + .sdata start:0x803EB6E0 end:0x803EB810 + .sdata2 start:0x803F1558 end:0x803F15A0 + +plugPikiNishimura/Kogane.cpp: + .text start:0x80179914 end:0x80179FE8 + .data start:0x802D6D88 end:0x802D7018 + .sdata start:0x803EB810 end:0x803EB8C0 + .sdata2 start:0x803F15A0 end:0x803F15E0 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x80179FE8 end:0x8017BCC4 + .rodata start:0x80227D08 end:0x80227D18 + .data start:0x802D7018 end:0x802D70F0 + .sdata start:0x803EB8C0 end:0x803EB970 + .sdata2 start:0x803F15E0 end:0x803F1630 + +plugPikiNishimura/Pom.cpp: + .text start:0x8017BCC4 end:0x8017C43C + .data start:0x802D70F0 end:0x802D7390 + .sdata start:0x803EB970 end:0x803EBA18 + .sdata2 start:0x803F1630 end:0x803F1668 + +plugPikiNishimura/PomAi.cpp: + .text start:0x8017C43C end:0x8017DCEC + .data start:0x802D7390 end:0x802D7490 + .sdata start:0x803EBA18 end:0x803EBA48 + .sdata2 start:0x803F1668 end:0x803F16B8 + +plugPikiNishimura/KingBack.cpp: + .text start:0x8017DCEC end:0x8017E090 + .data start:0x802D7490 end:0x802D76F8 + .sdata start:0x803EBA48 end:0x803EBAA8 + .sdata2 start:0x803F16B8 end:0x803F16C8 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x8017E090 end:0x8017E428 + .data start:0x802D76F8 end:0x802D7950 + .sdata start:0x803EBAA8 end:0x803EBB20 + .sdata2 start:0x803F16C8 end:0x803F16E0 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x8017E428 end:0x8017E838 + .data start:0x802D7950 end:0x802D79A8 + .sdata start:0x803EBB20 end:0x803EBB30 + .sdata2 start:0x803F16E0 end:0x803F16E8 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x8017E838 end:0x8017EC28 + .data start:0x802D79A8 end:0x802D7C10 + .sdata start:0x803EBB30 end:0x803EBBA0 + .sdata2 start:0x803F16E8 end:0x803F1700 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x8017EC28 end:0x8017F2B8 + .data start:0x802D7C10 end:0x802D7C70 + .sdata start:0x803EBBA0 end:0x803EBBB8 + .sdata2 start:0x803F1700 end:0x803F1708 + +plugPikiNishimura/Mizu.cpp: + .text start:0x8017F2B8 end:0x8017F73C + .data start:0x802D7C70 end:0x802D7EC8 + .sdata start:0x803EBBB8 end:0x803EBC20 + .sdata2 start:0x803F1708 end:0x803F1720 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x8017F73C end:0x801801AC + .data start:0x802D7EC8 end:0x802D7FB0 + .sdata start:0x803EBC20 end:0x803EBC58 + .sdata2 start:0x803F1720 end:0x803F1738 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802D7FB0 end:0x802D8AE0 + .sdata start:0x803EBC58 end:0x803EBCA8 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x801801AC end:0x8018074C + .sdata2 start:0x803F1738 end:0x803F1760 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x8018074C end:0x80181564 + .sbss start:0x803EE530 end:0x803EE538 + .sdata2 start:0x803F1760 end:0x803F1770 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x80181564 end:0x80181628 + .sdata2 start:0x803F1770 end:0x803F1778 + +plugPikiOgawa/ogTest.cpp: + .text start:0x80181628 end:0x801826F4 + .data start:0x802D8AE0 end:0x802D8DC8 + .sdata start:0x803EBCA8 end:0x803EBD20 + .sdata2 start:0x803F1778 end:0x803F1790 + +plugPikiOgawa/ogSub.cpp: + .text start:0x801826F4 end:0x80184E88 + .data start:0x802D8DC8 end:0x802D9688 + .bss start:0x803D8500 end:0x803D8900 + .sdata start:0x803EBD20 end:0x803EBDD0 + .sdata2 start:0x803F1790 end:0x803F17D0 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x80184E88 end:0x80186100 + .data start:0x802D9688 end:0x802D9738 + .sdata start:0x803EBDD0 end:0x803EBDD8 + .sdata2 start:0x803F17D0 end:0x803F17E0 + +plugPikiOgawa/ogPause.cpp: + .text start:0x80186100 end:0x8018697C + .data start:0x802D9738 end:0x802D97A0 + .sdata2 start:0x803F17E0 end:0x803F17F8 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x8018697C end:0x80186BC4 + .data start:0x802D97A0 end:0x802D97B8 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802D97B8 end:0x802DA6D0 + .sdata start:0x803EBDD8 end:0x803EC098 + +plugPikiOgawa/ogMap.cpp: + .text start:0x80186BC4 end:0x801871EC + .data start:0x802DA6D0 end:0x802DA700 + .sdata2 start:0x803F17F8 end:0x803F1818 + +plugPikiOgawa/ogResult.cpp: + .text start:0x801871EC end:0x80188E64 + .data start:0x802DA700 end:0x802DB730 + .sdata start:0x803EC098 end:0x803EC0A0 + .sdata2 start:0x803F1818 end:0x803F1848 + +plugPikiOgawa/ogRader.cpp: + .text start:0x80188E64 end:0x8018B4FC + .data start:0x802DB730 end:0x802DB800 + .sdata start:0x803EC0A0 end:0x803EC0D0 + .sdata2 start:0x803F1848 end:0x803F18C8 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x8018B4FC end:0x8018F8BC + .data start:0x802DB800 end:0x802DB950 + .sdata start:0x803EC0D0 end:0x803EC118 + .sdata2 start:0x803F18C8 end:0x803F1920 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x8018F8BC end:0x801909EC + .data start:0x802DB950 end:0x802DB960 + .sdata start:0x803EC118 end:0x803EC128 + .sdata2 start:0x803F1920 end:0x803F1960 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x801909EC end:0x8019273C + .data start:0x802DB960 end:0x802DBA80 + .sdata start:0x803EC128 end:0x803EC138 + .sdata2 start:0x803F1960 end:0x803F1988 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x8019273C end:0x801947D4 + .data start:0x802DBA80 end:0x802DBB00 + .bss start:0x803D8900 end:0x803D8928 + .sdata start:0x803EC138 end:0x803EC178 + .sdata2 start:0x803F1988 end:0x803F19D8 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x801947D4 end:0x80196ACC + .data start:0x802DBB00 end:0x802DBCA8 + .sdata start:0x803EC178 end:0x803EC1A8 + .sdata2 start:0x803F19D8 end:0x803F1A48 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x80196ACC end:0x80196ED4 + .data start:0x802DBCA8 end:0x802DBCC0 + .sdata2 start:0x803F1A48 end:0x803F1A58 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x80196ED4 end:0x80197708 + .data start:0x802DBCC0 end:0x802DBCF0 + .sdata2 start:0x803F1A58 end:0x803F1A78 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x80197708 end:0x80198C44 + .data start:0x802DBCF0 end:0x802DBD08 + .sdata start:0x803EC1A8 end:0x803EC1C8 + .sdata2 start:0x803F1A78 end:0x803F1A98 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80198C44 end:0x80199D60 + .data start:0x802DBD08 end:0x802DBDA0 + .sdata2 start:0x803F1A98 end:0x803F1AB8 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x80199D60 end:0x8019A690 + .sdata2 start:0x803F1AB8 end:0x803F1AD8 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x8019A690 end:0x8019AFD8 + .sdata start:0x803EC1C8 end:0x803EC1E0 + .sdata2 start:0x803F1AD8 end:0x803F1B18 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x8019AFD8 end:0x8019B30C + .sdata start:0x803EC1E0 end:0x803EC1F0 + .sdata2 start:0x803F1B18 end:0x803F1B40 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x8019B30C end:0x8019BD6C + .data start:0x802DBDA0 end:0x802DBEB0 + .sdata2 start:0x803F1B40 end:0x803F1B50 + +plugPikiOgawa/ogStart.cpp: + .text start:0x8019BD6C end:0x8019C110 + .data start:0x802DBEB0 end:0x802DBEC8 + .sdata2 start:0x803F1B50 end:0x803F1B70 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x8019C110 end:0x8019C7F8 + .data start:0x802DBEC8 end:0x802DBFA0 + .sdata start:0x803EC1F0 end:0x803EC210 + .sdata2 start:0x803F1B70 end:0x803F1B88 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x8019C7F8 end:0x8019ED9C + .data start:0x802DBFA0 end:0x802DC6F8 + .sdata start:0x803EC210 end:0x803EC340 + .sdata2 start:0x803F1B88 end:0x803F1BB8 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x8019ED9C end:0x8019EE20 + .data start:0x802DC6F8 end:0x802DC830 + .sdata start:0x803EC340 end:0x803EC388 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x8019EE20 end:0x8019EEB8 + .data start:0x802DC830 end:0x802DC960 + .sdata start:0x803EC388 end:0x803EC3D0 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019EEB8 end:0x8019F1F8 + .sdata start:0x803EC3D0 end:0x803EC3E8 + .sdata2 start:0x803F1BB8 end:0x803F1BD0 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x8019F1F8 end:0x801A0394 + .data start:0x802DC960 end:0x802E0320 + .sdata start:0x803EC3E8 end:0x803EC480 + .sbss start:0x803EE538 end:0x803EE540 + .sdata2 start:0x803F1BD0 end:0x803F1BF0 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x801A0394 end:0x801A4658 + .data start:0x802E0320 end:0x802E0438 + .sdata start:0x803EC480 end:0x803EC4A0 + .sdata2 start:0x803F1BF0 end:0x803F1C40 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x801A4658 end:0x801A48E8 + .data start:0x802E0438 end:0x802E04C0 + .sdata start:0x803EC4A0 end:0x803EC4B0 + +plugPikiYamashita/solidField.cpp: + .data start:0x802E04C0 end:0x802E34D8 + +plugPikiYamashita/particleManager.cpp: + .text start:0x801A48E8 end:0x801A5094 + .data start:0x802E34D8 end:0x802E35D8 + .sdata start:0x803EC4B0 end:0x803EC4C0 + .sdata2 start:0x803F1C40 end:0x803F1C48 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x801A5094 end:0x801A56D0 + .data start:0x802E35D8 end:0x802E36D0 + .sdata start:0x803EC4C0 end:0x803EC510 + .sdata2 start:0x803F1C48 end:0x803F1C50 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A56D0 end:0x801A5B2C + .sdata2 start:0x803F1C50 end:0x803F1C68 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A5B2C end:0x801A6014 + .sdata2 start:0x803F1C68 end:0x803F1C90 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A6014 end:0x801A69B8 + .data start:0x802E36D0 end:0x802E3AA8 + .sdata start:0x803EC510 end:0x803EC5A8 + .sdata2 start:0x803F1C90 end:0x803F1CB8 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A69B8 end:0x801A6E54 + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A6E54 end:0x801A6F48 + .data start:0x802E3AA8 end:0x802E3AD0 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A6F48 end:0x801A90EC + .ctors start:0x80227554 end:0x80227558 + .data start:0x802E3AD0 end:0x802E4340 + .sdata start:0x803EC5A8 end:0x803EC700 + .sbss start:0x803EE540 end:0x803EE548 + .sdata2 start:0x803F1CB8 end:0x803F1D40 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801A90EC end:0x801ABED0 + .ctors start:0x80227558 end:0x8022755C + .data start:0x802E4340 end:0x802E4FD0 + .sdata start:0x803EC700 end:0x803EC8A8 + .sbss start:0x803EE548 end:0x803EE558 + .sdata2 start:0x803F1D40 end:0x803F1DE8 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801ABED0 end:0x801AC66C + .data start:0x802E4FD0 end:0x802E5248 + .sdata start:0x803EC8A8 end:0x803EC908 + .sdata2 start:0x803F1DE8 end:0x803F1DF8 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801AC66C end:0x801B0768 + .data start:0x802E5248 end:0x802E5B30 + .sdata start:0x803EC908 end:0x803ECAA8 + .sdata2 start:0x803F1DF8 end:0x803F1E70 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801B0768 end:0x801B0BA8 + .data start:0x802E5B30 end:0x802E5C20 + .sdata start:0x803ECAA8 end:0x803ECAC8 + .sdata2 start:0x803F1E70 end:0x803F1E80 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801B0BA8 end:0x801B1CB0 + .data start:0x802E5C20 end:0x802E60E8 + .sdata start:0x803ECAC8 end:0x803ECB60 + .sdata2 start:0x803F1E80 end:0x803F1E90 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801B1CB0 end:0x801B3370 + .data start:0x802E60E8 end:0x802E64C8 + .sdata start:0x803ECB60 end:0x803ECC08 + .sdata2 start:0x803F1E90 end:0x803F1EC0 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801B3370 end:0x801B38B4 + .data start:0x802E64C8 end:0x802E6510 + .sdata start:0x803ECC08 end:0x803ECC10 + .sdata2 start:0x803F1EC0 end:0x803F1ED0 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801B38B4 end:0x801B3D54 + .data start:0x802E6510 end:0x802E6560 + .sdata start:0x803ECC10 end:0x803ECC20 + .sdata2 start:0x803F1ED0 end:0x803F1EE0 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801B3D54 end:0x801B4260 + .data start:0x802E6560 end:0x802E65D8 + .sdata start:0x803ECC20 end:0x803ECC78 + .sdata2 start:0x803F1EE0 end:0x803F1F08 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801B4260 end:0x801B5574 + .data start:0x802E65D8 end:0x802E6668 + .sdata start:0x803ECC78 end:0x803ECCB0 + .sdata2 start:0x803F1F08 end:0x803F1F18 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B5574 end:0x801B68B4 + .data start:0x802E6668 end:0x802E66E8 + .sdata start:0x803ECCB0 end:0x803ECCC8 + .sdata2 start:0x803F1F18 end:0x803F1F40 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B68B4 end:0x801B70B4 + .data start:0x802E66E8 end:0x802E67E8 + .sdata start:0x803ECCC8 end:0x803ECCE0 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B70B4 end:0x801B7304 + .data start:0x802E67E8 end:0x802E6820 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B7304 end:0x801B7564 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B7564 end:0x801B772C + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B772C end:0x801B83E8 + .data start:0x802E6820 end:0x802E6888 + .sdata start:0x803ECCE0 end:0x803ECCF8 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B83E8 end:0x801B89A0 + .data start:0x802E6888 end:0x802E6910 + .sdata start:0x803ECCF8 end:0x803ECD10 + .sdata2 start:0x803F1F40 end:0x803F1F48 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B89A0 end:0x801B9D0C + .data start:0x802E6910 end:0x802E6990 + .sdata2 start:0x803F1F48 end:0x803F1F70 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801B9D0C end:0x801BA3E0 + .data start:0x802E6990 end:0x802E69F0 + .sdata start:0x803ECD10 end:0x803ECD28 + .sdata2 start:0x803F1F70 end:0x803F1F98 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801BA3E0 end:0x801BE2A8 + .data start:0x802E69F0 end:0x802E7198 + .sdata start:0x803ECD28 end:0x803ECDD0 + .sbss start:0x803EE558 end:0x803EE560 + .sdata2 start:0x803F1F98 end:0x803F2050 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801BE2A8 end:0x801BE76C + .sdata start:0x803ECDD0 end:0x803ECDD8 + .sdata2 start:0x803F2050 end:0x803F2088 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801BE76C end:0x801C37A0 + .data start:0x802E7198 end:0x802E7520 + .bss start:0x803D8928 end:0x803D8980 + .sdata start:0x803ECDD8 end:0x803ECE88 + .sbss start:0x803EE560 end:0x803EE568 + .sdata2 start:0x803F2088 end:0x803F2100 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801C37A0 end:0x801C4600 + .data start:0x802E7520 end:0x802E7648 + .bss start:0x803D8980 end:0x803D89D0 + .sdata start:0x803ECE88 end:0x803ECEC8 + .sdata2 start:0x803F2100 end:0x803F2150 + +plugPikiYamashita/zenController.cpp: + .text start:0x801C4600 end:0x801C478C + .sbss start:0x803EE568 end:0x803EE570 + .sdata2 start:0x803F2150 end:0x803F2160 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801C478C end:0x801C5390 + .data start:0x802E7648 end:0x802E7660 + .sdata start:0x803ECEC8 end:0x803ECED8 + .sdata2 start:0x803F2160 end:0x803F21B0 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801C5390 end:0x801C54FC + .data start:0x802E7660 end:0x802E7688 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801C54FC end:0x801C6B38 + .data start:0x802E7688 end:0x802E7800 + .sdata start:0x803ECED8 end:0x803ECF10 + .sdata2 start:0x803F21B0 end:0x803F21D0 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C6B38 end:0x801C8EC8 + .data start:0x802E7800 end:0x802E7910 + .sdata start:0x803ECF10 end:0x803ECF58 + .sdata2 start:0x803F21D0 end:0x803F2218 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C8EC8 end:0x801CA04C + .data start:0x802E7910 end:0x802E7A08 + .sdata start:0x803ECF58 end:0x803ECFB8 + .sdata2 start:0x803F2218 end:0x803F2240 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801CA04C end:0x801CDC20 + .data start:0x802E7A08 end:0x802E81D8 + .sdata start:0x803ECFB8 end:0x803ED0F0 + .sdata2 start:0x803F2240 end:0x803F22F8 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801CDC20 end:0x801CE9FC + .data start:0x802E81D8 end:0x802E82A8 + .sdata start:0x803ED0F0 end:0x803ED130 + .sdata2 start:0x803F22F8 end:0x803F2358 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801CE9FC end:0x801D02BC + .data start:0x802E82A8 end:0x802E88F0 + .sdata start:0x803ED130 end:0x803ED208 + .sdata2 start:0x803F2358 end:0x803F23B8 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801D02BC end:0x801D1E74 + .data start:0x802E88F0 end:0x802E8FE0 + .sdata start:0x803ED208 end:0x803ED2D0 + .sdata2 start:0x803F23B8 end:0x803F2418 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801D1E74 end:0x801D4560 + .data start:0x802E8FE0 end:0x802E9A90 + .sdata start:0x803ED2D0 end:0x803ED418 + .sdata2 start:0x803F2418 end:0x803F2498 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801D4560 end:0x801D5710 + .data start:0x802E9A90 end:0x802E9F40 + .sdata start:0x803ED418 end:0x803ED4B0 + .sdata2 start:0x803F2498 end:0x803F2500 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801D5710 end:0x801D916C + .data start:0x802E9F40 end:0x802EA878 + .sdata start:0x803ED4B0 end:0x803ED5F0 + .sdata2 start:0x803F2500 end:0x803F2580 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801D916C end:0x801DA7BC + .ctors start:0x8022755C end:0x80227560 + .data start:0x802EA878 end:0x802EADA8 + .sdata start:0x803ED5F0 end:0x803ED698 + .sbss start:0x803EE570 end:0x803EE578 + .sdata2 start:0x803F2580 end:0x803F25F8 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801DA7BC end:0x801DAC8C + .data start:0x802EADA8 end:0x802EAE38 + .sdata start:0x803ED698 end:0x803ED6B0 + .sdata2 start:0x803F25F8 end:0x803F2600 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801DAC8C end:0x801DEB8C + .data start:0x802EAE38 end:0x802EBA10 + .sdata start:0x803ED6B0 end:0x803ED810 + .sdata2 start:0x803F2600 end:0x803F2698 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801DEB8C end:0x801DEE20 + .data start:0x802EBA10 end:0x802EBA40 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801DEE20 end:0x801DF3E4 + .data start:0x802EBA40 end:0x802EBA68 + .sdata2 start:0x803F2698 end:0x803F26A8 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801DF3E4 end:0x801DFDEC + .data start:0x802EBA68 end:0x802EBAA8 + .sdata start:0x803ED810 end:0x803ED818 + .sdata2 start:0x803F26A8 end:0x803F26D8 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801DFDEC end:0x801EC928 + .data start:0x802EBAA8 end:0x802EBDE8 + .sdata start:0x803ED818 end:0x803EDA28 + .sbss start:0x803EE578 end:0x803EE580 + .sdata2 start:0x803F26D8 end:0x803F27C0 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801EC928 end:0x801ED8AC + .data start:0x802EBDE8 end:0x802EBE50 + .sdata start:0x803EDA28 end:0x803EDA30 + .sdata2 start:0x803F27C0 end:0x803F2808 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801ED8AC end:0x801EE6E0 + .data start:0x802EBE50 end:0x802EBEE0 + .sdata start:0x803EDA30 end:0x803EDA38 + .sdata2 start:0x803F2808 end:0x803F2878 + +plugPikiYamashita/yai.cpp: + .text start:0x801EE6E0 end:0x801EE94C + .data start:0x802EBEE0 end:0x802EBF30 + .sdata start:0x803EDA38 end:0x803EDA48 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801EE94C end:0x801EED84 + .data start:0x802EBF30 end:0x802EC838 + .sdata start:0x803EDA48 end:0x803EDA60 + .sdata2 start:0x803F2878 end:0x803F2898 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801EED84 end:0x801EF02C + .data start:0x802EC838 end:0x802EC850 + .sdata2 start:0x803F2898 end:0x803F28A8 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801EF02C end:0x801EFAFC + .data start:0x802EC850 end:0x802ECBC0 + .sdata start:0x803EDA60 end:0x803EDAF0 + .sdata2 start:0x803F28A8 end:0x803F2908 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801EFAFC end:0x801F13F8 + .data start:0x802ECBC0 end:0x802ED108 + .sdata start:0x803EDAF0 end:0x803EDB98 + .sdata2 start:0x803F2908 end:0x803F2978 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801F13F8 end:0x801F2400 + .data start:0x802ED108 end:0x802ED228 + .sdata start:0x803EDB98 end:0x803EDC48 + .sdata2 start:0x803F2978 end:0x803F29A0 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801F2400 end:0x801F282C + .data start:0x802ED228 end:0x802ED250 + .sdata start:0x803EDC48 end:0x803EDC50 + .sdata2 start:0x803F29A0 end:0x803F29D0 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801F282C end:0x801F3330 + .data start:0x802ED250 end:0x802ED2D8 + .sdata start:0x803EDC50 end:0x803EDC78 + .sdata2 start:0x803F29D0 end:0x803F29F0 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801F3330 end:0x801F3BB0 + .data start:0x802ED2D8 end:0x802ED348 + .sdata start:0x803EDC78 end:0x803EDC80 + .sdata2 start:0x803F29F0 end:0x803F2A20 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801F3BB0 end:0x801F5244 + .data start:0x802ED348 end:0x802ED560 + .sdata start:0x803EDC80 end:0x803EDCE0 + .sdata2 start:0x803F2A20 end:0x803F2A40 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801F5244 end:0x801F5C7C + .data start:0x802ED560 end:0x802ED678 + .sdata start:0x803EDCE0 end:0x803EDD18 + .sdata2 start:0x803F2A40 end:0x803F2A68 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801F5C7C end:0x801F67B0 + .data start:0x802ED678 end:0x802ED6C8 + .sdata start:0x803EDD18 end:0x803EDD48 + .sdata2 start:0x803F2A68 end:0x803F2A70 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801F67B0 end:0x801F6C94 + .sdata2 start:0x803F2A70 end:0x803F2A90 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F6C94 end:0x801F701C + .sdata2 start:0x803F2A90 end:0x803F2AA0 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F701C end:0x801F76E0 + .data start:0x802ED6C8 end:0x802ED6E0 + .sdata start:0x803EDD48 end:0x803EDD58 + .sdata2 start:0x803F2AA0 end:0x803F2AB0 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F76E0 end:0x801F7918 + .sdata start:0x803EDD58 end:0x803EDD60 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F7918 end:0x801F88CC + .data start:0x802ED6E0 end:0x802ED788 + .sdata2 start:0x803F2AB0 end:0x803F2AE8 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F88CC end:0x801F8DA4 + .data start:0x802ED788 end:0x802ED798 + .sdata2 start:0x803F2AE8 end:0x803F2B00 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F8DA4 end:0x801FA918 + .data start:0x802ED798 end:0x802ED828 + .sdata start:0x803EDD60 end:0x803EDD88 + .sdata2 start:0x803F2B00 end:0x803F2B30 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801FA918 end:0x801FAE60 + .data start:0x802ED828 end:0x802ED8C8 + +base/PPCArch.c: + .text start:0x801FAE60 end:0x801FAEC4 + +os/OS.c: + .text start:0x801FAEC4 end:0x801FB5DC + .data start:0x802ED8C8 end:0x802EDA88 + .sbss start:0x803EE580 end:0x803EE590 + +os/OSAlarm.c: + .text start:0x801FB5DC end:0x801FBCC8 + .sbss start:0x803EE590 end:0x803EE598 + +os/OSAlloc.c: + .text start:0x801FBCC8 end:0x801FBE34 + .sdata start:0x803EDD88 end:0x803EDD90 + .sbss start:0x803EE598 end:0x803EE5A8 + +os/OSArena.c: + .text start:0x801FBE34 end:0x801FBE54 + .sdata start:0x803EDD90 end:0x803EDD98 + .sbss start:0x803EE5A8 end:0x803EE5B0 + +os/OSAudioSystem.c: + .text start:0x801FBE54 end:0x801FC0C0 + .data start:0x802EDA88 end:0x802EDB08 + +os/OSCache.c: + .text start:0x801FC0C0 end:0x801FC544 + .data start:0x802EDB08 end:0x802EDD38 + +os/OSContext.c: + .text start:0x801FC544 end:0x801FCDAC + .data start:0x802EDD38 end:0x802EDF10 + +os/OSError.c: + .text start:0x801FCDAC end:0x801FD0E8 + .data start:0x802EDF10 end:0x802EE148 + .bss start:0x803D89D0 end:0x803D8A10 + .sdata start:0x803EDD98 end:0x803EDDA0 + +os/OSExi.c: + .text start:0x801FD0E8 end:0x801FE440 + .bss start:0x803D8A10 end:0x803D8AC0 + +os/OSFont.c: + .text start:0x801FE440 end:0x801FE498 + .sdata start:0x803EDDA0 end:0x803EDDA8 + +os/OSInterrupt.c: + .text start:0x801FE498 end:0x801FECB8 + .data start:0x802EE148 end:0x802EE1E0 + .sbss start:0x803EE5B0 end:0x803EE5B8 + +os/OSLink.c: + .text start:0x801FECB8 end:0x801FECD0 + +os/OSMessage.c: + .text start:0x801FECD0 end:0x801FEED4 + +os/OSMutex.c: + .text start:0x801FEED4 end:0x801FF3E0 + +os/OSReboot.c: + .text start:0x801FF3E0 end:0x801FF5DC + .bss start:0x803D8AC0 end:0x803D8AE0 + .sbss start:0x803EE5B8 end:0x803EE5C0 + +os/OSReset.c: + .text start:0x801FF5DC end:0x801FF8D0 + .sbss start:0x803EE5C0 end:0x803EE5C8 + +os/OSResetSW.c: + .text start:0x801FF8D0 end:0x801FFBB8 + .sbss start:0x803EE5C8 end:0x803EE5E8 + +os/OSRtc.c: + .text start:0x801FFBB8 end:0x802004C4 + .bss start:0x803D8AE0 end:0x803D8B38 + +os/OSSerial.c: + .text start:0x802004C4 end:0x80200E44 + .data start:0x802EE1E0 end:0x802EE1F8 + .bss start:0x803D8B38 end:0x803D8C58 + +os/OSSync.c: + .text start:0x80200E44 end:0x80200EC8 + +os/OSThread.c: + .text start:0x80200EC8 end:0x8020277C + .data start:0x802EE1F8 end:0x802EEA08 + .bss start:0x803D8C58 end:0x803D9640 + .sdata start:0x803EDDA8 end:0x803EDDB0 + .sbss start:0x803EE5E8 end:0x803EE5F8 + +os/OSTime.c: + .text start:0x8020277C end:0x80202BA0 + .data start:0x802EEA08 end:0x802EEA68 + +os/OSUartExi.c: + .text start:0x80202BA0 end:0x80202DF0 + .sbss start:0x803EE5F8 end:0x803EE600 + +os/__start.c: + .init start:0x80003100 end:0x800032CC + .text start:0x80202DF0 end:0x80202DF0 + +os/__ppc_eabi_init.cpp: + .init start:0x800032CC end:0x80003320 + .text start:0x80202DF0 end:0x80202E84 + +db/db.c: + .text start:0x80202E84 end:0x80202F70 + .data start:0x802EEA68 end:0x802EEA80 + .sbss start:0x803EE600 end:0x803EE608 + +mtx/mtx.c: + .text start:0x80202F70 end:0x802032FC + .sdata start:0x803EDDB0 end:0x803EDDB8 + .sdata2 start:0x803F2B30 end:0x803F2B48 + +mtx/mtx44.c: + .text start:0x802032FC end:0x80203464 + .sdata2 start:0x803F2B48 end:0x803F2B60 + +mtx/vec.c: + .text start:0x80203464 end:0x80203508 + .sdata2 start:0x803F2B60 end:0x803F2B78 + +dvd/dvdlow.c: + .text start:0x80203508 end:0x8020435C + .bss start:0x803D9640 end:0x803D9720 + .sdata start:0x803EDDB8 end:0x803EDDC0 + .sbss start:0x803EE608 end:0x803EE650 + +dvd/dvdfs.c: + .text start:0x8020435C end:0x80204D40 + .data start:0x802EEA80 end:0x802EEE38 + .sdata start:0x803EDDC0 end:0x803EDDC8 + .sbss start:0x803EE650 end:0x803EE670 + +dvd/dvd.c: + .text start:0x80204D40 end:0x802072E0 + .data start:0x802EEE38 end:0x802EEF50 + .bss start:0x803D9720 end:0x803D97F8 + .sdata start:0x803EDDC8 end:0x803EDDD0 + .sbss start:0x803EE670 end:0x803EE6B8 + +dvd/dvdqueue.c: + .text start:0x802072E0 end:0x802074D8 + .bss start:0x803D97F8 end:0x803D9818 + +dvd/dvderror.c: + .text start:0x802074D8 end:0x80207630 + .data start:0x802EEF50 end:0x802EEF90 + +dvd/fstload.c: + .text start:0x80207630 end:0x80207858 + .data start:0x802EEF90 end:0x802EF000 + .bss start:0x803D9818 end:0x803D9888 + .sdata start:0x803EDDD0 end:0x803EDDE0 + .sbss start:0x803EE6B8 end:0x803EE6C8 + +vi/vi.c: + .text start:0x80207858 end:0x80208FA8 + .data start:0x802EF000 end:0x802EF168 + .bss start:0x803D9888 end:0x803D99D0 + .sbss start:0x803EE6C8 end:0x803EE710 + +pad/Padclamp.c: + .text start:0x80208FA8 end:0x802091E0 + .sdata start:0x803EDDE0 end:0x803EDDE8 + +pad/Pad.c: + .text start:0x802091E0 end:0x8020B3E0 + .data start:0x802EF168 end:0x802EF1D0 + .bss start:0x803D99D0 end:0x803D9A40 + .sdata start:0x803EDDE8 end:0x803EDE10 + .sbss start:0x803EE710 end:0x803EE740 + +ai/ai.c: + .text start:0x8020B3E0 end:0x8020BCE8 + .sbss start:0x803EE740 end:0x803EE780 + +ar/ar.c: + .text start:0x8020BCE8 end:0x8020CE5C + .sbss start:0x803EE780 end:0x803EE798 + .sdata2 start:0x803F2B78 end:0x803F2B88 + +ar/arq.c: + .text start:0x8020CE5C end:0x8020D1F0 + .sbss start:0x803EE798 end:0x803EE7C0 + +dsp/dsp.c: + .text start:0x8020D1F0 end:0x8020D23C + +card/CARDBios.c: + .text start:0x8020D23C end:0x8020E5F0 + .data start:0x802EF1D0 end:0x802EF1E0 + .bss start:0x803D9A40 end:0x803D9C70 + .sbss start:0x803EE7C0 end:0x803EE7C8 + +card/CARDRdwr.c: + .text start:0x8020E5F0 end:0x8020E888 + +card/CARDBlock.c: + .text start:0x8020E888 end:0x8020EC8C + +card/CARDDir.c: + .text start:0x8020EC8C end:0x8020EEF0 + +card/CARDCheck.c: + .text start:0x8020EEF0 end:0x8020FE80 + +card/CARDMount.c: + .text start:0x8020FE80 end:0x80210678 + .data start:0x802EF1E0 end:0x802EF220 + +card/CARDFormat.c: + .text start:0x80210678 end:0x80210E5C + +card/CARDOpen.c: + .text start:0x80210E5C end:0x802112C4 + +card/CARDCreate.c: + .text start:0x802112C4 end:0x80211654 + +card/CARDRead.c: + .text start:0x80211654 end:0x80211AC8 + +card/CARDWrite.c: + .text start:0x80211AC8 end:0x80211E40 + +card/CARDDelete.c: + .text start:0x80211E40 end:0x80212054 + +card/CARDStat.c: + .text start:0x80212054 end:0x8021252C + +card/CARDRename.c: + .text start:0x8021252C end:0x80212764 + +hio/hio.c: + .text start:0x80212764 end:0x80212F3C + .sdata start:0x803EDE10 end:0x803EDE18 + .sbss start:0x803EE7C8 end:0x803EE7D8 + +gx/GXInit.c: + .text start:0x80212F3C end:0x80213F1C + .bss start:0x803D9C70 end:0x803DA1E8 + .sdata start:0x803EDE18 end:0x803EDE20 + .sbss start:0x803EE7D8 end:0x803EE7E8 + .sdata2 start:0x803F2B88 end:0x803F2BA8 + +gx/GXFifo.c: + .text start:0x80213F1C end:0x80214788 + .sbss start:0x803EE7E8 end:0x803EE808 + +gx/GXAttr.c: + .text start:0x80214788 end:0x80215C50 + .data start:0x802EF220 end:0x802EF3E8 + .sdata start:0x803EDE20 end:0x803EDE30 + +gx/GXMisc.c: + .text start:0x80215C50 end:0x802160F4 + .sbss start:0x803EE808 end:0x803EE820 + +gx/GXGeometry.c: + .text start:0x802160F4 end:0x802164AC + +gx/GXFrameBuf.c: + .text start:0x802164AC end:0x80216F28 + .data start:0x802EF3E8 end:0x802EF4A0 + .sdata2 start:0x803F2BA8 end:0x803F2BB8 + +gx/GXLight.c: + .text start:0x80216F28 end:0x802176B0 + .sdata2 start:0x803F2BB8 end:0x803F2BD8 + +gx/GXTexture.c: + .text start:0x802176B0 end:0x80218174 + .data start:0x802EF4A0 end:0x802EF5D0 + .sdata start:0x803EDE30 end:0x803EDE70 + .sdata2 start:0x803F2BD8 end:0x803F2C00 + +gx/GXBump.c: + .text start:0x80218174 end:0x80218548 + +gx/GXTev.c: + .text start:0x80218548 end:0x80218F44 + .data start:0x802EF5D0 end:0x802EF5F8 + +gx/GXPixel.c: + .text start:0x80218F44 end:0x80219690 + .data start:0x802EF5F8 end:0x802EF618 + .sdata2 start:0x803F2C00 end:0x803F2C30 + +gx/GXStubs.c: + .text start:0x80219690 end:0x80219694 + +gx/GXDisplayList.c: + .text start:0x80219694 end:0x802198A0 + .bss start:0x803DA1E8 end:0x803DA700 + .sbss start:0x803EE820 end:0x803EE828 + +gx/GXTransform.c: + .text start:0x802198A0 end:0x80219E1C + .sdata2 start:0x803F2C30 end:0x803F2C40 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x80219E1C end:0x80219F10 + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x80219F10 end:0x80219F70 + .dtors start:0x80227588 end:0x8022758C + .sbss start:0x803EE828 end:0x803EE830 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x80219F70 end:0x80219FA0 + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x800054C0 end:0x80005500 + extabindex start:0x80005500 end:0x80005530 + .text start:0x80219FA0 end:0x8021A2DC + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x8021A2DC end:0x8021A304 + .rodata start:0x80227D18 end:0x80227D28 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x8021A304 end:0x8021A374 + .bss start:0x803DA700 end:0x803DA710 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x8021A374 end:0x8021AA6C + .rodata start:0x80227D28 end:0x80227D40 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x8021AA6C end:0x8021AAE8 + .ctors start:0x80227520 end:0x80227524 + .dtors start:0x80227580 end:0x80227588 + .sdata start:0x803EDE70 end:0x803EDE78 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802EF618 end:0x802EF6F0 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x8021AAE8 end:0x8021ABF4 + .bss start:0x803DA710 end:0x803DA910 + .sbss start:0x803EE830 end:0x803EE848 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803EE848 end:0x803EE850 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x8021ABF4 end:0x8021B24C + .rodata start:0x80227D40 end:0x80227DC8 + .sdata start:0x803EDE78 end:0x803EDE80 + .sdata2 start:0x803F2C40 end:0x803F2C70 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x8021B24C end:0x8021B25C + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x8021B25C end:0x8021B35C + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x8021B35C end:0x8021B360 + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x8021B360 end:0x8021B3B0 + .rodata start:0x80227DC8 end:0x802280C8 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x802280C8 end:0x802280D0 + .data start:0x802EF6F0 end:0x802EF720 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x8021B3B0 end:0x8021B68C + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x8021B68C end:0x8021B718 + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003320 end:0x80003464 + .text start:0x8021B718 end:0x8021B864 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x8021B864 end:0x8021BB40 + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x8021BB40 end:0x8021BB44 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x8021BB44 end:0x8021D614 + .rodata start:0x802280D0 end:0x802280E0 + .data start:0x802EF720 end:0x802EF940 + .sdata start:0x803EDE80 end:0x803EDE88 + .sdata2 start:0x803F2C70 end:0x803F2C78 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x8021D614 end:0x8021D640 + .sdata start:0x803EDE88 end:0x803EDE90 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x8021D640 end:0x8021E694 + .rodata start:0x802280E0 end:0x80228108 + .data start:0x802EF940 end:0x802EFA10 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x8021E694 end:0x8021E9D8 + .sdata start:0x803EDE90 end:0x803EDE98 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x8021E9D8 end:0x8021F148 + .rodata start:0x80228108 end:0x80228138 + .sdata2 start:0x803F2C78 end:0x803F2C88 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x8021F148 end:0x8021FABC + .data start:0x802EFA10 end:0x802EFA98 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802EFA98 end:0x802EFAD0 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8021FABC end:0x8021FC3C + .sbss start:0x803EE850 end:0x803EE858 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8021FC3C end:0x8021FCBC + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8021FCBC end:0x8021FCC4 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x8021FCC4 end:0x8021FF5C + .sdata2 start:0x803F2C88 end:0x803F2CE0 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x8021FF5C end:0x80220794 + .rodata start:0x80228138 end:0x80228168 + .sdata2 start:0x803F2CE0 end:0x803F2DF0 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x80220794 end:0x80220814 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x80220814 end:0x80220A54 + .rodata start:0x80228168 end:0x80228200 + .sdata2 start:0x803F2DF0 end:0x803F2E18 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x80220A54 end:0x80220A80 + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x80220A80 end:0x80220B1C + .sdata2 start:0x803F2E18 end:0x803F2E20 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x80220B1C end:0x80220C94 + .sdata2 start:0x803F2E20 end:0x803F2E48 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x80220C94 end:0x80220CB4 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x80220CB4 end:0x80220CD4 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x80220CD4 end:0x80220CDC + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x80220CDC end:0x8022107C + .rodata start:0x80228200 end:0x802282B8 + .sdata2 start:0x803F2E48 end:0x803F2E68 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x8022107C end:0x80221468 + .ctors start:0x80227560 end:0x80227564 + .rodata start:0x802282B8 end:0x802282C8 + .data start:0x802EFAD0 end:0x802EFAE0 + .sdata2 start:0x803F2E68 end:0x803F2E80 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x802282C8 end:0x80228310 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x80221468 end:0x802214F8 + .sdata2 start:0x803F2E80 end:0x803F2E98 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x802214F8 end:0x80221660 + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x80221660 end:0x802218BC + .bss start:0x803DA910 end:0x803DA938 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x802218BC end:0x80221A50 + .rodata start:0x80228310 end:0x80228330 + .bss start:0x803DA938 end:0x803DA940 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x80221A50 end:0x80221A78 + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x80221A78 end:0x802222C0 + .bss start:0x803DA940 end:0x803DC2F0 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x802222C0 end:0x80222488 + .bss start:0x803DC2F0 end:0x803DC308 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x80222488 end:0x8022248C + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x8022248C end:0x80222524 + .data start:0x802EFAE0 end:0x802EFB68 + .bss start:0x803DC308 end:0x803DC310 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x80222524 end:0x802237C8 + .data start:0x802EFB68 end:0x802EFBA0 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x802237C8 end:0x80223C44 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x80223C44 end:0x80223C5C + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x80223C5C end:0x80223D34 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x80223D34 end:0x80223D6C + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003464 end:0x800034B8 + .text start:0x80223D6C end:0x80223E30 + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x80223E30 end:0x8022540C + .rodata start:0x80228330 end:0x8022837C + .data start:0x802EFBA0 end:0x802EFBD0 + .bss start:0x803DC310 end:0x803DC890 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x800034B8 end:0x800053EC + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x800053EC end:0x8000540C + .text start:0x8022540C end:0x8022564C + .data start:0x802EFBD0 end:0x802EFC10 + .bss start:0x803DC890 end:0x803DC898 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x8022564C end:0x802259C4 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x802259C4 end:0x80225A0C + .bss start:0x803DC898 end:0x803DC8A0 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x80225A0C end:0x80225D64 + .data start:0x802EFC10 end:0x802EFC30 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x80225D64 end:0x80225D98 + +amcExi2/AmcExi.c: + .text start:0x80225D98 end:0x802263D8 + .bss start:0x803DC8A0 end:0x803DC8B8 + .sdata start:0x803EDE98 end:0x803EDEA0 + +amcExi2/AmcExi2Comm.c: + .text start:0x802263D8 end:0x80226A7C + .data start:0x802EFC30 end:0x802EFC49 + .sdata start:0x803EDEA0 end:0x803EDEA8 + .sbss start:0x803EE858 end:0x803EE868 + +amcnotstub/amcnotstub.c: + .text start:0x80226A7C end:0x80226A84 + +OdemuExi2/DebuggerDriver.c: + .text start:0x80226A84 end:0x80227504 + .sdata start:0x803EDEA8 end:0x803EDEA9 + .sbss start:0x803EE868 end:0x803EE87D + +odenotstub/odenotstub.c: + .text start:0x80227504 end:0x8022750C diff --git a/config/GPIJ01_02/symbols.txt b/config/GPIJ01_02/symbols.txt new file mode 100644 index 00000000..5c163bbd --- /dev/null +++ b/config/GPIJ01_02/symbols.txt @@ -0,0 +1,29951 @@ +__start = .init:0x80003100; // type:function size:0xF0 scope:weak align:4 +__init_registers = .init:0x800031F0; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x8000320C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800032CC; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x800032EC; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003320; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x80003350; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003414; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x80003464; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x80003488; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x800034B8; // type:label scope:global +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x800053EC; // type:label scope:global +__TRK_reset = .init:0x800053EC; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x8000540C; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x80005490; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x800054C0; // type:object size:0x8 scope:local align:4 +@174 = extab:0x800054C8; // type:object size:0x18 scope:local align:4 +@182 = extab:0x800054E0; // type:object size:0x8 scope:local align:4 +@201 = extab:0x800054E8; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005500; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000550C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005518; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005524; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005530; // type:object size:0x20 scope:global +main = .text:0x80005560; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005600; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005620; // type:function size:0x4 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005640; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x800056C0; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x80005720; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005780; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x80005800; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x800058C0; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x800059A0; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005A80; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005B80; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005C20; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005DC0; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005E80; // type:function size:0x8 scope:global align:32 +Jac_GetOutputMode = .text:0x80005EA0; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005EC0; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005F00; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80005F40; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80005F80; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006080; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x800060C0; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x800061A0; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x800061C0; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x80006220; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x800062C0; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x800062E0; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x80006300; // type:function size:0x44 scope:local align:32 +StopAudioThread = .text:0x80006360; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x800063C0; // type:function size:0x80 scope:local align:32 +__DspSync__FsP9OSContext = .text:0x80006440; // type:function size:0x68 scope:local align:32 +__DspReg__Fv = .text:0x800064C0; // type:function size:0x44 scope:local align:32 +audioproc__FPv = .text:0x80006520; // type:function size:0x130 scope:local align:32 +OSInitFastCast = .text:0x80006660; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x800066A0; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x800067E0; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006B80; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006BA0; // type:function size:0x250 scope:global align:32 +UpdateDSP__Fv = .text:0x80006E00; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006E60; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006EA0; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006EE0; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x800070E0; // type:function size:0x24 scope:global align:32 +ResetPlayerCallback = .text:0x80007120; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80007160; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x800071C0; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x80007220; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x800072E0; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x80007360; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x800073E0; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x80007440; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x800074E0; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x80007540; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x800075C0; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x80007640; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x80007680; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x80007720; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x80007780; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x800077E0; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x80007820; // type:function size:0xD0 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007900; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x800079A0; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x800079E0; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x80007A20; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007A60; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007AC0; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007B80; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007BA0; // type:function size:0x22C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007DE0; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007E80; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007F00; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80007F80; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80007FC0; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80008000; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x80008100; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x80008160; // type:function size:0x18 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008180; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x80008200; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x80008260; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x800082C0; // type:function size:0x3C scope:global align:32 +__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x80008300; // type:function size:0x280 scope:global align:32 +DSPInit = .text:0x80008580; // type:function size:0x4 scope:global align:32 +DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x800085A0; // type:function size:0x98 scope:global align:32 +DspBoot__Fv = .text:0x80008640; // type:function size:0x74 scope:global align:32 +DSPSendCommands__FPUlUl = .text:0x800086C0; // type:function size:0xA8 scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008780; // type:function size:0x48 scope:global align:32 +DSPWaitFinish__Fv = .text:0x800087E0; // type:function size:0x58 scope:global align:32 +DsetupTable__FUlUlUlUlUl = .text:0x80008840; // type:function size:0x48 scope:global align:32 +DsetMixerLevel__Ff = .text:0x800088A0; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800088E0; // type:function size:0x48 scope:global align:32 +DwaitFrame__Fv = .text:0x80008940; // type:function size:0x34 scope:global align:32 +DiplSec__FUl = .text:0x80008980; // type:function size:0x3C scope:global align:32 +DagbSec__FUl = .text:0x800089C0; // type:function size:0x3C scope:global align:32 +WriteTask__FUcUlPvPFPv_v = .text:0x80008A00; // type:function size:0x70 scope:local align:32 +DoTask__Fv = .text:0x80008A80; // type:function size:0xC0 scope:local align:32 +DspExtraTaskCheck__Fv = .text:0x80008B40; // type:function size:0x24 scope:global align:32 +Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x80008B80; // type:function size:0x4C scope:global align:32 +exnor_1st__FUlUl = .text:0x80008BE0; // type:function size:0x38 scope:local align:32 +exnor__FUlUl = .text:0x80008C20; // type:function size:0x38 scope:local align:32 +bitrev__FUl = .text:0x80008C60; // type:function size:0x7C scope:local align:32 +ReadArrayUnlock__FlUlPvli = .text:0x80008CE0; // type:function size:0x17C scope:local align:32 +GetInitVal__Fv = .text:0x80008E60; // type:function size:0x44 scope:local align:32 +DummyLen__Fv = .text:0x80008EC0; // type:function size:0x8C scope:local align:32 +__CARDUnlock = .text:0x80008F60; // type:function size:0x2B0 scope:global align:32 +DoneCallback__FPv = .text:0x80009220; // type:function size:0x1E0 scope:local align:32 +Channel_SetMixerLevel__Ff = .text:0x80009400; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x80009440; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80009460; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80009480; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x80009500; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x80009540; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x800095A0; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x800095C0; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80009660; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x800096C0; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x800097C0; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x800098C0; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x80009940; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x80009A60; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009BA0; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009BE0; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x80009C60; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x80009D40; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x80009E20; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x80009E60; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x8000A1C0; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x8000A240; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8000A2E0; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A680; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A700; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A740; // type:function size:0x180 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A8C0; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A940; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000AA00; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000AA80; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000AB80; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000AC60; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000ACC0; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000AD00; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000AD60; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000AE80; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000AF60; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000B080; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000B160; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000B1E0; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000B2A0; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000B360; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000B560; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000B580; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000B5A0; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000B5E0; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000B600; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000B660; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B6C0; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B700; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B720; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B7E0; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B820; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B840; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B8A0; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B920; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B940; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000B980; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000B9C0; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000BA00; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000BA60; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000BAE0; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000BB20; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000BB60; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000BBA0; // type:function size:0x50 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000BC00; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000BC60; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000BCC0; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BE00; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000BE40; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000C0C0; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000C140; // type:function size:0x24 scope:global align:32 +Bank_Init__Fv = .text:0x8000C180; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000C1C0; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000C200; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000C240; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000C4E0; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000C580; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000C5C0; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C640; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C6E0; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C720; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C760; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C7E0; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C820; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C860; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C900; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CA80; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000CB20; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000CC80; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000CCE0; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000CE00; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000CE80; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000CEA0; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000CEC0; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000CF20; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000CF80; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000CFC0; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000D000; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000D040; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000D0A0; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000D140; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000D1C0; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000D2E0; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000D340; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D740; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D7C0; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D800; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D840; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D8A0; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D920; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000D9A0; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000D9E0; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000DA20; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000DAA0; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000DBA0; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000DBE0; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000DC20; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000DC40; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000DCC0; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000DD00; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000DDA0; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000DDE0; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000DE40; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000DF00; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000DFE0; // type:function size:0x190 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000E180; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000E1E0; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000E220; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000E300; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000E340; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000E360; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000E3E0; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000E420; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000E480; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000E4E0; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000E520; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000E540; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000E580; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E6C0; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E740; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E7C0; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E800; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E8E0; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000E9C0; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000EA00; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000EB00; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000EC00; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000EC60; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000ECA0; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000EDA0; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000EDE0; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000EE40; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000F000; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000F1C0; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000F240; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000F320; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000F400; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000F460; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000F4C0; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000F520; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000F5A0; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F600; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F680; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F6E0; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F740; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F820; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F8C0; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F8E0; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000FAA0; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000FB60; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000FC00; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x800100A0; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x80010220; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x80010280; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x800102E0; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x80010340; // type:function size:0x3C scope:global align:32 +Jam_WritePortAppDirect = .text:0x80010380; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x80010400; // type:function size:0x30 scope:global align:32 +Jam_CheckPortAppDirect = .text:0x80010440; // type:function size:0x6C scope:global align:32 +Jam_InitRegistTrack = .text:0x800104C0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x80010500; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x800105C0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010660; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800106C0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800106E0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010720; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010780; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800107E0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x800108A0; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800108E0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010920; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010960; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x800109A0; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x800109E0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010A20; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010A60; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010A80; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x80010AE0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010E00; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010E20; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x800112E0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x80011400; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x800114E0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011620; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011720; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011760; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x80011800; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011840; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x800118A0; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800118E0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x800119E0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011A20; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011A80; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x80011AA0; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x80011AC0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011B20; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x80011BA0; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011C00; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011C40; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x80011CA0; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011D00; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011D40; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011D80; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x80011DC0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011E20; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011E60; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011E80; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x80011EC0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80011F00; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80011F80; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x80011FE0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80012060; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x800120A0; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x800120E0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80012120; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80012140; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x800121A0; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x800121E0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x80012200; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80012220; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80012260; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x800122A0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x800122E0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80012320; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80012380; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x800123C0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x80012400; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80012440; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x800124A0; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x80012500; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x800125E0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x80012600; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800126C0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012760; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800127C0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012820; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x80012900; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012940; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x800129E0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012A20; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x80012AA0; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x80012CC0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012E00; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x80012EC0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013780; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013840; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x80013BE0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013C80; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x80013CC0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013D20; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x80013DA0; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013E40; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x80013EE0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80013F60; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x80013FC0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80014020; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80014040; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x800143C0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80014460; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x800144C0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x80014500; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014680; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800146C0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014780; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800148E0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x800149A0; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x80014AC0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x80014BC0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x80014CA0; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014D40; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014D80; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x80014DC0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014E40; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014E60; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x80014EC0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80014F60; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80015020; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80015140; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80015180; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x800151C0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80015220; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x800152A0; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x800153E0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x800154C0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80015540; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x800155C0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800156E0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015840; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x800158A0; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x80015900; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015940; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015960; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80015AC0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x80015BC0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015C40; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015C80; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x80015CC0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015D40; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80015DC0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015E00; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x80015EA0; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80015F80; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x80015FA0; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x80015FE0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x800160A0; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80016280; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80016320; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x800165A0; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800167C0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x80016900; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016920; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016940; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016960; // type:function size:0x48 scope:global align:32 +Jac_SetProcessStatus = .text:0x800169C0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016A60; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x80016AE0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016B00; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016B20; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x80016BA0; // type:function size:0x3A0 scope:global align:32 +Jac_StopSystemSe = .text:0x80016F40; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x80016FC0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80017020; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80017040; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x80017100; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80017180; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x800171A0; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x800171C0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80017320; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80017380; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x800173C0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x800173E0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80017420; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80017460; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x800174E0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80017540; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80017560; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x800175E0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017640; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x800176A0; // type:function size:0xEC scope:global align:32 +Jac_EventFrameCheck = .text:0x800177A0; // type:function size:0xBC scope:global align:32 +Jac_UpdateCamera = .text:0x80017860; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x800179A0; // type:function size:0x118 scope:global align:32 +Jac_UpdateEventPosition = .text:0x80017AC0; // type:function size:0x5C scope:global align:32 +Jac_PlayEventAction = .text:0x80017B20; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017E00; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x80017EC0; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017F40; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x80017FA0; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80018040; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x80018080; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x800180C0; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80018120; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x80018200; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x800183A0; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x80018600; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018640; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x80018680; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018740; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x800187C0; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x80018980; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x800189C0; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018B40; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018B80; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x80018BE0; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018C80; // type:function size:0x244 scope:global align:32 +Jac_ChangeBgmMode = .text:0x80018EE0; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018F40; // type:function size:0xA8 scope:global align:32 +Jac_BgmFrameWork = .text:0x80019000; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80019140; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x80019200; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x80019380; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80019420; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x80019500; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x80019600; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x800196E0; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019720; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x80019760; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x800197A0; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019840; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x80019860; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x80019880; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019CE0; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019DE0; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019E00; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x80019E80; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019F00; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019F40; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x80019F80; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x8001A020; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x8001A0E0; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x8001A100; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x8001A120; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x8001A180; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x8001A1E0; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x8001A260; // type:function size:0x7C scope:global align:32 +DoSequence__FUlUl = .text:0x8001A2E0; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x8001A460; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x8001A4C0; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x8001A520; // type:function size:0x4F0 scope:global align:32 +Jac_DemoSound = .text:0x8001AA20; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001AA60; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001AAC0; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001AB40; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001ABA0; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001AC80; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001ADA0; // type:function size:0xA8 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001AE60; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001AE80; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001AEA0; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001B060; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001B120; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001B200; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001B260; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001B300; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001B380; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001B3A0; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001B3C0; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001B4A0; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001B4E0; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B580; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B5A0; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B5C0; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B660; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B6A0; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B6E0; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B760; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B780; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B7C0; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B900; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B940; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B980; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue_Noblock = .text:0x8001B9E0; // type:function size:0x30 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001BA20; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001BA80; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001BB00; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001BB40; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001BB80; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001BBC0; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001BC00; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001BCE0; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001BD00; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001BD20; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001BD60; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001BDC0; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001BF20; // type:function size:0x190 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001C0C0; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001C0E0; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001C120; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001C440; // type:function size:0x8A8 scope:local align:32 +RegisterStreamCallback = .text:0x8001CD00; // type:function size:0x8 scope:global align:32 +Jac_Decode_ADPCM = .text:0x8001CD20; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001CEC0; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CFA0; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001CFE0; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001D180; // type:function size:0x54 scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001D1E0; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001D320; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001D360; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001D3C0; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001D420; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001D480; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D4E0; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D5A0; // type:function size:0x124 scope:local align:32 +StreamChgVolume = .text:0x8001D6E0; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D720; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D760; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D900; // type:function size:0x3C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D940; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D980; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001DA60; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001DB00; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001DB20; // type:function size:0x20 scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001DB40; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001DC00; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001DC60; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001DD80; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001DE00; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DFA0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001E000; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001E3C0; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001E420; // type:function size:0x394 scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E7C0; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E840; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001EA80; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001EAC0; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001EB20; // type:function size:0xFC scope:local align:32 +init_global_constants = .text:0x8001EC1C; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001EF7C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001F098; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001F364; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001F3C8; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F68C; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F7C8; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F808; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F878; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001FC1C; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001FDB4; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001FDFC; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x800201CC; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x80020648; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x8002078C; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020860; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x8002093C; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x800209C8; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020A64; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x80020C10; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x80020DAC; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80021058; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x80021A58; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021E74; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x800226E0; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022BA4; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x80022D08; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022E60; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x80023290; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x800236CC; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x800236EC; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x80023710; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x80023784; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x80023BE8; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x800240F8; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x8002411C; // type:function size:0x5A8 scope:global align:4 +_Error__FPce = .text:0x800246C4; // type:function size:0x9C scope:local align:4 +reset__8AyuStackFi = .text:0x80024760; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x8002481C; // type:function size:0x14C scope:global align:4 +pop__8AyuStackFv = .text:0x80024968; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x800249BC; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x80024A30; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x80024A98; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x80024C30; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x80024D50; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024E64; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024E7C; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x80024EB0; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024F88; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024F90; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024FD8; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x8002507C; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80025080; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80025084; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x8002508C; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80025094; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x800250C4; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x800250C8; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x800250F4; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x80025120; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x8002514C; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x80025150; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x80025158; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x8002515C; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x80025164; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x8002519C; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x800251D4; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x8002520C; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80025244; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x800252C0; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x800252F8; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x8002539C; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x800253D4; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x8002540C; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x80025444; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x8002547C; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x800254B8; // type:function size:0xD4 scope:global align:4 +read__6StreamFPvi = .text:0x8002558C; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x80025590; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x80025594; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x8002559C; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x800255A4; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x800255A8; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x800255AC; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x800255B4; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x8002564C; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x8002570C; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x80025794; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x800257D8; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x800258DC; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x8002590C; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x80025914; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x80025940; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x80025948; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x800259A4; // type:function size:0x24 scope:global align:4 +_Error__FPce = .text:0x800259C8; // type:function size:0x9C scope:local align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x80025A64; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x80025B84; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x8002601C; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x80026214; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x800266B4; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x800268BC; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x80026C6C; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x80026F64; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x80027508; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x800276F0; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x80027708; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x80027828; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x8002787C; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x80027880; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x80027888; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027AC0; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027BE0; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027E08; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x800280D8; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x80028104; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x80028110; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x800281A8; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80028284; // type:function size:0xE0 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x80028364; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x800283BC; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x800283D0; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x80028404; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x80028434; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x800285FC; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x80028608; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x80028658; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x80028664; // type:function size:0x70 scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x800286D4; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x800286EC; // type:function size:0x1A4 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x80028890; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x80028930; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x800289CC; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x80028AFC; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x80028B54; // type:function size:0x3B0 scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028F04; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x800290AC; // type:function size:0x200 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x800292AC; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x80029358; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x80029614; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x80029810; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x80029980; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x80029A94; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x80029A98; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x80029B14; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x80029B18; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x80029B1C; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x80029B20; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x80029B28; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x80029B30; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x80029B38; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x80029B3C; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x80029BB8; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029BE8; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x80029BEC; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x80029DEC; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029E00; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029EE4; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x8002A06C; // type:function size:0xD0 scope:global align:4 +_Error__FPce = .text:0x8002A13C; // type:function size:0x9C scope:local align:4 +read__8DispListFR18RandomAccessStream = .text:0x8002A1D8; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x8002A2D8; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x8002A414; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x8002A4A8; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x8002A5B8; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x8002A5CC; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x8002A670; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A94C; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A998; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002AB5C; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002ABD8; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002AF0C; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002B170; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002BEBC; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002BF5C; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002C150; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002C18C; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002C4FC; // type:function size:0x188 scope:global align:4 +detach__8AnimDataFv = .text:0x8002C684; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C6C0; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C6D0; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C92C; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002CD00; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002CD34; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D7C0; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D914; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002DA20; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002DE3C; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002EB20; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002EC74; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002EE94; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002EF60; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002F2C4; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002F314; // type:function size:0xF4 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002F408; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002F5F0; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F8FC; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002FA68; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002FB2C; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002FBA4; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002FEB0; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002FEB4; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002FEC0; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002FF6C; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x800306E4; // type:function size:0x1A0 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x80030884; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x80030C90; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030CEC; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030DB8; // type:function size:0x25BC scope:global align:4 +__ct__9CollGroupFv = .text:0x80033374; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x8003338C; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x80033470; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x800334C4; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x800334D8; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033804; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x800338FC; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x80033AAC; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x80033B0C; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x80033B58; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x80033B5C; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x80033DA4; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x80033FFC; // type:function size:0xBA0 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x80034B9C; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034CEC; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x80034DD4; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x80034FB4; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x80035090; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80035254; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x80035284; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x80035294; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x800352CC; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x80035300; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x80035394; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x80035408; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x800355B0; // type:function size:0x32C scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x800358DC; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x80035A6C; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035BAC; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035CA4; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x80035D04; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035D34; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035D38; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035D3C; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x80035D40; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035D44; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035D48; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035D4C; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x80035D50; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035D54; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035D84; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x80035E0C; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x80035E20; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80036240; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x8003640C; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x8003675C; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x800368E0; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x80036A64; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x80037404; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x80037420; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x80037480; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x8003784C; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x80037850; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x80037854; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x800378F4; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x800379A0; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x80037A34; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x80037AF8; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x80037BA4; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x80038088; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x8003812C; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80038218; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x800382EC; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x8003836C; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x800383EC; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x8003846C; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x800385D0; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x80038870; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x8003889C; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x80038910; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x80038960; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x80038B1C; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x80038BE0; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80039224; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x8003930C; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x8003956C; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x80039714; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x80039784; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x800397B0; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x80039874; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003B138; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B960; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003D6FC; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003DB64; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003E0A4; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003E0F0; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003E1B0; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003E21C; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003E3BC; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E3DC; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003E578; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E724; // type:function size:0x318 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003EA3C; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003EB00; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003EE00; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003EF00; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003EF84; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003F0B0; // type:function size:0x4 scope:local align:4 +_Error__FPce = .text:0x8003F0B4; // type:function size:0x9C scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003F150; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003F180; // type:function size:0x144 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003F2C4; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003F2D0; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003F338; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003F33C; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003F350; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003F384; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003F394; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003F424; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003F518; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003F520; // type:function size:0x1C0 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003F6E0; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F780; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F824; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F8E0; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F998; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003F9C0; // type:function size:0xB4 scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003FA74; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003FAFC; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003FB44; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003FC18; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003FC28; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003FD30; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003FD98; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003FDB4; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003FDC0; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003FDF8; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003FED4; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x80040120; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x80040680; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x80040684; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x8004068C; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x800406E8; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x80040730; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x80040774; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x800407C4; // type:function size:0xEC scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x800408B0; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x800408B4; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x800408B8; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x800408BC; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x800408C0; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x800408C4; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x800408C8; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x800408F8; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x800408FC; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x8004092C; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x80040930; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x80040968; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x800409D8; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x800409F8; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x80040A94; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x80040ABC; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x80040B28; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x80040B84; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040BB0; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x80040C2C; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040C90; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x80040CCC; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040CD0; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x80040CD4; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x80040CDC; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x80040CEC; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x80040CFC; // type:function size:0x4 scope:global align:4 +_stop__6TimersFPc = .text:0x80040D00; // type:function size:0x4 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x80040D04; // type:function size:0x4 scope:global align:4 +reset__10ControllerFUl = .text:0x80040D08; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x80040D2C; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x80040DC8; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x80040DF4; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x80040E2C; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x80040E64; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x80040E9C; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x80040ED4; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x80040F84; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x80041070; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x800410B0; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80041224; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80041274; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x80041408; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x8004172C; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x800417E0; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x800418DC; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x80041948; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x80042904; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x80042D70; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x80042FAC; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x800430FC; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x80043364; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x800433A0; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x8004351C; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x8004366C; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x8004373C; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x80043C44; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x80043C7C; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x80043D54; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80043DE8; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x80043E7C; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x80043EFC; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x80043F70; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x80043FCC; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x80044064; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80044110; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x8004418C; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x8004419C; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x800441A4; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x800441AC; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x800441B4; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x800441EC; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x8004421C; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80044240; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x800442E8; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x8004430C; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x80044338; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x8004434C; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80044360; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x800443F4; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x800444B0; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x800444B4; // type:function size:0x38 scope:global align:4 +_Error__FPce = .text:0x800444EC; // type:function size:0x9C scope:local align:4 +__ct__7TextureFv = .text:0x80044588; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x800445F8; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x800446CC; // type:function size:0x188 scope:global align:4 +detach__7TextureFv = .text:0x80044854; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x80044860; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x80044978; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x80044A5C; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x80044B6C; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x80044BEC; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x80044BF0; // type:function size:0x9C scope:local align:4 +openFile__6SystemFPcbb = .text:0x80044C8C; // type:function size:0x278 scope:global align:4 +initSoftReset__6SystemFv = .text:0x80044F04; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80044F4C; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80045040; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80045064; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x80045088; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x800450E8; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80045140; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x8004527C; // type:function size:0x3AC scope:global align:4 +read__9DVDStreamFPvi = .text:0x80045628; // type:function size:0xAC scope:weak align:4 +getPending__9DVDStreamFv = .text:0x800456D4; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x800456DC; // type:function size:0x648 scope:local align:4 +hardReset__6SystemFv = .text:0x80045D24; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x80045E38; // type:function size:0xF8 scope:global align:4 +initBigFont__Fv = .text:0x80045F30; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x800460A0; // type:function size:0x180 scope:global align:4 +Initialise__6SystemFv = .text:0x80046220; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x800466B8; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x800466BC; // type:function size:0x4C scope:global align:4 +halt__6SystemFPciPc = .text:0x80046708; // type:function size:0x30 scope:global align:4 +loadFunc__FPv = .text:0x80046738; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x80046A80; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80046A84; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80046A88; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x80046B1C; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x80046B50; // type:function size:0x8C scope:global align:4 +doneDMA__FUl = .text:0x80046BDC; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x80046C28; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x80046C38; // type:function size:0x144 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x80046D7C; // type:function size:0xEC scope:global align:4 +freeBuffer__FUl = .text:0x80046E68; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x80046F28; // type:function size:0x110 scope:global align:4 +dvdFunc__FPv = .text:0x80047038; // type:function size:0x228 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x80047260; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80047294; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x800472EC; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x8004734C; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x80047468; // type:function size:0x3C scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x800474A4; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x800474D4; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80047578; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80047580; // type:function size:0x7C scope:weak align:4 +_Error__FPce = .text:0x800475FC; // type:function size:0x9C scope:local align:4 +alloc__6SystemFUl = .text:0x80047698; // type:function size:0x1CC scope:global align:4 +__nwa__FUli = .text:0x80047864; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x800478A8; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x800478AC; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x800478B0; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80047974; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80047994; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x800479BC; // type:function size:0x1F8 scope:global align:4 +_Error__FPce = .text:0x80047BB4; // type:function size:0x9C scope:local align:4 +__ct__11DGXGraphicsFb = .text:0x80047C50; // type:function size:0x2C0 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x80047F10; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x80047FA4; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x80048038; // type:function size:0x68 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x800480A0; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x800480E0; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x80048120; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x80048128; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x80048130; // type:function size:0x78 scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x800481A8; // type:function size:0x4E4 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x8004868C; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x80048838; // type:function size:0x50 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x80048888; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x800488B8; // type:function size:0xCC scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80048984; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x800489F4; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x80048A78; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80048A80; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x80048AAC; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x80048AFC; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x80048B58; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x80048BD0; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80048C70; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x80048E40; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x80049184; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x8004921C; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x800493B8; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x800493F4; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x8004948C; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x800494BC; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x800494C0; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x80049590; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x800496F8; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x8004974C; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x80049844; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x8004998C; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x8004A1F0; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x8004A3C4; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x8004A624; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x8004A868; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x8004A918; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x8004A9B4; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x8004A9C0; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x8004AA20; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x8004AA2C; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x8004AA60; // type:function size:0x80 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x8004AAE0; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x8004AB20; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004AC84; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004B0BC; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004B174; // type:function size:0x354 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004B4C8; // type:function size:0x29C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004B764; // type:function size:0x140 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004B8A4; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004B998; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004BBBC; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BF94; // type:function size:0x238 scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C1CC; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004C394; // type:function size:0x488 scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C81C; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004C9F8; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004CBA4; // type:function size:0x404 scope:global align:4 +directErase__11DGXGraphicsFR8RectAreab = .text:0x8004CFA8; // type:function size:0x108 scope:global align:4 +__ct__5ShapeFv = .text:0x8004D0B0; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004D0EC; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004D228; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004D22C; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004D230; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004D234; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004D238; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004D264; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004D298; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004D39C; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004D498; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004DA64; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004E010; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004E0C0; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004E0D0; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004E104; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004E138; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004E154; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004E194; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004E1C8; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004E1FC; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004E230; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004E26C; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004E4C8; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004E55C; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004E868; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004E86C; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004EA28; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004EA78; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8004F808; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x8004F874; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x8004FBC0; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x8004FF58; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x80050110; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x800501F0; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x800501F4; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x800503DC; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x80050518; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x80050520; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x800505D8; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x8005078C; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x8005080C; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x800508F4; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x80050960; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x80050970; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x80050974; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x8005097C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x80050980; // type:function size:0x9C scope:local align:4 +checkAnimData__8AnimInfoFv = .text:0x80050A1C; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x80050AF8; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x80050D74; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x80050DBC; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x80050DE0; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x80050E04; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x80050E28; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80050E4C; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x80050E84; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x80050EBC; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x80050EF4; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x800511EC; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x8005120C; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x8005121C; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x8005129C; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x800514D0; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x800514DC; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x800514FC; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x800516E4; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x80051770; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x80051790; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x80051968; // type:function size:0x22C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x80051B94; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80051B98; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x80051BC8; // type:function size:0x80 scope:global align:4 +animate__8AnimatorFf = .text:0x80051C48; // type:function size:0x24C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80051E94; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x80051E9C; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051EA4; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051EAC; // type:function size:0x8 scope:weak align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80051EB4; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x80052004; // type:function size:0x258 scope:global align:4 +setTime__10WorldClockFf = .text:0x8005225C; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x80052304; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x800523FC; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x8005248C; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x800524EC; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x8005254C; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x800525AC; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x8005260C; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x8005266C; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x800526CC; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x8005276C; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x80052818; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x800528C4; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x800528E8; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x80052A2C; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80052AC8; // type:function size:0x61C scope:global align:4 +Initialise__12GameHiscoresFv = .text:0x800530E4; // type:function size:0xC8 scope:weak align:4 +softReset__8GameFlowFv = .text:0x800531AC; // type:function size:0x548 scope:global align:4 +__ct__4NodeFPc = .text:0x800536F4; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x80053760; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x80053784; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x800537B0; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80053880; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x800538E0; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x800538E4; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80053914; // type:function size:0x1CC scope:local align:4 +Initialise__9GamePrefsFv = .text:0x80053AE0; // type:function size:0x84 scope:weak align:4 +__ct__17GameRecChalCourseFv = .text:0x80053B64; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80053B80; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x80053B8C; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80053B98; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x80053BAC; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80053BB0; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x80053D18; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x80054090; // type:function size:0x52C scope:global align:4 +__sinit_game_cpp = .text:0x800545BC; // type:function size:0xF0 scope:local align:4 +openStage__9PlayStateFi = .text:0x800546AC; // type:function size:0x40 scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x800546EC; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x8005472C; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x8005476C; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x80054808; // type:function size:0xB8 scope:global align:4 +setChildMode__9GamePrefsFb = .text:0x800548C0; // type:function size:0x54 scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x80054914; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR17GameChalQuickInfo = .text:0x8005497C; // type:function size:0x174 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x80054AF0; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x80054E3C; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x80054FB4; // type:function size:0xB8 scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x8005506C; // type:function size:0x330 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x8005539C; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x80055490; // type:function size:0xF4 scope:global align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x80055584; // type:function size:0x190 scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x80055714; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80055998; // type:function size:0x1C scope:global align:4 +init__16GameSetupSectionFv = .text:0x800559B4; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x800559B8; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x800559C8; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x800559D0; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x800559D8; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x800559E0; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x800559E8; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x80055A3C; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x80055A8C; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80055CC8; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x80055F60; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80056158; // type:function size:0x4 scope:weak align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x8005615C; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x800564C4; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80056794; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x800568A0; // type:function size:0x46C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x80056D0C; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80056FA0; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x800572C8; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x800574EC; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x800574F0; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x80057520; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x80057550; // type:function size:0x9C scope:local align:4 +createMenuWindow__Fv = .text:0x800575EC; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x80057704; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x800578B4; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80057970; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80057A88; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x80057CCC; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x80057CD0; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x80057DF8; // type:function size:0x640 scope:global align:4 +message__13GameInterfaceFii = .text:0x80058438; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x8005843C; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x800584B4; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x80058748; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80058AA8; // type:function size:0x474 scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x80058F1C; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x8005916C; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x800594D4; // type:function size:0x430 scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x80059904; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x80059B5C; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x80059C98; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x80059D58; // type:function size:0x43C scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x8005A194; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x8005A1E0; // type:function size:0x724 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x8005A904; // type:function size:0x160 scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x8005AA64; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x8005AC18; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005AC38; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x8005AC3C; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x8005AC40; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x8005AC44; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005AC98; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005ADD0; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005ADDC; // type:function size:0x83C scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005B618; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005B61C; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005B620; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005B65C; // type:function size:0x11C scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005B778; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005B840; // type:function size:0x78 scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005B8B8; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005B8C4; // type:function size:0x74 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005B938; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005B93C; // type:function size:0x298 scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005BBD4; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005BC54; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005BC58; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005BC64; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005BCC0; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005BCF0; // type:function size:0x4BC scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005C1AC; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005C1B0; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005C24C; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005C29C; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005C2A0; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005C3F0; // type:function size:0x210 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005C600; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005C870; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005C960; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005C9B4; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005C9F4; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005CA5C; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005CABC; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005CB94; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005CBC4; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005DA8C; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005DBD4; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005DC04; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005DC08; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005DC48; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005DCB0; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005DD40; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005DD80; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005DD84; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005DD8C; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005E034; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005E048; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005E198; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005E1AC; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005E1C8; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005E1CC; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005E200; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005E204; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005E208; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005E20C; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005E210; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005E214; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005E218; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005E3E0; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005E474; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005E53C; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005E540; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005E588; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005E5CC; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005E5F8; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005E61C; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005E63C; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005E7D0; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005E954; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005EAA4; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005EAC0; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005EADC; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005ED34; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x8005EF30; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x8005F53C; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8005F5A0; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x8005F60C; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x8005F6B4; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x8005F6B8; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x8005F78C; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005F790; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005F7D0; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005F808; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005F848; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x8005F880; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x8005F8D8; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x8005F910; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x8005FA70; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x8005FAB0; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x8005FAFC; // type:function size:0x4BC scope:global align:4 +idle__11PlugPikiAppFv = .text:0x8005FFB8; // type:function size:0x144 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x800600FC; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x80060244; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x800602A8; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x800602B0; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x80060324; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x800603B0; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x800603E8; // type:function size:0x87C scope:global align:4 +update__17TitleSetupSectionFv = .text:0x80060C64; // type:function size:0x734 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x80061398; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x80061C54; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80061D40; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80061D70; // type:function size:0x180 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x80061EF0; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x80061FE0; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x800621F4; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x800622E0; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x80062548; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80062914; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x80062958; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x800629EC; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x80062A34; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x80062A70; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80062AD4; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80062B08; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x80062CC4; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80062CE8; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x80062D24; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x80062ECC; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x80062EF8; // type:function size:0x184 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x8006307C; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800630AC; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800630DC; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80063294; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x8006344C; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x80063CB4; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x8006455C; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x80064654; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x80064A3C; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x80064BE8; // type:function size:0x1E0 scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x80064DC8; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x80065030; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x800653D4; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x8006590C; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x80065FBC; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x80065FD4; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x80066004; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x800663C8; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x800663E8; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x800663EC; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x800664E8; // type:function size:0x1D4 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x800666BC; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x800666C4; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x800667B8; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x80066954; // type:function size:0x438 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x80066D8C; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80066E20; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x80066E80; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x8006760C; // type:function size:0x160 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x8006776C; // type:function size:0xEDC scope:global align:4 +updatePos__6MapMgrFff = .text:0x80068648; // type:function size:0x270 scope:global align:4 +getLight__6MapMgrFff = .text:0x800688B8; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x800688C0; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x80068A24; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80068B88; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x80068CF8; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x80068E54; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x80069140; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x8006996C; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x80069970; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x80069974; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x80069F44; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x80069FB4; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x8006A050; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x8006A184; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x8006A1B0; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x8006A1EC; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x8006A224; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x8006A260; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x8006A264; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x8006A268; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x8006A26C; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x8006A274; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x8006A278; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x8006A27C; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8006A280; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x8006A2B8; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x8006A2BC; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x8006A2C4; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x8006A31C; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x8006A374; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x8006A3CC; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x8006A420; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x8006A4C4; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x8006A568; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x8006A5B8; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x8006A608; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x8006A658; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x8006A6A4; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x8006A6F8; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x8006A74C; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x8006A7A0; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x8006A7F4; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x8006A84C; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x8006A8A4; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006ACD8; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006B130; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006B184; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006B1DC; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006B234; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006B960; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006BF1C; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006BF78; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006BFD4; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006DB54; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006E080; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006EBB0; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x8006EEC4; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x8006EF1C; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x8006EF74; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x8006EFF8; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x8006F07C; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x8006FAB4; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x8006FB08; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x8006FB8C; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x8007044C; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x8007047C; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x800704AC; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x800704DC; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x8007050C; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x8007053C; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x800706F8; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x800708A8; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x800709D8; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x800710F8; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x800711AC; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x8007123C; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x800712DC; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x80071414; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x80071498; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x80071A0C; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80071AD0; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x80071B78; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x80071D08; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x80071DCC; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x80071F88; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x80072D54; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x80073C64; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80073C80; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80073C84; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x80073DF0; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x800743E8; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x800743F4; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x80074400; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x8007457C; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x800745EC; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x80074720; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x80074758; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80074914; // type:function size:0xFC scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80074A10; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80074B84; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x80074C34; // type:function size:0x1DC scope:global align:4 +loadOptions__10MemoryCardFv = .text:0x80074E10; // type:function size:0xA4 scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x80074EB4; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80074F88; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x80075034; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x80075458; // type:function size:0x128 scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x80075580; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x800755F0; // type:function size:0x3B0 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x800759A0; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80075BB0; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x80075FC4; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x80075FD4; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x800762E8; // type:function size:0x454 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x8007673C; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x800767A8; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x800767DC; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80076A08; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x80076F7C; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x8007701C; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x80077548; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x80077588; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x80077920; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x80077954; // type:function size:0x9C scope:local align:4 +__ct__11MoviePlayerFv = .text:0x800779F0; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x80077AAC; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x80077B8C; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x80077C1C; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80077D1C; // type:function size:0x4B0 scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x800781CC; // type:function size:0xF4 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x800782C0; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x800783E4; // type:function size:0x64 scope:global align:4 +update__11MoviePlayerFv = .text:0x80078448; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80078814; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x800788C0; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x800788DC; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x800789DC; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x80078A3C; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80078AB0; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x80078EA0; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x80078ED4; // type:function size:0x250 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x80079124; // type:function size:0x148 scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x8007926C; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x80079964; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x80079B4C; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x80079FE8; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x8007A014; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x8007A018; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x8007A068; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x8007A158; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x8007A160; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x8007A164; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x8007A16C; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x8007A1C8; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x8007A1CC; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x8007A1D0; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x8007A458; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x8007A820; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x8007AAA8; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007AEB8; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007B2C8; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007B600; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007B938; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007B94C; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007B960; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007B99C; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007B9D8; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007BB60; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007BCE0; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007BCF4; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007BD30; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007BF00; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007BF14; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007BF50; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007C118; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007C1E0; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007C2C8; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007C338; // type:function size:0x44 scope:global align:4 +_Error__FPce = .text:0x8007C37C; // type:function size:0x9C scope:local align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007C418; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007C5B8; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007C678; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007C6E4; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007C764; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007C768; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007C7DC; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007C7E0; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007C900; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007C9B4; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007CA30; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007CA38; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007CB40; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007CB9C; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007CC88; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007CC90; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007CE1C; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007CE60; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007CE68; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007CFF0; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007CFF8; // type:function size:0x330 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007D328; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007D330; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007D378; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007D3A4; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007D4DC; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007D4E4; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007D4EC; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007D4F4; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007D4FC; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007D504; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007D50C; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007D514; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007D51C; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007D524; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007D52C; // type:function size:0x9C scope:local align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007D5C8; // type:function size:0x58 scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007D620; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007D740; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007D77C; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007D880; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007D888; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007DB44; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007DCA0; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007DCE0; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007DD20; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007DD60; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007DDA0; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007DDD0; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007DE00; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007DE30; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007DE70; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007DE74; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007DE78; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007DE7C; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007DE80; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007DE84; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007DE88; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007DE8C; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007DE90; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007DE94; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007DE98; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007DE9C; // type:function size:0x118 scope:weak align:4 +_Error__FPce = .text:0x8007DFB4; // type:function size:0x9C scope:local align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007E050; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007E0F4; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007E160; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007E1C0; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007E274; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007E278; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007E27C; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007E2AC; // type:function size:0x9C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007E348; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007E36C; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007E3D4; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007E3DC; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007E4C4; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007E5BC; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007E5E8; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007E6C0; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007E6C4; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007E6CC; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007E6D0; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007E74C; // type:function size:0x114 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007E860; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007E868; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007E974; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007EA18; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007EA1C; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007EA90; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007EB30; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007EB68; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007EB6C; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007EB70; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007EB74; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007EB7C; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007EB84; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007EB8C; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007EB90; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007EB94; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007EB9C; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007EBA4; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007EBAC; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007EBB0; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007EBB4; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007EBB8; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007EBC0; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007EBC8; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007EBD0; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007EBD8; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007EBDC; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007EBE0; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007EBE4; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007EBE8; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007EC04; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007EC20; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007EC28; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007EC30; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007EC38; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007EC50; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007EC58; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007EC60; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007EC68; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007EC80; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007EC84; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007EC88; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007EC8C; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007EC90; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007EC94; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007EC98; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007EC9C; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007ECA0; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007ECA4; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007ECAC; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007ECB4; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007ECBC; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007ECC0; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007ECC4; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007ECC8; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007ECCC; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007ECD0; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007ECD4; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007ECD8; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007ECDC; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007ECE0; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007ED10; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007ED14; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007ED6C; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007EDD4; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8007EDDC; // type:function size:0x9C scope:local align:4 +getCreature__12FormationMgrFi = .text:0x8007EE78; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007EE88; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007EE90; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007EE98; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x8007EEB4; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x8007EF94; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8007F03C; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x8007F044; // type:function size:0x1FC scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x8007F240; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x8007F434; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x8007F5D4; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x8007F8D4; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x8007FB8C; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x8007FC78; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x8007FEE4; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x800801E0; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x800801E8; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x80080208; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x800802EC; // type:function size:0x9C scope:local align:4 +isEnding__11PlayerStateFv = .text:0x80080388; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x800803E0; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x8008057C; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x80080748; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x80080A78; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x80080AA4; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x80080B14; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x80080B54; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x80080B70; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x80080BE4; // type:function size:0x58 scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x80080C3C; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x80080C44; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x80080CC8; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x800810C4; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x80081490; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x800814D4; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x80081500; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x80081568; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x800815E8; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x80081608; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x80081620; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x8008167C; // type:function size:0x15C scope:global align:4 +initCourse__11PlayerStateFv = .text:0x800817D8; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x80081988; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x80081A58; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x80081AEC; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80081AF4; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x80081C44; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x80081C58; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x80081C60; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80081C88; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80081CB0; // type:function size:0xAC scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80081D5C; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80081D64; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80081D6C; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80081DBC; // type:function size:0xD0 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x80081E8C; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x80081F00; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x800820F0; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x800821C0; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80082244; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x8008230C; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x80082418; // type:function size:0x4AC scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x800828C4; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x8008291C; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x80082A1C; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x80082A68; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x80082D70; // type:function size:0x9C scope:local align:4 +__ct__9DemoFlagsFv = .text:0x80082E0C; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x80083400; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x80083458; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x8008346C; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x80083564; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x800835D4; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x80083644; // type:function size:0xB0 scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x800836F4; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x80083724; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x8008374C; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80083980; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x800839B0; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x800839F8; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x80083A14; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x80083A24; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x80083A48; // type:function size:0x9C scope:local align:4 +demoCheck__4NaviFv = .text:0x80083AE4; // type:function size:0x6F4 scope:global align:4 +demoCheck__4PikiFv = .text:0x800841D8; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x80084424; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x80084428; // type:function size:0x44C scope:global align:4 +_Error__FPce = .text:0x80084874; // type:function size:0x9C scope:local align:4 +__ct__11ResultFlagsFv = .text:0x80084910; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x80084ACC; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x80084C44; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x80084CE8; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x80084D84; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80084DD4; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x80084DF8; // type:function size:0xA0 scope:global align:4 +getDocument__11ResultFlagsFRi = .text:0x80084E98; // type:function size:0x18C scope:global align:4 +dump__11ResultFlagsFv = .text:0x80085024; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x80085130; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80085160; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x800851F0; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x8008523C; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x800856AC; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x800856D0; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x800856E0; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x80085704; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x80085760; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x800857D4; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x800858B0; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x800858E8; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x8008594C; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x80085968; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x80085A50; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x80085A9C; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x80085C78; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x80085D38; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x80085D78; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x80085DA4; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x800869C4; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x80086A4C; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x80086AC4; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x80086B3C; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x80086BB4; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x80086C2C; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x80086CA4; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x80086D1C; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x80086D94; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80086E0C; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x80086E84; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80086EFC; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80086F48; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80086F94; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x800870F4; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x8008712C; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x8008729C; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x80087354; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x80087468; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x80087800; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x80087808; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x80087838; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x80087964; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x800879F0; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x800879F4; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x80087A1C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x80087A20; // type:function size:0x9C scope:local align:4 +__ct__7MemStatFv = .text:0x80087ABC; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x80087B3C; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x80087B64; // type:function size:0x130 scope:global align:4 +end__7MemStatFPc = .text:0x80087C94; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x80087D0C; // type:function size:0x34 scope:global align:4 +getInfo__7MemStatFPc = .text:0x80087D40; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x80087D64; // type:function size:0x238 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x80087F9C; // type:function size:0x174 scope:global align:4 +_Error__FPce = .text:0x80088110; // type:function size:0x9C scope:local align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x800881AC; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80088488; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x80088848; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x80088874; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x80088BB0; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x80088C94; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x80088D78; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x80088FB0; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x800890A8; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x800891CC; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x80089228; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80089278; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x800892AC; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x800892D4; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x80089330; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x8008936C; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x80089388; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x800893C4; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x80089400; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x80089564; // type:function size:0x4A4 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x80089A08; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x8008A074; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x8008A118; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x8008A1B8; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x8008A1EC; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x8008A220; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x8008A3E0; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x8008A3E8; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x8008A410; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x8008AA34; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x8008AA5C; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x8008AA90; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x8008ABF0; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x8008ABF8; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x8008AC58; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x8008ADD4; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x8008AF04; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x8008AFD4; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x8008B038; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x8008B04C; // type:function size:0xC0 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x8008B10C; // type:function size:0xD8 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x8008B1E4; // type:function size:0x8C scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x8008B270; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x8008B42C; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x8008B470; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x8008B568; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x8008B56C; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x8008B578; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x8008B57C; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8008B580; // type:function size:0x9C scope:local align:4 +finishFixPosition__8CreatureFv = .text:0x8008B61C; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x8008B62C; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x8008B674; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008B74C; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008B824; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008B840; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008B884; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008B8A8; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008B8F0; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008B938; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008B9A8; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008BA08; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008BAE0; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008BB90; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008BBC8; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008BC00; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008BCF4; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008BD68; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008BDD4; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008BE30; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008BE50; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008BE78; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008BFB0; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008C018; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008C060; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008C1E0; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008C244; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008C278; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008C2BC; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008C4B4; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008C774; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008C7E4; // type:function size:0x5A0 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008CD84; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008CF78; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008D02C; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008D11C; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008D238; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008D920; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008D9C0; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008D9C8; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008DA08; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008DCBC; // type:function size:0x7BC scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008E478; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008E50C; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008E5F8; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008EB38; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008EB40; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8008EE8C; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x8008EEE0; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x8008EF50; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8008F6B8; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x8008F6BC; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x8008F75C; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x8008F7C4; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x8008F8C0; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x8008F8C4; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x8008F8C8; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x8008FAC8; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x8008FBD8; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x80090938; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x80090A38; // type:function size:0x588 scope:global align:4 +_Error__FPce = .text:0x80090FC0; // type:function size:0x9C scope:local align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x8009105C; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x800911BC; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x80091330; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x80091454; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x80091570; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x800915D8; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x800915E8; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x80091630; // type:function size:0xB4 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x800916E4; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x80091724; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x80091A34; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x80091D80; // type:function size:0x1D4 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80091F54; // type:function size:0x8C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x80091FE0; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x800920D8; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x800921C4; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x800922E8; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80092380; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x800923D8; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80092408; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x800924D4; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x800924DC; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x800924E4; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80092500; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x80092754; // type:function size:0xE4 scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x80092838; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x80092A24; // type:function size:0x3A4 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x80092DC8; // type:function size:0x3E0 scope:global align:4 +updateStickRope__8CreatureFv = .text:0x800931A8; // type:function size:0x514 scope:global align:4 +__ct__12DualCreatureFv = .text:0x800936BC; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x80093750; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80093784; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x800937E4; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x80093834; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x80093888; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x800938D8; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x8009391C; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x800939E0; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x80093A14; // type:function size:0x21C scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x80093C30; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x80093C80; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x80093C88; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x80093C90; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x80093CF0; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x80093EB8; // type:function size:0x14C scope:global align:4 +__ct__11DynParticleFv = .text:0x80094004; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x800940DC; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x800940EC; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x800940F0; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x800940F4; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x800942E8; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x800943DC; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x800943F8; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x80094410; // type:function size:0x100 scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x80094510; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80094578; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80094704; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x80094740; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x800952A4; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80095454; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80095708; // type:function size:0x68 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80095770; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80095790; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x800957A4; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x80095834; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80095890; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x80095894; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x800958B8; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x80095930; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x8009595C; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x8009598C; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x80095B34; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x80095BEC; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x80095D1C; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x80095DB8; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x80095EA0; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x80095EF8; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x800960A0; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x80096174; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x80096228; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x8009622C; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x80096234; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x8009627C; // type:function size:0x94 scope:global align:4 +_Error__FPce = .text:0x80096310; // type:function size:0x9C scope:local align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x800963AC; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x800963F0; // type:function size:0x58 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80096448; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x800967D8; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x8009684C; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x80096A14; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x80096C84; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x80096CC0; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80096D50; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x80096D80; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x80096E10; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x80096E2C; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x80096E64; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x80096E6C; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x80096EB4; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x80096F04; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x80096F84; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x80097324; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x800973A4; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x8009745C; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x8009750C; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x80097510; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x80097514; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x80097680; // type:function size:0x144 scope:global align:4 +getCentre__6PelletFv = .text:0x800977C4; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x800977E0; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x80097828; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x800978A0; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x800978BC; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x800978C4; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x800979A8; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x80097A3C; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x80097BB0; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x80097C18; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80097C74; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x80097CE0; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x80097E40; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x80097F18; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x800980B8; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x80098130; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x80098164; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x80098198; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x800981DC; // type:function size:0xFC scope:global align:4 +startCarryMotion__6PelletFf = .text:0x800982D8; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x8009831C; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x80098320; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x80098324; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x80098388; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x8009838C; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x80098424; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x80098458; // type:function size:0x1FC scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x80098654; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x800986CC; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80098760; // type:function size:0x3CC scope:global align:4 +doAnimation__6PelletFv = .text:0x80098B2C; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x80098B8C; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x80098B90; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x80098C18; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x80098CA0; // type:function size:0x94C scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x800995EC; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x80099628; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x8009962C; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x8009967C; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x8009969C; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x80099710; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x80099A08; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x80099BC4; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x80099C28; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x80099D70; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x80099DC8; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x80099E30; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x80099EA8; // type:function size:0x164 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x8009A00C; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x8009A0A0; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x8009A0F4; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x8009A348; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x8009A3A0; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x8009A40C; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x8009A4FC; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x8009A550; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x8009A590; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x8009A62C; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x8009A664; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x8009A6A8; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x8009A764; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x8009A820; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x8009A8F4; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x8009A9D0; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x8009ABE0; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x8009ABE4; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x8009AC68; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x8009AC70; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x8009AC78; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x8009AC80; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x8009AC84; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x8009AC88; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009AC8C; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009AC94; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x8009AC9C; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x8009ACA0; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x8009ACDC; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x8009ADF4; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x8009ADF8; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x8009ADFC; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x8009AE00; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x8009AE04; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x8009AE08; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x8009AE0C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x8009AE10; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x8009AE14; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x8009AE18; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x8009AE1C; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x8009AE20; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009AE28; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x8009AE30; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x8009AE38; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x8009AE40; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x8009AE48; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x8009AE50; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x8009AFD0; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009B0A4; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x8009B134; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x8009B274; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8009B2AC; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x8009B318; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8009B370; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x8009B3C8; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x8009B3F0; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x8009B44C; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x8009B498; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x8009B5E0; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x8009B61C; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x8009B624; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x8009B6A4; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x8009B730; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x8009B784; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x8009B7F4; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x8009B834; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x8009B934; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009BD34; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009BD80; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009BD8C; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009BDFC; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009BE2C; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009BE48; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009BE94; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009BE98; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009BE9C; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009BEA0; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009BEE8; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009BEEC; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009BEF0; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009BEF4; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009BF44; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009BF48; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009BF84; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009BFA8; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009BFF4; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009C024; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009C054; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009C120; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009C124; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009C180; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009C6FC; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009C9D0; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009C9D4; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009CA04; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009CA08; // type:function size:0x4 scope:weak align:4 +_Error__FPce = .text:0x8009CA0C; // type:function size:0x9C scope:local align:4 +beginPush__10HinderRockFv = .text:0x8009CAA8; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009CAB8; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009CAD0; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009CBDC; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009CBE0; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009CC04; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009CD14; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009CD68; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009CDFC; // type:function size:0x154 scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009CF50; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009CFD8; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009CFE0; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009CFE8; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009D02C; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D050; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D0F0; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009D190; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009D2FC; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D388; // type:function size:0x244 scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009D5CC; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009D780; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009D7A0; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009D920; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009DA98; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009DB0C; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009DC70; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009DCB0; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009DCB8; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009DCCC; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009DD94; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009DE5C; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009DF54; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009E2FC; // type:function size:0xD0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009E3CC; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009E440; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009E458; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009E518; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009E634; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x8009EE64; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x8009EFFC; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x8009F150; // type:function size:0x2E0 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x8009F430; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x8009F4A4; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x8009F588; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x8009F668; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x8009F968; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x8009FAF4; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x8009FB74; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x8009FC24; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x8009FC8C; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x8009FCF4; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x8009FD5C; // type:function size:0x80 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x8009FDDC; // type:function size:0xDC scope:global align:4 +flatten__6BridgeFv = .text:0x8009FEB8; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x8009FF5C; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x800A0084; // type:function size:0x3A0 scope:global align:4 +getStagePos__6BridgeFi = .text:0x800A0424; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x800A04EC; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x800A0550; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x800A0638; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x800A0698; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x800A06F8; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x800A07F4; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x800A07FC; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x800A0804; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x800A0C28; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x800A0CC8; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x800A0FB0; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x800A0FDC; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x800A0FE4; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x800A0FF8; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x800A1004; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x800A100C; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x800A1014; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x800A101C; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x800A1024; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x800A102C; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x800A1030; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x800A1034; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x800A10A0; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x800A10A8; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x800A10B0; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x800A10B8; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800A10C0; // type:function size:0x9C scope:local align:4 +__ct__Q210PathFinder6BufferFv = .text:0x800A115C; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A1170; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x800A1224; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x800A12AC; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x800A1384; // type:function size:0x36C scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x800A16F0; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x800A1774; // type:function size:0x26C scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x800A19E0; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A19F4; // type:function size:0x24C scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x800A1C40; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x800A1C88; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x800A1D38; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A1D84; // type:function size:0x3DC scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A2160; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A25D4; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A2D3C; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A2EA8; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A3014; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A3190; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A32CC; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A3328; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A33C4; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A33D8; // type:function size:0x290 scope:global align:4 +__ct__8WayPointFv = .text:0x800A3668; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A367C; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A37B0; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A37F8; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A3824; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A38B4; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A3C70; // type:function size:0x5BC scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A422C; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A4490; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A49BC; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A4AF0; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A4D14; // type:function size:0x3C0 scope:global align:4 +_Error__FPce = .text:0x800A50D4; // type:function size:0x9C scope:local align:4 +__ct__5SeMgrFv = .text:0x800A5170; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A52F0; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A5318; // type:function size:0x90 scope:global align:4 +update__5SeMgrFv = .text:0x800A53A8; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A53AC; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A53BC; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A53E0; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A5418; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A54FC; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A57E0; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A585C; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A58A8; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A59DC; // type:function size:0x24 scope:weak align:4 +_Error__FPce = .text:0x800A5A00; // type:function size:0x9C scope:local align:4 +__ct__9SeContextFv = .text:0x800A5A9C; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A5B0C; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A5B74; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A5C10; // type:function size:0xD4 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A5CE4; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A5D2C; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A5DC0; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A5E18; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A5F38; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A5F4C; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A5FC4; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A603C; // type:function size:0x22C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A6268; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A6294; // type:function size:0x3B0 scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A6644; // type:function size:0x140 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A6784; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A67CC; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A6984; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A6C54; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A6D0C; // type:function size:0x368 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A7074; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A707C; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A7178; // type:function size:0x5C scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A71D4; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A726C; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A72A0; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A72D4; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A7308; // type:function size:0x34 scope:global align:4 +_Error__FPce = .text:0x800A733C; // type:function size:0x9C scope:local align:4 +__ct__13UpdateContextFv = .text:0x800A73D8; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A73EC; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A7438; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A7468; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A74B4; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A74D0; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A74F4; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A7524; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A75B8; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A7648; // type:function size:0xA4 scope:global align:4 +_Error__FPce = .text:0x800A76EC; // type:function size:0x9C scope:local align:4 +getCreature__6CPlateFi = .text:0x800A7788; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A779C; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A79C8; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A79F8; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A7A00; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A7A04; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A7BC4; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A7D80; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A7E30; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A7E80; // type:function size:0x15C scope:global align:4 +validSlot__6CPlateFi = .text:0x800A7FDC; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A8000; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A8424; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A8700; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A8888; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A8ABC; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A8AF4; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800A8DC0; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800A8DC8; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800A8DD0; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800A8DE8; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800A8E0C; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800A8E14; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800A8E1C; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800A8E24; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800A8E78; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800A8ED0; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800A8F44; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800A8F90; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800A9014; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800A91A4; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800A91B0; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800A9374; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800A9408; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A957C; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800A9888; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800A98F4; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800A98F8; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800A98FC; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800A9900; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800A9904; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800A9908; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800A9910; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800A993C; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800A9940; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800A9944; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800A9948; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800A994C; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800A9950; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800A9954; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800A9958; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800A995C; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800A9960; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800A9964; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800A9968; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A9A80; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800A9A88; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800A9B08; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A9B0C; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800A9BE0; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800A9C98; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800A9CD8; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800A9D8C; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800A9D90; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800A9D9C; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800A9DA0; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800A9E78; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800A9EE4; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800A9EF8; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800AA0F8; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800AA10C; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800AA228; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800AA28C; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800AA2A0; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800AA304; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800AA370; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800AA378; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800AA440; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800AA4A4; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AA5F4; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800AA6F0; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800AA6FC; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800AA750; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800AA758; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800AA760; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800AAA9C; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800AAB00; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800AAB60; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800AAD2C; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800AADC8; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800AADE4; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800AB04C; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800ABEB8; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800ABF04; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800ABF30; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800AC05C; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AC4B4; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AC520; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AC59C; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AC5A4; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800AC5AC; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800AC6B4; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800AC7A8; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800AC82C; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800AC934; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800AC938; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800AC9B0; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800ACC88; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800ACD8C; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800ACE80; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800ACE8C; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800AD010; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800AD014; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800AD08C; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800AD148; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AD420; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AD4A0; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AD588; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AD79C; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AD8C4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AD8C8; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AD8EC; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AD8F0; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AD8F8; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AD8FC; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AD900; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AD980; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AD9B8; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800ADA98; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800ADAB4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800ADAB8; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800ADAD0; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800ADB50; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800ADBDC; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800ADCC4; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800ADFAC; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800ADFB0; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800AE0B4; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800AE134; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800AE1B4; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800AE218; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AE298; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AE2FC; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AE360; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AE374; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AE388; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AE39C; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AE3F0; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AE430; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AE4D0; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AE534; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AE660; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AE714; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AE71C; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AE740; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AE7B8; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AE824; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800AE82C; // type:function size:0x9C scope:local align:4 +__ct__6ActBouFP4Piki = .text:0x800AE8C8; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AE934; // type:function size:0xBC scope:global align:4 +exec__6ActBouFv = .text:0x800AE9F0; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AEA3C; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800AEC4C; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800AEDCC; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800AEED4; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800AEF7C; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800AEFE0; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800AF08C; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800AF168; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800AF1D4; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800AF268; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AF290; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800AF340; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800AF364; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800AF6C4; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800AF7A4; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800AFAB0; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800AFB80; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800B01E8; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800B0268; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800B027C; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800B02EC; // type:function size:0x154 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800B0440; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B0504; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800B0694; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800B07DC; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800B07FC; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800B08C4; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800B0954; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800B0A48; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800B0D2C; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800B0D48; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800B0D4C; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800B0DB8; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800B0DC0; // type:function size:0x9C scope:local align:4 +turnOver__12ActTransportFv = .text:0x800B0E5C; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800B10EC; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800B123C; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800B13CC; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800B14C0; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800B1620; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800B1780; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B17CC; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800B1960; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800B1E50; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B2590; // type:function size:0x694 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B2C24; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B2D8C; // type:function size:0x8DC scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B3668; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B3F10; // type:function size:0x34C scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B425C; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B4414; // type:function size:0x1E8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B45FC; // type:function size:0xA0 scope:global align:4 +crInit__12ActTransportFv = .text:0x800B469C; // type:function size:0x524 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B4BC0; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B4C40; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B4F6C; // type:function size:0x96C scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B58D8; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B609C; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B6798; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B6818; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800B682C; // type:function size:0x9C scope:local align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B68C8; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B696C; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B69EC; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B6A58; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B6AD8; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B6C00; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B6C0C; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B6DCC; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B7054; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B78B0; // type:function size:0xBC scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B796C; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B7970; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B79F0; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B7A04; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B7A70; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B7A74; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B7B48; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B7B88; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B7DC4; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800B7E28; // type:function size:0x9C scope:local align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B7EC4; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B7FC0; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B7FC8; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B7FF4; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B8150; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B8234; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B8268; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B8384; // type:function size:0x110 scope:global align:4 +exec__8ActCrowdFv = .text:0x800B8494; // type:function size:0x1684 scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800B9B18; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800B9B70; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800B9B74; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800B9BF4; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800B9BFC; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800B9C10; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800B9C64; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800B9DDC; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800B9E38; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B9E3C; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800B9E40; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800BA354; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800BA3C0; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BA3C8; // type:function size:0x9C scope:local align:4 +__ct__8ActEnterFP4Piki = .text:0x800BA464; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800BA4C4; // type:function size:0x204 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800BA6C8; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800BA794; // type:function size:0x108 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800BA89C; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800BA8F4; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800BAAA0; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800BACD4; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800BACF8; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800BAD5C; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800BADD8; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800BADDC; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800BAED4; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800BAF14; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800BB1E0; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800BB238; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800BB29C; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800BB2FC; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800BB3BC; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800BB3E8; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800BB6D0; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800BB790; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x800BB7F4; // type:function size:0x9C scope:local align:4 +__ct__7ActMineFP4Piki = .text:0x800BB890; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800BB910; // type:function size:0x78 scope:global align:4 +initWatch__7ActMineFv = .text:0x800BB988; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800BBA18; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800BBB64; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800BBD64; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BBD68; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800BBE28; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800BBEA8; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800BBEBC; // type:function size:0x9C scope:local align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BBF58; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800BC284; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800BC2E0; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800BC428; // type:function size:0x10C scope:global align:4 +cleanup__12ActFormationFv = .text:0x800BC534; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800BC580; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BCC24; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BCC90; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800BCC98; // type:function size:0x9C scope:local align:4 +__ct__7ActFreeFP4Piki = .text:0x800BCD34; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BCE00; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BCED0; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BD094; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BD388; // type:function size:0xD4 scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BD45C; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BD460; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BD550; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BD628; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BD6A8; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BD6B0; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BD6C4; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BD710; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BD78C; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BD860; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BD8A0; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BDC18; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BDC7C; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BDC90; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BDD14; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BDDD8; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BDEF4; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BDF00; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BE61C; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BE810; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BE90C; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BEB64; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800BED5C; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800BEDE4; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800BEE6C; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800BF030; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800BF1F4; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800BF258; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800BF338; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800BF4B8; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800BF568; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800BF650; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800BF690; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BF7EC; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800BF90C; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800BF944; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800BF9B8; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800BFA38; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BFAAC; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x800BFAC0; // type:function size:0x9C scope:local align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800BFB5C; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800BFC28; // type:function size:0x54 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800BFC7C; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800BFCE0; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800BFD64; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800BFDD8; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800BFDE4; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800BFE24; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800BFE28; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800BFE9C; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800BFF9C; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800C01EC; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800C02C8; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800C0318; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C038C; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800C0404; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800C0460; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800C04F4; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800C0734; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800C07A0; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800C0814; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800C081C; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800C08BC; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800C0954; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800C0A20; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800C0B30; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800C0C6C; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C0E80; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800C1154; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800C118C; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800C120C; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800C1220; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800C12C0; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800C1348; // type:function size:0x48C scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800C17D4; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800C1994; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800C19A0; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800C1B78; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800C1CDC; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800C1E48; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800C2114; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800C2120; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800C21A4; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800C22F0; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800C252C; // type:function size:0x210 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C273C; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800C2774; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800C2778; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800C27D4; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C2BE0; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C2F20; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C2F8C; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C3104; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C3144; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C31A8; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C3228; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C323C; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C3534; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C35C0; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C35C4; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C36AC; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C36B0; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C3A6C; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C3AB0; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C3B14; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C3BAC; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C3BF0; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C3D3C; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C3DA8; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C3E0C; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C3EF0; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C3F7C; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C3FF4; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C4178; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C42E4; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C4304; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C45B8; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C45BC; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C463C; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C4650; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C46B0; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C4828; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C4898; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C4934; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C4998; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C4AB8; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C4B68; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C4CE0; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C4EAC; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C4EEC; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C4F2C; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C4FD8; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C5034; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C50BC; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C5398; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C5404; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C5478; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C5480; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C5484; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C5548; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C554C; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C5694; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C56DC; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C5714; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C5870; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C58D4; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C5928; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C5980; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C59E0; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C5A0C; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C5A7C; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C5C5C; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C5C68; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C5E7C; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C5F08; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C5FE8; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C629C; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C6308; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C6310; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C6550; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C65FC; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C6634; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C66AC; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C672C; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C6738; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C6740; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C6820; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C696C; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C6A4C; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C6B9C; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C6CC0; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C6CD0; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C6D40; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C6E1C; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C7468; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C74F0; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C75D8; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C7B70; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C7BF4; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C7C40; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C7C8C; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C7CD8; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C7D68; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C7DF4; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C7E30; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C7E78; // type:function size:0x88 scope:weak align:4 +_Error__FPce = .text:0x800C7F00; // type:function size:0x9C scope:local align:4 +initGame__10PikiInfMgrFv = .text:0x800C7F9C; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C7FC4; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C803C; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C80AC; // type:function size:0x94 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C8140; // type:function size:0x9C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C81DC; // type:function size:0x94 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C8270; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C829C; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C82F8; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C82FC; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C8358; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C835C; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C83FC; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C84F0; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C85B4; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C86CC; // type:function size:0x60 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C872C; // type:function size:0x60 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C878C; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C88FC; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C89CC; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C8A24; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C8A6C; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C8A90; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C8AB4; // type:function size:0xCC scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C8B80; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800C8C4C; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800C8C78; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800C8D4C; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800C8E2C; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800C8E8C; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800C8EBC; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800C8F20; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800C8FA8; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800C8FC8; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800C8FCC; // type:function size:0x34 scope:local align:4 +_Error__FPce = .text:0x800C9000; // type:function size:0x9C scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800C909C; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800C939C; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800C9448; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800C944C; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800C94EC; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800C94F0; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800C95C4; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800C95CC; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800C95FC; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800C9600; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800C9644; // type:function size:0x380 scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800C99C4; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800C9B90; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800CA050; // type:function size:0x71C scope:global align:4 +crGetPoint__4PikiFi = .text:0x800CA76C; // type:function size:0xD0 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800CA83C; // type:function size:0x80 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800CA8BC; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800CA91C; // type:function size:0x100 scope:global align:4 +hasBomb__4PikiFv = .text:0x800CAA1C; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800CAA38; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800CAAC8; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800CAB2C; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800CAC68; // type:function size:0x418 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800CB080; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800CB088; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800CB0D4; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800CB0F8; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800CB114; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800CB120; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800CB138; // type:function size:0x1324 scope:global align:4 +initColor__4PikiFi = .text:0x800CC45C; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800CC534; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800CC564; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800CC5B4; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800CC64C; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800CC6E8; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800CC780; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800CC928; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800CC9A0; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800CC9C8; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800CCA60; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800CCA9C; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800CCB10; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800CCB84; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800CCC10; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800CCC14; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800CCCF0; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CCCF4; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CCDD0; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CCE34; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CCEEC; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CCEF4; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CD004; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CD0C8; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CD10C; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CD164; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CD168; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CD1E8; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CD2C8; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CD300; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CD5BC; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CD7F0; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CD838; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CD9C8; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CE540; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CE548; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CE948; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CE9BC; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CEA80; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CEB5C; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CEB7C; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800CEBC0; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800CEC28; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800CEF14; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800CEF18; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800CEF50; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800CEF64; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800CF2B0; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800CF2B8; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800CF308; // type:function size:0x484 scope:global align:4 +realAI__4PikiFv = .text:0x800CF78C; // type:function size:0x560 scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800CFCEC; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800CFD28; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800CFD2C; // type:function size:0xF4 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800CFE20; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800D006C; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800D02BC; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800D02D8; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800D02DC; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800D02E0; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800D0390; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800D0394; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800D0398; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800D0450; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800D0458; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800D0468; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800D0480; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800D05A4; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800D0924; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800D09E0; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800D0C38; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800D19C8; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800D19E0; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800D1A5C; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800D1A7C; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800D1A9C; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800D1ACC; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800D1B10; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800D1CA8; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800D1D2C; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800D1D34; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800D1D3C; // type:function size:0x9C scope:local align:4 +init__16PikiStateMachineFP4Piki = .text:0x800D1DD8; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D3200; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D322C; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D3230; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D3310; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D3340; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D338C; // type:function size:0xB0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D343C; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D3648; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D364C; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D3700; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D3748; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D37D0; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D37FC; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D3868; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D386C; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D3870; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D3884; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D3978; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D39C4; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D3A68; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D3B50; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D3C60; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D3C64; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D3CC0; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D3EC8; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D42A4; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D42A8; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D4454; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D44B0; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D4554; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D47BC; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D4800; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D4804; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D4FBC; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D4FE0; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D502C; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D5158; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D52AC; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D532C; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D5378; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D545C; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D55B0; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D55B4; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D5604; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D5614; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D5718; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D5730; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D577C; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D57EC; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D5BDC; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D5C3C; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D5C40; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D5C8C; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D5DF4; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D5F94; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D6228; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D6320; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D636C; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D6490; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D6528; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D6698; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D68C8; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D6968; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D69B8; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D6A3C; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D6A40; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D6CC8; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D6CCC; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D6D18; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D6DA0; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D6DA4; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D6E20; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D6EF4; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D6EF8; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D6F54; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D708C; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D70C8; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D726C; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D7710; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D7714; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D7760; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D77BC; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D7930; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D7934; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D7980; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D79B8; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D7A6C; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D7AB0; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D7AD4; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D7B24; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D7B5C; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D7C10; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D7C54; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D7C78; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D7CC4; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D7D68; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D7DA8; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D7DB8; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D7E44; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D7EF8; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D7F84; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D7FA8; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D7FCC; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D807C; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D843C; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D8480; // type:function size:0x6EC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D8B6C; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D8B70; // type:function size:0xFC scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800D8C6C; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800D8CB8; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800D8D34; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800D8D38; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800D8D3C; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800D8D80; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800D8DD0; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800D8E7C; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800D8EA8; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800D8F20; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800D8F24; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800D8FB8; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800D9004; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800D90CC; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800D9164; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800D9168; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800D929C; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800D92E8; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800D92EC; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800D92F0; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800D92F4; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800D9324; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800D9328; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800D9370; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800D93BC; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800D9444; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800D9594; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800D95A0; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800D95D0; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800D95D4; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800D960C; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800D9684; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800D96D4; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800D9764; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800D9858; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800D9864; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800D9894; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800D9898; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800D993C; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800D9940; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800D99C0; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800D9A0C; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800D9A10; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800D9C10; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800D9C14; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800D9C64; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800D9DB0; // type:function size:0x88 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800D9E38; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800D9E3C; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800D9E88; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800D9F34; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800D9F38; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800DA19C; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800DA32C; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800DA37C; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800DA458; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800DA4D0; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800DA4D4; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800DA570; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800DA5BC; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800DA5E0; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800DA614; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800DA754; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800DA758; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800DA7A4; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800DA8C0; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800DA8F4; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800DA8F8; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800DA988; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800DA9D4; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800DAA08; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800DAAA4; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800DAAC0; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800DAB20; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800DB2A4; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800DB2A8; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800DB460; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800DB494; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800DB518; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800DB520; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800DB528; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800DB530; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800DB538; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800DB540; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800DB548; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800DB550; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800DB558; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800DB560; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800DB568; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800DB570; // type:function size:0x30 scope:weak align:4 +_Error__FPce = .text:0x800DB5A0; // type:function size:0x9C scope:local align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800DB63C; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800DB664; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800DB68C; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800DB6C8; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800DB87C; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800DB918; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800DB938; // type:function size:0x150 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800DBA88; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800DBAE8; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800DBB9C; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800DBE08; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800DBE6C; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800DBE70; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800DBFEC; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800DC3F4; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800DC494; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800DC4AC; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800DC4C0; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800DC838; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800DCEB0; // type:function size:0xB68 scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DDA18; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DDA48; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DDA78; // type:function size:0x2C scope:global align:4 +_Error__FPce = .text:0x800DDAA4; // type:function size:0x9C scope:local align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DDB40; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DDB70; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DDB7C; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DDB9C; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DDBBC; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DDBC0; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DDCBC; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DDD0C; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DDE88; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DDFB8; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DE114; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DE164; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DE1D0; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DE23C; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DE2FC; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DE3BC; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DE444; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DE4CC; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DE570; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DE614; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DE690; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DE70C; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DE7E4; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DE87C; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DE8CC; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DE90C; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DE96C; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DEADC; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800DEC30; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800DEC68; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800DED6C; // type:function size:0x8C scope:global align:4 +init__9GeneratorFv = .text:0x800DEDF8; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800DF034; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800DF038; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800DF03C; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800DF0C4; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800DF0C8; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800DF274; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800DF278; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800DF27C; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800DF9B0; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800DFA1C; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800DFA88; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800DFAF4; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800E0254; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800E0768; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800E07A8; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800E07C4; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800E0864; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800E08B0; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800E090C; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E0B80; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800E0BEC; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800E0C58; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800E0E6C; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800E0F10; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800E10C8; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800E1230; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800E1238; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800E131C; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800E1454; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800E145C; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800E15A0; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800E16D8; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800E1760; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800E1764; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800E1908; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800E1A38; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800E1A90; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800E1AC8; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800E1B38; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800E1BE8; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800E1BF0; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800E1BF4; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800E1BFC; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800E1C00; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800E1C08; // type:function size:0x9C scope:local align:4 +__ct__14GeneratorCacheFv = .text:0x800E1CA4; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800E1DD4; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800E1DEC; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800E1EA4; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E1F98; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800E20CC; // type:function size:0x254 scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E2320; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800E242C; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800E2538; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800E2560; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800E26C0; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800E27E8; // type:function size:0x1BC scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800E29A4; // type:function size:0xFC scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800E2AA0; // type:function size:0x94 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800E2B34; // type:function size:0x190 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E2CC4; // type:function size:0x134 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800E2DF8; // type:function size:0x140 scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800E2F38; // type:function size:0x150 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800E3088; // type:function size:0x190 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E3218; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E3274; // type:function size:0x88 scope:global align:4 +_Error__FPce = .text:0x800E32FC; // type:function size:0x9C scope:local align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E3398; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E34A4; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E35C8; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E36D4; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E36D8; // type:function size:0x280 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E3958; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E3AC4; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E3BE0; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E3E3C; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E40B0; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E41D8; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E427C; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E4330; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E43E8; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E4484; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E4514; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E4600; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E46AC; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E4730; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E476C; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E47C4; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E4820; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E483C; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E4BC4; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E4ED0; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E5130; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E51AC; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E52B4; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E5360; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E53FC; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E54A4; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E54A8; // type:function size:0xB4 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E555C; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E55C4; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E55D8; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E56F4; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E5774; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E57B8; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E5810; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E586C; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E5888; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E58B0; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E5B70; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E5F74; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E5FFC; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E6004; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E600C; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E6050; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E6074; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E60E0; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E60E8; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E6154; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E615C; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E6164; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E616C; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E6170; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E65DC; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E6DC8; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E6E38; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E7010; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E704C; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E70AC; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E7294; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E7498; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E74C4; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E74CC; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E74D4; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E74F0; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E7508; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E7514; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E7524; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E7548; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E762C; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E7828; // type:function size:0xC scope:weak align:4 +_Error__FPce = .text:0x800E7834; // type:function size:0x9C scope:local align:4 +workable__7RockGenFv = .text:0x800E78D0; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E78F0; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E7908; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E7920; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E7940; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E7958; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E7970; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E7BCC; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E7E28; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E7EC8; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E814C; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E8160; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E8170; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E81CC; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E81DC; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E8218; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E8298; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E82C4; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E8454; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E845C; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E853C; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E85DC; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E8820; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E8834; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E8844; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E88A0; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E88CC; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E8A5C; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E8A64; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E8B44; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E8B48; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E8B4C; // type:function size:0x1E4 scope:global align:4 +startAI__4WeedFi = .text:0x800E8D30; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800E8D54; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800E8E20; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800E8EBC; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800E8FC4; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800E8FD8; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800E8FE0; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800E8FF4; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800E8FFC; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800E9010; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800E9018; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800E9020; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800E9034; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800E903C; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800E9044; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800E90E8; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800E9200; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800E9260; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800E9298; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800E92B4; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800E92BC; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800E92C4; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800E92FC; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800E9440; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800E9518; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800E95C4; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800E95F4; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800E95FC; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800E9604; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800E96B8; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800E97A4; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800E98B4; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800E98BC; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800E98C4; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800E98CC; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800E98D4; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800E9984; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800E99A4; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800E9B58; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800E9C98; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800EA1EC; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800EA284; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800EA338; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800EA45C; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800EA5A8; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800EA660; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800EA734; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800EA980; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800EAAAC; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800EAAD0; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800EAC28; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800EACA0; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800EB030; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800EB04C; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800EB0A4; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800EB108; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800EB14C; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800EB1D0; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800EB28C; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800EB338; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800EB3E4; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800EB514; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800EB968; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800EB970; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800EBB64; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800EBB78; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800EBB80; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800EBC40; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800EBEFC; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800EBF04; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800EBF0C; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800EBFBC; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800EC12C; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800EC174; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800EC1E0; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800EC2F8; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800EC410; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800EC4F4; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800EC9F8; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800ECA00; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800ECA08; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800ECA10; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800ECA18; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800ECB70; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800ECB98; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800ECE48; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800ECE84; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800ECEE0; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800ECF84; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800ECFBC; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800ECFCC; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800ECFE0; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800ED028; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800ED148; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800ED28C; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800ED314; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800ED394; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800ED3FC; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800ED4A4; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800ED4FC; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800ED504; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800ED55C; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800ED608; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800ED6F0; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800ED6F8; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800ED700; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800ED7D8; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800ED7DC; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800ED874; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800ED91C; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800ED920; // type:function size:0x60 scope:global align:4 +_Error__FPce = .text:0x800ED980; // type:function size:0x9C scope:local align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800EDA1C; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800EDA5C; // type:function size:0x778 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EE1D4; // type:function size:0xC8 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EE29C; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EE414; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EE46C; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EE474; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EE498; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EE58C; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EE650; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EE670; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EE8EC; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EE8F4; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EEA04; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EEA20; // type:function size:0x78 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EEA98; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EEB14; // type:function size:0x118 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800EEC2C; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800EEC5C; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800EEC70; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800EF104; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800EF178; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800EF1A4; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800EF1AC; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800EF1B4; // type:function size:0x324 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800EF4D8; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800EF850; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800EF86C; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800EF874; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800EF87C; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800EF884; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EF88C; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x800EF894; // type:function size:0x9C scope:local align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800EF930; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800EF990; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800EF9C0; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800EFA34; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800EFA8C; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800EFA94; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800EFAFC; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EFB04; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800EFC90; // type:function size:0x174 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800EFE04; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800EFE90; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800EFF1C; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800EFF24; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800EFF2C; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800EFF34; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800F0480; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800F0588; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800F0688; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800F0690; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800F0738; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800F0740; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800F0794; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800F07A0; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800F07C0; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800F07FC; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800F0908; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800F090C; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800F0914; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800F0A60; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800F0AC0; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800F0AE0; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800F0AFC; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800F0B50; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800F0B5C; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800F0C04; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800F0C24; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800F0C2C; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800F0C4C; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800F0E50; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800F0E58; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800F0E60; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800F0E68; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800F0F18; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800F0F20; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800F0F28; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800F0F74; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800F1204; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800F1208; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800F123C; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800F1244; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800F124C; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800F1254; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800F125C; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800F1338; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800F1340; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800F1384; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800F1398; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800F13A0; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800F13DC; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800F1618; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800F1628; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800F1760; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800F179C; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800F17A4; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F17AC; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800F1854; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800F18FC; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800F1A54; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800F1AE0; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800F1BFC; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800F1CFC; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800F1D2C; // type:function size:0x448 scope:global align:4 +_Error__FPce = .text:0x800F2174; // type:function size:0x9C scope:local align:4 +__ct__8SluiceAIFv = .text:0x800F2210; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800F254C; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800F2588; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800F25F4; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800F2604; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800F2690; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800F271C; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800F2788; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800F2C94; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800F2DA8; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800F2DEC; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800F2E14; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800F2E38; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800F2E44; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800F2E78; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800F2F00; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800F2F80; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800F2FF4; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800F304C; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800F3124; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800F3254; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800F339C; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800F33D0; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800F344C; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800F34A4; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800F34CC; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F385C; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F38FC; // type:function size:0xA0 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F399C; // type:function size:0xE60 scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F47FC; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F4830; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F483C; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F48BC; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F48E0; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F495C; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F4D3C; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F4D64; // type:function size:0xCC scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F4E30; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F4E68; // type:function size:0x474 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F52DC; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F52E0; // type:function size:0x338 scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F5618; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F561C; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F5694; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F5754; // type:function size:0x198 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F58EC; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F5984; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F5BD8; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F5C18; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F5C40; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F5E18; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F5E6C; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F5EEC; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F5F14; // type:function size:0x54 scope:weak align:4 +_Error__FPce = .text:0x800F5F68; // type:function size:0x9C scope:local align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F6004; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F6044; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F6180; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F62C4; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F63D8; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F6798; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F68F8; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F6C6C; // type:function size:0x2D4 scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F6F40; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F7034; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F7A0C; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F7A14; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800F8F50; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800F9018; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800F9088; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800F9090; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800F9098; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800F90A4; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800F90AC; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800F90D8; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800F9120; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800F916C; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800F91C4; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800F9220; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800F9254; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800F9298; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800F92D4; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800F931C; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800F953C; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800F95B0; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800F95F0; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800F9630; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800F9664; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800F96A4; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800F96E4; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800F99B8; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800F9A18; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F9C88; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800F9DCC; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800F9E30; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800F9FF8; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800FA088; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800FA0E8; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800FA13C; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800FA2E0; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800FA2E4; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800FA32C; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800FA3D8; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800FA554; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800FA578; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800FA698; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800FA700; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800FA768; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800FA96C; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800FA9D0; // type:function size:0x74 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800FAA44; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800FAC1C; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800FACBC; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800FAD1C; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800FAE68; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800FAEEC; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800FAF70; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800FAFF4; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800FAFFC; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800FB004; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800FB00C; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800FB048; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800FB050; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800FB058; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800FB05C; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800FB0D8; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800FB108; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800FB174; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800FB1E0; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800FB24C; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800FB2B8; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800FB2C0; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800FB2C4; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800FB2CC; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800FB2FC; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800FB304; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800FB334; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800FB364; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800FB3CC; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800FB43C; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800FB444; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800FB4D4; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800FB540; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800FB7A8; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800FB7E4; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800FB854; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800FB8E0; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800FB8E4; // type:function size:0xB8 scope:global align:4 +_Error__FPce = .text:0x800FB99C; // type:function size:0x9C scope:local align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800FBA38; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800FBAD4; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800FBB30; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800FBB58; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800FBB60; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800FBB68; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800FBB90; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800FBC40; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800FBC44; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800FBC48; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800FBC80; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800FBC94; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800FBCA8; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800FBCB4; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800FBCC0; // type:function size:0x44C scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800FC10C; // type:function size:0x234 scope:global align:4 +__ct__8NaviPropFv = .text:0x800FC340; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800FCF60; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800FCF80; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800FCFA0; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800FCFC0; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800FCFC4; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800FCFCC; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800FD200; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800FD320; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800FD324; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FD98C; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FD9E0; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FDA20; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FDE28; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FDE34; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FDE7C; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FE008; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FE040; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FE090; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FE44C; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FE480; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FE980; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FEB74; // type:function size:0x7EC scope:global align:4 +callDebugs__4NaviFf = .text:0x800FF360; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x800FF6DC; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x800FFEB8; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x800FFF7C; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x800FFFB8; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x800FFFBC; // type:function size:0xA58 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x80100A14; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x80100A50; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x80100AA8; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x80100AAC; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x80100AF8; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x80100B44; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x80100B94; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x80100D6C; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x801010DC; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x801010E0; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x801012C8; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x80101BC4; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x8010241C; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x801029C4; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x80102AAC; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x80102D84; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x80102F80; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x80102F84; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x80102FC0; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x80102FFC; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x80103114; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x80103118; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x8010311C; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x80103120; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x80103124; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x80103128; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x8010312C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x80103130; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x80103134; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x80103138; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x8010313C; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x80103140; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x801031B4; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x80103278; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x80103374; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x80103408; // type:function size:0x148 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x80103550; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x801036F4; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x80103804; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x801039BC; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x80103AD4; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x80103B54; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x80103C98; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x80103D88; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x80103E78; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x80103F38; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8010416C; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x801041C8; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x801041DC; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x8010451C; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x80104898; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x801048BC; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x801048C0; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x801048C4; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x80104908; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x80104910; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x80104918; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x8010491C; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x80104924; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x8010492C; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x80104934; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x8010493C; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x80104944; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x8010494C; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x80104954; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x80105F28; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x80105F6C; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x80105FD8; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x801061D8; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x80106228; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x80106258; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x8010629C; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x801062F0; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x801063B8; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x801064A4; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x80106528; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x8010656C; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x80106570; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x8010658C; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x80106590; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x801065E4; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80106674; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x801069B4; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x801069B8; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x80106A0C; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x80106B18; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x80106E28; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x801071FC; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x80107200; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x80107240; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x801072C4; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x801072F0; // type:function size:0xDE8 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x801080D8; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x801080FC; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x8010815C; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x80108170; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x8010817C; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x801081D0; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80108258; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x80108310; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80108778; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x801087C0; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x801087F0; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x8010889C; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x80108AA0; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x80108AD0; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x80108AE8; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x80108BD0; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x80108DB8; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x80108DE0; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x80108E18; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x80108E5C; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x80108E60; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x80108ED0; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x80108F1C; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x80108F40; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x80108F84; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x80108FF8; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x80109254; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x80109258; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x8010929C; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x80109378; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x8010937C; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x80109380; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x801093B0; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x801093F4; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x80109488; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x801094A4; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x801094E8; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x801094EC; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x80109530; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x801095FC; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x80109738; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x8010979C; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x801097A8; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x801097EC; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x80109910; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x80109A88; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x80109BD8; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x80109C0C; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x80109C60; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x80109DA0; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x80109FB4; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x8010A0D4; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x8010A168; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x8010A19C; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x8010A1E0; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x8010A20C; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x8010A23C; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x8010A374; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x8010A960; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x8010A9C8; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x8010AA34; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x8010AA78; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x8010AB18; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x8010ABA8; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x8010ABAC; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x8010AC3C; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x8010AC80; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x8010ACAC; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x8010ACDC; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x8010B0A8; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x8010B134; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x8010B6D0; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x8010B83C; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x8010B840; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x8010B884; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x8010B928; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x8010B934; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x8010BA7C; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x8010BB74; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x8010BB78; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x8010BBBC; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x8010BC4C; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x8010BE94; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x8010BEA8; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x8010BF9C; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x8010BFA0; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x8010BFE4; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x8010C074; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x8010C21C; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x8010C220; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x8010C304; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x8010C310; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x8010C354; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x8010C4D8; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x8010C5E8; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x8010C620; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x8010C74C; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x8010C7AC; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x8010C7D8; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x8010C808; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x8010C9EC; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x8010CE48; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x8010CE58; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x8010CE9C; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x8010CEAC; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x8010CFA0; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x8010CFA4; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x8010CFE8; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x8010D05C; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x8010D060; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x8010D064; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x8010D0A8; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x8010D14C; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x8010D150; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x8010D154; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x8010D198; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x8010D1C4; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x8010D1F4; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x8010D2C0; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x8010D6E4; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x8010D6E8; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x8010D768; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x8010D7AC; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x8010D7B0; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x8010D7B4; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x8010D7B8; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x8010D7FC; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x8010D8A0; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x8010D8A4; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x8010D8F4; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x8010D8F8; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x8010D93C; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x8010D940; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010D95C; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010D960; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010D9A4; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010D9A8; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010DAFC; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010DB18; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010DB1C; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010DB70; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010DBB4; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010DC4C; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010DCA0; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010DCA4; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010DCA8; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010DD14; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010DF88; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010E064; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010E308; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010E33C; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010E3C0; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010E404; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010E508; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010E558; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010E5A4; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010E64C; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010E690; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010E760; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010E7B0; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010E7D8; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010E850; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010E858; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010E860; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010E868; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010E870; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010E878; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010E880; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010E888; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010E890; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010E898; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010E89C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010E8A4; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010E8AC; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010E8B4; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010E8BC; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010E8C4; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010E8D8; // type:function size:0x14 scope:weak align:4 +_Error__FPce = .text:0x8010E8EC; // type:function size:0x9C scope:local align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010E988; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010EE00; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010EE90; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010F1DC; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010F20C; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010F2BC; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010F2C0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F2C4; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010F3F0; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F3F4; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F478; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010F47C; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F480; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F4FC; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F598; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010F59C; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F65C; // type:function size:0x2E4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010F940; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F944; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F9BC; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010F9C0; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010F9C4; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010FA3C; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010FA40; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x8010FA44; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x8010FB18; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x8010FD18; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x801101B8; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80110318; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80110354; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x80110358; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x80110570; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x801105A4; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x801105E0; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x801106F8; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x801106FC; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x80110700; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x80110704; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x80110708; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x8011070C; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x80110710; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x80110714; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x80110718; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x8011071C; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x80110720; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80110724; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x80110728; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8011072C; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x80110730; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x80110770; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x8011085C; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFi = .text:0x80110CC0; // type:function size:0x254 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x80110F14; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x80111064; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x801111EC; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x80111368; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x80111688; // type:function size:0xD94 scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x8011241C; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x8011254C; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x801125DC; // type:function size:0xCD4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x801132B0; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x80113710; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x801140B4; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x80114364; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x80114370; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x801143A8; // type:function size:0x568 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x80114910; // type:function size:0x5A4 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x80114EB4; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x80115114; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x801156D8; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x801156E4; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80115730; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x801158CC; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x801158F0; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x80115940; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x801159C0; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x80115A40; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x80115A98; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x80115B00; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80115B98; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80115C40; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80115CD8; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x80115D7C; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x80115E24; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x80115EE8; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x80115EEC; // type:function size:0x9C scope:local align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x80115F88; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x80116024; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x801161D4; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x80116394; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x8011654C; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x80116778; // type:function size:0x254 scope:global align:4 +_Error__FPce = .text:0x801169CC; // type:function size:0x9C scope:local align:4 +__ct__11SlimeEffectFv = .text:0x80116A68; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x80116AD0; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x80116AEC; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x80116B08; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80116B98; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x80116C34; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x80116C80; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x80117BD4; // type:function size:0x60 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x80117C34; // type:function size:0x80 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x80117CB4; // type:function size:0x70 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x80117D24; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x80117D58; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x80117DE4; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x80117E18; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x80117E98; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x80117EB4; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x80117ED0; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x80117F1C; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x80117F9C; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x80117FB8; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x80117FD4; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x80117FF0; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x8011803C; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x80118170; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x80118204; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x80118238; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x8011826C; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x80118288; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x801182A4; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x801183F0; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x80118460; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x80118468; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x8011862C; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x80118648; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x80118694; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x80118774; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x801187E4; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x80118B30; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x80118C08; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x80118C0C; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x80118CFC; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x80118D00; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x80118D44; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x80118D7C; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x80118D84; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x80118E44; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x80118EF8; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x80118F2C; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x80118F60; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x80118F94; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x80118FC8; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x801190C4; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119158; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x801194BC; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x801194F4; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119530; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119538; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80119540; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x80119548; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x80119614; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x80119664; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x801196B4; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x8011981C; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x80119824; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x80119930; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x80119A3C; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x80119A48; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x80119A64; // type:function size:0x68 scope:global align:4 +_Error__FPce = .text:0x80119ACC; // type:function size:0x9C scope:local align:4 +selectRandomly__FP6Choicei = .text:0x80119B68; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x80119C18; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x80119C28; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x80119C80; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x80119CF0; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x80119D60; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x80119DB4; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x80119DDC; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x80119E0C; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x80119E44; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x80119E50; // type:function size:0x54 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x80119EA4; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x8011A010; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x8011A434; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x8011A6A0; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x8011A888; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x8011AC48; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x8011ADC8; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x8011AE28; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x8011AE48; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x8011AEBC; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x8011AED4; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x8011AFF0; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x8011B100; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x8011B21C; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x8011B24C; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x8011B2D0; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x8011B2D8; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x8011B2E0; // type:function size:0x9C scope:local align:4 +makeObjectMapParts__Fv = .text:0x8011B37C; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x8011B53C; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x8011B5CC; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x8011B6E4; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x8011BD48; // type:function size:0x288 scope:global align:4 +init__8MapPartsFv = .text:0x8011BFD0; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x8011BFD4; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x8011BFEC; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x8011C048; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x8011C0C0; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x8011C1C0; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x8011C290; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x8011C2D0; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x8011C63C; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x8011C828; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x8011C82C; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x8011C830; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x8011D500; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x8011D53C; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x8011D5E0; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x8011D65C; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x8011D6D4; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x8011D760; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x8011D7A0; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x8011D810; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x8011D834; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x8011D858; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x8011D868; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x8011D930; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x8011D978; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x8011DA30; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x8011DA68; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x8011DB0C; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011DECC; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011DED0; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011DF7C; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011E010; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011E074; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011E4EC; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011E5D8; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011E6B0; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011E6E0; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011E7F8; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011E870; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011E8FC; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011E93C; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011EA08; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x8011EB98; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x8011EBC4; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x8011EC48; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8011EC50; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8011EC60; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x8011EC68; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x8011EC74; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x8011EDBC; // type:function size:0x3C scope:global align:4 +_Error__FPce = .text:0x8011EDF8; // type:function size:0x9C scope:local align:4 +makeObjectTeki__Fv = .text:0x8011EE94; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x8011EED4; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x8011EF5C; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x8011EFE8; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x8011F07C; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x8011F0E4; // type:function size:0xAC scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8011F190; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8011F2B0; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x8011F2E8; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x8011F310; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x8011F424; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x8011F47C; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x8011F4F8; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x8011F520; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x8011F5B0; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x8011F6E4; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x8011F73C; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x8011F778; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x8011F798; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x8011F7DC; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x8011F884; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x8011F8DC; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x8011F8FC; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x8011F97C; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x8011F99C; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x8011FA0C; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x8011FA9C; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x8011FB08; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x8011FB2C; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8011FB50; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8011FBA0; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x8011FC18; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x8011FCEC; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x8011FD38; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x8011FF8C; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x8011FFA8; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x8011FFE4; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x80120014; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x80120034; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x80120044; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x801200EC; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x80120190; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x80120224; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x801202C4; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x80120334; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x80120368; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x8012043C; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x80120470; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x801204D4; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x80120598; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x801205FC; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x80120604; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x80120684; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x8012070C; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x801208A8; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x801208D4; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x801208F8; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x801209C4; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x801209D4; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x801209FC; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x80120A2C; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x80120A58; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x80120A84; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x80120AC4; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x80120AE0; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x80120B20; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x80120B30; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x80120B70; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x80120BA4; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x80120C18; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x80120C1C; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x80120D04; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x80120DE0; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x80120DEC; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x80120F84; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x80121000; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x80121070; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x801210A4; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x80121164; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x801211C8; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x80121264; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x801212B0; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x801212E8; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x80121350; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x801213A0; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x8012147C; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x8012153C; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x80121560; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x801215E4; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x801216B4; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x8012174C; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x80121A0C; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x80121A64; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x80121A70; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x80121B50; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x80121C40; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x80121CFC; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x80121DC8; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x80121E00; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x80121E3C; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x80121E74; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x80121EAC; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x80121EE4; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x80121F34; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x80122048; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x80122088; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x801220B8; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x801220F0; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x80122140; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x80122190; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x801221C0; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x80122214; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x8012224C; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x80122284; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x801222B8; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x801223F4; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x80122470; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x801224A0; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x801224A8; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x8012253C; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x80122570; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x801225A0; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x801225D8; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x8012261C; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x80122670; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x801226AC; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x801227E8; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x80122838; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x8012294C; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x8012297C; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x801229B0; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x801229E0; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x80122A14; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x80122A64; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x80122A98; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x80122AE8; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x80122B18; // type:function size:0x44 scope:weak align:4 +_Error__FPce = .text:0x80122B5C; // type:function size:0x9C scope:local align:4 +__ct__14PaniMotionInfoFi = .text:0x80122BF8; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x80122C2C; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x80122C5C; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x80122C68; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x80122C9C; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x80122CA8; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x80122D14; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x80122D80; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x80122DC4; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x80122E30; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x80122E38; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x80122E60; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x80122ED0; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x80122F80; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x8012308C; // type:function size:0x100 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x8012318C; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x8012334C; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x80123470; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x801234C4; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x80123570; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x801235AC; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x80123628; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x80123688; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP14PaniMotionInfoP14PaniMotionInfo = .text:0x801236E0; // type:function size:0x58 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80123738; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x80123790; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x80123814; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x801238D4; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x80123924; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x80123B8C; // type:function size:0x3C scope:global align:4 +__ct__12PaniTestNodeFv = .text:0x80123BC8; // type:function size:0x554 scope:global align:4 +setTestMode__12PaniTestNodeFi = .text:0x8012411C; // type:function size:0x84 scope:global align:4 +update__12PaniTestNodeFv = .text:0x801241A0; // type:function size:0x48C scope:global align:4 +updatePikis__12PaniTestNodeFv = .text:0x8012462C; // type:function size:0x2B4 scope:global align:4 +updateTekis__12PaniTestNodeFv = .text:0x801248E0; // type:function size:0x1BC scope:global align:4 +animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x80124A9C; // type:function size:0x6C scope:global align:4 +draw__12PaniTestNodeFR8Graphics = .text:0x80124B08; // type:function size:0x684 scope:global align:4 +drawPiki__12PaniTestNodeFP8ViewPikiR8Graphics = .text:0x8012518C; // type:function size:0x34 scope:global align:4 +drawTeki__12PaniTestNodeFP4TekiR8Graphics = .text:0x801251C0; // type:function size:0x34 scope:global align:4 +init__15PaniTestSectionFv = .text:0x801251F4; // type:function size:0x78 scope:global align:4 +@32@animationKeyUpdated__12PaniTestNodeFR16PaniAnimKeyEvent = .text:0x8012526C; // type:function size:0x8 scope:weak align:4 +read__15ParaParametersIFR6Stream = .text:0x80125274; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x801252F4; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x80125374; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x801253CC; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x8012544C; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x801254CC; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x80125524; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x801255CC; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x8012565C; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x801256EC; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x80125760; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x801257C0; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x80125820; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x80125870; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80125874; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80125878; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x8012587C; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80125880; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80125884; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x80125888; // type:function size:0x4 scope:global align:4 +__ct__15PcamControlInfoFv = .text:0x8012588C; // type:function size:0x24 scope:global align:4 +init__15PcamControlInfoFbbbbbbbfff = .text:0x801258B0; // type:function size:0x2C scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x801258DC; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x80125A10; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x80125A38; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x80125BC4; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x80125BFC; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x80125CD8; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x801261A4; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x801261B4; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x80126308; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x80126484; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x801264B0; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x801265C0; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x80126960; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x801269A8; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x80126BD0; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x80126C00; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFii = .text:0x80126C84; // type:function size:0x44 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80126CC8; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x80126D44; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x80126E14; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x80126E80; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x80126EE0; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x80126EF4; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x80126F58; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x80126F70; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80126FD0; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x8012702C; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x801270C0; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x801270E0; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x80127128; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x80127394; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x80127448; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x8012749C; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x801274D8; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x80127614; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x80127664; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x80127778; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x801277A8; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x801277DC; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x8012782C; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x80127860; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x801278B0; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x801278E0; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x80127924; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x80127B1C; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x80127B40; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x80127B90; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x80127C28; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x80127C60; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x80127C64; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x80127C68; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x80127CA8; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x80127DF0; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x80127E28; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x80127E2C; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x80127E78; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x80127F44; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x8012801C; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x80128094; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x80128118; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x80128190; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x80128200; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x80128490; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x80128554; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x801285C4; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x8012865C; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x8012866C; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x8012867C; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x8012868C; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x80128694; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x8012910C; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x80129124; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x80129138; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x80129210; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x80129220; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x80129268; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x801292EC; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x80129370; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x801293EC; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x80129440; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x801294A8; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x80129574; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x801295E8; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x80129638; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x80129640; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x801296A0; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x801296AC; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x80129788; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x801297A4; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x801297C0; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x801297E0; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x80129800; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x8012985C; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x801298B8; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x801298D8; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x801298F8; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x80129918; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x80129938; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x80129980; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x80129990; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x80129A9C; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x80129B3C; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x80129B48; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x80129B50; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x80129B5C; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x80129B78; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x80129B84; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x80129B9C; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x80129BCC; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x80129BD0; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x80129BD4; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x80129C14; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x80129C28; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x80129DA4; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x80129E18; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x80129EC8; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x80129EFC; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x80129F48; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x8012A060; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x8012A0BC; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x8012A0E4; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x8012A134; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x8012A268; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x8012A314; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x8012A398; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x8012A3A4; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x8012A464; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x8012A588; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x8012A674; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x8012A7F0; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x8012A84C; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x8012A8E8; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x8012A970; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x8012AA70; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x8012AA94; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x8012AA9C; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x8012AAA4; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x8012AAAC; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x8012AAB4; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x8012AABC; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x8012AAC4; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x8012AAD4; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x8012AB30; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x8012AB74; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x8012AB78; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x8012ABF8; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x8012ABFC; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x8012ACA4; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x8012ACAC; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x8012AD60; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x8012AD68; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x8012ADB4; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x8012AE34; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x8012AEB4; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x8012AFA0; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x8012AFC0; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x8012B0B4; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x8012B118; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x8012B164; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x8012B178; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x8012B244; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x8012B2D4; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x8012B380; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x8012B40C; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012B4C4; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x8012B504; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012B514; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x8012BB74; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x8012BB84; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x8012BB9C; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x8012BBB4; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x8012BCE0; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x8012BD68; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x8012BE3C; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x8012BE64; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x8012BEA8; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x8012BEDC; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x8012BF58; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x8012BFB0; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x8012C034; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x8012C070; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x8012C078; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x8012C084; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x8012C0A4; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x8012C104; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x8012C13C; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x8012C174; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x8012C1B8; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x8012C1F0; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x8012C274; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x8012C618; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x8012C9B8; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x8012CA3C; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x8012CDD8; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x8012E344; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x8012E48C; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x8012E4D4; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x8012E52C; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x8012E5BC; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012E640; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x8012E648; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x8012E6A8; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x8012E708; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x8012E790; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x8012E814; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x8012EC98; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x80130434; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x8013059C; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x801306AC; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x8013089C; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x801308DC; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x80130988; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x801309B8; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x80130A28; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x80130A9C; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x80130BF4; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x80130CD4; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x80130D38; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x80130E34; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x80130EF0; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x80131000; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x80131050; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x80131084; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x801310B8; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x801310EC; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x801311A4; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x801311CC; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x801311F4; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x80131294; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x80131334; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80131490; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x80131570; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x801315B0; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8013166C; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x801316B0; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x801318C4; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x80131918; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x801319B8; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x801319CC; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x80131AB4; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x80131B18; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x80131B70; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x80131BE8; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x80131C38; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x80131CA4; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x80131CFC; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x80131D8C; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x80131E14; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x80131ED8; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x80131F30; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x80131FBC; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x8013201C; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x8013207C; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x801320EC; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x8013215C; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x80132170; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x80132184; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x80132198; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x801321AC; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x801321E8; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x80132224; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x80132278; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x801322B0; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x801322DC; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x80132308; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x80132394; // type:function size:0x4 scope:global align:4 +_Error__FPce = .text:0x80132398; // type:function size:0x9C scope:local align:4 +__ct__19TaiIwagonParametersFv = .text:0x80132434; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x8013253C; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x801325C0; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x80132A80; // type:function size:0x128 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x80132BA8; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x80132C18; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x80132C34; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x80132C54; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x80132D6C; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x80132F7C; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x80132FF8; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x8013303C; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x801330B4; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x8013324C; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x8013329C; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x801332EC; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x8013333C; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x801333B0; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x8013346C; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x8013352C; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x801335D8; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x801336C8; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x801337F0; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x80133918; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x8013399C; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x80133EB4; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x8013514C; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x801351FC; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x801353B0; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x801354D4; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x8013554C; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x801355A0; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x801355A4; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x80135704; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x80135AD4; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x80135B2C; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80135BDC; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x80135C0C; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x80135C3C; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x80135C78; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x80135CA4; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x80135CE4; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x80135D94; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x80135F10; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x80135F9C; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x80136100; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x80136108; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x801361C0; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x80136540; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x801365C4; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x80136E78; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x80136F20; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x8013702C; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x80137040; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x801370BC; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x8013710C; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x80137194; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x80137558; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x80137A74; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x80137B78; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x80137C20; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80137D98; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x80137DD0; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x80137DF0; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x80137EEC; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x80137F60; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x80137F84; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x80137FD0; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x80137FF0; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x80137FFC; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x80138038; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x80138094; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x80138168; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x8013816C; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x801381D0; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x801381D4; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x801381F8; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x80138234; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x801382E0; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x80138308; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x80138380; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x8013839C; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x801383B8; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x80138438; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x801384B8; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x80138588; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x80138658; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x8013868C; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x801386C0; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x801386F4; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x80138728; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x801387D0; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x80138878; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x80138904; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x80138924; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x801389D0; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80138A00; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80138A44; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80138A48; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80138B84; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x80138BF4; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x80138C7C; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x80138C80; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x80138CF8; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x80138D3C; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x80138E88; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x80138FE4; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x80139178; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x80139248; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x80139378; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x801393A4; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x80139450; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x801397BC; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x80139800; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x80139820; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x801399A0; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x80139A24; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x80139F88; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x8013C24C; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013C2D0; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x8013C38C; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x8013C5DC; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x8013C698; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C738; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C78C; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x8013C838; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x8013C8E0; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x8013C998; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x8013CA40; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013CAC8; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x8013CB70; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x8013CC08; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x8013CEA4; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x8013CEBC; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x8013CFE0; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x8013D040; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x8013D064; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x8013D0D0; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x8013D434; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x8013D5B0; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x8013D87C; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x8013D960; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x8013DA44; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x8013DBDC; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x8013DD08; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x8013DEDC; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013DFA0; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x8013E148; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x8013E150; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x8013E164; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x8013E23C; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x8013E280; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x8013E304; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x8013E844; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x8013E8C8; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x8013EE04; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x80140420; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x801404E8; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x80140604; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x801407C8; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x8014081C; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x80140944; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x80140A8C; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x80140EA4; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x80140F28; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x80141054; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x801411B8; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x8014123C; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x80141298; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x801412F8; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x8014132C; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x80141388; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x801415A4; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x801415AC; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x801415B4; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x801415B8; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x80141668; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x80141670; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x80141760; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x801417B8; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x80141834; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x801418B8; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x80141AAC; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x80141F9C; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x80142250; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x80142288; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x801423D0; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x801424D0; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x80142534; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x801425B8; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x80142618; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x80142690; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x801426E4; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x8014274C; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x80142784; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x801427B8; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x8014281C; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x80142820; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x801428B0; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x80142958; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x80142974; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x80142980; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x80142994; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x801429C4; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x80142A1C; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x80142A40; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x80142A64; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x80142AB0; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x80142AFC; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x80142B08; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x80142B48; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x80142B60; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x80142B84; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x80142C0C; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x80142CE4; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x80142D24; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x80142D44; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x80142DDC; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x80142F18; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x80142F58; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x80142FA8; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x80143018; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x80143034; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x80143050; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x80143084; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x80143108; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x80143550; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x8014398C; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x80145078; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x801450FC; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x801451F8; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x80145320; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x80145344; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x80145378; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x80145394; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x80145570; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x801455B4; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x801455E8; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x80145664; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x80145840; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x80145A30; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x80145A58; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x80145A80; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x80145B44; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80145B9C; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x80145C60; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x80145CB4; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x80145D50; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x80145DD4; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x80145F60; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x80146454; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x801464E0; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x801466D4; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x801467A4; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x801467DC; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x80146854; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x801469FC; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x80146A74; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x80146B78; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x80146D48; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x80146DCC; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x80146F14; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x80147060; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x801473CC; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x801473EC; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x80147450; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x80147470; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80147498; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x80147540; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x80147560; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x80147608; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x80147630; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x801476B4; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x80147708; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x8014781C; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x8014788C; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x80147970; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x801479F4; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x80147A80; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x80147A88; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x80147A94; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x80147AA4; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x80147AB4; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80147ABC; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80147AC8; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x80147AE0; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x80147AFC; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x80147B18; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x80147B34; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x80147B50; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80147B6C; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x80147B80; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x80147B88; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x80147B90; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80147B98; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x80147BA0; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80147BA8; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x80147BB0; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80147BB8; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x80147BC0; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80147BC8; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x80147C5C; // type:function size:0x80 scope:global align:4 +_Error__FPce = .text:0x80147CDC; // type:function size:0x9C scope:local align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80147D78; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x80147DDC; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x80147DE4; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x80147E10; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x80147E5C; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x80147E78; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80147E90; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80147EA8; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x80147F4C; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x80147F70; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x80147F7C; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x80147F88; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x80148038; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80148048; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x80148098; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x801480AC; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x80148154; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x8014838C; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x801483B4; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x8014874C; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x801487B0; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x80148B28; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x80148C44; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x80148CC4; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x80148D64; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x80148E2C; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x80148E90; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x80148F28; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x80148F58; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x80148FFC; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x8014907C; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x8014925C; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x80149268; // type:function size:0x270 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x801494D8; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x8014956C; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x801496BC; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x8014973C; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x801497E8; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x801498BC; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x80149930; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x801499CC; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x801499F8; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x80149A28; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x80149A74; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x80149A98; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x80149BE8; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x80149C9C; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x80149E38; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x8014A0E0; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x8014A2CC; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x8014A30C; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x8014A3E4; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x8014A574; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x8014A7C4; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x8014A7E0; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x8014A7FC; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x8014A81C; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x8014A83C; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x8014A844; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x8014A848; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x8014A8FC; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x8014A9E4; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x8014AA04; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x8014AA8C; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x8014AB48; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x8014ACD8; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x8014AE2C; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x8014AF80; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x8014B134; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x8014B224; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x8014B400; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x8014B4C8; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x8014B514; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x8014B768; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x8014B844; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x8014B94C; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x8014B9C8; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x8014BA58; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x8014BBA8; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x8014BBDC; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x8014BC20; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x8014BC88; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x8014BE34; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x8014BE9C; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x8014C120; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x8014C294; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x8014C3DC; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x8014C430; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x8014C470; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x8014C508; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x8014C524; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x8014C574; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x8014C5C4; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x8014C614; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x8014C75C; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x8014C768; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x8014C794; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x8014C7C8; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x8014C80C; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x8014C880; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x8014C918; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x8014C94C; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x8014C980; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x8014C9B0; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x8014C9DC; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x8014CA1C; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x8014CA88; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x8014CBFC; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x8014CE38; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x8014CEE8; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x8014D1A8; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x8014D2A0; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x8014D394; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x8014D41C; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x8014D55C; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x8014D5DC; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x8014D600; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x8014D624; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x8014D67C; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x8014D724; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x8014D768; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x8014D7B0; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x8014D80C; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x8014D82C; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x8014D850; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x8014D874; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x8014D8A4; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x8014D8D4; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x8014D9B4; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014D9E0; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x8014D9F4; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x8014DA48; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x8014DA74; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x8014DAA0; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x8014DAD0; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x8014DAE4; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x8014DB04; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x8014DB28; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x8014DBD0; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x8014DC40; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x8014DCB0; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x8014DCC4; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x8014DD6C; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x8014DD80; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x8014DE64; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x8014DED4; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x8014DEEC; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x8014E030; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014E054; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x8014E078; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014E0B4; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x8014E170; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x8014E1CC; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x8014E200; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x8014E230; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x8014E240; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x8014E284; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x8014E314; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x8014E358; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x8014E360; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x8014E3B8; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x8014E3C0; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x8014E3CC; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x8014E6CC; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x8014E8BC; // type:function size:0x20 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x8014E8DC; // type:function size:0xA4 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x8014E980; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x8014E9FC; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x8014EB08; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x8014EB4C; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x8014EB60; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x8014EB70; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x8014EB80; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x8014EB90; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x8014ECAC; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x8014ED54; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x8014EDFC; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x8014EE08; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x8014EE78; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x8014EECC; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x8014EF50; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x8014EF58; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x8014F19C; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x8014F82C; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x8014F940; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x8014FB14; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014FB68; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x8014FB7C; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x801504D0; // type:function size:0x3C4 scope:global align:4 +_Error__FPce = .text:0x80150894; // type:function size:0x9C scope:local align:4 +__ct__15TekiPersonalityFv = .text:0x80150930; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x80150B28; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x80150C54; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x80150CF4; // type:function size:0x304 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x80150FF8; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x80151088; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x80151098; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x8015109C; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x801510A0; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x801510A4; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x801510A8; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x801510DC; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x80151110; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x80151144; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x80151148; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x801511B4; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x80151240; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x801512C8; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x801513B4; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x801513D4; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x801513F4; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x80151414; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x80151494; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x80151524; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x80151674; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x801517B0; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x80151D5C; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x80151E48; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x80151F5C; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x80151FF4; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x80152294; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x801523F8; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x8015242C; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x8015247C; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x801524AC; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x801525F0; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x801528C0; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x80152B9C; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x80152CF4; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x80152D54; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x80152DB4; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x80152E78; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x80152F30; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x80152F5C; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x801530B4; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x8015320C; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x80153254; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x801532A4; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x80153310; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x80153410; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x8015349C; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x801534A0; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x8015350C; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x8015353C; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x80153650; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x80153658; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x80153694; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x80153718; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x8015371C; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x8015382C; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x80153898; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x801538A0; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x801538A8; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x801538B0; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x801538B8; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x801538C0; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x801538C8; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x801538E4; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x801538EC; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x801538F4; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x801538F8; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x801538FC; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x80153900; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x80153904; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x80153908; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x8015394C; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x801539E0; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x80153A20; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x80153AE8; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x80153B58; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x80153BD4; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x80153C6C; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x80153DD8; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x80153DE0; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x80153DE8; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x80153E34; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x80153EB4; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x80153F34; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x80154228; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x8015426C; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x80154284; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x80154C50; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x80154E08; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x801552C8; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x8015607C; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x8015613C; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x801561EC; // type:function size:0x110 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x801562FC; // type:function size:0x158 scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x80156454; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x801564D8; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x801564E4; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x801564F4; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x80156560; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x80156568; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x80156678; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x80157040; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x80157180; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x80157188; // type:function size:0xC4 scope:global align:4 +doKill__6SpiderFv = .text:0x8015724C; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x801572A4; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x801572CC; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x80157338; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x80157484; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x801574FC; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x80157520; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x80157564; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x801576C4; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x801576CC; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x8015771C; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80157724; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x80157744; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x801577EC; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x80157868; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80157910; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x80157930; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x80157944; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x80157954; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x80157998; // type:function size:0x2FC scope:global align:4 +dieState__8SpiderAiFv = .text:0x80157C94; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x80157EF4; // type:function size:0x19F8 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x801598EC; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x80159A70; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x80159C4C; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x80159E74; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x80159F34; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x8015A2B8; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x8015A570; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x8015A6BC; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x8015A79C; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x8015A9D4; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x8015AB28; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x8015AB44; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x8015AB60; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x8015AB7C; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x8015AD0C; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x8015AD9C; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x8015AF04; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x8015AF58; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x8015B090; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x8015B244; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x8015B5E8; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x8015B8D0; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x8015BA38; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x8015BBA0; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x8015BD70; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x8015C030; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x8015C23C; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x8015C3B0; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x8015C4E0; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x8015C728; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x8015C958; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x8015CC1C; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x8015CD5C; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015CFCC; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x8015D650; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x8015D93C; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x8015DFE0; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x8015E01C; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8015E184; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x8015E1A8; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x8015EA98; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x8015EB9C; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x8015EBA4; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x8015EBB0; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x8015EBB8; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x8015EC70; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x8015ECBC; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x8015ECE4; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x8015ED48; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x8015EDF0; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x8015EE68; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x8015EEDC; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x8015EF00; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x8015EF54; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x8015EFC8; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x8015F07C; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x8015F0CC; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x8015F0D4; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x8015F1A4; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x8015F240; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x8015F2BC; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x8015F3C4; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x8015F43C; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x8015F4E8; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x8015F4F8; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x8015F53C; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x8015F640; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x8015FEC8; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x8015FFF8; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x80160068; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x801601CC; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x801601FC; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x80160494; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x8016072C; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x80160988; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x80160BE4; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x80160FF8; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x801614D0; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x80161848; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x80161BD0; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x80161DD8; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x80161E24; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x80161E44; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x80161FD0; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x80162598; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x801625A0; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x80162750; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x80163B8C; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x80163DAC; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x80163E14; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x80163F6C; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x80164008; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x80164030; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x80164348; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x8016463C; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x801649A4; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x80164BF8; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x80164E3C; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x80164FCC; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x8016541C; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x80165614; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x801657AC; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x80165AA0; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x80165E58; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x8016637C; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x801668BC; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x801669C8; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x80166BA8; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x80167560; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x801675C4; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x801675F8; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x80167B70; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x80167D44; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x80167D98; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80167DEC; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80167DF8; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x80167E00; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x8016807C; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x801680B0; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x801680B4; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x80168158; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x80168200; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x801682A0; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x801682C4; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x801682E8; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x80168450; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x80168470; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x801688B0; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x801688D0; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x801688DC; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x801688FC; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80168A0C; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80168A5C; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x80168A64; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x80168A6C; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x80168B14; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x80168B28; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x80168E38; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x80168EFC; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x80169060; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x8016939C; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x80169484; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x8016959C; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x801696E0; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x80169804; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x801698EC; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x801699F0; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x80169C70; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x80169EF0; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x8016A18C; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x8016A2F8; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x8016A600; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x8016A90C; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x8016AAA4; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x8016AD88; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x8016B2C4; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x8016B758; // type:function size:0x2D88 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x8016E4E0; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x8016E514; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x8016E650; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016E8F4; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x8016EBE0; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x8016F044; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x8016F15C; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x8016F1D4; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x8016F254; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x8016F25C; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x8016F264; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x8016F280; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x8016F2A4; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x8016F2D4; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x8016F304; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x8016F324; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x8016F328; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x8016F32C; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x8016F378; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x8016F37C; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x8016F380; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x8016F388; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x8016FB44; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x8016FC8C; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x8016FC94; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x8016FCB4; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x8016FD38; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8016FD98; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x8016FDC0; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x8016FE24; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x8016FF9C; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x8016FFF0; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x80170068; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x8017008C; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x801700E0; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x80170134; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x8017013C; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x8017018C; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x80170194; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x801701DC; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x801702E8; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x80170364; // type:function size:0x1D0 scope:global align:4 +keyAction1__6KingAiFv = .text:0x80170534; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x80170618; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x80170668; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x8017067C; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x8017070C; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x80170750; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x80170790; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x801708E4; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x801708F8; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x8017090C; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x80170D8C; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x801711EC; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x80171494; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x801714C0; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x80171750; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x80171C08; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x80171D28; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x80171FAC; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x801720C4; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x80172190; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x801721D8; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x801722A4; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x801725A4; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x801728B0; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x80172C90; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x801730D8; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x80173390; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x80173520; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x8017392C; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x80173A78; // type:function size:0x16C scope:global align:4 +update__6KingAiFv = .text:0x80173BE4; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x80176C68; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x80176D44; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x80176F90; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x801771A0; // type:function size:0x250 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x801773F0; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x801774CC; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x80177708; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x80177724; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x80177740; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x8017797C; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x801779A4; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x80177B84; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x80177CC4; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x80177E5C; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x801783D4; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80178604; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x80179270; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8017940C; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017948C; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x80179638; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x80179654; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x80179670; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8017969C; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x8017989C; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x80179914; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x80179C44; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x80179CC8; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x80179CD0; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x80179D24; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x80179D70; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x80179D98; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x80179DB8; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x80179E50; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x80179EBC; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x80179EF4; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x80179F38; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x80179F90; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x80179FE0; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x80179FE8; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x8017A194; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x8017A1CC; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x8017A240; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x8017A350; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x8017A3CC; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x8017A428; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x8017A4D0; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x8017A4E4; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x8017A50C; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x8017A548; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x8017A624; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x8017A80C; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x8017AA38; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x8017ABE0; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x8017ADC0; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x8017AE84; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x8017B224; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x8017B3F8; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x8017BC9C; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x8017BCC4; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x8017BF78; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x8017C010; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x8017C018; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x8017C068; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x8017C104; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x8017C150; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x8017C178; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x8017C1C4; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x8017C2A4; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x8017C328; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x8017C34C; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x8017C390; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x8017C3E4; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x8017C434; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x8017C43C; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x8017C4B0; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x8017C644; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x8017C6C0; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x8017C704; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x8017C720; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x8017C734; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x8017C7FC; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x8017C840; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x8017C878; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x8017CA2C; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x8017CA8C; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x8017CC60; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x8017CE88; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x8017D064; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x8017D264; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x8017D430; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x8017DCC8; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x8017DCEC; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x8017DD7C; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x8017DDE8; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x8017DDF0; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x8017DE3C; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x8017DE78; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x8017DE7C; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x8017DEC8; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x8017DF6C; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x8017DFD8; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017DFF4; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x8017E038; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x8017E088; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x8017E090; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x8017E120; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x8017E1A4; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x8017E1AC; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x8017E20C; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x8017E240; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x8017E244; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x8017E264; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x8017E2FC; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x8017E368; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x8017E38C; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x8017E3D0; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x8017E420; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x8017E428; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x8017E448; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x8017E4BC; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x8017E538; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x8017E53C; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x8017E540; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x8017E554; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x8017E564; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x8017E568; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x8017E838; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x8017E8C8; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x8017E94C; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017E954; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x8017E9B8; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x8017E9EC; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x8017E9F0; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x8017EA10; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x8017EAA8; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017EB14; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x8017EB38; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x8017EB7C; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017EBD0; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x8017EC20; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x8017EC28; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x8017EC48; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x8017ECBC; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x8017ED38; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x8017ED3C; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x8017ED40; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x8017ED54; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x8017ED64; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x8017ED68; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x8017ED74; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x8017F2B8; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x8017F348; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x8017F3CC; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x8017F428; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x8017F430; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x8017F470; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x8017F4B0; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x8017F4FC; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x8017F524; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x8017F570; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x8017F608; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x8017F674; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x8017F698; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x8017F6DC; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x8017F6E4; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x8017F734; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x8017F73C; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x8017F7BC; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x8017F874; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x8017F92C; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x8017F930; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x8017F9AC; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x8017FA68; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x8017FB38; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x8017FDA4; // type:function size:0x358 scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x801800FC; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x801801AC; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x8018026C; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x80180408; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x80180700; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x8018074C; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x80180774; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x801807D4; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x801808D0; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x8018096C; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x80180A8C; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x80180C2C; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x80180CB8; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x80180DD8; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x80180F9C; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x801810DC; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x80181248; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x80181564; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x80181578; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x801815A0; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x80181628; // type:function size:0x2C4 scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x801818EC; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x80181DC8; // type:function size:0x174 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x80181F3C; // type:function size:0x6A4 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x801825E0; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x80182674; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x801826F4; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x80182720; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x80182788; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801828FC; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x80182938; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x8018299C; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x80182A24; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x80182D4C; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x80182DB8; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x80182E3C; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x80182EC0; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x80182FD8; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x801830C8; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x801831B8; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x80183520; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x80183544; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x801835A4; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x801835EC; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x80183944; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x801839C4; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x80183A2C; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x80183AA4; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x80183BE4; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x80183C08; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x80183D80; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x80183E74; // type:function size:0x14C scope:global align:4 +setSpecialNumber__3zenFii = .text:0x80183FC0; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x80183FEC; // type:function size:0x200 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x801841EC; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x8018427C; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x801842F0; // type:function size:0x128 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x80184418; // type:function size:0x37C scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x80184794; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x80184898; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x80184C4C; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x80184C54; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x80184E4C; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x80184E88; // type:function size:0x498 scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x80185320; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x80185404; // type:function size:0x9F8 scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x80185DFC; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x80185E94; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x80185F58; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x8018602C; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x80186100; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x80186424; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x801864B0; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x80186870; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x80186920; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x8018697C; // type:function size:0x7C scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x801869F8; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x80186AB4; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x80186AE4; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x80186BC4; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x80186C98; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80186E64; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x80187100; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x80187160; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x801871EC; // type:function size:0xDDC scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x80187FC8; // type:function size:0x17C scope:global align:4 +__ct__Q23zen14ogScrResultMgrFPQ23zen10EnumResult = .text:0x80188144; // type:function size:0x170 scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x801882B4; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x801889F8; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x80188D7C; // type:function size:0xE8 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x80188E64; // type:function size:0x9CC scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x80189830; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x801898BC; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x80189954; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x80189B74; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x8018A058; // type:function size:0x5D4 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x8018A62C; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x8018A674; // type:function size:0x128 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x8018A79C; // type:function size:0x168 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x8018A904; // type:function size:0x344 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x8018AC48; // type:function size:0x748 scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x8018B390; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B4FC; // type:function size:0x140 scope:global align:4 +getCardFileInfos__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B63C; // type:function size:0x1F4 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x8018B830; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B850; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B930; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018B9E4; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x8018B9F8; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x8018BAE8; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x8018BFC8; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x8018C2F4; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x8018C458; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x8018C978; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x8018CB30; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x8018CE20; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x8018D160; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x8018D428; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x8018DD20; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x8018DD2C; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x8018DEE4; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E09C; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E154; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x8018E1DC; // type:function size:0x404 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8018E5E0; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018E94C; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8018EB48; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x8018ED1C; // type:function size:0xA20 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x8018F73C; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x8018F760; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x8018F8BC; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x8018F904; // type:function size:0x118 scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x8018FA1C; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x8018FA9C; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x8018FAF8; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x8018FB50; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018FBA4; // type:function size:0x1DC scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x8018FD80; // type:function size:0x20C scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018FF8C; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x8018FFD4; // type:function size:0x230 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x80190204; // type:function size:0x168 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x8019036C; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x80190380; // type:function size:0x568 scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x801908E8; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x801909EC; // type:function size:0x914 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x80191300; // type:function size:0x168 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x80191468; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x801914AC; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x801914E4; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x8019151C; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x80191740; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x801918D0; // type:function size:0xC18 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x801924E8; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x801925F8; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x8019273C; // type:function size:0x14C scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x80192888; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x80192984; // type:function size:0x174 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x80192AF8; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x80192D8C; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x80192E28; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x80192EF0; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x80192F90; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x80192FB4; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x8019310C; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x801933A4; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x8019365C; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x80193A8C; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x80193C54; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x80193D60; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x80193E64; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x801946E4; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x801947D4; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x80194894; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x80194BE4; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x80194C24; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x80194E9C; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x801952B8; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x8019580C; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x80195B0C; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x80195F08; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x80196174; // type:function size:0x590 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x80196704; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x80196ACC; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x80196BDC; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x80196C2C; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x80196C80; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x80196E18; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80196ED4; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80197234; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x80197320; // type:function size:0x340 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x80197660; // type:function size:0xA8 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x80197708; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80198114; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80198150; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x801982E0; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x80198384; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x80198A70; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80198C44; // type:function size:0x738 scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x8019937C; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x8019943C; // type:function size:0x818 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x80199C54; // type:function size:0x10C scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x80199D60; // type:function size:0x3DC scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x8019A13C; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x8019A2A4; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x8019A2F8; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x8019A34C; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x8019A690; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x8019A79C; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019AB44; // type:function size:0x494 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x8019AFD8; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x8019B03C; // type:function size:0x2D0 scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x8019B30C; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x8019B3D0; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x8019B6D4; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x8019B9F4; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x8019BC90; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x8019BD6C; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x8019BE64; // type:function size:0x38 scope:global align:4 +stop__Q23zen13ogScrStartMgrFv = .text:0x8019BE9C; // type:function size:0x28 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x8019BEC4; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x8019C084; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019C110; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x8019C1FC; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x8019C2C0; // type:function size:0x538 scope:global align:4 +_Error__FPce = .text:0x8019C7F8; // type:function size:0x9C scope:local align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x8019C894; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x8019C8F4; // type:function size:0xE28 scope:global align:4 +__ct__12CMresultModeFv = .text:0x8019D71C; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x8019D7C8; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x8019D840; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x8019D9C8; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x8019D9F8; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x8019DA38; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x8019DABC; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x8019DAE0; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x8019DB60; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x8019DB84; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x8019DC44; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x8019DC68; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x8019DCE8; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x8019DD0C; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x8019DDF0; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x8019DE14; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x8019DEE8; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x8019DF0C; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x8019E03C; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x8019E060; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x8019E0E0; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x8019E104; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x8019E18C; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x8019E1B0; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x8019E240; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019E264; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x8019E2E4; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x8019E308; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x8019E388; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x8019E3AC; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x8019E45C; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x8019E480; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x8019E500; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x8019E524; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019E5A4; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x8019E5C8; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x8019E608; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x8019E60C; // type:function size:0x168 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x8019E774; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x8019E81C; // type:function size:0x36C scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x8019EB88; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x8019ED44; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x8019ED68; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x8019ED6C; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x8019ED9C; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x8019EE1C; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x8019EE20; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019EEB4; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019EEB8; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019F078; // type:function size:0x180 scope:global align:4 +_Error__FPce = .text:0x8019F1F8; // type:function size:0x9C scope:local align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x8019F294; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x8019F5B0; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x8019F6E4; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x8019F7E0; // type:function size:0x6A0 scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x8019FE80; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x8019FFC0; // type:function size:0x7C scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x801A003C; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x801A0078; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x801A0190; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A01C0; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0204; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x801A0244; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x801A0288; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x801A0330; // type:function size:0x64 scope:global align:4 +_Error__FPce = .text:0x801A0394; // type:function size:0x9C scope:local align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A0430; // type:function size:0x25C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x801A068C; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x801A07E0; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x801A0958; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x801A14B0; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A17A8; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x801A26A8; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x801A2DFC; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x801A3444; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x801A3608; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x801A37E4; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3E8C; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3EC8; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3F04; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3F40; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3F94; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A3FF0; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x801A404C; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x801A40D8; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x801A41E8; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x801A4330; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A43FC; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A4430; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x801A4520; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x801A4590; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x801A45E4; // type:function size:0x74 scope:global align:4 +_Error__FPce = .text:0x801A4658; // type:function size:0x9C scope:local align:4 +load__Q23zen14particleLoaderFPcb = .text:0x801A46F4; // type:function size:0x170 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x801A4864; // type:function size:0x84 scope:global align:4 +_Error__FPce = .text:0x801A48E8; // type:function size:0x9C scope:local align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x801A4984; // type:function size:0x178 scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x801A4AFC; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801A4B48; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x801A4BBC; // type:function size:0x110 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x801A4CCC; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x801A4D40; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x801A4DE8; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x801A4E84; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x801A4F1C; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x801A4FD0; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x801A5000; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x801A5094; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A51C4; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A5220; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A52C8; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A5324; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A54A4; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A54EC; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A5600; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A5668; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A56D0; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A576C; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A5B2C; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A5D0C; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A5F98; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A6014; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A610C; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A6190; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A62B0; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A6308; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A6388; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A63BC; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A650C; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A6608; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A671C; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A68C0; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A6988; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A6990; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A6998; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A69A0; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A69A8; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A69AC; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A69B0; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A69B8; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A6B38; // type:function size:0x31C scope:global align:4 +_Error__FPce = .text:0x801A6E54; // type:function size:0x9C scope:local align:4 +addAnimation__12TAIanimationFPc = .text:0x801A6EF0; // type:function size:0x58 scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A6F48; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A6FCC; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A7330; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A7F44; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A8064; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A8128; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A8824; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A882C; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A8838; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A8840; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A8908; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A8918; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A8964; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A897C; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A8994; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A8C1C; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A8C3C; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A8C54; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A8C74; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A8C8C; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A8CAC; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A8CCC; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A8CE4; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A8CFC; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A8D0C; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A8D78; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A8ECC; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A8F14; // type:function size:0x1D8 scope:weak align:4 +_Error__FPce = .text:0x801A90EC; // type:function size:0x9C scope:local align:4 +__ct__16TAImarSoundTableFv = .text:0x801A9188; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801A920C; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801A964C; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801AA434; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801AA600; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801AA6C4; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801AA9F0; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801AA9FC; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801AAA04; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801AAA74; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AAA7C; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801AAA94; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801AAAAC; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801AAAF8; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801AAB18; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801AAB20; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801AAB38; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801AADAC; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801AAFE4; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801AAFEC; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801AB004; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801AB00C; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801AB024; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801AB030; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801AB08C; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801AB094; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801AB160; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801AB178; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801AB17C; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801AB194; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801AB2C8; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801AB2E0; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801AB31C; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801AB3B0; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AB3B8; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801AB3C4; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801AB4B4; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801AB4CC; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801AB514; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801AB7E4; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801AB7F4; // type:function size:0x234 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801ABA28; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801ABA68; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801ABEC0; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801ABEC8; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801ABED0; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801ABF20; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801ABF3C; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801ABF6C; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801AC064; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801AC110; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801AC154; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801AC298; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801AC2DC; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801AC3BC; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801AC3C4; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801AC40C; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801AC474; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801AC574; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801AC61C; // type:function size:0x50 scope:global align:4 +_Error__FPce = .text:0x801AC66C; // type:function size:0x9C scope:local align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801AC708; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801AC79C; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801AC940; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801ACA80; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801ACA88; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801ACC38; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801ACC84; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801ACD9C; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801ACE88; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801ACF88; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACF90; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACFB0; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801ACFD4; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801AD0E4; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801AD11C; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801AD224; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AD23C; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AD274; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AD310; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801AD3C8; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AD3E0; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AD418; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801AD4A0; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801AD4B8; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801AD594; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801AD8B0; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801AD97C; // type:function size:0x1FC scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801ADB78; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801ADBF0; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801ADC4C; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801ADD34; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801ADE34; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801ADE54; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801ADF08; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801AE020; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801AE098; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801AE11C; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801AE1B4; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801AE1BC; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801AE238; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801AE4E8; // type:function size:0x368 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801AE850; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801AE858; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801AE890; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801AE9F4; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801AEA0C; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801AEB1C; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801AEBE0; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801AEC18; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AED08; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801AED40; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801AEE30; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801AEE5C; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801AEED4; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801AEF10; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801AF0C0; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801AF4F0; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801AF540; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801AF870; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801AF878; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF890; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF910; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AF958; // type:function size:0x358 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801AFCB0; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801AFCEC; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801B008C; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801B00AC; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801B012C; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801B03E8; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801B0400; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801B0408; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801B0498; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801B05A8; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801B05AC; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801B063C; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801B0754; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801B0768; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801B078C; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801B07D8; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801B07F4; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801B0818; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801B09CC; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801B0A54; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801B0A88; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801B0BA0; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801B0BA8; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801B0BAC; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801B0DAC; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801B0E30; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B0EB4; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801B0F20; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801B0F88; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801B1058; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B1128; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B1300; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801B1308; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801B1310; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801B1444; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801B1540; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801B15CC; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801B1730; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801B17B0; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801B18FC; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801B1994; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801B19E0; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801B1A80; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801B1A88; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801B1AE0; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801B1BC8; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801B1BDC; // type:function size:0xD4 scope:global align:4 +_Error__FPce = .text:0x801B1CB0; // type:function size:0x9C scope:local align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801B1D4C; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801B1D88; // type:function size:0x268 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801B1FF0; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801B1FF8; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801B211C; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801B2120; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801B2128; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801B2340; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B23A8; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B23EC; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B2408; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801B24A8; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801B2534; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801B268C; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B2704; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801B270C; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801B27E4; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801B27EC; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801B2914; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801B291C; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801B29B0; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801B2A30; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801B2AC8; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801B2B5C; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801B2BF8; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801B2C90; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2C98; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2D0C; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801B2DDC; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B3290; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801B3298; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801B32A0; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801B32C0; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801B3340; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801B3368; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801B3370; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801B3424; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801B34F0; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801B3664; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801B3704; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801B3718; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801B373C; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801B37E8; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801B3814; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801B3860; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801B38B0; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801B38B4; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801B3978; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801B3A50; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801B3A8C; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801B3CF8; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801B3D54; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801B3DD8; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801B3E38; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801B3E64; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801B3FD0; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801B4064; // type:function size:0x1FC scope:global align:4 +_Error__FPce = .text:0x801B4260; // type:function size:0x9C scope:local align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801B42FC; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801B4304; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801B4318; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B4360; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801B4390; // type:function size:0x40 scope:global align:4 +update__7P2DPaneFv = .text:0x801B43D0; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801B4504; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801B450C; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801B4658; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B47C0; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801B4A50; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801B4B30; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801B4FD4; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801B5020; // type:function size:0xC8 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801B50E8; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801B5344; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801B5450; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801B5454; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801B5458; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801B54BC; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801B54C4; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801B54E8; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801B550C; // type:function size:0x68 scope:weak align:4 +_Error__FPce = .text:0x801B5574; // type:function size:0x9C scope:local align:4 +makeResident__10P2DPictureFv = .text:0x801B5610; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B5684; // type:function size:0x70 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B56F4; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B57A8; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B58DC; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B5988; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B5A24; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B5A78; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B5AE0; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B5B58; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B61BC; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B63F0; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B68A0; // type:function size:0x14 scope:global align:4 +_Error__FPce = .text:0x801B68B4; // type:function size:0x9C scope:local align:4 +update__9P2DScreenFv = .text:0x801B6950; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B699C; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B6A00; // type:function size:0x144 scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B6B44; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B6CE4; // type:function size:0x30 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B6D14; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B703C; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B706C; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B708C; // type:function size:0x28 scope:global align:4 +_Error__FPce = .text:0x801B70B4; // type:function size:0x9C scope:local align:4 +getResource__9P2DStreamFi = .text:0x801B7150; // type:function size:0x124 scope:global align:4 +align__9P2DStreamFi = .text:0x801B7274; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B7304; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B731C; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B737C; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B73E4; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B73F8; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B74B4; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B7564; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B7588; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B75AC; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B75E0; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B7660; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B76A4; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B76C0; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B76FC; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B772C; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B77B4; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B7914; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B7B6C; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B7BD4; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B7C6C; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B8000; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B818C; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B828C; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B832C; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B8384; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B83E8; // type:function size:0x9C scope:local align:4 +makeResident__10P2DTextBoxFv = .text:0x801B8484; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B84BC; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B850C; // type:function size:0x220 scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B872C; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B8794; // type:function size:0x1A8 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B893C; // type:function size:0x64 scope:weak align:4 +_Error__FPce = .text:0x801B89A0; // type:function size:0x9C scope:local align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B8A3C; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B8A84; // type:function size:0x110 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B8B94; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B8BE8; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B8C10; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B8C54; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B8EA4; // type:function size:0x5C8 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801B946C; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801B9A90; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801B9C04; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801B9D0C; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801B9E5C; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801B9F18; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801B9FF0; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801BA014; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801BA0D8; // type:function size:0x308 scope:global align:4 +_Error__FPce = .text:0x801BA3E0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801BA47C; // type:function size:0x1FF4 scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801BC470; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801BC690; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801BC6A0; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801BC6B0; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801BC6EC; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801BCB40; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BCC30; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BCCAC; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801BCD2C; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801BCDDC; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801BCE90; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801BD0B4; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BD2E8; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801BD2F0; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801BD318; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801BD384; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801BD48C; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801BD760; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801BDA44; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801BDBFC; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BDC74; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801BDDC0; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801BDF54; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801BE06C; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801BE264; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801BE2A0; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801BE2A8; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801BE700; // type:function size:0x6C scope:global align:4 +_Error__FPce = .text:0x801BE76C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801BE808; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801C14B4; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801C14C8; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801C1590; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801C15F8; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801C168C; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801C17DC; // type:function size:0x4DC scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801C1CB8; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801C1E1C; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801C1E54; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801C2A74; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801C2FA0; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801C3364; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801C33C0; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801C34C8; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801C3640; // type:function size:0x160 scope:weak align:4 +_Error__FPce = .text:0x801C37A0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801C383C; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801C3944; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801C3968; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801C39B8; // type:function size:0xDC scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C3A94; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801C3BAC; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801C3BB4; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C3BC8; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801C3CB4; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801C3CE4; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801C3E04; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801C3E20; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801C3E90; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801C3FB4; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801C411C; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801C44B8; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801C4594; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801C4600; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801C4694; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801C478C; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801C4A94; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801C4BA4; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801C4CD0; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801C4E7C; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801C5074; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801C5334; // type:function size:0x5C scope:global align:4 +_Error__FPce = .text:0x801C5390; // type:function size:0x9C scope:local align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801C542C; // type:function size:0x54 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801C5480; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801C54FC; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C6970; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C6A94; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C6AC0; // type:function size:0x78 scope:global align:4 +_Error__FPce = .text:0x801C6B38; // type:function size:0x9C scope:local align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C6BD4; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C6C80; // type:function size:0x144 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C6DC4; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C7388; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C7410; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C741C; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C7428; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C7434; // type:function size:0x184 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C75B8; // type:function size:0xB4C scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C8104; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C8158; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C81C4; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C8560; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C88EC; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C89E0; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C8DEC; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C8E18; // type:function size:0x5C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C8E74; // type:function size:0x54 scope:global align:4 +_Error__FPce = .text:0x801C8EC8; // type:function size:0x9C scope:local align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C8F64; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C8F9C; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C917C; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801C9318; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C969C; // type:function size:0x240 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C98DC; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801C9BFC; // type:function size:0x450 scope:global align:4 +_Error__FPce = .text:0x801CA04C; // type:function size:0x9C scope:local align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801CA0E8; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801CA16C; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801CA584; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801CB478; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801CB5B8; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801CB9D4; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801CB9F8; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801CBA10; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801CBA34; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801CBB50; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CBB84; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CBC18; // type:function size:0x8EC scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CC504; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801CC520; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801CC538; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801CC5D8; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CD688; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801CD6A8; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801CD6C0; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801CD8B0; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801CD8D4; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801CDA34; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801CDA90; // type:function size:0x188 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801CDC18; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801CDC20; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801CE1CC; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801CE580; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801CE5F4; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801CE644; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801CE9FC; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801CEA80; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801CEDEC; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801CF870; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801CFF6C; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801CFFC4; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801D001C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801D0034; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D004C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D006C; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D008C; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D00A4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801D00BC; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801D0228; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801D025C; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801D02BC; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801D0340; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801D0700; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801D153C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801D1C38; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801D1C50; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D1C68; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D1C88; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D1CA8; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D1CC0; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801D1CD8; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D1E44; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801D1E5C; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801D1E74; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801D1EF8; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801D2370; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801D360C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801D3D08; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801D3D20; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D3D38; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D3D58; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D3D78; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D3D90; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801D3DA8; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801D3F14; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801D3F7C; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801D4160; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801D4178; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801D4180; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801D41BC; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801D41F8; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D4220; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801D42E8; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801D4518; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D4530; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801D4548; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801D4560; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801D45E4; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801D48D8; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801D4BB4; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801D52B0; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801D52D4; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801D5320; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801D5494; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D54A4; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D5560; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801D55BC; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801D55C4; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801D5628; // type:function size:0xE8 scope:weak align:4 +_Error__FPce = .text:0x801D5710; // type:function size:0x9C scope:local align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801D57AC; // type:function size:0x274 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801D5A20; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801D5AA4; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801D5E64; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D6934; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D6CFC; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D6D1C; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D6DCC; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D6F14; // type:function size:0xF8 scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D700C; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D7708; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D7720; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D7780; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D7954; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D7974; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D7D04; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D7D70; // type:function size:0x2BC scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D802C; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D8078; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D8148; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D8270; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D8278; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D830C; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D8314; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D8360; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D83BC; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D8474; // type:function size:0x8D8 scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D8D4C; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D8EDC; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801D9108; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801D9164; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801D916C; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801D91F0; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801D94E8; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801D96D0; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801D9858; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801D9894; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801D9F90; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801D9FCC; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801DA2B0; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801DA2C8; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801DA32C; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801DA334; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801DA344; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801DA3AC; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801DA500; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801DA6DC; // type:function size:0xE0 scope:weak align:4 +_Error__FPce = .text:0x801DA7BC; // type:function size:0x9C scope:local align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801DA858; // type:function size:0xD0 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801DA928; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801DA9C8; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801DAA30; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DAA70; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801DAC1C; // type:function size:0x70 scope:global align:4 +_Error__FPce = .text:0x801DAC8C; // type:function size:0x9C scope:local align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801DAD28; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801DADAC; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801DB1B0; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801DCB7C; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801DCC40; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801DD33C; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801DD374; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801DD420; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801DD454; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801DD50C; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801DD65C; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801DD66C; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801DD714; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801DD8E8; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801DD920; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801DDA48; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801DDB30; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801DDB94; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801DDC58; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801DDDCC; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801DDDDC; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801DDDFC; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801DDE14; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801DDE2C; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801DDE7C; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801DDFA4; // type:function size:0x928 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801DE8CC; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801DE928; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DE984; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801DE9D0; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DE9E8; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801DEA34; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801DEA4C; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801DEA80; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801DEB70; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801DEB84; // type:function size:0x8 scope:weak align:4 +_Error__FPce = .text:0x801DEB8C; // type:function size:0x9C scope:local align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801DEC28; // type:function size:0x4C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801DEC74; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801DECA8; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801DECE4; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801DED20; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801DED64; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801DEDDC; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801DEE20; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801DEFD4; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801DF0AC; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801DF0FC; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801DF39C; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801DF3E4; // type:function size:0x9C scope:local align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801DF480; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801DF814; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801DF884; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801DF8A8; // type:function size:0x3A8 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801DFC50; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801DFD58; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801DFDA4; // type:function size:0x48 scope:global align:4 +_Error__FPce = .text:0x801DFDEC; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801DFE88; // type:function size:0x24D4 scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801E235C; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801E24D0; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E24E4; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801E2510; // type:function size:0x6C0 scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801E2BD0; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801E2C7C; // type:function size:0x130 scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801E2DAC; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801E2EB0; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801E2F9C; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801E3100; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801E31B8; // type:function size:0x178 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801E3330; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801E3364; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E34EC; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801E3524; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801E4138; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801E4394; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801E4480; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801E4560; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801E48B8; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801E4EE0; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801E5230; // type:function size:0xE4 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E5314; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801E57A8; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801E5B5C; // type:function size:0x134 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801E5C90; // type:function size:0x1BA0 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E7830; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E78F8; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E7C10; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E7C58; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E80D4; // type:function size:0x275C scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801EA830; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801EAA44; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801EAFE8; // type:function size:0x87C scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801EB864; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801EBE78; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801EC040; // type:function size:0x154 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801EC194; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801EC270; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801EC394; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801EC5A0; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801EC7C0; // type:function size:0x168 scope:weak align:4 +_Error__FPce = .text:0x801EC928; // type:function size:0x9C scope:local align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801EC9C4; // type:function size:0x224 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801ECBE8; // type:function size:0x7C scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801ECC64; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801ECE0C; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801ED87C; // type:function size:0x30 scope:global align:4 +_Error__FPce = .text:0x801ED8AC; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801ED948; // type:function size:0x34C scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801EDC94; // type:function size:0x170 scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801EDE04; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801EDE40; // type:function size:0x100 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801EDF40; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801EE074; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801EE18C; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801EE6A0; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801EE6E0; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801EE744; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801EE790; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801EE7D4; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801EE880; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801EE92C; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801EE94C; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801EEBC8; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801EEC14; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801EEC38; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801EED60; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801EED84; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801EEE2C; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801EEE8C; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801EF008; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801EF02C; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801EF2C0; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801EF9BC; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801EFA4C; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801EFAFC; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801EFB80; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801EFEBC; // type:function size:0x548 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801F0404; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801F0B00; // type:function size:0x364 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801F0E64; // type:function size:0x3BC scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801F1220; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801F12B0; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801F1344; // type:function size:0xAC scope:weak align:4 +getWaitCounterMax__13TAIAwaitOtamaFR4Teki = .text:0x801F13F0; // type:function size:0x8 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F13F8; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801F15B0; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801F1858; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801F1BFC; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801F1C84; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801F1F18; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F1F98; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801F20B4; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801F20F8; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801F2188; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801F2190; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801F2290; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F23F8; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801F2400; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801F2558; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801F2588; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801F25D4; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801F2620; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801F2628; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801F2748; // type:function size:0xE4 scope:global align:4 +_Error__FPce = .text:0x801F282C; // type:function size:0x9C scope:local align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801F28C8; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801F2A18; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801F2A20; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801F2F04; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801F2FA0; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801F3014; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801F3090; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F30CC; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801F3130; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801F3244; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801F324C; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801F32C8; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801F32DC; // type:function size:0x54 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801F3330; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801F3460; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801F3554; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801F355C; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801F3780; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801F37C0; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801F37E4; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801F3860; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801F3884; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801F38A8; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801F38B0; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801F38B8; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801F3914; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801F3AE8; // type:function size:0xC8 scope:weak align:4 +_Error__FPce = .text:0x801F3BB0; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801F3C4C; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801F46A0; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801F476C; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801F47BC; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801F4854; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801F49C4; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801F4A80; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801F4BEC; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F4BF4; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801F4C40; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801F4D18; // type:function size:0xFC scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801F4E14; // type:function size:0xB8 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801F4ECC; // type:function size:0x378 scope:global align:4 +_Error__FPce = .text:0x801F5244; // type:function size:0x9C scope:local align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801F52E0; // type:function size:0x4A0 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F5780; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801F57F0; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801F5810; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801F59B0; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F59E4; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801F59EC; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801F5C00; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F5C7C; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801F5D18; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801F60F0; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801F621C; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801F63CC; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801F6450; // type:function size:0x360 scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801F67B0; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801F67BC; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801F6864; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F6C94; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F6CDC; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F6EE8; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F6FCC; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F701C; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F7108; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F7238; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F73EC; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F7420; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F7488; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F74D4; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F76E0; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F789C; // type:function size:0x7C scope:global align:4 +_Error__FPce = .text:0x801F7918; // type:function size:0x9C scope:local align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F79B4; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F7CFC; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F7D20; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F7D70; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F7DB8; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F7DDC; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F8680; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F86E8; // type:function size:0x1E4 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F88CC; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F89C0; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F8BB0; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F8BEC; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F8C40; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F8CD8; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F8D0C; // type:function size:0x98 scope:global align:4 +_Error__FPce = .text:0x801F8DA4; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F8E40; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801F9900; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801F9AD4; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801F9C0C; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801F9C10; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801FA2FC; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801FA4D0; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801FA540; // type:function size:0x1B4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801FA6F4; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801FA82C; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801FA850; // type:function size:0xC8 scope:global align:4 +_Error__FPce = .text:0x801FA918; // type:function size:0x9C scope:local align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801FA9B4; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FAA00; // type:function size:0x1C8 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801FABC8; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801FAC34; // type:function size:0xA8 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801FACDC; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801FAD04; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801FAD2C; // type:function size:0x134 scope:global align:4 +PPCMfmsr = .text:0x801FAE60; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801FAE68; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801FAE70; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801FAE78; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801FAE80; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801FAE88; // type:function size:0x8 scope:global align:4 +PPCSync = .text:0x801FAE90; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801FAE98; // type:function size:0x14 scope:global align:4 +PPCMfhid2 = .text:0x801FAEAC; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801FAEB4; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801FAEBC; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801FAEC4; // type:function size:0x28 scope:global align:4 +OSInit = .text:0x801FAEEC; // type:function size:0x2DC scope:global align:4 +OSExceptionInit = .text:0x801FB1C8; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801FB448; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801FB448; // type:label scope:global +__OSDBJump = .text:0x801FB46C; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801FB46C; // type:label scope:global +__OSDBJUMPEND = .text:0x801FB470; // type:label scope:global +__OSSetExceptionHandler = .text:0x801FB470; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801FB48C; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801FB4A0; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801FB4A0; // type:label scope:global +__DBVECTOR = .text:0x801FB4F8; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801FB508; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801FB538; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801FB53C; // type:function size:0x54 scope:local align:4 +__OSPSInit = .text:0x801FB590; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801FB5C8; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801FB5DC; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801FB628; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801FB634; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801FB884; // type:function size:0x68 scope:global align:4 +OSSetAbsAlarm = .text:0x801FB8EC; // type:function size:0x64 scope:global align:4 +OSCancelAlarm = .text:0x801FB950; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801FBA6C; // type:function size:0x210 scope:local align:4 +DecrementerExceptionHandler = .text:0x801FBC7C; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801FBCC8; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801FBDC4; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801FBE34; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801FBE3C; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801FBE44; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801FBE4C; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801FBE54; // type:function size:0x194 scope:global align:4 +__OSStopAudioSystem = .text:0x801FBFE8; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801FC0C0; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801FC0D4; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801FC104; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801FC138; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801FC16C; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801FC19C; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801FC1CC; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801FC1FC; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801FC234; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801FC244; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x801FC258; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801FC2F0; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801FC450; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801FC544; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801FC668; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801FC790; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801FC7EC; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801FC7F8; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801FC878; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801FC950; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801FC958; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801FC97C; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801FCA38; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801FCCE0; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801FCD64; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801FCDAC; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801FCE2C; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801FCF58; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801FCF74; // type:function size:0x174 scope:global align:4 +SetExiInterruptMask = .text:0x801FD0E8; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x801FD1DC; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x801FD438; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x801FD4D8; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x801FD5C4; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x801FD7CC; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x801FD814; // type:function size:0x7C scope:global align:4 +EXIProbe = .text:0x801FD890; // type:function size:0x168 scope:global align:4 +EXIProbeEx = .text:0x801FD9F8; // type:function size:0x60 scope:global align:4 +EXIAttach = .text:0x801FDA58; // type:function size:0xE4 scope:global align:4 +EXIDetach = .text:0x801FDB3C; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x801FDBF8; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x801FDD24; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x801FDE34; // type:function size:0x80 scope:local align:4 +TCIntrruptHandler = .text:0x801FDEB4; // type:function size:0x1F4 scope:local align:4 +EXTIntrruptHandler = .text:0x801FE0A8; // type:function size:0xAC scope:local align:4 +EXIInit = .text:0x801FE154; // type:function size:0x104 scope:global align:4 +EXILock = .text:0x801FE258; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x801FE34C; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x801FE428; // type:function size:0x18 scope:global align:4 +OSGetFontEncode = .text:0x801FE440; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801FE498; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801FE498; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801FE4A8; // type:label scope:global +OSEnableInterrupts = .text:0x801FE4AC; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801FE4C0; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801FE4E4; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801FE500; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801FE514; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801FE588; // type:function size:0x2B0 scope:local align:4 +__OSMaskInterrupts = .text:0x801FE838; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801FE8C0; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801FE948; // type:function size:0x324 scope:global align:4 +ExternalInterruptHandler = .text:0x801FEC6C; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801FECB8; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801FECD0; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801FED30; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801FEDF8; // type:function size:0xDC scope:global align:4 +OSInitMutex = .text:0x801FEED4; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x801FEF0C; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x801FEFE8; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x801FF0B0; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x801FF120; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x801FF140; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x801FF214; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x801FF234; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x801FF334; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x801FF36C; // type:function size:0x74 scope:global align:4 +Run = .text:0x801FF3E0; // type:function size:0x40 scope:local align:4 +Callback = .text:0x801FF420; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x801FF42C; // type:function size:0x1B0 scope:global align:4 +OSRegisterResetFunction = .text:0x801FF5DC; // type:function size:0x84 scope:global align:4 +Reset = .text:0x801FF660; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x801FF6D0; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x801FF718; // type:function size:0x1B8 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x801FF8D0; // type:function size:0xF4 scope:global align:4 +OSGetResetSwitchState = .text:0x801FF9C4; // type:function size:0x1F4 scope:global align:4 +WriteSramCallback = .text:0x801FFBB8; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x801FFC18; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x801FFD30; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x801FFE64; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x801FFEC0; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x801FFF1C; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x80200224; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x80200248; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x8020026C; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x8020027C; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x802002FC; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x802003A0; // type:function size:0x80 scope:global align:4 +OSSetProgressiveMode = .text:0x80200420; // type:function size:0xA4 scope:global align:4 +SIBusy = .text:0x802004C4; // type:function size:0x20 scope:global align:4 +CompleteTransfer = .text:0x802004E4; // type:function size:0x244 scope:local align:4 +SIIntrruptHandler = .text:0x80200728; // type:function size:0x118 scope:local align:4 +SIInit = .text:0x80200840; // type:function size:0x74 scope:global align:4 +__SITransfer = .text:0x802008B4; // type:function size:0x208 scope:local align:4 +SIGetStatus = .text:0x80200ABC; // type:function size:0x10 scope:global align:4 +SISetCommand = .text:0x80200ACC; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x80200AE0; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x80200AF0; // type:function size:0x60 scope:global align:4 +SIEnablePolling = .text:0x80200B50; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x80200BEC; // type:function size:0x6C scope:global align:4 +SIGetResponse = .text:0x80200C58; // type:function size:0x24 scope:global align:4 +AlarmHandler = .text:0x80200C7C; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x80200D08; // type:function size:0x13C scope:global align:4 +SystemCallVector = .text:0x80200E44; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x80200E44; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x80200E60; // type:label scope:global +__OSInitSystemCall = .text:0x80200E64; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x80200EC8; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x80200FF0; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x80201000; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x8020100C; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x80201040; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x80201080; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x802010C0; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x80201128; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x80201164; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x80201324; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x80201374; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x80201574; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x802015A4; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x802015E0; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x80201700; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x802017E4; // type:function size:0x1BC scope:global align:4 +OSResumeThread = .text:0x802019A0; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x80201C28; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x80201D98; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x80201E84; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x80201F88; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x80201F90; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x8020202C; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x8020277C; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x80202794; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x8020279C; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x80202800; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x8020299C; // type:function size:0x204 scope:global align:4 +InitializeUART = .text:0x80202BA0; // type:function size:0x48 scope:global align:4 +ReadUARTN = .text:0x80202BE8; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x80202BF0; // type:function size:0x200 scope:global align:4 +__init_user = .text:0x80202DF0; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x80202E10; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x80202E64; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x80202E84; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x80202EAC; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x80202EF4; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x80202F04; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x80202F20; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x80202F70; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x80202F9C; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x80203068; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x802030B8; // type:function size:0x104 scope:global align:4 +MTXTrans = .text:0x802031BC; // type:function size:0x3C scope:global align:4 +MTXScale = .text:0x802031F8; // type:function size:0x38 scope:global align:4 +MTXLightPerspective = .text:0x80203230; // type:function size:0xCC scope:global align:4 +MTXPerspective = .text:0x802032FC; // type:function size:0xD0 scope:global align:4 +MTXOrtho = .text:0x802033CC; // type:function size:0x98 scope:global align:4 +PSVECSquareMag = .text:0x80203464; // type:function size:0x1C scope:global align:4 +VECMag = .text:0x80203480; // type:function size:0x88 scope:global align:4 +__DVDInitWA = .text:0x80203508; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x80203548; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x8020383C; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x802038C0; // type:function size:0x70 scope:local align:4 +Read = .text:0x80203930; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x80203A40; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x80203AC0; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x80203D58; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x80203DEC; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x80203E18; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x80203EBC; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x80203F48; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x80203FD4; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x80204070; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x80204108; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x80204194; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x80204230; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x802042EC; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x80204300; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x80204318; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x8020435C; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x80204394; // type:function size:0x2E0 scope:global align:4 +DVDFastOpen = .text:0x80204674; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x802046E8; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x802047B0; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x802047D4; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x80204934; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x802049F8; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x80204AB8; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x80204AE8; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x80204C00; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x80204C24; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x80204D10; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x80204D40; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x80204E3C; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x80204E90; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x80204F10; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x80204FB8; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x80205054; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x8020507C; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x80205130; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x802053C4; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x8020542C; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x802054C4; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x802054EC; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x80205644; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x80205728; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x8020575C; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x80205794; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x802058A8; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x8020594C; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x80205A48; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x80205A8C; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x80205B58; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x80205B88; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x80205BF8; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x80205C20; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x80205D04; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x80205F4C; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x8020620C; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x802067E0; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x8020689C; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x80206978; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x80206A48; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x80206B1C; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x80206BE0; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x80206C80; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x80206CA8; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x80206CEC; // type:function size:0xAC scope:global align:4 +DVDCancelAsync = .text:0x80206D98; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x80207008; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x802070B4; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x802070D8; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x802070E0; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x802071C4; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x802072E0; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x80207318; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x80207380; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x80207420; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x80207478; // type:function size:0x60 scope:global align:4 +__DVDStoreErrorCode = .text:0x802074D8; // type:function size:0x158 scope:global align:4 +cb = .text:0x80207630; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x80207708; // type:function size:0x150 scope:global align:4 +__VIRetraceHandler = .text:0x80207858; // type:function size:0x210 scope:local align:4 +VISetPostRetraceCallback = .text:0x80207A68; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x80207AAC; // type:function size:0x68 scope:local align:4 +__VIInit = .text:0x80207B14; // type:function size:0x1E8 scope:global align:4 +VIInit = .text:0x80207CFC; // type:function size:0x438 scope:global align:4 +VIWaitForRetrace = .text:0x80208134; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x80208188; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x8020845C; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x802085FC; // type:function size:0x69C scope:global align:4 +VIFlush = .text:0x80208C98; // type:function size:0x11C scope:global align:4 +VISetNextFrameBuffer = .text:0x80208DB4; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x80208E20; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x80208E9C; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x80208EA4; // type:function size:0xBC scope:local align:4 +VIGetTvFormat = .text:0x80208F60; // type:function size:0xC scope:global align:4 +VIGetDTVStatus = .text:0x80208F6C; // type:function size:0x3C scope:global align:4 +ClampStick = .text:0x80208FA8; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x802090D8; // type:function size:0x108 scope:global align:4 +DoReset = .text:0x802091E0; // type:function size:0xD4 scope:local align:4 +PADProbeCallback = .text:0x802092B4; // type:function size:0x1DC scope:local align:4 +UpdateOrigin = .text:0x80209490; // type:function size:0x194 scope:local align:4 +PADOriginCallback = .text:0x80209624; // type:function size:0x11C scope:local align:4 +PADOriginUpdateCallback = .text:0x80209740; // type:function size:0x3C scope:local align:4 +PADFixCallback = .text:0x8020977C; // type:function size:0x254 scope:local align:4 +PADResetCallback = .text:0x802099D0; // type:function size:0x730 scope:local align:4 +PADReset = .text:0x8020A100; // type:function size:0x16C scope:global align:4 +PADRecalibrate = .text:0x8020A26C; // type:function size:0x154 scope:global align:4 +PADInit = .text:0x8020A3C0; // type:function size:0x1C4 scope:global align:4 +PADReceiveCheckCallback = .text:0x8020A584; // type:function size:0x15C scope:local align:4 +PADRead = .text:0x8020A6E0; // type:function size:0x338 scope:global align:4 +PADSetSamplingRate = .text:0x8020AA18; // type:function size:0xB0 scope:global align:4 +PADControlMotor = .text:0x8020AAC8; // type:function size:0xBC scope:global align:4 +PADSetSpec = .text:0x8020AB84; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x8020ABE4; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x8020AD58; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x8020AECC; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x8020B2C4; // type:function size:0x11C scope:local align:4 +AIRegisterDMACallback = .text:0x8020B3E0; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x8020B424; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x8020B4AC; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x8020B4C4; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x8020B4D4; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x8020B4EC; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x8020B4FC; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x8020B5D4; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x8020B5E4; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x8020B6C4; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x8020B6D8; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x8020B700; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x8020B7D4; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x8020B7E4; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x8020B800; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x8020B810; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x8020B82C; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x8020B83C; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x8020B9A0; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x8020BA1C; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x8020BAAC; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x8020BB04; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x8020BCE8; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x8020BD2C; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x8020BE1C; // type:function size:0xF4 scope:global align:4 +ARGetBaseAddress = .text:0x8020BF10; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x8020BF18; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x8020BF90; // type:function size:0xECC scope:local align:4 +__ARQServiceQueueLo = .text:0x8020CE5C; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x8020CF5C; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x8020CF60; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x8020D02C; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x8020D094; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x8020D1F0; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x8020D200; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x8020D210; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x8020D228; // type:function size:0x14 scope:global align:4 +__CARDDefaultApiCallback = .text:0x8020D23C; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x8020D240; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x8020D274; // type:function size:0xCC scope:global align:4 +__CARDExiHandler = .text:0x8020D340; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x8020D458; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x8020D500; // type:function size:0x84 scope:global align:4 +__CARDReadNintendoID = .text:0x8020D584; // type:function size:0x10C scope:global align:4 +__CARDEnableInterrupt = .text:0x8020D690; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x8020D750; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x8020D840; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x8020D8EC; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x8020D990; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x8020DBBC; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x8020DCCC; // type:function size:0x1A0 scope:local align:4 +__CARDReadSegment = .text:0x8020DE6C; // type:function size:0x138 scope:global align:4 +__CARDWritePage = .text:0x8020DFA4; // type:function size:0x120 scope:global align:4 +__CARDEraseSector = .text:0x8020E0C4; // type:function size:0xDC scope:global align:4 +CARDInit = .text:0x8020E1A0; // type:function size:0x90 scope:global align:4 +__CARDSetDiskID = .text:0x8020E230; // type:function size:0x1C scope:global align:4 +__CARDGetControlBlock = .text:0x8020E24C; // type:function size:0xB0 scope:global align:4 +__CARDPutControlBlock = .text:0x8020E2FC; // type:function size:0x50 scope:global align:4 +CARDGetResultCode = .text:0x8020E34C; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x8020E37C; // type:function size:0x120 scope:global align:4 +CARDGetSectorSize = .text:0x8020E49C; // type:function size:0x6C scope:global align:4 +__CARDSync = .text:0x8020E508; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x8020E5A0; // type:function size:0x50 scope:local align:4 +BlockReadCallback = .text:0x8020E5F0; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x8020E6CC; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x8020E730; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x8020E80C; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x8020E870; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x8020E888; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x8020E890; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x8020E964; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x8020EA2C; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x8020EB44; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x8020EBE0; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x8020EC8C; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x8020EC94; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x8020ED64; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x8020EE2C; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x8020EEF0; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x8020F0A0; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x8020F324; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x8020F564; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8020F7E8; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x8020F874; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x8020FE04; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x8020FE2C; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x8020FE80; // type:function size:0x20 scope:global align:4 +DoMount = .text:0x8020FEA0; // type:function size:0x3B8 scope:local align:4 +__CARDMountCallback = .text:0x80210258; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x80210360; // type:function size:0x188 scope:global align:4 +CARDMount = .text:0x802104E8; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x80210530; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x802105CC; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x80210678; // type:function size:0x144 scope:local align:4 +CARDFormatAsync = .text:0x802107BC; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x80210E14; // type:function size:0x48 scope:global align:4 +__CARDCompareFileName = .text:0x80210E5C; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x80210EC4; // type:function size:0x8C scope:global align:4 +__CARDIsPublic = .text:0x80210F50; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x80210F80; // type:function size:0x174 scope:global align:4 +CARDOpen = .text:0x802110F4; // type:function size:0x174 scope:global align:4 +CARDClose = .text:0x80211268; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x802112BC; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x802112C4; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x802113F4; // type:function size:0x218 scope:global align:4 +CARDCreate = .text:0x8021160C; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x80211654; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x8021180C; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x8021193C; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x80211A80; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x80211AC8; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x80211C38; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x80211CE8; // type:function size:0x110 scope:global align:4 +CARDWrite = .text:0x80211DF8; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x80211E40; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x80211EE4; // type:function size:0x128 scope:global align:4 +CARDFastDelete = .text:0x8021200C; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x80212054; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x8021224C; // type:function size:0x128 scope:global align:4 +CARDSetStatusAsync = .text:0x80212374; // type:function size:0x170 scope:global align:4 +CARDSetStatus = .text:0x802124E4; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x8021252C; // type:function size:0x1F0 scope:global align:4 +CARDRename = .text:0x8021271C; // type:function size:0x48 scope:global align:4 +ExtHandler = .text:0x80212764; // type:function size:0xC scope:local align:4 +ExiHandler = .text:0x80212770; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x802127A0; // type:function size:0x3C scope:local align:4 +HIOEnumDevices = .text:0x802127DC; // type:function size:0x1C4 scope:global align:4 +HIOInit = .text:0x802129A0; // type:function size:0x234 scope:global align:4 +HIOReadMailbox = .text:0x80212BD4; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x80212D04; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x80212DF8; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x80212F3C; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x80212FB8; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x80212FDC; // type:function size:0xF40 scope:global align:4 +GXCPInterruptHandler = .text:0x80213F1C; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x80214058; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x802140C4; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x80214134; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x80214140; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x80214250; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x802143C8; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x802143E8; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x802144C4; // type:function size:0x44 scope:global align:4 +__GXFifoReadEnable = .text:0x80214508; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x80214530; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x80214554; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x80214598; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x802145E4; // type:function size:0x4C scope:local align:4 +__GXCleanGPFifo = .text:0x80214630; // type:function size:0xFC scope:global align:4 +GXSetCurrentGXThread = .text:0x8021472C; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x80214778; // type:function size:0x8 scope:global align:4 +GXGetGPFifo = .text:0x80214780; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x80214788; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x802148E0; // type:function size:0x338 scope:global align:4 +GXSetVtxDescv = .text:0x80214C18; // type:function size:0x35C scope:global align:4 +__GXSetVCD = .text:0x80214F74; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x802150DC; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x80215128; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x80215484; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x80215800; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x8021589C; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x80215928; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x80215938; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80215C08; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x80215C50; // type:function size:0x68 scope:global align:4 +GXAbortFrame = .text:0x80215CB8; // type:function size:0xCC scope:global align:4 +GXDrawDone = .text:0x80215D84; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x80215E04; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x80215E28; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x80215E3C; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x80215E50; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x80215E6C; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80215EF4; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x80215F10; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x80215F24; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x80215F40; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x80215F68; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80215FF0; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x80216074; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x802160F4; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80216180; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x8021625C; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x802162E4; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x8021633C; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80216390; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x802163F4; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x80216444; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x80216488; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x802164AC; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x8021656C; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x8021662C; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x80216670; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x802167E0; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x8021680C; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x80216888; // type:function size:0xBC scope:global align:4 +GXSetCopyClear = .text:0x80216944; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x802169AC; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x80216BD4; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x80216BF0; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x80216D60; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80216EF0; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x80216F28; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x80216F44; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x80216F54; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x80216F70; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x80217044; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x8021706C; // type:function size:0x144 scope:global align:4 +GXSetChanAmbColor = .text:0x802171B0; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x80217318; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x80217480; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x802174CC; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x802176B0; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x80217778; // type:function size:0x254 scope:global align:4 +GXInitTexObjLOD = .text:0x802179CC; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x80217B60; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x80217B68; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x80217D10; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x80217D64; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x80217E84; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x80217ECC; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x80217F14; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x80217F28; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x80217F3C; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x80218008; // type:function size:0x16C scope:global align:4 +GXSetTevIndirect = .text:0x80218174; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x80218210; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x802183E4; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x80218410; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x80218458; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x80218524; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x80218548; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x802186EC; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x8021876C; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x802187F0; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x802188B0; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x80218970; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x802189E4; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x80218A58; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x80218ACC; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x80218B38; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x80218BA4; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x80218BFC; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x80218C9C; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x80218CEC; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x80218D70; // type:function size:0x1A0 scope:global align:4 +GXSetNumTevStages = .text:0x80218F10; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x80218F44; // type:function size:0x1B4 scope:global align:4 +GXSetFogRangeAdj = .text:0x802190F8; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x802191F8; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x802192FC; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x8021933C; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x8021937C; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x802193F4; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x80219434; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x80219544; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x80219584; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x802195D8; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x80219610; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x80219690; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x80219694; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x8021975C; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x80219830; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x802198A0; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x80219974; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x802199A8; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x802199DC; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x80219A00; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x80219A3C; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x80219A7C; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x80219AB8; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x80219B3C; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x80219C58; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x80219C7C; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x80219D2C; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x80219D70; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x80219D98; // type:function size:0x84 scope:global align:4 +__va_arg = .text:0x80219E1C; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x80219F10; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x80219F58; // type:function size:0x18 scope:global align:4 +__copy = .text:0x80219F70; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x80219FA0; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x8021A01C; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x8021A11C; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x8021A1D4; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x8021A2DC; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x8021A304; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x8021A338; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x8021A374; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x8021A3D0; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x8021A3D0; // type:label scope:global +_savefpr_15 = .text:0x8021A3D4; // type:label scope:global +_savefpr_16 = .text:0x8021A3D8; // type:label scope:global +_savefpr_17 = .text:0x8021A3DC; // type:label scope:global +_savefpr_18 = .text:0x8021A3E0; // type:label scope:global +_savefpr_19 = .text:0x8021A3E4; // type:label scope:global +_savefpr_20 = .text:0x8021A3E8; // type:label scope:global +_savefpr_21 = .text:0x8021A3EC; // type:label scope:global +_savefpr_22 = .text:0x8021A3F0; // type:label scope:global +_savefpr_23 = .text:0x8021A3F4; // type:label scope:global +_savefpr_24 = .text:0x8021A3F8; // type:label scope:global +_savefpr_25 = .text:0x8021A3FC; // type:label scope:global +_savefpr_26 = .text:0x8021A400; // type:label scope:global +_savefpr_27 = .text:0x8021A404; // type:label scope:global +_savefpr_28 = .text:0x8021A408; // type:label scope:global +_savefpr_29 = .text:0x8021A40C; // type:label scope:global +_savefpr_30 = .text:0x8021A410; // type:label scope:global +_savefpr_31 = .text:0x8021A414; // type:label scope:global +__restore_fpr = .text:0x8021A41C; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x8021A41C; // type:label scope:global +_restfpr_15 = .text:0x8021A420; // type:label scope:global +_restfpr_16 = .text:0x8021A424; // type:label scope:global +_restfpr_17 = .text:0x8021A428; // type:label scope:global +_restfpr_18 = .text:0x8021A42C; // type:label scope:global +_restfpr_19 = .text:0x8021A430; // type:label scope:global +_restfpr_20 = .text:0x8021A434; // type:label scope:global +_restfpr_21 = .text:0x8021A438; // type:label scope:global +_restfpr_22 = .text:0x8021A43C; // type:label scope:global +_restfpr_23 = .text:0x8021A440; // type:label scope:global +_restfpr_24 = .text:0x8021A444; // type:label scope:global +_restfpr_25 = .text:0x8021A448; // type:label scope:global +_restfpr_26 = .text:0x8021A44C; // type:label scope:global +_restfpr_27 = .text:0x8021A450; // type:label scope:global +_restfpr_28 = .text:0x8021A454; // type:label scope:global +_restfpr_29 = .text:0x8021A458; // type:label scope:global +_restfpr_30 = .text:0x8021A45C; // type:label scope:global +_restfpr_31 = .text:0x8021A460; // type:label scope:global +__div2u = .text:0x8021A468; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x8021A554; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x8021A68C; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x8021A770; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x8021A87C; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x8021A8A0; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x8021A8C4; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x8021A8EC; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x8021A9A0; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x8021AA6C; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x8021AA74; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x8021AAA8; // type:function size:0x40 scope:global align:4 +exit = .text:0x8021AAE8; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x8021ABF4; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x8021AE98; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x8021B24C; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x8021B25C; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x8021B328; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x8021B35C; // type:function size:0x4 scope:global align:4 +toupper = .text:0x8021B360; // type:function size:0x28 scope:global align:4 +tolower = .text:0x8021B388; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x8021B3B0; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x8021B68C; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x8021B6C8; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x8021B718; // type:function size:0x44 scope:global align:4 +memchr = .text:0x8021B75C; // type:function size:0x2C scope:global align:4 +memmove = .text:0x8021B788; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x8021B864; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x8021B914; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x8021B9D8; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x8021BA84; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x8021BB40; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x8021BB44; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x8021BC18; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x8021BC90; // type:function size:0x7C scope:global align:4 +printf = .text:0x8021BD0C; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x8021BDD8; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x8021BE44; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x8021BE9C; // type:function size:0x630 scope:local align:4 +float2str = .text:0x8021C4CC; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x8021CB04; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x8021CC38; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x8021CF18; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x8021D13C; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x8021D614; // type:function size:0x8 scope:global align:4 +rand = .text:0x8021D61C; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x8021D640; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x8021D6FC; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x8021D78C; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x8021E130; // type:function size:0x564 scope:local align:4 +strstr = .text:0x8021E694; // type:function size:0x6C scope:global align:4 +strchr = .text:0x8021E700; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x8021E730; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x8021E770; // type:function size:0x124 scope:global align:4 +strcat = .text:0x8021E894; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x8021E8C0; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x8021E904; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x8021E9B8; // type:function size:0x20 scope:global align:4 +atof = .text:0x8021E9D8; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x8021EA64; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x8021F148; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x8021F20C; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x8021F2FC; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x8021F3A8; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x8021F774; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8021FABC; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x8021FAC4; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8021FB5C; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8021FC3C; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8021FCBC; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x8021FCC4; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x8021FF5C; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x80220774; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x80220794; // type:function size:0x80 scope:weak align:4 +atan = .text:0x80220814; // type:function size:0x240 scope:global align:4 +copysign = .text:0x80220A54; // type:function size:0x2C scope:global align:4 +frexp = .text:0x80220A80; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x80220B1C; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x80220C94; // type:function size:0x20 scope:global align:4 +pow = .text:0x80220CB4; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x80220CD4; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x80220CDC; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x80220ED0; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x80220EF0; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x80220F60; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x80220FA4; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x8022107C; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x802210C0; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x802210E0; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x80221100; // type:function size:0x194 scope:global align:4 +sinf = .text:0x80221294; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x80221438; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x80221468; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x802214F8; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x80221520; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x80221540; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x8022156C; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x80221660; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x802216BC; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x802216E0; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x802217A0; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x80221880; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x80221898; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x802218BC; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x80221990; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x802219B4; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x802219DC; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x80221A50; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x80221A78; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x80221A80; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x80221AF8; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x80221B94; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x80221BC0; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x80221C28; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x80221C68; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x80221C98; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x80221D3C; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x80221DC8; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x80221E1C; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x80221E80; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x80221F08; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x80221F70; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x80221FEC; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x80222010; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x80222090; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x80222120; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x802221D0; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x80222244; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x802222C0; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x80222390; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x8022240C; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x8022245C; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x80222480; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x80222488; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x8022248C; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x802224A0; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x80222524; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x802225BC; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x8022260C; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x80222640; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x80222668; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x80222690; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x802226E0; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x80222710; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x80222894; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x80222970; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x80222BB4; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x80222D9C; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x80222F98; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x8022319C; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x802233A4; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x802234DC; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x80223540; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x80223744; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x802237C8; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x80223AA0; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x80223C44; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x80223C4C; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x80223C54; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x80223C5C; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x80223D34; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x80223D6C; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x80223E30; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x80223E38; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x80223E40; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x80223F78; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x80223FB4; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x80224118; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x80224164; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x80224260; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x802243A8; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x80224520; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x8022469C; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x802246C4; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x80224768; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x802247D0; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x80224964; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x80224A00; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x80224AB0; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x80224B74; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x80224BC8; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x80224C2C; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x80224CBC; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x80224D44; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x80224D80; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x80224E04; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x80224E74; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x80224EDC; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x80224F20; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x80224F68; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x80224F78; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x80225068; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x802250A4; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x802250B4; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x802250C4; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x802250EC; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x8022519C; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x80225214; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x80225394; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x802253FC; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x8022540C; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x802254A0; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x802254C0; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x80225508; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x80225568; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x802255FC; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x8022564C; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x80225804; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x802259BC; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x802259C4; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x80225A0C; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x80225A94; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x80225ACC; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x80225BB4; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x80225BB8; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x80225BF8; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x80225C28; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x80225C58; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x80225C9C; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x80225CE0; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x80225D10; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x80225D40; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x80225D64; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x80225D98; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x80225FDC; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80226174; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x802261B4; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x80226220; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x802262A0; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80226308; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80226358; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80226398; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x802263D8; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80226418; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x802264D4; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x80226500; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x80226608; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x802268C4; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x80226A74; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x80226A78; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x80226A7C; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x80226A84; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x80226D1C; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x80226DC8; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x80226EA4; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x80226F80; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x8022702C; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80227068; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x802270A8; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x80227120; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80227174; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x80227210; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x8022729C; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x802274FC; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x80227500; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80227504; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80227520; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80227520; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x80227580; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x80227580; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x80227584; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x80227588; // type:object size:0x4 scope:local align:4 +@191 = .rodata:0x802275A0; // type:object size:0x9 scope:local align:4 data:string +@208 = .rodata:0x802275AC; // type:object size:0xC scope:local align:4 data:string +@80 = .rodata:0x802275B8; // type:object size:0xB scope:local align:4 data:string +@191 = .rodata:0x802275C8; // type:object size:0x9 scope:local align:4 data:string +@193 = .rodata:0x802275D4; // type:object size:0xB scope:local align:4 data:string +@178 = .rodata:0x802275E0; // type:object size:0x1D scope:local align:4 data:string +@38 = .rodata:0x80227600; // type:object size:0x31 scope:local align:4 data:string +@39 = .rodata:0x80227634; // type:object size:0x33 scope:local align:4 data:string +@60 = .rodata:0x80227668; // type:object size:0x1D scope:local align:4 data:string +@61 = .rodata:0x80227688; // type:object size:0x11 scope:local align:4 data:string +@62 = .rodata:0x8022769C; // type:object size:0x27 scope:local align:4 data:string +@254 = .rodata:0x802276C8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x802276D8; // type:label scope:local +@161 = .rodata:0x802276D8; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x802276EC; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x80227700; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x80227714; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x80227728; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x8022773C; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x80227750; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x80227764; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x80227778; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x8022778C; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x802277A0; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x802277B4; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x802277C8; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x802277DC; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x802277F0; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x802277FC; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x80227808; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x80227814; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x80227824; // type:object size:0xD scope:local align:4 data:string +@81 = .rodata:0x80227838; // type:object size:0x14 scope:local align:4 data:4byte +@82 = .rodata:0x8022784C; // type:object size:0x14 scope:local align:4 data:4byte +mcbtypetrans$1481 = .rodata:0x80227860; // type:object size:0x18 scope:local align:4 +@3836 = .rodata:0x80227878; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x802278D8; // type:object size:0x60 scope:local align:4 data:4byte +@2564 = .rodata:0x80227938; // type:object size:0xC scope:local align:4 data:4byte +@2580 = .rodata:0x80227944; // type:object size:0xC scope:local align:4 data:4byte +@2661 = .rodata:0x80227950; // type:object size:0xC scope:local align:4 data:4byte +@2531 = .rodata:0x80227960; // type:object size:0x14 scope:local align:4 data:4byte +@2578 = .rodata:0x80227974; // type:object size:0x18 scope:local align:4 data:4byte +@1089 = .rodata:0x80227990; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x802279A0; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x802279AC; // type:object size:0xC scope:local align:4 data:4byte +@2255 = .rodata:0x802279B8; // type:object size:0x10 scope:local align:4 data:4byte +@2256 = .rodata:0x802279C8; // type:object size:0x10 scope:local align:4 data:4byte +@2061 = .rodata:0x802279D8; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x80227A00; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x80227A20; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x80227A40; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x80227A60; // type:object size:0x10 scope:local align:4 data:4byte +@4072 = .rodata:0x80227A70; // type:object size:0x1C scope:local align:4 data:4byte +@4076 = .rodata:0x80227A8C; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80227A98; // type:label scope:local +@5142 = .rodata:0x80227A98; // type:object size:0x18 scope:local align:4 data:4byte +@5213 = .rodata:0x80227AB0; // type:object size:0x10 scope:local align:4 +@5218 = .rodata:0x80227AC0; // type:object size:0x18 scope:local align:4 +@5219 = .rodata:0x80227AD8; // type:object size:0xC scope:local align:4 +@5223 = .rodata:0x80227AE4; // type:object size:0x10 scope:local align:4 +@5227 = .rodata:0x80227AF4; // type:object size:0x10 scope:local align:4 +@5243 = .rodata:0x80227B04; // type:object size:0x28 scope:local align:4 +@5244 = .rodata:0x80227B2C; // type:object size:0x14 scope:local align:4 +@1994 = .rodata:0x80227B40; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80227B58; // type:label scope:local +@1620 = .rodata:0x80227B58; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x80227B64; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x80227B7C; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x80227B94; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x80227BA4; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x80227BBC; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x80227BD4; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x80227BEC; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x80227C00; // type:object size:0xC scope:local align:4 data:4byte +@1694 = .rodata:0x80227C0C; // type:object size:0xC scope:local align:4 data:4byte +@1704 = .rodata:0x80227C18; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x80227C28; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x80227C34; // type:object size:0xC scope:local align:4 data:4byte +@3938 = .rodata:0x80227C40; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x80227C60; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x80227C90; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x80227CA0; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x80227CB0; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x80227CC8; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x80227D08; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x80227D18; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80227D28; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x80227D40; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x80227D88; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x80227DC8; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x80227EC8; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x80227FC8; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x802280C8; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x802280D0; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x802280E0; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x80228108; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x80228138; // type:label scope:local +bp = .rodata:0x80228138; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x80228148; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x80228158; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x80228168; // type:label scope:local +atanhi = .rodata:0x80228168; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x80228188; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x802281A8; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x80228200; // type:label scope:local +atan_coeff$96 = .rodata:0x80228200; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x8022821C; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x80228234; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x8022824C; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x80228268; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x80228284; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x8022829C; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x802282B8; // type:label scope:local +tmp_float = .rodata:0x802282B8; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x802282C8; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x802282E8; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x80228310; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x80228330; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x80228340; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x80228354; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x80228368; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x80228380; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x80228390; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802283A0; // type:label scope:local +J_STREAMNAME = .data:0x802283A0; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x80228420; // type:object size:0x2C scope:global align:4 +@102 = .data:0x8022844C; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x80228470; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x802284A0; // type:object size:0x1A00 scope:global align:32 +calc_sw_table = .data:0x80229EA0; // type:object size:0x51 scope:local align:4 +@345 = .data:0x80229EF4; // type:object size:0x20 scope:local align:4 +@344 = .data:0x80229F14; // type:object size:0x20 scope:local align:4 +history = .data:0x80229F38; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$94 = .data:0x80229F60; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x80229F80; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x80229FC0; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x8022A3C0; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x8022A3D8; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x8022A5D8; // type:object size:0xC scope:local align:4 +extdir = .data:0x8022A5E8; // type:object size:0x40 scope:local align:4 +@149 = .data:0x8022A628; // type:object size:0x34 scope:local align:4 +@239 = .data:0x8022A65C; // type:object size:0x44 scope:local align:4 +@276 = .data:0x8022A6A0; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x8022A6E4; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x8022A7E4; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x8022A8E8; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x8022ACE8; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x8022ADE8; // type:label scope:local +VIB_TABLE = .data:0x8022ADE8; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x8022AE0C; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x8022AE30; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x8022AE3C; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x8022AE54; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x8022AE6C; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x8022AE84; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x8022AE9C; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x8022AEB4; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x8022AED0; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x8022AEE8; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x8022AF00; // type:object size:0x10 scope:local align:4 +@151 = .data:0x8022AF10; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x8022AFA8; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x8022B028; // type:label scope:local +EVENT_OFFSET = .data:0x8022B028; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x8022B048; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x8022B6CC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022B6F0; // type:label scope:local +bgm_mute_set = .data:0x8022B6F0; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x8022B740; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x8022B790; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x8022B7BC; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x8022B7D4; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022B7EC; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x8022B808; // type:label scope:local +tbl_scene_to_bgm = .data:0x8022B808; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x8022B840; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x8022B878; // type:object size:0x14 scope:local align:4 +filelist = .data:0x8022B88C; // type:object size:0x1C0 scope:global align:4 +header = .data:0x8022BA4C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x8022BA70; // type:label scope:local +parts_bright_table = .data:0x8022BA70; // type:object size:0x20 scope:local align:4 +demo4 = .data:0x8022BA90; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x8022BABC; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x8022BAE4; // type:object size:0xC scope:local align:4 +demo16 = .data:0x8022BAF0; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x8022BB14; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x8022BB68; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x8022BB78; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x8022BBA4; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022BBCC; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x8022BBF4; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x8022BC1C; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x8022BC3C; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x8022BC70; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022BCEC; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x8022BD68; // type:object size:0xC scope:local align:4 +demo40 = .data:0x8022BD74; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x8022BD88; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x8022BDB4; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x8022BDE8; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x8022BE28; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x8022BE3C; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x8022BE70; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x8022BEA8; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x8022BED0; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x8022BEE4; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022BEFC; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x8022BF1C; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x8022BF64; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x8022BF70; // type:object size:0x564 scope:local align:4 +@370 = .data:0x8022C4D4; // type:object size:0x2C scope:local align:4 +@468 = .data:0x8022C500; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x8022C530; // type:label scope:local +filter_table = .data:0x8022C530; // type:object size:0x40 scope:local align:4 +table4 = .data:0x8022C570; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x8022C5A0; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x8022C880; // type:object size:0x10 scope:local align:4 +@388 = .data:0x8022C890; // type:object size:0xD scope:local align:4 data:string +@409 = .data:0x8022C8A0; // type:object size:0x1B scope:local align:4 data:string +...data.0 = .data:0x8022C8C0; // type:label scope:local +@388 = .data:0x8022C8C0; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x8022C8CC; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x8022C8D8; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x8022C8E4; // type:object size:0xC scope:local align:4 +@435 = .data:0x8022C8F0; // type:object size:0x14 scope:local align:4 +@430 = .data:0x8022C904; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x8022C920; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x8022C96C; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x8022C97C; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x8022C988; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022C9E0; // type:label scope:local +@388 = .data:0x8022C9E0; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x8022C9F8; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022CA0C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x8022CA20; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x8022CA34; // type:object size:0xC scope:local align:4 +@431 = .data:0x8022CA40; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x8022CA54; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x8022CAB8; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x8022CB20; // type:label scope:local +@577 = .data:0x8022CB20; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x8022CB30; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x8022CB3C; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x8022CB48; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x8022CB54; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x8022D020; // type:object size:0x499 scope:local align:32 data:byte +@1671 = .data:0x8022D4BC; // type:object size:0x1B scope:local align:4 data:string +@1705 = .data:0x8022D4D8; // type:object size:0x19 scope:local align:4 data:string +convFmts = .data:0x8022D4F4; // type:object size:0x3C scope:local align:4 +@1720 = .data:0x8022D530; // type:object size:0xF scope:local align:4 data:string +@1721 = .data:0x8022D540; // type:object size:0xD scope:local align:4 data:string +@1722 = .data:0x8022D550; // type:object size:0xF scope:local align:4 data:string +@1723 = .data:0x8022D560; // type:object size:0xB scope:local align:4 data:string +@1724 = .data:0x8022D56C; // type:object size:0xB scope:local align:4 data:string +@1725 = .data:0x8022D578; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x8022D584; // type:object size:0xC scope:local align:4 data:string +@1727 = .data:0x8022D590; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x8022D5A0; // type:object size:0x20 scope:local align:4 +@1742 = .data:0x8022D5C0; // type:object size:0x28 scope:local align:4 +@1772 = .data:0x8022D5E8; // type:object size:0x9 scope:local align:4 data:string +@1773 = .data:0x8022D5F4; // type:object size:0x9 scope:local align:4 data:string +@1774 = .data:0x8022D600; // type:object size:0xA scope:local align:4 data:string +@1775 = .data:0x8022D60C; // type:object size:0xA scope:local align:4 data:string +@1776 = .data:0x8022D618; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x8022D628; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x8022D638; // type:object size:0xC scope:local align:4 data:string +@1780 = .data:0x8022D644; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x8022D650; // type:object size:0x3C scope:local align:4 +@1781 = .data:0x8022D68C; // type:object size:0x9 scope:local align:4 data:string +@1782 = .data:0x8022D698; // type:object size:0x9 scope:local align:4 data:string +@1783 = .data:0x8022D6A4; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x8022D6B0; // type:object size:0xC scope:local align:4 +@1835 = .data:0x8022D6BC; // type:object size:0x28 scope:local align:4 data:string +@1836 = .data:0x8022D6E4; // type:object size:0x28 scope:local align:4 data:string +@1879 = .data:0x8022D70C; // type:object size:0x1A scope:local align:4 data:string +@2186 = .data:0x8022D728; // type:object size:0xD scope:local align:4 data:string +@2188 = .data:0x8022D738; // type:object size:0xA scope:local align:4 data:string +@2190 = .data:0x8022D744; // type:object size:0xC scope:local align:4 +@2187 = .data:0x8022D750; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x8022D764; // type:object size:0x14 scope:global align:4 +@2194 = .data:0x8022D778; // type:object size:0x9 scope:local align:4 data:string +@2195 = .data:0x8022D784; // type:object size:0xC scope:local align:4 +@2192 = .data:0x8022D790; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x8022D7A4; // type:object size:0x10 scope:global align:4 +@2198 = .data:0x8022D7B4; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x8022D7C8; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x8022D7D8; // type:object size:0xF4 scope:global align:4 +@2214 = .data:0x8022D8CC; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x8022D8DC; // type:object size:0x10 scope:global align:4 +@2215 = .data:0x8022D8EC; // type:object size:0x9 scope:local align:4 data:string +@2216 = .data:0x8022D8F8; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x8022D90C; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x8022D920; // type:label scope:local +@570 = .data:0x8022D920; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x8022D92C; // type:object size:0x1C scope:local align:4 +@733 = .data:0x8022D948; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x8022D954; // type:object size:0xC scope:local align:4 +@731 = .data:0x8022D960; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x8022D974; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022D9A0; // type:label scope:local +@577 = .data:0x8022D9A0; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x8022D9B0; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x8022D9BC; // type:object size:0x14 scope:local align:4 +@653 = .data:0x8022D9D0; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x8022D9DC; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x8022D9F4; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x8022DA08; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x8022DA1C; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x8022DA28; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x8022DA34; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x8022DA40; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x8022DA4C; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x8022DA58; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x8022DA64; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x8022DA70; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x8022DA7C; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x8022DA88; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x8022DAA0; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x8022DABC; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x8022DAC8; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x8022DAD4; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x8022DAE0; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x8022DAF0; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x8022DB00; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x8022DB10; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x8022DB20; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x8022DB2C; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x8022DB3C; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x8022DB48; // type:object size:0x31 scope:local align:4 data:string +@1678 = .data:0x8022DB7C; // type:object size:0xB scope:local align:4 data:string +@1679 = .data:0x8022DB88; // type:object size:0xA scope:local align:4 data:string +@1680 = .data:0x8022DB94; // type:object size:0xB scope:local align:4 data:string +@1683 = .data:0x8022DBA0; // type:object size:0xE scope:local align:4 data:string +@1688 = .data:0x8022DBB0; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x8022DBC0; // type:object size:0xD scope:local align:4 data:string +@1690 = .data:0x8022DBD0; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x8022DBDC; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x8022DBE8; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x8022DBF4; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x8022DC00; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x8022DC0C; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x8022DC18; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x8022DC24; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x8022DC30; // type:object size:0x9 scope:local align:4 data:string +@1725 = .data:0x8022DC3C; // type:object size:0xA scope:local align:4 data:string +@2046 = .data:0x8022DC48; // type:object size:0xF scope:local align:4 data:string +@2047 = .data:0x8022DC58; // type:object size:0xE scope:local align:4 data:string +@2048 = .data:0x8022DC68; // type:object size:0xF scope:local align:4 data:string +@2049 = .data:0x8022DC78; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x8022DC8C; // type:object size:0x1A scope:local align:4 data:string +@2165 = .data:0x8022DCA8; // type:object size:0x20 scope:local align:4 data:string +@2166 = .data:0x8022DCC8; // type:object size:0x1E scope:local align:4 data:string +@2216 = .data:0x8022DCE8; // type:object size:0x9 scope:local align:4 data:string +@2218 = .data:0x8022DCF4; // type:object size:0xB scope:local align:4 data:string +@2407 = .data:0x8022DD00; // type:object size:0xC scope:local align:4 data:4byte +@2477 = .data:0x8022DD0C; // type:object size:0x9 scope:local align:4 data:string +@3576 = .data:0x8022DD18; // type:object size:0x23 scope:local align:4 data:string +@4099 = .data:0x8022DD3C; // type:object size:0x2F scope:local align:4 data:string +@4180 = .data:0x8022DD6C; // type:object size:0xA scope:local align:4 data:string +@4410 = .data:0x8022DD78; // type:object size:0x11 scope:local align:4 data:string +@4411 = .data:0x8022DD8C; // type:object size:0x34 scope:local align:4 data:string +@4558 = .data:0x8022DDC0; // type:object size:0xB scope:local align:4 data:string +@4560 = .data:0x8022DDCC; // type:object size:0xB scope:local align:4 data:string +@4559 = .data:0x8022DDD8; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x8022DDE4; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x8022DDF4; // type:object size:0x10 scope:weak align:4 +@4565 = .data:0x8022DE04; // type:object size:0xA scope:local align:4 data:string +@4568 = .data:0x8022DE10; // type:object size:0xC scope:local align:4 +@4566 = .data:0x8022DE1C; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x8022DE30; // type:object size:0x24 scope:global align:4 +@4574 = .data:0x8022DE54; // type:object size:0x2D scope:local align:4 data:string +@4576 = .data:0x8022DE84; // type:object size:0x23 scope:local align:4 data:string +@4575 = .data:0x8022DEA8; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x8022DEB4; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x8022DEC0; // type:object size:0xC scope:weak align:4 +@4577 = .data:0x8022DECC; // type:object size:0xB scope:local align:4 data:string +@4578 = .data:0x8022DED8; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x8022DEEC; // type:object size:0x10 scope:weak align:4 +@4580 = .data:0x8022DEFC; // type:object size:0xB scope:local align:4 data:string +@4581 = .data:0x8022DF08; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x8022DF1C; // type:object size:0x10 scope:weak align:4 +@4582 = .data:0x8022DF2C; // type:object size:0xC scope:local align:4 data:string +@4583 = .data:0x8022DF38; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x8022DF4C; // type:object size:0x10 scope:weak align:4 +@4586 = .data:0x8022DF5C; // type:object size:0x9 scope:local align:4 data:string +@4587 = .data:0x8022DF68; // type:object size:0x14 scope:local align:4 +@4585 = .data:0x8022DF7C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x8022DF98; // type:object size:0x20 scope:global align:4 +@4590 = .data:0x8022DFB8; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x8022DFD4; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x8022DFF4; // type:object size:0x20 scope:global align:4 +@4591 = .data:0x8022E014; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x8022E020; // type:object size:0xC scope:global align:4 +@4592 = .data:0x8022E02C; // type:object size:0xF scope:local align:4 data:string +@4593 = .data:0x8022E03C; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x8022E050; // type:object size:0x10 scope:weak align:4 +@4595 = .data:0x8022E060; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x8022E074; // type:object size:0x10 scope:global align:4 +@4597 = .data:0x8022E084; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x8022E098; // type:object size:0x10 scope:global align:4 +@4598 = .data:0x8022E0A8; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x8022E0B4; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x8022E0C8; // type:object size:0x10 scope:weak align:4 +@4600 = .data:0x8022E0F4; // type:object size:0x9 scope:local align:4 data:string +@4601 = .data:0x8022E100; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x8022E114; // type:object size:0x10 scope:global align:4 +@690 = .data:0x8022E128; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x8022E134; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x8022E140; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x8022E150; // type:label scope:local +@571 = .data:0x8022E150; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x8022E160; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x8022E16C; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x8022E17C; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x8022E18C; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x8022E198; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x8022E1A4; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x8022E1B4; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x8022E1CC; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x8022E1DC; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x8022E1EC; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x8022E1FC; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x8022E210; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x8022E220; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x8022E234; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x8022E240; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x8022E24C; // type:object size:0xC scope:local align:4 +@1109 = .data:0x8022E258; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x8022E264; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x8022E278; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x8022E294; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x8022E2AC; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x8022E2C4; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x8022E2D0; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x8022E2E4; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x8022E2F4; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x8022E300; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x8022E314; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022E340; // type:label scope:local +@570 = .data:0x8022E340; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x8022E350; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x8022E35C; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x8022E368; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x8022E374; // type:object size:0xE scope:local align:4 data:string +@691 = .data:0x8022E384; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x8022E3A0; // type:object size:0x36 scope:local align:4 data:string +@1000 = .data:0x8022E3D8; // type:object size:0x2A scope:local align:4 data:string +@1001 = .data:0x8022E404; // type:object size:0xB scope:local align:4 data:string +@1003 = .data:0x8022E410; // type:object size:0xB scope:local align:4 data:string +@1002 = .data:0x8022E41C; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x8022E428; // type:object size:0x10 scope:weak align:4 +@1004 = .data:0x8022E438; // type:object size:0xC scope:local align:4 data:string +@1007 = .data:0x8022E444; // type:object size:0xC scope:local align:4 +@1005 = .data:0x8022E450; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x8022E464; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x8022E474; // type:object size:0x34 scope:global align:4 +@1016 = .data:0x8022E4A8; // type:object size:0xB scope:local align:4 data:string +@1017 = .data:0x8022E4B4; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x8022E4C0; // type:object size:0x10 scope:weak align:4 +@1022 = .data:0x8022E4D0; // type:object size:0xB scope:local align:4 data:string +@1023 = .data:0x8022E4DC; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x8022E4E8; // type:object size:0x10 scope:weak align:4 +@1024 = .data:0x8022E524; // type:object size:0xB scope:local align:4 data:string +@1025 = .data:0x8022E530; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x8022E53C; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x8022E550; // type:label scope:local +@570 = .data:0x8022E550; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x8022E55C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x8022E568; // type:object size:0xC scope:local align:4 +@755 = .data:0x8022E574; // type:object size:0x14 scope:local align:4 +@752 = .data:0x8022E588; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x8022E5A4; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x8022E5F0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x8022E620; // type:label scope:local +@388 = .data:0x8022E620; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x8022E630; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x8022E63C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x8022E648; // type:object size:0xC scope:local align:4 +@428 = .data:0x8022E654; // type:object size:0x14 scope:local align:4 +@423 = .data:0x8022E668; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x8022E684; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x8022E6B8; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x8022E6D0; // type:label scope:local +@466 = .data:0x8022E6D0; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x8022E6E0; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x8022E6F4; // type:object size:0xC scope:local align:4 +@467 = .data:0x8022E700; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x8022E714; // type:object size:0x68 scope:global align:4 +@476 = .data:0x8022E77C; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x8022E788; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x8022E794; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022E7F0; // type:label scope:local +@570 = .data:0x8022E7F0; // type:object size:0xC scope:local align:4 data:string +@663 = .data:0x8022E7FC; // type:object size:0x22 scope:local align:4 data:string +gxTexFmts = .data:0x8022E820; // type:object size:0x24 scope:local align:4 +@711 = .data:0x8022E844; // type:object size:0xA scope:local align:4 data:string +@710 = .data:0x8022E850; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x8022E85C; // type:object size:0x14 scope:global align:4 +@713 = .data:0x8022E870; // type:object size:0x9 scope:local align:4 data:string +@714 = .data:0x8022E87C; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x8022E8A4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022E8C0; // type:label scope:local +bigFont_data = .data:0x8022E8C0; // type:object size:0x7C080 noreloc scope:local align:32 +@577 = .data:0x802AA940; // type:object size:0xB scope:local align:4 data:string +@687 = .data:0x802AA94C; // type:object size:0x27 scope:local align:4 data:string +@789 = .data:0x802AA974; // type:object size:0x1F scope:local align:4 data:string +@798 = .data:0x802AA994; // type:object size:0x39 scope:local align:4 data:string +@908 = .data:0x802AA9D0; // type:object size:0xA scope:local align:4 data:string +@952 = .data:0x802AA9DC; // type:object size:0x9 scope:local align:4 data:string +@983 = .data:0x802AA9E8; // type:object size:0xC scope:local align:4 data:string +@986 = .data:0x802AA9F4; // type:object size:0x1D scope:local align:4 +@987 = .data:0x802AAA14; // type:object size:0x17 scope:local align:4 +@988 = .data:0x802AAA2C; // type:object size:0x19 scope:local align:4 +@989 = .data:0x802AAA48; // type:object size:0xE scope:local align:4 +@990 = .data:0x802AAA58; // type:object size:0x17 scope:local align:4 +@991 = .data:0x802AAA70; // type:object size:0x15 scope:local align:4 +@992 = .data:0x802AAA88; // type:object size:0x21 scope:local align:4 +@993 = .data:0x802AAAAC; // type:object size:0x1B scope:local align:4 +@994 = .data:0x802AAAC8; // type:object size:0x19 scope:local align:4 +@995 = .data:0x802AAAE4; // type:object size:0x19 scope:local align:4 +@996 = .data:0x802AAB00; // type:object size:0x15 scope:local align:4 +@997 = .data:0x802AAB18; // type:object size:0x11 scope:local align:4 +@998 = .data:0x802AAB2C; // type:object size:0x11 scope:local align:4 +@999 = .data:0x802AAB40; // type:object size:0x1D scope:local align:4 +@1000 = .data:0x802AAB60; // type:object size:0x19 scope:local align:4 +errorMessages = .data:0x802AAB7C; // type:object size:0x5C scope:local align:4 +errorList = .data:0x802AABD8; // type:object size:0x18 scope:local align:4 +@1035 = .data:0x802AABF0; // type:object size:0xC scope:local align:4 +@1089 = .data:0x802AABFC; // type:object size:0x12 scope:local align:4 data:string +@1090 = .data:0x802AAC10; // type:object size:0xD scope:local align:4 data:string +@1193 = .data:0x802AAC20; // type:object size:0x1C scope:local align:4 data:string +@1194 = .data:0x802AAC3C; // type:object size:0x1F scope:local align:4 data:string +@1219 = .data:0x802AAC5C; // type:object size:0x26 scope:local align:4 data:string +@1220 = .data:0x802AAC84; // type:object size:0x21 scope:local align:4 data:string +@1274 = .data:0x802AACA8; // type:object size:0x1E scope:local align:4 data:string +@1276 = .data:0x802AACC8; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802AACE0; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802AACEC; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802AACF8; // type:object size:0xC scope:weak align:4 +@1277 = .data:0x802AAD04; // type:object size:0xA scope:local align:4 data:string +@1278 = .data:0x802AAD10; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802AAD1C; // type:object size:0x58 scope:weak align:4 +@1299 = .data:0x802AAD74; // type:object size:0xC scope:local align:4 data:string +@1302 = .data:0x802AAD80; // type:object size:0x9 scope:local align:4 data:string +@1303 = .data:0x802AAD8C; // type:object size:0xC scope:local align:4 +@1300 = .data:0x802AAD98; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802AADAC; // type:object size:0x10 scope:weak align:4 +@1306 = .data:0x802AADBC; // type:object size:0x9 scope:local align:4 data:string +@1307 = .data:0x802AADC8; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802AADDC; // type:object size:0x10 scope:weak align:4 +@1308 = .data:0x802AAE08; // type:object size:0xA scope:local align:4 data:string +@1310 = .data:0x802AAE14; // type:object size:0x13 scope:local align:4 data:string +@1311 = .data:0x802AAE28; // type:object size:0xC scope:local align:4 +@1309 = .data:0x802AAE34; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802AAE48; // type:object size:0x64 scope:weak align:4 +@1320 = .data:0x802AAF10; // type:object size:0xA scope:local align:4 data:string +@1319 = .data:0x802AAF1C; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802AAF28; // type:object size:0x34 scope:global align:4 +@1336 = .data:0x802AAF5C; // type:object size:0xB scope:local align:4 data:string +@1337 = .data:0x802AAF68; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802AAF7C; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802AAFE0; // type:label scope:local +@388 = .data:0x802AAFE0; // type:object size:0xB scope:local align:4 data:string +@434 = .data:0x802AAFEC; // type:object size:0x1D scope:local align:4 data:string +@435 = .data:0x802AB00C; // type:object size:0x29 scope:local align:4 data:string +@436 = .data:0x802AB038; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802AB050; // type:label scope:local +@388 = .data:0x802AB050; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802AB064; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802AB074; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802AB084; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802AB090; // type:label scope:local +@577 = .data:0x802AB090; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802AB0A0; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802AB0AC; // type:object size:0x3C scope:global align:4 +localNtsc480IntDf = .data:0x802AB0E8; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802AB124; // type:object size:0x20 scope:local align:4 +@655 = .data:0x802AB144; // type:object size:0x21 scope:local align:4 data:string +@723 = .data:0x802AB168; // type:object size:0x27 scope:local align:4 data:string +@738 = .data:0x802AB190; // type:object size:0x15 scope:local align:4 data:string +@951 = .data:0x802AB1A8; // type:object size:0xB scope:local align:4 data:string +@952 = .data:0x802AB1B4; // type:object size:0xB scope:local align:4 data:string +@953 = .data:0x802AB1C0; // type:object size:0xB scope:local align:4 data:string +@954 = .data:0x802AB1CC; // type:object size:0xB scope:local align:4 data:string +@955 = .data:0x802AB1D8; // type:object size:0xB scope:local align:4 data:string +@956 = .data:0x802AB1E4; // type:object size:0xB scope:local align:4 data:string +@957 = .data:0x802AB1F0; // type:object size:0xB scope:local align:4 data:string +@958 = .data:0x802AB1FC; // type:object size:0xB scope:local align:4 data:string +@959 = .data:0x802AB208; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802AB214; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802AB220; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802AB22C; // type:object size:0x2C scope:local align:4 +@962 = .data:0x802AB258; // type:object size:0xA scope:local align:4 data:string +@963 = .data:0x802AB264; // type:object size:0xA scope:local align:4 data:string +@964 = .data:0x802AB270; // type:object size:0xC scope:local align:4 data:string +@965 = .data:0x802AB27C; // type:object size:0xE scope:local align:4 data:string +@966 = .data:0x802AB28C; // type:object size:0xB scope:local align:4 data:string +@967 = .data:0x802AB298; // type:object size:0xB scope:local align:4 data:string +@968 = .data:0x802AB2A4; // type:object size:0xB scope:local align:4 data:string +@969 = .data:0x802AB2B0; // type:object size:0xB scope:local align:4 data:string +@970 = .data:0x802AB2BC; // type:object size:0xB scope:local align:4 data:string +@971 = .data:0x802AB2C8; // type:object size:0xB scope:local align:4 data:string +@972 = .data:0x802AB2D4; // type:object size:0xB scope:local align:4 data:string +@973 = .data:0x802AB2E0; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802AB2EC; // type:object size:0x10 scope:local align:4 data:string +@975 = .data:0x802AB2FC; // type:object size:0x10 scope:local align:4 data:string +@976 = .data:0x802AB30C; // type:object size:0x10 scope:local align:4 data:string +@977 = .data:0x802AB31C; // type:object size:0x10 scope:local align:4 data:string +@978 = .data:0x802AB32C; // type:object size:0x10 scope:local align:4 data:string +@979 = .data:0x802AB33C; // type:object size:0x10 scope:local align:4 data:string +@980 = .data:0x802AB34C; // type:object size:0x10 scope:local align:4 data:string +@981 = .data:0x802AB35C; // type:object size:0xD scope:local align:4 data:string +@982 = .data:0x802AB36C; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802AB37C; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802AB3D0; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802AB488; // type:object size:0xB0 scope:local align:4 +@1333 = .data:0x802AB538; // type:object size:0x1C scope:local align:4 +@1425 = .data:0x802AB554; // type:object size:0x11 scope:local align:4 data:string +@1946 = .data:0x802AB568; // type:object size:0x10 scope:local align:4 data:string +@1967 = .data:0x802AB578; // type:object size:0xA scope:local align:4 data:string +@1968 = .data:0x802AB584; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802AB59C; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802AB61C; // type:object size:0x100 scope:local align:4 +@2084 = .data:0x802AB71C; // type:object size:0x9 scope:local align:4 data:string +@2085 = .data:0x802AB728; // type:object size:0xC scope:local align:4 +@2086 = .data:0x802AB734; // type:object size:0xA scope:local align:4 data:string +@2087 = .data:0x802AB740; // type:object size:0x14 scope:local align:4 +@2082 = .data:0x802AB754; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802AB770; // type:object size:0x24 scope:global align:4 +@2096 = .data:0x802AB794; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802AB7A0; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802AB7AC; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802AB8A8; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802AB8D0; // type:label scope:local +@713 = .data:0x802AB8D0; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802AB8E4; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802AB8F4; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802AB900; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802AB90C; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802AB918; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802AB92C; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802AB948; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802AB9B8; // type:label scope:local +@697 = .data:0x802AB9B8; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802AB9C4; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802AB9D0; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802AB9DC; // type:object size:0xA scope:local align:4 data:string +@1156 = .data:0x802AB9E8; // type:object size:0x3B scope:local align:4 data:string +@1165 = .data:0x802ABA24; // type:object size:0x28 scope:local align:4 data:string +@1263 = .data:0x802ABA4C; // type:object size:0x22 scope:local align:4 data:string +@1266 = .data:0x802ABA70; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802ABA7C; // type:object size:0x18 scope:global align:4 +@1270 = .data:0x802ABA94; // type:object size:0xC scope:local align:4 +@1268 = .data:0x802ABAA0; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802ABAB4; // type:object size:0x10 scope:global align:4 +@1272 = .data:0x802ABAC4; // type:object size:0xD scope:local align:4 data:string +@1274 = .data:0x802ABAD4; // type:object size:0x9 scope:local align:4 data:string +@1273 = .data:0x802ABAE0; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802ABAEC; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802ABB00; // type:object size:0xC scope:local align:4 data:string +@1276 = .data:0x802ABB0C; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802ABB18; // type:object size:0x14 scope:weak align:4 +@1277 = .data:0x802ABB2C; // type:object size:0xA scope:local align:4 data:string +@1278 = .data:0x802ABB38; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802ABB44; // type:object size:0x14 scope:weak align:4 +@1279 = .data:0x802ABB58; // type:object size:0x9 scope:local align:4 data:string +@1280 = .data:0x802ABB64; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802ABB78; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802ABBA8; // type:label scope:local +@1799 = .data:0x802ABBA8; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802ABBB8; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802ABBC4; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802ABBD0; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802ABBE4; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802ABBF4; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802ABC04; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802ABC18; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802ABC28; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802ABC3C; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802ABC4C; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802ABC58; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802ABC64; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802ABC70; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802ABC7C; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802ABC88; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802ABC94; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802ABCA0; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802ABCAC; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802ABCC0; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802ABCCC; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802ABCD8; // type:object size:0xC scope:local align:4 +@2263 = .data:0x802ABCE4; // type:object size:0x17 scope:local align:4 data:string +@2264 = .data:0x802ABCFC; // type:object size:0x1F scope:local align:4 data:string +@2265 = .data:0x802ABD1C; // type:object size:0x1C scope:local align:4 data:string +@2266 = .data:0x802ABD38; // type:object size:0x12 scope:local align:4 data:string +@2267 = .data:0x802ABD4C; // type:object size:0x12 scope:local align:4 data:string +@2268 = .data:0x802ABD60; // type:object size:0x18 scope:local align:4 data:string +@2269 = .data:0x802ABD78; // type:object size:0x20 scope:local align:4 data:string +@2270 = .data:0x802ABD98; // type:object size:0x1D scope:local align:4 data:string +@2271 = .data:0x802ABDB8; // type:object size:0x13 scope:local align:4 data:string +@2272 = .data:0x802ABDCC; // type:object size:0x13 scope:local align:4 data:string +@2273 = .data:0x802ABDE0; // type:object size:0x10 scope:local align:4 data:string +@2298 = .data:0x802ABDF0; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802ABE04; // type:object size:0xD scope:local align:4 data:string +@2301 = .data:0x802ABE14; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802ABE20; // type:object size:0x18 scope:local align:4 data:string +@2303 = .data:0x802ABE38; // type:object size:0x18 scope:local align:4 data:string +@2498 = .data:0x802ABE50; // type:object size:0xC scope:local align:4 data:string +@2501 = .data:0x802ABE5C; // type:object size:0x9 scope:local align:4 data:string +@2502 = .data:0x802ABE68; // type:object size:0xC scope:local align:4 +@2504 = .data:0x802ABE74; // type:object size:0x14 scope:local align:4 +@2499 = .data:0x802ABE88; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802ABEA4; // type:object size:0x30 scope:weak align:4 +@2512 = .data:0x802ABED4; // type:object size:0xC scope:local align:4 data:string +@2513 = .data:0x802ABEE0; // type:object size:0x14 scope:local align:4 +@2515 = .data:0x802ABF04; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802ABF20; // type:object size:0x34 scope:weak align:4 +@2516 = .data:0x802ABF54; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802ABF70; // type:object size:0x30 scope:weak align:4 +@2524 = .data:0x802ABFBC; // type:object size:0xD scope:local align:4 data:string +@2526 = .data:0x802ABFCC; // type:object size:0x9 scope:local align:4 data:string +@2525 = .data:0x802ABFD8; // type:object size:0xC scope:local align:4 +@2527 = .data:0x802ABFF8; // type:object size:0xA scope:local align:4 data:string +@2528 = .data:0x802AC004; // type:object size:0xC scope:local align:4 +@2529 = .data:0x802AC024; // type:object size:0xC scope:local align:4 data:string +@2530 = .data:0x802AC030; // type:object size:0xC scope:local align:4 +@2531 = .data:0x802AC050; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802AC06C; // type:object size:0x30 scope:global align:4 +@2532 = .data:0x802AC09C; // type:object size:0x1C scope:local align:4 data:string +@2534 = .data:0x802AC0B8; // type:object size:0x13 scope:local align:4 data:string +@2533 = .data:0x802AC0CC; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802AC0D8; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802AC0E4; // type:object size:0xC scope:weak align:4 +@2535 = .data:0x802AC0F0; // type:object size:0xE scope:local align:4 data:string +@2537 = .data:0x802AC100; // type:object size:0xA scope:local align:4 data:string +@2538 = .data:0x802AC10C; // type:object size:0x14 scope:local align:4 +@2536 = .data:0x802AC120; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802AC13C; // type:object size:0x18 scope:global align:4 +@2567 = .data:0x802AC154; // type:object size:0xB scope:local align:4 data:string +@2568 = .data:0x802AC160; // type:object size:0xA scope:local align:4 data:string +@2569 = .data:0x802AC16C; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802AC178; // type:object size:0x18 scope:weak align:4 +@2617 = .data:0x802AC190; // type:object size:0xB scope:local align:4 data:string +@2618 = .data:0x802AC19C; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802AC1B0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AC1C0; // type:label scope:local +@681 = .data:0x802AC1C0; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802AC1CC; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802AC1DC; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802AC1E8; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802AC1F4; // type:object size:0xF scope:local align:4 data:string +@794 = .data:0x802AC204; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802AC214; // type:object size:0xF scope:local align:4 data:string +@796 = .data:0x802AC224; // type:object size:0xF scope:local align:4 data:string +@797 = .data:0x802AC234; // type:object size:0xF scope:local align:4 data:string +levNames = .data:0x802AC244; // type:object size:0x14 scope:local align:4 +@944 = .data:0x802AC258; // type:object size:0x13 scope:local align:4 data:string +@946 = .data:0x802AC26C; // type:object size:0x14 scope:local align:4 data:string +@947 = .data:0x802AC280; // type:object size:0x12 scope:local align:4 data:string +@948 = .data:0x802AC294; // type:object size:0x12 scope:local align:4 data:string +@949 = .data:0x802AC2A8; // type:object size:0x30 scope:local align:4 +@950 = .data:0x802AC2D8; // type:object size:0x11 scope:local align:4 data:string +@953 = .data:0x802AC2EC; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802AC2F8; // type:object size:0xC scope:local align:4 +@956 = .data:0x802AC304; // type:object size:0x14 scope:local align:4 +@958 = .data:0x802AC318; // type:object size:0x1C scope:local align:4 +@951 = .data:0x802AC334; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802AC358; // type:object size:0x34 scope:global align:4 +@966 = .data:0x802AC38C; // type:object size:0xC scope:local align:4 data:string +@967 = .data:0x802AC398; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802AC3AC; // type:object size:0x10 scope:weak align:4 +@968 = .data:0x802AC3D8; // type:object size:0xA scope:local align:4 data:string +@969 = .data:0x802AC3E4; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802AC3F8; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802AC408; // type:label scope:local +@683 = .data:0x802AC408; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802AC418; // type:object size:0xA scope:local align:4 data:string +@970 = .data:0x802AC424; // type:object size:0xA scope:local align:4 data:string +@973 = .data:0x802AC430; // type:object size:0x9 scope:local align:4 data:string +@974 = .data:0x802AC43C; // type:object size:0xC scope:local align:4 +@971 = .data:0x802AC448; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802AC45C; // type:object size:0x14 scope:global align:4 +@976 = .data:0x802AC470; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802AC484; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802AC498; // type:label scope:local +@1013 = .data:0x802AC498; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802AC4A8; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802AC4B4; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802AC4D0; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802AC4EC; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802AC508; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802AC524; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802AC540; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802AC55C; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802AC578; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802AC594; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802AC5A8; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802AC5BC; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802AC5D0; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802AC5E4; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802AC5F8; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802AC60C; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802AC65C; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802AC674; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802AC68C; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802AC6A8; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802AC6C4; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802AC6E0; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802AC6FC; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802AC718; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802AC734; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802AC750; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802AC76C; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802AC788; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802AC7A4; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802AC7C4; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802AC7E4; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802AC804; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802AC824; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802AC844; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802AC864; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802AC884; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802AC8A4; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802AC8C4; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802AC8E4; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802AC904; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802AC924; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802AC944; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802AC964; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802AC984; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802AC9A4; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802AC9C4; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802AC9E4; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802ACA04; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802ACA24; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802ACA44; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802ACA64; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802ACAF4; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802ACB08; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802ACB24; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802ACB38; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802ACB54; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802ACB6C; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802ACB8C; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802ACBA4; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802ACBC4; // type:object size:0x14 scope:local align:4 data:string +@1081 = .data:0x802ACBD8; // type:object size:0x1C scope:local align:4 data:string +@1082 = .data:0x802ACBF4; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802ACC10; // type:object size:0x21 scope:local align:4 data:string +@1084 = .data:0x802ACC34; // type:object size:0x15 scope:local align:4 data:string +@1085 = .data:0x802ACC4C; // type:object size:0x1D scope:local align:4 data:string +@1086 = .data:0x802ACC6C; // type:object size:0x13 scope:local align:4 data:string +@1087 = .data:0x802ACC80; // type:object size:0x1B scope:local align:4 data:string +@1088 = .data:0x802ACC9C; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802ACCB0; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802ACCCC; // type:object size:0x12 scope:local align:4 data:string +@1091 = .data:0x802ACCE0; // type:object size:0x1A scope:local align:4 data:string +@1092 = .data:0x802ACCFC; // type:object size:0x13 scope:local align:4 data:string +@1093 = .data:0x802ACD10; // type:object size:0x1B scope:local align:4 data:string +@1094 = .data:0x802ACD2C; // type:object size:0x16 scope:local align:4 data:string +@1095 = .data:0x802ACD44; // type:object size:0x1E scope:local align:4 data:string +@1096 = .data:0x802ACD64; // type:object size:0x18 scope:local align:4 data:string +@1097 = .data:0x802ACD7C; // type:object size:0x20 scope:local align:4 data:string +@1098 = .data:0x802ACD9C; // type:object size:0x16 scope:local align:4 data:string +@1099 = .data:0x802ACDB4; // type:object size:0x1E scope:local align:4 data:string +@1100 = .data:0x802ACDD4; // type:object size:0x17 scope:local align:4 data:string +@1101 = .data:0x802ACDEC; // type:object size:0x1F scope:local align:4 data:string +@1102 = .data:0x802ACE0C; // type:object size:0x13 scope:local align:4 data:string +@1103 = .data:0x802ACE20; // type:object size:0x1B scope:local align:4 data:string +@1104 = .data:0x802ACE3C; // type:object size:0x12 scope:local align:4 data:string +@1105 = .data:0x802ACE50; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802ACE6C; // type:object size:0x90 scope:local align:4 +@1189 = .data:0x802ACEFC; // type:object size:0x13 scope:local align:4 data:string +@1191 = .data:0x802ACF10; // type:object size:0x12 scope:local align:4 data:string +@1192 = .data:0x802ACF24; // type:object size:0x9 scope:local align:4 data:string +@1193 = .data:0x802ACF30; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802ACF3C; // type:object size:0x11 scope:local align:4 data:string +@1204 = .data:0x802ACF50; // type:object size:0x9 scope:local align:4 data:string +@1205 = .data:0x802ACF5C; // type:object size:0xC scope:local align:4 +@1207 = .data:0x802ACF68; // type:object size:0x14 scope:local align:4 +@1209 = .data:0x802ACF7C; // type:object size:0x1C scope:local align:4 +@1202 = .data:0x802ACF98; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802ACFBC; // type:object size:0x34 scope:global align:4 +@1218 = .data:0x802AD00C; // type:object size:0xA scope:local align:4 data:string +@1221 = .data:0x802AD018; // type:object size:0x13 scope:local align:4 data:string +@1222 = .data:0x802AD02C; // type:object size:0xC scope:local align:4 +@1219 = .data:0x802AD038; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802AD04C; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802AD150; // type:label scope:local +@1108 = .data:0x802AD150; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802AD160; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802AD16C; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802AD180; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802AD194; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802AD1A4; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802AD1B0; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802AD1D8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802AD1F0; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802AD204; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802AD220; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802AD250; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802AD264; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802AD280; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802AD2A4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802AD310; // type:label scope:local +@1109 = .data:0x802AD310; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802AD320; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802AD32C; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802AD338; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802AD344; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802AD350; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802AD35C; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802AD370; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802AD384; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802AD394; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802AD3A4; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802AD3B0; // type:object size:0xE scope:local align:4 data:string +@1431 = .data:0x802AD3C0; // type:object size:0xF scope:local align:4 data:string +@1463 = .data:0x802AD3D0; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802AD3DC; // type:object size:0xC scope:local align:4 +@1468 = .data:0x802AD404; // type:object size:0x16 scope:local align:4 data:string +@1471 = .data:0x802AD41C; // type:object size:0x14 scope:local align:4 +@1469 = .data:0x802AD430; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802AD44C; // type:object size:0x30 scope:weak align:4 +@1569 = .data:0x802AD47C; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802AD490; // type:object size:0x1C scope:local align:4 +@1570 = .data:0x802AD4AC; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802AD4D0; // type:object size:0x34 scope:weak align:4 +@1574 = .data:0x802AD538; // type:object size:0x18 scope:local align:4 data:string +@1576 = .data:0x802AD550; // type:object size:0x13 scope:local align:4 data:string +@1575 = .data:0x802AD564; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802AD570; // type:object size:0xC scope:weak align:4 +@1577 = .data:0x802AD57C; // type:object size:0x29 scope:local align:4 data:string +@1578 = .data:0x802AD5A8; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802AD5B4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AD5D0; // type:label scope:local +@1892 = .data:0x802AD5D0; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802AD5E0; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802AD5EC; // type:object size:0xD scope:local align:4 data:string +@2652 = .data:0x802AD5FC; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802AD60C; // type:object size:0x20 scope:local align:4 data:string +@2990 = .data:0x802AD62C; // type:object size:0x48 scope:local align:4 +@3086 = .data:0x802AD674; // type:object size:0x15 scope:local align:4 data:string +@3090 = .data:0x802AD68C; // type:object size:0xB scope:local align:4 data:string +@3094 = .data:0x802AD698; // type:object size:0xC scope:local align:4 data:string +@3116 = .data:0x802AD6A4; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802AD6B0; // type:object size:0x9 scope:local align:4 data:string +@3120 = .data:0x802AD6BC; // type:object size:0xA scope:local align:4 data:string +@3143 = .data:0x802AD6C8; // type:object size:0x9 scope:local align:4 data:string +@3145 = .data:0x802AD6D4; // type:object size:0xD scope:local align:4 data:string +@3164 = .data:0x802AD6E4; // type:object size:0x9 scope:local align:4 data:string +@3171 = .data:0x802AD6F0; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802AD700; // type:object size:0x18 scope:weak align:4 +@3175 = .data:0x802AD718; // type:object size:0xA scope:local align:4 data:string +@3178 = .data:0x802AD724; // type:object size:0x9 scope:local align:4 data:string +@3179 = .data:0x802AD730; // type:object size:0xC scope:local align:4 +@3176 = .data:0x802AD73C; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802AD750; // type:object size:0x10 scope:weak align:4 +@3182 = .data:0x802AD760; // type:object size:0x18 scope:local align:4 data:string +@3185 = .data:0x802AD778; // type:object size:0x14 scope:local align:4 +@3186 = .data:0x802AD78C; // type:object size:0x10 scope:local align:4 data:string +@3187 = .data:0x802AD79C; // type:object size:0x1C scope:local align:4 +@3183 = .data:0x802AD7B8; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802AD7DC; // type:object size:0x34 scope:weak align:4 +@3360 = .data:0x802AD810; // type:object size:0x13 scope:local align:4 data:string +@3363 = .data:0x802AD824; // type:object size:0x1C scope:local align:4 +@3361 = .data:0x802AD840; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802AD864; // type:object size:0x34 scope:weak align:4 +@3365 = .data:0x802AD8CC; // type:object size:0x13 scope:local align:4 data:string +@3366 = .data:0x802AD8E0; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802AD8EC; // type:object size:0x20 scope:global align:4 +@3381 = .data:0x802AD90C; // type:object size:0x11 scope:local align:4 data:string +@3383 = .data:0x802AD920; // type:object size:0xA scope:local align:4 data:string +@3382 = .data:0x802AD92C; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802AD938; // type:object size:0x14 scope:global align:4 +@3394 = .data:0x802AD94C; // type:object size:0x11 scope:local align:4 data:string +@3395 = .data:0x802AD960; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802AD96C; // type:object size:0x14 scope:global align:4 +@3402 = .data:0x802AD980; // type:object size:0x11 scope:local align:4 data:string +@3403 = .data:0x802AD994; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802AD9A0; // type:object size:0x14 scope:global align:4 +@3404 = .data:0x802AD9B4; // type:object size:0x16 scope:local align:4 data:string +@3405 = .data:0x802AD9CC; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802AD9D8; // type:object size:0x14 scope:weak align:4 +__vt__9ModeState = .data:0x802AD9EC; // type:object size:0x14 scope:weak align:4 +@3411 = .data:0x802ADA00; // type:object size:0x13 scope:local align:4 data:string +@3412 = .data:0x802ADA14; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802ADA20; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802ADA34; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802ADA88; // type:label scope:local +@1181 = .data:0x802ADA88; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802ADA98; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802ADAA4; // type:object size:0x13 scope:local align:4 data:string +@1308 = .data:0x802ADAB8; // type:object size:0x9 scope:local align:4 data:string +@1309 = .data:0x802ADAC4; // type:object size:0xC scope:local align:4 +@1313 = .data:0x802ADAEC; // type:object size:0xF scope:local align:4 data:string +@1315 = .data:0x802ADAFC; // type:object size:0xA scope:local align:4 data:string +@1314 = .data:0x802ADB08; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802ADB14; // type:object size:0x14 scope:weak align:4 +@1325 = .data:0x802ADB28; // type:object size:0x12 scope:local align:4 data:string +@1326 = .data:0x802ADB3C; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802ADB48; // type:object size:0x14 scope:weak align:4 +@1334 = .data:0x802ADB70; // type:object size:0x16 scope:local align:4 data:string +@1337 = .data:0x802ADB88; // type:object size:0x14 scope:local align:4 +@1338 = .data:0x802ADB9C; // type:object size:0x10 scope:local align:4 data:string +@1339 = .data:0x802ADBAC; // type:object size:0x1C scope:local align:4 +@1335 = .data:0x802ADBC8; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802ADBEC; // type:object size:0x34 scope:weak align:4 +@1416 = .data:0x802ADC20; // type:object size:0x11 scope:local align:4 data:string +@1419 = .data:0x802ADC34; // type:object size:0x1C scope:local align:4 +@1417 = .data:0x802ADC50; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802ADC74; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802ADCE0; // type:label scope:local +@684 = .data:0x802ADCE0; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802ADCF0; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802ADCFC; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802ADD0C; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802ADD18; // type:object size:0xC scope:local align:4 +@721 = .data:0x802ADD24; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802ADD38; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802ADD54; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802ADD78; // type:object size:0x34 scope:global align:4 +@831 = .data:0x802ADE00; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802ADE18; // type:label scope:local +@810 = .data:0x802ADE18; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802ADE2C; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802ADE3C; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802ADE48; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802ADE5C; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802ADE68; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802ADE74; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802ADE9C; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802ADEAC; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802ADEC0; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802ADECC; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802ADEE8; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802ADEF4; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802ADF18; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802ADF44; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802ADFBC; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802ADFD0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802ADFDC; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802ADFE8; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802ADFF4; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802AE008; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802AE024; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802AE060; // type:label scope:local +@841 = .data:0x802AE060; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802AE0E4; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802AE0F0; // type:object size:0xC scope:local align:4 +@956 = .data:0x802AE0FC; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802AE110; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802AE12C; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802AE1A0; // type:label scope:local +@570 = .data:0x802AE1A0; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802AE1B0; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802AE1BC; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802AE1D0; // type:label scope:local +@677 = .data:0x802AE1D0; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802AE1E0; // type:object size:0x9 scope:local align:4 data:string +@800 = .data:0x802AE1EC; // type:object size:0x12 scope:local align:4 data:string +@801 = .data:0x802AE200; // type:object size:0x9 scope:local align:4 data:string +@803 = .data:0x802AE20C; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802AE218; // type:object size:0x1E scope:local align:4 data:string +@806 = .data:0x802AE238; // type:object size:0xE scope:local align:4 data:string +@809 = .data:0x802AE248; // type:object size:0x14 scope:local align:4 data:string +@860 = .data:0x802AE25C; // type:object size:0xE scope:local align:4 data:string +@866 = .data:0x802AE26C; // type:object size:0x11 scope:local align:4 data:string +@869 = .data:0x802AE280; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802AE28C; // type:object size:0xC scope:local align:4 +@867 = .data:0x802AE298; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802AE2AC; // type:object size:0x58 scope:weak align:4 +@875 = .data:0x802AE304; // type:object size:0x9 scope:local align:4 data:string +@876 = .data:0x802AE310; // type:object size:0xC scope:local align:4 +@878 = .data:0x802AE31C; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802AE330; // type:object size:0x1C scope:local align:4 +@873 = .data:0x802AE34C; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802AE370; // type:object size:0x4C scope:weak align:4 +@892 = .data:0x802AE3BC; // type:object size:0xC scope:local align:4 data:string +@893 = .data:0x802AE3C8; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802AE3F4; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802AE440; // type:label scope:local +@982 = .data:0x802AE440; // type:object size:0xB scope:local align:4 data:string +@1307 = .data:0x802AE44C; // type:object size:0xC scope:local align:4 +@1311 = .data:0x802AE458; // type:object size:0xC scope:local align:4 +@1474 = .data:0x802AE464; // type:object size:0x10 scope:local align:4 data:string +@1475 = .data:0x802AE474; // type:object size:0x9 scope:local align:4 data:string +@1478 = .data:0x802AE480; // type:object size:0xF scope:local align:4 data:string +@1480 = .data:0x802AE490; // type:object size:0xD scope:local align:4 data:string +@1481 = .data:0x802AE4A0; // type:object size:0x14 scope:local align:4 data:string +@1482 = .data:0x802AE4B4; // type:object size:0x14 scope:local align:4 data:string +@1485 = .data:0x802AE4C8; // type:object size:0xB scope:local align:4 data:string +@1486 = .data:0x802AE4D4; // type:object size:0x15 scope:local align:4 data:string +@1492 = .data:0x802AE4EC; // type:object size:0xA scope:local align:4 data:string +@1506 = .data:0x802AE4F8; // type:object size:0x9 scope:local align:4 data:string +@1507 = .data:0x802AE504; // type:object size:0xC scope:local align:4 +@1511 = .data:0x802AE52C; // type:object size:0x18 scope:local align:4 data:string +@1513 = .data:0x802AE544; // type:object size:0x13 scope:local align:4 data:string +@1512 = .data:0x802AE558; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802AE570; // type:object size:0x25 scope:local align:4 data:string +@1515 = .data:0x802AE598; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802AE5A4; // type:object size:0xC scope:weak align:4 +@1516 = .data:0x802AE5BC; // type:object size:0xE scope:local align:4 data:string +@1521 = .data:0x802AE5E4; // type:object size:0x12 scope:local align:4 data:string +@1524 = .data:0x802AE5F8; // type:object size:0x14 scope:local align:4 +@1522 = .data:0x802AE60C; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802AE628; // type:object size:0x30 scope:weak align:4 +@1797 = .data:0x802AE658; // type:object size:0xE scope:local align:4 data:string +@1800 = .data:0x802AE668; // type:object size:0x1C scope:local align:4 +@1798 = .data:0x802AE684; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802AE6A8; // type:object size:0x34 scope:global align:4 +@1801 = .data:0x802AE6DC; // type:object size:0x15 scope:local align:4 data:string +@1802 = .data:0x802AE6F4; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802AE700; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802AE718; // type:label scope:local +@853 = .data:0x802AE718; // type:object size:0xC scope:local align:4 data:string +@940 = .data:0x802AE724; // type:object size:0x11 scope:local align:4 data:string +@942 = .data:0x802AE738; // type:object size:0x10 scope:local align:4 data:string +@943 = .data:0x802AE748; // type:object size:0xD scope:local align:4 data:string +@950 = .data:0x802AE758; // type:object size:0x9 scope:local align:4 data:string +@951 = .data:0x802AE764; // type:object size:0xC scope:local align:4 +@955 = .data:0x802AE78C; // type:object size:0x14 scope:local align:4 data:string +@958 = .data:0x802AE7A0; // type:object size:0x14 scope:local align:4 +@956 = .data:0x802AE7B4; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802AE7D0; // type:object size:0x30 scope:weak align:4 +@1022 = .data:0x802AE800; // type:object size:0xF scope:local align:4 data:string +@1025 = .data:0x802AE810; // type:object size:0x1C scope:local align:4 +@1023 = .data:0x802AE82C; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802AE850; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AE888; // type:label scope:local +@1269 = .data:0x802AE888; // type:object size:0xB scope:local align:4 data:string +@2553 = .data:0x802AE894; // type:object size:0xB scope:local align:4 data:string +@2554 = .data:0x802AE8A0; // type:object size:0x9 scope:local align:4 data:string +@2556 = .data:0x802AE8AC; // type:object size:0xB scope:local align:4 data:string +@2558 = .data:0x802AE8B8; // type:object size:0xA scope:local align:4 data:string +@2559 = .data:0x802AE8C4; // type:object size:0x9 scope:local align:4 data:string +@2560 = .data:0x802AE8D0; // type:object size:0x9 scope:local align:4 data:string +@2885 = .data:0x802AE8DC; // type:object size:0xB scope:local align:4 data:string +@2886 = .data:0x802AE8E8; // type:object size:0xA scope:local align:4 data:string +@2888 = .data:0x802AE8F4; // type:object size:0xC scope:local align:4 data:string +@2889 = .data:0x802AE900; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802AE90C; // type:object size:0xD scope:local align:4 data:string +@2893 = .data:0x802AE91C; // type:object size:0x11 scope:local align:4 data:string +@2907 = .data:0x802AE930; // type:object size:0x9 scope:local align:4 data:string +@2998 = .data:0x802AE93C; // type:object size:0xA scope:local align:4 data:string +@3002 = .data:0x802AE948; // type:object size:0x14 scope:local align:4 data:string +@3038 = .data:0x802AE95C; // type:object size:0xA scope:local align:4 data:string +@4595 = .data:0x802AE968; // type:object size:0xD scope:local align:4 data:string +@4598 = .data:0x802AE978; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x802AE984; // type:object size:0xC scope:local align:4 +@4596 = .data:0x802AE990; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802AE9A4; // type:object size:0x10 scope:weak align:4 +@4602 = .data:0x802AE9B4; // type:object size:0xD scope:local align:4 data:string +@4605 = .data:0x802AE9C4; // type:object size:0x14 scope:local align:4 +@4603 = .data:0x802AE9D8; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802AE9F4; // type:object size:0x30 scope:weak align:4 +@4611 = .data:0x802AEA24; // type:object size:0x12 scope:local align:4 data:string +@4613 = .data:0x802AEA38; // type:object size:0x10 scope:local align:4 data:string +@4612 = .data:0x802AEA48; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802AEA54; // type:object size:0x10 scope:weak align:4 +@4616 = .data:0x802AEA64; // type:object size:0x12 scope:local align:4 data:string +@4617 = .data:0x802AEA78; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802AEA84; // type:object size:0x10 scope:weak align:4 +@4619 = .data:0x802AEA94; // type:object size:0xF scope:local align:4 data:string +@4621 = .data:0x802AEAA4; // type:object size:0xA scope:local align:4 data:string +@4622 = .data:0x802AEAB0; // type:object size:0x1C scope:local align:4 +@4623 = .data:0x802AEACC; // type:object size:0xB scope:local align:4 data:string +@4624 = .data:0x802AEAD8; // type:object size:0x24 scope:local align:4 +@4620 = .data:0x802AEAFC; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802AEB28; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802AEBA0; // type:object size:0x78 scope:global align:4 +@4695 = .data:0x802AEC18; // type:object size:0xD scope:local align:4 data:string +@4696 = .data:0x802AEC28; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802AEC54; // type:object size:0x78 scope:global align:4 +@4697 = .data:0x802AECCC; // type:object size:0xF scope:local align:4 data:string +@4699 = .data:0x802AECDC; // type:object size:0xE scope:local align:4 data:string +@4700 = .data:0x802AECEC; // type:object size:0x1C scope:local align:4 +@4701 = .data:0x802AED08; // type:object size:0xD scope:local align:4 data:string +@4702 = .data:0x802AED18; // type:object size:0x24 scope:local align:4 +@4698 = .data:0x802AED3C; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802AED68; // type:object size:0x48 scope:global align:4 +@4706 = .data:0x802AEDB0; // type:object size:0xD scope:local align:4 data:string +@4707 = .data:0x802AEDC0; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802AEDEC; // type:object size:0x48 scope:global align:4 +@4709 = .data:0x802AEE50; // type:object size:0xE scope:local align:4 data:string +@4710 = .data:0x802AEE60; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802AEE8C; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802AEED4; // type:object size:0x40 scope:weak align:4 +@4718 = .data:0x802AEF14; // type:object size:0xF scope:local align:4 data:string +@4720 = .data:0x802AEF24; // type:object size:0x9 scope:local align:4 data:string +@4719 = .data:0x802AEF30; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802AEF3C; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802AEF54; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802AEFA0; // type:label scope:local +@1229 = .data:0x802AEFA0; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802AEFAC; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802AEFB8; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802AEFC4; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802AEFD0; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802AEFDC; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802AEFE8; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802AEFF4; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802AF000; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802AF00C; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802AF018; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802AF024; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802AF030; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802AF03C; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802AF048; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802AF054; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802AF060; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802AF06C; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802AF078; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802AF084; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802AF090; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802AF09C; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802AF0A8; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802AF0B4; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802AF0C0; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802AF0CC; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802AF0D8; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802AF0E4; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802AF0F0; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802AF0FC; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802AF108; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802AF114; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802AF120; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802AF12C; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802AF13C; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802AF14C; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802AF15C; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802AF168; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802AF174; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802AF180; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802AF18C; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802AF198; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802AF1A4; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802AF1B0; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802AF1BC; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802AF1C8; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802AF1D4; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802AF1E0; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802AF1EC; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802AF1F8; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802AF204; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802AF210; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802AF21C; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802AF228; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802AF234; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802AF240; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802AF24C; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802AF258; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802AF268; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802AF278; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802AF288; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802AF29C; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802AF2AC; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802AF2B8; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802AF2C4; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802AF2D0; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802AF2DC; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802AF2E8; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802AF2F4; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802AF300; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802AF31C; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802AF330; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802AF34C; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802AF368; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802AF374; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802AF380; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802AF38C; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802AF398; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802AF3AC; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802AF3C8; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802AF3D4; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802AF3E0; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802AF3EC; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802AF408; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802AF41C; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802AF428; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802AF434; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802AF440; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802AF44C; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802AF460; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802AF47C; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802AF4A0; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802AF4F4; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802AF500; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802AF524; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802AF578; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802AF584; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802AF5A8; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802AF5FC; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802AF618; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802AF624; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802AF630; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802AF650; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802AF65C; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802AF668; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802AF678; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802AF69C; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802AF6F0; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802AF710; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802AF71C; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802AF728; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802AF740; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802AF758; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802AF764; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802AF788; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802AF7DC; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802AF7FC; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802AF808; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AF820; // type:label scope:local +@1343 = .data:0x802AF820; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802AF830; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802AF83C; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802AF848; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802AF854; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802AF86C; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802AF8A4; // type:object size:0x80 scope:local align:4 +@2515 = .data:0x802AF924; // type:object size:0x13 scope:local align:4 data:string +@2516 = .data:0x802AF938; // type:object size:0x13 scope:local align:4 data:string +@2517 = .data:0x802AF94C; // type:object size:0x13 scope:local align:4 data:string +@2518 = .data:0x802AF960; // type:object size:0x1E scope:local align:4 data:string +@2531 = .data:0x802AF980; // type:object size:0xE scope:local align:4 data:string +@2534 = .data:0x802AF990; // type:object size:0x9 scope:local align:4 data:string +@2535 = .data:0x802AF99C; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802AF9A8; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802AF9BC; // type:object size:0x10 scope:weak align:4 +@2538 = .data:0x802AF9CC; // type:object size:0x9 scope:local align:4 data:string +@2539 = .data:0x802AF9D8; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802AF9EC; // type:object size:0x10 scope:weak align:4 +@2540 = .data:0x802AF9FC; // type:object size:0x10 scope:local align:4 data:string +@2541 = .data:0x802AFA0C; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802AFA20; // type:object size:0x10 scope:weak align:4 +@2542 = .data:0x802AFA30; // type:object size:0xA scope:local align:4 data:string +@2543 = .data:0x802AFA3C; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802AFA50; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AFA80; // type:label scope:local +@571 = .data:0x802AFA80; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802AFA90; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802AFA9C; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802AFAA8; // type:object size:0xC scope:local align:4 +@819 = .data:0x802AFAB4; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802AFAC8; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802AFAE4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AFB40; // type:label scope:local +@1027 = .data:0x802AFB40; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802AFB50; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802AFB5C; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802AFB80; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802AFD80; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802B0180; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802B0380; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802B0780; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802B0980; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802B1580; // type:object size:0x20 scope:local align:4 +@1206 = .data:0x802B15A0; // type:object size:0x9 scope:local align:4 data:string +@1207 = .data:0x802B15AC; // type:object size:0xD scope:local align:4 data:string +@1208 = .data:0x802B15BC; // type:object size:0x10 scope:local align:4 data:string +@1209 = .data:0x802B15CC; // type:object size:0x11 scope:local align:4 data:string +@1210 = .data:0x802B15E0; // type:object size:0x11 scope:local align:4 data:string +@1211 = .data:0x802B15F4; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802B160C; // type:object size:0xE scope:local align:4 data:string +@1213 = .data:0x802B161C; // type:object size:0xD scope:local align:4 data:string +@1214 = .data:0x802B162C; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802B1640; // type:object size:0x24 scope:local align:4 +@1497 = .data:0x802B1664; // type:object size:0x9 scope:local align:4 +@1498 = .data:0x802B1670; // type:object size:0x9 scope:local align:4 +@1577 = .data:0x802B167C; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802B1688; // type:object size:0x14 scope:local align:4 data:string +@2021 = .data:0x802B169C; // type:object size:0xA scope:local align:4 data:string +@2022 = .data:0x802B16A8; // type:object size:0xA scope:local align:4 data:string +@2023 = .data:0x802B16B4; // type:object size:0xB scope:local align:4 data:string +@2024 = .data:0x802B16C0; // type:object size:0xB scope:local align:4 data:string +@2025 = .data:0x802B16CC; // type:object size:0xB scope:local align:4 data:string +@2026 = .data:0x802B16D8; // type:object size:0xB scope:local align:4 data:string +sectionNames$2019 = .data:0x802B16E4; // type:object size:0x1C scope:local align:4 +@2253 = .data:0x802B1700; // type:object size:0x9 scope:local align:4 data:string +@2254 = .data:0x802B170C; // type:object size:0xC scope:local align:4 +@2258 = .data:0x802B1734; // type:object size:0xA scope:local align:4 data:string +@2261 = .data:0x802B1740; // type:object size:0x13 scope:local align:4 data:string +@2262 = .data:0x802B1754; // type:object size:0xC scope:local align:4 +@2259 = .data:0x802B1760; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802B1840; // type:label scope:local +@1345 = .data:0x802B1840; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802B1850; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802B185C; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802B1870; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802B1884; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802B1898; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802B18AC; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802B18C0; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802B18D4; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802B18E8; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802B18FC; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802B1910; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802B1924; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802B1938; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802B194C; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802B1960; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802B1974; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802B1988; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802B199C; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802B19B0; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802B19C4; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802B19D8; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802B19EC; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802B1A00; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802B1A14; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802B1A28; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802B1A3C; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802B1A50; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802B1A64; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802B1A78; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802B1A8C; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802B1AA0; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802B1AB4; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802B1AC8; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802B1ADC; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802B1AF0; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802B1B04; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802B1B18; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802B1B2C; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802B1B40; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802B1B54; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802B1B68; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802B1B7C; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802B1B90; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802B1BA4; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802B1BB8; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802B1BCC; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802B1BE0; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802B1BF4; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802B1C08; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802B1C1C; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802B1C30; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802B1C44; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802B1C58; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802B1C6C; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802B1C80; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802B1C94; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802B1CA8; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802B1CBC; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802B1CD0; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802B1CE4; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802B1CF8; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802B1D0C; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802B1D20; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802B1D34; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B1D48; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B1D5C; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802B1D70; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802B1D84; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802B1D98; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802B1DAC; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802B1DC0; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802B1DD4; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802B1DE8; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802B1DFC; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802B1E10; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802B1E24; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802B1E38; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802B1E4C; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802B1E60; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802B1E74; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802B1E88; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802B1E9C; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802B1EB0; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802B1EC4; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802B1ED8; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802B1EEC; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802B1F00; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802B1F14; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802B21CC; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802B21D8; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802B21E4; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802B21F0; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802B2204; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802B2218; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802B222C; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802B2240; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802B2254; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802B2268; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802B227C; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802B2290; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802B22A4; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802B22B8; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802B22CC; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802B22E0; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802B22F4; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802B2308; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802B231C; // type:object size:0x90 scope:local align:4 data:4byte +@1671 = .data:0x802B23AC; // type:object size:0x30 scope:local align:4 data:string +@1833 = .data:0x802B23DC; // type:object size:0xA scope:local align:4 data:string +@1836 = .data:0x802B23E8; // type:object size:0x9 scope:local align:4 data:string +@1837 = .data:0x802B23F4; // type:object size:0xC scope:local align:4 +@1834 = .data:0x802B2400; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802B2414; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B2440; // type:label scope:local +@685 = .data:0x802B2440; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802B2450; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802B245C; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802B2474; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802B248C; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802B24A4; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802B24BC; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802B24D4; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802B24EC; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802B2504; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802B2518; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802B252C; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802B253C; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802B2548; // type:object size:0xC scope:local align:4 +@872 = .data:0x802B2570; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802B2588; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802B259C; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802B25B8; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802B25E8; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802B25FC; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802B2618; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802B263C; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802B2670; // type:label scope:local +@1227 = .data:0x802B2670; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802B267C; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802B268C; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802B2698; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802B26B0; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802B26BC; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802B26DC; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802B26E8; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802B26F4; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802B2714; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802B2724; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802B2730; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802B2750; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802B2770; // type:label scope:local +@625 = .data:0x802B2770; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802B2780; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802B278C; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802B2798; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802B27B0; // type:object size:0xC scope:local align:4 +@700 = .data:0x802B27BC; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802B27D0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B2800; // type:label scope:local +@1578 = .data:0x802B2800; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802B2814; // type:object size:0xF scope:local align:4 data:string +@1855 = .data:0x802B2824; // type:object size:0x1B scope:local align:4 data:string +@1857 = .data:0x802B2840; // type:object size:0x19 scope:local align:4 data:string +@2080 = .data:0x802B285C; // type:object size:0xE scope:local align:4 data:string +@2082 = .data:0x802B286C; // type:object size:0xC scope:local align:4 data:string +@2081 = .data:0x802B2878; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802B2884; // type:object size:0x2C scope:global align:4 +@2091 = .data:0x802B28B0; // type:object size:0xE scope:local align:4 data:string +@2092 = .data:0x802B28C0; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802B28CC; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802B28F8; // type:object size:0xD scope:local align:4 data:string +@2094 = .data:0x802B2908; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802B2914; // type:object size:0x2C scope:global align:4 +@2096 = .data:0x802B2940; // type:object size:0x10 scope:local align:4 data:string +@2097 = .data:0x802B2950; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802B295C; // type:object size:0x2C scope:global align:4 +@2098 = .data:0x802B2988; // type:object size:0xF scope:local align:4 data:string +@2099 = .data:0x802B2998; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802B29A4; // type:object size:0x2C scope:global align:4 +@2100 = .data:0x802B29D0; // type:object size:0x14 scope:local align:4 data:string +@2101 = .data:0x802B29E4; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802B29F0; // type:object size:0x2C scope:global align:4 +@2102 = .data:0x802B2A1C; // type:object size:0xE scope:local align:4 data:string +@2103 = .data:0x802B2A2C; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802B2A38; // type:object size:0x2C scope:global align:4 +@2104 = .data:0x802B2A64; // type:object size:0xD scope:local align:4 data:string +@2105 = .data:0x802B2A74; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802B2A80; // type:object size:0x2C scope:global align:4 +@2106 = .data:0x802B2AAC; // type:object size:0xD scope:local align:4 data:string +@2107 = .data:0x802B2ABC; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802B2AC8; // type:object size:0x2C scope:global align:4 +@2108 = .data:0x802B2AF4; // type:object size:0xF scope:local align:4 data:string +@2109 = .data:0x802B2B04; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802B2B10; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802B2B3C; // type:object size:0x2C scope:weak align:4 +@2110 = .data:0x802B2B68; // type:object size:0xE scope:local align:4 data:string +@2111 = .data:0x802B2B78; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802B2B84; // type:object size:0x2C scope:global align:4 +@2112 = .data:0x802B2BB0; // type:object size:0x14 scope:local align:4 data:string +@2113 = .data:0x802B2BC4; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802B2BD0; // type:object size:0x2C scope:global align:4 +@2114 = .data:0x802B2BFC; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802B2C10; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802B2C1C; // type:object size:0x2C scope:global align:4 +@2116 = .data:0x802B2C48; // type:object size:0x12 scope:local align:4 data:string +@2117 = .data:0x802B2C5C; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802B2C68; // type:object size:0x2C scope:global align:4 +@2118 = .data:0x802B2C94; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802B2CA4; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802B2CB0; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2CE0; // type:label scope:local +@625 = .data:0x802B2CE0; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B2CF4; // type:object size:0xD scope:local align:4 data:string +@642 = .data:0x802B2D04; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802B2D1C; // type:object size:0x10 scope:local align:4 data:string +@680 = .data:0x802B2D2C; // type:object size:0xC scope:local align:4 data:string +@679 = .data:0x802B2D38; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802B2D44; // type:object size:0x2C scope:global align:4 +@689 = .data:0x802B2D70; // type:object size:0xD scope:local align:4 data:string +@690 = .data:0x802B2D80; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802B2D8C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2DB8; // type:label scope:local +@1133 = .data:0x802B2DB8; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802B2DC8; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802B2DD4; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802B2DE4; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802B2DF0; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802B2DFC; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802B2E28; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802B2E38; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802B2E44; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2E70; // type:label scope:local +@1358 = .data:0x802B2E70; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B2E84; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802B2E94; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802B2EA4; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802B2EB0; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802B2EBC; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802B2EE8; // type:label scope:local +@716 = .data:0x802B2EE8; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802B2EF8; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802B2F04; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802B2F14; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802B2F2C; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802B2F38; // type:object size:0xC scope:local align:4 +@790 = .data:0x802B2F44; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802B2F58; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802B2F90; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802B2FA0; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802B2FB4; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802B2FEC; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802B2FFC; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802B3010; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802B3048; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802B3058; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802B306C; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802B30A4; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802B30BC; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802B30D0; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802B3108; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802B3120; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802B3134; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802B316C; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802B3184; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802B3198; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802B31D0; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802B31E4; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802B31F8; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802B3230; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802B3268; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802B32A0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B32D0; // type:label scope:local +@868 = .data:0x802B32D0; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802B32E0; // type:object size:0x9 scope:local align:4 data:string +@936 = .data:0x802B32EC; // type:object size:0x10 scope:local align:4 data:string +@939 = .data:0x802B32FC; // type:object size:0x14 scope:local align:4 data:string +@943 = .data:0x802B3310; // type:object size:0x11 scope:local align:4 data:string +@993 = .data:0x802B3324; // type:object size:0x9 scope:local align:4 data:string +@994 = .data:0x802B3330; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802B333C; // type:object size:0xD scope:local align:4 data:string +@1073 = .data:0x802B334C; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802B335C; // type:object size:0xA scope:local align:4 data:string +@1138 = .data:0x802B3368; // type:object size:0x2C scope:local align:4 +@1154 = .data:0x802B3394; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802B33A0; // type:object size:0x15 scope:local align:4 data:string +@1157 = .data:0x802B33B8; // type:object size:0x13 scope:local align:4 data:string +@1158 = .data:0x802B33CC; // type:object size:0xC scope:local align:4 +@1155 = .data:0x802B33D8; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802B33EC; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802B343C; // type:object size:0x50 scope:weak align:4 +@1159 = .data:0x802B34C4; // type:object size:0xD scope:local align:4 data:string +@1162 = .data:0x802B34D4; // type:object size:0xC scope:local align:4 +@1160 = .data:0x802B34E0; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802B34F4; // type:object size:0x14 scope:weak align:4 +@1165 = .data:0x802B3508; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802B351C; // type:object size:0x10 scope:weak align:4 +@1166 = .data:0x802B3548; // type:object size:0x9 scope:local align:4 data:string +@1168 = .data:0x802B3554; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802B3570; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802B357C; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802B3594; // type:object size:0x18 scope:weak align:4 +@1169 = .data:0x802B35AC; // type:object size:0xB scope:local align:4 data:string +@1171 = .data:0x802B35B8; // type:object size:0x14 scope:local align:4 data:string +@1172 = .data:0x802B35CC; // type:object size:0xC scope:local align:4 data:string +@1173 = .data:0x802B35D8; // type:object size:0xD scope:local align:4 data:string +@1174 = .data:0x802B35E8; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B35F4; // type:object size:0x14 scope:local align:4 +@1170 = .data:0x802B3608; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802B362C; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802B3784; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B3790; // type:label scope:local +@1064 = .data:0x802B3790; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802B37A4; // type:object size:0xA scope:local align:4 data:string +@1224 = .data:0x802B37B0; // type:object size:0x2E scope:local align:4 data:string +@2865 = .data:0x802B37E0; // type:object size:0xD scope:local align:4 data:string +@2867 = .data:0x802B37F0; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802B3800; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802B380C; // type:object size:0x10 scope:global align:4 +@2868 = .data:0x802B381C; // type:object size:0xD scope:local align:4 data:string +@2869 = .data:0x802B382C; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802B3838; // type:object size:0x10 scope:global align:4 +@2870 = .data:0x802B3848; // type:object size:0x10 scope:local align:4 data:string +@2871 = .data:0x802B3858; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802B3864; // type:object size:0x10 scope:global align:4 +@2872 = .data:0x802B3874; // type:object size:0xF scope:local align:4 data:string +@2873 = .data:0x802B3884; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802B3890; // type:object size:0x10 scope:global align:4 +@2874 = .data:0x802B38A0; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802B38AC; // type:object size:0x18 scope:weak align:4 +@2875 = .data:0x802B38C4; // type:object size:0xD scope:local align:4 data:string +@2876 = .data:0x802B38D4; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802B38E0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802B38F8; // type:label scope:local +@676 = .data:0x802B38F8; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802B390C; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802B3918; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802B3934; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802B3950; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802B3968; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802B3980; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802B3998; // type:label scope:local +@1581 = .data:0x802B3998; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802B39A8; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802B39B4; // type:object size:0x28 scope:global align:4 +@1618 = .data:0x802B39DC; // type:object size:0x15 scope:local align:4 data:string +@1861 = .data:0x802B39F4; // type:object size:0xA scope:local align:4 data:string +@1866 = .data:0x802B3A00; // type:object size:0x14 scope:local align:4 data:string +@2026 = .data:0x802B3A14; // type:object size:0x13 scope:local align:4 +@2618 = .data:0x802B3A28; // type:object size:0x16 scope:local align:4 data:string +@2620 = .data:0x802B3A40; // type:object size:0x14 scope:local align:4 data:string +@2619 = .data:0x802B3A54; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802B3A60; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802B3A78; // type:label scope:local +@1085 = .data:0x802B3A78; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802B3A88; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802B3A94; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802B3AA0; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802B3AB8; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802B3AD0; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802B3AE8; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802B3AFC; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802B3B0C; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802B3B1C; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802B3B2C; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802B3B44; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802B3B50; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802B3B70; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802B3B84; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802B3B98; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802B3BB0; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802B3BC4; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802B3BD4; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802B3BE4; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802B3BFC; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802B3C14; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802B3C24; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802B3C34; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802B3C48; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802B3C64; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802B3C7C; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802B3C94; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802B3CB0; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802B3CC8; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802B3CD8; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802B3CE8; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802B3CF4; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802B3D04; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802B3D10; // type:object size:0xA scope:local align:4 data:string +@1299 = .data:0x802B3D1C; // type:object size:0x11 scope:local align:4 +@1300 = .data:0x802B3D30; // type:object size:0x9 scope:local align:4 +@1357 = .data:0x802B3D3C; // type:object size:0xC scope:local align:4 data:string +@1359 = .data:0x802B3D48; // type:object size:0x9 scope:local align:4 data:string +@1358 = .data:0x802B3D54; // type:object size:0xC scope:local align:4 +@1360 = .data:0x802B3D74; // type:object size:0xA scope:local align:4 data:string +@1363 = .data:0x802B3D80; // type:object size:0x9 scope:local align:4 data:string +@1364 = .data:0x802B3D8C; // type:object size:0xC scope:local align:4 +@1366 = .data:0x802B3D98; // type:object size:0x14 scope:local align:4 +@1361 = .data:0x802B3DAC; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802B3DC8; // type:object size:0x30 scope:weak align:4 +@1478 = .data:0x802B3E18; // type:object size:0x10 scope:local align:4 data:string +@1762 = .data:0x802B3E28; // type:object size:0x20 scope:local align:4 data:string +@1711 = .data:0x802B3E48; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802B3E64; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802B3E88; // type:label scope:local +@903 = .data:0x802B3E88; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802B3E98; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802B3EA4; // type:object size:0x4C0 scope:global align:4 data:4byte +@1064 = .data:0x802B4364; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x802B4378; // type:label scope:local +@461 = .data:0x802B4378; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802B4388; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802B4394; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802B43A0; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802B43AC; // type:object size:0xC scope:local align:4 +@658 = .data:0x802B43CC; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802B43D8; // type:object size:0xC scope:local align:4 +@660 = .data:0x802B43F8; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802B4404; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802B4410; // type:object size:0xC scope:local align:4 +@666 = .data:0x802B441C; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802B4430; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802B444C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B4498; // type:label scope:local +@388 = .data:0x802B4498; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802B44A8; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802B44B4; // type:object size:0xD scope:local align:4 +@445 = .data:0x802B44C4; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802B44D0; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802B44DC; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802B44EC; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802B44F8; // type:object size:0xC scope:local align:4 +@463 = .data:0x802B4504; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802B4518; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802B4534; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802B4564; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802B4570; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802B458C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B45D8; // type:label scope:local +@1533 = .data:0x802B45D8; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802B45E4; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802B45F0; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802B45FC; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802B4608; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802B4614; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802B4620; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802B462C; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802B4638; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802B4644; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802B4650; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802B465C; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802B4668; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802B4674; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802B4680; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802B468C; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802B4698; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802B46A4; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802B46B0; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802B46BC; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802B46C8; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802B46D4; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802B46E0; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802B46EC; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802B46F8; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802B4704; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802B4714; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802B4728; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802B473C; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802B4750; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B4760; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802B4770; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802B4784; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802B4798; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802B47AC; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802B47C0; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802B47D4; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802B47E4; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802B47F0; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802B47FC; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802B4808; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802B4814; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802B4820; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802B482C; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802B4838; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802B4844; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802B4850; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802B4860; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802B4870; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802B4880; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802B4890; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802B48A0; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802B48B4; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802B48C4; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802B48D4; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802B48E8; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802B48F8; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802B4908; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802B4918; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802B492C; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802B493C; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802B4950; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802B4960; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802B4970; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802B4980; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802B49F8; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802B4A08; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802B4A18; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802B4A30; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802B4A68; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802B4A84; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802B4A98; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802B4AA4; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802B4AB0; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802B4AC8; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4AF0; // type:label scope:local +@731 = .data:0x802B4AF0; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802B4B00; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802B4B0C; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802B4B18; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802B4B28; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802B4B38; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802B4B44; // type:object size:0xC scope:local align:4 +@826 = .data:0x802B4B50; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802B4B5C; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802B4B70; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802B4B8C; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802B4BC4; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802B4BD0; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802B4BDC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B4C00; // type:label scope:local +@388 = .data:0x802B4C00; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802B4C0C; // type:object size:0x9 scope:local align:4 data:string +@430 = .data:0x802B4C18; // type:object size:0x9 scope:local align:4 data:string +@552 = .data:0x802B4C24; // type:object size:0x9 scope:local align:4 data:string +@553 = .data:0x802B4C30; // type:object size:0xC scope:local align:4 +@554 = .data:0x802B4C3C; // type:object size:0xC scope:local align:4 data:string +@555 = .data:0x802B4C48; // type:object size:0x14 scope:local align:4 +@550 = .data:0x802B4C5C; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802B4C78; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802B4C88; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B4CB8; // type:label scope:local +@625 = .data:0x802B4CB8; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802B4CC8; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B4CD4; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802B4CE0; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802B4CEC; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802B4CF8; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802B4D04; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802B4D10; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802B4D1C; // type:object size:0x1C scope:local align:4 +@1855 = .data:0x802B4D38; // type:object size:0xE scope:local align:4 data:string +@2391 = .data:0x802B4D48; // type:object size:0x13 scope:local align:4 data:string +@2392 = .data:0x802B4D5C; // type:object size:0xE scope:local align:4 data:string +@2421 = .data:0x802B4D6C; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B4D80; // type:label scope:local +@1470 = .data:0x802B4D80; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802B4D90; // type:object size:0x9 scope:local align:4 data:string +@2117 = .data:0x802B4D9C; // type:object size:0xD scope:local align:4 data:string +@3293 = .data:0x802B4DAC; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802B4DB8; // type:object size:0xC scope:weak align:4 +@3295 = .data:0x802B4DC4; // type:object size:0xC scope:local align:4 data:string +@3296 = .data:0x802B4DD0; // type:object size:0xD scope:local align:4 data:string +@3294 = .data:0x802B4DE0; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802B4DF4; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B4F08; // type:label scope:local +@655 = .data:0x802B4F08; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802B4F20; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802B4F34; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802B4F48; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802B4F54; // type:object size:0xC scope:local align:4 +@753 = .data:0x802B4F60; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802B4F74; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802B4F84; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802B4FA0; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802B4FB0; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802B4FD4; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802B5000; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802B5048; // type:label scope:local +@1007 = .data:0x802B5048; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802B505C; // type:object size:0xE scope:local align:4 data:string +@1270 = .data:0x802B506C; // type:object size:0x12 scope:local align:4 data:string +@1271 = .data:0x802B5080; // type:object size:0xD scope:local align:4 data:string +@1495 = .data:0x802B5090; // type:object size:0xD scope:local align:4 data:string +@1504 = .data:0x802B50A0; // type:object size:0x16 scope:local align:4 data:string +@1785 = .data:0x802B50B8; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802B50C4; // type:object size:0x10 scope:global align:4 +@2012 = .data:0x802B50D4; // type:object size:0x1E scope:local align:4 data:string +@2013 = .data:0x802B50F4; // type:object size:0xB scope:local align:4 data:string +@2169 = .data:0x802B5100; // type:object size:0x1E scope:local align:4 data:string +@2454 = .data:0x802B5120; // type:object size:0x11 scope:local align:4 data:string +@2455 = .data:0x802B5134; // type:object size:0xE scope:local align:4 data:string +@2456 = .data:0x802B5144; // type:object size:0x10 scope:local align:4 data:string +@2457 = .data:0x802B5154; // type:object size:0x9 scope:local align:4 data:string +@2459 = .data:0x802B5160; // type:object size:0xC scope:local align:4 data:string +@2458 = .data:0x802B516C; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802B5178; // type:object size:0x18 scope:global align:4 +@2460 = .data:0x802B51A8; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802B51E0; // type:label scope:local +@939 = .data:0x802B51E0; // type:object size:0x11 scope:local align:4 data:string +@1337 = .data:0x802B51F4; // type:object size:0xC scope:local align:4 data:string +@1339 = .data:0x802B5200; // type:object size:0xC scope:local align:4 data:string +@1340 = .data:0x802B520C; // type:object size:0xD scope:local align:4 data:string +@1341 = .data:0x802B521C; // type:object size:0x9 scope:local align:4 data:string +@1342 = .data:0x802B5228; // type:object size:0x14 scope:local align:4 +@1343 = .data:0x802B523C; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B5248; // type:object size:0x1C scope:local align:4 +@1345 = .data:0x802B5264; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802B5274; // type:object size:0x24 scope:local align:4 +@1338 = .data:0x802B5298; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802B52C4; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802B53E4; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802B5508; // type:label scope:local +@863 = .data:0x802B5508; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802B5518; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802B5524; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802B5530; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802B5540; // type:object size:0xD scope:local align:4 data:string +@1900 = .data:0x802B5550; // type:object size:0xC scope:local align:4 data:string +@1902 = .data:0x802B555C; // type:object size:0xC scope:local align:4 data:string +@1903 = .data:0x802B5568; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802B5578; // type:object size:0x9 scope:local align:4 data:string +@1905 = .data:0x802B5584; // type:object size:0x14 scope:local align:4 +@1901 = .data:0x802B5598; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802B55B4; // type:object size:0x114 scope:global align:4 +@1956 = .data:0x802B56C8; // type:object size:0xC scope:local align:4 data:string +@1958 = .data:0x802B56D4; // type:object size:0x9 scope:local align:4 data:string +@1957 = .data:0x802B56E0; // type:object size:0xC scope:local align:4 +@1959 = .data:0x802B5700; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802B5710; // type:object size:0xC scope:weak align:4 +@1961 = .data:0x802B571C; // type:object size:0xC scope:local align:4 data:string +@1964 = .data:0x802B5728; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802B5734; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802B5748; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B5788; // type:label scope:local +@389 = .data:0x802B5788; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802B579C; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802B57AC; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802B57B8; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802B57C8; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802B57D8; // type:object size:0xC scope:local align:4 +@421 = .data:0x802B57E4; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802B57F8; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802B5828; // type:label scope:local +@625 = .data:0x802B5828; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B583C; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802B584C; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802B585C; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802B5868; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802B5878; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802B5884; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802B5898; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802B58B4; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B59C8; // type:label scope:local +@396 = .data:0x802B59C8; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802B59D4; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802B59E4; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802B59F0; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802B59FC; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802B5A0C; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802B5A18; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802B5A24; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802B5A30; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802B5A40; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802B5A4C; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802B5A60; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802B5A74; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802B5A80; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802B5A8C; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802B5A98; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802B5AA4; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802B5AB0; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802B5ABC; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802B5ACC; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802B5AD8; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802B5AE4; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802B5AF0; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802B5AFC; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802B5B0C; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802B5B18; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802B5B24; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802B5CDC; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B5CF0; // type:label scope:local +@1331 = .data:0x802B5CF0; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802B5D00; // type:object size:0x7C scope:local align:4 data:4byte +@1359 = .data:0x802B5D7C; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802B5D88; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B5D94; // type:object size:0xD scope:local align:4 data:string +@1871 = .data:0x802B5DA4; // type:object size:0x9 scope:local align:4 data:string +@1872 = .data:0x802B5DB0; // type:object size:0x11 scope:local align:4 data:string +@1873 = .data:0x802B5DC4; // type:object size:0x13 scope:local align:4 data:string +@2124 = .data:0x802B5DD8; // type:object size:0xF scope:local align:4 data:string +@2314 = .data:0x802B5DE8; // type:object size:0x10 scope:local align:4 data:string +bounceSounds = .data:0x802B5DF8; // type:object size:0x30 scope:local align:4 +numberPellets = .data:0x802B5E28; // type:object size:0x9C scope:global align:4 data:4byte +@3087 = .data:0x802B5EC4; // type:object size:0xB scope:local align:4 data:string +@3124 = .data:0x802B5ED0; // type:object size:0x9 scope:local align:4 data:string +@3125 = .data:0x802B5EDC; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802B5EE8; // type:object size:0x13 scope:local align:4 data:string +@3263 = .data:0x802B5EFC; // type:object size:0x23 scope:local align:4 data:string +@3403 = .data:0x802B5F20; // type:object size:0xA scope:local align:4 data:string +@3406 = .data:0x802B5F2C; // type:object size:0xC scope:local align:4 +@3408 = .data:0x802B5F38; // type:object size:0x14 scope:local align:4 +@3409 = .data:0x802B5F4C; // type:object size:0xC scope:local align:4 data:string +@3410 = .data:0x802B5F58; // type:object size:0xA scope:local align:4 data:string +@3411 = .data:0x802B5F64; // type:object size:0x24 scope:local align:4 +@3412 = .data:0x802B5F88; // type:object size:0xE scope:local align:4 data:string +@3413 = .data:0x802B5F98; // type:object size:0x2C scope:local align:4 +@3404 = .data:0x802B5FC4; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B5FF8; // type:object size:0x88 scope:global align:4 +@3429 = .data:0x802B6080; // type:object size:0xB scope:local align:4 data:string +@3431 = .data:0x802B608C; // type:object size:0xD scope:local align:4 data:string +@3430 = .data:0x802B609C; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B60A8; // type:object size:0xC scope:weak align:4 +@3433 = .data:0x802B60C0; // type:object size:0x13 scope:local align:4 data:string +@3434 = .data:0x802B60D4; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B60E8; // type:object size:0x10 scope:weak align:4 +@3436 = .data:0x802B60F8; // type:object size:0xC scope:local align:4 data:string +@3446 = .data:0x802B6130; // type:object size:0x14 scope:local align:4 data:string +@3447 = .data:0x802B6144; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802B6150; // type:object size:0xD scope:local align:4 data:string +@3449 = .data:0x802B6160; // type:object size:0x9 scope:local align:4 data:string +@3450 = .data:0x802B616C; // type:object size:0x14 scope:local align:4 +@3451 = .data:0x802B6180; // type:object size:0xC scope:local align:4 data:string +@3452 = .data:0x802B618C; // type:object size:0x1C scope:local align:4 +@3453 = .data:0x802B61A8; // type:object size:0xD scope:local align:4 data:string +@3454 = .data:0x802B61B8; // type:object size:0x24 scope:local align:4 +@3445 = .data:0x802B61DC; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B6210; // type:object size:0x130 scope:global align:4 +@3488 = .data:0x802B6340; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B6358; // type:object size:0x18 scope:weak align:4 +@3491 = .data:0x802B6370; // type:object size:0x23 scope:local align:4 data:string +@3492 = .data:0x802B6394; // type:object size:0x3D scope:local align:4 data:string +@3493 = .data:0x802B63D4; // type:object size:0x29 scope:local align:4 data:string +@3490 = .data:0x802B6400; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B641C; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B6458; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B6464; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B6470; // type:object size:0xC scope:weak align:4 +@3500 = .data:0x802B6488; // type:object size:0xD scope:local align:4 data:string +@3502 = .data:0x802B6498; // type:object size:0xB scope:local align:4 data:string +@3501 = .data:0x802B64A4; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B64C0; // type:object size:0x1C scope:global align:4 +@3503 = .data:0x802B64DC; // type:object size:0xC scope:local align:4 data:string +@3505 = .data:0x802B64E8; // type:object size:0x9 scope:local align:4 data:string +@3504 = .data:0x802B64F4; // type:object size:0xC scope:local align:4 +@3506 = .data:0x802B6514; // type:object size:0xA scope:local align:4 data:string +@3507 = .data:0x802B6520; // type:object size:0xC scope:local align:4 +@3508 = .data:0x802B6540; // type:object size:0xD scope:local align:4 data:string +@3509 = .data:0x802B6550; // type:object size:0xC scope:local align:4 +@3544 = .data:0x802B658C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B65B8; // type:label scope:local +@1008 = .data:0x802B65B8; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B65C8; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B65D4; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B65E0; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B65F0; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B6604; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B6614; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B6630; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B6644; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B6650; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B6660; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B666C; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B6680; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B669C; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B66AC; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B66B8; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B66C4; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B66E0; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B66FC; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B670C; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B6718; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B6758; // type:label scope:local +@1040 = .data:0x802B6758; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B6768; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B6774; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B6780; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B6790; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B67A0; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B67AC; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B67B8; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B67C4; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B67D8; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B67F4; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B6830; // type:label scope:local +@1325 = .data:0x802B6830; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B6840; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B684C; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B6858; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B6868; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B687C; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B688C; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B6898; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B68A4; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B68B8; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B68D4; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B6924; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B6938; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B6954; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B69A4; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B69BC; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B69D8; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B6A28; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B6A3C; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B6A58; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B6AA8; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B6AB8; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B6AD4; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B6B24; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B6B38; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B6B54; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B6BA4; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B6BF4; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B6C44; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B6C7C; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B6C90; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B6CA8; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B6CB4; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B6CCC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B6CF8; // type:label scope:local +@1312 = .data:0x802B6CF8; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B6D08; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B6D14; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B6D28; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B6D3C; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B6D50; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B6D5C; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B6D68; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B6D80; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B6D8C; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B6D98; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B6DA8; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B6DB4; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B6DC0; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B6DF0; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B6E0C; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B6E28; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B6E44; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B6E64; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B6E80; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B6E94; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802B6EA0; // type:object size:0x9 scope:local align:4 data:string +@1558 = .data:0x802B6EAC; // type:object size:0xC scope:local align:4 data:string +@1559 = .data:0x802B6EB8; // type:object size:0x11 scope:local align:4 +@1615 = .data:0x802B6ECC; // type:object size:0x17 scope:local align:4 +@1645 = .data:0x802B6EE4; // type:object size:0x9 scope:local align:4 data:string +@2036 = .data:0x802B6EF0; // type:object size:0x15 scope:local align:4 data:string +@2423 = .data:0x802B6F08; // type:object size:0x10 scope:local align:4 data:string +@2574 = .data:0x802B6F18; // type:object size:0x13 scope:local align:4 data:string +@2994 = .data:0x802B6F2C; // type:object size:0xE scope:local align:4 data:string +@2996 = .data:0x802B6F3C; // type:object size:0xC scope:local align:4 data:string +@2995 = .data:0x802B6F48; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B6F54; // type:object size:0x2C scope:global align:4 +@3003 = .data:0x802B6F80; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802B6F90; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B6F9C; // type:object size:0x2C scope:global align:4 +@3007 = .data:0x802B6FC8; // type:object size:0x14 scope:local align:4 data:string +@3008 = .data:0x802B6FDC; // type:object size:0xC scope:local align:4 data:string +@3009 = .data:0x802B6FE8; // type:object size:0xD scope:local align:4 data:string +@3010 = .data:0x802B6FF8; // type:object size:0x9 scope:local align:4 data:string +@3011 = .data:0x802B7004; // type:object size:0x14 scope:local align:4 +@3012 = .data:0x802B7018; // type:object size:0xB scope:local align:4 data:string +@3013 = .data:0x802B7024; // type:object size:0x24 scope:local align:4 +@3014 = .data:0x802B7048; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802B7058; // type:object size:0x2C scope:local align:4 +@3016 = .data:0x802B7084; // type:object size:0xB scope:local align:4 data:string +@3017 = .data:0x802B7090; // type:object size:0x34 scope:local align:4 +@3006 = .data:0x802B70C4; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B7100; // type:object size:0x16C scope:global align:4 +@3067 = .data:0x802B726C; // type:object size:0xD scope:local align:4 data:string +@3068 = .data:0x802B727C; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802B7288; // type:object size:0x2C scope:global align:4 +@3069 = .data:0x802B72B4; // type:object size:0xB scope:local align:4 data:string +@3070 = .data:0x802B72C0; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802B72FC; // type:object size:0x16C scope:global align:4 +@3075 = .data:0x802B7468; // type:object size:0xE scope:local align:4 data:string +@3078 = .data:0x802B7478; // type:object size:0xC scope:local align:4 +@3080 = .data:0x802B7484; // type:object size:0x14 scope:local align:4 +@3076 = .data:0x802B7498; // type:object size:0x1C scope:local align:4 +@3092 = .data:0x802B74F4; // type:object size:0xE scope:local align:4 data:string +@3094 = .data:0x802B7504; // type:object size:0xD scope:local align:4 data:string +@3095 = .data:0x802B7514; // type:object size:0x24 scope:local align:4 +@3093 = .data:0x802B7538; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802B7564; // type:object size:0x48 scope:weak align:4 +@3099 = .data:0x802B75AC; // type:object size:0x14 scope:local align:4 data:string +@3101 = .data:0x802B75C0; // type:object size:0xB scope:local align:4 data:string +@3103 = .data:0x802B75CC; // type:object size:0xC scope:local align:4 +@3104 = .data:0x802B75D8; // type:object size:0xA scope:local align:4 data:string +@3105 = .data:0x802B75E4; // type:object size:0x14 scope:local align:4 +@3100 = .data:0x802B75F8; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802B7614; // type:object size:0x38 scope:global align:4 +@3111 = .data:0x802B764C; // type:object size:0xC scope:local align:4 data:string +@3113 = .data:0x802B7658; // type:object size:0x9 scope:local align:4 data:string +@3112 = .data:0x802B7664; // type:object size:0xC scope:local align:4 +@3114 = .data:0x802B7684; // type:object size:0xA scope:local align:4 data:string +@3115 = .data:0x802B7690; // type:object size:0xC scope:local align:4 +@3116 = .data:0x802B76B0; // type:object size:0xE scope:local align:4 data:string +@3118 = .data:0x802B76C0; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802B76CC; // type:object size:0xA scope:local align:4 data:string +@3120 = .data:0x802B76D8; // type:object size:0x24 scope:local align:4 +@3117 = .data:0x802B76FC; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802B7728; // type:object size:0x78 scope:global align:4 +@3127 = .data:0x802B77A0; // type:object size:0xF scope:local align:4 data:string +@3128 = .data:0x802B77B0; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802B77C4; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802B7808; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802B7978; // type:label scope:local +@882 = .data:0x802B7978; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802B7988; // type:object size:0x9 scope:local align:4 data:string +@1013 = .data:0x802B7994; // type:object size:0xD scope:local align:4 data:string +@1014 = .data:0x802B79A4; // type:object size:0xC scope:local align:4 data:string +@1074 = .data:0x802B79B0; // type:object size:0xE scope:local align:4 data:string +@1176 = .data:0x802B79C0; // type:object size:0xC scope:local align:4 data:string +@1177 = .data:0x802B79CC; // type:object size:0x10 scope:local align:4 data:string +@1178 = .data:0x802B79DC; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802B79E8; // type:object size:0x1C scope:local align:4 data:string +@2001 = .data:0x802B7A04; // type:object size:0x1E scope:local align:4 data:string +@3241 = .data:0x802B7A24; // type:object size:0x9 scope:local align:4 data:string +@3242 = .data:0x802B7A30; // type:object size:0xC scope:local align:4 +@3246 = .data:0x802B7A58; // type:object size:0x9 scope:local align:4 data:string +@3249 = .data:0x802B7A64; // type:object size:0x14 scope:local align:4 +@3247 = .data:0x802B7A78; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802B7A94; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B7AC8; // type:label scope:local +@573 = .data:0x802B7AC8; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802B7AD4; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802B7AE0; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802B7AEC; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802B7AFC; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802B7B08; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802B7B1C; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802B7B28; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802B7B34; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802B7B44; // type:object size:0xC scope:local align:4 data:string +@622 = .data:0x802B7B50; // type:object size:0xC scope:local align:4 data:string +@644 = .data:0x802B7B5C; // type:object size:0xA scope:local align:4 +@755 = .data:0x802B7B68; // type:object size:0x9 scope:local align:4 data:string +@756 = .data:0x802B7B74; // type:object size:0xC scope:local align:4 +@758 = .data:0x802B7B80; // type:object size:0x14 scope:local align:4 +@753 = .data:0x802B7B94; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802B7BB0; // type:object size:0x48 scope:global align:4 +@764 = .data:0x802B7BF8; // type:object size:0x14 scope:local align:4 +@762 = .data:0x802B7C0C; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802B7C28; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B7C78; // type:label scope:local +@399 = .data:0x802B7C78; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802B7C88; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802B7C94; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802B7CA0; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802B7CAC; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802B7CB8; // type:object size:0xC scope:local align:4 +@449 = .data:0x802B7CD8; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802B7CE4; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802B7CF0; // type:object size:0xC scope:local align:4 +@455 = .data:0x802B7CFC; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802B7D10; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802B7D2C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B7D78; // type:label scope:local +@1321 = .data:0x802B7D78; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802B7D88; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802B7D94; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802B7DA4; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802B7DB4; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802B7DC4; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802B7DD4; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802B7DE4; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802B7DF4; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802B7E04; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802B7E14; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802B7E2C; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802B7E3C; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802B7E4C; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B7E58; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802B7E68; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802B7E78; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802B7E88; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802B7E98; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802B7EA8; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802B7EB8; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802B7EC8; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802B7ED4; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802B7EE8; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802B7EFC; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802B7F0C; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802B7F24; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802B7F30; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802B7F44; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802B7F54; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802B7F64; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802B7F70; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802B7F80; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802B7F90; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802B7FA0; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B7FB4; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802B7FC4; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802B7FD4; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802B7FE4; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802B7FF4; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802B8004; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802B8014; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802B8024; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802B8034; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802B8044; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802B8054; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802B8064; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802B8074; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802B8084; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802B809C; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802B80AC; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802B80BC; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802B80CC; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802B80DC; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802B80EC; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802B80FC; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802B810C; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802B811C; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802B812C; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802B813C; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B814C; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802B815C; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802B816C; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802B817C; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802B818C; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802B819C; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802B81AC; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802B81BC; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802B81CC; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802B81DC; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802B81EC; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802B81FC; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802B820C; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802B821C; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802B822C; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802B823C; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802B824C; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802B825C; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802B826C; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802B827C; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802B828C; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802B829C; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802B82AC; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802B82BC; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802B82CC; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802B82D8; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802B82E8; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802B82F8; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802B8304; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802B8314; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802B8324; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802B8334; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802B8344; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802B8358; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802B836C; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802B837C; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802B838C; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802B839C; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802B83AC; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B83C0; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B83D4; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802B83E4; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802B83F4; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802B8404; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802B8418; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802B8428; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802B8438; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802B844C; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802B845C; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802B846C; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802B8480; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802B8494; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802B84A8; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802B84B8; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802B84C8; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802B84D8; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B84E8; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802B84F8; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802B8508; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802B851C; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802B852C; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802B8540; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802B8550; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802B8560; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802B8570; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802B8580; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802B8590; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802B85A0; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802B85B0; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802B85C4; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802B85D0; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802B85E0; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802B85EC; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802B85F8; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802B8608; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802B8618; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802B8628; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802B8638; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802B8648; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802B8658; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802B866C; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802B8680; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802B8694; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802B86A4; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802B86B8; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802B86CC; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802B86E0; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802B86F0; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802B8700; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802B8710; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802B8720; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802B8734; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802B8744; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802B8754; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802B8764; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802B8774; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802B8788; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802B8798; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802B87AC; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802B87C0; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802B87D0; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802B87E4; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802B87F8; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802B880C; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802B881C; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802B882C; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802B883C; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802B884C; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802B885C; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802B8870; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802B8884; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802B8894; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802B88A8; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802B88B8; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802B88CC; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802B88E0; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802B88EC; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802B8900; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802B8910; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802B8920; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802B8930; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802B8944; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802B8958; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B8968; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802B8978; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802B8988; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802B8994; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802B89A4; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802B89B4; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802B89C4; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802B89D4; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802B89E8; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802B89FC; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802B8A10; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802B8A24; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802B8A38; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802B8A4C; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802B8A60; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802B8A74; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802B8A8C; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802B8AA4; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802B8ABC; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802B8ACC; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802B8ADC; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802B8AEC; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802B8AFC; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802B8B0C; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802B8B1C; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802B8B2C; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802B8B3C; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802B8B50; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802B8B68; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802B8B7C; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802B8B90; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802B8BA4; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802B8BB4; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802B8BC8; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802B8BDC; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802B8BF0; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802B8C00; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802B8C10; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802B8C20; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802B8C34; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802B8C44; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802B8C54; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802B8C64; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802B8C74; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802B8C84; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802B8C98; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802B8CA8; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802B8CBC; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802B8CCC; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802B8CDC; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802B8CEC; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802B8CFC; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802B8D0C; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802B8D20; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802B8D30; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802B8D40; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802B8D50; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802B8D60; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802B8D70; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802B8D80; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802B8D90; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802B8DA0; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802B8DB0; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802B8DC4; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802B8DD4; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802B8DE4; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802B8DF4; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802B8E04; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802B8E14; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802B8E28; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802B8E38; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802B8E48; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802B8E58; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802B8E68; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802B8E7C; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802B8E94; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802B8EA8; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802B8EBC; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802B8ED0; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802B8EE0; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802B8EF0; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802B8F00; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802B8F10; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802B8F20; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802B8F30; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802B8F48; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802B8F58; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802B8F68; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802B8F74; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802B8F80; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802B8F94; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802B8FA4; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802B8FB4; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802B8FC4; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802B8FD8; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802B8FEC; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802B9000; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802B9014; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802B9028; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802B9038; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802B904C; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802B905C; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802B9070; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802B9080; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802B9094; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802B90A8; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802B90BC; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802B90D0; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802B90E8; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802B90FC; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802B9110; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802B9120; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802B9130; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802B9148; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802B915C; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802B9168; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802B9174; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802B9184; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802B9198; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802B91AC; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802B91C0; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802B91D0; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802B91E8; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802B91F8; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802B9208; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802B9218; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802B9224; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802B9230; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802B923C; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802B9248; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802B9254; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802B9260; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802B9270; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802B9288; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B9294; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802B92A0; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802B92B8; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802B92CC; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B92DC; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802B92EC; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802B92FC; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802B9310; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802B9324; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802B933C; // type:object size:0x19DC scope:local align:4 +@1782 = .data:0x802BAD18; // type:object size:0xD scope:local align:4 data:string +@1866 = .data:0x802BAD28; // type:object size:0x11 scope:local align:4 data:string +@1867 = .data:0x802BAD3C; // type:object size:0x1E scope:local align:4 data:string +@2002 = .data:0x802BAD5C; // type:object size:0x12 scope:local align:4 +@2085 = .data:0x802BAD70; // type:object size:0x31 scope:local align:4 data:string +@2087 = .data:0x802BADA4; // type:object size:0x15 scope:local align:4 data:string +@2088 = .data:0x802BADBC; // type:object size:0x22 scope:local align:4 data:string +@2233 = .data:0x802BADE0; // type:object size:0xD scope:local align:4 data:string +@570 = .data:0x802BADF0; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802BAE00; // type:object size:0xD scope:local align:4 data:string +...data.0 = .data:0x802BAE10; // type:label scope:local +@1358 = .data:0x802BAE10; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802BAE1C; // type:object size:0xA scope:local align:4 data:string +@1636 = .data:0x802BAE28; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802BAE34; // type:object size:0x9 scope:local align:4 data:string +@2108 = .data:0x802BAE40; // type:object size:0xC scope:local align:4 +@2110 = .data:0x802BAE4C; // type:object size:0x14 scope:local align:4 +@2111 = .data:0x802BAE60; // type:object size:0xC scope:local align:4 data:string +@2105 = .data:0x802BAE6C; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802BAE90; // type:object size:0x54 scope:global align:4 +@2122 = .data:0x802BAEE4; // type:object size:0xC scope:local align:4 data:string +@2124 = .data:0x802BAEF0; // type:object size:0x9 scope:local align:4 data:string +@2123 = .data:0x802BAEFC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802BAF50; // type:label scope:local +@1426 = .data:0x802BAF50; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802BAF5C; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802BAF68; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802BAF78; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802BAF84; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802BAF98; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802BB00C; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802BB02C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB058; // type:label scope:local +@1167 = .data:0x802BB058; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802BB068; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802BB074; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802BB080; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802BB090; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802BB09C; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802BB0B0; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802BB114; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802BB12C; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802BB140; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802BB14C; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802BB158; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802BB16C; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802BB1D0; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802BB1E4; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802BB1F0; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802BB1FC; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802BB234; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BB248; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802BB264; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802BB2D8; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802BB2F0; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802BB2FC; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802BB314; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB340; // type:label scope:local +@1794 = .data:0x802BB340; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802BB350; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802BB35C; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802BB378; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802BB3B0; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802BB3C0; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802BB3D4; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802BB3E4; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802BB3F0; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802BB40C; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802BB480; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802BB48C; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802BB498; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802BB4AC; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802BB4D0; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802BB550; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB580; // type:label scope:local +@1651 = .data:0x802BB580; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802BB58C; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802BB598; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802BB5A4; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802BB5B8; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802BB5C8; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802BB5D4; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802BB5F0; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802BB664; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802BB674; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802BB690; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802BB704; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802BB714; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802BB728; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802BB78C; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802BB7C4; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802BB7D0; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802BB7EC; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802BB86C; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802BB87C; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802BB890; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802BB8F4; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802BB904; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802BB918; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802BB97C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BB9A8; // type:label scope:local +@1418 = .data:0x802BB9A8; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802BB9B8; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802BB9C4; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802BB9FC; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802BBA08; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802BBA18; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802BBA24; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802BBA38; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802BBAAC; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802BBACC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBAF8; // type:label scope:local +@1372 = .data:0x802BBAF8; // type:object size:0xA scope:local align:4 data:string +@1404 = .data:0x802BBB04; // type:object size:0x16 scope:local align:4 data:string +@1525 = .data:0x802BBB1C; // type:object size:0xF scope:local align:4 data:string +@1527 = .data:0x802BBB2C; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802BBB38; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802BBB4C; // type:object size:0x64 scope:global align:4 +@1574 = .data:0x802BBBB0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBBE0; // type:label scope:local +@1793 = .data:0x802BBBE0; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BBBF0; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802BBBFC; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802BBC08; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802BBC40; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802BBC4C; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802BBC60; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802BBC70; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802BBC7C; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802BBC98; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802BBD18; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBD48; // type:label scope:local +@1255 = .data:0x802BBD48; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802BBD58; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802BBD64; // type:object size:0xA scope:local align:4 data:string +@1499 = .data:0x802BBD70; // type:object size:0xC scope:local align:4 data:string +@1509 = .data:0x802BBDA8; // type:object size:0xD scope:local align:4 data:string +@1511 = .data:0x802BBDB8; // type:object size:0x14 scope:local align:4 data:string +@1512 = .data:0x802BBDCC; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802BBDDC; // type:object size:0xC scope:local align:4 +@1510 = .data:0x802BBDE8; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802BBE04; // type:object size:0x74 scope:global align:4 +@1561 = .data:0x802BBE84; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BBEB0; // type:label scope:local +@1671 = .data:0x802BBEB0; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802BBEC0; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802BBECC; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802BBEDC; // type:object size:0xF scope:local align:4 data:string +@3061 = .data:0x802BBEEC; // type:object size:0xF scope:local align:4 data:string +@3063 = .data:0x802BBEFC; // type:object size:0x20 scope:local align:4 +@3397 = .data:0x802BBF1C; // type:object size:0x9 scope:local align:4 data:string +@4239 = .data:0x802BBF28; // type:object size:0xB scope:local align:4 data:string +@4240 = .data:0x802BBF34; // type:object size:0xD scope:local align:4 data:string +@4241 = .data:0x802BBF44; // type:object size:0xE scope:local align:4 data:string +@4432 = .data:0x802BBF54; // type:object size:0xD scope:local align:4 data:string +@4434 = .data:0x802BBF64; // type:object size:0x14 scope:local align:4 data:string +@4435 = .data:0x802BBF78; // type:object size:0xF scope:local align:4 data:string +@4437 = .data:0x802BBF88; // type:object size:0xC scope:local align:4 +@4433 = .data:0x802BBF94; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802BBFB0; // type:object size:0x74 scope:global align:4 +@4486 = .data:0x802BC030; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC060; // type:label scope:local +@1793 = .data:0x802BC060; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BC070; // type:object size:0x9 scope:local align:4 data:string +@2363 = .data:0x802BC07C; // type:object size:0x11 scope:local align:4 data:string +@2365 = .data:0x802BC090; // type:object size:0xC scope:local align:4 data:string +@2375 = .data:0x802BC0C8; // type:object size:0xA scope:local align:4 data:string +@2377 = .data:0x802BC0D4; // type:object size:0x14 scope:local align:4 data:string +@2378 = .data:0x802BC0E8; // type:object size:0xF scope:local align:4 data:string +@2380 = .data:0x802BC0F8; // type:object size:0xC scope:local align:4 +@2376 = .data:0x802BC104; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802BC120; // type:object size:0x74 scope:global align:4 +@2430 = .data:0x802BC1A0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC1D0; // type:label scope:local +@1050 = .data:0x802BC1D0; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802BC1DC; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802BC1EC; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BC1F8; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802BC208; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802BC214; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802BC228; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802BC28C; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802BC2A4; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802BC2B8; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802BC2C4; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802BC2D0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC300; // type:label scope:local +@1507 = .data:0x802BC300; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802BC30C; // type:object size:0x12 scope:local align:4 data:string +@2353 = .data:0x802BC320; // type:object size:0xF scope:local align:4 data:string +@2354 = .data:0x802BC330; // type:object size:0x11 scope:local align:4 data:string +@2431 = .data:0x802BC344; // type:object size:0x9 scope:local align:4 data:string +@2433 = .data:0x802BC350; // type:object size:0x12 scope:local align:4 data:string +@2434 = .data:0x802BC364; // type:object size:0xF scope:local align:4 data:string +@2436 = .data:0x802BC374; // type:object size:0xC scope:local align:4 +@2432 = .data:0x802BC380; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802BC39C; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802BC410; // type:object size:0xC scope:weak align:4 +@2483 = .data:0x802BC41C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC448; // type:label scope:local +@1475 = .data:0x802BC448; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802BC454; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802BC460; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BC474; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BC484; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BC490; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802BC4AC; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BC52C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC558; // type:label scope:local +@1372 = .data:0x802BC558; // type:object size:0xC scope:local align:4 data:string +@1432 = .data:0x802BC564; // type:object size:0x16 scope:local align:4 data:string +@1619 = .data:0x802BC57C; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802BC5B4; // type:object size:0x9 scope:local align:4 data:string +@1631 = .data:0x802BC5C0; // type:object size:0xF scope:local align:4 data:string +@1633 = .data:0x802BC5D0; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802BC5DC; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802BC5F0; // type:object size:0x64 scope:global align:4 +@1680 = .data:0x802BC654; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC680; // type:label scope:local +@1051 = .data:0x802BC680; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802BC690; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802BC69C; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802BC6B0; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802BC6BC; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802BC6CC; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802BC6D8; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802BC6EC; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802BC750; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802BC768; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802BC77C; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802BC788; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802BC794; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC7C0; // type:label scope:local +@1370 = .data:0x802BC7C0; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802BC7CC; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802BC7DC; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802BC7E8; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802BC7FC; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802BC860; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC890; // type:label scope:local +@1169 = .data:0x802BC890; // type:object size:0xB scope:local align:4 data:string +@1188 = .data:0x802BC89C; // type:object size:0x1C scope:local align:4 data:string +@1342 = .data:0x802BC8B8; // type:object size:0x14 scope:local align:4 data:string +@1343 = .data:0x802BC8CC; // type:object size:0xF scope:local align:4 data:string +@1345 = .data:0x802BC8DC; // type:object size:0xC scope:local align:4 +@1341 = .data:0x802BC8E8; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802BC904; // type:object size:0x74 scope:global align:4 +@1359 = .data:0x802BC978; // type:object size:0xC scope:local align:4 data:string +@1405 = .data:0x802BC9BC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BC9E8; // type:label scope:local +@1357 = .data:0x802BC9E8; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802BC9F8; // type:object size:0xC scope:local align:4 data:string +@1531 = .data:0x802BCA04; // type:object size:0x12 scope:local align:4 data:string +@1775 = .data:0x802BCA18; // type:object size:0xD scope:local align:4 data:string +@1777 = .data:0x802BCA28; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802BCA3C; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802BCA4C; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802BCA58; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802BCA74; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802BCAF4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCB20; // type:label scope:local +@1610 = .data:0x802BCB20; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802BCB2C; // type:object size:0x10 scope:local align:4 +@1801 = .data:0x802BCB3C; // type:object size:0x12 scope:local align:4 data:string +@1900 = .data:0x802BCB50; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BCB64; // type:object size:0xF scope:local align:4 data:string +@1903 = .data:0x802BCB74; // type:object size:0xC scope:local align:4 +@1899 = .data:0x802BCB80; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802BCB9C; // type:object size:0x74 scope:global align:4 +@1952 = .data:0x802BCC1C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCC48; // type:label scope:local +@1050 = .data:0x802BCC48; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802BCC54; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802BCC64; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802BCC70; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802BCC84; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802BCCE8; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802BCD00; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802BCD14; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802BCD20; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802BCD2C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCD58; // type:label scope:local +@1476 = .data:0x802BCD58; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802BCD64; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802BCD70; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802BCD80; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802BCD8C; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802BCDA0; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802BCE04; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCE30; // type:label scope:local +@1147 = .data:0x802BCE30; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802BCE3C; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802BCE48; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802BCE54; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802BCE8C; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802BCE98; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802BCEAC; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802BCEBC; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802BCEC8; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802BCEE4; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802BCF64; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802BCF70; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802BCF7C; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802BCF90; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802BCFAC; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802BD010; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD040; // type:label scope:local +@1050 = .data:0x802BD040; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802BD054; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802BD064; // type:object size:0x11 scope:local align:4 data:string +@1139 = .data:0x802BD078; // type:object size:0xB scope:local align:4 data:string +@1141 = .data:0x802BD084; // type:object size:0xF scope:local align:4 data:string +@1143 = .data:0x802BD094; // type:object size:0xC scope:local align:4 +@1144 = .data:0x802BD0A0; // type:object size:0xA scope:local align:4 data:string +@1145 = .data:0x802BD0AC; // type:object size:0x14 scope:local align:4 +@1140 = .data:0x802BD0C0; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802BD0DC; // type:object size:0x64 scope:global align:4 +@1164 = .data:0x802BD140; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802BD158; // type:object size:0x14 scope:local align:4 data:string +@1165 = .data:0x802BD16C; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802BD178; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802BD184; // type:object size:0xC scope:weak align:4 +@1168 = .data:0x802BD190; // type:object size:0x10 scope:local align:4 data:string +@1169 = .data:0x802BD1A0; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802BD1BC; // type:object size:0x64 scope:global align:4 +@1212 = .data:0x802BD220; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD250; // type:label scope:local +@1375 = .data:0x802BD250; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802BD260; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802BD26C; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802BD2A4; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802BD2B8; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802BD2C8; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802BD2D4; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802BD2E8; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802BD35C; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802BD37C; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802BD388; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802BD394; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802BD3A8; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802BD3C4; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802BD428; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD458; // type:label scope:local +@1795 = .data:0x802BD458; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802BD464; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802BD498; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802BD4D0; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802BD4E4; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802BD4F4; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802BD500; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802BD51C; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802BD59C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD5C8; // type:label scope:local +@1701 = .data:0x802BD5C8; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802BD5D4; // type:object size:0x9 scope:local align:4 data:string +@2650 = .data:0x802BD5E0; // type:object size:0xB scope:local align:4 data:string +@2652 = .data:0x802BD5EC; // type:object size:0xF scope:local align:4 data:string +@2654 = .data:0x802BD5FC; // type:object size:0xC scope:local align:4 +@2651 = .data:0x802BD608; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802BD61C; // type:object size:0x64 scope:global align:4 +@2666 = .data:0x802BD680; // type:object size:0xB scope:local align:4 data:string +@2668 = .data:0x802BD68C; // type:object size:0x14 scope:local align:4 data:string +@2667 = .data:0x802BD6A0; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802BD6BC; // type:object size:0x74 scope:global align:4 +@2674 = .data:0x802BD730; // type:object size:0xC scope:local align:4 data:string +@2720 = .data:0x802BD774; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD7A0; // type:label scope:local +@1052 = .data:0x802BD7A0; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802BD7B4; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802BD7C4; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802BD7D0; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802BD7DC; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802BD7EC; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802BD7FC; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802BD808; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802BD81C; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802BD880; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802BD89C; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802BD8B0; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802BD8BC; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802BD8C8; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802BD8E8; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802BD904; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802BD910; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802BD91C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BD948; // type:label scope:local +@1793 = .data:0x802BD948; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BD958; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802BD964; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802BD970; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802BD984; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802BD994; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802BD9A0; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802BD9BC; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802BDA3C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDA68; // type:label scope:local +@1370 = .data:0x802BDA68; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802BDA74; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802BDA84; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802BDA90; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802BDAA4; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802BDB08; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDB38; // type:label scope:local +@1477 = .data:0x802BDB38; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802BDB44; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802BDB58; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802BDB6C; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802BDB7C; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802BDB88; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802BDBA4; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802BDC24; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802BDC30; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802BDC3C; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802BDC50; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802BDC6C; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802BDCD0; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BDCF0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDD20; // type:label scope:local +@1050 = .data:0x802BDD20; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802BDD2C; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802BDD38; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802BDD44; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802BDD54; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802BDD60; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802BDD74; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802BDDD8; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802BDDF0; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802BDE04; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802BDE10; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802BDE1C; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802BDE3C; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802BDE54; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802BDE60; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802BDE6C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDE98; // type:label scope:local +@1426 = .data:0x802BDE98; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802BDEA4; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802BDEB4; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802BDEC0; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802BDED4; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802BDF48; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802BDF68; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BDF98; // type:label scope:local +@1216 = .data:0x802BDF98; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BDFA8; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802BDFB4; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802BDFC0; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802BDFE4; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802BE010; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802BE03C; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802BE048; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802BE054; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802BE068; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802BE080; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802BE08C; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802BE09C; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802BE0A8; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802BE0BC; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802BE120; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802BE140; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802BE15C; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802BE168; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802BE174; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802BE180; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802BE194; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802BE1F8; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802BE204; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802BE218; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802BE27C; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802BE2E0; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802BE318; // type:label scope:local +@1468 = .data:0x802BE318; // type:object size:0xC scope:local align:4 data:string +@1533 = .data:0x802BE324; // type:object size:0x10 scope:local align:4 data:string +@1534 = .data:0x802BE334; // type:object size:0x12 scope:local align:4 data:string +@1597 = .data:0x802BE348; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802BE354; // type:object size:0xF scope:local align:4 data:string +@1649 = .data:0x802BE364; // type:object size:0x10 scope:local align:4 data:string +@1688 = .data:0x802BE374; // type:object size:0xB scope:local align:4 data:string +@1689 = .data:0x802BE380; // type:object size:0x9 scope:local align:4 data:string +@1716 = .data:0x802BE38C; // type:object size:0xF scope:local align:4 data:string +@1872 = .data:0x802BE39C; // type:object size:0xC scope:local align:4 data:string +@1875 = .data:0x802BE3A8; // type:object size:0xC scope:local align:4 +@1877 = .data:0x802BE3B4; // type:object size:0x14 scope:local align:4 +@1873 = .data:0x802BE3C8; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802BE3E4; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802BE404; // type:object size:0xF scope:local align:4 data:string +@1883 = .data:0x802BE414; // type:object size:0xB scope:local align:4 data:string +@1884 = .data:0x802BE420; // type:object size:0xC scope:local align:4 +@1881 = .data:0x802BE42C; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802BE440; // type:object size:0x20 scope:global align:4 +@1885 = .data:0x802BE460; // type:object size:0xC scope:local align:4 data:string +@1886 = .data:0x802BE46C; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802BE480; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802BE4A0; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802BE4C0; // type:object size:0x1C scope:weak align:4 +@1888 = .data:0x802BE4DC; // type:object size:0x9 scope:local align:4 data:string +@1889 = .data:0x802BE4E8; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802BE504; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802BE524; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802BE560; // type:label scope:local +@1919 = .data:0x802BE560; // type:object size:0x9 scope:local align:4 data:string +@2194 = .data:0x802BE56C; // type:object size:0x12 scope:local align:4 data:string +@2539 = .data:0x802BE580; // type:object size:0xB scope:local align:4 data:string +@2656 = .data:0x802BE58C; // type:object size:0x17 scope:local align:4 data:string +@2657 = .data:0x802BE5A4; // type:object size:0x3C scope:local align:4 +@2670 = .data:0x802BE5E0; // type:object size:0x58 scope:local align:4 +@3265 = .data:0x802BE638; // type:object size:0xE scope:local align:4 data:string +@3268 = .data:0x802BE648; // type:object size:0xB scope:local align:4 data:string +@3416 = .data:0x802BE654; // type:object size:0x2C scope:local align:4 +@3886 = .data:0x802BE680; // type:object size:0x11 scope:local align:4 data:string +@4822 = .data:0x802BE694; // type:object size:0xA scope:local align:4 data:string +@5040 = .data:0x802BE6A0; // type:object size:0x11 scope:local align:4 data:string +@5081 = .data:0x802BE6B4; // type:object size:0x26 scope:local align:4 data:string +@5114 = .data:0x802BE6DC; // type:object size:0x4C scope:local align:4 +@5121 = .data:0x802BE728; // type:object size:0x9 scope:local align:4 data:string +@5122 = .data:0x802BE734; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802BE740; // type:object size:0x38 scope:global align:4 +@5127 = .data:0x802BE778; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802BE784; // type:object size:0x10 scope:global align:4 +@5130 = .data:0x802BE794; // type:object size:0xA scope:local align:4 data:string +@5131 = .data:0x802BE7A0; // type:object size:0xF scope:local align:4 data:string +@5132 = .data:0x802BE7B0; // type:object size:0xC scope:local align:4 data:string +@5133 = .data:0x802BE7BC; // type:object size:0xA scope:local align:4 data:string +@5134 = .data:0x802BE7C8; // type:object size:0xB scope:local align:4 data:string +@5135 = .data:0x802BE7D4; // type:object size:0xA scope:local align:4 data:string +@5136 = .data:0x802BE7E0; // type:object size:0xB scope:local align:4 data:string +@5137 = .data:0x802BE7EC; // type:object size:0xB scope:local align:4 data:string +@5138 = .data:0x802BE7F8; // type:object size:0xB scope:local align:4 data:string +@5139 = .data:0x802BE804; // type:object size:0xF scope:local align:4 data:string +@5140 = .data:0x802BE814; // type:object size:0xA scope:local align:4 data:string +@5141 = .data:0x802BE820; // type:object size:0xB scope:local align:4 data:string +@5142 = .data:0x802BE82C; // type:object size:0xA scope:local align:4 data:string +@5143 = .data:0x802BE838; // type:object size:0xF scope:local align:4 data:string +@5144 = .data:0x802BE848; // type:object size:0xA scope:local align:4 data:string +@5145 = .data:0x802BE854; // type:object size:0xC scope:local align:4 data:string +@5146 = .data:0x802BE860; // type:object size:0xC scope:local align:4 data:string +@5147 = .data:0x802BE86C; // type:object size:0xF scope:local align:4 data:string +@5148 = .data:0x802BE87C; // type:object size:0xD scope:local align:4 data:string +@5149 = .data:0x802BE88C; // type:object size:0xC scope:local align:4 data:string +@5150 = .data:0x802BE898; // type:object size:0xA scope:local align:4 data:string +@5151 = .data:0x802BE8A4; // type:object size:0xC scope:local align:4 data:string +@5152 = .data:0x802BE8B0; // type:object size:0xC scope:local align:4 data:string +@5154 = .data:0x802BE8BC; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802BE8CC; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802BE930; // type:object size:0xC scope:local align:4 +@5398 = .data:0x802BE93C; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802BE950; // type:object size:0x18 scope:weak align:4 +@5401 = .data:0x802BE968; // type:object size:0x23 scope:local align:4 data:string +@5402 = .data:0x802BE98C; // type:object size:0x3D scope:local align:4 data:string +@5403 = .data:0x802BE9CC; // type:object size:0x29 scope:local align:4 data:string +@5400 = .data:0x802BE9F8; // type:object size:0x1C scope:local align:4 +@5410 = .data:0x802BEA74; // type:object size:0x14 scope:local align:4 data:string +@5413 = .data:0x802BEA94; // type:object size:0xC scope:local align:4 data:string +@5414 = .data:0x802BEAA0; // type:object size:0xD scope:local align:4 data:string +@5415 = .data:0x802BEAB0; // type:object size:0x9 scope:local align:4 data:string +@5416 = .data:0x802BEABC; // type:object size:0x14 scope:local align:4 +@5412 = .data:0x802BEAD0; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802BEAF4; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BEC30; // type:label scope:local +@1306 = .data:0x802BEC30; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802BEC3C; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802BEC54; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802BEC6C; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802BEC84; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802BEC90; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802BEC9C; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802BECA8; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802BECB4; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802BECC8; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802BECD4; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802BECE0; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802BED04; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802BED14; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802BED40; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802BED74; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802BEDFC; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802BEE08; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802BEE14; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802BEE34; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802BEE40; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802BEE60; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BEE6C; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802BEE7C; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802BEE88; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802BEEA0; // type:label scope:local +@1927 = .data:0x802BEEA0; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802BEEB0; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802BEEBC; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802BEEC8; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802BEED4; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802BEEE0; // type:object size:0xD scope:local align:4 data:string +@4586 = .data:0x802BEEF0; // type:object size:0x16 scope:local align:4 data:string +@4621 = .data:0x802BEF08; // type:object size:0xF scope:local align:4 data:string +@4645 = .data:0x802BEF18; // type:object size:0xE scope:local align:4 data:string +@4829 = .data:0x802BEF28; // type:object size:0x9 scope:local align:4 data:string +@4925 = .data:0x802BEF34; // type:object size:0xC scope:local align:4 data:string +@4966 = .data:0x802BEF40; // type:object size:0xA scope:local align:4 data:string +@5045 = .data:0x802BEF4C; // type:object size:0x9 scope:local align:4 data:string +@5327 = .data:0x802BEF58; // type:object size:0x28 scope:local align:4 +@5372 = .data:0x802BEF80; // type:object size:0x11 scope:local align:4 data:string +@5374 = .data:0x802BEF94; // type:object size:0xF scope:local align:4 data:string +@5375 = .data:0x802BEFA4; // type:object size:0xD scope:local align:4 data:string +@5376 = .data:0x802BEFB4; // type:object size:0xC scope:local align:4 +@5377 = .data:0x802BEFC0; // type:object size:0xA scope:local align:4 data:string +@5378 = .data:0x802BEFCC; // type:object size:0x14 scope:local align:4 +@5373 = .data:0x802BEFE0; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802BEFFC; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802BF068; // type:object size:0xE scope:local align:4 data:string +@5385 = .data:0x802BF078; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802BF094; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802BF100; // type:object size:0xF scope:local align:4 data:string +@5388 = .data:0x802BF110; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802BF12C; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802BF198; // type:object size:0x11 scope:local align:4 data:string +@5391 = .data:0x802BF1AC; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802BF1C8; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802BF234; // type:object size:0x12 scope:local align:4 data:string +@5394 = .data:0x802BF248; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802BF264; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802BF2D0; // type:object size:0x10 scope:local align:4 data:string +@5397 = .data:0x802BF2E0; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802BF2FC; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802BF368; // type:object size:0x14 scope:local align:4 data:string +@5400 = .data:0x802BF37C; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802BF398; // type:object size:0x6C scope:global align:4 +@5402 = .data:0x802BF404; // type:object size:0xE scope:local align:4 data:string +@5403 = .data:0x802BF414; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802BF430; // type:object size:0x6C scope:global align:4 +@5404 = .data:0x802BF49C; // type:object size:0x12 scope:local align:4 data:string +@5405 = .data:0x802BF4B0; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802BF4CC; // type:object size:0x6C scope:global align:4 +@5406 = .data:0x802BF538; // type:object size:0xE scope:local align:4 data:string +@5407 = .data:0x802BF548; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802BF564; // type:object size:0x6C scope:global align:4 +@5408 = .data:0x802BF5D0; // type:object size:0xE scope:local align:4 data:string +@5409 = .data:0x802BF5E0; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802BF5FC; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802BF668; // type:object size:0x10 scope:local align:4 data:string +@5411 = .data:0x802BF678; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802BF694; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802BF700; // type:object size:0x16 scope:local align:4 data:string +@5414 = .data:0x802BF718; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802BF734; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802BF7A0; // type:object size:0xE scope:local align:4 data:string +@5417 = .data:0x802BF7B0; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802BF7CC; // type:object size:0x6C scope:global align:4 +@5419 = .data:0x802BF838; // type:object size:0x10 scope:local align:4 data:string +@5420 = .data:0x802BF848; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802BF864; // type:object size:0x6C scope:global align:4 +@5421 = .data:0x802BF8D0; // type:object size:0xE scope:local align:4 data:string +@5422 = .data:0x802BF8E0; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802BF8FC; // type:object size:0x6C scope:global align:4 +@5423 = .data:0x802BF968; // type:object size:0x15 scope:local align:4 data:string +@5424 = .data:0x802BF980; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802BF99C; // type:object size:0x6C scope:global align:4 +@5425 = .data:0x802BFA08; // type:object size:0x10 scope:local align:4 data:string +@5426 = .data:0x802BFA18; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802BFA34; // type:object size:0x6C scope:global align:4 +@5427 = .data:0x802BFAA0; // type:object size:0x10 scope:local align:4 data:string +@5428 = .data:0x802BFAB0; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802BFACC; // type:object size:0x6C scope:global align:4 +@5429 = .data:0x802BFB38; // type:object size:0xF scope:local align:4 data:string +@5430 = .data:0x802BFB48; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802BFB64; // type:object size:0x6C scope:global align:4 +@5431 = .data:0x802BFBD0; // type:object size:0xE scope:local align:4 data:string +@5432 = .data:0x802BFBE0; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802BFBFC; // type:object size:0x6C scope:global align:4 +@5433 = .data:0x802BFC68; // type:object size:0x12 scope:local align:4 data:string +@5434 = .data:0x802BFC7C; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802BFC98; // type:object size:0x6C scope:global align:4 +@5435 = .data:0x802BFD04; // type:object size:0xF scope:local align:4 data:string +@5436 = .data:0x802BFD14; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802BFD30; // type:object size:0x6C scope:global align:4 +@5437 = .data:0x802BFD9C; // type:object size:0xF scope:local align:4 data:string +@5438 = .data:0x802BFDAC; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802BFDC8; // type:object size:0x6C scope:global align:4 +@5439 = .data:0x802BFE34; // type:object size:0x10 scope:local align:4 data:string +@5440 = .data:0x802BFE44; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802BFE60; // type:object size:0x6C scope:global align:4 +@5441 = .data:0x802BFECC; // type:object size:0x13 scope:local align:4 data:string +@5442 = .data:0x802BFEE0; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802BFEFC; // type:object size:0x6C scope:global align:4 +@5443 = .data:0x802BFF68; // type:object size:0xF scope:local align:4 data:string +@5444 = .data:0x802BFF78; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802BFF94; // type:object size:0x6C scope:global align:4 +@5445 = .data:0x802C0000; // type:object size:0x10 scope:local align:4 data:string +@5446 = .data:0x802C0010; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802C002C; // type:object size:0x6C scope:global align:4 +@5447 = .data:0x802C0098; // type:object size:0x10 scope:local align:4 data:string +@5448 = .data:0x802C00A8; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802C00C4; // type:object size:0x6C scope:global align:4 +@5449 = .data:0x802C0130; // type:object size:0xC scope:local align:4 data:string +@5459 = .data:0x802C0168; // type:object size:0xF scope:local align:4 data:string +@5460 = .data:0x802C0178; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802C0194; // type:object size:0x6C scope:global align:4 +@5461 = .data:0x802C0200; // type:object size:0x10 scope:local align:4 data:string +@5462 = .data:0x802C0210; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802C022C; // type:object size:0x6C scope:global align:4 +@5463 = .data:0x802C0298; // type:object size:0x10 scope:local align:4 data:string +@5464 = .data:0x802C02A8; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802C02C4; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802C0330; // type:object size:0x10 scope:local align:4 data:string +@5468 = .data:0x802C0340; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802C035C; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802C03C8; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802C0450; // type:object size:0x6C scope:global align:4 +@5470 = .data:0x802C04BC; // type:object size:0x11 scope:local align:4 data:string +@5472 = .data:0x802C04D0; // type:object size:0x13 scope:local align:4 data:string +@5471 = .data:0x802C04E4; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802C04F0; // type:object size:0x18 scope:global align:4 +@5518 = .data:0x802C0508; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0538; // type:label scope:local +@1525 = .data:0x802C0538; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802C0548; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802C0554; // type:object size:0xD scope:local align:4 data:string +@1545 = .data:0x802C0564; // type:object size:0x12 scope:local align:4 data:string +@1568 = .data:0x802C0578; // type:object size:0x13 scope:local align:4 data:string +@1569 = .data:0x802C058C; // type:object size:0x12 scope:local align:4 data:string +@1570 = .data:0x802C05A0; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802C05AC; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802C05C0; // type:object size:0x13 scope:local align:4 data:string +@1573 = .data:0x802C05D4; // type:object size:0x13 scope:local align:4 data:string +@2297 = .data:0x802C05E8; // type:object size:0xE scope:local align:4 data:string +@2300 = .data:0x802C05F8; // type:object size:0x9 scope:local align:4 data:string +@2302 = .data:0x802C0604; // type:object size:0x14 scope:local align:4 data:string +@2303 = .data:0x802C0618; // type:object size:0xC scope:local align:4 data:string +@2304 = .data:0x802C0624; // type:object size:0xD scope:local align:4 data:string +@2305 = .data:0x802C0634; // type:object size:0x9 scope:local align:4 data:string +@2306 = .data:0x802C0640; // type:object size:0x14 scope:local align:4 +@2308 = .data:0x802C0654; // type:object size:0x24 scope:local align:4 +@2301 = .data:0x802C0678; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802C06A4; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802C07E0; // type:label scope:local +@634 = .data:0x802C07E0; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802C07F0; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802C07FC; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802C0808; // type:object size:0xC scope:global align:4 +@637 = .data:0x802C0814; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802C0820; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802C082C; // type:object size:0xC scope:global align:4 +@639 = .data:0x802C0838; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802C0848; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802C0854; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802C0860; // type:label scope:local +@1616 = .data:0x802C0860; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802C0870; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802C087C; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802C0888; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802C0894; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802C08A0; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802C08B0; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802C08C4; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802C08E0; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802C08EC; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802C08FC; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802C0910; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802C091C; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802C092C; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802C0938; // type:object size:0x17 scope:local align:4 data:string +@2137 = .data:0x802C0950; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802C0968; // type:object size:0x8 scope:global align:4 +@2551 = .data:0x802C0970; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802C0980; // type:object size:0xE scope:local align:4 data:string +@3004 = .data:0x802C0990; // type:object size:0xB scope:local align:4 data:string +@3006 = .data:0x802C099C; // type:object size:0xC scope:local align:4 +@3008 = .data:0x802C09A8; // type:object size:0x14 scope:local align:4 +@3003 = .data:0x802C09BC; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802C09D8; // type:object size:0x38 scope:global align:4 +@3014 = .data:0x802C0A10; // type:object size:0xD scope:local align:4 data:string +@3015 = .data:0x802C0A20; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802C0A3C; // type:object size:0x38 scope:global align:4 +@3017 = .data:0x802C0A74; // type:object size:0x10 scope:local align:4 data:string +@3020 = .data:0x802C0A84; // type:object size:0x14 scope:local align:4 +@3018 = .data:0x802C0A98; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802C0AB4; // type:object size:0x38 scope:global align:4 +@3022 = .data:0x802C0AEC; // type:object size:0xE scope:local align:4 data:string +@3023 = .data:0x802C0AFC; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802C0B18; // type:object size:0x38 scope:global align:4 +@3024 = .data:0x802C0B50; // type:object size:0xB scope:local align:4 data:string +@3025 = .data:0x802C0B5C; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802C0B78; // type:object size:0x38 scope:global align:4 +@3027 = .data:0x802C0BB0; // type:object size:0xE scope:local align:4 data:string +@3029 = .data:0x802C0BC0; // type:object size:0xA scope:local align:4 data:string +@3030 = .data:0x802C0BCC; // type:object size:0x14 scope:local align:4 +@3028 = .data:0x802C0BE0; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802C0BFC; // type:object size:0x38 scope:global align:4 +@3034 = .data:0x802C0C34; // type:object size:0x9 scope:local align:4 data:string +@3035 = .data:0x802C0C40; // type:object size:0xC scope:local align:4 +@3037 = .data:0x802C0C4C; // type:object size:0x14 scope:local align:4 +@3032 = .data:0x802C0C60; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802C0C7C; // type:object size:0x30 scope:global align:4 +@3045 = .data:0x802C0CAC; // type:object size:0xA scope:local align:4 data:string +@3046 = .data:0x802C0CB8; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802C0CD4; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802C0D20; // type:object size:0x38 scope:global align:4 +@3047 = .data:0x802C0D58; // type:object size:0xC scope:local align:4 data:string +@3049 = .data:0x802C0D64; // type:object size:0x9 scope:local align:4 data:string +@3048 = .data:0x802C0D70; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802C0D90; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802C0DC8; // type:object size:0x38 scope:global align:4 +@3050 = .data:0x802C0E00; // type:object size:0xA scope:local align:4 data:string +@3051 = .data:0x802C0E0C; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802C0E2C; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802C0E50; // type:label scope:local +@1070 = .data:0x802C0E50; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802C0E64; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802C0E74; // type:object size:0x9 scope:local align:4 data:string +@1156 = .data:0x802C0E80; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802C0E98; // type:object size:0xB scope:local align:4 data:string +@1352 = .data:0x802C0EA4; // type:object size:0x1D scope:local align:4 data:string +@1353 = .data:0x802C0EC4; // type:object size:0x1A scope:local align:4 data:string +@1366 = .data:0x802C0EE0; // type:object size:0x24 scope:local align:4 data:string +@1397 = .data:0x802C0F04; // type:object size:0x18 scope:local align:4 data:string +@1399 = .data:0x802C0F1C; // type:object size:0x14 scope:local align:4 data:string +@1415 = .data:0x802C0F30; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802C0F4C; // type:object size:0x24 scope:local align:4 data:string +@1490 = .data:0x802C0F70; // type:object size:0x19 scope:local align:4 data:string +@1523 = .data:0x802C0F8C; // type:object size:0x13 scope:local align:4 data:string +@1554 = .data:0x802C0FA0; // type:object size:0x11 scope:local align:4 data:string +@1555 = .data:0x802C0FB4; // type:object size:0xA scope:local align:4 data:string +@1558 = .data:0x802C0FC0; // type:object size:0x13 scope:local align:4 data:string +@1559 = .data:0x802C0FD4; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802C0FE0; // type:object size:0x14 scope:local align:4 +@1572 = .data:0x802C10C0; // type:object size:0x16 scope:local align:4 data:string +@1575 = .data:0x802C10D8; // type:object size:0xC scope:local align:4 +@1573 = .data:0x802C10E4; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802C10F8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802C1128; // type:label scope:local +@737 = .data:0x802C1128; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802C1138; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C1144; // type:object size:0x9 scope:local align:4 data:string +@1654 = .data:0x802C1150; // type:object size:0xB scope:local align:4 data:string +@1987 = .data:0x802C115C; // type:object size:0x10 scope:local align:4 data:string +@1990 = .data:0x802C116C; // type:object size:0x9 scope:local align:4 data:string +@1991 = .data:0x802C1178; // type:object size:0xC scope:local align:4 +@1993 = .data:0x802C1184; // type:object size:0x14 scope:local align:4 +@1994 = .data:0x802C1198; // type:object size:0xC scope:local align:4 data:string +@1995 = .data:0x802C11A4; // type:object size:0xA scope:local align:4 data:string +@1996 = .data:0x802C11B0; // type:object size:0x24 scope:local align:4 +@1988 = .data:0x802C11D4; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802C1200; // type:object size:0x78 scope:global align:4 +@2010 = .data:0x802C1278; // type:object size:0xE scope:local align:4 data:string +@2011 = .data:0x802C1288; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802C12B4; // type:object size:0x80 scope:global align:4 +@2019 = .data:0x802C1334; // type:object size:0xE scope:local align:4 data:string +@2020 = .data:0x802C1344; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802C1370; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802C1428; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802C14A0; // type:label scope:local +@1700 = .data:0x802C14A0; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802C14B4; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802C14C0; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802C14D0; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802C14DC; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802C14E8; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802C1518; // type:label scope:local +@388 = .data:0x802C1518; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802C1528; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802C1534; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802C1544; // type:object size:0x10 scope:weak align:4 +table = .data:0x802C1558; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802C15E8; // type:label scope:local +@886 = .data:0x802C15E8; // type:object size:0xE scope:local align:4 data:string +@1382 = .data:0x802C15F8; // type:object size:0x14 scope:local align:4 data:string +@1383 = .data:0x802C160C; // type:object size:0xC scope:local align:4 data:string +@1384 = .data:0x802C1618; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802C1628; // type:object size:0x9 scope:local align:4 data:string +@1386 = .data:0x802C1634; // type:object size:0x14 scope:local align:4 +@1387 = .data:0x802C1648; // type:object size:0xB scope:local align:4 data:string +@1388 = .data:0x802C1654; // type:object size:0x24 scope:local align:4 +@1389 = .data:0x802C1678; // type:object size:0xD scope:local align:4 data:string +@1390 = .data:0x802C1688; // type:object size:0x2C scope:local align:4 +@1381 = .data:0x802C16B4; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802C16E8; // type:object size:0x15C scope:global align:4 +@1441 = .data:0x802C1844; // type:object size:0x9 scope:local align:4 data:string +@1442 = .data:0x802C1850; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802C1884; // type:object size:0x15C scope:global align:4 +@1447 = .data:0x802C19E0; // type:object size:0x9 scope:local align:4 data:string +@1448 = .data:0x802C19EC; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802C1A20; // type:object size:0x15C scope:global align:4 +@1453 = .data:0x802C1B7C; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802C1BB0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C1D10; // type:label scope:local +@908 = .data:0x802C1D10; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802C1D20; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802C1D2C; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802C1D40; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802C1D4C; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802C1D5C; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802C1D68; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802C1D7C; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802C1D88; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802C1DAC; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802C1DBC; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802C1DE8; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802C1E1C; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802C1F78; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802C1F84; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802C1FB8; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C2118; // type:label scope:local +@868 = .data:0x802C2118; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802C2128; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802C2138; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802C214C; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802C2158; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802C2168; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802C2174; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802C2188; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802C2194; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802C21B8; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802C21C8; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802C21F4; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802C2228; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C2388; // type:label scope:local +@1538 = .data:0x802C2388; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802C2394; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802C23A0; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802C23AC; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802C242C; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802C2438; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802C244C; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802C2458; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802C2468; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802C2474; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802C2488; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802C2494; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802C24B8; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802C24C8; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802C24F4; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802C2528; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802C269C; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802C26D8; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802C2850; // type:label scope:local +@909 = .data:0x802C2850; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802C285C; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802C2874; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802C2880; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802C288C; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802C2898; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802C28A4; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802C28B0; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802C28BC; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802C28C8; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802C28D4; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802C2918; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802C2928; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802C2934; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802C2944; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802C2950; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802C2964; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C2980; // type:label scope:local +@1257 = .data:0x802C2980; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802C2990; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802C299C; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802C29A8; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802C29BC; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802C29C8; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802C29D8; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C29E4; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802C29F8; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802C2A04; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802C2A28; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802C2A38; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802C2A64; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802C2A98; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802C2C00; // type:label scope:local +@1532 = .data:0x802C2C00; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802C2C10; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802C2C1C; // type:object size:0xC scope:local align:4 data:4byte +@1666 = .data:0x802C2C28; // type:object size:0xA scope:local align:4 data:string +@1691 = .data:0x802C2C34; // type:object size:0xF scope:local align:4 data:string +@1826 = .data:0x802C2C44; // type:object size:0x16 scope:local align:4 data:string +@2027 = .data:0x802C2C5C; // type:object size:0x10 scope:local align:4 data:string +@2111 = .data:0x802C2C6C; // type:object size:0x3D scope:local align:4 data:string +@2112 = .data:0x802C2CB8; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802C2CC4; // type:object size:0x14 scope:local align:4 data:string +@2115 = .data:0x802C2CD8; // type:object size:0xC scope:local align:4 data:string +@2116 = .data:0x802C2CE4; // type:object size:0xD scope:local align:4 data:string +@2117 = .data:0x802C2CF4; // type:object size:0x9 scope:local align:4 data:string +@2118 = .data:0x802C2D00; // type:object size:0x14 scope:local align:4 +@2119 = .data:0x802C2D14; // type:object size:0xB scope:local align:4 data:string +@2120 = .data:0x802C2D20; // type:object size:0x24 scope:local align:4 +@2121 = .data:0x802C2D44; // type:object size:0xD scope:local align:4 data:string +@2122 = .data:0x802C2D54; // type:object size:0x2C scope:local align:4 +@2113 = .data:0x802C2D80; // type:object size:0x34 scope:local align:4 +@2176 = .data:0x802C2F28; // type:object size:0x9 scope:local align:4 data:string +@2177 = .data:0x802C2F34; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802C2F78; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802C3100; // type:label scope:local +@1376 = .data:0x802C3100; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802C3114; // type:object size:0xD scope:local align:4 data:string +@1474 = .data:0x802C3124; // type:object size:0x23 scope:local align:4 data:string +@1631 = .data:0x802C3148; // type:object size:0xD scope:local align:4 data:string +@1633 = .data:0x802C3158; // type:object size:0x14 scope:local align:4 data:string +@1634 = .data:0x802C316C; // type:object size:0xC scope:local align:4 data:string +@1635 = .data:0x802C3178; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802C3188; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802C3194; // type:object size:0x14 scope:local align:4 +@1638 = .data:0x802C31A8; // type:object size:0xB scope:local align:4 data:string +@1639 = .data:0x802C31B4; // type:object size:0x24 scope:local align:4 +@1640 = .data:0x802C31D8; // type:object size:0xD scope:local align:4 data:string +@1641 = .data:0x802C31E8; // type:object size:0x2C scope:local align:4 +@1632 = .data:0x802C3214; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802C3248; // type:object size:0x15C scope:global align:4 +@1686 = .data:0x802C33A4; // type:object size:0x23 scope:local align:4 data:string +@1687 = .data:0x802C33C8; // type:object size:0x3D scope:local align:4 data:string +@1688 = .data:0x802C3408; // type:object size:0x29 scope:local align:4 data:string +@1685 = .data:0x802C3434; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802C34B0; // type:label scope:local +@870 = .data:0x802C34B0; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C34BC; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802C34C8; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802C34DC; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802C34E8; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802C34F8; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802C3504; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802C3518; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802C3524; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802C3548; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802C3558; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802C3584; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802C35B8; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802C3714; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802C3730; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C3848; // type:label scope:local +@868 = .data:0x802C3848; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802C3858; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802C3864; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802C3870; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802C387C; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802C388C; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802C3898; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802C38AC; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802C38BC; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802C38D8; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802C38FC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C3A10; // type:label scope:local +@1458 = .data:0x802C3A10; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802C3A20; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802C3A2C; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802C3A38; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802C3A44; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802C3A54; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802C3A60; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802C3A74; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802C3A90; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C3BA8; // type:label scope:local +@1071 = .data:0x802C3BA8; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802C3BB4; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802C3BC0; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802C3BD0; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802C3BE0; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802C3C3C; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802C3C4C; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802C3C58; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802C3C64; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802C3C70; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802C3C84; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802C3CA0; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802C3CD8; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802C3CE4; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802C3CF0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C3D10; // type:label scope:local +@1775 = .data:0x802C3D10; // type:object size:0xB scope:local align:4 data:string +@2223 = .data:0x802C3D1C; // type:object size:0x15 scope:local align:4 data:string +@2766 = .data:0x802C3D34; // type:object size:0x9 scope:local align:4 data:string +@2868 = .data:0x802C3D40; // type:object size:0x9 scope:local align:4 data:string +@2887 = .data:0x802C3D4C; // type:object size:0x12 scope:local align:4 data:string +@3001 = .data:0x802C3D60; // type:object size:0x9 scope:local align:4 data:string +@3044 = .data:0x802C3D6C; // type:object size:0xE scope:local align:4 data:string +@3150 = .data:0x802C3D7C; // type:object size:0x16 scope:local align:4 data:string +@3249 = .data:0x802C3D94; // type:object size:0x1B scope:local align:4 data:string +@3251 = .data:0x802C3DB0; // type:object size:0xA scope:local align:4 data:string +@3250 = .data:0x802C3DBC; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802C3DC8; // type:object size:0xC scope:global align:4 +@3252 = .data:0x802C3DD4; // type:object size:0x16 scope:local align:4 data:string +@3253 = .data:0x802C3DEC; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802C3DF8; // type:object size:0xC scope:global align:4 +@3254 = .data:0x802C3E04; // type:object size:0x19 scope:local align:4 data:string +@3255 = .data:0x802C3E20; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802C3E2C; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802C3E38; // type:object size:0xC scope:local align:4 data:string +@3258 = .data:0x802C3E44; // type:object size:0x19 scope:local align:4 data:string +@3259 = .data:0x802C3E60; // type:object size:0x9 scope:local align:4 data:string +@3260 = .data:0x802C3E6C; // type:object size:0xC scope:local align:4 +@3257 = .data:0x802C3E78; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802C3E8C; // type:object size:0x18 scope:weak align:4 +@3261 = .data:0x802C3EA4; // type:object size:0xD scope:local align:4 data:string +@3262 = .data:0x802C3EB4; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802C3EC0; // type:object size:0xC scope:global align:4 +@3263 = .data:0x802C3ECC; // type:object size:0x15 scope:local align:4 data:string +@3266 = .data:0x802C3EE4; // type:object size:0xC scope:local align:4 +@3267 = .data:0x802C3EF0; // type:object size:0xD scope:local align:4 data:string +@3268 = .data:0x802C3F00; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802C3F14; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802C3F30; // type:object size:0x14 scope:global align:4 +@3272 = .data:0x802C3F44; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802C3F58; // type:object size:0x18 scope:weak align:4 +@3273 = .data:0x802C3F70; // type:object size:0xB scope:local align:4 data:string +@3274 = .data:0x802C3F7C; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802C3F88; // type:object size:0xC scope:global align:4 +@3275 = .data:0x802C3F94; // type:object size:0x10 scope:local align:4 data:string +@3276 = .data:0x802C3FA4; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802C3FB0; // type:object size:0xC scope:global align:4 +@3277 = .data:0x802C3FBC; // type:object size:0x10 scope:local align:4 data:string +@3278 = .data:0x802C3FCC; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802C3FD8; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802C3FE4; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802C3FF8; // type:object size:0x18 scope:weak align:4 +@3281 = .data:0x802C4010; // type:object size:0xF scope:local align:4 data:string +@3282 = .data:0x802C4020; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802C402C; // type:object size:0xC scope:global align:4 +@3283 = .data:0x802C4038; // type:object size:0x11 scope:local align:4 data:string +@3284 = .data:0x802C404C; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802C4058; // type:object size:0xC scope:global align:4 +@3285 = .data:0x802C4064; // type:object size:0x11 scope:local align:4 data:string +@3286 = .data:0x802C4078; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802C4084; // type:object size:0xC scope:global align:4 +@3287 = .data:0x802C4090; // type:object size:0x11 scope:local align:4 data:string +@3288 = .data:0x802C40A4; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802C40B0; // type:object size:0xC scope:global align:4 +@3289 = .data:0x802C40BC; // type:object size:0x11 scope:local align:4 data:string +@3290 = .data:0x802C40D0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802C40DC; // type:object size:0xC scope:global align:4 +@3291 = .data:0x802C40E8; // type:object size:0x11 scope:local align:4 data:string +@3292 = .data:0x802C40FC; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802C4108; // type:object size:0xC scope:global align:4 +@3293 = .data:0x802C4114; // type:object size:0x11 scope:local align:4 data:string +@3294 = .data:0x802C4128; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802C4134; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802C4140; // type:object size:0x14 scope:local align:4 data:string +@3296 = .data:0x802C4154; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802C4170; // type:object size:0x14 scope:global align:4 +@3299 = .data:0x802C41B4; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802C41C8; // type:object size:0x18 scope:weak align:4 +@3300 = .data:0x802C41E0; // type:object size:0x10 scope:local align:4 data:string +@3301 = .data:0x802C41F0; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802C41FC; // type:object size:0xC scope:global align:4 +@3302 = .data:0x802C4208; // type:object size:0x10 scope:local align:4 data:string +@3303 = .data:0x802C4218; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802C4224; // type:object size:0xC scope:global align:4 +@3304 = .data:0x802C4230; // type:object size:0x11 scope:local align:4 data:string +@3305 = .data:0x802C4244; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802C4250; // type:object size:0xC scope:global align:4 +@3306 = .data:0x802C425C; // type:object size:0x11 scope:local align:4 data:string +@3307 = .data:0x802C4270; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802C427C; // type:object size:0xC scope:global align:4 +@3308 = .data:0x802C4288; // type:object size:0x11 scope:local align:4 data:string +@3309 = .data:0x802C429C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802C42A8; // type:object size:0xC scope:global align:4 +@3310 = .data:0x802C42B4; // type:object size:0xC scope:local align:4 data:string +@3320 = .data:0x802C42EC; // type:object size:0xC scope:local align:4 data:string +@3322 = .data:0x802C42F8; // type:object size:0xC scope:local align:4 data:string +@3321 = .data:0x802C4304; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802C4310; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802C431C; // type:object size:0xC scope:weak align:4 +@3327 = .data:0x802C4328; // type:object size:0x11 scope:local align:4 data:string +@3328 = .data:0x802C433C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802C4348; // type:object size:0xC scope:global align:4 +@3329 = .data:0x802C4354; // type:object size:0x10 scope:local align:4 data:string +@3330 = .data:0x802C4364; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802C4370; // type:object size:0xC scope:global align:4 +@3331 = .data:0x802C437C; // type:object size:0x10 scope:local align:4 data:string +@3332 = .data:0x802C438C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802C4398; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802C43A4; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802C43B8; // type:object size:0x18 scope:weak align:4 +@3335 = .data:0x802C43D0; // type:object size:0x11 scope:local align:4 data:string +@3336 = .data:0x802C43E4; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802C43F0; // type:object size:0xC scope:global align:4 +@3337 = .data:0x802C43FC; // type:object size:0x17 scope:local align:4 data:string +@3338 = .data:0x802C4414; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802C4420; // type:object size:0xC scope:global align:4 +@3339 = .data:0x802C442C; // type:object size:0x17 scope:local align:4 data:string +@3340 = .data:0x802C4444; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802C4450; // type:object size:0xC scope:global align:4 +@3341 = .data:0x802C445C; // type:object size:0x17 scope:local align:4 data:string +@3342 = .data:0x802C4474; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802C4480; // type:object size:0xC scope:global align:4 +@3343 = .data:0x802C448C; // type:object size:0x19 scope:local align:4 data:string +@3344 = .data:0x802C44A8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802C44B4; // type:object size:0xC scope:global align:4 +@3345 = .data:0x802C44C0; // type:object size:0x15 scope:local align:4 data:string +@3346 = .data:0x802C44D8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802C44E4; // type:object size:0xC scope:global align:4 +@3347 = .data:0x802C44F0; // type:object size:0x15 scope:local align:4 data:string +@3348 = .data:0x802C4508; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802C4514; // type:object size:0xC scope:global align:4 +@3349 = .data:0x802C4520; // type:object size:0x15 scope:local align:4 data:string +@3350 = .data:0x802C4538; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802C4544; // type:object size:0xC scope:global align:4 +@3351 = .data:0x802C4550; // type:object size:0x15 scope:local align:4 data:string +@3352 = .data:0x802C4568; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802C4574; // type:object size:0xC scope:global align:4 +@3353 = .data:0x802C4580; // type:object size:0x15 scope:local align:4 data:string +@3354 = .data:0x802C4598; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802C45A4; // type:object size:0xC scope:global align:4 +@3355 = .data:0x802C45B0; // type:object size:0x15 scope:local align:4 data:string +@3356 = .data:0x802C45C8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802C45D4; // type:object size:0xC scope:global align:4 +@3357 = .data:0x802C45E0; // type:object size:0x16 scope:local align:4 data:string +@3358 = .data:0x802C45F8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802C4604; // type:object size:0xC scope:global align:4 +@3359 = .data:0x802C4610; // type:object size:0x16 scope:local align:4 data:string +@3360 = .data:0x802C4628; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802C4634; // type:object size:0xC scope:global align:4 +@3361 = .data:0x802C4640; // type:object size:0x1A scope:local align:4 data:string +@3362 = .data:0x802C465C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802C4668; // type:object size:0xC scope:global align:4 +@3363 = .data:0x802C4674; // type:object size:0x17 scope:local align:4 data:string +@3364 = .data:0x802C468C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802C4698; // type:object size:0xC scope:global align:4 +@3365 = .data:0x802C46A4; // type:object size:0x19 scope:local align:4 data:string +@3366 = .data:0x802C46C0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802C46CC; // type:object size:0xC scope:global align:4 +@3367 = .data:0x802C46D8; // type:object size:0x18 scope:local align:4 data:string +@3368 = .data:0x802C46F0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802C46FC; // type:object size:0xC scope:global align:4 +@3369 = .data:0x802C4708; // type:object size:0xB scope:local align:4 data:string +@3370 = .data:0x802C4714; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802C4728; // type:object size:0x18 scope:weak align:4 +@3371 = .data:0x802C4740; // type:object size:0x15 scope:local align:4 data:string +@3372 = .data:0x802C4758; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802C4764; // type:object size:0xC scope:global align:4 +@3373 = .data:0x802C4770; // type:object size:0x15 scope:local align:4 data:string +@3374 = .data:0x802C4788; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802C4794; // type:object size:0xC scope:global align:4 +@3375 = .data:0x802C47A0; // type:object size:0x13 scope:local align:4 data:string +@3376 = .data:0x802C47B4; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802C47C0; // type:object size:0xC scope:global align:4 +@3377 = .data:0x802C47CC; // type:object size:0x13 scope:local align:4 data:string +@3378 = .data:0x802C47E0; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802C47EC; // type:object size:0xC scope:global align:4 +@3379 = .data:0x802C47F8; // type:object size:0x15 scope:local align:4 data:string +@3380 = .data:0x802C4810; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802C481C; // type:object size:0xC scope:global align:4 +@3381 = .data:0x802C4828; // type:object size:0xF scope:local align:4 data:string +@3382 = .data:0x802C4838; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802C4844; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802C4850; // type:object size:0xC scope:weak align:4 +@3383 = .data:0x802C485C; // type:object size:0x9 scope:local align:4 data:string +@3385 = .data:0x802C4868; // type:object size:0x15 scope:local align:4 data:string +@3384 = .data:0x802C4880; // type:object size:0xC scope:local align:4 +@3386 = .data:0x802C48FC; // type:object size:0x9 scope:local align:4 data:string +@3387 = .data:0x802C4908; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802C491C; // type:object size:0x18 scope:weak align:4 +@3425 = .data:0x802C4934; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C4960; // type:label scope:local +@1259 = .data:0x802C4960; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802C496C; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802C497C; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802C4994; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802C49AC; // type:object size:0xB scope:local align:4 data:string +@1723 = .data:0x802C49B8; // type:object size:0x58 scope:local align:4 +@1799 = .data:0x802C4A10; // type:object size:0x9 scope:local align:4 data:string +@1800 = .data:0x802C4A1C; // type:object size:0xA scope:local align:4 data:string +@2063 = .data:0x802C4A28; // type:object size:0x18 scope:local align:4 data:string +@2064 = .data:0x802C4A40; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802C4A5C; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802C4A78; // type:object size:0x19 scope:local align:4 data:string +@2067 = .data:0x802C4A94; // type:object size:0x18 scope:local align:4 data:string +@2504 = .data:0x802C4AAC; // type:object size:0x1E scope:local align:4 data:string +@2505 = .data:0x802C4ACC; // type:object size:0x9 scope:local align:4 data:string +@2506 = .data:0x802C4AD8; // type:object size:0xA scope:local align:4 data:string +@2507 = .data:0x802C4AE4; // type:object size:0x16 scope:local align:4 data:string +@2509 = .data:0x802C4AFC; // type:object size:0x18 scope:local align:4 data:string +@2511 = .data:0x802C4B14; // type:object size:0x1E scope:local align:4 data:string +@2512 = .data:0x802C4B34; // type:object size:0x9 scope:local align:4 data:string +@2513 = .data:0x802C4B40; // type:object size:0x16 scope:local align:4 data:string +@2514 = .data:0x802C4B58; // type:object size:0xD scope:local align:4 data:string +@2515 = .data:0x802C4B68; // type:object size:0x19 scope:local align:4 data:string +@2517 = .data:0x802C4B84; // type:object size:0x9 scope:local align:4 data:string +@2518 = .data:0x802C4B90; // type:object size:0x19 scope:local align:4 data:string +@2519 = .data:0x802C4BAC; // type:object size:0xA scope:local align:4 data:string +@2520 = .data:0x802C4BB8; // type:object size:0xB scope:local align:4 data:string +@2521 = .data:0x802C4BC4; // type:object size:0x16 scope:local align:4 data:string +@2523 = .data:0x802C4BDC; // type:object size:0x9 scope:local align:4 data:string +@2866 = .data:0x802C4BE8; // type:object size:0x5C scope:local align:4 +@2952 = .data:0x802C4C44; // type:object size:0x9 scope:local align:4 data:string +@3063 = .data:0x802C4C50; // type:object size:0xC scope:local align:4 data:string +@3066 = .data:0x802C4C5C; // type:object size:0xC scope:local align:4 +@3068 = .data:0x802C4C68; // type:object size:0x14 scope:local align:4 +@3069 = .data:0x802C4C7C; // type:object size:0xC scope:local align:4 data:string +@3070 = .data:0x802C4C88; // type:object size:0xA scope:local align:4 data:string +@3071 = .data:0x802C4C94; // type:object size:0x24 scope:local align:4 +@3072 = .data:0x802C4CB8; // type:object size:0xE scope:local align:4 data:string +@3073 = .data:0x802C4CC8; // type:object size:0x2C scope:local align:4 +@3064 = .data:0x802C4CF4; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802C4D28; // type:object size:0x84 scope:global align:4 +@3090 = .data:0x802C4DAC; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802C4DC0; // type:object size:0xD scope:local align:4 data:string +@3091 = .data:0x802C4DD0; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802C4DDC; // type:object size:0xC scope:weak align:4 +@3096 = .data:0x802C4DE8; // type:object size:0xE scope:local align:4 data:string +@3097 = .data:0x802C4DF8; // type:object size:0x2C scope:local align:4 +@3095 = .data:0x802C4E24; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802C4E58; // type:object size:0x84 scope:global align:4 +@3107 = .data:0x802C4EDC; // type:object size:0x10 scope:local align:4 data:string +@3109 = .data:0x802C4EEC; // type:object size:0xC scope:local align:4 data:string +@3108 = .data:0x802C4EF8; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802C4F04; // type:object size:0x2C scope:global align:4 +@3117 = .data:0x802C4F30; // type:object size:0xD scope:local align:4 data:string +@3119 = .data:0x802C4F40; // type:object size:0x14 scope:local align:4 data:string +@3120 = .data:0x802C4F54; // type:object size:0xC scope:local align:4 data:string +@3121 = .data:0x802C4F60; // type:object size:0xD scope:local align:4 data:string +@3122 = .data:0x802C4F70; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802C4F7C; // type:object size:0x14 scope:local align:4 +@3124 = .data:0x802C4F90; // type:object size:0xB scope:local align:4 data:string +@3125 = .data:0x802C4F9C; // type:object size:0x24 scope:local align:4 +@3118 = .data:0x802C4FC0; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802C4FEC; // type:object size:0x15C scope:global align:4 +@3176 = .data:0x802C5148; // type:object size:0x9 scope:local align:4 data:string +@3177 = .data:0x802C5154; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802C5160; // type:object size:0xC scope:weak align:4 +@3179 = .data:0x802C516C; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802C5178; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802C5184; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802C5190; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802C519C; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802C51A8; // type:object size:0x9 scope:local align:4 data:string +@3183 = .data:0x802C51B4; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802C51C0; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802C51CC; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802C51DC; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802C51E8; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802C51F4; // type:object size:0xD scope:local align:4 data:string +@3187 = .data:0x802C5204; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802C5210; // type:object size:0xC scope:weak align:4 +@3188 = .data:0x802C521C; // type:object size:0x11 scope:local align:4 data:string +@3189 = .data:0x802C5230; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802C5244; // type:object size:0x10 scope:weak align:4 +@3190 = .data:0x802C5254; // type:object size:0xD scope:local align:4 data:string +@3191 = .data:0x802C5264; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802C5270; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802C527C; // type:object size:0x11 scope:local align:4 data:string +@3193 = .data:0x802C5290; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802C529C; // type:object size:0xC scope:weak align:4 +@3194 = .data:0x802C52A8; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802C52B4; // type:object size:0x9 scope:local align:4 data:string +@3195 = .data:0x802C52C0; // type:object size:0xC scope:local align:4 +@3197 = .data:0x802C52E0; // type:object size:0xC scope:local align:4 data:string +@3198 = .data:0x802C52EC; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802C52F8; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802C5304; // type:object size:0xD scope:local align:4 data:string +@3200 = .data:0x802C5314; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802C5320; // type:object size:0xC scope:weak align:4 +@3201 = .data:0x802C5338; // type:object size:0xE scope:local align:4 data:string +@3203 = .data:0x802C5348; // type:object size:0x10 scope:local align:4 data:string +@3204 = .data:0x802C5358; // type:object size:0x2C scope:local align:4 +@3202 = .data:0x802C5384; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802C53B8; // type:object size:0x78 scope:weak align:4 +@3213 = .data:0x802C5430; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802C5440; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802C5454; // type:object size:0x10 scope:weak align:4 +@3215 = .data:0x802C5498; // type:object size:0xD scope:local align:4 data:string +@3216 = .data:0x802C54A8; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802C54DC; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802C5640; // type:label scope:local +@868 = .data:0x802C5640; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802C5650; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802C565C; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802C5670; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802C5684; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802C5690; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802C56A0; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802C56AC; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802C56C0; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802C56CC; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802C56F0; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802C5700; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802C572C; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802C5738; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802C576C; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802C57A8; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802C5904; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802C5918; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802C5954; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802C5AB0; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802C5AEC; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802C5C48; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C5C54; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802C5C90; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802C5DEC; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802C5F48; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802C5F54; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802C5F88; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C60E8; // type:label scope:local +@882 = .data:0x802C60E8; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802C60F8; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802C6104; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802C6110; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802C6124; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802C6130; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802C6140; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802C614C; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802C6160; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802C616C; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802C6190; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802C61A0; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802C61CC; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802C6200; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C6360; // type:label scope:local +@661 = .data:0x802C6360; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C6378; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802C638C; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802C63C8; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802C63DC; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802C63E8; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802C63F8; // type:object size:0xC scope:local align:4 +@753 = .data:0x802C6404; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802C6418; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C6438; // type:label scope:local +@1242 = .data:0x802C6438; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802C6444; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802C6450; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802C6464; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802C647C; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802C648C; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802C6498; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802C64A4; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802C64B0; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802C64C4; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802C64E0; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C6518; // type:label scope:local +@2026 = .data:0x802C6518; // type:object size:0x9 scope:local align:4 data:string +@2212 = .data:0x802C6524; // type:object size:0xC scope:local align:4 data:string +@2213 = .data:0x802C6530; // type:object size:0x13 scope:local align:4 data:string +@2291 = .data:0x802C6544; // type:object size:0xD scope:local align:4 data:string +@2292 = .data:0x802C6554; // type:object size:0xC scope:local align:4 data:string +@3020 = .data:0x802C6560; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802C656C; // type:object size:0xB scope:local align:4 data:string +@3851 = .data:0x802C6578; // type:object size:0xE scope:local align:4 data:string +@4627 = .data:0x802C6588; // type:object size:0x20 scope:local align:4 data:string +@6088 = .data:0x802C65A8; // type:object size:0x2C scope:local align:4 +@6149 = .data:0x802C65D4; // type:object size:0x13 scope:local align:4 data:string +@6150 = .data:0x802C65E8; // type:object size:0x15 scope:local align:4 data:string +@6721 = .data:0x802C6600; // type:object size:0xD scope:local align:4 data:string +@6723 = .data:0x802C6610; // type:object size:0xC scope:local align:4 data:string +@6722 = .data:0x802C661C; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C6628; // type:object size:0x2C scope:global align:4 +@6731 = .data:0x802C6654; // type:object size:0xF scope:local align:4 data:string +@6732 = .data:0x802C6664; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C6670; // type:object size:0x2C scope:global align:4 +@6733 = .data:0x802C66C8; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C66DC; // type:object size:0x18 scope:weak align:4 +@6736 = .data:0x802C66F4; // type:object size:0x23 scope:local align:4 data:string +@6737 = .data:0x802C6718; // type:object size:0x3D scope:local align:4 data:string +@6738 = .data:0x802C6758; // type:object size:0x29 scope:local align:4 data:string +@6735 = .data:0x802C6784; // type:object size:0x1C scope:local align:4 +@6745 = .data:0x802C6800; // type:object size:0xB scope:local align:4 data:string +@6748 = .data:0x802C680C; // type:object size:0x9 scope:local align:4 data:string +@6749 = .data:0x802C6818; // type:object size:0xC scope:local align:4 +@6751 = .data:0x802C6824; // type:object size:0x14 scope:local align:4 +@6746 = .data:0x802C6838; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C6854; // type:object size:0x30 scope:weak align:4 +@6760 = .data:0x802C68A0; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C68AC; // type:object size:0x34 scope:weak align:4 +@6768 = .data:0x802C68E0; // type:object size:0x14 scope:local align:4 data:string +@6769 = .data:0x802C6900; // type:object size:0xA scope:local align:4 data:string +@6771 = .data:0x802C690C; // type:object size:0x9 scope:local align:4 data:string +@6770 = .data:0x802C6918; // type:object size:0xC scope:local align:4 +@6772 = .data:0x802C6938; // type:object size:0x9 scope:local align:4 data:string +@6774 = .data:0x802C6944; // type:object size:0xD scope:local align:4 data:string +@6773 = .data:0x802C6954; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C6960; // type:object size:0xC scope:weak align:4 +@6777 = .data:0x802C696C; // type:object size:0xC scope:local align:4 data:string +@6778 = .data:0x802C6978; // type:object size:0xC scope:local align:4 +@6782 = .data:0x802C69A4; // type:object size:0xC scope:local align:4 data:string +@6783 = .data:0x802C69B0; // type:object size:0xD scope:local align:4 data:string +@6784 = .data:0x802C69C0; // type:object size:0x9 scope:local align:4 data:string +@6785 = .data:0x802C69CC; // type:object size:0x14 scope:local align:4 +@6781 = .data:0x802C69E0; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C6A0C; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C6B78; // type:label scope:local +@1929 = .data:0x802C6B78; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C6B88; // type:object size:0xA scope:local align:4 data:string +@5845 = .data:0x802C6B94; // type:object size:0x13 scope:local align:4 data:string +@5847 = .data:0x802C6BA8; // type:object size:0xF scope:local align:4 data:string +@5848 = .data:0x802C6BB8; // type:object size:0xD scope:local align:4 data:string +@5849 = .data:0x802C6BC8; // type:object size:0xC scope:local align:4 +@5850 = .data:0x802C6BD4; // type:object size:0xA scope:local align:4 data:string +@5851 = .data:0x802C6BE0; // type:object size:0x14 scope:local align:4 +@5846 = .data:0x802C6BF4; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C6C10; // type:object size:0x54 scope:global align:4 +@5853 = .data:0x802C6C64; // type:object size:0x15 scope:local align:4 data:string +@5854 = .data:0x802C6C7C; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C6C98; // type:object size:0x54 scope:global align:4 +@5856 = .data:0x802C6CEC; // type:object size:0x12 scope:local align:4 data:string +@5857 = .data:0x802C6D00; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C6D1C; // type:object size:0x54 scope:global align:4 +@5859 = .data:0x802C6D70; // type:object size:0x12 scope:local align:4 data:string +@5860 = .data:0x802C6D84; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C6DA0; // type:object size:0x54 scope:global align:4 +@5862 = .data:0x802C6DF4; // type:object size:0xE scope:local align:4 data:string +@5863 = .data:0x802C6E04; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C6E20; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C6E74; // type:object size:0x10 scope:local align:4 data:string +@5866 = .data:0x802C6E84; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C6EA0; // type:object size:0x54 scope:global align:4 +@5867 = .data:0x802C6EF4; // type:object size:0xF scope:local align:4 data:string +@5868 = .data:0x802C6F04; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C6F20; // type:object size:0x54 scope:global align:4 +@5869 = .data:0x802C6F74; // type:object size:0xE scope:local align:4 data:string +@5870 = .data:0x802C6F84; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C6FA0; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C6FF4; // type:object size:0x10 scope:local align:4 data:string +@5872 = .data:0x802C7004; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C7020; // type:object size:0x54 scope:global align:4 +@5873 = .data:0x802C7074; // type:object size:0xF scope:local align:4 data:string +@5874 = .data:0x802C7084; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C70A0; // type:object size:0x54 scope:global align:4 +@5875 = .data:0x802C70F4; // type:object size:0xD scope:local align:4 data:string +@5876 = .data:0x802C7104; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C7120; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C7174; // type:object size:0x11 scope:local align:4 data:string +@5878 = .data:0x802C7188; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C71A4; // type:object size:0x54 scope:global align:4 +@5880 = .data:0x802C71F8; // type:object size:0x14 scope:local align:4 data:string +@5881 = .data:0x802C720C; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802C7228; // type:object size:0x54 scope:global align:4 +@5882 = .data:0x802C727C; // type:object size:0xE scope:local align:4 data:string +@5883 = .data:0x802C728C; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802C72A8; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C72FC; // type:object size:0x12 scope:local align:4 data:string +@5886 = .data:0x802C7310; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802C732C; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C7380; // type:object size:0xE scope:local align:4 data:string +@5888 = .data:0x802C7390; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802C73AC; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C7400; // type:object size:0xF scope:local align:4 data:string +@5890 = .data:0x802C7410; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802C742C; // type:object size:0x54 scope:global align:4 +@5891 = .data:0x802C7480; // type:object size:0x13 scope:local align:4 data:string +@5892 = .data:0x802C7494; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802C74B0; // type:object size:0x54 scope:global align:4 +@5893 = .data:0x802C7504; // type:object size:0x11 scope:local align:4 data:string +@5894 = .data:0x802C7518; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802C7534; // type:object size:0x54 scope:global align:4 +@5895 = .data:0x802C7588; // type:object size:0x10 scope:local align:4 data:string +@5896 = .data:0x802C7598; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802C75B4; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802C7608; // type:object size:0x10 scope:local align:4 data:string +@5898 = .data:0x802C7618; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802C7634; // type:object size:0x54 scope:global align:4 +@5900 = .data:0x802C7688; // type:object size:0xF scope:local align:4 data:string +@5901 = .data:0x802C7698; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802C76B4; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802C7708; // type:object size:0xE scope:local align:4 data:string +@5904 = .data:0x802C7718; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802C7734; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802C7788; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802C779C; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802C77B8; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802C780C; // type:object size:0x12 scope:local align:4 data:string +@5908 = .data:0x802C7820; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802C783C; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802C7890; // type:object size:0xE scope:local align:4 data:string +@5910 = .data:0x802C78A0; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802C78BC; // type:object size:0x54 scope:global align:4 +@5911 = .data:0x802C7910; // type:object size:0xE scope:local align:4 data:string +@5912 = .data:0x802C7920; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802C793C; // type:object size:0x54 scope:global align:4 +@5913 = .data:0x802C7990; // type:object size:0x13 scope:local align:4 data:string +@5915 = .data:0x802C79A4; // type:object size:0x15 scope:local align:4 data:string +@5916 = .data:0x802C79BC; // type:object size:0x17 scope:local align:4 data:string +@5914 = .data:0x802C79D4; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802C7A00; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802C7A74; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802C7A80; // type:object size:0xC scope:weak align:4 +@5919 = .data:0x802C7A8C; // type:object size:0xD scope:local align:4 data:string +@5920 = .data:0x802C7A9C; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802C7AB8; // type:object size:0x54 scope:global align:4 +@5922 = .data:0x802C7B0C; // type:object size:0xE scope:local align:4 data:string +@5923 = .data:0x802C7B1C; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802C7B38; // type:object size:0x54 scope:global align:4 +@5924 = .data:0x802C7B8C; // type:object size:0xE scope:local align:4 data:string +@5925 = .data:0x802C7B9C; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802C7BB8; // type:object size:0x54 scope:global align:4 +@5927 = .data:0x802C7C0C; // type:object size:0xC scope:local align:4 data:string +@5937 = .data:0x802C7C44; // type:object size:0xF scope:local align:4 data:string +@5938 = .data:0x802C7C54; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802C7C70; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802C7CC4; // type:object size:0x11 scope:local align:4 data:string +@5940 = .data:0x802C7CD8; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802C7CF4; // type:object size:0x54 scope:global align:4 +@5942 = .data:0x802C7D48; // type:object size:0x12 scope:local align:4 data:string +@5943 = .data:0x802C7D5C; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802C7D78; // type:object size:0x54 scope:global align:4 +@5945 = .data:0x802C7DCC; // type:object size:0x10 scope:local align:4 data:string +@5946 = .data:0x802C7DDC; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802C7DF8; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802C7E4C; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802C7EA0; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802C7EF0; // type:object size:0x38 scope:weak align:4 +@5948 = .data:0x802C7F28; // type:object size:0x11 scope:local align:4 data:string +@5950 = .data:0x802C7F3C; // type:object size:0x13 scope:local align:4 data:string +@5949 = .data:0x802C7F50; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802C7F5C; // type:object size:0x18 scope:global align:4 +@5996 = .data:0x802C7F74; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C7FA0; // type:label scope:local +@1884 = .data:0x802C7FA0; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802C7FB4; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802C7FC0; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802C7FD0; // type:object size:0xC scope:local align:4 data:string +@2347 = .data:0x802C7FDC; // type:object size:0xB scope:local align:4 data:string +@2750 = .data:0x802C7FE8; // type:object size:0x2C scope:local align:4 +@2762 = .data:0x802C8014; // type:object size:0x14 scope:local align:4 data:string +@2764 = .data:0x802C8028; // type:object size:0xF scope:local align:4 data:string +@2765 = .data:0x802C8038; // type:object size:0xD scope:local align:4 data:string +@2766 = .data:0x802C8048; // type:object size:0xC scope:local align:4 +@2767 = .data:0x802C8054; // type:object size:0xA scope:local align:4 data:string +@2768 = .data:0x802C8060; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802C8074; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802C8090; // type:object size:0x54 scope:global align:4 +@2770 = .data:0x802C80E4; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802C8108; // type:object size:0x18 scope:weak align:4 +@2771 = .data:0x802C81FC; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802C821C; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802C823C; // type:object size:0x1C scope:local align:4 data:string +@2775 = .data:0x802C8258; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802C8264; // type:object size:0x1F scope:local align:4 data:string +@2777 = .data:0x802C8284; // type:object size:0x14 scope:local align:4 +@2772 = .data:0x802C8298; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802C82B4; // type:object size:0x50 scope:global align:4 +@2778 = .data:0x802C8304; // type:object size:0x1F scope:local align:4 data:string +@2779 = .data:0x802C8324; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802C8340; // type:object size:0x50 scope:global align:4 +@2780 = .data:0x802C8390; // type:object size:0x22 scope:local align:4 data:string +@2781 = .data:0x802C83B4; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802C83D0; // type:object size:0x50 scope:global align:4 +@2782 = .data:0x802C8420; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802C8440; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802C845C; // type:object size:0x50 scope:global align:4 +@2784 = .data:0x802C84AC; // type:object size:0x1D scope:local align:4 data:string +@2785 = .data:0x802C84CC; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802C84E8; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802C8538; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802C8588; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802C85D8; // type:object size:0x38 scope:weak align:4 +@2786 = .data:0x802C8610; // type:object size:0x26 scope:local align:4 data:string +@2787 = .data:0x802C8638; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802C8644; // type:object size:0x18 scope:global align:4 +@2845 = .data:0x802C865C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C8688; // type:label scope:local +@2086 = .data:0x802C8688; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802C869C; // type:object size:0x10 scope:local align:4 data:string +@2632 = .data:0x802C86AC; // type:object size:0x4C scope:local align:4 +@3525 = .data:0x802C86F8; // type:object size:0x9 scope:local align:4 data:string +@3526 = .data:0x802C8704; // type:object size:0xA scope:local align:4 data:string +@3527 = .data:0x802C8710; // type:object size:0x9 scope:local align:4 data:string +@3529 = .data:0x802C871C; // type:object size:0xB scope:local align:4 data:string +@3531 = .data:0x802C8728; // type:object size:0xE scope:local align:4 data:string +@3532 = .data:0x802C8738; // type:object size:0x9 scope:local align:4 data:string +@3533 = .data:0x802C8744; // type:object size:0xB scope:local align:4 data:string +@3534 = .data:0x802C8750; // type:object size:0xD scope:local align:4 data:string +@3544 = .data:0x802C8760; // type:object size:0x11 scope:local align:4 data:string +@3799 = .data:0x802C8774; // type:object size:0x9 scope:local align:4 data:string +@3802 = .data:0x802C8780; // type:object size:0x13 scope:local align:4 +@3803 = .data:0x802C8794; // type:object size:0x17 scope:local align:4 +@3804 = .data:0x802C87AC; // type:object size:0x13 scope:local align:4 data:string +@3805 = .data:0x802C87C0; // type:object size:0xC scope:local align:4 data:string +@3806 = .data:0x802C87CC; // type:object size:0x9 scope:local align:4 data:string +@3808 = .data:0x802C87D8; // type:object size:0xC scope:local align:4 data:string +@3811 = .data:0x802C87E4; // type:object size:0xA scope:local align:4 data:string +@3813 = .data:0x802C87F0; // type:object size:0x16 scope:local align:4 +@3815 = .data:0x802C8808; // type:object size:0x13 scope:local align:4 +@3817 = .data:0x802C881C; // type:object size:0x14 scope:local align:4 +@3818 = .data:0x802C8830; // type:object size:0x15 scope:local align:4 +@3820 = .data:0x802C8848; // type:object size:0x14 scope:local align:4 +@3825 = .data:0x802C885C; // type:object size:0xA scope:local align:4 data:string +@4139 = .data:0x802C8868; // type:object size:0x2C scope:local align:4 data:string +@4142 = .data:0x802C8894; // type:object size:0xA scope:local align:4 data:string +@4143 = .data:0x802C88A0; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802C88AC; // type:object size:0xA scope:local align:4 data:string +@4145 = .data:0x802C88B8; // type:object size:0xA scope:local align:4 data:string +@4146 = .data:0x802C88C4; // type:object size:0xC scope:local align:4 data:string +@4147 = .data:0x802C88D0; // type:object size:0xA scope:local align:4 data:string +@4148 = .data:0x802C88DC; // type:object size:0xC scope:local align:4 data:string +@4149 = .data:0x802C88E8; // type:object size:0x9 scope:local align:4 data:string +triNames$4141 = .data:0x802C88F4; // type:object size:0x28 scope:local align:4 +@4371 = .data:0x802C891C; // type:object size:0x10 scope:local align:4 data:string +@4374 = .data:0x802C892C; // type:object size:0x9 scope:local align:4 data:string +@4375 = .data:0x802C8938; // type:object size:0xC scope:local align:4 +@4377 = .data:0x802C8944; // type:object size:0x14 scope:local align:4 +@4372 = .data:0x802C8958; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802C8974; // type:object size:0x30 scope:global align:4 +@4385 = .data:0x802C89C0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802C89F8; // type:label scope:local +@1158 = .data:0x802C89F8; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802C8A08; // type:object size:0x9 scope:local align:4 data:string +@1617 = .data:0x802C8A14; // type:object size:0x10 scope:local align:4 data:string +@1625 = .data:0x802C8A24; // type:object size:0xE scope:local align:4 data:string +@1633 = .data:0x802C8A34; // type:object size:0xE scope:local align:4 data:string +@1897 = .data:0x802C8A44; // type:object size:0xB scope:local align:4 data:string +@1899 = .data:0x802C8A50; // type:object size:0x23 scope:local align:4 data:string +@1900 = .data:0x802C8A74; // type:object size:0x3D scope:local align:4 data:string +@1901 = .data:0x802C8AB4; // type:object size:0x29 scope:local align:4 data:string +@1903 = .data:0x802C8AE0; // type:object size:0x1C scope:local align:4 +@1898 = .data:0x802C8AFC; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802C8B20; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802C8B5C; // type:object size:0xD scope:local align:4 data:string +@1907 = .data:0x802C8B6C; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802C8B90; // type:object size:0x3C scope:global align:4 +@1909 = .data:0x802C8BCC; // type:object size:0x10 scope:local align:4 data:string +@1910 = .data:0x802C8BDC; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802C8C00; // type:object size:0x3C scope:global align:4 +@1911 = .data:0x802C8C3C; // type:object size:0x11 scope:local align:4 data:string +@1912 = .data:0x802C8C50; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802C8C74; // type:object size:0x3C scope:weak align:4 +@1998 = .data:0x802C8CB0; // type:object size:0xE scope:local align:4 data:string +@2000 = .data:0x802C8CC0; // type:object size:0x10 scope:local align:4 data:string +@2001 = .data:0x802C8CD0; // type:object size:0x24 scope:local align:4 +@1999 = .data:0x802C8CF4; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802C8D20; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802C8D5C; // type:object size:0x3C scope:weak align:4 +@2104 = .data:0x802C8D98; // type:object size:0x10 scope:local align:4 data:string +@2105 = .data:0x802C8DA8; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802C8DCC; // type:object size:0x3C scope:weak align:4 +@2111 = .data:0x802C8E08; // type:object size:0xB scope:local align:4 data:string +@2112 = .data:0x802C8E14; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802C8E38; // type:object size:0x3C scope:weak align:4 +@2118 = .data:0x802C8E74; // type:object size:0xD scope:local align:4 data:string +@2119 = .data:0x802C8E84; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802C8EA8; // type:object size:0x3C scope:weak align:4 +@2128 = .data:0x802C8EE4; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802C8F08; // type:object size:0x3C scope:weak align:4 +@2153 = .data:0x802C8F44; // type:object size:0x10 scope:local align:4 data:string +@2154 = .data:0x802C8F54; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802C8F78; // type:object size:0x3C scope:weak align:4 +@2160 = .data:0x802C8FB4; // type:object size:0x10 scope:local align:4 data:string +@2161 = .data:0x802C8FC4; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802C8FE8; // type:object size:0x3C scope:weak align:4 +@2167 = .data:0x802C9024; // type:object size:0x11 scope:local align:4 data:string +@2168 = .data:0x802C9038; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802C905C; // type:object size:0x3C scope:weak align:4 +@2174 = .data:0x802C9098; // type:object size:0x10 scope:local align:4 data:string +@2175 = .data:0x802C90A8; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802C90CC; // type:object size:0x3C scope:weak align:4 +@2181 = .data:0x802C9108; // type:object size:0xC scope:local align:4 data:string +@2182 = .data:0x802C9114; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802C9138; // type:object size:0x3C scope:weak align:4 +@2300 = .data:0x802C9174; // type:object size:0xB scope:local align:4 data:string +@2301 = .data:0x802C9180; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802C91A4; // type:object size:0x3C scope:weak align:4 +@2321 = .data:0x802C91E0; // type:object size:0xC scope:local align:4 data:string +@2322 = .data:0x802C91EC; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802C9210; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802C92B0; // type:label scope:local +@390 = .data:0x802C92B0; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802C92C0; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802C92CC; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802C92DC; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802C92E8; // type:object size:0xC scope:local align:4 +@446 = .data:0x802C92F4; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802C9308; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802C9314; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802C9330; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802C9354; // type:object size:0x30 scope:global align:4 +@655 = .data:0x802C93A0; // type:object size:0xC scope:local align:4 data:string +@736 = .data:0x802C93AC; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x802C93B8; // type:label scope:local +@1462 = .data:0x802C93B8; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802C93C4; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802C93D0; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802C93DC; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802C93E8; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802C93F8; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802C9404; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802C9410; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802C9424; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802C9438; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802C9448; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802C9454; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802C9460; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802C9474; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802C9480; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802C948C; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802C94B0; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802C94C0; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802C94EC; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802C9520; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802C95A8; // type:label scope:local +@734 = .data:0x802C95A8; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802C95B8; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802C95C4; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802C95D8; // type:object size:0xC scope:local align:4 +@793 = .data:0x802C95E4; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802C95F0; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802C9604; // type:object size:0x13 scope:local align:4 +@1048 = .data:0x802C9618; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802C962C; // type:object size:0xB scope:local align:4 data:string +@1052 = .data:0x802C9638; // type:object size:0xC scope:local align:4 +@1053 = .data:0x802C9644; // type:object size:0xA scope:local align:4 data:string +@1054 = .data:0x802C9650; // type:object size:0x14 scope:local align:4 +@1049 = .data:0x802C9664; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802C9680; // type:object size:0x38 scope:global align:4 +@1061 = .data:0x802C96B8; // type:object size:0xC scope:local align:4 data:string +@1063 = .data:0x802C96C4; // type:object size:0x9 scope:local align:4 data:string +@1062 = .data:0x802C96D0; // type:object size:0xC scope:local align:4 +@1064 = .data:0x802C96F0; // type:object size:0xA scope:local align:4 data:string +@1065 = .data:0x802C96FC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C9720; // type:label scope:local +@657 = .data:0x802C9720; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802C9730; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802C973C; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802C9750; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802C9768; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802C977C; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802C9790; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802C97A0; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802C97AC; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802C97B8; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802C97C4; // type:object size:0xC scope:local align:4 +@905 = .data:0x802C97D0; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802C97E4; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802C97F4; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802C9810; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802C9820; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802C9844; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802C9850; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802C987C; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802C98B0; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802C98FC; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802C9908; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802C993C; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802C99E4; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802C9A30; // type:label scope:local +@661 = .data:0x802C9A30; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C9A48; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802C9A5C; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802C9A68; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802C9A74; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802C9A80; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802C9A8C; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802C9A98; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C9AA4; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802C9AB0; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802C9ABC; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802C9AC8; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802C9AD4; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802C9AE0; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802C9AEC; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802C9AF8; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802C9B04; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802C9B10; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802C9B1C; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802C9B28; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802C9B34; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802C9C9C; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802C9CB0; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802C9CBC; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802C9CCC; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802C9CD8; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802C9CEC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C9D08; // type:label scope:local +@853 = .data:0x802C9D08; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802C9D18; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802C9D24; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802C9D30; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802C9D40; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802C9D50; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802C9D60; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802C9D6C; // type:object size:0xC scope:local align:4 +@887 = .data:0x802C9D78; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802C9D84; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802C9D98; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802C9DB4; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C9DF0; // type:label scope:local +@1114 = .data:0x802C9DF0; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802C9E00; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802C9E0C; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C9E18; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802C9E24; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802C9E30; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802C9E3C; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802C9E48; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802C9E54; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802C9E84; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802C9E9C; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802C9EB0; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802C9EBC; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802C9ECC; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802C9EDC; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802C9EEC; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802C9EF8; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802C9F04; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802C9F10; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802C9F24; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802C9F40; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802C9F78; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802C9F84; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802C9F90; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802C9FA4; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802C9FB0; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802C9FBC; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802C9FE0; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802C9FF0; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802CA01C; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802CA050; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802CA0CC; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802CA0D8; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802CA0E4; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802CA104; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802CA120; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802CA134; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802CA148; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802CA158; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802CA168; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802CA1A4; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802CA1B8; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802CA1C4; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802CA1D0; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802CA1DC; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802CA1F0; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802CA1FC; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802CA208; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802CA220; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802CA230; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802CA244; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802CA260; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802CA2B0; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802CA2CC; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802CA2D8; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802CA2E4; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802CA2F8; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802CA310; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802CA324; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802CA330; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802CA340; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802CA34C; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802CA360; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802CA36C; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802CA390; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802CA3BC; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802CA518; // type:label scope:local +@661 = .data:0x802CA518; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802CA530; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802CA544; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802CA560; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802CA574; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802CA580; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802CA590; // type:object size:0xC scope:local align:4 +@713 = .data:0x802CA59C; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802CA5B0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CA5D0; // type:label scope:local +@1206 = .data:0x802CA5D0; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802CA5DC; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802CA5E8; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802CA5F4; // type:object size:0x9 scope:local align:4 +@1265 = .data:0x802CA600; // type:object size:0x26 scope:local align:4 data:string +@1266 = .data:0x802CA628; // type:object size:0x19 scope:local align:4 data:string +@1290 = .data:0x802CA644; // type:object size:0xE scope:local align:4 data:string +@1292 = .data:0x802CA654; // type:object size:0xB scope:local align:4 data:string +@1294 = .data:0x802CA660; // type:object size:0xC scope:local align:4 +@1295 = .data:0x802CA66C; // type:object size:0xA scope:local align:4 data:string +@1296 = .data:0x802CA678; // type:object size:0x14 scope:local align:4 +@1291 = .data:0x802CA68C; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802CA6A8; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802CA6E0; // type:label scope:local +@445 = .data:0x802CA6E0; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CA6F4; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802CA704; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802CA718; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802CA724; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802CA730; // type:object size:0xC scope:global align:4 +@667 = .data:0x802CA73C; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802CA754; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802CA768; // type:object size:0xC scope:local align:4 +@671 = .data:0x802CA774; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802CA784; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802CA798; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802CA7B4; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802CA7C4; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802CA7D4; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802CA7E4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802CA7F0; // type:label scope:local +@445 = .data:0x802CA7F0; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802CA804; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802CA814; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802CA820; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802CA82C; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802CA83C; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802CA848; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802CA854; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802CA864; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802CA870; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802CA87C; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802CA88C; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802CA898; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802CA8A4; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802CA8B0; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802CA8BC; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802CA8C8; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802CA8D4; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802CA8E0; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802CA8F0; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802CA900; // type:label scope:local +@441 = .data:0x802CA900; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802CA910; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802CA91C; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802CB120; // type:label scope:local +@410 = .data:0x802CB120; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802CB130; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802CB13C; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802CB14C; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802CB15C; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802CB19C; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802CB1BC; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802CB1CC; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CB210; // type:label scope:local +@657 = .data:0x802CB210; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802CB224; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802CB234; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802CB240; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802CB24C; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802CB258; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802CB264; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802CB270; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802CB27C; // type:object size:0x18 scope:global align:4 +@774 = .data:0x802CB294; // type:object size:0x2A scope:local align:4 data:string +@775 = .data:0x802CB2C0; // type:object size:0x2B scope:local align:4 data:string +@865 = .data:0x802CB2EC; // type:object size:0x24 scope:local align:4 data:string +@867 = .data:0x802CB310; // type:object size:0xD scope:local align:4 data:string +@869 = .data:0x802CB320; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802CB32C; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802CB338; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CB358; // type:label scope:local +@1106 = .data:0x802CB358; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802CB370; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802CB384; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802CB394; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802CB3A4; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802CB3E0; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802CB3F4; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802CB400; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802CB410; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802CB41C; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802CB430; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CB450; // type:label scope:local +@1783 = .data:0x802CB450; // type:object size:0x14 scope:local align:4 data:string +@1793 = .data:0x802CB464; // type:object size:0x10 scope:local align:4 data:string +@1931 = .data:0x802CB474; // type:object size:0xD scope:local align:4 data:string +@1932 = .data:0x802CB484; // type:object size:0xD scope:local align:4 data:string +@1933 = .data:0x802CB494; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802CB4A8; // type:object size:0x1A scope:local align:4 data:string +@1940 = .data:0x802CB4C4; // type:object size:0xD scope:local align:4 data:string +@2307 = .data:0x802CB4D4; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802CB4E8; // type:object size:0xC scope:local align:4 data:string +@2309 = .data:0x802CB4F4; // type:object size:0xD scope:local align:4 data:string +@2310 = .data:0x802CB504; // type:object size:0x11 scope:local align:4 data:string +@2323 = .data:0x802CB518; // type:object size:0x12 scope:local align:4 data:string +@2324 = .data:0x802CB52C; // type:object size:0x10 scope:local align:4 data:string +@2327 = .data:0x802CB53C; // type:object size:0x9 scope:local align:4 data:string +@2328 = .data:0x802CB548; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802CB554; // type:object size:0x14 scope:local align:4 +@2332 = .data:0x802CB568; // type:object size:0x1C scope:local align:4 +@2325 = .data:0x802CB584; // type:object size:0x24 scope:local align:4 +__vt__15PaniTestSection = .data:0x802CB5A8; // type:object size:0x34 scope:global align:4 +@2341 = .data:0x802CB5DC; // type:object size:0x14 scope:local align:4 data:string +@2340 = .data:0x802CB5F0; // type:object size:0x24 scope:local align:4 +__vt__12PaniTestNode = .data:0x802CB614; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802CB680; // type:label scope:local +@410 = .data:0x802CB680; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802CB694; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802CB6A4; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802CB6B8; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802CB6CC; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802CB6DC; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802CB6F4; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802CB700; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CB714; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802CB728; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802CB738; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802CB74C; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802CB758; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802CB76C; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CB780; // type:label scope:local +@1481 = .data:0x802CB780; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802CB790; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802CB79C; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802CB7AC; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802CB7D8; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802CB7E4; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802CB7F0; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802CB7FC; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802CB810; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802CB850; // type:label scope:local +@1122 = .data:0x802CB850; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802CB868; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802CB87C; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802CB890; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802CB89C; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802CB8A8; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802CB8BC; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802CB8D8; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CB928; // type:label scope:local +@717 = .data:0x802CB928; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CB940; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802CB954; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802CB96C; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802CB978; // type:object size:0xC scope:local align:4 +@855 = .data:0x802CB984; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802CB998; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802CB9D4; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802CB9EC; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802CBA00; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802CBA14; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802CBA50; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802CBA60; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802CBA74; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802CBA88; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802CBAA4; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802CBAE0; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802CBAF4; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802CBB10; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802CBB4C; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802CBB64; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802CBB74; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802CBB88; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802CBBA4; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CBBE0; // type:label scope:local +@446 = .data:0x802CBBE0; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802CBBFC; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802CBC14; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802CBC24; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802CBC38; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802CBC48; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802CBC58; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802CBC74; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802CBC90; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802CBCA0; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802CBCB4; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802CBCC8; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802CBCD8; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802CBCF4; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802CBD14; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802CBD24; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802CBD38; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802CBD48; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802CBD54; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802CBD70; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802CBD8C; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802CBD9C; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802CBDB0; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802CBDC0; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802CBDD0; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802CBDEC; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802CBE08; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802CBE18; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802CBE30; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802CBE44; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802CBE54; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802CBE74; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802CBE94; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802CBEA8; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802CBEBC; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802CBECC; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802CBEDC; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802CBEF8; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802CBF14; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802CBF24; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802CBF3C; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802CBF54; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802CBF68; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802CBF88; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802CBFAC; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802CBFC0; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802CBFD0; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802CBFE4; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802CBFF4; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802CC008; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802CC020; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802CC034; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802CC04C; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802CC068; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802CC07C; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802CC090; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802CC0A8; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802CC0BC; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802CC0D8; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802CC0F0; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802CC0FC; // type:object size:0xC scope:local align:4 +@867 = .data:0x802CC108; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802CC11C; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802CC138; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CC188; // type:label scope:local +@698 = .data:0x802CC188; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802CC194; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802CC1A8; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802CC1B4; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802CC1C8; // type:object size:0xC scope:local align:4 +@853 = .data:0x802CC1D4; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802CC1E8; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802CC1F8; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802CC208; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802CC220; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802CC22C; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802CC23C; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802CC250; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802CC260; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802CC26C; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802CC27C; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802CC28C; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802CC2A4; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802CC2B0; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802CC2C0; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802CC2D8; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802CC2E4; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802CC2F4; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802CC304; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802CC314; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802CC320; // type:object size:0xC scope:local align:4 +@922 = .data:0x802CC32C; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802CC340; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802CC37C; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802CC390; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802CC3A4; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802CC3E0; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802CC41C; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802CC42C; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CC440; // type:label scope:local +@698 = .data:0x802CC440; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802CC454; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802CC464; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802CC480; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802CC490; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802CC4A8; // type:object size:0xC scope:local align:4 +@762 = .data:0x802CC4B4; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802CC4C8; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802CC4DC; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802CC4F4; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802CC508; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802CC51C; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802CC530; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802CC53C; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802CC550; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802CC568; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802CC574; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802CC588; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802CC5A0; // type:label scope:local +@717 = .data:0x802CC5A0; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802CC5B8; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802CC5CC; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802CC5E0; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802CC5EC; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802CC5F8; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802CC60C; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802CC648; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802CC660; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802CC670; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802CC684; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802CC6C0; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802CC6D8; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802CC6EC; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802CC744; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802CC75C; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802CC770; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802CC784; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802CC7A0; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802CC7DC; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802CC7F4; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802CC808; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802CC844; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802CC85C; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802CC870; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802CC8AC; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802CC8C8; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802CC8E4; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802CC920; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802CC934; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802CC948; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802CC984; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802CC9A0; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802CC9B4; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802CC9F0; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802CCA04; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802CCA10; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802CCA3C; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802CCA50; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802CCA68; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802CCA7C; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802CCA98; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802CCAD4; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802CCB10; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802CCB20; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802CCB34; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802CCB70; // type:label scope:local +@1231 = .data:0x802CCB70; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802CCB7C; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802CCB8C; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802CCB98; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802CCBC0; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802CCBCC; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802CCBE4; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802CCBF4; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802CCC00; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802CCC0C; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802CCC28; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802CCC48; // type:label scope:local +@1686 = .data:0x802CCC48; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802CCC60; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802CCC74; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802CCC8C; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802CCC98; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802CCCA8; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802CCCB4; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802CCCC8; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802CCCE4; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802CCCF8; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802CCD0C; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802CCD28; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802CCD40; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802CCD4C; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802CCD68; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802CCD78; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802CCD84; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802CCDA0; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802CCDB4; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802CCDC0; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802CCDDC; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802CCE14; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802CCE28; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802CCE34; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802CCE44; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802CCE50; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802CCE64; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802CCE70; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802CCE84; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802CCE98; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802CCEA4; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802CCEC4; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802CCED0; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802CCEEC; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802CCF04; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802CCF10; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802CCF2C; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802CCF44; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802CCF50; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802CCF6C; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802CCF84; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802CCFA0; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802CCFAC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CCFC8; // type:label scope:local +@1211 = .data:0x802CCFC8; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802CCFDC; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802CCFEC; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802CD008; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802CD014; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802CD020; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802CD03C; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802CD05C; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802CD068; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802CD084; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802CD098; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802CD0A4; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802CD0C0; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802CD0D4; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802CD0E0; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802CD0FC; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802CD110; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802CD11C; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802CD138; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802CD150; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802CD15C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CD178; // type:label scope:local +@1730 = .data:0x802CD178; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802CD188; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802CD194; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802CD1A0; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802CD1B0; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802CD1C0; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802CD1D0; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802CD1EC; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802CD1F8; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802CD20C; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802CD218; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802CD230; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802CD244; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802CD260; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802CD280; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802CD298; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802CD2AC; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802CD2B8; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802CD2CC; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802CD2E8; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802CD2FC; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802CD308; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802CD318; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802CD324; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802CD344; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802CD354; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802CD368; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802CD38C; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802CD3A0; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802CD3AC; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802CD3C8; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802CD3D8; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802CD3E4; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802CD400; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802CD410; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802CD41C; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802CD454; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802CD468; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802CD478; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802CD484; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802CD490; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802CD4A4; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802CD4CC; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802CD4E4; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802CD4F0; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802CD4FC; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802CD510; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802CD520; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802CD53C; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802CD560; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802CD590; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802CD5AC; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802CD5D0; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802CD600; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802CD614; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802CD638; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CD668; // type:label scope:local +@1729 = .data:0x802CD668; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802CD678; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802CD684; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802CD690; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802CD6A0; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802CD6B0; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802CD6CC; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802CD6E0; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802CD700; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802CD71C; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802CD728; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802CD73C; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802CD750; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802CD764; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802CD778; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802CD788; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802CD794; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802CD7A0; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802CD7B4; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802CD7DC; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802CD7F0; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802CD7FC; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802CD808; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802CD81C; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802CD82C; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802CD848; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802CD86C; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802CD89C; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802CD8B8; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802CD8C4; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802CD8D8; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802CD8E4; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802CD8FC; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802CD910; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802CD92C; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802CD94C; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802CD964; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802CD970; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802CD98C; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802CD9A4; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802CD9B0; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802CD9CC; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802CD9E8; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802CD9F4; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802CDA10; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802CDA3C; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802CDA48; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802CDA64; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802CDA8C; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802CDA98; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802CDAB4; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802CDAD0; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802CDADC; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802CDAF8; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802CDB18; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802CDB24; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802CDB40; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802CDB60; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802CDB70; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802CDB7C; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802CDB98; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802CDBAC; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802CDBC8; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802CDBE8; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802CDC20; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802CDC40; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802CDC4C; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802CDC68; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802CDC7C; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802CDC88; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802CDCA4; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802CDCC4; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802CDCD0; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802CDCEC; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802CDD08; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802CDD14; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802CDD30; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802CDD4C; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802CDD58; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802CDD74; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802CDD8C; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802CDD98; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802CDDB4; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802CDDCC; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802CDDD8; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802CDDF4; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802CDE10; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802CDE1C; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802CDE38; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802CDE5C; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802CDE68; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802CDE84; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802CDEA0; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802CDEAC; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802CDEC8; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802CDEF4; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802CDF04; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802CDF10; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802CDF24; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802CDF40; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802CDF68; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802CDF74; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802CDF90; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802CDFA4; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802CDFB0; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802CDFC0; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802CDFCC; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802CDFEC; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802CE000; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802CE038; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802CE054; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802CE060; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802CE07C; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802CE09C; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802CE0A8; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CE0C4; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802CE0E0; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802CE0EC; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802CE108; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802CE128; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802CE13C; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802CE148; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802CE15C; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802CE170; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802CE198; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802CE1AC; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802CE1B8; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802CE1F0; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802CE204; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802CE228; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CE258; // type:label scope:local +@1111 = .data:0x802CE258; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802CE270; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802CE284; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802CE2A0; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802CE2AC; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802CE2C8; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802CE2D4; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802CE2E8; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802CE304; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802CE31C; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802CE330; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802CE34C; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802CE364; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802CE378; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802CE394; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802CE3B0; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802CE3C8; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802CE3D4; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802CE3F0; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802CE40C; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802CE418; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802CE434; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802CE444; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802CE450; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE470; // type:label scope:local +@1716 = .data:0x802CE470; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802CE488; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802CE49C; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802CE4B4; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802CE4C0; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802CE4D4; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802CE4E0; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802CE4F4; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802CE530; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802CE554; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802CE560; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CE57C; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802CE5A0; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802CE5AC; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802CE5C8; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802CE5D8; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802CE5E4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE600; // type:label scope:local +@1728 = .data:0x802CE600; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802CE610; // type:object size:0xA scope:local align:4 data:string +@1951 = .data:0x802CE61C; // type:object size:0x1A scope:local align:4 data:string +@2003 = .data:0x802CE638; // type:object size:0xD scope:local align:4 data:string +@2152 = .data:0x802CE648; // type:object size:0x18 scope:local align:4 data:string +@2154 = .data:0x802CE660; // type:object size:0xA scope:local align:4 data:string +@2153 = .data:0x802CE66C; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802CE678; // type:object size:0x1C scope:global align:4 +@2161 = .data:0x802CE694; // type:object size:0x12 scope:local align:4 data:string +@2163 = .data:0x802CE6A8; // type:object size:0xD scope:local align:4 data:string +@2164 = .data:0x802CE6B8; // type:object size:0xC scope:local align:4 data:string +@2165 = .data:0x802CE6C4; // type:object size:0xC scope:local align:4 +@2162 = .data:0x802CE6D0; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802CE6E4; // type:object size:0x28 scope:global align:4 +@2166 = .data:0x802CE70C; // type:object size:0x14 scope:local align:4 data:string +@2169 = .data:0x802CE720; // type:object size:0x9 scope:local align:4 data:string +@2170 = .data:0x802CE72C; // type:object size:0xC scope:local align:4 +@2172 = .data:0x802CE738; // type:object size:0x14 scope:local align:4 +@2173 = .data:0x802CE74C; // type:object size:0xF scope:local align:4 data:string +@2174 = .data:0x802CE75C; // type:object size:0x1C scope:local align:4 +@2167 = .data:0x802CE778; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802CE79C; // type:object size:0x30 scope:weak align:4 +@2181 = .data:0x802CE7CC; // type:object size:0x17 scope:local align:4 data:string +@2182 = .data:0x802CE7E4; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802CE7F0; // type:object size:0x1C scope:global align:4 +@2183 = .data:0x802CE80C; // type:object size:0x1A scope:local align:4 data:string +@2184 = .data:0x802CE828; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802CE834; // type:object size:0x1C scope:global align:4 +@2186 = .data:0x802CE850; // type:object size:0x12 scope:local align:4 data:string +@2187 = .data:0x802CE864; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802CE878; // type:object size:0x28 scope:global align:4 +@2189 = .data:0x802CE8BC; // type:object size:0x14 scope:local align:4 data:string +@2190 = .data:0x802CE8D0; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802CE8F4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CE928; // type:label scope:local +@1669 = .data:0x802CE928; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802CE940; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802CE954; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802CE970; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802CE97C; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802CE988; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CE9A4; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802CE9C0; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802CE9CC; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CE9E8; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802CE9FC; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802CEA08; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802CEA18; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802CEA24; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802CEA44; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802CEA60; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802CEA6C; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802CEAA0; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802CEAC0; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802CEACC; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802CEAE8; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802CEB04; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802CEB10; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802CEB2C; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802CEB48; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802CEB54; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802CEB70; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802CEB84; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802CEB90; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802CEBAC; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802CEBC4; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802CEBD0; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802CEBEC; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802CEC04; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802CEC10; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802CEC2C; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802CEC44; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802CEC50; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CEC70; // type:label scope:local +@1793 = .data:0x802CEC70; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802CEC80; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802CEC8C; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802CECA8; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802CECBC; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802CECD0; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802CECE4; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802CECF4; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802CED08; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802CED20; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802CED34; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802CED44; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802CED54; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802CED68; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802CED84; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802CEDA0; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802CEDAC; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802CEDC0; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802CEDCC; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802CEDE4; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802CEDF8; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802CEE14; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802CEE34; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802CEE58; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802CEE64; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802CEE80; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802CEE94; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802CEEA0; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802CEEB0; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802CEEBC; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802CEEF4; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802CEF2C; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802CEF50; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802CEF5C; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802CEF78; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802CEF98; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802CEFA4; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802CEFC0; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802CEFDC; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802CEFE8; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802CF004; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802CF018; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802CF028; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802CF034; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802CF040; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802CF054; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802CF07C; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802CF08C; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802CF098; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802CF0B4; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802CF0C4; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802CF108; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802CF11C; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802CF128; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802CF134; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802CF148; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802CF158; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802CF174; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802CF198; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CF1C8; // type:label scope:local +@1211 = .data:0x802CF1C8; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802CF1E0; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802CF1F4; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802CF20C; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802CF218; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802CF224; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802CF240; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802CF258; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802CF264; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CF280; // type:label scope:local +@1796 = .data:0x802CF280; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802CF290; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802CF29C; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802CF2AC; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802CF2BC; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802CF2D4; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802CF2F0; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802CF2FC; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802CF30C; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802CF328; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802CF344; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802CF358; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802CF378; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802CF38C; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802CF3AC; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802CF3B8; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802CF3D0; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802CF3EC; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802CF3F8; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802CF404; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802CF420; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802CF438; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802CF444; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802CF460; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802CF47C; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802CF488; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802CF4A4; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802CF4BC; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802CF4C8; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802CF4E4; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802CF4FC; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802CF508; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802CF524; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802CF53C; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802CF548; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802CF564; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802CF580; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802CF590; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802CF59C; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802CF5B0; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802CF5CC; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802CF5E8; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802CF5FC; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802CF618; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802CF62C; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802CF63C; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802CF648; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802CF654; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802CF668; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802CF690; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802CF6A8; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802CF6B4; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802CF6C0; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802CF6D4; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802CF6E4; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802CF700; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802CF724; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802CF754; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802CF774; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802CF780; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802CF79C; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802CF7B8; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802CF7C4; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802CF7E0; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802CF7F4; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802CF808; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802CF84C; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802CF864; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802CF888; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CF8B8; // type:label scope:local +@1111 = .data:0x802CF8B8; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802CF8D0; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802CF8E4; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802CF908; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802CF914; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802CF920; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802CF93C; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802CF954; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802CF960; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802CF97C; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802CF998; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802CF9A4; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802CF9C0; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802CF9D8; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802CF9E4; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802CFA00; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802CFA1C; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802CFA28; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802CFA44; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802CFA5C; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802CFA6C; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802CFA78; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802CFA8C; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802CFAA8; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802CFABC; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802CFAC8; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802CFAE4; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802CFAFC; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802CFB08; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802CFB24; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802CFB3C; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802CFB50; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802CFB6C; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802CFB88; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802CFB9C; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802CFBBC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CFBD8; // type:label scope:local +@1669 = .data:0x802CFBD8; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CFBEC; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802CFBFC; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802CFC20; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802CFC2C; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802CFC38; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802CFC54; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802CFC68; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802CFC74; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802CFC90; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802CFCB4; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802CFCC0; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802CFCDC; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802CFCF4; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802CFD04; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802CFD10; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802CFD2C; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802CFD40; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802CFD5C; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802CFD7C; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802CFDA4; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802CFDC0; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802CFDE0; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802CFDF4; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802CFE00; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802CFE1C; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802CFE40; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802CFE5C; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802CFE7C; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802CFE98; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802CFEA4; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802CFEC0; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802CFED8; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802CFEF4; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802CFF14; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802CFF2C; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802CFF48; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802CFF68; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802CFF78; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802CFF84; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802CFFA8; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802CFFBC; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802CFFD8; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802CFFF8; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802D000C; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802D0018; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802D0034; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802D0048; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802D0064; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802D0084; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802D0098; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802D00B4; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802D00D4; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802D00F4; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802D0110; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802D0130; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802D0144; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802D0150; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802D016C; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802D0188; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802D0194; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802D01B0; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802D01C8; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802D01D4; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802D01F0; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802D0208; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802D0214; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802D0230; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802D024C; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802D0258; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802D0274; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802D0288; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802D0294; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802D02B0; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802D02C4; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802D02D0; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802D02EC; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802D0304; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802D0310; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802D032C; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802D0348; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802D0354; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802D0370; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802D038C; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802D0398; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802D03B4; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802D03D8; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802D03E4; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802D0400; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802D0420; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802D042C; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802D0448; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802D0460; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802D046C; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802D0488; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802D04A0; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802D04AC; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802D04C8; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802D04DC; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802D04E8; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802D0504; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802D0520; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802D052C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D0548; // type:label scope:local +@1736 = .data:0x802D0548; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802D0558; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802D0564; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802D0578; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802D058C; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802D05A4; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802D05C0; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802D05D8; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802D05F4; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802D060C; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802D0628; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802D0640; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802D065C; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802D0674; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802D0690; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802D06A0; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802D06B0; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802D06D4; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802D06E0; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802D06EC; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802D0708; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802D072C; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802D0738; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802D0754; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802D0770; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802D077C; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802D0798; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802D07B0; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802D07BC; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802D07D8; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802D07F0; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802D07FC; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802D0818; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802D0834; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802D0840; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802D085C; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802D087C; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802D0888; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802D08A4; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802D08C8; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802D08D4; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802D08F0; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802D0910; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802D091C; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802D0938; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802D0954; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802D0960; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802D097C; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802D0998; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802D09A4; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802D09C0; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802D09E0; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802D09EC; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802D0A08; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802D0A40; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802D0A54; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802D0A60; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802D0A70; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802D0A7C; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802D0A9C; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802D0AB0; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802D0AD0; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802D0AE8; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802D0AF4; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802D0B10; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802D0B2C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802D0B38; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802D0B54; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802D0B70; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802D0B7C; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802D0B98; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802D0BB0; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802D0BBC; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802D0BD8; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802D0BF0; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802D0BFC; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802D0C18; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802D0C38; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802D0C44; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802D0C60; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802D0C7C; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802D0C88; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802D0CA4; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802D0CBC; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802D0CC8; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802D0CE4; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802D0D00; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802D0D0C; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802D0D28; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802D0D48; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802D0D58; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802D0D64; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802D0D80; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802D0D94; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802D0DB0; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802D0DD0; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802D0DF0; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802D0E04; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802D0E28; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802D0E48; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802D0E5C; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802D0E68; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802D0E7C; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802D0E8C; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802D0E98; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802D0EA4; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802D0EB8; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802D0EE0; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802D0EF0; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802D0F18; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802D0F28; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802D0F6C; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802D0F80; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802D0F8C; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802D0F98; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802D0FAC; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802D0FBC; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802D0FD8; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802D0FFC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D1030; // type:label scope:local +@1794 = .data:0x802D1030; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802D1040; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802D104C; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802D1068; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802D1078; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802D108C; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802D10A0; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802D10BC; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802D10D0; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802D10EC; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802D1100; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802D1114; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802D112C; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802D1144; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802D1164; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802D1184; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802D11A0; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802D11AC; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802D11C0; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802D11CC; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802D11E4; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802D11F8; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802D1214; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802D1234; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802D1254; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802D1260; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802D127C; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802D1298; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802D12A4; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802D12C0; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802D12DC; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802D12E8; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802D1304; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802D1318; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802D1324; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802D1334; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802D1340; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802D1360; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802D1398; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802D13B4; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802D13C0; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802D13DC; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802D13F8; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802D1404; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802D1420; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802D143C; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802D1448; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802D1464; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802D147C; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802D1488; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802D14A4; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802D14C0; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802D14CC; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802D14E8; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802D14FC; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802D1534; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802D154C; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802D1558; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802D1574; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802D1598; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802D15A4; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802D15C0; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802D15D4; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802D15E4; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802D15F0; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802D15FC; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802D1610; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802D1638; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802D1648; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802D168C; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802D16A4; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802D16B0; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802D16BC; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802D16D0; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802D16E0; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802D16FC; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802D1720; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802D1750; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802D1768; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802D178C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D17C0; // type:label scope:local +@1765 = .data:0x802D17C0; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802D17CC; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802D17E4; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802D1808; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802D1818; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802D1834; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802D1840; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802D184C; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802D1868; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802D1884; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802D1890; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802D18AC; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802D18C4; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802D18D0; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802D18EC; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802D1908; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802D1914; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802D1930; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802D1944; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802D1950; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802D196C; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802D1984; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802D1990; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802D19AC; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802D19C4; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802D19D4; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802D19E0; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802D19F4; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802D1A08; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802D1A24; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802D1A40; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802D1A54; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802D1A64; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802D1A78; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802D1A94; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802D1AB0; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802D1AC4; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802D1AD8; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802D1AF4; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802D1B08; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802D1B14; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802D1B24; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802D1B30; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802D1B50; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802D1B64; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802D1B9C; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802D1BAC; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802D1BBC; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802D1BC8; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802D1BD4; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802D1BE8; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802D1C2C; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802D1C40; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802D1C4C; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802D1C58; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802D1C6C; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802D1C7C; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802D1C98; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802D1CBC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D1CF0; // type:label scope:local +@1680 = .data:0x802D1CF0; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802D1D08; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802D1D1C; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802D1D30; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802D1D3C; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802D1D48; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802D1D64; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802D1D74; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802D1D80; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802D1D9C; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802D1DB0; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802D1DBC; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802D1DD8; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802D1DF0; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802D1DFC; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802D1E18; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802D1E2C; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802D1E38; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802D1E54; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802D1E68; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802D1E74; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802D1E90; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802D1EA4; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802D1EB0; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802D1EC0; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802D1ECC; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802D1F04; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802D1F24; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802D1F30; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802D1F4C; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802D1F6C; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802D1F78; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802D1F94; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802D1FA8; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802D1FB8; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802D1FC4; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802D1FD8; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802D1FF4; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802D2020; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802D202C; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802D2048; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802D2064; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802D2070; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802D208C; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802D209C; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802D20A8; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802D20C4; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802D20DC; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802D20E8; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802D2104; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802D211C; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802D2128; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802D2144; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802D2160; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802D216C; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802D2188; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802D2198; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802D21AC; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802D21C8; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802D21E4; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802D21F0; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802D220C; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802D2220; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802D222C; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802D2248; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802D225C; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802D2268; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802D2284; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802D2294; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802D22A0; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802D22BC; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802D22D0; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802D22DC; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802D22F8; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802D230C; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802D2318; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802D2334; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802D2344; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802D2350; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D2370; // type:label scope:local +@1727 = .data:0x802D2370; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802D2380; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802D238C; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802D239C; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802D23B0; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802D23C8; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802D23EC; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802D240C; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802D2420; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802D2444; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802D2450; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802D2464; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802D2470; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802D2488; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802D249C; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802D24B8; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802D24D8; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802D24F4; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802D2510; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802D2530; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802D2548; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802D2554; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802D2570; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802D2588; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802D2594; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802D25B0; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802D25D0; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802D25DC; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802D25F8; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802D260C; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802D2618; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802D2628; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802D2634; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802D2654; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802D268C; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802D26A8; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802D26B8; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802D26C4; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802D26D8; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802D26F4; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802D2708; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802D2740; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802D2758; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802D2774; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802D2788; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802D27A4; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802D27C4; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802D27E4; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802D27F0; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802D280C; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802D2820; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802D2830; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802D283C; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802D2848; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802D285C; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802D2884; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802D2894; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802D28D8; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802D28F4; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802D2900; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802D290C; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802D2920; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802D2930; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802D294C; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802D2970; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802D29A0; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802D29B8; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802D29DC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2A10; // type:label scope:local +@1769 = .data:0x802D2A10; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802D2A20; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802D2A2C; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802D2A40; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802D2A50; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802D2A6C; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802D2A78; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802D2A84; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802D2AA0; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802D2AB4; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802D2AC4; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802D2AD0; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802D2ADC; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802D2AF0; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802D2B18; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802D2B30; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802D2B3C; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802D2B48; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802D2B5C; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802D2B6C; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802D2B88; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802D2BAC; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802D2BDC; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802D2BF0; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802D2C14; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802D2C44; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802D2C7C; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802D2C90; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802D2C9C; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802D2CAC; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802D2CB8; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802D2CD8; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802D2CEC; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802D2D0C; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802D2D20; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802D2D2C; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802D2D60; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802D2D80; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802D2D8C; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802D2DA8; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802D2DC8; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802D2DD4; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802D2DF0; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802D2E0C; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802D2E18; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802D2E34; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802D2E48; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802D2E5C; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802D2E84; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802D2E94; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802D2ED8; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802D2EEC; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802D2F10; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D2F40; // type:label scope:local +@1669 = .data:0x802D2F40; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802D2F54; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802D2F64; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802D2F7C; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802D2F88; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802D2F98; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D2FA4; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802D2FB8; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802D2FD4; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802D2FEC; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802D2FF8; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802D3014; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802D3028; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802D3034; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802D3050; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D3070; // type:label scope:local +@1669 = .data:0x802D3070; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802D3084; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802D3094; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802D30AC; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802D30B8; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802D30C8; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802D30D4; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802D30E8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802D3108; // type:label scope:local +@1106 = .data:0x802D3108; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802D3114; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802D3120; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802D3134; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802D3140; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802D3150; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802D315C; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802D3170; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802D319C; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802D31D0; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802D320C; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802D3250; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D3460; // type:label scope:local +@1206 = .data:0x802D3460; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802D347C; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802D3494; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802D34AC; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802D34B8; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802D34C4; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802D34D8; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802D34F4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D3540; // type:label scope:local +@1787 = .data:0x802D3540; // type:object size:0xE scope:local align:4 data:string +@2477 = .data:0x802D3550; // type:object size:0x23 scope:local align:4 data:string +@4670 = .data:0x802D3574; // type:object size:0x11 scope:local align:4 data:string +@4672 = .data:0x802D3588; // type:object size:0xA scope:local align:4 data:string +@4673 = .data:0x802D3594; // type:object size:0xE scope:local align:4 data:string +@4674 = .data:0x802D35A4; // type:object size:0xC scope:local align:4 +@4671 = .data:0x802D35B0; // type:object size:0x14 scope:local align:4 +@4676 = .data:0x802D35D0; // type:object size:0x11 scope:local align:4 data:string +@4677 = .data:0x802D35E4; // type:object size:0x14 scope:local align:4 +@4681 = .data:0x802D3604; // type:object size:0xC scope:local align:4 data:string +@4690 = .data:0x802D3654; // type:object size:0xC scope:local align:4 data:string +@4692 = .data:0x802D3660; // type:object size:0x9 scope:local align:4 data:string +@4691 = .data:0x802D366C; // type:object size:0xC scope:local align:4 +@4693 = .data:0x802D368C; // type:object size:0xD scope:local align:4 data:string +@4695 = .data:0x802D36A8; // type:object size:0x11 scope:local align:4 data:string +@4697 = .data:0x802D36BC; // type:object size:0xC scope:local align:4 data:string +@4696 = .data:0x802D36C8; // type:object size:0xC scope:local align:4 +@4704 = .data:0x802D36F4; // type:object size:0xB scope:local align:4 data:string +@4712 = .data:0x802D3734; // type:object size:0x14 scope:local align:4 data:string +@4715 = .data:0x802D3754; // type:object size:0xC scope:local align:4 data:string +@4716 = .data:0x802D3760; // type:object size:0xD scope:local align:4 data:string +@4717 = .data:0x802D3770; // type:object size:0x9 scope:local align:4 data:string +@4718 = .data:0x802D377C; // type:object size:0x14 scope:local align:4 +@4714 = .data:0x802D3790; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802D37BC; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802D39C0; // type:label scope:local +@1379 = .data:0x802D39C0; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802D39D4; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802D39E4; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802D39F8; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802D3A04; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802D3A14; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802D3A20; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802D3A34; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802D3A40; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802D3A54; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802D3A74; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802D3A88; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802D3AC0; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802D3AD4; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802D3AE8; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802D3AF4; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802D3B10; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802D3B24; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802D3B30; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802D3B48; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802D3B5C; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802D3B68; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802D3B80; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802D3B94; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802D3BA0; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802D3BB8; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802D3BCC; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802D3BD8; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802D3BF0; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802D3C04; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802D3C10; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802D3C2C; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802D3C40; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802D3C4C; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802D3C64; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802D3C78; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802D3C84; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802D3CA4; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802D3CB8; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802D3CC4; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802D3CE0; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802D3CF4; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802D3D00; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802D3D18; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802D3D2C; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802D3D38; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802D3D5C; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802D3D70; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802D3D7C; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802D3DA0; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802D3DB4; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802D3DC0; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802D3DE0; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802D3DF4; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802D3E00; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802D3E14; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802D3E28; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802D3E34; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802D3E4C; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802D3E60; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802D3E6C; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802D3E80; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802D3E94; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802D3EA0; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802D3EB4; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802D3EC8; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802D3ED4; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802D3EE8; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802D3EFC; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802D3F08; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802D3F1C; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802D3F30; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802D3F3C; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802D3F54; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802D3F68; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D3F78; // type:label scope:local +@1411 = .data:0x802D3F78; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802D3F8C; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802D3F9C; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802D3FB0; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802D3FBC; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802D3FC8; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802D4020; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802D4030; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802D403C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802D4068; // type:label scope:local +@1206 = .data:0x802D4068; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802D4074; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802D4080; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802D408C; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802D4098; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802D4124; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802D41B0; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802D41C0; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802D41CC; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802D41DC; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802D41EC; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802D4200; // type:object size:0x10 scope:local align:4 data:string +@1520 = .data:0x802D4210; // type:object size:0x9 scope:local align:4 data:string +@1521 = .data:0x802D421C; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802D4228; // type:object size:0x14 scope:local align:4 +@1524 = .data:0x802D423C; // type:object size:0xC scope:local align:4 data:string +@1525 = .data:0x802D4248; // type:object size:0xA scope:local align:4 data:string +@1526 = .data:0x802D4254; // type:object size:0x24 scope:local align:4 +@1527 = .data:0x802D4278; // type:object size:0xE scope:local align:4 data:string +@1528 = .data:0x802D4288; // type:object size:0x2C scope:local align:4 +@1518 = .data:0x802D42B4; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802D42E8; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802D4370; // type:label scope:local +@1206 = .data:0x802D4370; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802D4380; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802D438C; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802D4398; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802D43AC; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802D43B8; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802D43C8; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802D43D4; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802D43E8; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802D4414; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802D4448; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D4658; // type:label scope:local +@991 = .data:0x802D4658; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802D466C; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802D467C; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802D4688; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802D4694; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802D46A4; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802D46B0; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802D46BC; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802D46CC; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802D46E0; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802D46EC; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802D46F8; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802D4708; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802D471C; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802D4730; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802D4744; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802D475C; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802D4774; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802D478C; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802D47A4; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D47BC; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802D47D4; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802D47E8; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802D47F8; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802D4808; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802D4818; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802D4828; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802D4838; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802D484C; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802D4860; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802D4870; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802D4884; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802D4894; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802D48A8; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802D48BC; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D48D4; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D48EC; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802D4900; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802D490C; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802D491C; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802D4928; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802D4938; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802D4948; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802D4958; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802D4968; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802D4974; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802D4984; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802D4990; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802D49A0; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802D49B0; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802D49C8; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802D49E0; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802D49F4; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802D4A08; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802D4A1C; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802D4A30; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802D4A44; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802D4A58; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802D4A64; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802D4A88; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802D4AA8; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802D4AC4; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802D4AE0; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802D4AF4; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802D4B08; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802D4B14; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802D4B28; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802D4B3C; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802D4B50; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802D4B64; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802D4B74; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802D4B80; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802D4B8C; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802D4BA0; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802D4BBC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D4C08; // type:label scope:local +@991 = .data:0x802D4C08; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802D4C1C; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802D4C2C; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802D4C40; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802D4C54; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802D4C64; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802D4C74; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802D4C80; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802D4C8C; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802D4C9C; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802D4CBC; // type:object size:0x1D scope:local align:4 data:string +@1199 = .data:0x802D4CDC; // type:object size:0x2A scope:local align:4 data:string +@1201 = .data:0x802D4D08; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802D4D18; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D4D28; // type:label scope:local +@1106 = .data:0x802D4D28; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802D4D3C; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802D4D4C; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802D4D5C; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802D4D88; // type:label scope:local +@1022 = .data:0x802D4D88; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802D4D94; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802D4DA0; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802D4DAC; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802D4DB8; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802D4DC8; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802D4DD4; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802D4DE0; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802D4DEC; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802D4E00; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802D4E1C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802D4E58; // type:label scope:local +@1543 = .data:0x802D4E58; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802D4E64; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802D4E84; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802D4E90; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802D4EA0; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802D4EAC; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802D4EC0; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802D4EDC; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802D5000; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802D5018; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802D5050; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802D505C; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802D5068; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802D5088; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802D5094; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802D50A4; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802D50B0; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802D50BC; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802D50C8; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802D50F8; // type:label scope:local +@388 = .data:0x802D50F8; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802D5108; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802D5114; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802D512C; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802D5138; // type:object size:0xC scope:local align:4 +@411 = .data:0x802D5144; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802D5158; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802D5174; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D51C0; // type:label scope:local +@856 = .data:0x802D51C0; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802D51CC; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802D51DC; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802D51E8; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802D51F4; // type:object size:0xC scope:global align:4 +@927 = .data:0x802D5200; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802D5214; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802D5220; // type:object size:0xC scope:global align:4 +@929 = .data:0x802D522C; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802D5240; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802D524C; // type:object size:0xC scope:global align:4 +@931 = .data:0x802D5258; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802D5268; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802D5274; // type:object size:0xC scope:global align:4 +@933 = .data:0x802D5280; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802D528C; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802D5298; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D52A8; // type:label scope:local +@1828 = .data:0x802D52A8; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802D52B4; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802D52C0; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802D52D0; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802D52E8; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802D52F4; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802D5300; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802D5310; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802D531C; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802D5328; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802D5340; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802D534C; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802D5358; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802D5368; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802D5374; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802D538C; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802D5398; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802D53A4; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802D53B4; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802D53C4; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802D53E0; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802D53F0; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802D5400; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802D5410; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802D5424; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802D543C; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802D5450; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802D5464; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802D5474; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802D5480; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802D5498; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802D54A4; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802D54B0; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802D54C0; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802D54D0; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802D54EC; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802D54F8; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802D5504; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802D5514; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802D5520; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802D5534; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802D5540; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802D554C; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802D5558; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802D5568; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802D5588; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802D5598; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802D55A4; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802D55B4; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802D55C8; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802D55D4; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802D55EC; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802D55F8; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802D5604; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802D5614; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802D5644; // type:object size:0x28 scope:local align:4 +@2887 = .data:0x802D566C; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802D5678; // type:object size:0xC scope:local align:4 +@2888 = .data:0x802D5684; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802D5698; // type:object size:0x10 scope:weak align:4 +@2893 = .data:0x802D56C4; // type:object size:0xC scope:local align:4 data:string +@2896 = .data:0x802D56E8; // type:object size:0x14 scope:local align:4 +@2897 = .data:0x802D56FC; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802D5708; // type:object size:0x24 scope:local align:4 +@2894 = .data:0x802D572C; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802D5758; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802D57D0; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802D57E8; // type:label scope:local +@1113 = .data:0x802D57E8; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802D57F4; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x802D5800; // type:object size:0xD scope:local align:4 data:string +@1701 = .data:0x802D5810; // type:object size:0xC scope:local align:4 +@1703 = .data:0x802D581C; // type:object size:0x14 scope:local align:4 +@1699 = .data:0x802D5830; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802D584C; // type:object size:0x30 scope:global align:4 +@1712 = .data:0x802D587C; // type:object size:0xC scope:local align:4 data:string +@1713 = .data:0x802D5888; // type:object size:0xD scope:local align:4 data:string +@1714 = .data:0x802D5898; // type:object size:0x9 scope:local align:4 data:string +@1715 = .data:0x802D58A4; // type:object size:0x14 scope:local align:4 +@1717 = .data:0x802D58B8; // type:object size:0x1C scope:local align:4 +@1711 = .data:0x802D58D4; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802D58F8; // type:object size:0x124 scope:global align:4 +@1770 = .data:0x802D5A1C; // type:object size:0xA scope:local align:4 data:string +@1772 = .data:0x802D5A28; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x802D5A34; // type:object size:0xC scope:local align:4 +@1773 = .data:0x802D5A54; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802D5A60; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802D5A80; // type:object size:0xB scope:local align:4 data:string +@1777 = .data:0x802D5A8C; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x802D5A9C; // type:object size:0x9 scope:local align:4 data:string +@1779 = .data:0x802D5AA8; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802D5AB4; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802D5AD8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D5B10; // type:label scope:local +spiderSE = .data:0x802D5B10; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802D5B24; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802D5B34; // type:object size:0x9 scope:local align:4 data:string +@3168 = .data:0x802D5B40; // type:object size:0x24 scope:local align:4 +@3173 = .data:0x802D5B64; // type:object size:0x14 scope:local align:4 data:string +@3172 = .data:0x802D5B78; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802D5B84; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D5BA0; // type:label scope:local +leg_index__4Kumo = .data:0x802D5BA0; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802D5BD0; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802D5BF4; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802D5C04; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802D5C10; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802D5C48; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802D5C68; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802D5C94; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802D5CA0; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802D5CAC; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802D5CC4; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802D5CD0; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802D5CDC; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802D5CF4; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802D5D00; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D5D18; // type:label scope:local +@1109 = .data:0x802D5D18; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802D5D24; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802D5D30; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802D5D3C; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802D5D4C; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802D5D58; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802D5D6C; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802D5D88; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802D5DAC; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802D5ED0; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802D5EEC; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802D5EFC; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802D5F08; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802D5F18; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802D5F28; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802D5F34; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802D5F40; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802D5F60; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802D5F6C; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802D5F8C; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802D5F98; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802D5FA4; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802D5FB4; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802D5FC0; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802D5FCC; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802D5FF0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D6028; // type:label scope:local +snakeSE = .data:0x802D6028; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802D604C; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802D6058; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802D6080; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802D60B8; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802D60CC; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802D60D8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D60F0; // type:label scope:local +@1221 = .data:0x802D60F0; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802D6100; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802D610C; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802D6128; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802D6154; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802D6160; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802D616C; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802D618C; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802D6198; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D61B0; // type:label scope:local +@1171 = .data:0x802D61B0; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802D61BC; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802D61C8; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802D6200; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802D620C; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802D621C; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802D6228; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802D623C; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802D6258; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802D627C; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802D63A0; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802D63BC; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802D63CC; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802D63D8; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802D63E8; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802D6404; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802D6410; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802D6420; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802D643C; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802D6448; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802D6468; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802D6474; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802D6480; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802D64A0; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802D64AC; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D64CC; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802D64D8; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D64E4; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802D64F4; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802D6500; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802D650C; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802D6530; // type:object size:0x1C scope:weak align:4 +@6098 = .data:0x802D6568; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802D6590; // type:label scope:local +@979 = .data:0x802D6590; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802D65A4; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802D65B4; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D65C0; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D65D0; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D65DC; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802D65F0; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802D660C; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D6720; // type:label scope:local +@1080 = .data:0x802D6720; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D672C; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D6738; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D6744; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D6750; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D6764; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D6780; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D67B0; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D67BC; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D67CC; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D67D8; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D67EC; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D6808; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D682C; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D6950; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D695C; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D6968; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D6988; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D6994; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D69B4; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D69C0; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D69D0; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D69DC; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D69E8; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D6A0C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D6A48; // type:label scope:local +kingSE = .data:0x802D6A48; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D6A80; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D6A8C; // type:object size:0x24 scope:local align:4 +@1783 = .data:0x802D6AB0; // type:object size:0x40 scope:local align:4 +@6169 = .data:0x802D6AF0; // type:object size:0x44 scope:local align:4 +@6170 = .data:0x802D6B34; // type:object size:0xC scope:local align:4 data:string +@6181 = .data:0x802D6B6C; // type:object size:0x14 scope:local align:4 data:string +@6180 = .data:0x802D6B80; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D6B8C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D6BA8; // type:label scope:local +@1229 = .data:0x802D6BA8; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D6BB8; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D6BC4; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D6BDC; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D6C08; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D6C14; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D6C20; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D6C38; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D6C44; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D6C50; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D6C74; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D6CB4; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D6CC0; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D6CCC; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D6CE8; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D6CF4; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D6D00; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D6D20; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D6D2C; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D6D44; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D6D60; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D6D6C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D6D88; // type:label scope:local +@1251 = .data:0x802D6D88; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D6D94; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D6DA0; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D6DAC; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D6DBC; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D6DC8; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D6DDC; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D6DF8; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D6E1C; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D6F40; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D6F4C; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D6F58; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D6F78; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D6F84; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D6F90; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D6FA0; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D6FAC; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D6FB8; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D6FDC; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7018; // type:label scope:local +@1603 = .data:0x802D7018; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D7028; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D7034; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D7050; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D7064; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D7070; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D707C; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D7094; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D70C0; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D70CC; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D70F0; // type:label scope:local +@995 = .data:0x802D70F0; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D70FC; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D7108; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D7118; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D7124; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D7138; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D7154; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D7178; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802D729C; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802D72A8; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802D72B4; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802D72D4; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802D72E0; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802D7300; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802D730C; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802D731C; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802D7328; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802D7334; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802D7358; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7390; // type:label scope:local +pomSE = .data:0x802D7390; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802D73A8; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802D73B4; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802D73EC; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802D7400; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802D740C; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802D7418; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802D7430; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802D745C; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802D7468; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D7490; // type:label scope:local +@910 = .data:0x802D7490; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802D74A0; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802D74AC; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802D74B8; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802D74C4; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802D74D4; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802D74E0; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802D74F4; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802D7510; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802D7534; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802D7658; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802D7668; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802D7674; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802D7684; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802D7690; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802D769C; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802D76C0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D76F8; // type:label scope:local +@1053 = .data:0x802D76F8; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802D7704; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802D7710; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802D771C; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802D772C; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802D7738; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802D774C; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802D7768; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802D778C; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802D78B0; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802D78BC; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802D78C8; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802D78D8; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802D78E4; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802D78F0; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802D7914; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7950; // type:label scope:local +@1668 = .data:0x802D7950; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802D7960; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802D796C; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802D7980; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802D798C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D79A8; // type:label scope:local +@1334 = .data:0x802D79A8; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802D79B8; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802D79C4; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802D79D0; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802D79DC; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802D79EC; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802D79F8; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802D7A0C; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802D7A28; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802D7A4C; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802D7B70; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802D7B80; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802D7B8C; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802D7B9C; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802D7BA8; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D7BB4; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802D7BD8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7C10; // type:label scope:local +@1668 = .data:0x802D7C10; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802D7C24; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802D7C34; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802D7C48; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802D7C54; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D7C70; // type:label scope:local +@964 = .data:0x802D7C70; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802D7C7C; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802D7C88; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D7C94; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D7CA4; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D7CB0; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802D7CC4; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802D7CE0; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802D7D04; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802D7E28; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802D7E34; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802D7E40; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802D7E50; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802D7E5C; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802D7E68; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802D7E8C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D7EC8; // type:label scope:local +@1288 = .data:0x802D7EC8; // type:object size:0xB scope:local align:4 data:string +@1730 = .data:0x802D7ED4; // type:object size:0xC scope:local align:4 data:string +@1741 = .data:0x802D7F0C; // type:object size:0x14 scope:local align:4 data:string +@1740 = .data:0x802D7F20; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802D7F2C; // type:object size:0xC scope:global align:4 +@1742 = .data:0x802D7F38; // type:object size:0x1A scope:local align:4 data:string +@1744 = .data:0x802D7F54; // type:object size:0x29 scope:local align:4 data:string +@1743 = .data:0x802D7F80; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802D7F8C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D7FB0; // type:label scope:local +patternTable = .data:0x802D7FB0; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802D8030; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802D805C; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802D8088; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802D80E8; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802D8148; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802D815C; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802D8170; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802D81E0; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802D8250; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802D8268; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802D8280; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802D82D4; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802D8328; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802D8378; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802D83C8; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802D8418; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802D8468; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802D8490; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802D84B8; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802D84E4; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802D8510; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802D8528; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802D8540; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802D8578; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802D85B0; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802D8614; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802D8678; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802D86B0; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802D86E8; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802D8708; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802D8728; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802D8740; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802D8758; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802D87C4; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802D8830; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802D88C8; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802D8960; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802D899C; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802D89D8; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802D89E4; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802D89F0; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802D8AE0; // type:label scope:local +@877 = .data:0x802D8AE0; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802D8AEC; // type:object size:0xE scope:local align:4 data:string +@970 = .data:0x802D8AFC; // type:object size:0xD scope:local align:4 data:string +@971 = .data:0x802D8B0C; // type:object size:0xD scope:local align:4 data:string +@972 = .data:0x802D8B1C; // type:object size:0xC scope:local align:4 data:string +@1088 = .data:0x802D8B28; // type:object size:0x30 scope:local align:4 +@1177 = .data:0x802D8B58; // type:object size:0x1B scope:local align:4 +@1178 = .data:0x802D8B74; // type:object size:0xE scope:local align:4 +@1179 = .data:0x802D8B84; // type:object size:0x14 scope:local align:4 +@1180 = .data:0x802D8B98; // type:object size:0x14 scope:local align:4 +@1181 = .data:0x802D8BAC; // type:object size:0xC scope:local align:4 +@1182 = .data:0x802D8BB8; // type:object size:0x15 scope:local align:4 +@1183 = .data:0x802D8BD0; // type:object size:0x17 scope:local align:4 +@1184 = .data:0x802D8BE8; // type:object size:0xA scope:local align:4 +@1185 = .data:0x802D8BF4; // type:object size:0x9 scope:local align:4 +@1186 = .data:0x802D8C00; // type:object size:0xC scope:local align:4 +@1187 = .data:0x802D8C0C; // type:object size:0xD scope:local align:4 +@1188 = .data:0x802D8C1C; // type:object size:0x9 scope:local align:4 +@1190 = .data:0x802D8C28; // type:object size:0x26 scope:local align:4 +@1200 = .data:0x802D8C50; // type:object size:0x10 scope:local align:4 data:string +@1211 = .data:0x802D8C60; // type:object size:0x13 scope:local align:4 data:string +@1214 = .data:0x802D8C74; // type:object size:0x9 scope:local align:4 data:string +@1215 = .data:0x802D8C80; // type:object size:0xC scope:local align:4 +@1217 = .data:0x802D8C8C; // type:object size:0x14 scope:local align:4 +@1219 = .data:0x802D8CA0; // type:object size:0x1C scope:local align:4 +@1212 = .data:0x802D8CBC; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802D8CE0; // type:object size:0x34 scope:global align:4 +@1227 = .data:0x802D8D48; // type:object size:0x12 scope:local align:4 data:string +@1228 = .data:0x802D8D5C; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802D8D78; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D8DC8; // type:label scope:local +@890 = .data:0x802D8DC8; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802D8DD4; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802D8DE4; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802D91E4; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802D92E4; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802D93E4; // type:object size:0x190 scope:local align:4 +@1549 = .data:0x802D9574; // type:object size:0x19 scope:local align:4 data:string +@1721 = .data:0x802D9590; // type:object size:0x1C scope:local align:4 data:string +@1723 = .data:0x802D95AC; // type:object size:0xF scope:local align:4 data:string +@1724 = .data:0x802D95BC; // type:object size:0x14 scope:local align:4 data:string +@1725 = .data:0x802D95D0; // type:object size:0xC scope:local align:4 +@1726 = .data:0x802D95DC; // type:object size:0x14 scope:local align:4 data:string +@1727 = .data:0x802D95F0; // type:object size:0x1A scope:local align:4 data:string +@1728 = .data:0x802D960C; // type:object size:0x10 scope:local align:4 data:string +@1729 = .data:0x802D961C; // type:object size:0x14 scope:local align:4 +@1722 = .data:0x802D9630; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802D965C; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802D966C; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802D967C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D9688; // type:label scope:local +@890 = .data:0x802D9688; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802D9694; // type:object size:0xF scope:local align:4 data:string +@1015 = .data:0x802D96A4; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802D96BC; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802D96D4; // type:object size:0x16 scope:local align:4 data:string +@1018 = .data:0x802D96EC; // type:object size:0x18 scope:local align:4 data:string +@1019 = .data:0x802D9704; // type:object size:0x18 scope:local align:4 data:string +@1020 = .data:0x802D971C; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D9738; // type:label scope:local +@1133 = .data:0x802D9738; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D9744; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802D9754; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802D976C; // type:object size:0x15 scope:local align:4 data:string +@1190 = .data:0x802D9784; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802D97A0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D97B8; // type:label scope:local +@1133 = .data:0x802D97B8; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802D97CC; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802D97E0; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802D97F8; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802D9810; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802D981C; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D9834; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D984C; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D9864; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D987C; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D9894; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802D98AC; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802D98BC; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D98D4; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D98EC; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D9904; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802D991C; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802D9928; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D9940; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D9958; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802D9970; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802D9988; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D99A0; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802D99B8; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D99D0; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802D99E8; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D9A00; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802D9A18; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802D9A30; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802D9A4C; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802D9A68; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802D9A74; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802D9A8C; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D9AA4; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D9ABC; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D9AD4; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D9AEC; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D9B04; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D9B1C; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D9B34; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D9B4C; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802D9B68; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802D9B84; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802D9B90; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802D9BAC; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802D9BC8; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802D9BE4; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802D9BF4; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D9C0C; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D9C24; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D9C3C; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D9C54; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D9C6C; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802D9C84; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802D9C9C; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802D9CB4; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802D9CCC; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802D9CE4; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802D9CFC; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802D9D14; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802D9D2C; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802D9D44; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802D9D5C; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802D9D74; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802D9D8C; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802D9DA4; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802D9DBC; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802D9DD4; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802D9DEC; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802D9E04; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802D9E1C; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802D9E34; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802D9E4C; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D9E64; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D9E7C; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D9E94; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D9EAC; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802D9EC4; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802D9EDC; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802D9EF4; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802D9F0C; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802D9F24; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802D9F3C; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802D9F54; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802D9F6C; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802D9F84; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802D9F9C; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802D9FB4; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802D9FCC; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802D9FE4; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802D9FFC; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802DA014; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802DA02C; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802DA044; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802DA05C; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802DA074; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802DA08C; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802DA0A4; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802DA0BC; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802DA0D4; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802DA0EC; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802DA104; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802DA11C; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802DA134; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802DA14C; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802DA164; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802DA17C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802DA188; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802DA194; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802DA1A0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802DA1AC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802DA1B8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802DA1C4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802DA1D0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802DA1DC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802DA1E8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802DA1F4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802DA200; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802DA20C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802DA218; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802DA224; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802DA230; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802DA23C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802DA248; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802DA254; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802DA260; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802DA26C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802DA278; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802DA284; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802DA290; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802DA29C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802DA2A8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802DA2B4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802DA2C0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802DA2CC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802DA2D8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802DA2E4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802DA2F0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802DA2FC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802DA308; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802DA314; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802DA320; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802DA32C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802DA338; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802DA344; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802DA350; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802DA35C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802DA368; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802DA374; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802DA380; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802DA38C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802DA398; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802DA3A4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802DA3B0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802DA3BC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802DA3C8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802DA3D4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802DA3E0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802DA3EC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802DA3F8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802DA404; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802DA410; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802DA41C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802DA428; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802DA434; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802DA440; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802DA44C; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802DA464; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802DA6D0; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802DA6E4; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DA700; // type:label scope:local +@1133 = .data:0x802DA700; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802DA710; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802DA720; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802DA738; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802DA750; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802DA768; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802DA780; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802DA798; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802DA7B0; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802DA7C8; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DA7E0; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802DA7F8; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802DA810; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802DA828; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802DA840; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802DA858; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802DA870; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802DA888; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802DA8A0; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802DA8B8; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802DA8D0; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802DA8E8; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802DA900; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802DA918; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802DA930; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802DA948; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802DA960; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802DA978; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DA990; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802DA9A8; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802DA9C0; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802DA9D8; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802DA9F0; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802DAA08; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802DAA20; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802DAA38; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802DAA50; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802DAA68; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802DAA80; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802DAA98; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802DAAB0; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802DAAC8; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802DAAE0; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802DAAF8; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802DAB10; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802DAB28; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802DAB40; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802DAB58; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802DAB70; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802DAB88; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802DABA0; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802DABB8; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802DABD0; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802DABE8; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802DAC00; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802DAC18; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802DAC30; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802DAC48; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802DAC60; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802DAC78; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802DAC90; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802DACA8; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802DACC0; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802DACD8; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802DACF0; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802DAD08; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802DAD20; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802DAD38; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802DAD50; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802DAD68; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802DAD80; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802DAD98; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802DADB0; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802DADC8; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802DADE0; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802DADF8; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802DAE10; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802DAE28; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802DAE40; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802DAE58; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802DAE70; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802DAE88; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802DAEA0; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802DAEB8; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802DAED0; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802DAEE8; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802DAF00; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802DAF18; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802DAF30; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802DAF48; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802DAF60; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802DAF78; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802DAF90; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802DAFA8; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802DAFC0; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802DAFD8; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802DAFF0; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802DB008; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802DB020; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802DB038; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802DB050; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802DB068; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802DB080; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802DB098; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802DB0B0; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802DB0C8; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802DB0E0; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802DB0F8; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802DB110; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802DB128; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802DB140; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802DB158; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802DB170; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802DB188; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802DB1A0; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802DB1B8; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802DB1D0; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802DB1E8; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802DB200; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802DB218; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802DB230; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802DB248; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802DB260; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802DB278; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802DB290; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802DB2A8; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802DB2C0; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802DB2D8; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802DB2F0; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802DB308; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802DB320; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802DB338; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DB350; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802DB368; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802DB380; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802DB398; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802DB3B0; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802DB3C8; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802DB3E0; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802DB3F8; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802DB410; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802DB428; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802DB440; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802DB458; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802DB470; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802DB488; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802DB6DC; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802DB6E4; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802DB6FC; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802DB714; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DB730; // type:label scope:local +@1767 = .data:0x802DB730; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802DB73C; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802DB74C; // type:object size:0x3C scope:local align:4 +@2048 = .data:0x802DB788; // type:object size:0x17 scope:local align:4 data:string +@2049 = .data:0x802DB7A0; // type:object size:0x17 scope:local align:4 data:string +@2050 = .data:0x802DB7B8; // type:object size:0x17 scope:local align:4 data:string +@2051 = .data:0x802DB7D0; // type:object size:0x17 scope:local align:4 data:string +@2052 = .data:0x802DB7E8; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DB800; // type:label scope:local +@890 = .data:0x802DB800; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802DB814; // type:object size:0x14 scope:local align:4 data:string +@1461 = .data:0x802DB828; // type:object size:0x38 scope:local align:4 +@1701 = .data:0x802DB860; // type:object size:0x15 scope:local align:4 data:string +@1702 = .data:0x802DB878; // type:object size:0x15 scope:local align:4 data:string +@1703 = .data:0x802DB890; // type:object size:0x15 scope:local align:4 data:string +@1704 = .data:0x802DB8A8; // type:object size:0x17 scope:local align:4 data:string +@1705 = .data:0x802DB8C0; // type:object size:0x17 scope:local align:4 data:string +@1706 = .data:0x802DB8D8; // type:object size:0x17 scope:local align:4 data:string +@1707 = .data:0x802DB8F0; // type:object size:0x17 scope:local align:4 data:string +@1708 = .data:0x802DB908; // type:object size:0x17 scope:local align:4 data:string +@1709 = .data:0x802DB920; // type:object size:0x16 scope:local align:4 data:string +@1710 = .data:0x802DB938; // type:object size:0x15 scope:local align:4 data:string +@1995 = .data:0x802DB950; // type:object size:0xC scope:local align:4 data:string +@1015 = .data:0x802DB960; // type:object size:0x15 scope:local align:4 data:string +@1016 = .data:0x802DB978; // type:object size:0x16 scope:local align:4 data:string +@1068 = .data:0x802DB990; // type:object size:0x4C scope:local align:4 +@1840 = .data:0x802DB9DC; // type:object size:0x4C scope:local align:4 +@1873 = .data:0x802DBA28; // type:object size:0x38 scope:local align:4 +@1916 = .data:0x802DBA60; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802DBA80; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802DBA8C; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802DBAA4; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802DBAB4; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802DBACC; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802DBAE4; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802DBB00; // type:label scope:local +@1810 = .data:0x802DBB00; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802DBB0C; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802DBB1C; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802DBB9C; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802DBBC0; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802DBBE4; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802DBC08; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802DBC2C; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802DBC44; // type:object size:0x17 scope:local align:4 data:string +@2274 = .data:0x802DBC5C; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802DBC74; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802DBC8C; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802DBCA8; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802DBCC0; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802DBCD8; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802DBCF0; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802DBD08; // type:label scope:local +@1133 = .data:0x802DBD08; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802DBD14; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802DBD24; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802DBD3C; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802DBD54; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802DBD6C; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802DBDA0; // type:label scope:local +@1133 = .data:0x802DBDA0; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802DBDAC; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802DBDC0; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802DBE00; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802DBE40; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802DBE80; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802DBEA0; // type:object size:0xC scope:local align:32 +@871 = .data:0x802DBEB0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802DBEC8; // type:label scope:local +@749 = .data:0x802DBEC8; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802DBED8; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802DBEEC; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802DBF04; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802DBF18; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802DBF34; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802DBF44; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802DBF58; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802DBF74; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802DBFA0; // type:label scope:local +@885 = .data:0x802DBFA0; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802DBFB4; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DBFCC; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802DBFD8; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802DBFE4; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802DC000; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802DC018; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802DC028; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802DC034; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802DC048; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802DC058; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802DC06C; // type:object size:0x11 scope:local align:4 +@1472 = .data:0x802DC080; // type:object size:0xD scope:local align:4 +@1473 = .data:0x802DC090; // type:object size:0xB scope:local align:4 +@1474 = .data:0x802DC09C; // type:object size:0x21 scope:local align:4 +@1475 = .data:0x802DC0C0; // type:object size:0xF scope:local align:4 +@1476 = .data:0x802DC0D0; // type:object size:0x1D scope:local align:4 +@1477 = .data:0x802DC0F0; // type:object size:0x11 scope:local align:4 +@1478 = .data:0x802DC104; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802DC114; // type:object size:0xF scope:local align:4 +@1481 = .data:0x802DC124; // type:object size:0x15 scope:local align:4 +@1482 = .data:0x802DC13C; // type:object size:0xB scope:local align:4 +@1484 = .data:0x802DC148; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802DC154; // type:object size:0x18 scope:local align:4 data:string +@1487 = .data:0x802DC16C; // type:object size:0x17 scope:local align:4 data:string +@1488 = .data:0x802DC184; // type:object size:0x16 scope:local align:4 data:string +@1495 = .data:0x802DC19C; // type:object size:0x1B scope:local align:4 +@1596 = .data:0x802DC1B8; // type:object size:0x9 scope:local align:4 data:string +@1597 = .data:0x802DC1C4; // type:object size:0xC scope:local align:4 +@1601 = .data:0x802DC1EC; // type:object size:0x17 scope:local align:4 data:string +@1603 = .data:0x802DC204; // type:object size:0xD scope:local align:4 data:string +@1602 = .data:0x802DC214; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802DC220; // type:object size:0x10 scope:weak align:4 +@1607 = .data:0x802DC230; // type:object size:0xD scope:local align:4 data:string +@1609 = .data:0x802DC240; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802DC250; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802DC25C; // type:object size:0x10 scope:weak align:4 +@1619 = .data:0x802DC26C; // type:object size:0xC scope:local align:4 data:string +@1620 = .data:0x802DC278; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802DC284; // type:object size:0x10 scope:weak align:4 +@1629 = .data:0x802DC294; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802DC2A4; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802DC2B0; // type:object size:0x10 scope:weak align:4 +@1640 = .data:0x802DC2C0; // type:object size:0x10 scope:local align:4 data:string +@1641 = .data:0x802DC2D0; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802DC2DC; // type:object size:0x10 scope:weak align:4 +@1650 = .data:0x802DC2EC; // type:object size:0xE scope:local align:4 data:string +@1651 = .data:0x802DC2FC; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802DC308; // type:object size:0x10 scope:weak align:4 +@1665 = .data:0x802DC318; // type:object size:0xD scope:local align:4 data:string +@1666 = .data:0x802DC328; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802DC334; // type:object size:0x10 scope:weak align:4 +@1679 = .data:0x802DC344; // type:object size:0xE scope:local align:4 data:string +@1680 = .data:0x802DC354; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802DC360; // type:object size:0x10 scope:weak align:4 +@1694 = .data:0x802DC370; // type:object size:0xC scope:local align:4 data:string +@1695 = .data:0x802DC37C; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802DC388; // type:object size:0x10 scope:weak align:4 +@1704 = .data:0x802DC398; // type:object size:0xD scope:local align:4 data:string +@1705 = .data:0x802DC3A8; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802DC3B4; // type:object size:0x10 scope:weak align:4 +@1714 = .data:0x802DC3C4; // type:object size:0x13 scope:local align:4 data:string +@1715 = .data:0x802DC3D8; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802DC3E4; // type:object size:0x10 scope:weak align:4 +@1725 = .data:0x802DC3F4; // type:object size:0xC scope:local align:4 data:string +@1726 = .data:0x802DC400; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802DC40C; // type:object size:0x10 scope:weak align:4 +@1735 = .data:0x802DC41C; // type:object size:0xD scope:local align:4 data:string +@1736 = .data:0x802DC42C; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802DC438; // type:object size:0x10 scope:weak align:4 +@1745 = .data:0x802DC448; // type:object size:0xC scope:local align:4 data:string +@1746 = .data:0x802DC454; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802DC460; // type:object size:0x10 scope:weak align:4 +@1759 = .data:0x802DC470; // type:object size:0x10 scope:local align:4 data:string +@1760 = .data:0x802DC480; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802DC48C; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802DC49C; // type:object size:0x10 scope:local align:4 data:string +@1770 = .data:0x802DC4AC; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802DC4B8; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802DC4C8; // type:object size:0x10 scope:weak align:4 +@1784 = .data:0x802DC4D8; // type:object size:0x29 scope:local align:4 data:string +@1786 = .data:0x802DC504; // type:object size:0x13 scope:local align:4 data:string +@1785 = .data:0x802DC518; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802DC524; // type:object size:0xC scope:weak align:4 +@1787 = .data:0x802DC530; // type:object size:0x18 scope:local align:4 data:string +@1788 = .data:0x802DC548; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802DC56C; // type:object size:0x10 scope:weak align:4 +@1790 = .data:0x802DC57C; // type:object size:0xA scope:local align:4 data:string +@1792 = .data:0x802DC588; // type:object size:0x9 scope:local align:4 data:string +@1791 = .data:0x802DC594; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802DC5B4; // type:object size:0xC scope:local align:4 data:string +@1794 = .data:0x802DC5C0; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802DC5E0; // type:object size:0x14 scope:local align:4 +@1795 = .data:0x802DC5F4; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802DC610; // type:object size:0x30 scope:weak align:4 +@1821 = .data:0x802DC640; // type:object size:0xC scope:local align:4 data:string +@1890 = .data:0x802DC64C; // type:object size:0x1C scope:local align:4 +@1888 = .data:0x802DC668; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802DC68C; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC6F8; // type:label scope:local +@1486 = .data:0x802DC6F8; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802DC70C; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802DC724; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802DC73C; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802DC748; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802DC770; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802DC784; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802DC7A0; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802DC7C4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC830; // type:label scope:local +@749 = .data:0x802DC830; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802DC840; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802DC854; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802DC86C; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802DC878; // type:object size:0xC scope:local align:4 +@779 = .data:0x802DC8A0; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802DC8B4; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802DC8D0; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802DC8F4; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802DC960; // type:label scope:local +@787 = .data:0x802DC960; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802DC970; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802DC97C; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802DC994; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802DC9AC; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802DC9C4; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802DC9E0; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802DC9F8; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802DCA14; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802DCA2C; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802DCA48; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802DCA60; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802DCA7C; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802DCA98; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802DCAB0; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802DCACC; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802DCAE4; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802DCB00; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802DCB1C; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802DCB34; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802DCB50; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802DCB6C; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802DCB88; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802DCBA4; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802DCBBC; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802DCBD4; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802DCBF0; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802DCC0C; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802DCC28; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802DCC40; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802DCC5C; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802DCC78; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802DCC94; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802DCCB0; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802DCCCC; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802DCCE4; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802DCCFC; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802DCD18; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802DCD34; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802DCD50; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802DCD6C; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802DCD88; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802DCDA4; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802DCDBC; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802DCDD8; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802DCDF0; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802DCE0C; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802DCE24; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802DCE40; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802DCE5C; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802DCE78; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802DCE90; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802DCEAC; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802DCEC4; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802DCEE0; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802DCEFC; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802DCF18; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802DCF30; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802DCF4C; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802DCF64; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802DCF80; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802DCF9C; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802DCFB4; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802DCFCC; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802DCFE4; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802DCFF8; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802DD00C; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802DD024; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802DD040; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802DD05C; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802DD078; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802DD094; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802DD0B0; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802DD0CC; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802DD0E4; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802DD0FC; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802DD118; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802DD134; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802DD150; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802DD168; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802DD184; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802DD1A0; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802DD1B8; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802DD1D4; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802DD1EC; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802DD204; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802DD21C; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802DD234; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802DD24C; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802DD264; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802DD27C; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802DD294; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802DD2AC; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802DD2C4; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802DD2DC; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802DD2F4; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802DD30C; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802DD328; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802DD344; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802DD35C; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802DD374; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802DD390; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802DD3AC; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802DD3C4; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802DD3DC; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802DD3F8; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802DD410; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802DD42C; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802DD444; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802DD460; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802DD47C; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802DD498; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802DD4B4; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802DD4D0; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802DD4EC; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802DD508; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802DD524; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802DD540; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802DD55C; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802DD574; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802DD58C; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802DD5A4; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802DD5BC; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802DD5D4; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802DD5EC; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802DD604; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802DD620; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802DD63C; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802DD654; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802DD66C; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802DD688; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802DD6A4; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802DD6C0; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802DD6DC; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802DD6F8; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802DD714; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802DD72C; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802DD748; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802DD764; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802DD77C; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802DD798; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802DD7B4; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802DD7D0; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802DD7E8; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802DD804; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802DD820; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802DD83C; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802DD858; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802DD874; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802DD890; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802DD8AC; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802DD8C8; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802DD8E4; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802DD900; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802DD91C; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802DD938; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802DD950; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802DD96C; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802DD984; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802DD9A0; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802DD9BC; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802DD9D8; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802DD9F4; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802DDA10; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802DDA2C; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802DDA48; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802DDA64; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802DDA80; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802DDA9C; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802DDAB8; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802DDAD4; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802DDAF0; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802DDB08; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802DDB24; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802DDB40; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802DDB5C; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802DDB78; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802DDB90; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802DDBA8; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802DDBC0; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802DDBD8; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802DDBF4; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802DDC10; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802DDC28; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802DDC40; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802DDC58; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802DDC70; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802DDC8C; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802DDCA8; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802DDCC4; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802DDCDC; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802DDCF8; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802DDD10; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802DDD28; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802DDD40; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802DDD5C; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802DDD78; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802DDD94; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802DDDB0; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802DDDCC; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802DDDE4; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802DDDFC; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802DDE14; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802DDE30; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802DDE48; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802DDE64; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802DDE80; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802DDE9C; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802DDEB8; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802DDED4; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802DDEEC; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802DDF08; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802DDF24; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802DDF3C; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802DDF54; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802DDF6C; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802DDF84; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802DDF9C; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802DDFB8; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802DDFD4; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802DDFF0; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802DE00C; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802DE028; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802DE044; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802DE060; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802DE07C; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802DE090; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802DE0A8; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802DE0C0; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802DE0D8; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802DE0F0; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802DE10C; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802DE124; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802DE13C; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802DE154; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802DE170; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802DE18C; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802DE1A4; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802DE1BC; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802DE1D4; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802DE1EC; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802DE208; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802DE224; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802DE23C; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802DE254; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802DE26C; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802DE288; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802DE2A0; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802DE2BC; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802DE2D8; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802DE2F4; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802DE30C; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802DE324; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DE33C; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802DE354; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802DE370; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802DE38C; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802DE3A8; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802DE3C4; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802DE3DC; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802DE3F8; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802DE414; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802DE42C; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802DE444; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802DE45C; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802DE474; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802DE490; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802DE4A8; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802DE4C0; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802DE4D8; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802DE4F0; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802DE50C; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802DE524; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802DE540; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802DE55C; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802DE578; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802DE594; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802DE5AC; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802DE5C4; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802DE5DC; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802DE5F8; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802DE614; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802DE62C; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802DE648; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802DE664; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802DE680; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802DE698; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802DE6B0; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802DE6CC; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802DE6E4; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802DE700; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802DE71C; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802DE738; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802DE754; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802DE770; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802DE788; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802DE7A0; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802DE7BC; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802DE7D8; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802DE7F4; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802DE810; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802DE82C; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802DE848; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802DE860; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802DE878; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802DE890; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802DE8A8; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802DE8C0; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802DE8D8; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802DE8F0; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802DE908; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802DE920; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802DE938; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802DE950; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802DE968; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802DE980; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802DE99C; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802DE9B8; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802DE9D0; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802DE9EC; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802DEA08; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802DEA24; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802DEA40; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802DEA58; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802DEA70; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802DEA88; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802DEAA0; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802DEABC; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802DEAD8; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802DEAF4; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802DEB10; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802DEB2C; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802DEB44; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802DEB60; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802DEB78; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802DEB90; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802DEBA8; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802DEBC0; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802DEBDC; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802DEBF8; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802DEC14; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802DEC2C; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802DEC44; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802DEC5C; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802DEC74; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802DEC8C; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802DECA8; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802DECC4; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802DECDC; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802DECF4; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802DED0C; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802DED28; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802DED44; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802DED5C; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DED74; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802DED8C; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802DEDA4; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802DEDBC; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802DEDD4; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802DEDEC; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802DEE08; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802DEE24; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802DEE40; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802DEE5C; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802DEE78; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802DEE94; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802DEEB0; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802DEECC; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802DEEE8; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802DEF04; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802DEF20; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802DEF3C; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DEF54; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802DEF6C; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802DEF84; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802DEF9C; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802DEFB4; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802DEFCC; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802DEFE4; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802DEFFC; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802DF018; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802DF034; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802DF04C; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802DF064; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802DF07C; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802DF098; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802DF0B4; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802DF0D0; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802E0060; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802E007C; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802E0098; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802E00B4; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802E00E4; // type:object size:0xC scope:global align:4 +@1340 = .data:0x802E00F0; // type:object size:0x18 scope:local align:4 data:string +@1427 = .data:0x802E0108; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802E011C; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802E0128; // type:object size:0x20 scope:local align:4 data:string +@1632 = .data:0x802E0148; // type:object size:0xB scope:local align:4 data:string +@1633 = .data:0x802E0154; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802E0160; // type:object size:0xD scope:local align:4 data:string +@1757 = .data:0x802E0170; // type:object size:0xB scope:local align:4 data:string +@1760 = .data:0x802E017C; // type:object size:0x9 scope:local align:4 data:string +@1761 = .data:0x802E0188; // type:object size:0xC scope:local align:4 +@1758 = .data:0x802E0194; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802E01A8; // type:object size:0x10 scope:weak align:4 +@1764 = .data:0x802E01B8; // type:object size:0xD scope:local align:4 data:string +@1767 = .data:0x802E01D8; // type:object size:0xA scope:local align:4 data:string +@1768 = .data:0x802E01E4; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802E01F8; // type:object size:0x10 scope:weak align:4 +@1769 = .data:0x802E0208; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802E0224; // type:object size:0xC scope:global align:4 +@1770 = .data:0x802E0230; // type:object size:0xC scope:local align:4 data:string +@1771 = .data:0x802E023C; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802E0250; // type:object size:0x10 scope:weak align:4 +@1772 = .data:0x802E0260; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802E027C; // type:object size:0xC scope:weak align:4 +@1773 = .data:0x802E0288; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x802E0298; // type:object size:0x14 scope:local align:4 +@1774 = .data:0x802E02AC; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802E02C8; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802E0320; // type:label scope:local +@671 = .data:0x802E0320; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802E0338; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802E0360; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802E0390; // type:object size:0xC scope:local align:4 +@705 = .data:0x802E039C; // type:object size:0xC scope:local align:4 +@708 = .data:0x802E03A8; // type:object size:0xC scope:local align:4 +@710 = .data:0x802E03B4; // type:object size:0xC scope:local align:4 +@712 = .data:0x802E03C0; // type:object size:0xC scope:local align:4 +@714 = .data:0x802E03CC; // type:object size:0xC scope:local align:4 +@716 = .data:0x802E03D8; // type:object size:0xC scope:local align:4 +@718 = .data:0x802E03E4; // type:object size:0xC scope:local align:4 +@720 = .data:0x802E03F0; // type:object size:0xC scope:local align:4 +@736 = .data:0x802E03FC; // type:object size:0x1A scope:local align:4 data:string +@737 = .data:0x802E0418; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802E0438; // type:label scope:local +@409 = .data:0x802E0438; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802E044C; // type:object size:0xF scope:local align:4 data:string +@443 = .data:0x802E045C; // type:object size:0x18 scope:local align:4 data:string +@461 = .data:0x802E0474; // type:object size:0xD scope:local align:4 data:string +@463 = .data:0x802E0484; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802E0494; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802E04A0; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E04C0; // type:label scope:local +ami = .data:0x802E04C0; // type:object size:0x800 scope:local align:4 +check = .data:0x802E0CC0; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802E14C0; // type:object size:0x800 scope:local align:4 +marble = .data:0x802E1CC0; // type:object size:0x800 scope:local align:4 +noise = .data:0x802E24C0; // type:object size:0x800 scope:local align:4 +yura = .data:0x802E2CC0; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802E34C0; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802E34D8; // type:label scope:local +@649 = .data:0x802E34D8; // type:object size:0x14 scope:local align:4 data:string +@659 = .data:0x802E34EC; // type:object size:0x10 scope:local align:4 data:string +@688 = .data:0x802E34FC; // type:object size:0x30 scope:local align:4 +@689 = .data:0x802E352C; // type:object size:0x26 scope:local align:4 +@690 = .data:0x802E3554; // type:object size:0x30 scope:local align:4 +@913 = .data:0x802E3584; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802E35A4; // type:object size:0x17 scope:local align:4 data:string +@915 = .data:0x802E35BC; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E35D8; // type:label scope:local +@618 = .data:0x802E35D8; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802E35F0; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802E3604; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802E3618; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802E3628; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802E3640; // type:object size:0xC scope:local align:4 +@715 = .data:0x802E364C; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802E3660; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802E3680; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802E3690; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802E36A8; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802E36BC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E36D0; // type:label scope:local +@1344 = .data:0x802E36D0; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802E36E0; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802E36EC; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802E3724; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802E3730; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802E3744; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802E3750; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802E3760; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802E376C; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802E3780; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802E37AC; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802E37E0; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802E381C; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802E3A1C; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802E3A54; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802E3A74; // type:object size:0x24 scope:weak align:4 +@1211 = .data:0x802E3AA8; // type:object size:0x11 scope:local align:4 data:string +@1225 = .data:0x802E3ABC; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802E3AD0; // type:label scope:local +@1737 = .data:0x802E3AD0; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802E3ADC; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802E3AF0; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802E3B04; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802E3B10; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802E3B28; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802E3B44; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802E3B64; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802E3B80; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802E3B9C; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802E3BBC; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802E3BDC; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802E3BF8; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802E3C14; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802E3C34; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802E3C50; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802E3C6C; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802E3C80; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802E3C90; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802E3C9C; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802E3CA8; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802E3CB8; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802E3CC8; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802E3CD4; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802E3CE0; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802E3CF4; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802E3D1C; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802E3D2C; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802E3D38; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802E3D44; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802E3D60; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802E3D70; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802E3D7C; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802E3D98; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802E3DB0; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802E3DBC; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802E3DD8; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802E3DEC; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802E3DF8; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802E3E04; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802E3E14; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802E3E28; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802E3E44; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802E3E68; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802E3E7C; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802E3E90; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802E3E9C; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E3EAC; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802E3EC0; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802E3EDC; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802E3F00; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802E3F0C; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802E3F24; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802E3F30; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802E3F3C; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802E3F48; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802E3F5C; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802E3F6C; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802E3F80; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802E3F9C; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802E3FBC; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802E3FDC; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802E3FF4; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802E4000; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802E401C; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802E4030; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802E404C; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802E4074; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802E4090; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802E40A8; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802E40B4; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802E40C8; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802E40E8; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802E40F8; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802E410C; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802E4120; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802E412C; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802E4148; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802E416C; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802E41AC; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802E41C0; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802E41CC; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802E41D8; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802E41EC; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802E41FC; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802E4218; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802E423C; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802E426C; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E4290; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802E42B0; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802E42BC; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802E42E0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E4340; // type:label scope:local +@1737 = .data:0x802E4340; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802E434C; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802E4368; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802E4380; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802E4398; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802E43AC; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E43C4; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802E43DC; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802E43FC; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802E4414; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802E4430; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802E4440; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802E445C; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802E4478; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802E4494; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802E44B0; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802E44D0; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802E44F0; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802E450C; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802E4528; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802E4544; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802E4560; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802E457C; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802E458C; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802E459C; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802E45A8; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802E45B4; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802E45C4; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802E45D4; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802E45E0; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802E45EC; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802E4600; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802E4628; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802E4634; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802E4640; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802E464C; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802E4668; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802E4678; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802E4684; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802E46A0; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802E46C4; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E46D4; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802E46E8; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802E46F4; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802E4708; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802E471C; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802E473C; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802E4760; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802E478C; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802E47C0; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802E47D8; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802E4800; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802E4814; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802E4824; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802E4838; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802E4854; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802E4878; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802E4888; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802E48A0; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802E48AC; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802E48C4; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802E48DC; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802E48F0; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802E4904; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802E4920; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802E4950; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802E495C; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802E4970; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802E4984; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802E4990; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802E49A4; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802E49C4; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802E49E4; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802E49F4; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802E4A00; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802E4A14; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802E4A30; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802E4A50; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802E4A60; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802E4A88; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802E4A9C; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802E4AB0; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802E4ABC; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802E4AD0; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802E4AF0; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802E4B04; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E4B14; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802E4B20; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802E4B34; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802E4B54; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802E4B64; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802E4B70; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802E4B84; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802E4BA0; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802E4BC0; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802E4BD8; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802E4BEC; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802E4C0C; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802E4C1C; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802E4C28; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802E4C34; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802E4C44; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802E4C58; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802E4C74; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802E4C98; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802E4CD0; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802E4CE8; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802E4CF4; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802E4D10; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802E4D20; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802E4D2C; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802E4D50; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802E4D64; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802E4D74; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802E4D80; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802E4D94; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802E4DB4; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802E4DC4; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802E4DD0; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802E4DE4; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802E4E00; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802E4E38; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802E4E4C; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802E4E58; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802E4E64; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802E4E78; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802E4E88; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802E4EA4; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802E4EC8; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802E4EF8; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802E4F18; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802E4F38; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802E4F44; // type:object size:0x24 scope:weak align:4 +@3146 = .data:0x802E4F68; // type:object size:0x1F scope:local align:4 data:string +@3147 = .data:0x802E4F88; // type:object size:0x1E scope:local align:4 data:string +...data.0 = .data:0x802E4FD0; // type:label scope:local +@1728 = .data:0x802E4FD0; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802E4FE4; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802E4FF4; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802E5008; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802E5014; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802E5020; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802E502C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802E5040; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802E505C; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802E5078; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802E5084; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802E5090; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802E50B0; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802E50C8; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802E50D4; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802E50E0; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802E50EC; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802E5100; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802E5114; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802E5130; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802E5154; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802E5170; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802E518C; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802E51A8; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802E51B4; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802E51D0; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802E51E0; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802E51EC; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802E5208; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802E5220; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802E522C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5248; // type:label scope:local +@1788 = .data:0x802E5248; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802E5258; // type:object size:0x9 scope:local align:4 data:string +@2397 = .data:0x802E5264; // type:object size:0x3A scope:local align:4 data:string +@2866 = .data:0x802E52A0; // type:object size:0x14 scope:local align:4 data:string +@3596 = .data:0x802E52B4; // type:object size:0xC scope:local align:4 data:string +@3942 = .data:0x802E52C0; // type:object size:0xC scope:local align:4 data:string +@3944 = .data:0x802E52CC; // type:object size:0xA scope:local align:4 data:string +@3945 = .data:0x802E52D8; // type:object size:0x12 scope:local align:4 data:string +@3946 = .data:0x802E52EC; // type:object size:0xC scope:local align:4 +@3943 = .data:0x802E52F8; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802E530C; // type:object size:0x20 scope:global align:4 +@3953 = .data:0x802E532C; // type:object size:0xC scope:local align:4 data:string +@3954 = .data:0x802E5338; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802E534C; // type:object size:0x20 scope:global align:4 +@3955 = .data:0x802E536C; // type:object size:0xC scope:local align:4 data:string +@3956 = .data:0x802E5378; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802E538C; // type:object size:0x24 scope:global align:4 +@3957 = .data:0x802E53B0; // type:object size:0x13 scope:local align:4 data:string +@3959 = .data:0x802E53C4; // type:object size:0xF scope:local align:4 data:string +@3958 = .data:0x802E53D4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802E53E8; // type:object size:0x2C scope:global align:4 +@3960 = .data:0x802E5414; // type:object size:0x1E scope:local align:4 data:string +@3962 = .data:0x802E5434; // type:object size:0x11 scope:local align:4 data:string +@3963 = .data:0x802E5448; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802E545C; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802E5480; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802E54B0; // type:object size:0x24 scope:global align:4 +@3964 = .data:0x802E54D4; // type:object size:0x16 scope:local align:4 data:string +@3965 = .data:0x802E54EC; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802E54F8; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802E5514; // type:object size:0xF scope:local align:4 data:string +@3967 = .data:0x802E5524; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802E5530; // type:object size:0x20 scope:global align:4 +@3968 = .data:0x802E5550; // type:object size:0x1D scope:local align:4 data:string +@3969 = .data:0x802E5570; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802E5584; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802E55A0; // type:object size:0xE scope:local align:4 data:string +@3971 = .data:0x802E55B0; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802E55C4; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802E55E0; // type:object size:0xD scope:local align:4 data:string +@3974 = .data:0x802E55F0; // type:object size:0x11 scope:local align:4 data:string +@3975 = .data:0x802E5604; // type:object size:0x14 scope:local align:4 +@3973 = .data:0x802E5618; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802E5634; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802E5650; // type:object size:0xD scope:local align:4 data:string +@3977 = .data:0x802E5660; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802E5674; // type:object size:0x20 scope:global align:4 +@3978 = .data:0x802E5694; // type:object size:0xB scope:local align:4 data:string +@3980 = .data:0x802E56A0; // type:object size:0x11 scope:local align:4 data:string +@3981 = .data:0x802E56B4; // type:object size:0x14 scope:local align:4 +@3979 = .data:0x802E56C8; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802E56E4; // type:object size:0x24 scope:global align:4 +@3982 = .data:0x802E5708; // type:object size:0x9 scope:local align:4 data:string +@3983 = .data:0x802E5714; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802E5728; // type:object size:0x20 scope:global align:4 +@3984 = .data:0x802E5748; // type:object size:0x16 scope:local align:4 data:string +@3985 = .data:0x802E5760; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802E577C; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802E579C; // type:object size:0x1C scope:global align:4 +@3986 = .data:0x802E57B8; // type:object size:0xF scope:local align:4 data:string +@3987 = .data:0x802E57C8; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802E57DC; // type:object size:0x1C scope:global align:4 +@3988 = .data:0x802E57F8; // type:object size:0x9 scope:local align:4 data:string +@3989 = .data:0x802E5804; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802E5810; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802E582C; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802E584C; // type:object size:0xF scope:local align:4 data:string +@3992 = .data:0x802E585C; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802E5870; // type:object size:0x1C scope:global align:4 +@3993 = .data:0x802E588C; // type:object size:0x22 scope:local align:4 data:string +@3994 = .data:0x802E58B0; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802E58C4; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802E58E4; // type:object size:0x1C scope:local align:4 data:string +@3996 = .data:0x802E5900; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802E5914; // type:object size:0x24 scope:global align:4 +@3997 = .data:0x802E5938; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802E5948; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802E595C; // type:object size:0x20 scope:global align:4 +@3999 = .data:0x802E597C; // type:object size:0x19 scope:local align:4 data:string +@4000 = .data:0x802E5998; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802E59A4; // type:object size:0x1C scope:global align:4 +@4001 = .data:0x802E59C0; // type:object size:0x1F scope:local align:4 data:string +@4002 = .data:0x802E59E0; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802E59EC; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802E5A08; // type:object size:0xF scope:local align:4 data:string +@4004 = .data:0x802E5A18; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802E5A34; // type:object size:0x24 scope:global align:4 +@4005 = .data:0x802E5A58; // type:object size:0x1D scope:local align:4 data:string +@4006 = .data:0x802E5A78; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802E5A84; // type:object size:0x1C scope:global align:4 +@4007 = .data:0x802E5AA0; // type:object size:0x12 scope:local align:4 data:string +@4009 = .data:0x802E5AB4; // type:object size:0xB scope:local align:4 data:string +@4010 = .data:0x802E5AC0; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802E5ACC; // type:object size:0x13 scope:local align:4 data:string +@4012 = .data:0x802E5AE0; // type:object size:0x14 scope:local align:4 +@4008 = .data:0x802E5AF4; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802E5B10; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5B30; // type:label scope:local +@1116 = .data:0x802E5B30; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802E5B40; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802E5B4C; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802E5B5C; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802E5B68; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802E5B7C; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802E5B88; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802E5B9C; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802E5BBC; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802E5BD8; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802E5BE4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E5C20; // type:label scope:local +@1569 = .data:0x802E5C20; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802E5C30; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802E5C3C; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802E5C50; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802E5C5C; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802E5C68; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802E5C84; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802E5C98; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802E5CA4; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802E5CC0; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802E5CD0; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802E5CDC; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802E5D00; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802E5D14; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802E5D20; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802E5D40; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802E5D54; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802E5D60; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802E5D7C; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802E5D94; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802E5DA0; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802E5DC0; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802E5DD0; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802E5DDC; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802E5DF8; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802E5E08; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802E5E14; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802E5E30; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802E5E50; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802E5E5C; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802E5E78; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802E5E98; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802E5EA4; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802E5EC0; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802E5EDC; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802E5EE8; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802E5F0C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802E5F28; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802E5F40; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802E5F4C; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802E5F60; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802E5F88; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E5FA0; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E5FB4; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E5FDC; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E6004; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E6014; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E6024; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E6030; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E6044; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E6064; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E6074; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E6088; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E60A8; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E60C0; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E60CC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E60E8; // type:label scope:local +@1718 = .data:0x802E60E8; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E60F8; // type:object size:0xB scope:local align:4 data:string +@1806 = .data:0x802E6104; // type:object size:0x14 scope:local align:4 data:string +@2314 = .data:0x802E6118; // type:object size:0xC scope:local align:4 data:string +@2316 = .data:0x802E6124; // type:object size:0xA scope:local align:4 data:string +@2317 = .data:0x802E6130; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E6144; // type:object size:0xC scope:local align:4 +@2315 = .data:0x802E6150; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E6164; // type:object size:0x20 scope:global align:4 +@2325 = .data:0x802E6184; // type:object size:0x13 scope:local align:4 data:string +@2326 = .data:0x802E6198; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E61AC; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E61D0; // type:object size:0x1A scope:local align:4 data:string +@2328 = .data:0x802E61EC; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E6200; // type:object size:0x24 scope:global align:4 +@2329 = .data:0x802E6224; // type:object size:0xD scope:local align:4 data:string +@2331 = .data:0x802E6234; // type:object size:0xB scope:local align:4 data:string +@2332 = .data:0x802E6240; // type:object size:0xC scope:local align:4 +@2330 = .data:0x802E624C; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E6260; // type:object size:0x24 scope:global align:4 +@2333 = .data:0x802E6284; // type:object size:0xE scope:local align:4 data:string +@2335 = .data:0x802E6294; // type:object size:0xA scope:local align:4 data:string +@2334 = .data:0x802E62A0; // type:object size:0xC scope:local align:4 +@2337 = .data:0x802E62C4; // type:object size:0xF scope:local align:4 data:string +@2338 = .data:0x802E62D4; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E62E0; // type:object size:0x20 scope:global align:4 +@2340 = .data:0x802E6300; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E6310; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E6324; // type:object size:0x24 scope:global align:4 +@2342 = .data:0x802E6348; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E6358; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E6364; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E6380; // type:object size:0xF scope:local align:4 data:string +@2345 = .data:0x802E6390; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E639C; // type:object size:0x1C scope:global align:4 +@2346 = .data:0x802E63B8; // type:object size:0x1C scope:local align:4 data:string +@2348 = .data:0x802E63D4; // type:object size:0xF scope:local align:4 data:string +@2349 = .data:0x802E63E4; // type:object size:0x14 scope:local align:4 +@2347 = .data:0x802E63F8; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E6414; // type:object size:0x24 scope:global align:4 +@2351 = .data:0x802E6438; // type:object size:0xC scope:local align:4 data:string +@2361 = .data:0x802E6470; // type:object size:0x15 scope:local align:4 data:string +@2362 = .data:0x802E6488; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E649C; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E64C8; // type:label scope:local +@579 = .data:0x802E64C8; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E64DC; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E64EC; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E6510; // type:label scope:local +@658 = .data:0x802E6510; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E6520; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E6530; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E653C; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E6560; // type:label scope:local +@581 = .data:0x802E6560; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E6574; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E6584; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E6594; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E65A4; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E65B0; // type:object size:0x24 scope:global align:4 +@637 = .data:0x802E65D8; // type:object size:0xC scope:local align:4 data:string +@667 = .data:0x802E65E4; // type:object size:0x1B scope:local align:4 data:string +@1091 = .data:0x802E6600; // type:object size:0x29 scope:local align:4 +__vt__7P2DPane = .data:0x802E662C; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E6668; // type:label scope:local +@655 = .data:0x802E6668; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E6678; // type:object size:0xB scope:local align:4 data:string +@685 = .data:0x802E6684; // type:object size:0x1A scope:local align:4 data:string +@1153 = .data:0x802E66A0; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E66AC; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E66E8; // type:label scope:local +@765 = .data:0x802E66E8; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E66F8; // type:object size:0xA scope:local align:4 data:string +@802 = .data:0x802E6704; // type:object size:0x18 scope:local align:4 data:string +@841 = .data:0x802E671C; // type:object size:0x50 scope:local align:4 +@843 = .data:0x802E676C; // type:object size:0x2A scope:local align:4 data:string +@881 = .data:0x802E6798; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E67A4; // type:object size:0x40 scope:global align:4 +@572 = .data:0x802E67E8; // type:object size:0xE scope:local align:4 data:string +@597 = .data:0x802E67F8; // type:object size:0xC scope:local align:4 data:string +@598 = .data:0x802E6804; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E6820; // type:label scope:local +@641 = .data:0x802E6820; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E6830; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E683C; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E6848; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E6888; // type:label scope:local +@636 = .data:0x802E6888; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E6898; // type:object size:0xB scope:local align:4 data:string +@682 = .data:0x802E68A4; // type:object size:0x10 scope:local align:4 data:string +@726 = .data:0x802E68B4; // type:object size:0xE scope:local align:4 +@730 = .data:0x802E68C4; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E68D0; // type:object size:0x3C scope:global align:4 +@570 = .data:0x802E6910; // type:object size:0xD scope:local align:4 data:string +@612 = .data:0x802E6920; // type:object size:0xE scope:local align:4 data:string +@879 = .data:0x802E6930; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E6990; // type:label scope:local +@570 = .data:0x802E6990; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E699C; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E69A8; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E69B4; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E69C0; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E69CC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E69F0; // type:label scope:local +@1273 = .data:0x802E69F0; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E6A04; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E6A14; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E6A2C; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E6A44; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E6A5C; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E6A74; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E6A8C; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E6AA4; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E6ABC; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E6AD4; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E6AEC; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E6B04; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E6B1C; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E6B34; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E6B4C; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E6B64; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E6B7C; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E6B94; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E6BAC; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E6BC4; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E6BDC; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E6C28; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E6C40; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E6C58; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E6C70; // type:object size:0x18 scope:local align:4 data:string +@2238 = .data:0x802E6C88; // type:object size:0x1E scope:local align:4 data:string +@2239 = .data:0x802E6CA8; // type:object size:0x1A scope:local align:4 data:string +@2589 = .data:0x802E6CC4; // type:object size:0x18 scope:local align:4 data:string +@2591 = .data:0x802E6CDC; // type:object size:0xF scope:local align:4 data:string +@2592 = .data:0x802E6CEC; // type:object size:0x14 scope:local align:4 data:string +@2593 = .data:0x802E6D00; // type:object size:0x1A scope:local align:4 data:string +@2594 = .data:0x802E6D1C; // type:object size:0x10 scope:local align:4 data:string +@2595 = .data:0x802E6D2C; // type:object size:0x14 scope:local align:4 +@2590 = .data:0x802E6D40; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E6D64; // type:object size:0x10 scope:weak align:4 +@2660 = .data:0x802E6D74; // type:object size:0x1D scope:local align:4 data:string +@2661 = .data:0x802E6D94; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E6DB0; // type:object size:0x10 scope:weak align:4 +@2705 = .data:0x802E6DC0; // type:object size:0x1C scope:local align:4 data:string +@2706 = .data:0x802E6DDC; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E6DF8; // type:object size:0x10 scope:weak align:4 +@2709 = .data:0x802E6E08; // type:object size:0x1B scope:local align:4 data:string +@2710 = .data:0x802E6E24; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E6E40; // type:object size:0x10 scope:weak align:4 +@2719 = .data:0x802E6E50; // type:object size:0x1C scope:local align:4 data:string +@2720 = .data:0x802E6E6C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E6E88; // type:object size:0x10 scope:weak align:4 +@2743 = .data:0x802E6E98; // type:object size:0x1C scope:local align:4 data:string +@2745 = .data:0x802E6EB4; // type:object size:0x13 scope:local align:4 data:string +@2744 = .data:0x802E6EC8; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E6EEC; // type:object size:0x10 scope:weak align:4 +@2816 = .data:0x802E6EFC; // type:object size:0x1C scope:local align:4 data:string +@2818 = .data:0x802E6F18; // type:object size:0x13 scope:local align:4 data:string +@2817 = .data:0x802E6F2C; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E6F58; // type:object size:0x10 scope:weak align:4 +@2900 = .data:0x802E6F68; // type:object size:0x1C scope:local align:4 data:string +@2901 = .data:0x802E6F84; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E6FA8; // type:object size:0x10 scope:weak align:4 +@2947 = .data:0x802E6FB8; // type:object size:0x1E scope:local align:4 data:string +@2948 = .data:0x802E6FD8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E6FF4; // type:object size:0x10 scope:weak align:4 +@2965 = .data:0x802E7004; // type:object size:0x1B scope:local align:4 data:string +@2966 = .data:0x802E7020; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E7044; // type:object size:0x1C scope:weak align:4 +@2999 = .data:0x802E7060; // type:object size:0x1E scope:local align:4 data:string +@3001 = .data:0x802E7080; // type:object size:0x16 scope:local align:4 data:string +@3002 = .data:0x802E7098; // type:object size:0xC scope:local align:4 +@3000 = .data:0x802E70A4; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E70D0; // type:object size:0x10 scope:weak align:4 +@3003 = .data:0x802E70E0; // type:object size:0x23 scope:local align:4 data:string +@3004 = .data:0x802E7104; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E7120; // type:object size:0x10 scope:weak align:4 +@3040 = .data:0x802E7130; // type:object size:0x1C scope:local align:4 data:string +@3041 = .data:0x802E714C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E7168; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E7198; // type:label scope:local +@708 = .data:0x802E7198; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802E71AC; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802E71BC; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802E71CC; // type:object size:0x15 scope:local align:4 data:string +@1769 = .data:0x802E71E4; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802E71F0; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802E71FC; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802E720C; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802E7224; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802E723C; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802E7254; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802E726C; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802E7284; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802E729C; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802E72B4; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802E72CC; // type:object size:0x17 scope:local align:4 data:string +@2032 = .data:0x802E72E4; // type:object size:0x1C scope:local align:4 data:string +@2885 = .data:0x802E7300; // type:object size:0x13 scope:local align:4 data:string +@2887 = .data:0x802E7314; // type:object size:0x14 scope:local align:4 data:string +@2888 = .data:0x802E7328; // type:object size:0x1A scope:local align:4 data:string +@2889 = .data:0x802E7344; // type:object size:0x10 scope:local align:4 data:string +@2890 = .data:0x802E7354; // type:object size:0x14 scope:local align:4 +@2886 = .data:0x802E7368; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802E7384; // type:object size:0x10 scope:weak align:4 +@2916 = .data:0x802E7394; // type:object size:0x15 scope:local align:4 data:string +@2918 = .data:0x802E73AC; // type:object size:0x18 scope:local align:4 data:string +@2917 = .data:0x802E73C4; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802E73E8; // type:object size:0x10 scope:weak align:4 +@2962 = .data:0x802E73F8; // type:object size:0x19 scope:local align:4 data:string +@2963 = .data:0x802E7414; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802E7438; // type:object size:0x10 scope:weak align:4 +@2997 = .data:0x802E7448; // type:object size:0x1C scope:local align:4 data:string +@2999 = .data:0x802E7464; // type:object size:0xF scope:local align:4 data:string +@3000 = .data:0x802E7474; // type:object size:0x14 scope:local align:4 data:string +@3001 = .data:0x802E7488; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802E7494; // type:object size:0x2C scope:local align:4 +@3002 = .data:0x802E74EC; // type:object size:0x9 scope:local align:4 data:string +@3003 = .data:0x802E74F8; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E7520; // type:label scope:local +@637 = .data:0x802E7520; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802E7530; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E753C; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802E7548; // type:object size:0x1A scope:local align:4 data:string +@678 = .data:0x802E7564; // type:object size:0xD scope:local align:4 data:string +@1536 = .data:0x802E7574; // type:object size:0x11 scope:local align:4 data:string +@1538 = .data:0x802E7588; // type:object size:0x14 scope:local align:4 data:string +@1539 = .data:0x802E759C; // type:object size:0x1A scope:local align:4 data:string +@1540 = .data:0x802E75B8; // type:object size:0x10 scope:local align:4 data:string +@1541 = .data:0x802E75C8; // type:object size:0x14 scope:local align:4 +@1537 = .data:0x802E75DC; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802E75F8; // type:object size:0x10 scope:global align:4 +@1543 = .data:0x802E7624; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802E7634; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E7648; // type:object size:0x14 scope:local align:4 data:string +@391 = .data:0x802E7660; // type:object size:0xC scope:local align:4 data:string +@409 = .data:0x802E766C; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802E7688; // type:label scope:local +@635 = .data:0x802E7688; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802E7698; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802E76A4; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802E76BC; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802E76D0; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802E76E0; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802E76EC; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E76FC; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802E771C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802E772C; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802E7744; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802E7750; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802E7764; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802E7780; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802E7790; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802E77A4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E7800; // type:label scope:local +@659 = .data:0x802E7800; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802E7810; // type:object size:0x9 scope:local align:4 data:string +@766 = .data:0x802E781C; // type:object size:0x1C scope:local align:4 data:string +@968 = .data:0x802E7838; // type:object size:0x14 scope:local align:4 data:string +@1301 = .data:0x802E784C; // type:object size:0x21 scope:local align:4 data:string +@1305 = .data:0x802E7870; // type:object size:0x1B scope:local align:4 data:string +@1823 = .data:0x802E788C; // type:object size:0x21 scope:local align:4 data:string +@1832 = .data:0x802E78B0; // type:object size:0x24 scope:local align:4 data:string +@1833 = .data:0x802E78D4; // type:object size:0xE scope:local align:4 data:string +@1835 = .data:0x802E78E4; // type:object size:0x10 scope:local align:4 data:string +@1834 = .data:0x802E78F4; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802E7900; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E7910; // type:label scope:local +@1607 = .data:0x802E7910; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802E7924; // type:object size:0x10 scope:local align:4 data:string +@1991 = .data:0x802E7934; // type:object size:0x10 scope:local align:4 data:string +@2303 = .data:0x802E7944; // type:object size:0xD scope:local align:4 data:string +@2304 = .data:0x802E7954; // type:object size:0x11 scope:local align:4 data:string +@2306 = .data:0x802E7968; // type:object size:0x29 scope:local align:4 data:string +@2305 = .data:0x802E7994; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802E79A0; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802E79AC; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802E79C4; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802E79D0; // type:object size:0xC scope:global align:4 +@2309 = .data:0x802E79DC; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802E79F0; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802E79FC; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802E7A08; // type:label scope:local +@1756 = .data:0x802E7A08; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802E7A18; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802E7A24; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802E7A30; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802E7A48; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802E7A5C; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802E7A6C; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802E7A7C; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802E7A90; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802E7AA0; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802E7AAC; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802E7AB8; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802E7ACC; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802E7ADC; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802E7AE8; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E7AF4; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802E7B08; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802E7B30; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802E7B50; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802E7B5C; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802E7B78; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802E7B84; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802E7B98; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802E7BBC; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802E7BD0; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802E7BDC; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802E7BF8; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802E7C08; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802E7C30; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802E7C44; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802E7C50; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802E7C5C; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802E7C6C; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802E7C80; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802E7C9C; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802E7CC0; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802E7CF8; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802E7D0C; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802E7D18; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802E7D34; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802E7D58; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802E7D6C; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802E7D78; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802E7D88; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802E7D9C; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802E7DB8; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802E7DD4; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802E7DF8; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802E7E1C; // type:object size:0xE scope:local align:4 data:string +@3153 = .data:0x802E7E2C; // type:object size:0x15 scope:local align:4 data:string +@3154 = .data:0x802E7E44; // type:object size:0xC scope:local align:4 +@3187 = .data:0x802E7E6C; // type:object size:0xF scope:local align:4 data:string +@3188 = .data:0x802E7E7C; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802E7E90; // type:object size:0x1C scope:weak align:4 +@3742 = .data:0x802E7EAC; // type:object size:0x1E scope:local align:4 data:string +@3744 = .data:0x802E7ECC; // type:object size:0x17 scope:local align:4 data:string +@3745 = .data:0x802E7EE4; // type:object size:0xC scope:local align:4 +@3746 = .data:0x802E7EF0; // type:object size:0x18 scope:local align:4 data:string +@3747 = .data:0x802E7F08; // type:object size:0x14 scope:local align:4 +@3743 = .data:0x802E7F1C; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802E7F38; // type:object size:0x28 scope:weak align:4 +@3753 = .data:0x802E7F60; // type:object size:0x16 scope:local align:4 data:string +@3754 = .data:0x802E7F78; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802E7F84; // type:object size:0x1C scope:weak align:4 +@3821 = .data:0x802E7FA0; // type:object size:0x12 scope:local align:4 data:string +@3822 = .data:0x802E7FB4; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802E7FE0; // type:object size:0x11 scope:local align:4 data:string +@3837 = .data:0x802E7FF4; // type:object size:0xB scope:local align:4 data:string +@3838 = .data:0x802E8000; // type:object size:0xC scope:local align:4 +@3836 = .data:0x802E800C; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802E8020; // type:object size:0x20 scope:weak align:4 +@3842 = .data:0x802E8040; // type:object size:0x10 scope:local align:4 data:string +@3844 = .data:0x802E8050; // type:object size:0xA scope:local align:4 data:string +@3845 = .data:0x802E805C; // type:object size:0x14 scope:local align:4 +@3843 = .data:0x802E8070; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802E808C; // type:object size:0x1C scope:weak align:4 +@3856 = .data:0x802E80A8; // type:object size:0xF scope:local align:4 data:string +@3857 = .data:0x802E80B8; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802E80C4; // type:object size:0x1C scope:weak align:4 +@3880 = .data:0x802E80E0; // type:object size:0xC scope:local align:4 data:string +@3881 = .data:0x802E80EC; // type:object size:0xD scope:local align:4 data:string +@3884 = .data:0x802E8118; // type:object size:0x14 scope:local align:4 data:string +@3887 = .data:0x802E812C; // type:object size:0x9 scope:local align:4 data:string +@3888 = .data:0x802E8138; // type:object size:0xC scope:local align:4 +@3890 = .data:0x802E8144; // type:object size:0x14 scope:local align:4 +@3891 = .data:0x802E8158; // type:object size:0xF scope:local align:4 data:string +@3892 = .data:0x802E8168; // type:object size:0x1C scope:local align:4 +@3885 = .data:0x802E8184; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802E81A8; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E81D8; // type:label scope:local +@635 = .data:0x802E81D8; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802E81EC; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802E81FC; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802E820C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802E8220; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802E823C; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802E824C; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802E8260; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802E827C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E82A8; // type:label scope:local +@1737 = .data:0x802E82A8; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E82B8; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802E82C4; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802E82DC; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802E82EC; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802E8304; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802E8318; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802E8338; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802E835C; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802E837C; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802E839C; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802E83C0; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802E83E4; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802E8404; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802E8424; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802E8448; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802E8468; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802E8488; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802E84A0; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802E84B0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802E84BC; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802E84C8; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802E84D8; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802E84E4; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802E84F0; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802E850C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802E851C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802E8528; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802E8544; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802E8558; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802E856C; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802E8578; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802E858C; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802E85AC; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802E85C0; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802E85D4; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802E8614; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802E8634; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802E8648; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802E8654; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802E866C; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802E8680; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802E869C; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802E86C4; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802E86D8; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802E8700; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802E8714; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802E8720; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802E873C; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802E8750; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802E875C; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802E8768; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802E877C; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802E87B4; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802E87C8; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802E87D8; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802E87E4; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802E87F0; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802E8804; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802E882C; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802E8844; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802E8850; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802E885C; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802E8870; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802E8880; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802E889C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802E88C0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E88F0; // type:label scope:local +@1737 = .data:0x802E88F0; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E8900; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802E890C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802E8924; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802E8934; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802E894C; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802E8960; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802E8974; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802E8988; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802E89A8; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802E89CC; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802E89EC; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802E8A0C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802E8A30; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802E8A54; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802E8A74; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802E8A94; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802E8AB8; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802E8AD8; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802E8AF8; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802E8B10; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802E8B20; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802E8B2C; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802E8B38; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802E8B48; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802E8B54; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802E8B7C; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802E8B8C; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802E8BB4; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802E8BC8; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802E8BDC; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802E8BE8; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802E8BFC; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802E8C1C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802E8C30; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802E8C44; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802E8C84; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802E8CA4; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802E8CB8; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802E8CC4; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802E8CDC; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802E8CF0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802E8D0C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802E8D34; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802E8D48; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802E8D70; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802E8D84; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802E8DAC; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802E8DC0; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802E8DD4; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802E8DE8; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802E8E04; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E8E28; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E8E3C; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802E8E48; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E8E54; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802E8EA0; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802E8EB4; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802E8EC4; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802E8ED0; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802E8EDC; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802E8EF0; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802E8F18; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802E8F30; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802E8F3C; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802E8F48; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802E8F5C; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802E8F6C; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802E8F88; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802E8FAC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E8FE0; // type:label scope:local +@1737 = .data:0x802E8FE0; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E8FF0; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802E8FFC; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802E9014; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802E9024; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802E904C; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802E9074; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802E908C; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802E90A8; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802E90C0; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802E90D4; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802E90E8; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802E90FC; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802E911C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802E9140; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802E9160; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802E9180; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802E91A4; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802E91C8; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802E91E8; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802E9208; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802E922C; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802E924C; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802E926C; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802E9284; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802E9294; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802E92A0; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802E92AC; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802E92BC; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802E92C8; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802E92F0; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802E9300; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802E9328; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802E933C; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802E9350; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802E935C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802E9370; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802E9390; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802E93A4; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802E93B8; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802E93F8; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802E9418; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802E942C; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802E9438; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802E9450; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802E9464; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802E9480; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802E94A8; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802E94BC; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802E94E4; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802E94F8; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E9520; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802E9534; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802E9548; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802E9564; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802E957C; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802E958C; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802E9598; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802E95A8; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802E95BC; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802E95D8; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802E95F8; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802E9614; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802E962C; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802E9638; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802E964C; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802E9668; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802E9684; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802E9698; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802E96B4; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802E96CC; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802E96DC; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802E96E8; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802E96FC; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802E971C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802E9734; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802E9760; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802E976C; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802E9784; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802E9798; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802E97AC; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802E97C8; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802E97E0; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802E97F0; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802E9804; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802E9820; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802E9840; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802E9860; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802E9874; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802E9888; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802E989C; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802E98B8; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802E98DC; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802E98F0; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802E98FC; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802E9908; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802E9954; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802E9968; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802E9978; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802E9984; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802E9990; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802E99A4; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802E99CC; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802E99E4; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802E99F0; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802E99FC; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802E9A10; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802E9A20; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802E9A3C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802E9A60; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E9A90; // type:label scope:local +@1737 = .data:0x802E9A90; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E9AA0; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802E9AAC; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802E9AC4; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802E9ADC; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802E9AFC; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802E9B1C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802E9B3C; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802E9B5C; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802E9B80; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802E9BA4; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802E9BC4; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802E9BE4; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802E9C04; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802E9C24; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802E9C44; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802E9C58; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802E9C68; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802E9C74; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802E9C80; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802E9C98; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802E9CA4; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802E9CB0; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802E9CCC; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802E9CD8; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802E9CE4; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802E9CF0; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802E9D04; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802E9D20; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802E9D38; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802E9D4C; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802E9D58; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802E9D6C; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802E9DAC; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802E9DBC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802E9DD0; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802E9E08; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E9E1C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802E9E2C; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802E9E38; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802E9E44; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802E9E58; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802E9E80; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802E9E94; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802E9EA0; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802E9EAC; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802E9EC0; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802E9ED0; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802E9EEC; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802E9F10; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E9F40; // type:label scope:local +@1737 = .data:0x802E9F40; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E9F50; // type:object size:0xA scope:local align:4 data:string +@1752 = .data:0x802E9F5C; // type:object size:0x23 scope:local align:4 data:string +@2115 = .data:0x802E9F80; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802E9F90; // type:object size:0xF scope:local align:4 +@2119 = .data:0x802E9FA0; // type:object size:0x1D scope:local align:4 +@2121 = .data:0x802E9FC0; // type:object size:0x19 scope:local align:4 +@2123 = .data:0x802E9FDC; // type:object size:0xF scope:local align:4 +@2125 = .data:0x802E9FEC; // type:object size:0x15 scope:local align:4 +@2578 = .data:0x802EA004; // type:object size:0x27 scope:local align:4 data:string +@2774 = .data:0x802EA02C; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802EA04C; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802EA06C; // type:object size:0x1E scope:local align:4 data:string +@2777 = .data:0x802EA08C; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802EA0AC; // type:object size:0x21 scope:local align:4 data:string +@2779 = .data:0x802EA0D0; // type:object size:0x21 scope:local align:4 data:string +@2780 = .data:0x802EA0F4; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802EA114; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802EA134; // type:object size:0x1F scope:local align:4 data:string +@2783 = .data:0x802EA154; // type:object size:0x1E scope:local align:4 data:string +@2784 = .data:0x802EA174; // type:object size:0x1E scope:local align:4 data:string +@2785 = .data:0x802EA194; // type:object size:0x13 scope:local align:4 data:string +@2787 = .data:0x802EA1A8; // type:object size:0xD scope:local align:4 data:string +@2786 = .data:0x802EA1B8; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802EA1C4; // type:object size:0xC scope:global align:4 +@2788 = .data:0x802EA1D0; // type:object size:0x12 scope:local align:4 data:string +@2790 = .data:0x802EA1E4; // type:object size:0xD scope:local align:4 data:string +@2791 = .data:0x802EA1F4; // type:object size:0xC scope:local align:4 data:string +@2792 = .data:0x802EA200; // type:object size:0xC scope:local align:4 +@2789 = .data:0x802EA20C; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802EA220; // type:object size:0x28 scope:global align:4 +@2793 = .data:0x802EA248; // type:object size:0x12 scope:local align:4 data:string +@2795 = .data:0x802EA25C; // type:object size:0xA scope:local align:4 data:string +@2794 = .data:0x802EA268; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802EA274; // type:object size:0x1C scope:weak align:4 +@2813 = .data:0x802EA290; // type:object size:0x14 scope:local align:4 data:string +@2814 = .data:0x802EA2A4; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802EA2B0; // type:object size:0x1C scope:weak align:4 +@2903 = .data:0x802EA2CC; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802EA2DC; // type:object size:0x12 scope:local align:4 data:string +@2906 = .data:0x802EA2F0; // type:object size:0xC scope:local align:4 +@2907 = .data:0x802EA2FC; // type:object size:0xF scope:local align:4 data:string +@2908 = .data:0x802EA30C; // type:object size:0x14 scope:local align:4 +@2904 = .data:0x802EA320; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802EA33C; // type:object size:0x20 scope:weak align:4 +@3004 = .data:0x802EA35C; // type:object size:0xC scope:local align:4 data:string +@3014 = .data:0x802EA394; // type:object size:0x19 scope:local align:4 data:string +@3015 = .data:0x802EA3B0; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802EA3C4; // type:object size:0x1C scope:weak align:4 +@3064 = .data:0x802EA3E0; // type:object size:0x1C scope:local align:4 data:string +@3069 = .data:0x802EA3FC; // type:object size:0x10 scope:local align:4 data:string +@3070 = .data:0x802EA40C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802EA420; // type:object size:0x1C scope:weak align:4 +@3090 = .data:0x802EA43C; // type:object size:0x11 scope:local align:4 data:string +@3092 = .data:0x802EA450; // type:object size:0x1C scope:local align:4 data:string +@3093 = .data:0x802EA46C; // type:object size:0x14 scope:local align:4 +@3091 = .data:0x802EA480; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802EA49C; // type:object size:0x24 scope:weak align:4 +@3136 = .data:0x802EA4C0; // type:object size:0xF scope:local align:4 data:string +@3137 = .data:0x802EA4D0; // type:object size:0xC scope:local align:4 +@3139 = .data:0x802EA4F8; // type:object size:0xF scope:local align:4 data:string +@3141 = .data:0x802EA508; // type:object size:0x9 scope:local align:4 data:string +@3142 = .data:0x802EA514; // type:object size:0x14 scope:local align:4 +@3140 = .data:0x802EA528; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802EA544; // type:object size:0x20 scope:weak align:4 +@3169 = .data:0x802EA564; // type:object size:0x13 scope:local align:4 data:string +@3171 = .data:0x802EA578; // type:object size:0xB scope:local align:4 data:string +@3172 = .data:0x802EA584; // type:object size:0xC scope:local align:4 +@3173 = .data:0x802EA590; // type:object size:0xD scope:local align:4 data:string +@3174 = .data:0x802EA5A0; // type:object size:0x14 scope:local align:4 +@3170 = .data:0x802EA5B4; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802EA5D0; // type:object size:0x24 scope:weak align:4 +@3181 = .data:0x802EA5F4; // type:object size:0x15 scope:local align:4 data:string +@3183 = .data:0x802EA60C; // type:object size:0xF scope:local align:4 data:string +@3184 = .data:0x802EA61C; // type:object size:0x1C scope:local align:4 +@3182 = .data:0x802EA638; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802EA65C; // type:object size:0x24 scope:weak align:4 +@3224 = .data:0x802EA680; // type:object size:0xE scope:local align:4 data:string +@3226 = .data:0x802EA690; // type:object size:0xA scope:local align:4 data:string +@3225 = .data:0x802EA69C; // type:object size:0xC scope:local align:4 +@3228 = .data:0x802EA6C0; // type:object size:0x12 scope:local align:4 data:string +@3229 = .data:0x802EA6D4; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802EA6E0; // type:object size:0x1C scope:weak align:4 +@3495 = .data:0x802EA6FC; // type:object size:0x10 scope:local align:4 data:string +@3497 = .data:0x802EA70C; // type:object size:0xA scope:local align:4 data:string +@3498 = .data:0x802EA718; // type:object size:0x14 scope:local align:4 +@3496 = .data:0x802EA72C; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802EA748; // type:object size:0x1C scope:weak align:4 +@3561 = .data:0x802EA764; // type:object size:0xF scope:local align:4 data:string +@3562 = .data:0x802EA774; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802EA780; // type:object size:0x1C scope:weak align:4 +@3568 = .data:0x802EA7B8; // type:object size:0x14 scope:local align:4 data:string +@3571 = .data:0x802EA7CC; // type:object size:0x9 scope:local align:4 data:string +@3572 = .data:0x802EA7D8; // type:object size:0xC scope:local align:4 +@3574 = .data:0x802EA7E4; // type:object size:0x14 scope:local align:4 +@3575 = .data:0x802EA7F8; // type:object size:0xF scope:local align:4 data:string +@3576 = .data:0x802EA808; // type:object size:0x1C scope:local align:4 +@3569 = .data:0x802EA824; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802EA848; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802EA878; // type:label scope:local +@1737 = .data:0x802EA878; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EA888; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802EA894; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802EA8A4; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802EA8B4; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802EA8D0; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802EA8F0; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802EA910; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802EA930; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802EA950; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802EA970; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802EA990; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802EA9B0; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802EA9D0; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802EA9F0; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802EAA10; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802EAA24; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802EAA34; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802EAA40; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802EAA4C; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802EAA60; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802EAA70; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802EAA7C; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802EAA88; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802EAA9C; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802EAAC4; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802EAAD8; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802EAAE4; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802EAAF8; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802EAB04; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802EAB18; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802EAB34; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802EAB4C; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802EAB60; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802EAB6C; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802EAB80; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802EABC0; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802EABD0; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802EABDC; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802EAC14; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802EAC28; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802EAC34; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802EAC40; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802EAC54; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802EAC64; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802EAC80; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802EACA4; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802EACD4; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802EACF8; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802EAD18; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802EAD24; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802EAD48; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802EADA8; // type:label scope:local +@1716 = .data:0x802EADA8; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802EADB8; // type:object size:0xB scope:local align:4 data:string +@1742 = .data:0x802EADC4; // type:object size:0xF scope:local align:4 data:string +@1809 = .data:0x802EADD4; // type:object size:0x18 scope:local align:4 data:string +@1810 = .data:0x802EADEC; // type:object size:0x13 scope:local align:4 data:string +@1812 = .data:0x802EAE00; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802EAE0C; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802EAE18; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802EAE38; // type:label scope:local +@1737 = .data:0x802EAE38; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802EAE48; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802EAE54; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802EAE68; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802EAE7C; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802EAE9C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802EAEB4; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802EAEC8; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802EAEE0; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802EAEF4; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802EAF14; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802EAF34; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802EAF54; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802EAF74; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802EAF98; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802EAFBC; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802EAFDC; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802EAFFC; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802EB01C; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802EB03C; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802EB05C; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802EB070; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802EB080; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802EB08C; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802EB098; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802EB0AC; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802EB0BC; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802EB0C8; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802EB0D4; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802EB0E8; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802EB110; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802EB124; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802EB130; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802EB144; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802EB150; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802EB164; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802EB180; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802EB19C; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802EB1A8; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802EB1C4; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802EB1D4; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802EB1E0; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802EB1EC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802EB200; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802EB220; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802EB258; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802EB26C; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802EB28C; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802EB298; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802EB2AC; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802EB2C8; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802EB2E0; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802EB2EC; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802EB308; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802EB31C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802EB330; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802EB34C; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802EB360; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802EB36C; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802EB388; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802EB39C; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802EB3C8; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802EB3E4; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802EB3FC; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802EB408; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802EB41C; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802EB454; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802EB468; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802EB484; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802EB498; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802EB4B4; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802EB4D8; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802EB4F0; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802EB500; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802EB50C; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802EB520; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802EB540; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802EB558; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802EB56C; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802EB578; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802EB58C; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802EB5AC; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802EB5BC; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802EB5E4; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802EB5FC; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802EB608; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802EB624; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802EB638; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802EB64C; // type:object size:0x1C scope:weak align:4 +@3665 = .data:0x802EB668; // type:object size:0x15 scope:local align:4 data:string +@3687 = .data:0x802EB680; // type:object size:0x12 scope:local align:4 data:string +@3688 = .data:0x802EB694; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802EB6A8; // type:object size:0x1C scope:weak align:4 +@3694 = .data:0x802EB6C4; // type:object size:0x1B scope:local align:4 data:string +@3696 = .data:0x802EB6E0; // type:object size:0x15 scope:local align:4 data:string +@3697 = .data:0x802EB6F8; // type:object size:0xC scope:local align:4 +@3695 = .data:0x802EB704; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802EB718; // type:object size:0x20 scope:weak align:4 +@3701 = .data:0x802EB738; // type:object size:0x28 scope:local align:4 data:string +@3703 = .data:0x802EB760; // type:object size:0x22 scope:local align:4 data:string +@3704 = .data:0x802EB784; // type:object size:0x14 scope:local align:4 +@3702 = .data:0x802EB798; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802EB7B4; // type:object size:0x20 scope:weak align:4 +@3715 = .data:0x802EB7D4; // type:object size:0x1C scope:local align:4 data:string +@3717 = .data:0x802EB7F0; // type:object size:0x11 scope:local align:4 data:string +@3718 = .data:0x802EB804; // type:object size:0x14 scope:local align:4 +@3719 = .data:0x802EB818; // type:object size:0x16 scope:local align:4 data:string +@3720 = .data:0x802EB830; // type:object size:0x1C scope:local align:4 +@3716 = .data:0x802EB84C; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802EB870; // type:object size:0x20 scope:weak align:4 +@3731 = .data:0x802EB890; // type:object size:0x10 scope:local align:4 data:string +@3733 = .data:0x802EB8A0; // type:object size:0xA scope:local align:4 data:string +@3734 = .data:0x802EB8AC; // type:object size:0x14 scope:local align:4 +@3732 = .data:0x802EB8C0; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802EB8DC; // type:object size:0x1C scope:weak align:4 +@3754 = .data:0x802EB8F8; // type:object size:0xF scope:local align:4 data:string +@3755 = .data:0x802EB908; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802EB914; // type:object size:0x1C scope:weak align:4 +@3758 = .data:0x802EB94C; // type:object size:0x14 scope:local align:4 data:string +@3761 = .data:0x802EB960; // type:object size:0x9 scope:local align:4 data:string +@3762 = .data:0x802EB96C; // type:object size:0xC scope:local align:4 +@3764 = .data:0x802EB978; // type:object size:0x14 scope:local align:4 +@3765 = .data:0x802EB98C; // type:object size:0xF scope:local align:4 data:string +@3766 = .data:0x802EB99C; // type:object size:0x1C scope:local align:4 +@3759 = .data:0x802EB9B8; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802EB9DC; // type:object size:0x30 scope:weak align:4 +@648 = .data:0x802EBA10; // type:object size:0x10 scope:local align:4 data:string +@664 = .data:0x802EBA20; // type:object size:0x1C scope:local align:4 data:string +@722 = .data:0x802EBA40; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802EBA58; // type:object size:0xC scope:local align:4 data:string +@635 = .data:0x802EBA68; // type:object size:0x16 scope:local align:4 data:string +@881 = .data:0x802EBA80; // type:object size:0x12 scope:local align:4 data:string +@883 = .data:0x802EBA94; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802EBAA8; // type:label scope:local +@1134 = .data:0x802EBAA8; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802EBABC; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802EBACC; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802EBAE4; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802EBAFC; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802EBB14; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802EBB2C; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802EBB44; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802EBB5C; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802EBB74; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802EBB8C; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802EBBA4; // type:object size:0x13 scope:local align:4 data:string +@2816 = .data:0x802EBBB8; // type:object size:0x14 scope:local align:4 data:string +@2817 = .data:0x802EBBCC; // type:object size:0x21 scope:local align:4 data:string +@2820 = .data:0x802EBBF0; // type:object size:0x1B scope:local align:4 data:string +@3075 = .data:0x802EBC0C; // type:object size:0x14 scope:local align:4 data:string +@3076 = .data:0x802EBC20; // type:object size:0x14 scope:local align:4 data:string +@3701 = .data:0x802EBC34; // type:object size:0x24 scope:local align:4 +@4279 = .data:0x802EBC58; // type:object size:0x11 scope:local align:4 data:string +@5376 = .data:0x802EBC6C; // type:object size:0x17 scope:local align:4 data:string +@6150 = .data:0x802EBC84; // type:object size:0x12 scope:local align:4 data:string +@6987 = .data:0x802EBC98; // type:object size:0x1C scope:local align:4 data:string +@6989 = .data:0x802EBCB4; // type:object size:0xF scope:local align:4 data:string +@6990 = .data:0x802EBCC4; // type:object size:0x14 scope:local align:4 data:string +@6991 = .data:0x802EBCD8; // type:object size:0xC scope:local align:4 +@6992 = .data:0x802EBCE4; // type:object size:0x14 scope:local align:4 data:string +@6993 = .data:0x802EBCF8; // type:object size:0x1A scope:local align:4 data:string +@6994 = .data:0x802EBD14; // type:object size:0x10 scope:local align:4 data:string +@6995 = .data:0x802EBD24; // type:object size:0x14 scope:local align:4 +@6988 = .data:0x802EBD38; // type:object size:0x2C scope:local align:4 +@6997 = .data:0x802EBD74; // type:object size:0x24 scope:local align:4 data:string +@6998 = .data:0x802EBD98; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802EBDBC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802EBDE8; // type:label scope:local +@757 = .data:0x802EBDE8; // type:object size:0x12 scope:local align:4 data:string +@767 = .data:0x802EBDFC; // type:object size:0xE scope:local align:4 data:string +@818 = .data:0x802EBE0C; // type:object size:0x15 scope:local align:4 data:string +@820 = .data:0x802EBE24; // type:object size:0x13 scope:local align:4 data:string +@830 = .data:0x802EBE38; // type:object size:0x16 scope:local align:4 data:string +...data.0 = .data:0x802EBE50; // type:label scope:local +@635 = .data:0x802EBE50; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802EBE64; // type:object size:0xD scope:local align:4 data:string +@768 = .data:0x802EBE74; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802EBE8C; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802EBEA0; // type:object size:0x18 scope:local align:4 data:string +@801 = .data:0x802EBEB8; // type:object size:0x13 scope:local align:4 data:string +@828 = .data:0x802EBECC; // type:object size:0x12 scope:local align:4 data:string +...data.0 = .data:0x802EBEE0; // type:label scope:local +@1135 = .data:0x802EBEE0; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802EBEEC; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802EBEFC; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802EBF08; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802EBF30; // type:label scope:local +@660 = .data:0x802EBF30; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802EBF40; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802EBF4C; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802EBF64; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802EBF7C; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802EBF94; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802EBFAC; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802EBFC4; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802EBFDC; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802EBFF4; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802EC00C; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802EC028; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802EC044; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802EC060; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802EC078; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802EC094; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802EC0B0; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802EC0CC; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802EC0E8; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802EC100; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802EC118; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802EC130; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802EC14C; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802EC164; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802EC17C; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802EC198; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802EC1B4; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802EC1D0; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802EC1E8; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802EC204; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802EC220; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802EC23C; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802EC258; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802EC274; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802EC290; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802EC2AC; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802EC2C8; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802EC2E4; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802EC300; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802EC31C; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802EC338; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802EC350; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802EC36C; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802EC388; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802EC3A4; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802EC3C0; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802EC3DC; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802EC3F8; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802EC414; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802EC42C; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802EC448; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802EC460; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802EC47C; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802EC498; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802EC4B0; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802EC4C8; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802EC4E0; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802EC4F8; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802EC510; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802EC528; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802EC540; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802EC55C; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802EC574; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802EC58C; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802EC5A4; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802EC814; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802EC838; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802EC850; // type:label scope:local +@1737 = .data:0x802EC850; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802EC860; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802EC86C; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802EC888; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802EC8A8; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802EC8C8; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802EC8E8; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802EC908; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802EC928; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802EC948; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802EC968; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802EC988; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802EC9A8; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802EC9C8; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802EC9DC; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802EC9EC; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802EC9F8; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802ECA04; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802ECA14; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802ECA20; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802ECA2C; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802ECA38; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802ECA4C; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802ECA84; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802ECA98; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802ECAA8; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802ECAB4; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802ECAC0; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802ECAD4; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802ECAFC; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802ECB10; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802ECB1C; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802ECB28; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802ECB3C; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802ECB4C; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802ECB68; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802ECB8C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802ECBC0; // type:label scope:local +@1737 = .data:0x802ECBC0; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802ECBD0; // type:object size:0x9 scope:local align:4 data:string +@1931 = .data:0x802ECBDC; // type:object size:0x17 scope:local align:4 +@1934 = .data:0x802ECBF4; // type:object size:0x17 scope:local align:4 +@2291 = .data:0x802ECC0C; // type:object size:0x1C scope:local align:4 data:string +@2292 = .data:0x802ECC28; // type:object size:0x1E scope:local align:4 data:string +@2293 = .data:0x802ECC48; // type:object size:0x1D scope:local align:4 data:string +@2294 = .data:0x802ECC68; // type:object size:0x1D scope:local align:4 data:string +@2295 = .data:0x802ECC88; // type:object size:0x20 scope:local align:4 data:string +@2296 = .data:0x802ECCA8; // type:object size:0x20 scope:local align:4 data:string +@2297 = .data:0x802ECCC8; // type:object size:0x1D scope:local align:4 data:string +@2298 = .data:0x802ECCE8; // type:object size:0x1D scope:local align:4 data:string +@2299 = .data:0x802ECD08; // type:object size:0x1E scope:local align:4 data:string +@2300 = .data:0x802ECD28; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802ECD48; // type:object size:0x1D scope:local align:4 data:string +@2302 = .data:0x802ECD68; // type:object size:0x12 scope:local align:4 data:string +@2304 = .data:0x802ECD7C; // type:object size:0xD scope:local align:4 data:string +@2303 = .data:0x802ECD8C; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802ECD98; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802ECDA4; // type:object size:0x12 scope:local align:4 data:string +@2307 = .data:0x802ECDB8; // type:object size:0xA scope:local align:4 data:string +@2306 = .data:0x802ECDC4; // type:object size:0xC scope:local align:4 +@2326 = .data:0x802ECDF0; // type:object size:0x11 scope:local align:4 data:string +@2328 = .data:0x802ECE04; // type:object size:0x12 scope:local align:4 data:string +@2329 = .data:0x802ECE18; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802ECE24; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802ECE38; // type:object size:0x1C scope:weak align:4 +@2588 = .data:0x802ECE54; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802ECE64; // type:object size:0x1A scope:local align:4 data:string +@2591 = .data:0x802ECE80; // type:object size:0x14 scope:local align:4 +@2589 = .data:0x802ECE94; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802ECEB0; // type:object size:0x24 scope:weak align:4 +@2601 = .data:0x802ECED4; // type:object size:0x13 scope:local align:4 data:string +@2603 = .data:0x802ECEE8; // type:object size:0x1F scope:local align:4 data:string +@2604 = .data:0x802ECF08; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802ECF14; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802ECF28; // type:object size:0x1C scope:weak align:4 +@2615 = .data:0x802ECF44; // type:object size:0xE scope:local align:4 data:string +@2617 = .data:0x802ECF54; // type:object size:0x9 scope:local align:4 data:string +@2618 = .data:0x802ECF60; // type:object size:0x14 scope:local align:4 +@2616 = .data:0x802ECF74; // type:object size:0x1C scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802ECF90; // type:object size:0x20 scope:weak align:4 +@2660 = .data:0x802ECFCC; // type:object size:0x11 scope:local align:4 data:string +@2662 = .data:0x802ECFE0; // type:object size:0xD scope:local align:4 data:string +@2663 = .data:0x802ECFF0; // type:object size:0xC scope:local align:4 data:string +@2664 = .data:0x802ECFFC; // type:object size:0xC scope:local align:4 +@2661 = .data:0x802ED008; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802ED01C; // type:object size:0x28 scope:weak align:4 +@2665 = .data:0x802ED044; // type:object size:0x13 scope:local align:4 data:string +@2668 = .data:0x802ED058; // type:object size:0x9 scope:local align:4 data:string +@2669 = .data:0x802ED064; // type:object size:0xC scope:local align:4 +@2671 = .data:0x802ED070; // type:object size:0x14 scope:local align:4 +@2672 = .data:0x802ED084; // type:object size:0xF scope:local align:4 data:string +@2673 = .data:0x802ED094; // type:object size:0x1C scope:local align:4 +@2666 = .data:0x802ED0B0; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802ED0D4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802ED108; // type:label scope:local +@1092 = .data:0x802ED108; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802ED120; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802ED134; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802ED140; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802ED158; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802ED170; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802ED188; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802ED1A0; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802ED1B4; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802ED1C4; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802ED1D8; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802ED1E4; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802ED1F8; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802ED228; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802ED234; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802ED240; // type:object size:0xC scope:local align:4 data:4byte +@635 = .data:0x802ED250; // type:object size:0x10 scope:local align:4 data:string +@649 = .data:0x802ED260; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802ED26C; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802ED278; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802ED284; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802ED290; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802ED29C; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802ED2A8; // type:object size:0xC scope:local align:4 data:4byte +@929 = .data:0x802ED2B4; // type:object size:0x20 scope:local align:4 data:string +...data.0 = .data:0x802ED2D8; // type:label scope:local +@635 = .data:0x802ED2D8; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802ED2E8; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802ED2F4; // type:object size:0xC scope:local align:4 +@650 = .data:0x802ED300; // type:object size:0xC scope:local align:4 +@652 = .data:0x802ED30C; // type:object size:0xC scope:local align:4 +@727 = .data:0x802ED318; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802ED324; // type:object size:0xC scope:local align:4 +@817 = .data:0x802ED330; // type:object size:0xC scope:local align:4 +@824 = .data:0x802ED33C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802ED348; // type:label scope:local +@866 = .data:0x802ED348; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802ED35C; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802ED36C; // type:object size:0x16 scope:local align:4 data:string +@1118 = .data:0x802ED384; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802ED39C; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802ED3B4; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802ED3C0; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802ED3CC; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802ED3D8; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802ED3E4; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802ED3F0; // type:object size:0xC scope:local align:4 +@1272 = .data:0x802ED3FC; // type:object size:0x12 scope:local align:4 data:string +@1364 = .data:0x802ED410; // type:object size:0x17 scope:local align:4 data:string +@1366 = .data:0x802ED428; // type:object size:0x17 scope:local align:4 data:string +@1365 = .data:0x802ED440; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802ED44C; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802ED458; // type:object size:0xC scope:weak align:4 +@1367 = .data:0x802ED464; // type:object size:0x1C scope:local align:4 data:string +@1369 = .data:0x802ED480; // type:object size:0xF scope:local align:4 data:string +@1370 = .data:0x802ED490; // type:object size:0x14 scope:local align:4 data:string +@1371 = .data:0x802ED4A4; // type:object size:0xC scope:local align:4 +@1372 = .data:0x802ED4B0; // type:object size:0x14 scope:local align:4 data:string +@1373 = .data:0x802ED4C4; // type:object size:0x1A scope:local align:4 data:string +@1374 = .data:0x802ED4E0; // type:object size:0x10 scope:local align:4 data:string +@1375 = .data:0x802ED4F0; // type:object size:0x14 scope:local align:4 +@1368 = .data:0x802ED504; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802ED560; // type:label scope:local +@660 = .data:0x802ED560; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802ED574; // type:object size:0xD scope:local align:4 data:string +@765 = .data:0x802ED584; // type:object size:0x21 scope:local align:4 data:string +@767 = .data:0x802ED5A8; // type:object size:0x33 scope:local align:4 +@770 = .data:0x802ED5DC; // type:object size:0x1B scope:local align:4 data:string +@900 = .data:0x802ED5F8; // type:object size:0xC scope:local align:4 +@902 = .data:0x802ED604; // type:object size:0xC scope:local align:4 +@904 = .data:0x802ED610; // type:object size:0xC scope:local align:4 +@906 = .data:0x802ED61C; // type:object size:0x12 scope:local align:4 data:string +@908 = .data:0x802ED630; // type:object size:0x10 scope:local align:4 data:string +@907 = .data:0x802ED640; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802ED64C; // type:object size:0x2C scope:global align:4 +@839 = .data:0x802ED678; // type:object size:0x10 scope:local align:4 data:string +@901 = .data:0x802ED688; // type:object size:0x16 scope:local align:4 data:string +@1002 = .data:0x802ED6A0; // type:object size:0x26 scope:local align:4 data:string +@977 = .data:0x802ED6C8; // type:object size:0x15 scope:local align:4 data:string +@650 = .data:0x802ED6E0; // type:object size:0x10 scope:local align:4 data:string +@731 = .data:0x802ED6F0; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802ED708; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802ED720; // type:object size:0x28 scope:local align:4 +@1153 = .data:0x802ED748; // type:object size:0x14 scope:local align:4 data:string +@1154 = .data:0x802ED75C; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802ED788; // type:object size:0xB scope:local align:4 data:string +@874 = .data:0x802ED798; // type:object size:0x14 scope:local align:4 data:string +@974 = .data:0x802ED7AC; // type:object size:0xD scope:local align:4 data:string +@1447 = .data:0x802ED7BC; // type:object size:0x18 scope:local align:4 data:string +@1448 = .data:0x802ED7D4; // type:object size:0x1C scope:local align:4 +@1468 = .data:0x802ED7F0; // type:object size:0x1C scope:local align:4 +@1483 = .data:0x802ED80C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802ED828; // type:label scope:local +@866 = .data:0x802ED828; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802ED83C; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802ED84C; // type:object size:0xD scope:local align:4 data:string +@914 = .data:0x802ED85C; // type:object size:0x28 scope:local align:4 +@930 = .data:0x802ED884; // type:object size:0x16 scope:local align:4 data:string +@953 = .data:0x802ED89C; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802ED8C8; // type:label scope:local +@51 = .data:0x802ED8C8; // type:object size:0x1E scope:local align:4 data:string +@52 = .data:0x802ED8E8; // type:object size:0x16 scope:local align:4 data:string +@53 = .data:0x802ED900; // type:object size:0xC scope:local align:4 data:string +@54 = .data:0x802ED90C; // type:object size:0x9 scope:local align:4 data:string +@55 = .data:0x802ED918; // type:object size:0x10 scope:local align:4 data:string +@56 = .data:0x802ED928; // type:object size:0xB scope:local align:4 data:string +@57 = .data:0x802ED934; // type:object size:0xE scope:local align:4 data:string +@58 = .data:0x802ED944; // type:object size:0xD scope:local align:4 data:string +@59 = .data:0x802ED954; // type:object size:0xD scope:local align:4 data:string +@60 = .data:0x802ED964; // type:object size:0xD scope:local align:4 data:string +@61 = .data:0x802ED974; // type:object size:0x12 scope:local align:4 data:string +@62 = .data:0x802ED988; // type:object size:0xE scope:local align:4 data:string +@63 = .data:0x802ED998; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802ED9B0; // type:object size:0x3C scope:local align:4 +@97 = .data:0x802ED9EC; // type:object size:0x1B scope:local align:4 data:string +@98 = .data:0x802EDA08; // type:object size:0x2E scope:local align:4 data:string +@99 = .data:0x802EDA38; // type:object size:0x2F scope:local align:4 data:string +@100 = .data:0x802EDA68; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802EDA88; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802EDB08; // type:label scope:local +@69 = .data:0x802EDB08; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802EDB34; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802EDB4C; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802EDB68; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802EDB98; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802EDBD4; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802EDC0C; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802EDC4C; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802EDC78; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802EDC98; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802EDCB4; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802EDCD0; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802EDCEC; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802EDD04; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802EDD38; // type:label scope:local +@59 = .data:0x802EDD38; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802EDD7C; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802EDDAC; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802EDDDC; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802EDE0C; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802EDE20; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802EDE44; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802EDE58; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802EDE74; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802EDE88; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802EDEA8; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802EDED0; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802EDEEC; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802EDF10; // type:label scope:local +@10 = .data:0x802EDF10; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802EDF28; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802EDF50; // type:object size:0x1C scope:local align:4 data:string +@29 = .data:0x802EDF6C; // type:object size:0x1D scope:local align:4 data:string +@30 = .data:0x802EDF8C; // type:object size:0x17 scope:local align:4 data:string +@32 = .data:0x802EDFA4; // type:object size:0x30 scope:local align:4 data:string +@33 = .data:0x802EDFD4; // type:object size:0x60 scope:local align:4 data:string +@34 = .data:0x802EE034; // type:object size:0x4C scope:local align:4 data:string +@35 = .data:0x802EE080; // type:object size:0x62 scope:local align:4 data:string +@36 = .data:0x802EE0E4; // type:object size:0x60 scope:local align:4 data:string +InterruptPrioTable = .data:0x802EE148; // type:object size:0x2C scope:local align:4 data:4byte +@99 = .data:0x802EE174; // type:object size:0x6C scope:local align:4 +...data.0 = .data:0x802EE1E0; // type:label scope:local +Si = .data:0x802EE1E0; // type:object size:0x14 scope:local align:4 data:4byte +...data.0 = .data:0x802EE1F8; // type:label scope:local +@794 = .data:0x802EE1F8; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802EE258; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802EE264; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802EE2C4; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802EE30C; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802EE38C; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802EE40C; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802EE488; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802EE504; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802EE558; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802EE5CC; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802EE608; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802EE654; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802EE6A8; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802EE6FC; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802EE758; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802EE79C; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802EE7D8; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802EE814; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802EE858; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802EE89C; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802EE8D8; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802EE918; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802EE980; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802EE9C8; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802EEA08; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802EEA38; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802EEA68; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802EEA80; // type:label scope:local +@117 = .data:0x802EEA80; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802EEB48; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802EEB80; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802EEBB4; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802EEBE4; // type:object size:0x27 scope:local align:4 data:string +@328 = .data:0x802EEC0C; // type:object size:0x66 scope:local align:4 data:string +@329 = .data:0x802EEC74; // type:object size:0x55 scope:local align:4 data:string +@330 = .data:0x802EECCC; // type:object size:0x5C scope:local align:4 data:string +@361 = .data:0x802EED28; // type:object size:0x61 scope:local align:4 data:string +@362 = .data:0x802EED8C; // type:object size:0x50 scope:local align:4 data:string +@363 = .data:0x802EEDDC; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802EEE38; // type:label scope:local +@13 = .data:0x802EEE38; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802EEE50; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802EEE5C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802EEE78; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802EEE84; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802EEEA4; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802EEEE4; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802EEF18; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802EEF50; // type:object size:0x40 scope:local align:4 data:4byte +...data.0 = .data:0x802EEF90; // type:label scope:local +@36 = .data:0x802EEF90; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802EEFAC; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802EEFC4; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802EEFD8; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802EEFEC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802EF000; // type:label scope:local +timing = .data:0x802EF000; // type:object size:0x10A scope:local align:4 +taps = .data:0x802EF10C; // type:object size:0x32 scope:local align:4 +@87 = .data:0x802EF140; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802EF168; // type:label scope:local +ResetFunctionInfo = .data:0x802EF168; // type:object size:0x10 scope:local align:4 +XYNTSC = .data:0x802EF178; // type:object size:0x18 scope:local align:4 +XYPAL = .data:0x802EF190; // type:object size:0x18 scope:local align:4 +@414 = .data:0x802EF1A8; // type:object size:0x26 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802EF1D0; // type:object size:0x10 scope:local align:4 +SectorSizeTable = .data:0x802EF1E0; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802EF200; // type:object size:0x20 scope:local align:4 +@124 = .data:0x802EF220; // type:object size:0x68 scope:local align:4 +@183 = .data:0x802EF288; // type:object size:0x68 scope:local align:4 +@292 = .data:0x802EF2F0; // type:object size:0x44 scope:local align:4 +@319 = .data:0x802EF334; // type:object size:0x44 scope:local align:4 +@489 = .data:0x802EF378; // type:object size:0x1C scope:local align:4 +@488 = .data:0x802EF394; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802EF3E8; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802EF424; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802EF460; // type:object size:0x3C scope:global align:4 data:byte +@133 = .data:0x802EF4A0; // type:object size:0xF4 scope:local align:4 +@163 = .data:0x802EF594; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802EF5D0; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802EF5F8; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802EF618; // type:label scope:local +__files = .data:0x802EF618; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802EF6F0; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802EF720; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802EF7A4; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802EF828; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802EF8F8; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802EF940; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802EFA10; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802EFA54; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802EFA98; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802EFA9C; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802EFAA0; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802EFAA8; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802EFAB0; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802EFAB8; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802EFAC0; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802EFAC8; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802EFAD0; // type:label scope:local +__four_over_pi_m1 = .data:0x802EFAD0; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802EFAE0; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802EFB68; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802EFB84; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802EFBA0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802EFBAC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802EFBBC; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802EFBD0; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802EFC10; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802EFC30; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802EFC60; // type:label scope:local +dac = .bss:0x802EFC60; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802EFC6C; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802EFC80; // type:label scope:local +audioproc_mq = .bss:0x802EFC80; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EFCA0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802EFCE0; // type:label scope:local +finfo$42 = .bss:0x802EFCE0; // type:object size:0x3C scope:local align:4 +cmd$43 = .bss:0x802EFD1C; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802EFD50; // type:label scope:local +dsp_buf = .bss:0x802EFD50; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EFD60; // type:label scope:local +dsp_buf = .bss:0x802EFD60; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EFD70; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802EFD70; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802EFE30; // type:label scope:local +mq = .bss:0x802EFE30; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EFE50; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802F0050; // type:object size:0x8000 scope:local align:4 +finfo$221 = .bss:0x802F8050; // type:object size:0x3C scope:local align:4 +req$222 = .bss:0x802F808C; // type:object size:0x80 scope:local align:4 +finfo$264 = .bss:0x802F810C; // type:object size:0x3C scope:local align:4 +req$265 = .bss:0x802F8148; // type:object size:0x20 scope:local align:4 +finfo$272 = .bss:0x802F8168; // type:object size:0x3C scope:local align:4 +req$273 = .bss:0x802F81A4; // type:object size:0x20 scope:local align:4 +finfo$290 = .bss:0x802F81C4; // type:object size:0x3C scope:local align:4 +finfo$307 = .bss:0x802F8200; // type:object size:0x3C scope:local align:4 +finfo$312 = .bss:0x802F823C; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802F8278; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802F8A78; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F8B00; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802F8B00; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802F8B80; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x8030CB80; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x8030CC00; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8030CC80; // type:label scope:local +DSPCH = .bss:0x8030CC80; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x8030D080; // type:object size:0x6000 scope:local align:32 +FX_BUF = .bss:0x80313080; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x80313100; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x80313500; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x80313900; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x80313D00; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x80313F00; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x80314100; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x80314508; // type:label scope:local +FH_TO_FAT = .bss:0x80314508; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x80314908; // type:object size:0x800 scope:local align:4 +fattmp = .bss:0x80315108; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80315908; // type:label scope:local +JV_DIR_NAME = .bss:0x80315908; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x80315D08; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x80315F08; // type:object size:0x40 scope:local align:4 +finfo$150 = .bss:0x80315F48; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x80315FA0; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x80325FA0; // type:label scope:local +TRACK_LIST = .bss:0x80325FA0; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x803260A0; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x803260C0; // type:label scope:local +seq = .bss:0x803260C0; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x803694C0; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x803698C0; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x80369900; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x80369D00; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x80369D10; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x80369D7C; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80369DE8; // type:label scope:local +player_se$123 = .bss:0x80369DE8; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x80369E54; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x80369EC0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x80369F00; // type:label scope:local +bgm = .bss:0x80369F00; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x8036AC38; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x8036ACA8; // type:label scope:local +seq_loadbuffer = .bss:0x8036ACA8; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x8036B0A8; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x8036F3E8; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x8036F428; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8036F4C0; // type:label scope:local +SC = .bss:0x8036F4C0; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x80390F10; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x80390F28; // type:label scope:local +interleavebuf = .bss:0x80390F28; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x80390F60; // type:label scope:local +filename = .bss:0x80390F60; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x80390FA0; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x80390FAC; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x80390FF0; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x80391008; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x80391320; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x80392320; // type:label scope:local +clipTable = .bss:0x80392320; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x80392520; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x80392560; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80392D60; // type:label scope:local +fnVerts = .bss:0x80392D60; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x80394560; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x80395D60; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x80396D60; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x80396E60; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x8039AE60; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x8039EE60; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x8039EEA0; // type:label scope:local +@588 = .bss:0x8039EEA0; // type:object size:0xC scope:local align:4 +sys = .bss:0x8039EEAC; // type:object size:0x334 scope:global align:4 +dvdMesgQueue = .bss:0x8039F1E0; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x8039F200; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x8039F220; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x8039F240; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x8039F254; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x8039F354; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x8039F3A8; // type:object size:0x20 scope:local align:4 +mMemoryTable$1026 = .bss:0x8039F3C8; // type:object size:0xC scope:local align:4 +Thread = .bss:0x8039F3D8; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x8039F700; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x803A1700; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x803A1A20; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x803A3A20; // type:label scope:local +sControllerPad = .bss:0x803A3A20; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x803A3A50; // type:label scope:local +GColors = .bss:0x803A3A50; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x803A3A58; // type:label scope:local +CardThread = .bss:0x803A3A58; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x803A3D68; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x803A3DD8; // type:label scope:local +gameflow = .bss:0x803A3DD8; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x803A4140; // type:label scope:local +flowCont = .bss:0x803A4140; // type:object size:0x25C scope:global align:4 data:4byte +...bss.0 = .bss:0x803A43A0; // type:label scope:local +resultTable = .bss:0x803A43A0; // type:object size:0x40 scope:local align:4 data:4byte +...bss.0 = .bss:0x803A43E0; // type:label scope:local +collExtents = .bss:0x803A43E0; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x803A43F8; // type:label scope:local +bcs = .bss:0x803A43F8; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803A4800; // type:label scope:local +cst = .bss:0x803A4800; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x803A4880; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803AE880; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803D4880; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D6880; // type:label scope:local +YtexObj = .bss:0x803D6880; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D68A0; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D68C0; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D6BD0; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803D7BD0; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803D7C10; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D8410; // type:label scope:local +pikiInfMgr = .bss:0x803D8410; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D8438; // type:label scope:local +pikiColors__4Piki = .bss:0x803D8438; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803D8450; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803D8468; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803D8468; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D8478; // type:label scope:local +deadPikis__8GameStat = .bss:0x803D8478; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803D8484; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803D8490; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803D849C; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803D84A8; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803D84B4; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803D84C0; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803D84CC; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803D84D8; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803D84E4; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803D84F0; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803D8500; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803D8900; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803D8900; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D8928; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803D8928; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803D8980; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803D89A8; // type:object size:0x28 scope:global align:4 data:4byte +OSErrorTable = .bss:0x803D89D0; // type:object size:0x3C scope:local align:4 +Ecb = .bss:0x803D8A10; // type:object size:0xA8 scope:local align:4 +...bss.0 = .bss:0x803D8AC0; // type:label scope:local +Header = .bss:0x803D8AC0; // type:object size:0x20 scope:global align:32 +...bss.0 = .bss:0x803D8AE0; // type:label scope:local +Scb = .bss:0x803D8AE0; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803D8B38; // type:label scope:local +Packet = .bss:0x803D8B38; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803D8BB8; // type:object size:0xA0 scope:local align:8 +...bss.0 = .bss:0x803D8C58; // type:label scope:local +RunQueue = .bss:0x803D8C58; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803D8D58; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803D9068; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803D9378; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803D9640; // type:label scope:local +CommandList = .bss:0x803D9640; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803D9680; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803D96A8; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803D96D0; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803D96F8; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803D9704; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803D9720; // type:label scope:local +tmpBuffer = .bss:0x803D9720; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803D97A0; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803D97D0; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803D97F8; // type:label scope:local +WaitingQueue = .bss:0x803D97F8; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803D9818; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803D9858; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803D9888; // type:label scope:local +regs = .bss:0x803D9888; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803D9900; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803D9978; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x803D99D0; // type:label scope:local +PADType = .bss:0x803D99D0; // type:object size:0x10 scope:local align:4 +Type = .bss:0x803D99E0; // type:object size:0x10 scope:local align:4 data:4byte +Origin = .bss:0x803D99F0; // type:object size:0x30 scope:local align:4 +cmdProbeDevice = .bss:0x803D9A20; // type:object size:0x10 scope:local align:4 +cmdFixDevice = .bss:0x803D9A30; // type:object size:0x10 scope:local align:4 +__CARDBlock = .bss:0x803D9A40; // type:object size:0x210 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803D9C50; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803D9C70; // type:label scope:local +gxData = .bss:0x803D9C70; // type:object size:0x4F4 scope:local align:4 +FifoObj = .bss:0x803DA164; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803DA1E8; // type:label scope:local +DisplayListFifo = .bss:0x803DA1E8; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803DA20C; // type:object size:0x4F4 scope:local align:4 +fragmentinfo = .bss:0x803DA700; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803DA710; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803DA810; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803DA910; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803DA938; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803DA940; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803DC2F0; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803DC304; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803DC308; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803DC310; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803DC314; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803DC3A8; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803DC3B8; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803DC460; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803DC890; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803DC898; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DC8A0; // type:label scope:local +Ecb = .bss:0x803DC8A0; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803DC8B8; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803DC8E0; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803DF220; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803DF220; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803E0220; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803E0540; // type:object size:0x1000 scope:global align:32 +EX_DSPTASK = .bss:0x803E1540; // type:object size:0x40 scope:global align:4 +CGRP_ARRAY = .bss:0x803E1580; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803E15C0; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803E15EC; // type:object size:0x1B40 scope:global align:4 +CAMERA = .bss:0x803E15EC; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803E3150; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803E3300; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803E3340; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803E3344; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803E3348; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803E334C; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803E3350; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803E3358; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803E335C; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$81 = .sdata:0x803E3360; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$82 = .sdata:0x803E3368; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803E3370; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803E3374; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803E3378; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803E337C; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803E3380; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803E3388; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803E3390; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803E3391; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803E3394; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803E3398; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803E33A0; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803E33A8; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803E33AC; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803E33B0; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803E33B8; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803E33C0; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803E33C8; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803E33D0; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803E33D8; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803E33E0; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803E33E8; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803E33F0; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803E33F8; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803E3400; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803E3408; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803E3410; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803E3418; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803E3420; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803E3424; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803E3428; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803E342C; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803E342E; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803E3430; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803E3434; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803E3438; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803E343C; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803E3444; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803E3448; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803E3450; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803E3458; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803E3460; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803E3468; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803E3470; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803E3478; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803E3480; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803E3484; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803E3488; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803E3490; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E3498; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803E34A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E34A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E34B0; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803E34B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E34C0; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803E34C8; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803E34D0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E34D8; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803E34E0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E34E8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E34F0; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803E34F8; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803E3500; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E3504; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E3508; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E350C; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803E3510; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803E3514; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803E3518; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E351C; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803E3520; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803E3524; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803E3528; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803E352C; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E3530; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E3534; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803E353C; // type:object size:0x8 scope:local align:4 data:string +@1666 = .sdata:0x803E3544; // type:object size:0x1 scope:local align:4 +@1779 = .sdata:0x803E3548; // type:object size:0x8 scope:local align:4 data:string +@1880 = .sdata:0x803E3550; // type:object size:0x6 scope:local align:4 data:string +@1889 = .sdata:0x803E3558; // type:object size:0x4 scope:local align:4 data:float +@1890 = .sdata:0x803E355C; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata:0x803E3560; // type:object size:0x4 scope:local align:4 data:float +@1892 = .sdata:0x803E3564; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata:0x803E3568; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E356C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E3570; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E3574; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E3578; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E357C; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E3580; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E3584; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E3588; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E358C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803E3590; // type:object size:0x8 scope:local align:4 +@2189 = .sdata:0x803E3598; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803E35A0; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803E35A8; // type:object size:0x8 scope:local align:4 +@2191 = .sdata:0x803E35B0; // type:object size:0x8 scope:local align:4 data:string +@2193 = .sdata:0x803E35B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E35C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E35C8; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803E35D0; // type:object size:0x8 scope:local align:4 +@2197 = .sdata:0x803E35D8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803E35E0; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E35E8; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E35F0; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803E35F8; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E3600; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E3604; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E3608; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803E360C; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803E3610; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E3614; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E3618; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E361C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E3620; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803E3624; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803E362C; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803E3634; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E363C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3644; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803E364C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E3658; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E365C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E3660; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E3664; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E3668; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E366C; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803E3670; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E3674; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E3678; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E367C; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803E3684; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803E3688; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803E368C; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803E3690; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803E3698; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803E369C; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803E36A4; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803E36AC; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803E36B0; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803E36B4; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803E36BC; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803E36C4; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803E36CC; // type:object size:0x8 scope:local align:4 data:string +@1685 = .sdata:0x803E36D4; // type:object size:0x5 scope:local align:4 data:string +@1686 = .sdata:0x803E36DC; // type:object size:0x7 scope:local align:4 data:string +@1687 = .sdata:0x803E36E4; // type:object size:0x6 scope:local align:4 data:string +@2219 = .sdata:0x803E36EC; // type:object size:0x6 scope:local align:4 data:string +@2329 = .sdata:0x803E36F4; // type:object size:0x7 scope:local align:4 data:string +@2781 = .sdata:0x803E36FC; // type:object size:0x5 scope:local align:4 data:string +@2787 = .sdata:0x803E3704; // type:object size:0x8 scope:local align:4 data:string +@3629 = .sdata:0x803E370C; // type:object size:0x5 scope:local align:4 data:string +@3670 = .sdata:0x803E3714; // type:object size:0x7 scope:local align:4 data:string +@4260 = .sdata:0x803E371C; // type:object size:0x5 scope:local align:4 data:string +@4261 = .sdata:0x803E3724; // type:object size:0x5 scope:local align:4 data:string +@4299 = .sdata:0x803E372C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E3734; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803E373C; // type:object size:0x8 scope:local align:4 +@4567 = .sdata:0x803E3744; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E374C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3754; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E375C; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803E3764; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803E376C; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803E3774; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803E377C; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803E3784; // type:object size:0x8 scope:local align:4 +@4584 = .sdata:0x803E378C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803E3794; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803E379C; // type:object size:0x8 scope:local align:4 +@4589 = .sdata:0x803E37A4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803E37AC; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803E37B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803E37BC; // type:object size:0x8 scope:local align:4 +@4594 = .sdata:0x803E37C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803E37CC; // type:object size:0x8 scope:local align:4 +@4596 = .sdata:0x803E37D4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803E37DC; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803E37E4; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803E37EC; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803E37F8; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803E3800; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803E3804; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803E3808; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803E3810; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803E3818; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E381C; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803E3824; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803E3828; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803E3830; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803E3838; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803E3840; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E3844; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E3848; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E384C; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803E3850; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E3858; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803E3860; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E3864; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E3868; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803E3870; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803E3878; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803E387C; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803E3880; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803E3884; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803E388C; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803E3890; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803E3894; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803E389C; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803E38A4; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E38A8; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E38AC; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E38B0; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E38B4; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803E38B8; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803E38BC; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803E38C4; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803E38CC; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803E38D4; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803E38DC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E38E4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E38EC; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803E38F4; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803E38FC; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803E3904; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803E390C; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803E3918; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E391C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E3920; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E3924; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E3928; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803E392C; // type:object size:0x4 scope:global align:4 data:float +@869 = .sdata:0x803E3930; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803E3938; // type:object size:0x1 scope:local align:4 +@690 = .sdata:0x803E393C; // type:object size:0x3 scope:local align:4 data:string +@845 = .sdata:0x803E3940; // type:object size:0x8 scope:local align:4 data:string +@953 = .sdata:0x803E3948; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E3950; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803E3958; // type:object size:0x8 scope:local align:4 +@1006 = .sdata:0x803E3960; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3968; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3970; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803E3978; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E3980; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803E3988; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803E3990; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803E3998; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E39A0; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803E39A8; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803E39B0; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803E39B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E39C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E39C8; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803E39D0; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803E39D8; // type:object size:0x8 scope:local align:4 +@424 = .sdata:0x803E39E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E39E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E39F0; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803E39F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3A00; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E3A08; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E3A10; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E3A14; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E3A18; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E3A1C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E3A20; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803E3A24; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E3A28; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803E3A2C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803E3A30; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803E3A34; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803E3A38; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803E3A3C; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803E3A40; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803E3A44; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E3A48; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E3A4C; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E3A50; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E3A54; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803E3A58; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803E3A5C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803E3A60; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E3A64; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E3A68; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E3A6C; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E3A70; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803E3A74; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803E3A78; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E3A7C; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803E3A80; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803E3A84; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803E3A88; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E3A8C; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803E3A90; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E3A98; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E3AA0; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803E3AA8; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E3AB0; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E3AB8; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803E3AC0; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803E3AC4; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803E3ACC; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803E3AD0; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803E3AD8; // type:object size:0x8 scope:local align:4 +@715 = .sdata:0x803E3AE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3AE8; // type:object size:0x8 scope:local align:4 +@587 = .sdata:0x803E3AF0; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803E3AF8; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803E3AFC; // type:object size:0x4 scope:global align:4 data:4byte +@684 = .sdata:0x803E3B00; // type:object size:0x1 scope:local align:4 +@685 = .sdata:0x803E3B04; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E3B08; // type:object size:0x7 scope:local align:4 data:string +@909 = .sdata:0x803E3B10; // type:object size:0x6 scope:local align:4 data:string +@910 = .sdata:0x803E3B18; // type:object size:0x7 scope:local align:4 data:string +@911 = .sdata:0x803E3B20; // type:object size:0x5 scope:local align:4 data:string +@912 = .sdata:0x803E3B28; // type:object size:0x3 scope:local align:4 data:string +@913 = .sdata:0x803E3B2C; // type:object size:0x7 scope:local align:4 data:string +@951 = .sdata:0x803E3B34; // type:object size:0x5 scope:local align:4 data:string +@982 = .sdata:0x803E3B3C; // type:object size:0x7 scope:local align:4 data:string +@1087 = .sdata:0x803E3B44; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803E3B48; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803E3B50; // type:object size:0x8 scope:local align:4 +@1279 = .sdata:0x803E3B58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E3B60; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803E3B68; // type:object size:0x8 scope:local align:4 +@1282 = .sdata:0x803E3B70; // type:object size:0x4 scope:local align:4 data:string +@1301 = .sdata:0x803E3B74; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3B7C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3B84; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803E3B8C; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803E3B94; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E3B9C; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803E3BA4; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E3BAC; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803E3BB4; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803E3BBC; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803E3BC8; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803E3BD0; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803E3BD8; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803E3BDC; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803E3BE0; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803E3BE4; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803E3BE8; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803E3BEC; // type:object size:0x8 scope:local align:4 data:byte +@1344 = .sdata:0x803E3BF4; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E3BF8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E3BFC; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803E3C00; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata:0x803E3C04; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E3C08; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata:0x803E3C0C; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E3C10; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E3C14; // type:object size:0x6 scope:local align:4 data:string +@2083 = .sdata:0x803E3C1C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3C24; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3C2C; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E3C34; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803E3C3C; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E3C44; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803E3C4C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E3C58; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E3C5C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E3C60; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E3C64; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E3C68; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E3C6C; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E3C70; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E3C74; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E3C78; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E3C7C; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E3C80; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E3C84; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E3C88; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E3C8C; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E3C90; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803E3C94; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E3C98; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E3C9C; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E3CA0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E3CA4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E3CA8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E3CAC; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E3CB0; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E3CB4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E3CB8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E3CBC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E3CC0; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E3CC4; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E3CC8; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E3CCC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E3CD0; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803E3CD4; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E3CD8; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E3CDC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3CE4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3CEC; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803E3CF4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3CFC; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E3D04; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803E3D10; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803E3D18; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803E3D1C; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803E3D20; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803E3D24; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803E3D28; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803E3D2C; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803E3D34; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803E3D3C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E3D40; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E3D48; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3D50; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3D58; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803E3D60; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E3D68; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803E3D70; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E3D78; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E3D80; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803E3D88; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E3D90; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803E3D98; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803E3DA0; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803E3DA8; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803E3DB0; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803E3DB8; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803E3DC0; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803E3DC8; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803E3DD0; // type:object size:0x1 scope:local align:4 +@2274 = .sdata:0x803E3DD4; // type:object size:0x4 scope:local align:4 data:4byte +@2276 = .sdata:0x803E3DD8; // type:object size:0x4 scope:local align:4 data:4byte +@2278 = .sdata:0x803E3DDC; // type:object size:0x4 scope:local align:4 data:4byte +@2280 = .sdata:0x803E3DE0; // type:object size:0x4 scope:local align:4 data:4byte +@2281 = .sdata:0x803E3DE4; // type:object size:0x4 scope:local align:4 data:4byte +@2283 = .sdata:0x803E3DE8; // type:object size:0x4 scope:local align:4 data:4byte +@2285 = .sdata:0x803E3DEC; // type:object size:0x4 scope:local align:4 data:4byte +@2287 = .sdata:0x803E3DF0; // type:object size:0x4 scope:local align:4 data:4byte +@2289 = .sdata:0x803E3DF4; // type:object size:0x4 scope:local align:4 data:4byte +@2291 = .sdata:0x803E3DF8; // type:object size:0x4 scope:local align:4 data:4byte +@2293 = .sdata:0x803E3DFC; // type:object size:0x4 scope:local align:4 data:4byte +@2294 = .sdata:0x803E3E00; // type:object size:0x4 scope:local align:4 data:4byte +@2295 = .sdata:0x803E3E04; // type:object size:0x4 scope:local align:4 data:4byte +@2296 = .sdata:0x803E3E08; // type:object size:0x5 scope:local align:4 data:string +@2297 = .sdata:0x803E3E10; // type:object size:0x5 scope:local align:4 data:string +@2299 = .sdata:0x803E3E18; // type:object size:0x7 scope:local align:4 data:string +@2462 = .sdata:0x803E3E20; // type:object size:0x4 scope:local align:4 data:string +@2463 = .sdata:0x803E3E24; // type:object size:0x7 scope:local align:4 data:string +@2465 = .sdata:0x803E3E2C; // type:object size:0x8 scope:local align:4 data:string +@2500 = .sdata:0x803E3E34; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3E3C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3E44; // type:object size:0x8 scope:local align:4 +@2503 = .sdata:0x803E3E4C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3E54; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803E3E5C; // type:object size:0x8 scope:local align:4 +@2514 = .sdata:0x803E3E64; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3E6C; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803E3E74; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E3E7C; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803E3E84; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E3E8C; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803E3E94; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803E3E9C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803E3EA4; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803E3EAC; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803E3EB8; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803E3EC0; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803E3EC4; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803E3EC8; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803E3ECC; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803E3ED4; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803E3EDC; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803E3EE4; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803E3EEC; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803E3EF0; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803E3EF8; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E3F00; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3F08; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3F10; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E3F18; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3F20; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803E3F28; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3F30; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803E3F38; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803E3F40; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803E3F48; // type:object size:0x8 scope:local align:4 +@972 = .sdata:0x803E3F50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3F58; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3F60; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803E3F68; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803E3F70; // type:object size:0x8 scope:local align:4 +@1146 = .sdata:0x803E3F78; // type:object size:0x1 scope:local align:4 +@1188 = .sdata:0x803E3F7C; // type:object size:0x7 scope:local align:4 data:string +@1190 = .sdata:0x803E3F84; // type:object size:0x6 scope:local align:4 data:string +@1203 = .sdata:0x803E3F8C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3F94; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3F9C; // type:object size:0x8 scope:local align:4 +@1206 = .sdata:0x803E3FA4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3FAC; // type:object size:0x8 scope:local align:4 +@1208 = .sdata:0x803E3FB4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E3FBC; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803E3FC4; // type:object size:0x8 scope:local align:4 +@1220 = .sdata:0x803E3FCC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E3FD4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E3FDC; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803E3FE4; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803E3FF0; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803E3FF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4000; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4008; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803E4010; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4018; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803E4020; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E4028; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803E402C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E4034; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803E403C; // type:object size:0x8 scope:local align:4 +@1333 = .sdata:0x803E4048; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803E404C; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803E4054; // type:object size:0x8 scope:local align:4 data:string +@1430 = .sdata:0x803E405C; // type:object size:0x1 scope:local align:4 +@1465 = .sdata:0x803E4060; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4068; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4070; // type:object size:0x8 scope:local align:4 +@1470 = .sdata:0x803E4078; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4080; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803E4088; // type:object size:0x8 scope:local align:4 +@1571 = .sdata:0x803E4090; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E4098; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803E40A0; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E40A8; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803E40B0; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803E40B8; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803E40C0; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E40C4; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E40C8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E40CC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803E40D0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E40D4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E40D8; // type:object size:0x1 scope:local align:4 +@2295 = .sdata:0x803E40DC; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E40E0; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E40E4; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E40E8; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E40EC; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E40F0; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata:0x803E40F4; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata:0x803E40F8; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata:0x803E40FC; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata:0x803E4100; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata:0x803E4104; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata:0x803E4108; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E410C; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E4110; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E4114; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata:0x803E4118; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E411C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E4120; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata:0x803E4124; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata:0x803E4128; // type:object size:0x4 scope:local align:4 data:float +@2814 = .sdata:0x803E412C; // type:object size:0x4 scope:local align:4 data:float +@2815 = .sdata:0x803E4130; // type:object size:0x4 scope:local align:4 data:float +@2816 = .sdata:0x803E4134; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata:0x803E4138; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata:0x803E413C; // type:object size:0x7 scope:local align:4 data:string +@3088 = .sdata:0x803E4144; // type:object size:0x4 scope:local align:4 data:string +@3091 = .sdata:0x803E4148; // type:object size:0x5 scope:local align:4 data:string +@3092 = .sdata:0x803E4150; // type:object size:0x6 scope:local align:4 data:string +@3093 = .sdata:0x803E4158; // type:object size:0x7 scope:local align:4 data:string +@3095 = .sdata:0x803E4160; // type:object size:0x6 scope:local align:4 data:string +@3096 = .sdata:0x803E4168; // type:object size:0x8 scope:local align:4 data:string +@3117 = .sdata:0x803E4170; // type:object size:0x4 scope:local align:4 data:string +@3118 = .sdata:0x803E4174; // type:object size:0x6 scope:local align:4 data:string +@3144 = .sdata:0x803E417C; // type:object size:0x3 scope:local align:4 data:string +@3146 = .sdata:0x803E4180; // type:object size:0x3 scope:local align:4 data:string +@3147 = .sdata:0x803E4184; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803E418C; // type:object size:0x8 scope:local align:4 +@3177 = .sdata:0x803E4194; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E419C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E41A4; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803E41AC; // type:object size:0x8 scope:local align:4 +@3184 = .sdata:0x803E41B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E41BC; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E41C4; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803E41CC; // type:object size:0x8 scope:local align:4 +@3362 = .sdata:0x803E41D4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E41DC; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803E41E4; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803E41EC; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E41F4; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803E41FC; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803E4204; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803E420C; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803E4214; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803E421C; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803E4228; // type:object size:0x4 scope:local align:4 data:float +@1227 = .sdata:0x803E422C; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata:0x803E4230; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803E4234; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E4238; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E423C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E4240; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803E4244; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803E4248; // type:object size:0x4 scope:local align:4 data:float +@1243 = .sdata:0x803E424C; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E4250; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E4254; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E4258; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E425C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E4260; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E4264; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803E426C; // type:object size:0x6 scope:local align:4 data:string +@1310 = .sdata:0x803E4274; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E427C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4284; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E428C; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803E4294; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803E429C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E42A4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E42AC; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E42B4; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803E42BC; // type:object size:0x8 scope:local align:4 +@1418 = .sdata:0x803E42C4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E42CC; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803E42D4; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803E42E0; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803E42E8; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803E42EC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E42F4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E42FC; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803E4304; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E430C; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E4314; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E431C; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803E4324; // type:object size:0x8 scope:local align:4 +@724 = .sdata:0x803E4330; // type:object size:0x4 scope:local align:4 data:float +@725 = .sdata:0x803E4334; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata:0x803E4338; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata:0x803E433C; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E4340; // type:object size:0x1 scope:local align:4 +@863 = .sdata:0x803E4344; // type:object size:0x4 scope:local align:4 data:float +@864 = .sdata:0x803E4348; // type:object size:0x4 scope:local align:4 data:float +@865 = .sdata:0x803E434C; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E4350; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E4354; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata:0x803E4358; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata:0x803E435C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E4360; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata:0x803E4364; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803E4368; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E436C; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E4370; // type:object size:0x4 scope:local align:4 data:float +@956 = .sdata:0x803E4374; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata:0x803E4378; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803E4380; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E4384; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E4388; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E438C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E4390; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E4394; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E4398; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E43A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E43A8; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803E43B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E43B8; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E43C0; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E43C8; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803E43D0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E43D8; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803E43E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E43E8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E43F0; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803E43F8; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803E4400; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803E4408; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803E4410; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803E4414; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E441C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4424; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E442C; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E4434; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E443C; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803E4444; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4450; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803E4458; // type:object size:0x4 scope:local align:4 data:string +@802 = .sdata:0x803E445C; // type:object size:0x8 scope:local align:4 data:string +@804 = .sdata:0x803E4464; // type:object size:0x8 scope:local align:4 data:string +@830 = .sdata:0x803E446C; // type:object size:0x4 scope:local align:4 data:string +@861 = .sdata:0x803E4470; // type:object size:0x4 scope:local align:4 data:string +@868 = .sdata:0x803E4474; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E447C; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E4484; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803E448C; // type:object size:0x8 scope:local align:4 +@872 = .sdata:0x803E4494; // type:object size:0x8 scope:local align:4 data:string +@874 = .sdata:0x803E449C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E44A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E44AC; // type:object size:0x8 scope:local align:4 +@877 = .sdata:0x803E44B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E44BC; // type:object size:0x8 scope:local align:4 +@879 = .sdata:0x803E44C4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803E44CC; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803E44D4; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803E44DC; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E44E8; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E44EC; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E44F0; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata:0x803E44F4; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803E44F8; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E44FC; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata:0x803E4500; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E4504; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E4508; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E450C; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E4510; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E4514; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803E4518; // type:object size:0x4 scope:local align:4 data:float +@1288 = .sdata:0x803E451C; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803E4520; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E4524; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E4528; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E452C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E4530; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803E4534; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata:0x803E4538; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E453C; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803E4540; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803E4544; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803E4548; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E454C; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E4550; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803E4554; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803E4558; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata:0x803E455C; // type:object size:0x7 scope:local align:4 data:string +@1483 = .sdata:0x803E4564; // type:object size:0x7 scope:local align:4 data:string +@1508 = .sdata:0x803E456C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4574; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E457C; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E4584; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803E458C; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803E4594; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E459C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E45A4; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803E45AC; // type:object size:0x8 scope:local align:4 +@1769 = .sdata:0x803E45B4; // type:object size:0x1 scope:local align:4 +@1799 = .sdata:0x803E45B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E45C0; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803E45C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803E45D0; // type:object size:0x8 scope:local align:4 +@941 = .sdata:0x803E45D8; // type:object size:0x7 scope:local align:4 data:string +@952 = .sdata:0x803E45E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E45E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E45F0; // type:object size:0x8 scope:local align:4 +@957 = .sdata:0x803E45F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4600; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803E4608; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803E4610; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E4618; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803E4620; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E4628; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E462C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E4630; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E4634; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E4638; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E463C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E4640; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E4644; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803E4648; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803E464C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E4650; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803E4654; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803E4658; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803E465C; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803E4660; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803E4664; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803E4668; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803E466C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E4670; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803E4674; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E4678; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E467C; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E4680; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E4684; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E4688; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E468C; // type:object size:0x4 scope:local align:4 data:float +@2552 = .sdata:0x803E4690; // type:object size:0x5 scope:local align:4 data:string +@2555 = .sdata:0x803E4698; // type:object size:0x3 scope:local align:4 data:string +@2557 = .sdata:0x803E469C; // type:object size:0x3 scope:local align:4 data:string +@2565 = .sdata:0x803E46A0; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata:0x803E46A4; // type:object size:0x4 scope:local align:4 data:float +@2567 = .sdata:0x803E46A8; // type:object size:0x4 scope:local align:4 data:float +@2568 = .sdata:0x803E46AC; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803E46B0; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803E46B4; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803E46B8; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803E46BC; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803E46C0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E46C4; // type:object size:0x5 scope:local align:4 data:string +@2884 = .sdata:0x803E46CC; // type:object size:0x7 scope:local align:4 data:string +@2887 = .sdata:0x803E46D4; // type:object size:0x6 scope:local align:4 data:string +@2927 = .sdata:0x803E46DC; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E46E0; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E46E4; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E46E8; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E46EC; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803E46F0; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E46F4; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E46F8; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E46FC; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E4700; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E4704; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E4708; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803E470C; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803E4710; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata:0x803E4714; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata:0x803E4718; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803E471C; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E4720; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803E4724; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E4728; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E472C; // type:object size:0x4 scope:local align:4 data:float +@3300 = .sdata:0x803E4730; // type:object size:0x4 scope:local align:4 data:float +@3301 = .sdata:0x803E4734; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata:0x803E4738; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata:0x803E473C; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata:0x803E4740; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803E4744; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata:0x803E4748; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata:0x803E474C; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata:0x803E4750; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata:0x803E4754; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata:0x803E4758; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata:0x803E475C; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata:0x803E4760; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803E4764; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803E4768; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata:0x803E476C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata:0x803E4770; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata:0x803E4774; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata:0x803E4778; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata:0x803E477C; // type:object size:0x8 scope:local align:4 data:string +@3804 = .sdata:0x803E4784; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata:0x803E4788; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata:0x803E478C; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata:0x803E4790; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata:0x803E4794; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata:0x803E4798; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata:0x803E479C; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata:0x803E47A0; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata:0x803E47A4; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata:0x803E47A8; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata:0x803E47AC; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata:0x803E47B0; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata:0x803E47B4; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata:0x803E47B8; // type:object size:0x4 scope:local align:4 data:float +@4597 = .sdata:0x803E47BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E47C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E47CC; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803E47D4; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803E47DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E47E4; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803E47EC; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E47F4; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803E47FC; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803E4804; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E480C; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E4814; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803E481C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803E4824; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E482C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E4834; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803E483C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803E4844; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803E484C; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E4854; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803E485C; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803E4868; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803E486C; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803E4870; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E4874; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E4878; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803E487C; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803E4880; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E4884; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E4888; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E488C; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E4890; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E4894; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E4898; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E489C; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E48A0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E48A4; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803E48A8; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803E48AC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803E48B0; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803E48B4; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803E48B8; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803E48BC; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E48C0; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803E48C4; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803E48C8; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803E48CC; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803E48D0; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803E48D4; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803E48D8; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803E48DC; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803E48E0; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803E48E4; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E48E8; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E48EC; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803E48F0; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E48F4; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803E48F8; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803E48FC; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803E4900; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803E4904; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803E4908; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803E490C; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803E4910; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803E4914; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803E4918; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803E491C; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803E4920; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803E4928; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803E492C; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803E4930; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803E4934; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803E4938; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803E4940; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E4944; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803E494C; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803E4954; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E495C; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803E4964; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803E496C; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803E4974; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803E4978; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803E4980; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803E4988; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803E4990; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803E4998; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803E49A0; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803E49A4; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803E49A8; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803E49AC; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803E49B0; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803E49B4; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803E49B8; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803E49BC; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E49C0; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803E49C4; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803E49C8; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803E49CC; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E49D0; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E49D4; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E49D8; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E49DC; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E49E0; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E49E4; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803E49E8; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E49EC; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E49F0; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803E49F4; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E49FC; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803E4A04; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803E4A08; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803E4A10; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803E4A18; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803E4A1C; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803E4A20; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803E4A24; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803E4A28; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803E4A2C; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803E4A30; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803E4A38; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803E4A40; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803E4A48; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803E4A4C; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803E4A50; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803E4A58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E4A60; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803E4A68; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803E4A70; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803E4A78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4A80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4A88; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803E4A90; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4A98; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803E4AA0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803E4AA8; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803E4AB0; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803E4AB8; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803E4AC0; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803E4AC8; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803E4AD0; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803E4AD8; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803E4AE0; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803E4AE8; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803E4AF0; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803E4AF8; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803E4AFC; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803E4B04; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803E4B08; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803E4B10; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803E4B18; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E4B20; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803E4B28; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803E4B30; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803E4B38; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803E4B3C; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803E4B44; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803E4B4C; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803E4B54; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803E4B5C; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803E4B60; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803E4B64; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803E4B68; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803E4B6C; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803E4B70; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803E4B74; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803E4B78; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803E4B7C; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803E4B80; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803E4B84; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803E4B88; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803E4B8C; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803E4B90; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803E4B94; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803E4B98; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803E4B9C; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803E4BA0; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803E4BA4; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803E4BA8; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803E4BAC; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803E4BB0; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803E4BB4; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803E4BB8; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803E4BBC; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803E4BC0; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803E4BC4; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803E4BC8; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803E4BCC; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803E4BD0; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803E4BD4; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803E4BD8; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803E4BDC; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803E4BE0; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803E4BE4; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803E4BE8; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803E4BEC; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803E4BF0; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803E4BF4; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803E4BF8; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803E4BFC; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803E4C00; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803E4C04; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E4C08; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E4C0C; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E4C10; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E4C14; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E4C18; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E4C1C; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E4C20; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E4C24; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E4C28; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E4C2C; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E4C30; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E4C34; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E4C38; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E4C3C; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803E4C40; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E4C44; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E4C48; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E4C4C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E4C50; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E4C54; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E4C58; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803E4C5C; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803E4C60; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803E4C64; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803E4C68; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E4C6C; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803E4C70; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E4C74; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E4C78; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803E4C7C; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803E4C80; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E4C84; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803E4C88; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803E4C8C; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E4C90; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803E4C94; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803E4C98; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803E4C9C; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E4CA0; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E4CA4; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E4CA8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E4CAC; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E4CB0; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E4CB4; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E4CB8; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803E4CBC; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803E4CC0; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803E4CC4; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E4CC8; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E4CCC; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803E4CD0; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E4CD4; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E4CD8; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E4CDC; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E4CE0; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E4CE4; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E4CE8; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803E4CEC; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803E4CF0; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803E4CF4; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803E4CF8; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803E4CFC; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803E4D00; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803E4D04; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803E4D08; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803E4D0C; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803E4D10; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803E4D14; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803E4D18; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803E4D1C; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E4D20; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803E4D24; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803E4D28; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803E4D2C; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803E4D30; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E4D34; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E4D38; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E4D3C; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803E4D40; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E4D44; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803E4D48; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803E4D4C; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803E4D50; // type:object size:0x4 scope:local align:4 data:float +@2533 = .sdata:0x803E4D54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4D5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4D64; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803E4D6C; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803E4D74; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803E4D7C; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803E4D84; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803E4D90; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E4D94; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E4D98; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E4D9C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E4DA0; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803E4DA4; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E4DA8; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803E4DAC; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803E4DB0; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E4DB4; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803E4DBC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4DC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4DCC; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803E4DD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4DDC; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803E4DE4; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803E4DF0; // type:object size:0x4 scope:local align:4 data:4byte +@1204 = .sdata:0x803E4DF4; // type:object size:0x7 scope:local align:4 data:string +@1205 = .sdata:0x803E4DFC; // type:object size:0x8 scope:local align:4 data:string +@1697 = .sdata:0x803E4E04; // type:object size:0x3 scope:local align:4 data:string +@2020 = .sdata:0x803E4E08; // type:object size:0x7 scope:local align:4 data:string +@2255 = .sdata:0x803E4E10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4E18; // type:object size:0x8 scope:local align:4 +@2260 = .sdata:0x803E4E20; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E4E28; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E4E30; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803E4E38; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803E4E3C; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E4E40; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E4E44; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E4E48; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E4E4C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E4E50; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803E4E54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4E5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4E64; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803E4E6C; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803E4E78; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803E4E80; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4E88; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4E90; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803E4E98; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4EA0; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803E4EA8; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E4EB0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E4EB8; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803E4EC0; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803E4EC8; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E4ECC; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E4ED0; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803E4ED4; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E4ED8; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803E4EDC; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E4EE0; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E4EE4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803E4EE8; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803E4EF0; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803E4EF8; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803E4F00; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803E4F08; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803E4F10; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803E4F18; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E4F1C; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E4F20; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E4F24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4F2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4F34; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803E4F3C; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803E4F48; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E4F4C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E4F50; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803E4F54; // type:object size:0x7 scope:local align:4 data:string +@2065 = .sdata:0x803E4F5C; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803E4F60; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata:0x803E4F64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E4F68; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803E4F70; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803E4F78; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803E4F80; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803E4F88; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803E4F90; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803E4F98; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803E4FA0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803E4FA8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803E4FB0; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803E4FB8; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803E4FC0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803E4FC8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803E4FD0; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803E4FD8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803E4FE0; // type:object size:0x8 scope:local align:4 +@643 = .sdata:0x803E4FE8; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E4FEC; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803E4FF0; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata:0x803E4FF4; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803E4FF8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E4FFC; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803E5004; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803E500C; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E5018; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803E5020; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803E5028; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803E5030; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E5034; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E5038; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E503C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E5040; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803E5048; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E5050; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803E5058; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803E5060; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803E5068; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803E5070; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803E5078; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803E5080; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803E5088; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803E5090; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803E5098; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E50A0; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E50A4; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E50A8; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803E50AC; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803E50B0; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803E50B4; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E50B8; // type:object size:0x5 scope:local align:4 data:string +@938 = .sdata:0x803E50C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__22Receiver<10AICreature> = .sdata:0x803E50C8; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803E50D0; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803E50D8; // type:object size:0x8 scope:local align:4 +@1161 = .sdata:0x803E50E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E50E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E50F0; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E50F8; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803E5100; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E5108; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E5110; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5118; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5120; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5128; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5130; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E5138; // type:object size:0x8 scope:local align:4 +@1180 = .sdata:0x803E5140; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803E5148; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E514C; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803E5150; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E5154; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E5158; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E515C; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E5160; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E5164; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E5168; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E516C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E5170; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E5174; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E5178; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803E517C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E5180; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E5184; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E5188; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E518C; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E5190; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E5194; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E5198; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E519C; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E51A0; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E51A4; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E51A8; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E51AC; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E51B0; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803E51B4; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata:0x803E51B8; // type:object size:0x4 scope:local align:4 data:float +@1703 = .sdata:0x803E51BC; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803E51C0; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803E51C4; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803E51C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803E51CC; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803E51D4; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803E51DC; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803E51E4; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803E51EC; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E51F4; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803E51FC; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803E5208; // type:object size:0x4 scope:global align:4 data:4byte +@2105 = .sdata:0x803E520C; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803E5210; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata:0x803E5214; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E5218; // type:object size:0x7 scope:local align:4 data:string +@2501 = .sdata:0x803E5220; // type:object size:0x7 scope:local align:4 data:string +@2502 = .sdata:0x803E5228; // type:object size:0x8 scope:local align:4 data:string +@2572 = .sdata:0x803E5230; // type:object size:0x6 scope:local align:4 data:string +@2573 = .sdata:0x803E5238; // type:object size:0x7 scope:local align:4 data:string +@2574 = .sdata:0x803E5240; // type:object size:0x6 scope:local align:4 data:string +@2575 = .sdata:0x803E5248; // type:object size:0x7 scope:local align:4 data:string +@2576 = .sdata:0x803E5250; // type:object size:0x8 scope:local align:4 data:string +@2577 = .sdata:0x803E5258; // type:object size:0x2 scope:local align:4 data:string +@2579 = .sdata:0x803E525C; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803E5260; // type:object size:0x4 scope:local align:4 data:float +@2581 = .sdata:0x803E5264; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata:0x803E5268; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata:0x803E526C; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata:0x803E5270; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata:0x803E5274; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata:0x803E5278; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803E527C; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E5280; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E5284; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E5288; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E528C; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E5290; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E5294; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5298; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803E52A0; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803E52A8; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803E52B0; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803E52B8; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803E52BC; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803E52C0; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803E52C4; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803E52C8; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803E52CC; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E52D4; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E52D8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E52DC; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E52E0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803E52E4; // type:object size:0x8 scope:local align:4 +@1362 = .sdata:0x803E52EC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E52F4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E52FC; // type:object size:0x8 scope:local align:4 +@1365 = .sdata:0x803E5304; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E530C; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803E5314; // type:object size:0x8 scope:local align:4 +@1086 = .sdata:0x803E5320; // type:object size:0x4 scope:local align:4 data:string +@1087 = .sdata:0x803E5324; // type:object size:0x3 scope:local align:4 data:string +@1088 = .sdata:0x803E5328; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803E5330; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803E5338; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803E533C; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803E5340; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803E5344; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803E5348; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803E534C; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803E5350; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803E5354; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803E5358; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803E535C; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803E5360; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803E5364; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803E5368; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803E536C; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803E5370; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803E5374; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803E5378; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803E537C; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803E5380; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803E5384; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803E5388; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803E538C; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803E5390; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803E5394; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E539C; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803E53A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E53AC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E53B4; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803E53BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E53C4; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803E53CC; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803E53D8; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803E53E0; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803E53E8; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E53F0; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803E53F8; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803E5400; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803E5408; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803E5410; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803E5418; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5420; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5428; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803E5430; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5438; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803E5440; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803E5448; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803E5450; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803E5451; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803E5452; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803E5453; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803E5454; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803E5458; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803E545C; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803E5460; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803E5461; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803E5462; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803E5463; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803E5464; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803E5468; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803E5470; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803E5478; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803E5480; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E5484; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803E548C; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803E5498; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803E549C; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803E54A0; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803E54A4; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803E54A8; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803E54B0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E54B8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E54C0; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803E54C8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E54D0; // type:object size:0x8 scope:local align:4 +@405 = .sdata:0x803E54D8; // type:object size:0x8 scope:local align:4 data:string +@549 = .sdata:0x803E54E0; // type:object size:0x8 scope:local align:4 data:string +@551 = .sdata:0x803E54E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E54F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E54F8; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803E5500; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803E5508; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E5510; // type:object size:0x5 scope:local align:4 data:string +@1677 = .sdata:0x803E5518; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E551C; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E5520; // type:object size:0x7 scope:local align:4 data:string +@1504 = .sdata:0x803E5528; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E552C; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E5530; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E5534; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803E5538; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E553C; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E5540; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E5544; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E5548; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E554C; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E5550; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803E5554; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803E5558; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E555C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E5560; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E5564; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803E5568; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E556C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803E5570; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803E5574; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E5578; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803E557C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803E5580; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E5584; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803E5588; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803E558C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803E5590; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803E5594; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803E5598; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E559C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803E55A0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803E55A4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E55A8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E55AC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E55B0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E55B4; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803E55B8; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803E55BC; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E55C0; // type:object size:0x4 scope:local align:4 data:float +@2442 = .sdata:0x803E55C4; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata:0x803E55C8; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E55CC; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E55D0; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E55D4; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E55D8; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata:0x803E55DC; // type:object size:0x4 scope:local align:4 data:float +@2913 = .sdata:0x803E55E0; // type:object size:0x4 scope:local align:4 data:float +@2914 = .sdata:0x803E55E4; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E55E8; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E55EC; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E55F0; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E55F4; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E55F8; // type:object size:0x4 scope:local align:4 data:float +@3187 = .sdata:0x803E55FC; // type:object size:0x4 scope:local align:4 data:float +@3188 = .sdata:0x803E5600; // type:object size:0x4 scope:local align:4 data:float +@3189 = .sdata:0x803E5604; // type:object size:0x4 scope:local align:4 data:float +@3190 = .sdata:0x803E5608; // type:object size:0x4 scope:local align:4 data:float +@3191 = .sdata:0x803E560C; // type:object size:0x4 scope:local align:4 data:float +@3192 = .sdata:0x803E5610; // type:object size:0x4 scope:local align:4 data:float +@3193 = .sdata:0x803E5614; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803E5618; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E561C; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E5620; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E5624; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803E5628; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803E562C; // type:object size:0x4 scope:local align:4 data:float +@3205 = .sdata:0x803E5630; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803E5634; // type:object size:0x4 scope:local align:4 data:float +@3207 = .sdata:0x803E5638; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata:0x803E563C; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803E5640; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803E5644; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803E5648; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803E564C; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803E5650; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803E5654; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803E5658; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata:0x803E565C; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803E5660; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803E5664; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803E5668; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803E566C; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803E5670; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803E5674; // type:object size:0x4 scope:local align:4 data:float +@3224 = .sdata:0x803E5678; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata:0x803E567C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E5680; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5688; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5690; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5698; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803E56A0; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E56A4; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803E56A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E56B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E56B8; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E56C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E56C8; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E56D0; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E56D8; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803E56E0; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E56E8; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E56EC; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E56F0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E56F4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E56F8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E56FC; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803E5700; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803E5704; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E5708; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803E570C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803E5710; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803E5714; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E5718; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E571C; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E5720; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E5724; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E5728; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E572C; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E5730; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E5734; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803E5738; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E573C; // type:object size:0x7 scope:local align:4 data:string +@1786 = .sdata:0x803E5744; // type:object size:0x5 scope:local align:4 data:string +@1787 = .sdata:0x803E574C; // type:object size:0x4 scope:local align:4 data:string +@1910 = .sdata:0x803E5750; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E5754; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5758; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E575C; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E5760; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E5764; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E5768; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E576C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E5770; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E5774; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E5778; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E577C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803E5780; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata:0x803E5784; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata:0x803E5788; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803E578C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata:0x803E5790; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata:0x803E5794; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E5798; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E579C; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E57A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803E57A4; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803E57AC; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E57B8; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E57BC; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E57C0; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E57C4; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E57C8; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803E57CC; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E57D0; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803E57D4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E57D8; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E57DC; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E57E0; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E57E4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803E57E8; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E57EC; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E57F0; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803E57F4; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E57F8; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E57FC; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E5800; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E5804; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E5808; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E580C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5814; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E581C; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E5824; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E582C; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803E5834; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803E5840; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E5844; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E5848; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E584C; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803E5850; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803E5854; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803E5858; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803E585C; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803E5860; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E5864; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803E5868; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803E586C; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803E5870; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803E5874; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803E5878; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E587C; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803E5880; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803E5884; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803E5888; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E588C; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata:0x803E5890; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803E5894; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803E5898; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E589C; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E58A0; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E58A4; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E58A8; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803E58AC; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E58B0; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E58B4; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803E58B8; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E58BC; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E58C0; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803E58C4; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803E58C8; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E58CC; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803E58D0; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803E58D4; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata:0x803E58D8; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E58DC; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E58E0; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803E58E4; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E58E8; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E58EC; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E58F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E58F4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E58FC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5904; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E590C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5914; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E591C; // type:object size:0x8 scope:local align:4 +@1963 = .sdata:0x803E5924; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E592C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5934; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803E593C; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803E5948; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5950; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5958; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803E5960; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803E5968; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803E596C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E5978; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5980; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5988; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E5990; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803E5998; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803E59A0; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803E59A8; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803E59B0; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803E59B8; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803E59C0; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803E59C4; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803E59CC; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803E59D4; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803E59DC; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803E59E4; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803E59EC; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803E59F4; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803E59FC; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803E5A04; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803E5A0C; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803E5A14; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803E5A1C; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803E5A20; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803E5A28; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803E5A30; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803E5A34; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803E5A3C; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803E5A44; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803E5A4C; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803E5A54; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803E5A5C; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803E5A64; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E5A6C; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803E5A70; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E5A74; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E5A78; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E5A7C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E5A80; // type:object size:0x4 scope:local align:4 data:string +@1492 = .sdata:0x803E5A84; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E5A88; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E5A8C; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803E5A90; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E5A94; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E5A98; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E5A9C; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E5AA0; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803E5AA4; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E5AA8; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E5AAC; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E5AB0; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E5AB4; // type:object size:0x4 scope:local align:4 data:4byte +@1509 = .sdata:0x803E5AB8; // type:object size:0x4 scope:local align:4 data:4byte +@1519 = .sdata:0x803E5ABC; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E5AC0; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E5AC4; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E5AC8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E5ACC; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E5AD0; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E5AD4; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803E5AD8; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E5ADC; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E5AE0; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E5AE4; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E5AE8; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E5AEC; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803E5AF0; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E5AF4; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803E5AF8; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803E5AFC; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803E5B00; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803E5B04; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803E5B08; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E5B0C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E5B10; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803E5B14; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803E5B18; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803E5B1C; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803E5B20; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803E5B24; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata:0x803E5B28; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E5B2C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E5B30; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E5B34; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E5B38; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E5B3C; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E5B40; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E5B44; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E5B48; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E5B4C; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E5B50; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E5B54; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803E5B58; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803E5B5C; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata:0x803E5B60; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata:0x803E5B64; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata:0x803E5B68; // type:object size:0x4 scope:local align:4 data:float +@2396 = .sdata:0x803E5B6C; // type:object size:0x4 scope:local align:4 data:float +@2464 = .sdata:0x803E5B70; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E5B74; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E5B78; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E5B7C; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata:0x803E5B80; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E5B84; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E5B88; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E5B8C; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E5B90; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata:0x803E5B94; // type:object size:0x4 scope:local align:4 data:float +@2874 = .sdata:0x803E5B98; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E5B9C; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E5BA0; // type:object size:0x8 scope:local align:4 data:string +@3075 = .sdata:0x803E5BA8; // type:object size:0x8 scope:local align:4 data:string +@3076 = .sdata:0x803E5BB0; // type:object size:0x1 scope:local align:4 +@3077 = .sdata:0x803E5BB4; // type:object size:0x4 scope:local align:4 data:string +@3078 = .sdata:0x803E5BB8; // type:object size:0x4 scope:local align:4 data:string +@3079 = .sdata:0x803E5BBC; // type:object size:0x4 scope:local align:4 data:string +@3081 = .sdata:0x803E5BC0; // type:object size:0x4 scope:local align:4 data:string +@3084 = .sdata:0x803E5BC4; // type:object size:0x4 scope:local align:4 data:string +@3086 = .sdata:0x803E5BC8; // type:object size:0x7 scope:local align:4 data:string +@3337 = .sdata:0x803E5BD0; // type:object size:0x6 scope:local align:4 data:string +@3338 = .sdata:0x803E5BD8; // type:object size:0x5 scope:local align:4 data:string +@3405 = .sdata:0x803E5BE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5BE8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5BF0; // type:object size:0x8 scope:local align:4 +@3407 = .sdata:0x803E5BF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5C00; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E5C08; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E5C10; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E5C18; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803E5C20; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E5C28; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803E5C30; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803E5C38; // type:object size:0x8 scope:local align:4 +@3444 = .sdata:0x803E5C40; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5C48; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5C50; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5C58; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5C60; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E5C68; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E5C70; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803E5C78; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E5C80; // type:object size:0x8 scope:local align:4 +@3489 = .sdata:0x803E5C88; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803E5C90; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E5C98; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5CA0; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803E5CA8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E5CB0; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803E5CB8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5CC0; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803E5CC8; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803E5CCC; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803E5CD4; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803E5CD8; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803E5CE0; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803E5CE8; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803E5CF0; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803E5CF8; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803E5CFC; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803E5D00; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803E5D04; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803E5D08; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E5D0C; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E5D14; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803E5D1C; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803E5D24; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5D2C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5D34; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E5D3C; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803E5D44; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5D4C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E5D58; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803E5D60; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E5D68; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E5D70; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803E5D78; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803E5D80; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803E5D88; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803E5D90; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803E5D98; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803E5DA0; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803E5DA8; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E5DAC; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E5DB0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803E5DB4; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803E5DBC; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803E5DC4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803E5DCC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803E5DD4; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803E5DDC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803E5DE4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803E5DEC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803E5DF4; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E5DFC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803E5E04; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803E5E10; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803E5E14; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803E5E1C; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E5E24; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803E5E28; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E5E2C; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E5E30; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata:0x803E5E34; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803E5E38; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803E5E3C; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E5E40; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E5E44; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata:0x803E5E48; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata:0x803E5E4C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E5E50; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata:0x803E5E54; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata:0x803E5E58; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803E5E5C; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata:0x803E5E60; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E5E64; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata:0x803E5E68; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata:0x803E5E6C; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E5E70; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E5E74; // type:object size:0x4 scope:local align:4 data:float +@2345 = .sdata:0x803E5E78; // type:object size:0x4 scope:local align:4 data:float +@2346 = .sdata:0x803E5E7C; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E5E80; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803E5E84; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata:0x803E5E88; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata:0x803E5E8C; // type:object size:0x4 scope:local align:4 data:float +@2496 = .sdata:0x803E5E90; // type:object size:0x4 scope:local align:4 data:float +@2638 = .sdata:0x803E5E94; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E5E98; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E5E9C; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata:0x803E5EA0; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata:0x803E5EA4; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E5EAC; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803E5EB4; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803E5EBC; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E5EC4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5ECC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E5ED4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5EDC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5EE4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E5EEC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E5EF4; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803E5EFC; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803E5F04; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803E5F0C; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803E5F14; // type:object size:0x8 scope:local align:4 +@3077 = .sdata:0x803E5F1C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5F24; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5F2C; // type:object size:0x8 scope:local align:4 +@3079 = .sdata:0x803E5F34; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5F3C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E5F44; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E5F4C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803E5F54; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E5F5C; // type:object size:0x8 scope:local align:4 +@3102 = .sdata:0x803E5F64; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E5F6C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E5F74; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803E5F7C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5F84; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E5F8C; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E5F94; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803E5F9C; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803E5FA4; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803E5FB0; // type:object size:0x4 scope:global align:4 data:4byte +@1905 = .sdata:0x803E5FB4; // type:object size:0x7 scope:local align:4 data:string +@2169 = .sdata:0x803E5FBC; // type:object size:0x3 scope:local align:4 data:string +@3240 = .sdata:0x803E5FC0; // type:object size:0x6 scope:local align:4 data:string +@3243 = .sdata:0x803E5FC8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5FD0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5FD8; // type:object size:0x8 scope:local align:4 +@3248 = .sdata:0x803E5FE0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5FE8; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803E5FF0; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E5FF8; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803E6000; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803E6008; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803E6010; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803E6018; // type:object size:0x6 scope:local align:4 data:string +@646 = .sdata:0x803E6020; // type:object size:0x3 scope:local align:4 data:string +@752 = .sdata:0x803E6024; // type:object size:0x6 scope:local align:4 data:string +@754 = .sdata:0x803E602C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6034; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E603C; // type:object size:0x8 scope:local align:4 +@757 = .sdata:0x803E6044; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803E604C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803E6054; // type:object size:0x8 scope:local align:4 +@761 = .sdata:0x803E605C; // type:object size:0x6 scope:local align:4 data:string +@763 = .sdata:0x803E6064; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E606C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803E6074; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803E6080; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803E6088; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803E608C; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803E6090; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803E6094; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E609C; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803E60A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E60AC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E60B4; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803E60BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E60C4; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803E60CC; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803E60D8; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803E60E0; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803E60E8; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803E60F0; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803E60F8; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803E6100; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803E6108; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E610C; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803E6110; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803E6114; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E6118; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E611C; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E6120; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E6124; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E6128; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E612C; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E6130; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E6134; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803E6138; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803E613C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E6140; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E6144; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E6148; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E614C; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E6150; // type:object size:0x6 scope:local align:4 data:string +@2052 = .sdata:0x803E6158; // type:object size:0x6 scope:local align:4 data:string +@2053 = .sdata:0x803E6160; // type:object size:0x7 scope:local align:4 data:string +@2054 = .sdata:0x803E6168; // type:object size:0x7 scope:local align:4 data:string +@2055 = .sdata:0x803E6170; // type:object size:0x6 scope:local align:4 data:string +@2056 = .sdata:0x803E6178; // type:object size:0x6 scope:local align:4 data:string +@2057 = .sdata:0x803E6180; // type:object size:0x6 scope:local align:4 data:string +@2058 = .sdata:0x803E6188; // type:object size:0x5 scope:local align:4 data:string +@2059 = .sdata:0x803E6190; // type:object size:0x5 scope:local align:4 data:string +@2060 = .sdata:0x803E6198; // type:object size:0x5 scope:local align:4 data:string +@2086 = .sdata:0x803E61A0; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803E61A8; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E61AC; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E61B0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E61B4; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E61B8; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E61BC; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E61C0; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E61C8; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803E61CC; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E61D0; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E61D4; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E61DC; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803E61E0; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E61E4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E61E8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E61EC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E61F0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E61F4; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E61F8; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E61FC; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E6200; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E6204; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E6208; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803E620C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E6210; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E6214; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803E6218; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803E621C; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803E6220; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E6224; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E6228; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803E622C; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata:0x803E6230; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E6234; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E6238; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata:0x803E623C; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata:0x803E6240; // type:object size:0x7 scope:local align:4 data:string +@2106 = .sdata:0x803E6248; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6250; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6258; // type:object size:0x8 scope:local align:4 +@2109 = .sdata:0x803E6260; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6268; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E6270; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803E6278; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6280; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E6288; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E628C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E6290; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E6294; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E6298; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E629C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E62A0; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E62A4; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803E62A8; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803E62AC; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803E62B0; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E62B4; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E62B8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E62BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E62C0; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803E62C8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E62D0; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803E62D8; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803E62E0; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803E62E8; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E62EC; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E62F0; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E62F4; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803E62F8; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E62FC; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E6300; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E6304; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6308; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803E6310; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6318; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803E6320; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6328; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803E6330; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E6338; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803E6340; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803E6348; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803E6350; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6358; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803E6360; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803E6368; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803E6370; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803E6378; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803E637C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E6380; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E6384; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E6388; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E638C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E6390; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E6394; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E6398; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E639C; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E63A0; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E63A4; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803E63A8; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E63AC; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E63B0; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E63B4; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E63B8; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E63BC; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E63C0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E63C4; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803E63C8; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803E63CC; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803E63D0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E63D4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E63D8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803E63DC; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803E63E0; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803E63E4; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803E63E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E63EC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E63F4; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803E63FC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6404; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803E640C; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6414; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803E641C; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803E6428; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803E642C; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803E6430; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E6434; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803E643C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E6440; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E6444; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6448; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6450; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803E6458; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6460; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803E6468; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803E6470; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803E6478; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803E6480; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803E6488; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803E6490; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6498; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803E64A0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E64A8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803E64B0; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E64B8; // type:object size:0x4 scope:local align:4 data:string +@1411 = .sdata:0x803E64BC; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E64C0; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E64C4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E64C8; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E64CC; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E64D0; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata:0x803E64D4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E64D8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E64E0; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E64E8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E64F0; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803E64F8; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803E6500; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803E6508; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803E6510; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803E6514; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803E651C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E6520; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803E6524; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6528; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6530; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803E6538; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6540; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803E6548; // type:object size:0x8 scope:local align:4 +@1455 = .sdata:0x803E6550; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata:0x803E6554; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E6558; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803E655C; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E6560; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803E6564; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6568; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6570; // type:object size:0x8 scope:local align:4 +@1513 = .sdata:0x803E6578; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6580; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803E6588; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803E6590; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E6594; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E6598; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E659C; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803E65A0; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E65A4; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803E65A8; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803E65AC; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803E65B0; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E65B4; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E65B8; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803E65BC; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803E65C0; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803E65C4; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803E65C8; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803E65CC; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803E65D0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E65D4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803E65D8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803E65DC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803E65E0; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803E65E4; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E65E8; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E65EC; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803E65F0; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803E65F4; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803E65F8; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803E65FC; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803E6600; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata:0x803E6608; // type:object size:0x6 scope:local align:4 data:string +@2748 = .sdata:0x803E6610; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E6614; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E6618; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803E661C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E6620; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E6624; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803E6628; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata:0x803E662C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E6630; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E6634; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata:0x803E6638; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E663C; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E6640; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E6644; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803E6648; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803E664C; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803E6650; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E6654; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E6658; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803E665C; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E6660; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E6664; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E6668; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803E666C; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E6670; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E6674; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E6678; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803E667C; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803E6680; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803E6684; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803E6688; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803E668C; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E6690; // type:object size:0x4 scope:local align:4 data:float +@3115 = .sdata:0x803E6694; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata:0x803E6698; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E669C; // type:object size:0x8 scope:local align:4 data:string +@3483 = .sdata:0x803E66A4; // type:object size:0x8 scope:local align:4 data:string +@4065 = .sdata:0x803E66AC; // type:object size:0x3 scope:local align:4 data:string +@4066 = .sdata:0x803E66B0; // type:object size:0x5 scope:local align:4 data:string +@4067 = .sdata:0x803E66B8; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata:0x803E66C0; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata:0x803E66C8; // type:object size:0x5 scope:local align:4 data:string +@4070 = .sdata:0x803E66D0; // type:object size:0x5 scope:local align:4 data:string +@4071 = .sdata:0x803E66D8; // type:object size:0x4 scope:local align:4 data:string +@4073 = .sdata:0x803E66DC; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata:0x803E66E4; // type:object size:0x5 scope:local align:4 data:string +@4075 = .sdata:0x803E66EC; // type:object size:0x6 scope:local align:4 data:string +@4237 = .sdata:0x803E66F4; // type:object size:0x2 scope:local align:4 data:string +@4244 = .sdata:0x803E66F8; // type:object size:0x3 scope:local align:4 data:string +@4247 = .sdata:0x803E66FC; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata:0x803E6700; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata:0x803E6704; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata:0x803E6708; // type:object size:0x4 scope:local align:4 data:float +@4251 = .sdata:0x803E670C; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E6710; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata:0x803E6714; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata:0x803E6718; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata:0x803E671C; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata:0x803E6720; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata:0x803E6724; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata:0x803E6728; // type:object size:0x4 scope:local align:4 data:float +@4273 = .sdata:0x803E672C; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata:0x803E6730; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata:0x803E6734; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata:0x803E6738; // type:object size:0x4 scope:local align:4 data:float +@4277 = .sdata:0x803E673C; // type:object size:0x4 scope:local align:4 data:float +@4278 = .sdata:0x803E6740; // type:object size:0x4 scope:local align:4 data:float +@4285 = .sdata:0x803E6744; // type:object size:0x4 scope:local align:4 data:float +@4286 = .sdata:0x803E6748; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata:0x803E674C; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata:0x803E6750; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata:0x803E6754; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata:0x803E6758; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E675C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6764; // type:object size:0x8 scope:local align:4 +@4436 = .sdata:0x803E676C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6774; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E677C; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E6788; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E6790; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E6794; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E6798; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E679C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E67A0; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E67A4; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E67A8; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E67AC; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E67B0; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E67B4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E67B8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E67BC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E67C0; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E67C4; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E67C8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E67CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E67D0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E67D8; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E67E0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E67E8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E67F0; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E67F8; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E67FC; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E6800; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E6804; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6808; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E6810; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6818; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E6820; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6828; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E6830; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E6838; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E683C; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E6844; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E6848; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E684C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E6850; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E6854; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E6858; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E685C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E6860; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E6864; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E6868; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E686C; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E6870; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E6874; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E6878; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803E687C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803E6880; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803E6884; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E6888; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata:0x803E688C; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata:0x803E6890; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E6894; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E6898; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E689C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata:0x803E68A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E68A4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E68AC; // type:object size:0x8 scope:local align:4 +@2435 = .sdata:0x803E68B4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E68BC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E68C4; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E68D0; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E68D4; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E68D8; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E68DC; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E68E0; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E68E4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E68E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E68EC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E68F4; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E68FC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6904; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E690C; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E6918; // type:object size:0x6 scope:local align:4 data:string +@1478 = .sdata:0x803E6920; // type:object size:0x7 scope:local align:4 data:string +@1489 = .sdata:0x803E6928; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E692C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E6930; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E6934; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata:0x803E6938; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803E693C; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E6940; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6944; // type:object size:0x8 scope:local align:4 +@1632 = .sdata:0x803E694C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6954; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E695C; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E6968; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E696C; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E6970; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E6974; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E6978; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E697C; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E6980; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E6988; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6990; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E6998; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E69A0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E69A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E69B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E69B8; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E69C0; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E69C8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E69CC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E69D0; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E69D4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E69D8; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E69DC; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E69E0; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E69E4; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E69E8; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E69EC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E69F0; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E69F4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E69F8; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E69FC; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E6A00; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E6A04; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E6A08; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E6A0C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6A14; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E6A1C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6A24; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E6A2C; // type:object size:0x8 scope:local align:4 +@1190 = .sdata:0x803E6A38; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E6A3C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E6A40; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E6A44; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E6A48; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E6A4C; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803E6A50; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6A58; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6A60; // type:object size:0x8 scope:local align:4 +@1344 = .sdata:0x803E6A68; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6A70; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E6A78; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E6A80; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E6A84; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E6A88; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E6A8C; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E6A90; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E6A94; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E6A98; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E6A9C; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E6AA0; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E6AA4; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E6AA8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6AAC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6AB4; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E6ABC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6AC4; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E6ACC; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E6AD8; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E6AE0; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E6AE4; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E6AE8; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E6AEC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E6AF0; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E6AF4; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E6AF8; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E6AFC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6B04; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6B0C; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E6B14; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6B1C; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E6B24; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E6B30; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E6B34; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E6B38; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E6B3C; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E6B40; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6B48; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E6B50; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6B58; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E6B60; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6B68; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E6B70; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E6B78; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E6B7C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E6B80; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E6B84; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E6B88; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E6B8C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E6B90; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E6B94; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E6B98; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E6B9C; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E6BA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6BA4; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E6BAC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6BB4; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E6BBC; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E6BC8; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E6BCC; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E6BD0; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E6BD4; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E6BD8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E6BDC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6BE0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6BE8; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E6BF0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6BF8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E6C00; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6C08; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E6C10; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6C18; // type:object size:0x8 scope:local align:4 +@1142 = .sdata:0x803E6C20; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6C28; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6C30; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E6C38; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6C40; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E6C48; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E6C50; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E6C58; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E6C5C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E6C60; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E6C64; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E6C68; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E6C6C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E6C70; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E6C74; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E6C78; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E6C7C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E6C80; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E6C84; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6C88; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E6C90; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6C98; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E6CA0; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6CA8; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E6CB0; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E6CB8; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E6CC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6CC8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6CD0; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E6CD8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6CE0; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E6CE8; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E6CF0; // type:object size:0x8 scope:local align:4 data:string +@2112 = .sdata:0x803E6CF8; // type:object size:0x4 scope:local align:4 data:float +@2113 = .sdata:0x803E6CFC; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E6D00; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata:0x803E6D04; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata:0x803E6D08; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E6D0C; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E6D10; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E6D14; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E6D18; // type:object size:0x4 scope:local align:4 data:float +@2226 = .sdata:0x803E6D1C; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E6D20; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E6D24; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata:0x803E6D28; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata:0x803E6D2C; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata:0x803E6D30; // type:object size:0x4 scope:local align:4 data:float +@2486 = .sdata:0x803E6D34; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E6D38; // type:object size:0x4 scope:local align:4 data:float +@2606 = .sdata:0x803E6D3C; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata:0x803E6D40; // type:object size:0x4 scope:local align:4 data:float +@2608 = .sdata:0x803E6D44; // type:object size:0x4 scope:local align:4 data:float +@2609 = .sdata:0x803E6D48; // type:object size:0x4 scope:local align:4 data:float +@2610 = .sdata:0x803E6D4C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6D50; // type:object size:0x8 scope:local align:4 +@2653 = .sdata:0x803E6D58; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6D60; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E6D68; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6D70; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E6D78; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E6D80; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E6D84; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E6D88; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E6D8C; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E6D90; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E6D94; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E6D98; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E6D9C; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E6DA0; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E6DA4; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E6DA8; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E6DAC; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E6DB0; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E6DB4; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E6DB8; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E6DBC; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E6DC0; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E6DC4; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E6DC8; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E6DCC; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E6DD0; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E6DD8; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E6DE0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6DE4; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E6DEC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6DF4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E6DFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6E04; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E6E0C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6E14; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E6E1C; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E6E28; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E6E30; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E6E34; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E6E38; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E6E3C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E6E40; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E6E44; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E6E48; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E6E4C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E6E50; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E6E54; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E6E58; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6E5C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6E64; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E6E6C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6E74; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E6E7C; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E6E88; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E6E90; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E6E94; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E6E98; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E6E9C; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E6EA0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6EA8; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E6EB0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6EB8; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E6EC0; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E6EC8; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E6ECC; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E6ED0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E6ED4; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E6ED8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E6EDC; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E6EE0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6EE4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E6EEC; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E6EF4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6EFC; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E6F04; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E6F0C; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E6F14; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E6F20; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E6F24; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E6F28; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E6F2C; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E6F30; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E6F34; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E6F3C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6F44; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E6F4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E6F54; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E6F5C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6F64; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E6F6C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E6F78; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E6F7C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E6F80; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E6F84; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E6F88; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E6F8C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E6F90; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E6F94; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E6F98; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E6F9C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E6FA0; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E6FA4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E6FA8; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E6FAC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E6FB0; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E6FB4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E6FBC; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E6FC4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E6FCC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E6FD4; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E6FE0; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E6FE4; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E6FEC; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E6FF4; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E6FFC; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E7004; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E700C; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E7010; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E7018; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E7020; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E7028; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E7030; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E7038; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7040; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E7048; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E7050; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E7058; // type:object size:0x8 scope:local align:4 +@1579 = .sdata:0x803E7060; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E7064; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E7068; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E706C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E7070; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E7074; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E7078; // type:object size:0x8 scope:local align:4 data:string +@1608 = .sdata:0x803E7080; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E7084; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E7088; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata:0x803E708C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7094; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E709C; // type:object size:0x8 scope:local align:4 +@1876 = .sdata:0x803E70A4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E70AC; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E70B4; // type:object size:0x8 scope:local align:4 +@1882 = .sdata:0x803E70BC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E70C4; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E70CC; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E70D4; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E70DC; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E70E4; // type:object size:0x8 scope:local align:4 +@2368 = .sdata:0x803E70F0; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E70F4; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata:0x803E70F8; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E70FC; // type:object size:0x8 scope:local align:4 data:string +@3710 = .sdata:0x803E7104; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata:0x803E7108; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata:0x803E710C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E7110; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata:0x803E7114; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata:0x803E7118; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata:0x803E711C; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E7120; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata:0x803E7124; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata:0x803E7128; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata:0x803E712C; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata:0x803E7130; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata:0x803E7134; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata:0x803E7138; // type:object size:0x7 scope:local align:4 data:string +@5116 = .sdata:0x803E7140; // type:object size:0x5 scope:local align:4 data:string +@5117 = .sdata:0x803E7148; // type:object size:0x5 scope:local align:4 data:string +@5118 = .sdata:0x803E7150; // type:object size:0x7 scope:local align:4 data:string +@5119 = .sdata:0x803E7158; // type:object size:0x6 scope:local align:4 data:string +@5120 = .sdata:0x803E7160; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E7168; // type:object size:0x7 scope:local align:4 data:string +@5124 = .sdata:0x803E7170; // type:object size:0x7 scope:local align:4 data:string +@5125 = .sdata:0x803E7178; // type:object size:0x8 scope:local align:4 data:string +@5126 = .sdata:0x803E7180; // type:object size:0x7 scope:local align:4 data:string +@5128 = .sdata:0x803E7188; // type:object size:0x5 scope:local align:4 data:string +@5129 = .sdata:0x803E7190; // type:object size:0x4 scope:local align:4 data:string +@5153 = .sdata:0x803E7194; // type:object size:0x8 scope:local align:4 data:string +@5155 = .sdata:0x803E719C; // type:object size:0x5 scope:local align:4 data:string +@5156 = .sdata:0x803E71A4; // type:object size:0x4 scope:local align:4 data:string +@5157 = .sdata:0x803E71A8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E71B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E71B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E71C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E71C8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E71D0; // type:object size:0x8 scope:local align:4 +@5411 = .sdata:0x803E71D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E71E0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E71E8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E71F0; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E71F8; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E7200; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E7204; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E7208; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E720C; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E7210; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E7214; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E721C; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E7220; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E7224; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E7228; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E722C; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E7230; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E7234; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E7238; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E723C; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E7240; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E7244; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E7248; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E724C; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E7250; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E7254; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E7258; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E725C; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E7260; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E7264; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E7268; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E726C; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E7270; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E7274; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E7278; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E727C; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E7280; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E7284; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E7288; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E728C; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E7290; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E7294; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E7298; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E729C; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E72A0; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E72A4; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E72A8; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E72AC; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E72B0; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E72B4; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E72B8; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E72BC; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E72C0; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E72C4; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E72C8; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E72CC; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E72D0; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E72D4; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E72D8; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E72DC; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E72E0; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E72E4; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E72E8; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E72EC; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E72F0; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E72F4; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E72F8; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E72FC; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E7300; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E7304; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E7308; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E730C; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E7310; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E7314; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E7318; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E731C; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E7320; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E7324; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E7328; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E732C; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E7330; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E7334; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E7338; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E733C; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E7340; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E7344; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E7348; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E734C; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E7350; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E7358; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E7360; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7368; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7370; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E7378; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7380; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7388; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E7390; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E7398; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E73A0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E73A8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E73B0; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E73B8; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E73C0; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E73C8; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E73CC; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E73D0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E73D4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E73D8; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E73DC; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E73E4; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E73EC; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E73F0; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E73F4; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E73F8; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E7400; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E7404; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E7408; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E740C; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E7410; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E7414; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E7418; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E741C; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E7420; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E7424; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E7428; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E742C; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E7430; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E7434; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E743C; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E7440; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E7444; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E7448; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E744C; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E7450; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E7454; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E7458; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E745C; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E7460; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E7464; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E7468; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E746C; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E7470; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E7474; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E7478; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E747C; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E7484; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E748C; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E7494; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E749C; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E74A0; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E74A4; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E74A8; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E74AC; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E74B0; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E74B4; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E74B8; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E74BC; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E74C0; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E74C8; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E74CC; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E74D0; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E74D4; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E74D8; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E74DC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E74E0; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E74E4; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E74E8; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E74EC; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E74F0; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E74F8; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E7500; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E7504; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E7508; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E750C; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E7510; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E7518; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E7520; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E7524; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E7528; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E752C; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E7530; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E7534; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E7538; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E753C; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E7540; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E7544; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E7548; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E754C; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E7550; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E7558; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E755C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E7560; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E7564; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E7568; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E756C; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E7570; // type:object size:0x7 scope:local align:4 data:string +@4627 = .sdata:0x803E7578; // type:object size:0x5 scope:local align:4 data:string +@4657 = .sdata:0x803E7580; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E7584; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E7588; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E758C; // type:object size:0x4 scope:local align:4 data:float +@4661 = .sdata:0x803E7590; // type:object size:0x4 scope:local align:4 data:float +@4662 = .sdata:0x803E7594; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata:0x803E7598; // type:object size:0x7 scope:local align:4 data:string +@4705 = .sdata:0x803E75A0; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E75A4; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E75A8; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E75AC; // type:object size:0x4 scope:local align:4 data:float +@4709 = .sdata:0x803E75B0; // type:object size:0x4 scope:local align:4 data:float +@4710 = .sdata:0x803E75B4; // type:object size:0x4 scope:local align:4 data:float +@4736 = .sdata:0x803E75B8; // type:object size:0x5 scope:local align:4 data:string +@4753 = .sdata:0x803E75C0; // type:object size:0x5 scope:local align:4 data:string +@4762 = .sdata:0x803E75C8; // type:object size:0x4 scope:local align:4 data:float +@4896 = .sdata:0x803E75CC; // type:object size:0x5 scope:local align:4 data:string +@4904 = .sdata:0x803E75D4; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803E75D8; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803E75DC; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803E75E0; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803E75E4; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803E75E8; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803E75EC; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803E75F0; // type:object size:0x4 scope:local align:4 data:float +@4933 = .sdata:0x803E75F4; // type:object size:0x4 scope:local align:4 data:float +@4934 = .sdata:0x803E75F8; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803E75FC; // type:object size:0x4 scope:local align:4 data:float +@4953 = .sdata:0x803E7600; // type:object size:0x4 scope:local align:4 data:float +@4954 = .sdata:0x803E7604; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803E7608; // type:object size:0x7 scope:local align:4 data:string +@4974 = .sdata:0x803E7610; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803E7614; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803E7618; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803E761C; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803E7620; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803E7624; // type:object size:0x4 scope:local align:4 data:float +@4980 = .sdata:0x803E7628; // type:object size:0x4 scope:local align:4 data:float +@4981 = .sdata:0x803E762C; // type:object size:0x4 scope:local align:4 data:float +@4982 = .sdata:0x803E7630; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803E7634; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803E7638; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803E763C; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803E7640; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803E7644; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803E7648; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata:0x803E764C; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata:0x803E7650; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata:0x803E7654; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E7658; // type:object size:0x8 scope:local align:4 data:string +@5088 = .sdata:0x803E7660; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803E7664; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803E7668; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803E766C; // type:object size:0x4 scope:local align:4 data:float +@5108 = .sdata:0x803E7670; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803E7674; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata:0x803E7678; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata:0x803E767C; // type:object size:0x6 scope:local align:4 data:string +@5155 = .sdata:0x803E7684; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803E7688; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803E768C; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata:0x803E7690; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata:0x803E7694; // type:object size:0x4 scope:local align:4 data:float +@5160 = .sdata:0x803E7698; // type:object size:0x4 scope:local align:4 data:float +@5175 = .sdata:0x803E769C; // type:object size:0x5 scope:local align:4 data:string +@5181 = .sdata:0x803E76A4; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803E76A8; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803E76AC; // type:object size:0x4 scope:local align:4 data:float +@5184 = .sdata:0x803E76B0; // type:object size:0x4 scope:local align:4 data:float +@5185 = .sdata:0x803E76B4; // type:object size:0x4 scope:local align:4 data:float +@5186 = .sdata:0x803E76B8; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata:0x803E76BC; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata:0x803E76C0; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803E76C4; // type:object size:0x4 scope:local align:4 data:float +@5208 = .sdata:0x803E76C8; // type:object size:0x8 scope:local align:4 data:string +@5331 = .sdata:0x803E76D0; // type:object size:0x4 scope:local align:4 data:float +@5332 = .sdata:0x803E76D4; // type:object size:0x4 scope:local align:4 data:float +@5333 = .sdata:0x803E76D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E76DC; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803E76E4; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803E76EC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803E76F4; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803E76FC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803E7704; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803E770C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803E7714; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803E771C; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803E7724; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803E772C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803E7734; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803E773C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803E7744; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803E774C; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803E7754; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803E775C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803E7764; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803E776C; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803E7774; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803E777C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803E7784; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803E778C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803E7794; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803E779C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803E77A4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803E77AC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803E77B4; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803E77BC; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803E77C4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803E77CC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803E77D4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803E77DC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803E77E4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803E77EC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803E77F4; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803E77FC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803E7804; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803E7810; // type:object size:0x1 scope:global align:1 data:byte +@1609 = .sdata:0x803E7814; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E7818; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E781C; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E7820; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E7824; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E7828; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E782C; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata:0x803E7830; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata:0x803E7834; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803E7838; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata:0x803E783C; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata:0x803E7840; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803E7844; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata:0x803E7848; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata:0x803E784C; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803E7850; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E7854; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803E7858; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E785C; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E7860; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata:0x803E7864; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata:0x803E7868; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E786C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803E7870; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803E7874; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803E7878; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E787C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata:0x803E7880; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803E7884; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803E7888; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E788C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E7890; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E7894; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E7898; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E789C; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata:0x803E78A0; // type:object size:0x2 scope:local align:4 data:string +@1989 = .sdata:0x803E78A4; // type:object size:0x2 scope:local align:4 data:string +@1990 = .sdata:0x803E78A8; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803E78AC; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E78B0; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803E78B4; // type:object size:0x2 scope:local align:4 data:string +@2061 = .sdata:0x803E78B8; // type:object size:0x5 scope:local align:4 data:string +@2133 = .sdata:0x803E78C0; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata:0x803E78C4; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata:0x803E78C8; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803E78CC; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803E78D0; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803E78D4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E78D8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E78E0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E78E8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E78F0; // type:object size:0x8 scope:local align:4 +@2307 = .sdata:0x803E78F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803E7900; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803E7908; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E7910; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803E7918; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803E7920; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803E7928; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803E7930; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803E7934; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803E7938; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803E793C; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803E7940; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803E7944; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E7948; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E794C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E7950; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E7958; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803E7960; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803E7964; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E7968; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E796C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E7970; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E7974; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E7978; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata:0x803E797C; // type:object size:0x5 scope:local align:4 +@2237 = .sdata:0x803E7984; // type:object size:0x5 scope:local align:4 +@2256 = .sdata:0x803E798C; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E7990; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E7994; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803E7998; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803E799C; // type:object size:0x4 scope:local align:4 data:float +@2476 = .sdata:0x803E79A0; // type:object size:0x4 scope:local align:4 data:float +@2550 = .sdata:0x803E79A4; // type:object size:0x7 scope:local align:4 data:string +@2802 = .sdata:0x803E79AC; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E79B0; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata:0x803E79B4; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803E79B8; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E79BC; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803E79C0; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata:0x803E79C4; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E79C8; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E79CC; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E79D0; // type:object size:0x4 scope:local align:4 data:float +@2940 = .sdata:0x803E79D4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E79D8; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E79E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E79E8; // type:object size:0x8 scope:local align:4 +@3007 = .sdata:0x803E79F0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803E79F8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803E7A00; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803E7A08; // type:object size:0x8 scope:local align:4 +@3019 = .sdata:0x803E7A10; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803E7A18; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803E7A20; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803E7A28; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803E7A30; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7A38; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803E7A40; // type:object size:0x8 scope:local align:4 +@3033 = .sdata:0x803E7A48; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7A50; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7A58; // type:object size:0x8 scope:local align:4 +@3036 = .sdata:0x803E7A60; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7A68; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803E7A70; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803E7A78; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7A80; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803E7A88; // type:object size:0x1 scope:local align:4 +@1329 = .sdata:0x803E7A8C; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E7A94; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E7A9C; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E7AA4; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E7AAC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7AB4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7ABC; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803E7AC4; // type:object size:0x8 scope:local align:4 +@1214 = .sdata:0x803E7AD0; // type:object size:0x7 scope:local align:4 data:string +@1989 = .sdata:0x803E7AD8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7AE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7AE8; // type:object size:0x8 scope:local align:4 +@1992 = .sdata:0x803E7AF0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7AF8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7B00; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E7B08; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E7B10; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803E7B18; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E7B20; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7B28; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803E7B30; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7B38; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E7B40; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E7B44; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803E7B48; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E7B4C; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E7B50; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E7B54; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E7B58; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E7B5C; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803E7B60; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803E7B64; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E7B68; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E7B6C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E7B70; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E7B74; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E7B78; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E7B7C; // type:object size:0x6 scope:local align:4 data:string +@1344 = .sdata:0x803E7B84; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803E7B88; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803E7B8C; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803E7B90; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E7B94; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7B9C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7BA4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7BAC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7BB4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7BBC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7BC4; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803E7BCC; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803E7BD4; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803E7BDC; // type:object size:0x8 scope:local align:4 +@1452 = .sdata:0x803E7BE4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803E7BEC; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803E7BF8; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E7BFC; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E7C00; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803E7C04; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E7C08; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803E7C0C; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E7C10; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E7C14; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E7C18; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E7C1C; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E7C20; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E7C24; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E7C28; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803E7C2C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7C30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7C38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7C40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7C48; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7C50; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7C58; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803E7C60; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803E7C68; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803E7C70; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803E7C74; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803E7C78; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E7C7C; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E7C80; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E7C84; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803E7C88; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803E7C8C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803E7C90; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803E7C94; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803E7C98; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E7C9C; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E7CA0; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E7CA4; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E7CA8; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E7CAC; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E7CB0; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803E7CB4; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803E7CB8; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803E7CBC; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E7CC0; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803E7CC4; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E7CC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7CCC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7CD4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7CDC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7CE4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7CEC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7CF4; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803E7CFC; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803E7D08; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803E7D0C; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803E7D10; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E7D14; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E7D18; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E7D1C; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E7D20; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E7D24; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803E7D28; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803E7D2C; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E7D30; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E7D34; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E7D38; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E7D3C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E7D40; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E7D44; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E7D48; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E7D4C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E7D50; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803E7D54; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E7D58; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E7D5C; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803E7D60; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803E7D64; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803E7D68; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803E7D6C; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803E7D70; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803E7D74; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E7D78; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803E7D7C; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803E7D80; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803E7D84; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803E7D88; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E7D8C; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E7D90; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E7D94; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E7D98; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E7D9C; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E7DA0; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E7DA4; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E7DA8; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E7DAC; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E7DB0; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E7DB4; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E7DB8; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803E7DBC; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E7DC0; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E7DC4; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E7DC8; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E7DCC; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E7DD0; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E7DD4; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E7DD8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803E7DDC; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803E7DE0; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803E7DE4; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803E7DE8; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E7DEC; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E7DF0; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E7DF4; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E7DF8; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E7DFC; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E7E00; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7E04; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7E0C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7E14; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7E1C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7E24; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7E2C; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E7E34; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E7E3C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803E7E44; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803E7E50; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803E7E58; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803E7E60; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803E7E68; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803E7E70; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803E7E78; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803E7E80; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803E7E88; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803E7E90; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803E7E98; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E7EA0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E7EA8; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803E7EB0; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803E7EB8; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E7EBC; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E7EC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7EC4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7ECC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7ED4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7EDC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7EE4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7EEC; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803E7EF4; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803E7F00; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E7F04; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803E7F08; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803E7F0C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803E7F10; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E7F14; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E7F18; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E7F1C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E7F20; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E7F24; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E7F28; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E7F2C; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E7F30; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E7F34; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E7F38; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803E7F3C; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803E7F40; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803E7F44; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803E7F48; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata:0x803E7F4C; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata:0x803E7F50; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata:0x803E7F54; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803E7F58; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803E7F5C; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803E7F60; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7F64; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7F6C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7F74; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7F7C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7F84; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7F8C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E7F94; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E7F9C; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803E7FA4; // type:object size:0x8 scope:local align:4 +@1499 = .sdata:0x803E7FB0; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E7FB4; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803E7FB8; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata:0x803E7FBC; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E7FC0; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E7FC4; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E7FC8; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E7FCC; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E7FD0; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata:0x803E7FD4; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803E7FD8; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803E7FDC; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803E7FE0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7FE4; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7FEC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7FF4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7FFC; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E8004; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E800C; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803E8014; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E801C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E8024; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E802C; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803E8038; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E803C; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803E8040; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803E8044; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E8048; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E804C; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8050; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8058; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8060; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8068; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E8070; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E8078; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803E8080; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803E8088; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803E8090; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8098; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E80A0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E80A8; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E80B0; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803E80B8; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E80C0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E80C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E80C8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E80D0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E80D8; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803E80E0; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E80E8; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803E80EC; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803E80F0; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803E80F4; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803E80F8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E80FC; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803E8104; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E810C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8114; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803E811C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E8124; // type:object size:0x8 scope:local align:4 +@2224 = .sdata:0x803E8130; // type:object size:0x8 scope:local align:4 data:string +@2236 = .sdata:0x803E8138; // type:object size:0x8 scope:local align:4 data:string +@2784 = .sdata:0x803E8140; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E8144; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata:0x803E8148; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata:0x803E814C; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E8150; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803E8154; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata:0x803E8158; // type:object size:0x4 scope:local align:4 data:float +@3104 = .sdata:0x803E815C; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803E8160; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803E8164; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803E816C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803E8174; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803E817C; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E8184; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E818C; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803E8194; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803E819C; // type:object size:0x8 scope:local align:4 +@3265 = .sdata:0x803E81A4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E81AC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E81B4; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E81BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803E81C4; // type:object size:0x8 scope:local align:4 +@3271 = .sdata:0x803E81CC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803E81D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803E81DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803E81E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803E81EC; // type:object size:0x8 scope:local align:4 +@3279 = .sdata:0x803E81F4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803E81FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803E8204; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803E820C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803E8214; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803E821C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803E8224; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803E822C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803E8234; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803E823C; // type:object size:0x8 scope:local align:4 +@3298 = .sdata:0x803E8244; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803E824C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803E8254; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803E825C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803E8264; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803E826C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803E8274; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803E827C; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803E8284; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803E828C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803E8294; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803E829C; // type:object size:0x8 scope:local align:4 +@3333 = .sdata:0x803E82A4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803E82AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803E82B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803E82BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803E82C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803E82CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803E82D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803E82DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803E82E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803E82EC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803E82F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803E82FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803E8304; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803E830C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803E8314; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803E831C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803E8324; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803E832C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803E8334; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803E833C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803E8344; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803E834C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803E8354; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803E835C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803E8364; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803E836C; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E8374; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803E837C; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E8388; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803E8390; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E8398; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803E83A0; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803E83A4; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803E83A8; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803E83AC; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803E83B0; // type:object size:0x4 scope:local align:4 data:string +@2508 = .sdata:0x803E83B4; // type:object size:0x5 scope:local align:4 data:string +@2510 = .sdata:0x803E83BC; // type:object size:0x6 scope:local align:4 data:string +@2516 = .sdata:0x803E83C4; // type:object size:0x5 scope:local align:4 data:string +@2522 = .sdata:0x803E83CC; // type:object size:0x5 scope:local align:4 data:string +@2540 = .sdata:0x803E83D4; // type:object size:0x5 scope:local align:4 data:string +@2767 = .sdata:0x803E83DC; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E83E0; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E83E4; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E83E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E83F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E83F8; // type:object size:0x8 scope:local align:4 +@3067 = .sdata:0x803E8400; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8408; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E8410; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E8418; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E8420; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803E8428; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E8430; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803E8438; // type:object size:0x8 scope:local align:4 +@3094 = .sdata:0x803E8440; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803E8448; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803E8450; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E8458; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803E8460; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8468; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8470; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8478; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8480; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E8488; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E8490; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803E8498; // type:object size:0x8 scope:local align:4 +@3178 = .sdata:0x803E84A0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803E84A8; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803E84B0; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803E84B8; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803E84C0; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803E84C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803E84D0; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803E84D8; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803E84E0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E84E8; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803E84F0; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803E84F8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E8500; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803E8508; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803E8510; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803E8518; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8520; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8528; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8530; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8538; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E8540; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E8548; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803E8550; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803E8558; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803E8560; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803E8568; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803E8570; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803E8578; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803E8580; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E8588; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E8590; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8598; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E85A0; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E85A8; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E85B0; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803E85B8; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E85C0; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E85C4; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E85C8; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E85CC; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E85D0; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E85D4; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E85D8; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803E85DC; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803E85E0; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803E85E4; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E85E8; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E85EC; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803E85F0; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803E85F4; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E85F8; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E85FC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8604; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803E860C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E8618; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E8620; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E8628; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E8630; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803E8638; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803E8640; // type:object size:0x1 scope:global align:1 data:byte +@2704 = .sdata:0x803E8644; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803E8648; // type:object size:0x4 scope:local align:4 data:string +@2707 = .sdata:0x803E864C; // type:object size:0x4 scope:local align:4 data:string +@2709 = .sdata:0x803E8650; // type:object size:0x4 scope:local align:4 data:string +@2711 = .sdata:0x803E8654; // type:object size:0x4 scope:local align:4 data:string +@2713 = .sdata:0x803E8658; // type:object size:0x4 scope:local align:4 data:4byte +@2715 = .sdata:0x803E865C; // type:object size:0x4 scope:local align:4 data:4byte +@2717 = .sdata:0x803E8660; // type:object size:0x4 scope:local align:4 data:4byte +@2719 = .sdata:0x803E8664; // type:object size:0x4 scope:local align:4 data:4byte +@2721 = .sdata:0x803E8668; // type:object size:0x4 scope:local align:4 data:4byte +@2723 = .sdata:0x803E866C; // type:object size:0x4 scope:local align:4 data:4byte +@2725 = .sdata:0x803E8670; // type:object size:0x4 scope:local align:4 data:4byte +@2727 = .sdata:0x803E8674; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803E8678; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803E867C; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803E8680; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803E8684; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803E8688; // type:object size:0x4 scope:local align:4 data:4byte +@2737 = .sdata:0x803E868C; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803E8690; // type:object size:0x4 scope:local align:4 data:4byte +@2739 = .sdata:0x803E8694; // type:object size:0x4 scope:local align:4 data:4byte +@2741 = .sdata:0x803E8698; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803E869C; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803E86A0; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803E86A4; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803E86A8; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803E86AC; // type:object size:0x4 scope:local align:4 data:4byte +@2750 = .sdata:0x803E86B0; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803E86B4; // type:object size:0x4 scope:local align:4 data:4byte +@2752 = .sdata:0x803E86B8; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803E86BC; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803E86C0; // type:object size:0x4 scope:local align:4 data:4byte +@2757 = .sdata:0x803E86C4; // type:object size:0x4 scope:local align:4 data:4byte +@2759 = .sdata:0x803E86C8; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803E86CC; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803E86D0; // type:object size:0x4 scope:local align:4 data:4byte +@2764 = .sdata:0x803E86D4; // type:object size:0x4 scope:local align:4 data:4byte +@2766 = .sdata:0x803E86D8; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803E86DC; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803E86E0; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803E86E4; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803E86E8; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803E86EC; // type:object size:0x4 scope:local align:4 data:4byte +@2774 = .sdata:0x803E86F0; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803E86F4; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803E86F8; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803E86FC; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803E8700; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803E8704; // type:object size:0x4 scope:local align:4 data:4byte +@2781 = .sdata:0x803E8708; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803E870C; // type:object size:0x4 scope:local align:4 data:4byte +@2783 = .sdata:0x803E8710; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803E8714; // type:object size:0x4 scope:local align:4 data:4byte +@2787 = .sdata:0x803E8718; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803E871C; // type:object size:0x4 scope:local align:4 data:4byte +@2791 = .sdata:0x803E8720; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803E8724; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803E8728; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803E872C; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803E8730; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803E8734; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803E8738; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803E873C; // type:object size:0x4 scope:local align:4 data:4byte +@2801 = .sdata:0x803E8740; // type:object size:0x4 scope:local align:4 data:4byte +@2802 = .sdata:0x803E8744; // type:object size:0x4 scope:local align:4 data:4byte +@2803 = .sdata:0x803E8748; // type:object size:0x4 scope:local align:4 data:4byte +@2858 = .sdata:0x803E874C; // type:object size:0x4 scope:local align:4 data:float +@2859 = .sdata:0x803E8750; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata:0x803E8754; // type:object size:0x4 scope:local align:4 data:float +@2917 = .sdata:0x803E8758; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E875C; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E8760; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E8764; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E8768; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E876C; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E8770; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E8774; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E8778; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E877C; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E8780; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E8784; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E8788; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E878C; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803E8790; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata:0x803E8794; // type:object size:0x1 scope:local align:4 +@3023 = .sdata:0x803E8798; // type:object size:0x8 scope:local align:4 data:string +@3063 = .sdata:0x803E87A0; // type:object size:0x4 scope:local align:4 data:float +@3064 = .sdata:0x803E87A4; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E87A8; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E87AC; // type:object size:0x4 scope:local align:4 data:float +@3071 = .sdata:0x803E87B0; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E87B4; // type:object size:0x4 scope:local align:4 data:float +@3075 = .sdata:0x803E87B8; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E87BC; // type:object size:0x4 scope:local align:4 data:float +@3077 = .sdata:0x803E87C0; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803E87C4; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata:0x803E87C8; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata:0x803E87CC; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata:0x803E87D0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E87D4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E87D8; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E87DC; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata:0x803E87E0; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata:0x803E87E4; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata:0x803E87E8; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E87EC; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803E87F0; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E87F4; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E87F8; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata:0x803E87FC; // type:object size:0x4 scope:local align:4 data:float +@4809 = .sdata:0x803E8800; // type:object size:0x3 scope:local align:4 data:string +@4818 = .sdata:0x803E8804; // type:object size:0x4 scope:local align:4 data:float +@4879 = .sdata:0x803E8808; // type:object size:0x4 scope:local align:4 data:float +@4880 = .sdata:0x803E880C; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata:0x803E8810; // type:object size:0x4 scope:local align:4 data:float +@4911 = .sdata:0x803E8814; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803E8818; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803E881C; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803E8820; // type:object size:0x4 scope:local align:4 data:float +@4915 = .sdata:0x803E8824; // type:object size:0x4 scope:local align:4 data:float +@4917 = .sdata:0x803E8828; // type:object size:0x4 scope:local align:4 data:float +@4918 = .sdata:0x803E882C; // type:object size:0x4 scope:local align:4 data:float +@4919 = .sdata:0x803E8830; // type:object size:0x4 scope:local align:4 data:float +@5204 = .sdata:0x803E8834; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803E8838; // type:object size:0x4 scope:local align:4 data:float +@5206 = .sdata:0x803E883C; // type:object size:0x4 scope:local align:4 data:float +@5215 = .sdata:0x803E8840; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803E8844; // type:object size:0x4 scope:local align:4 data:float +@5217 = .sdata:0x803E8848; // type:object size:0x4 scope:local align:4 data:float +@5221 = .sdata:0x803E884C; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E8850; // type:object size:0x4 scope:local align:4 data:float +@5468 = .sdata:0x803E8854; // type:object size:0x4 scope:local align:4 data:float +@5469 = .sdata:0x803E8858; // type:object size:0x4 scope:local align:4 data:float +@5470 = .sdata:0x803E885C; // type:object size:0x4 scope:local align:4 data:float +@5670 = .sdata:0x803E8860; // type:object size:0x4 scope:local align:4 data:float +@6196 = .sdata:0x803E8864; // type:object size:0x4 scope:local align:4 data:float +@6197 = .sdata:0x803E8868; // type:object size:0x4 scope:local align:4 data:float +@6198 = .sdata:0x803E886C; // type:object size:0x4 scope:local align:4 data:float +@6383 = .sdata:0x803E8870; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803E8874; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803E8878; // type:object size:0x4 scope:local align:4 data:float +@6391 = .sdata:0x803E887C; // type:object size:0x4 scope:local align:4 data:float +@6392 = .sdata:0x803E8880; // type:object size:0x4 scope:local align:4 data:float +@6393 = .sdata:0x803E8884; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E8888; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803E8890; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803E8898; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E88A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E88A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E88B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E88B8; // type:object size:0x8 scope:local align:4 +@6747 = .sdata:0x803E88C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E88C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E88D0; // type:object size:0x8 scope:local align:4 +@6750 = .sdata:0x803E88D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E88E0; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803E88E8; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E88F0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E88F8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E8900; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E8908; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803E8910; // type:object size:0x8 scope:local align:4 +@6780 = .sdata:0x803E8918; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E8920; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E8928; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E8930; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803E8938; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803E8940; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803E8944; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803E8948; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E894C; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E8950; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E8954; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803E8958; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803E895C; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803E8960; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803E8964; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803E8968; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803E896C; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803E8970; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803E8974; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803E8978; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803E897C; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803E8980; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803E8984; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E8988; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E898C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E8990; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E8994; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E8998; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E899C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803E89A0; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803E89A4; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803E89A8; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803E89AC; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803E89B0; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803E89B4; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803E89B8; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803E89BC; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803E89C0; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E89C4; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata:0x803E89C8; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata:0x803E89CC; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata:0x803E89D0; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata:0x803E89D4; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata:0x803E89D8; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata:0x803E89DC; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata:0x803E89E0; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803E89E4; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803E89E8; // type:object size:0x4 scope:local align:4 data:float +@3515 = .sdata:0x803E89EC; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata:0x803E89F0; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata:0x803E89F4; // type:object size:0x4 scope:local align:4 data:float +@3518 = .sdata:0x803E89F8; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata:0x803E89FC; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata:0x803E8A00; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E8A04; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E8A08; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E8A0C; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E8A10; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E8A14; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E8A18; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E8A1C; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803E8A20; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata:0x803E8A24; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E8A28; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E8A2C; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata:0x803E8A30; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata:0x803E8A34; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata:0x803E8A38; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata:0x803E8A3C; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata:0x803E8A40; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata:0x803E8A44; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata:0x803E8A48; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata:0x803E8A4C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata:0x803E8A50; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E8A54; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata:0x803E8A58; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata:0x803E8A5C; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata:0x803E8A60; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata:0x803E8A64; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata:0x803E8A68; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata:0x803E8A6C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata:0x803E8A70; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata:0x803E8A74; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata:0x803E8A78; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata:0x803E8A7C; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata:0x803E8A80; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata:0x803E8A84; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata:0x803E8A88; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803E8A8C; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata:0x803E8A90; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata:0x803E8A94; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata:0x803E8A98; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata:0x803E8A9C; // type:object size:0x4 scope:local align:4 data:float +@4779 = .sdata:0x803E8AA0; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata:0x803E8AA4; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata:0x803E8AA8; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata:0x803E8AAC; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata:0x803E8AB0; // type:object size:0x4 scope:local align:4 data:float +@4937 = .sdata:0x803E8AB4; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E8AB8; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata:0x803E8ABC; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata:0x803E8AC0; // type:object size:0x4 scope:local align:4 data:float +@5070 = .sdata:0x803E8AC4; // type:object size:0x4 scope:local align:4 data:float +@5071 = .sdata:0x803E8AC8; // type:object size:0x4 scope:local align:4 data:float +@5072 = .sdata:0x803E8ACC; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata:0x803E8AD0; // type:object size:0x4 scope:local align:4 data:float +@5074 = .sdata:0x803E8AD4; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata:0x803E8AD8; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata:0x803E8ADC; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E8AE0; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803E8AE4; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata:0x803E8AE8; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata:0x803E8AEC; // type:object size:0x4 scope:local align:4 data:float +@5223 = .sdata:0x803E8AF0; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E8AF4; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata:0x803E8AF8; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata:0x803E8AFC; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata:0x803E8B00; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata:0x803E8B04; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata:0x803E8B08; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata:0x803E8B0C; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata:0x803E8B10; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata:0x803E8B14; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata:0x803E8B18; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata:0x803E8B1C; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata:0x803E8B20; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata:0x803E8B24; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata:0x803E8B28; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata:0x803E8B2C; // type:object size:0x4 scope:local align:4 data:float +@5572 = .sdata:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@5573 = .sdata:0x803E8B34; // type:object size:0x4 scope:local align:4 data:float +@5574 = .sdata:0x803E8B38; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803E8B3C; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803E8B40; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803E8B44; // type:object size:0x4 scope:local align:4 data:float +@5587 = .sdata:0x803E8B48; // type:object size:0x4 scope:local align:4 data:float +@5588 = .sdata:0x803E8B4C; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata:0x803E8B50; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803E8B54; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803E8B58; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata:0x803E8B5C; // type:object size:0x4 scope:local align:4 data:float +@5632 = .sdata:0x803E8B60; // type:object size:0x4 scope:local align:4 data:float +@5634 = .sdata:0x803E8B64; // type:object size:0x4 scope:local align:4 data:float +@5691 = .sdata:0x803E8B68; // type:object size:0x4 scope:local align:4 data:float +@5692 = .sdata:0x803E8B6C; // type:object size:0x4 scope:local align:4 data:float +@5693 = .sdata:0x803E8B70; // type:object size:0x4 scope:local align:4 data:float +@5694 = .sdata:0x803E8B74; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata:0x803E8B78; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata:0x803E8B7C; // type:object size:0x4 scope:local align:4 data:float +@5712 = .sdata:0x803E8B80; // type:object size:0x4 scope:local align:4 data:float +@5718 = .sdata:0x803E8B84; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata:0x803E8B88; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata:0x803E8B8C; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata:0x803E8B90; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata:0x803E8B94; // type:object size:0x4 scope:local align:4 data:float +@5723 = .sdata:0x803E8B98; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata:0x803E8B9C; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata:0x803E8BA0; // type:object size:0x4 scope:local align:4 data:float +@5775 = .sdata:0x803E8BA4; // type:object size:0x4 scope:local align:4 data:float +@5776 = .sdata:0x803E8BA8; // type:object size:0x4 scope:local align:4 data:float +@5777 = .sdata:0x803E8BAC; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata:0x803E8BB0; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803E8BB4; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803E8BB8; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803E8BBC; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803E8BC0; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata:0x803E8BC4; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata:0x803E8BC8; // type:object size:0x4 scope:local align:4 data:float +@5818 = .sdata:0x803E8BCC; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata:0x803E8BD0; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata:0x803E8BD4; // type:object size:0x4 scope:local align:4 data:float +@5821 = .sdata:0x803E8BD8; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata:0x803E8BDC; // type:object size:0x4 scope:local align:4 data:float +@5823 = .sdata:0x803E8BE0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E8BE4; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E8BEC; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E8BF4; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803E8BFC; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803E8C04; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803E8C0C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803E8C14; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803E8C1C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803E8C24; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803E8C2C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803E8C34; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803E8C3C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803E8C44; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803E8C4C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803E8C54; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803E8C5C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803E8C64; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803E8C6C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803E8C74; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803E8C7C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803E8C84; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803E8C8C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803E8C94; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803E8C9C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803E8CA4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803E8CAC; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803E8CB4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803E8CBC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803E8CC4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803E8CCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803E8CD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803E8CDC; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803E8CE4; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803E8CEC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803E8CF4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803E8CFC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803E8D04; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803E8D0C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803E8D14; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803E8D1C; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E8D24; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803E8D2C; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803E8D38; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E8D3C; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803E8D40; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E8D44; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E8D48; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E8D4C; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E8D50; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E8D54; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E8D58; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E8D5C; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803E8D60; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803E8D64; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E8D68; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E8D6C; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803E8D70; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E8D74; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E8D7C; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E8D84; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803E8D8C; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803E8D94; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803E8D9C; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803E8DA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803E8DAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803E8DB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803E8DBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803E8DC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803E8DCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803E8DD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803E8DDC; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803E8DE8; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E8DEC; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E8DF0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E8DF4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E8DF8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E8DFC; // type:object size:0x4 scope:local align:4 data:float +@3309 = .sdata:0x803E8E00; // type:object size:0x1 scope:local align:4 +@3391 = .sdata:0x803E8E04; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E8E08; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E8E0C; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E8E10; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E8E14; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E8E18; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E8E1C; // type:object size:0x5 scope:local align:4 data:string +@3530 = .sdata:0x803E8E24; // type:object size:0x8 scope:local align:4 data:string +@3535 = .sdata:0x803E8E2C; // type:object size:0x5 scope:local align:4 data:string +@3536 = .sdata:0x803E8E34; // type:object size:0x5 scope:local align:4 data:string +@3537 = .sdata:0x803E8E3C; // type:object size:0x7 scope:local align:4 data:string +@3538 = .sdata:0x803E8E44; // type:object size:0x6 scope:local align:4 data:string +@3539 = .sdata:0x803E8E4C; // type:object size:0x5 scope:local align:4 data:string +@3540 = .sdata:0x803E8E54; // type:object size:0x5 scope:local align:4 data:string +@3541 = .sdata:0x803E8E5C; // type:object size:0x7 scope:local align:4 data:string +@3542 = .sdata:0x803E8E64; // type:object size:0x8 scope:local align:4 data:string +@3543 = .sdata:0x803E8E6C; // type:object size:0x6 scope:local align:4 data:string +@3800 = .sdata:0x803E8E74; // type:object size:0x4 scope:local align:4 data:string +@3807 = .sdata:0x803E8E78; // type:object size:0x7 scope:local align:4 +@3809 = .sdata:0x803E8E80; // type:object size:0x5 scope:local align:4 data:string +@3810 = .sdata:0x803E8E88; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata:0x803E8E90; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata:0x803E8E98; // type:object size:0x5 scope:local align:4 data:string +@3816 = .sdata:0x803E8EA0; // type:object size:0x6 scope:local align:4 data:string +@3819 = .sdata:0x803E8EA8; // type:object size:0x6 scope:local align:4 data:string +@3821 = .sdata:0x803E8EB0; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata:0x803E8EB8; // type:object size:0x8 scope:local align:4 data:string +@4150 = .sdata:0x803E8EC0; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata:0x803E8EC8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8ED0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8ED8; // type:object size:0x8 scope:local align:4 +@4376 = .sdata:0x803E8EE0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8EE8; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803E8EF0; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E8EF8; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E8F00; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803E8F04; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803E8F08; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803E8F0C; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E8F10; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E8F14; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E8F18; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E8F1C; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803E8F20; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E8F24; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803E8F28; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E8F2C; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E8F30; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803E8F34; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E8F38; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E8F3C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803E8F40; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E8F44; // type:object size:0x4 scope:local align:4 data:float +@1735 = .sdata:0x803E8F48; // type:object size:0x4 scope:local align:4 data:float +@1736 = .sdata:0x803E8F4C; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata:0x803E8F50; // type:object size:0x4 scope:local align:4 data:float +@1822 = .sdata:0x803E8F54; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata:0x803E8F58; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata:0x803E8F5C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803E8F60; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E8F68; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E8F70; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E8F78; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803E8F80; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803E8F88; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803E8F90; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803E8F98; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803E8FA0; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803E8FA8; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803E8FB0; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803E8FB8; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803E8FC0; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803E8FC8; // type:object size:0x8 scope:local align:4 +@2127 = .sdata:0x803E8FD0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803E8FD8; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803E8FE0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803E8FE8; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803E8FF0; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803E8FF8; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803E9000; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803E9008; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803E9010; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803E9018; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9020; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9028; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803E9030; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9038; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E9040; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803E9048; // type:object size:0x8 scope:local align:4 +@737 = .sdata:0x803E9050; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E9054; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E9058; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E905C; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803E9060; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803E9064; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803E9068; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata:0x803E906C; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803E9070; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803E9078; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803E9080; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9088; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9090; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803E9098; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E90A0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E90A8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E90B0; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E90B8; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803E90C0; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803E90C8; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803E90CC; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803E90D0; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803E90D4; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803E90D8; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E90DC; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803E90E0; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803E90E4; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803E90E8; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803E90EC; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803E90F0; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803E90F4; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803E90F8; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E9100; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E9108; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803E9110; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803E9114; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803E9118; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803E911C; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803E9120; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803E9124; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803E9128; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803E912C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803E9130; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803E9134; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E9138; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E913C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E9140; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E9144; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803E9148; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803E914C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803E9150; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803E9154; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803E9158; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803E915C; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803E9160; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803E9164; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803E9168; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata:0x803E916C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E9174; // type:object size:0x8 scope:local align:4 +@1051 = .sdata:0x803E917C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E9184; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E918C; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803E9194; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E919C; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803E91A8; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E91AC; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E91B0; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E91B4; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803E91B8; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803E91BC; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803E91C0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803E91C4; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803E91C8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803E91CC; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803E91D0; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803E91D4; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803E91D8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E91DC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E91E4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E91EC; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803E91F4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E91FC; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E9204; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E920C; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803E9214; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803E921C; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803E9224; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E9230; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803E9234; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803E923C; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803E9244; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803E924C; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803E9254; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803E925C; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E9264; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803E926C; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803E9274; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803E927C; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803E9284; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803E928C; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803E9294; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803E929C; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803E92A4; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803E92AC; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803E92B4; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803E92BC; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803E92C4; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803E92CC; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803E92D4; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803E92DC; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803E92E4; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803E92EC; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803E92F4; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803E92FC; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803E9304; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803E930C; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803E9314; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803E931C; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803E9324; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803E932C; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803E9334; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803E933C; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803E9344; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803E934C; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803E9354; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803E935C; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803E9364; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803E936C; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803E9370; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803E9378; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803E9380; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803E9388; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803E9390; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803E9398; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803E93A0; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803E93A8; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803E93B0; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803E93B8; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803E93C0; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803E93C8; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803E93D0; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803E93D8; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803E93E0; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803E93E8; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803E93EC; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803E93F4; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803E93FC; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803E9404; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803E940C; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803E9414; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803E941C; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E9424; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E942C; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E9434; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803E943C; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803E9444; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803E944C; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803E9450; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803E9458; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E9460; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E9468; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803E9470; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E9478; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803E9480; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E9488; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E9490; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803E9498; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803E94A0; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E94A8; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E94B0; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803E94B4; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803E94B8; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803E94BC; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803E94C0; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803E94C4; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803E94CC; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803E94D4; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803E94DC; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803E94E0; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803E94E8; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803E94F0; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803E94F8; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803E94FC; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803E9500; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E9508; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803E9510; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E9518; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E9520; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803E9528; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E9530; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9538; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9540; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803E9548; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9550; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E9558; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E9560; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E9568; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803E9570; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9578; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803E9580; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803E9588; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803E9590; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803E9598; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E95A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803E95A8; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803E95B0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E95B8; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E95C0; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803E95C8; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803E95D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E95D8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E95E0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E95E8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E95F0; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E95F8; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803E9600; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E9608; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E960C; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E9610; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E9614; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E9618; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E961C; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E9620; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E9624; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E962C; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803E9634; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E9640; // type:object size:0x8 scope:local align:4 +@1293 = .sdata:0x803E9648; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E9650; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E9658; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803E9660; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803E9668; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803E9670; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803E9678; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803E9680; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803E9688; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803E9690; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E9694; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803E9698; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803E969C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803E96A4; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803E96AC; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803E96B4; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803E96BC; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803E96C4; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803E96CC; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803E96D4; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E96E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803E96E8; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803E96F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803E96F8; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803E9700; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E9704; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803E9708; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803E970C; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803E9710; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803E9714; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803E9718; // type:object size:0x4 scope:global align:4 data:float +degreePerRadian__6NMathF = .sdata:0x803E971C; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803E9720; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803E9724; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803E9728; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803E9730; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803E9738; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E9740; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E9748; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803E9750; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E9758; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E9760; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803E9768; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803E9770; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803E9778; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803E9780; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E9788; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803E9790; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803E9798; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803E97A0; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803E97A8; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803E97B0; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803E97B8; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803E97C0; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803E97C8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E97D0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E97D8; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803E97E0; // type:object size:0x8 scope:local align:4 +@1799 = .sdata:0x803E97E8; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E97EC; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata:0x803E97F0; // type:object size:0x4 scope:local align:4 data:float +@1807 = .sdata:0x803E97F4; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata:0x803E97F8; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata:0x803E97FC; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata:0x803E9800; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E9804; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E9808; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E980C; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E9810; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E9814; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803E9818; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E981C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E9820; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E9824; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803E9828; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803E982C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E9830; // type:object size:0x7 scope:local align:4 data:string +@1937 = .sdata:0x803E9838; // type:object size:0x8 scope:local align:4 data:string +@1938 = .sdata:0x803E9840; // type:object size:0x8 scope:local align:4 data:string +@2237 = .sdata:0x803E9848; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E984C; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E9850; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E9854; // type:object size:0x1 scope:local align:4 +@2311 = .sdata:0x803E9858; // type:object size:0x8 scope:local align:4 data:string +@2326 = .sdata:0x803E9860; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9868; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9870; // type:object size:0x8 scope:local align:4 +@2329 = .sdata:0x803E9878; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9880; // type:object size:0x8 scope:local align:4 +@2331 = .sdata:0x803E9888; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E9890; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniTestSection = .sdata:0x803E9898; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E98A0; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniTestNode = .sdata:0x803E98A8; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803E98B0; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E98B8; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803E98C0; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E98C8; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803E98D0; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E98D8; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803E98E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803E98E8; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803E98F0; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803E98F8; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E9900; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9908; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9910; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E9918; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9920; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803E9928; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803E9930; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E9938; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E9940; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803E9948; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803E9950; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E9958; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803E9960; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803E9968; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E9970; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803E9978; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E9980; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803E9988; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9990; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9998; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803E99A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E99A8; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803E99B0; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E99B8; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803E99C0; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803E99C8; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803E99D0; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803E99D8; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803E99E0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803E99E8; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803E99F0; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803E99F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E9A00; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E9A08; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E9A10; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E9A18; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E9A20; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E9A28; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803E9A30; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803E9A38; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803E9A40; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803E9A48; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803E9A50; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803E9A58; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E9A60; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E9A68; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E9A70; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803E9A78; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803E9A80; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E9A88; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803E9A90; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803E9A98; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803E9AA0; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803E9AA8; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803E9AB0; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803E9AB8; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E9AC0; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803E9AC8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803E9AD0; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803E9AD8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9AE0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9AE8; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803E9AF0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9AF8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803E9B00; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9B08; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9B10; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803E9B18; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803E9B20; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803E9B28; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803E9B30; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803E9B38; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9B40; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9B48; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803E9B50; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803E9B58; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803E9B60; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803E9B68; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803E9B70; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803E9B78; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9B80; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803E9B88; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803E9B90; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803E9B98; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803E9BA0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803E9BA8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803E9BB0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9BB8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9BC0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9BC8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803E9BD0; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E9BD8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803E9BE0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9BE8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9BF0; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803E9BF8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803E9C00; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803E9C08; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803E9C10; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9C18; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9C20; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803E9C28; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E9C30; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9C38; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9C40; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803E9C48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9C50; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9C58; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803E9C60; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803E9C68; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803E9C70; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E9C78; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803E9C7C; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803E9C80; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803E9C84; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803E9C88; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803E9C8C; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803E9C90; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803E9C94; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803E9C98; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803E9C9C; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803E9CA0; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E9CA4; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E9CA8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803E9CAC; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9CB4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803E9CBC; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803E9CC4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9CCC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9CD4; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803E9CDC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9CE4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9CEC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803E9CF4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9CFC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9D04; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9D0C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803E9D14; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803E9D1C; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803E9D24; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803E9D2C; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803E9D34; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803E9D3C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803E9D44; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803E9D4C; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9D54; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E9D5C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803E9D64; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803E9D6C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803E9D74; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803E9D7C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803E9D84; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803E9D8C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803E9D94; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803E9D9C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803E9DA4; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803E9DAC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803E9DB4; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E9DBC; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803E9DC4; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803E9DCC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9DD4; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9DDC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803E9DE4; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803E9DEC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803E9DF4; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803E9DFC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803E9E04; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803E9E0C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803E9E14; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9E20; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803E9E28; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803E9E30; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803E9E38; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803E9E40; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803E9E48; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803E9E50; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803E9E58; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9E60; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9E68; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9E70; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803E9E78; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803E9E80; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803E9E88; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E9E90; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E9E94; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E9E98; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E9E9C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E9EA0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E9EA4; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E9EA8; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E9EAC; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E9EB0; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E9EB4; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803E9EB8; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803E9EBC; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803E9EC0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9EC4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803E9ECC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E9ED4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9EDC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803E9EE4; // type:object size:0x8 scope:local align:4 +@2168 = .sdata:0x803E9EEC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9EF4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9EFC; // type:object size:0x8 scope:local align:4 +@2171 = .sdata:0x803E9F04; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9F0C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9F14; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803E9F1C; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803E9F24; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803E9F2C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803E9F34; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803E9F3C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9F48; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803E9F50; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803E9F58; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9F60; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9F68; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803E9F70; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803E9F78; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803E9F80; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803E9F88; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803E9F90; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803E9F98; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803E9FA0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803E9FA8; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E9FB0; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803E9FB4; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803E9FB8; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803E9FBC; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803E9FC0; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803E9FC4; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803E9FC8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E9FCC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E9FD4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E9FDC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803E9FE4; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803E9FEC; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9FF4; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9FFC; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803EA004; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803EA00C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803EA014; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA01C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA024; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803EA02C; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803EA034; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803EA03C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA044; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA04C; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803EA054; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA05C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA064; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803EA06C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EA078; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803EA080; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803EA088; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803EA090; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803EA094; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803EA098; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803EA09C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803EA0A0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EA0A4; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EA0A8; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803EA0AC; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803EA0B0; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803EA0B4; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803EA0B8; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803EA0BC; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803EA0C0; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803EA0C4; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803EA0C8; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803EA0CC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA0D0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803EA0D8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803EA0E0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803EA0E8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803EA0F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803EA0F8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803EA100; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803EA108; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803EA110; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803EA118; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA120; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA128; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803EA130; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803EA138; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA140; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA148; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803EA150; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA158; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA160; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803EA168; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803EA170; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803EA178; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803EA180; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803EA188; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803EA190; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EA194; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803EA198; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EA19C; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803EA1A0; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803EA1A4; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EA1A8; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803EA1B0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803EA1B8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803EA1C0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803EA1C8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803EA1D0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA1D8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803EA1E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803EA1E8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803EA1F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803EA1F8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803EA200; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803EA208; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803EA20C; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803EA210; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803EA214; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803EA218; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803EA21C; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803EA220; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA224; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803EA22C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803EA234; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803EA23C; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA244; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803EA24C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803EA254; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803EA25C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803EA264; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803EA26C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803EA274; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803EA27C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803EA284; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA28C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803EA294; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803EA29C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803EA2A4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803EA2AC; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803EA2B4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803EA2BC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803EA2C4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803EA2CC; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803EA2D4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803EA2DC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803EA2E4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803EA2EC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803EA2F4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803EA2FC; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803EA304; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803EA30C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803EA314; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803EA31C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803EA324; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803EA32C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803EA334; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803EA340; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803EA344; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803EA348; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803EA34C; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803EA350; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EA354; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EA358; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803EA35C; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803EA360; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803EA364; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA368; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803EA370; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803EA378; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803EA380; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803EA388; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803EA390; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803EA398; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803EA3A0; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803EA3A8; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803EA3B0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803EA3B8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803EA3C0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803EA3C8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA3D0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA3D8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803EA3E0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803EA3E8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803EA3F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803EA3F8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803EA400; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803EA408; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803EA410; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803EA418; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803EA420; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA428; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803EA430; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803EA438; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803EA440; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803EA448; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA450; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA458; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803EA460; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803EA468; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA470; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA478; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803EA480; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA488; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA490; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803EA498; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803EA4A0; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803EA4A4; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803EA4A8; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803EA4AC; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803EA4B0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EA4B4; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EA4B8; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803EA4BC; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803EA4C0; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803EA4C4; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803EA4C8; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803EA4CC; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803EA4D0; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803EA4D4; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803EA4D8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA4DC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EA4E4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803EA4EC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803EA4F4; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803EA4FC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803EA504; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803EA50C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA514; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA51C; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803EA524; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803EA52C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803EA534; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803EA53C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803EA544; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803EA54C; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803EA554; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA55C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA564; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803EA56C; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803EA574; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA57C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA584; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803EA58C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA594; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA59C; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803EA5A4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803EA5AC; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803EA5B8; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EA5BC; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EA5C0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EA5C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA5C8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803EA5D0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803EA5D8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803EA5E0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803EA5E8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803EA5F0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803EA5F8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA600; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803EA608; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803EA610; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803EA618; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803EA620; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803EA628; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA630; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA638; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA640; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA648; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803EA650; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803EA658; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA660; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA668; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803EA670; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA678; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA680; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803EA688; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EA690; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803EA698; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803EA6A0; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803EA6A8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803EA6B0; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803EA6B8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803EA6C0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA6C8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA6D0; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803EA6D8; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803EA6E0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA6E8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803EA6F0; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803EA6F8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803EA700; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803EA708; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803EA710; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803EA718; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803EA720; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803EA728; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803EA730; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803EA738; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803EA740; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803EA748; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803EA750; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803EA758; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803EA760; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803EA768; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803EA76C; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803EA770; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803EA774; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA778; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EA780; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803EA788; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803EA790; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803EA798; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803EA7A0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803EA7A8; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803EA7B0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA7B8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA7C0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA7C8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803EA7D0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803EA7D8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803EA7E0; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803EA7E8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA7F0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA7F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803EA800; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803EA808; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA810; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA818; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803EA820; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA828; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA830; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803EA838; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803EA840; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803EA848; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803EA84C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803EA850; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EA854; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803EA85C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EA864; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803EA86C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803EA874; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803EA87C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA884; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA88C; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803EA894; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA89C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EA8A4; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803EA8AC; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803EA8B4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EA8BC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EA8C4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803EA8CC; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803EA8D4; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803EA8DC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803EA8E4; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803EA8EC; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803EA8F4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EA900; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803EA908; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803EA910; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803EA918; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803EA920; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EA928; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803EA930; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803EA938; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803EA940; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EA948; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA950; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA958; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA960; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA968; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803EA970; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EA978; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803EA980; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803EA988; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803EA990; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803EA998; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803EA9A0; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803EA9A8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA9B0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA9B8; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803EA9C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA9C8; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803EA9D0; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803EA9D8; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803EA9DC; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803EA9E0; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803EA9E4; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803EA9E8; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EA9EC; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803EA9F4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803EA9F8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803EA9FC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803EAA00; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803EAA04; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803EAA08; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803EAA0C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803EAA10; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803EAA14; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803EAA18; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803EAA1C; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803EAA20; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803EAA24; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803EAA28; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803EAA2C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803EAA30; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803EAA34; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803EAA38; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803EAA3C; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803EAA40; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803EAA44; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803EAA48; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803EAA4C; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803EAA50; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803EAA54; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803EAA58; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803EAA5C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803EAA60; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803EAA64; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803EAA68; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803EAA6C; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803EAA70; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803EAA74; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803EAA78; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803EAA7C; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803EAA80; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803EAA84; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803EAA88; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803EAA8C; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803EAA90; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803EAA94; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803EAA98; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803EAA9C; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata:0x803EAAA0; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803EAAA4; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803EAAA8; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803EAAAC; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803EAAB0; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803EAAB4; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803EAAB8; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803EAABC; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803EAAC0; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata:0x803EAAC4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803EAAC8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EAAD0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAAD8; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803EAAE0; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803EAAE8; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAAF0; // type:object size:0x8 scope:local align:4 +@4713 = .sdata:0x803EAAF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EAB00; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAB08; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAB10; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803EAB18; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EAB20; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803EAB28; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803EAB30; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803EAB38; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803EAB40; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803EAB48; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803EAB50; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803EAB58; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803EAB60; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803EAB68; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803EAB70; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803EAB78; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803EAB80; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803EAB88; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803EAB90; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803EAB98; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803EABA0; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803EABA8; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803EABB0; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803EABB8; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803EABC0; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803EABC8; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803EABD0; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803EABD8; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803EABE0; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803EABE8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803EABF0; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803EABF8; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803EAC00; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803EAC08; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803EAC10; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803EAC18; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803EAC20; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803EAC28; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803EAC30; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803EAC38; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803EAC40; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803EAC48; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803EAC50; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803EAC58; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803EAC60; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803EAC68; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803EAC70; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803EAC78; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803EAC80; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803EAC84; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803EAC8C; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803EAC94; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803EAC9C; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803EACA4; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803EACAC; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803EACB4; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803EACBC; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803EACC4; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803EACCC; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803EACD4; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803EACDC; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803EACE4; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803EACEC; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803EACF4; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803EACFC; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803EAD00; // type:object size:0x6 scope:local align:4 data:string +@1517 = .sdata:0x803EAD08; // type:object size:0x8 scope:local align:4 data:string +@1519 = .sdata:0x803EAD10; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAD18; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAD20; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803EAD28; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAD30; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EAD38; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EAD40; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803EAD48; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803EAD50; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803EAD58; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EAD60; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAD68; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAD70; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAD78; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAD80; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803EAD88; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EAD90; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803EAD98; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803EADA0; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803EADA8; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803EADB0; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803EADB8; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803EADC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EADC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EADD0; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803EADD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EADE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EADE8; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803EADF0; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803EADF8; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803EADFC; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803EAE00; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803EAE04; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803EAE08; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803EAE0C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803EAE10; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EAE18; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803EAE20; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803EAE28; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803EAE30; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803EAE38; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803EAE40; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803EAE48; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803EAE50; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803EAE54; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803EAE58; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803EAE5C; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803EAE60; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803EAE64; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803EAE68; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803EAE6C; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803EAE70; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803EAE74; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803EAE78; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803EAE7C; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803EAE80; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803EAE84; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803EAE88; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803EAE8C; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803EAE90; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803EAE94; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803EAE98; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803EAE9C; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803EAEA0; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803EAEA4; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803EAEA8; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803EAEAC; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803EAEB0; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803EAEB4; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803EAEB8; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803EAEBC; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803EAEC0; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803EAEC4; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803EAEC8; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803EAECC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803EAED0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803EAED4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803EAED8; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803EAEDC; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803EAEE0; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803EAEE4; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803EAEE8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EAEEC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAEF4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAEFC; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803EAF04; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAF0C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EAF14; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EAF1C; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803EAF28; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAF30; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAF38; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803EAF40; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAF48; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803EAF50; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EAF58; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803EAF60; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803EAF68; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803EAF70; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803EAF78; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803EAF80; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803EAF88; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803EAF90; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803EAF98; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803EAFA0; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803EAFA8; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803EAFB0; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803EAFB8; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803EAFC0; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803EAFC8; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803EAFD0; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803EAFD4; // type:object size:0x5 scope:local align:4 data:string +@2889 = .sdata:0x803EAFDC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAFE4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAFEC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803EAFF4; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803EAFFC; // type:object size:0x8 scope:local align:4 +@2895 = .sdata:0x803EB004; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB00C; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803EB014; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803EB01C; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803EB028; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803EB030; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EB034; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EB038; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EB03C; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EB040; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EB044; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EB048; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EB04C; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803EB050; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803EB054; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EB058; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EB05C; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EB060; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EB064; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803EB068; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EB06C; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803EB070; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803EB074; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803EB078; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EB07C; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EB080; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EB084; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803EB088; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803EB08C; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803EB090; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803EB094; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803EB098; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803EB09C; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803EB0A0; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803EB0A4; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803EB0A8; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803EB0AC; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803EB0B0; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803EB0B4; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803EB0B8; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803EB0BC; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803EB0C0; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803EB0C4; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803EB0C8; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803EB0CC; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803EB0D0; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803EB0D4; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803EB0D8; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803EB0DC; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803EB0E0; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803EB0E4; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803EB0E8; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803EB0EC; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803EB0F0; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803EB0F4; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803EB0F8; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803EB0FC; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803EB100; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803EB104; // type:object size:0x1 scope:local align:4 +@1700 = .sdata:0x803EB108; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB110; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB118; // type:object size:0x8 scope:local align:4 +@1702 = .sdata:0x803EB120; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB128; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803EB130; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EB138; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB140; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB148; // type:object size:0x8 scope:local align:4 +@1716 = .sdata:0x803EB150; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB158; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803EB160; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB168; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB170; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EB178; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803EB180; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB188; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803EB190; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803EB198; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803EB19C; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803EB1A0; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803EB1A4; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803EB1A8; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803EB1AC; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803EB1B0; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803EB1B4; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803EB1B8; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803EB1BC; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803EB1C0; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803EB1C4; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803EB1C8; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803EB1CC; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803EB1D0; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803EB1D4; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803EB1D8; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803EB1DC; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803EB1E0; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803EB1E4; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803EB1E8; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803EB1EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB1F0; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803EB1F8; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803EB200; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803EB208; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803EB210; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803EB218; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803EB21C; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803EB220; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803EB224; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803EB228; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803EB22C; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803EB230; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803EB234; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803EB238; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803EB23C; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EB240; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803EB244; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803EB248; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803EB24C; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803EB250; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803EB254; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803EB258; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803EB25C; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803EB260; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803EB264; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803EB268; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803EB26C; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803EB270; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803EB274; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803EB278; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803EB27C; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803EB280; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803EB284; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803EB288; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803EB28C; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803EB290; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803EB294; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803EB298; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803EB29C; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803EB2A0; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803EB2A4; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803EB2A8; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803EB2AC; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803EB2B0; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803EB2B4; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803EB2B8; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803EB2BC; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803EB2C0; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803EB2C4; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803EB2C8; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803EB2CC; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803EB2D0; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803EB2D4; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EB2D8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB2E0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB2E8; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803EB2F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB2F8; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803EB300; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EB308; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803EB310; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB318; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803EB320; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB328; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB330; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB338; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EB340; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803EB348; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803EB350; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803EB358; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803EB35C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803EB360; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803EB364; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803EB368; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB36C; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803EB374; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803EB380; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803EB384; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803EB388; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803EB38C; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803EB3A4; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803EB3A8; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803EB3AC; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803EB3B0; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803EB3B4; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803EB3B8; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803EB3BC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB3C0; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803EB3C8; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803EB3D0; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803EB3D8; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803EB3DC; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803EB3E0; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803EB3E4; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803EB3E8; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803EB3EC; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803EB3F0; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803EB3F8; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EB3FC; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EB400; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EB404; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EB408; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EB40C; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EB410; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EB414; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EB418; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EB41C; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EB420; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EB424; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EB428; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EB42C; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EB430; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EB434; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EB438; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EB43C; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803EB440; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EB444; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EB448; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EB44C; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803EB450; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EB454; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EB458; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803EB45C; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803EB460; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EB464; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EB468; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB470; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB478; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803EB480; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB488; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803EB490; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803EB498; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803EB4A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803EB4A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803EB4B0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB4B8; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803EB4C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB4C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB4D0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB4D8; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EB4E0; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803EB4E8; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803EB4F0; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EB4F4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EB4F8; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EB4FC; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803EB500; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803EB504; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803EB508; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803EB50C; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803EB510; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803EB514; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803EB518; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803EB51C; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803EB520; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803EB524; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803EB528; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803EB52C; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803EB530; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803EB534; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803EB538; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803EB540; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803EB544; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803EB548; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803EB54C; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803EB550; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803EB554; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EB558; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803EB55C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EB560; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB568; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB570; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803EB578; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803EB580; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803EB588; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803EB58C; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803EB590; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803EB594; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803EB598; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803EB59C; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EB5A0; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803EB5A4; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EB5A8; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803EB5AC; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EB5B0; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803EB5B4; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EB5B8; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EB5BC; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EB5C0; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EB5C4; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EB5C8; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803EB5CC; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803EB5D0; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EB5D4; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803EB5D8; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803EB5DC; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803EB5E0; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803EB5E4; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803EB5E8; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803EB5EC; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803EB5F0; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803EB5F4; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803EB5F8; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803EB5FC; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803EB600; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803EB604; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803EB608; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803EB60C; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803EB610; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803EB614; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803EB618; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803EB61C; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803EB620; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803EB624; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803EB628; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803EB62C; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803EB630; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803EB634; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB63C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB644; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803EB64C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB654; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803EB65C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EB664; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB66C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB674; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803EB67C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB684; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803EB68C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB694; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB69C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EB6A4; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803EB6AC; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803EB6B8; // type:object size:0x7 scope:local align:4 data:string +@3371 = .sdata:0x803EB6C0; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata:0x803EB6C4; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata:0x803EB6C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB6CC; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803EB6D4; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803EB6E0; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803EB6E4; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803EB6E8; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803EB6EC; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803EB6F0; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803EB6F4; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803EB6F8; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803EB6FC; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803EB700; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803EB704; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803EB708; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803EB70C; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803EB710; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803EB714; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803EB718; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803EB71C; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803EB720; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803EB724; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803EB728; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803EB72C; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803EB730; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803EB734; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803EB738; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803EB73C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803EB740; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803EB744; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803EB748; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803EB74C; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803EB750; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803EB754; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803EB758; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803EB75C; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803EB760; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803EB764; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803EB768; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803EB76C; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803EB780; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803EB784; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803EB788; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803EB78C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803EB790; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803EB794; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803EB798; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803EB79C; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803EB7A0; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803EB7A4; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803EB7A8; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803EB7AC; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803EB7B0; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803EB7B4; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803EB7B8; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803EB7BC; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803EB7C0; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803EB7C4; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EB7C8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB7CC; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803EB7D4; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803EB7DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803EB7E4; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803EB7EC; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803EB7F4; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803EB7FC; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803EB804; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803EB810; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803EB818; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803EB81C; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803EB820; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803EB824; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EB828; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EB82C; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EB830; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EB834; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EB838; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EB83C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EB840; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EB844; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EB848; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EB84C; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803EB850; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EB854; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB85C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB864; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803EB86C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB874; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803EB87C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB884; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803EB88C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB894; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB89C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB8A4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EB8AC; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803EB8B4; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803EB8C0; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803EB8C8; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803EB8CC; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803EB8D0; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803EB8D4; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803EB8D8; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803EB8DC; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803EB8E0; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803EB8E4; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803EB8E8; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803EB8EC; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803EB8F0; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803EB8F4; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EB8F8; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803EB8FC; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803EB900; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EB904; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803EB908; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803EB90C; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EB910; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803EB914; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803EB918; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EB91C; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803EB920; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803EB924; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803EB928; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803EB92C; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803EB930; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803EB934; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803EB938; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803EB93C; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803EB940; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EB944; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803EB948; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EB94C; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803EB954; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB95C; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803EB964; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803EB970; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803EB974; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803EB978; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803EB97C; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803EB980; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803EB984; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803EB988; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803EB98C; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803EB990; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803EB994; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803EB998; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803EB99C; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803EB9A0; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EB9A4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EB9AC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EB9B4; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803EB9BC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EB9C4; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803EB9CC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EB9D4; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803EB9DC; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803EB9E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB9EC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB9F4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EB9FC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EBA04; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803EBA0C; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803EBA18; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803EBA20; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EBA24; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803EBA2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EBA34; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803EBA3C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EBA48; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EBA50; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EBA58; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803EBA60; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EBA68; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803EBA70; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EBA78; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBA80; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBA88; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EBA90; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EBA98; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803EBAA0; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803EBAA8; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803EBAB0; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803EBAB4; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803EBAB8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EBABC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EBAC4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EBACC; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803EBAD4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EBADC; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803EBAE4; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803EBAEC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBAF4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBAFC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EBB04; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EBB0C; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803EBB14; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EBB20; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803EBB28; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803EBB30; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803EBB34; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803EBB38; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EBB3C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EBB44; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EBB4C; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803EBB54; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EBB5C; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803EBB64; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803EBB6C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBB74; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBB7C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EBB84; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EBB8C; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803EBB94; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803EBBA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EBBA4; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803EBBAC; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803EBBB8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EBBC0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EBBC8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EBBD0; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803EBBD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EBBE0; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803EBBE8; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803EBBF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBBF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBC00; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EBC08; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EBC10; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803EBC18; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803EBC20; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803EBC28; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803EBC2C; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803EBC30; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803EBC34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EBC38; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803EBC40; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EBC48; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803EBC50; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803EBC58; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803EBC5C; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803EBC60; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803EBC64; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803EBC68; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803EBC6C; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803EBC70; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803EBC74; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803EBC78; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803EBC7C; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803EBC80; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803EBC84; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803EBC88; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803EBC8C; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803EBC90; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803EBC94; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803EBC98; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803EBC9C; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803EBCA0; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803EBCA4; // type:object size:0x4 scope:local align:4 +@969 = .sdata:0x803EBCA8; // type:object size:0x7 scope:local align:4 data:string +@1113 = .sdata:0x803EBCB0; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata:0x803EBCB4; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803EBCB8; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803EBCBC; // type:object size:0x4 scope:local align:4 data:float +@1117 = .sdata:0x803EBCC0; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EBCC4; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803EBCC8; // type:object size:0x3 scope:local align:4 +@1210 = .sdata:0x803EBCCC; // type:object size:0x8 scope:local align:4 data:string +@1213 = .sdata:0x803EBCD4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBCDC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBCE4; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803EBCEC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBCF4; // type:object size:0x8 scope:local align:4 +@1218 = .sdata:0x803EBCFC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EBD04; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803EBD0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803EBD14; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803EBD20; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803EBD28; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803EBD2C; // type:object size:0x7 scope:local align:4 data:string +@1525 = .sdata:0x803EBD34; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803EBD38; // type:object size:0x3 scope:local align:4 data:string +@1527 = .sdata:0x803EBD3C; // type:object size:0x7 scope:local align:4 data:string +@1602 = .sdata:0x803EBD44; // type:object size:0x3 scope:local align:4 data:string +@1603 = .sdata:0x803EBD48; // type:object size:0x3 scope:local align:4 data:string +@1604 = .sdata:0x803EBD4C; // type:object size:0x2 scope:local align:4 data:string +@1605 = .sdata:0x803EBD50; // type:object size:0x3 scope:local align:4 data:string +@1606 = .sdata:0x803EBD54; // type:object size:0x3 scope:local align:4 data:string +@1607 = .sdata:0x803EBD58; // type:object size:0x3 scope:local align:4 data:string +@1608 = .sdata:0x803EBD5C; // type:object size:0x3 scope:local align:4 data:string +@1609 = .sdata:0x803EBD60; // type:object size:0x3 scope:local align:4 data:string +@1610 = .sdata:0x803EBD64; // type:object size:0x3 scope:local align:4 data:string +@1611 = .sdata:0x803EBD68; // type:object size:0x3 scope:local align:4 data:string +@1612 = .sdata:0x803EBD6C; // type:object size:0x3 scope:local align:4 data:string +@1613 = .sdata:0x803EBD70; // type:object size:0x3 scope:local align:4 data:string +@1614 = .sdata:0x803EBD74; // type:object size:0x3 scope:local align:4 data:string +@1615 = .sdata:0x803EBD78; // type:object size:0x3 scope:local align:4 data:string +@1616 = .sdata:0x803EBD7C; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803EBD80; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803EBD84; // type:object size:0x3 scope:local align:4 data:string +@1619 = .sdata:0x803EBD88; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803EBD8C; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803EBD90; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803EBD94; // type:object size:0x2 scope:local align:4 data:string +@1720 = .sdata:0x803EBD98; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803EBD9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EBDA4; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EBDAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EBDB4; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EBDBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EBDC4; // type:object size:0x8 scope:local align:4 +@1024 = .sdata:0x803EBDD0; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803EBDD8; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803EBDDC; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803EBDE4; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803EBDEC; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803EBDF4; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803EBDFC; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803EBE04; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803EBE0C; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803EBE14; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803EBE1C; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803EBE24; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803EBE2C; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803EBE34; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803EBE3C; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803EBE44; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803EBE4C; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803EBE54; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803EBE5C; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803EBE64; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803EBE6C; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803EBE74; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803EBE7C; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803EBE84; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803EBE8C; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803EBE94; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803EBE9C; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803EBEA4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803EBEAC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803EBEB4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803EBEBC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803EBEC4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803EBECC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803EBED4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803EBEDC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803EBEE4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803EBEEC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803EBEF4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803EBEFC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803EBF04; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803EBF0C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803EBF14; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803EBF1C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803EBF24; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803EBF2C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803EBF34; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803EBF3C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803EBF44; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803EBF4C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803EBF54; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803EBF5C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803EBF64; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803EBF6C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803EBF74; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803EBF7C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803EBF84; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803EBF8C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803EBF94; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803EBF9C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803EBFA4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803EBFAC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803EBFB4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803EBFBC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803EBFC4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803EBFCC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803EBFD4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803EBFDC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803EBFE4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803EBFEC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803EBFF4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803EBFFC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803EC004; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803EC00C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803EC014; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803EC01C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803EC024; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803EC02C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803EC034; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803EC03C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803EC044; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803EC04C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803EC054; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803EC05C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803EC064; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803EC06C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803EC074; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803EC07C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803EC084; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803EC08C; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803EC098; // type:object size:0x4 scope:local align:4 data:string +@1824 = .sdata:0x803EC0A0; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata:0x803EC0A4; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata:0x803EC0A8; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803EC0AC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803EC0B0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803EC0B4; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EC0B8; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata:0x803EC0BC; // type:object size:0x4 scope:local align:4 data:float +@1832 = .sdata:0x803EC0C0; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata:0x803EC0C4; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EC0C8; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EC0CC; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata:0x803EC0D0; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803EC0D4; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803EC0D8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803EC0DC; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803EC0E0; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803EC0E4; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803EC0E8; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata:0x803EC0EC; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EC0F0; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata:0x803EC0F4; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata:0x803EC0F8; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803EC0FC; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803EC100; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803EC104; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803EC108; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata:0x803EC10C; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata:0x803EC110; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803EC118; // type:object size:0x1 scope:local align:4 +@1922 = .sdata:0x803EC11C; // type:object size:0x4 scope:local align:4 data:string +@1965 = .sdata:0x803EC120; // type:object size:0x7 scope:local align:4 data:string +@1251 = .sdata:0x803EC128; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803EC12C; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803EC130; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803EC138; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803EC140; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803EC148; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803EC14C; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EC150; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EC154; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EC158; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803EC160; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803EC168; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803EC170; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803EC178; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803EC17C; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803EC180; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803EC184; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803EC188; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803EC18C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803EC190; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803EC194; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803EC198; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803EC19C; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803EC1A0; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803EC1A8; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803EC1B0; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803EC1B8; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803EC1C0; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803EC1C8; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803EC1CC; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803EC1D0; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803EC1D4; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803EC1D8; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803EC1DC; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803EC1E0; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803EC1E4; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803EC1E8; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803EC1EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC1F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC1F8; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC200; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803EC208; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EC210; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EC214; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EC218; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EC21C; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EC220; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EC224; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EC228; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803EC22C; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803EC230; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803EC234; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803EC23C; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803EC240; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803EC244; // type:object size:0x5 scope:local align:4 data:string +@1598 = .sdata:0x803EC24C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC254; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC25C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803EC264; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803EC26C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803EC274; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803EC27C; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803EC284; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803EC28C; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803EC294; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803EC29C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803EC2A4; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803EC2AC; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803EC2B4; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803EC2BC; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803EC2C4; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803EC2CC; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803EC2D4; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803EC2DC; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803EC2E4; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803EC2EC; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803EC2F4; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803EC2FC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EC304; // type:object size:0x8 scope:local align:4 +@1796 = .sdata:0x803EC30C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC314; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803EC31C; // type:object size:0x8 scope:local align:4 +@1889 = .sdata:0x803EC324; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EC32C; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803EC334; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803EC340; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803EC348; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC350; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC358; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803EC360; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC368; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803EC370; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EC378; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803EC380; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EC388; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803EC390; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC398; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC3A0; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803EC3A8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC3B0; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803EC3B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EC3C0; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803EC3C8; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803EC3D0; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803EC3D4; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EC3D8; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EC3DC; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EC3E0; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EC3E4; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803EC3E8; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803EC3EC; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EC3F0; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803EC3F4; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803EC3F8; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803EC3FC; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803EC400; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803EC404; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803EC408; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EC40C; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803EC410; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata:0x803EC414; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803EC418; // type:object size:0x1 scope:local align:4 +@1631 = .sdata:0x803EC41C; // type:object size:0x8 scope:local align:4 data:string +@1759 = .sdata:0x803EC424; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC42C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC434; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803EC43C; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803EC444; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803EC44C; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803EC454; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803EC45C; // type:object size:0x8 scope:local align:4 +@1775 = .sdata:0x803EC464; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC46C; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803EC474; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803EC480; // type:object size:0x8 scope:local align:32 +@2020 = .sdata:0x803EC488; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803EC48C; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EC490; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EC494; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EC498; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803EC49C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EC4A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803EC4A8; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803EC4B0; // type:object size:0x4 scope:global align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EC4B4; // type:object size:0x8 scope:local align:4 +@595 = .sdata:0x803EC4C0; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803EC4C4; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803EC4C8; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803EC4CC; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803EC4D0; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803EC4D4; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803EC4D8; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803EC4DC; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803EC4E0; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803EC4E4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803EC4E8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803EC4EC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EC4F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803EC4F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803EC500; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803EC508; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EC510; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803EC514; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EC518; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EC51C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EC520; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EC524; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EC528; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803EC52C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803EC530; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803EC534; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803EC538; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803EC53C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803EC540; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803EC544; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EC548; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EC550; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EC558; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EC560; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EC568; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EC570; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803EC578; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EC580; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803EC588; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803EC590; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803EC598; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EC5A0; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803EC5A8; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803EC5AC; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803EC5B0; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803EC5B4; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803EC5B8; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803EC5BC; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803EC5C0; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803EC5C4; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803EC5C8; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803EC5CC; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803EC5D0; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803EC5D4; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803EC5D8; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803EC5DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC5E0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803EC5E8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC5F0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC5F8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803EC600; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC608; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803EC610; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803EC618; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803EC620; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC628; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EC630; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803EC638; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC640; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EC648; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803EC650; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EC658; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803EC660; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EC668; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803EC670; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EC678; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EC680; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803EC688; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EC690; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803EC698; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EC6A0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EC6A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803EC6B0; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803EC6B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC6C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC6C8; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803EC6D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC6D8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC6E0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803EC6E8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EC6F0; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803EC6F8; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803EC700; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EC704; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EC708; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803EC70C; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EC710; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EC714; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803EC718; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803EC71C; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803EC720; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803EC724; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC728; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803EC730; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC738; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC740; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803EC748; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC750; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803EC758; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803EC760; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EC768; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC770; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EC778; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EC780; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803EC788; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EC790; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803EC798; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EC7A0; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803EC7A8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EC7B0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803EC7B8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EC7C0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803EC7C8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EC7D0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803EC7D8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EC7E0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803EC7E8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EC7F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803EC7F8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EC800; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803EC808; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803EC810; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC818; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EC820; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803EC828; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803EC830; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EC838; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EC840; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803EC848; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EC850; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803EC858; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803EC860; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC868; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC870; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803EC878; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC880; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC888; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803EC890; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EC898; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803EC8A0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC8A8; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803EC8B0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803EC8B8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EC8C0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC8C8; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EC8D0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803EC8D8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803EC8E0; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803EC8E8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803EC8F0; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803EC8F8; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EC900; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EC908; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803EC90C; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803EC910; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803EC914; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803EC918; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803EC91C; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803EC920; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803EC924; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803EC928; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803EC92C; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803EC930; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803EC934; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EC938; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803EC93C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803EC940; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803EC944; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803EC948; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata:0x803EC94C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803EC950; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803EC954; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803EC958; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803EC95C; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803EC960; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata:0x803EC964; // type:object size:0x4 scope:local align:4 data:float +@3458 = .sdata:0x803EC968; // type:object size:0x4 scope:local align:4 data:float +@3459 = .sdata:0x803EC96C; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata:0x803EC970; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata:0x803EC974; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata:0x803EC978; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata:0x803EC97C; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata:0x803EC980; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata:0x803EC984; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata:0x803EC988; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata:0x803EC98C; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata:0x803EC990; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata:0x803EC994; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata:0x803EC998; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EC99C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC9A4; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EC9AC; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EC9B4; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803EC9BC; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EC9C4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EC9CC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EC9D4; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EC9DC; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803EC9E4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EC9EC; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803EC9F4; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803EC9FC; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803ECA04; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803ECA0C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803ECA14; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803ECA1C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803ECA24; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803ECA2C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803ECA34; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803ECA3C; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803ECA44; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803ECA4C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803ECA54; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803ECA5C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803ECA64; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803ECA6C; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803ECA74; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803ECA7C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803ECA84; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ECA8C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803ECA94; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803ECA9C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECAA8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ECAB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803ECAB8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ECAC0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ECAC8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803ECAD0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803ECAD8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECAE0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803ECAE8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803ECAF0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803ECAF8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803ECB00; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803ECB08; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803ECB10; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803ECB18; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803ECB20; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803ECB28; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803ECB30; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803ECB38; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803ECB40; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803ECB48; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803ECB50; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803ECB58; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803ECB60; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803ECB64; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803ECB68; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803ECB6C; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803ECB70; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803ECB74; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803ECB78; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803ECB7C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803ECB80; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803ECB84; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803ECB88; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803ECB8C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803ECB90; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ECB98; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803ECBA0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803ECBA8; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803ECBB0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ECBB8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803ECBC0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ECBC8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803ECBD0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803ECBD8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803ECBE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803ECBE8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803ECBF0; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803ECBF8; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803ECC00; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803ECC08; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803ECC10; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803ECC18; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803ECC20; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803ECC24; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803ECC28; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803ECC2C; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803ECC30; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803ECC34; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803ECC38; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803ECC3C; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803ECC40; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803ECC44; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803ECC48; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803ECC4C; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803ECC50; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803ECC54; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803ECC58; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803ECC5C; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803ECC60; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803ECC64; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803ECC68; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803ECC70; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803ECC78; // type:object size:0x8 scope:local align:4 data:string +@668 = .sdata:0x803ECC80; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803ECC84; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata:0x803ECC88; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata:0x803ECC8C; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803ECC90; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803ECC94; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803ECC98; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803ECC9C; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803ECCA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803ECCA4; // type:object size:0x8 scope:local align:4 +@1154 = .sdata:0x803ECCB0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803ECCB8; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803ECCC0; // type:object size:0x8 scope:local align:4 +@882 = .sdata:0x803ECCC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803ECCD0; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803ECCD8; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803ECCE0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803ECCE8; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803ECCF0; // type:object size:0x8 scope:local align:4 +@731 = .sdata:0x803ECCF8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803ECD00; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803ECD08; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803ECD10; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803ECD14; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803ECD18; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803ECD20; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803ECD28; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803ECD2C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803ECD30; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECD38; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECD40; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECD48; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803ECD50; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803ECD58; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803ECD60; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803ECD68; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803ECD70; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803ECD78; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803ECD80; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803ECD88; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803ECD90; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803ECD98; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803ECDA0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803ECDA8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803ECDB0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803ECDB8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803ECDC0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803ECDC8; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803ECDD0; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803ECDD8; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803ECDDC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803ECDE0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803ECDE4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803ECDE8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803ECDEC; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803ECDF0; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803ECDF4; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803ECDF8; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803ECDFC; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803ECE04; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803ECE0C; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803ECE14; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803ECE1C; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803ECE24; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECE2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECE34; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECE3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803ECE44; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803ECE4C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803ECE54; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803ECE5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803ECE64; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803ECE6C; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803ECE74; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ECE7C; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803ECE88; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803ECE8C; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803ECE90; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803ECE94; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803ECE98; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECE9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECEA4; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECEAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803ECEB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803ECEBC; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803ECEC8; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803ECECC; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803ECED0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803ECED8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803ECEE0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803ECEE8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803ECEF0; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ECEF8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ECF00; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ECF08; // type:object size:0x8 scope:local align:4 +@767 = .sdata:0x803ECF10; // type:object size:0x4 scope:local align:4 +@770 = .sdata:0x803ECF14; // type:object size:0x4 scope:local align:4 +@1302 = .sdata:0x803ECF18; // type:object size:0x7 scope:local align:4 data:string +@1303 = .sdata:0x803ECF20; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803ECF28; // type:object size:0x7 scope:local align:4 data:string +@1306 = .sdata:0x803ECF30; // type:object size:0x7 scope:local align:4 data:string +@1307 = .sdata:0x803ECF38; // type:object size:0x7 scope:local align:4 data:string +@1309 = .sdata:0x803ECF40; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803ECF48; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803ECF50; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803ECF58; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803ECF5C; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803ECF60; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803ECF64; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803ECF68; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803ECF6C; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803ECF70; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803ECF74; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803ECF78; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803ECF7C; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803ECF80; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803ECF84; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803ECF88; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803ECF8C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803ECF90; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803ECF94; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803ECF98; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803ECFA0; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803ECFA8; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803ECFB0; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803ECFB8; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803ECFBC; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803ECFC0; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803ECFC4; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803ECFC8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803ECFCC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803ECFD0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803ECFD4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803ECFD8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ECFDC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803ECFE4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ECFEC; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ECFF4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803ECFFC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED004; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803ED00C; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803ED014; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803ED01C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED024; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803ED02C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803ED034; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803ED03C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED044; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803ED04C; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803ED054; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803ED05C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803ED064; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803ED06C; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803ED074; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803ED07C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803ED084; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803ED08C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803ED094; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803ED09C; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803ED0A4; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803ED0AC; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803ED0B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED0BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED0C4; // type:object size:0x8 scope:local align:4 +@3889 = .sdata:0x803ED0CC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED0D4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED0DC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803ED0E4; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803ED0F0; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803ED0F4; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803ED0F8; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803ED0FC; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803ED100; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803ED104; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803ED10C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803ED114; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803ED11C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803ED124; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803ED130; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803ED134; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803ED138; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803ED13C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803ED140; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803ED144; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ED148; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803ED150; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED158; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803ED160; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803ED168; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803ED170; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803ED178; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803ED180; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED188; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803ED190; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803ED198; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803ED1A0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED1A8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803ED1B0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED1B8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED1C0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803ED1C8; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803ED1D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED1D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED1E0; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803ED1E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED1F0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED1F8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803ED200; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803ED208; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803ED20C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803ED210; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803ED214; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803ED218; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803ED21C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ED220; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803ED228; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED230; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803ED238; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803ED240; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803ED248; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED250; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803ED258; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803ED260; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803ED268; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803ED270; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED278; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED280; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED288; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803ED290; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803ED298; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED2A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED2A8; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803ED2B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED2B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED2C0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803ED2C8; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803ED2D0; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803ED2D4; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803ED2D8; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803ED2DC; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803ED2E0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803ED2E4; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803ED2E8; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803ED2EC; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803ED2F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ED2F4; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803ED2FC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED304; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803ED30C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803ED314; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803ED31C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED324; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803ED32C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803ED334; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803ED33C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803ED344; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803ED34C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803ED354; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803ED35C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803ED364; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803ED36C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803ED374; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803ED37C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803ED384; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803ED38C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803ED394; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803ED39C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803ED3A4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803ED3AC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803ED3B4; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED3BC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED3C4; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED3CC; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803ED3D4; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803ED3DC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED3E4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED3EC; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803ED3F4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED3FC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED404; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803ED40C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803ED418; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803ED420; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED428; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803ED430; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED438; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803ED440; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803ED448; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803ED450; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803ED458; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED460; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED468; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803ED470; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803ED478; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED480; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED488; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803ED490; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED498; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED4A0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803ED4A8; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803ED4B0; // type:object size:0x4 scope:local align:4 +@1854 = .sdata:0x803ED4B4; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803ED4B8; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803ED4BC; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803ED4C0; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803ED4C4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803ED4C8; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803ED4CC; // type:object size:0x4 scope:local align:4 data:float +@2444 = .sdata:0x803ED4D0; // type:object size:0x4 scope:local align:4 data:float +@2447 = .sdata:0x803ED4D4; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803ED4D8; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata:0x803ED4DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ED4E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803ED4E8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED4F0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED4F8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803ED500; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED508; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803ED510; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803ED518; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED520; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803ED528; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803ED530; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803ED538; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803ED540; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803ED548; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803ED550; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803ED558; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803ED560; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED568; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803ED570; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803ED578; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803ED580; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803ED588; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803ED590; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803ED598; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803ED5A0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803ED5A8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803ED5B0; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803ED5B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED5C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED5C8; // type:object size:0x8 scope:local align:4 +@3573 = .sdata:0x803ED5D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED5D8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED5E0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803ED5E8; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803ED5F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803ED5F4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803ED5FC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED604; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED60C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803ED614; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED61C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED624; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803ED62C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803ED634; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803ED63C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803ED644; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803ED64C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED654; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED65C; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803ED664; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED66C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED674; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803ED67C; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803ED684; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803ED68C; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803ED698; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803ED69C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803ED6A4; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803ED6B0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803ED6B8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803ED6C0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803ED6C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803ED6D0; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803ED6D8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803ED6E0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803ED6E8; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803ED6F0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803ED6F8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803ED700; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803ED708; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803ED710; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803ED718; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803ED720; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803ED728; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803ED730; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803ED738; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803ED740; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803ED748; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803ED750; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803ED758; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803ED760; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803ED768; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803ED770; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803ED778; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803ED780; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803ED788; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803ED790; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803ED798; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803ED7A0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803ED7A8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803ED7B0; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803ED7B8; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803ED7C0; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803ED7C8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803ED7D0; // type:object size:0x8 scope:local align:4 +@3760 = .sdata:0x803ED7D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803ED7E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803ED7E8; // type:object size:0x8 scope:local align:4 +@3763 = .sdata:0x803ED7F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803ED7F8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803ED800; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803ED808; // type:object size:0x8 scope:local align:4 +@920 = .sdata:0x803ED810; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803ED818; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803ED820; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803ED828; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803ED82C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803ED830; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803ED834; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803ED838; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803ED83C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803ED840; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803ED844; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803ED848; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803ED84C; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803ED850; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803ED854; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803ED858; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803ED85C; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803ED860; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803ED864; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803ED868; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803ED86C; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803ED870; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803ED874; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803ED878; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803ED87C; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803ED880; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803ED884; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803ED888; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803ED88C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803ED890; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803ED894; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803ED898; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803ED89C; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803ED8A0; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803ED8A4; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803ED8A8; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803ED8AC; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803ED8B0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803ED8B4; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803ED8B8; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803ED8BC; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803ED8C0; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803ED8C4; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803ED8C8; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803ED8CC; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803ED8D0; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803ED8D4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803ED8D8; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803ED8DC; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803ED8E0; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803ED8E4; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803ED8E8; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803ED8EC; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803ED8F0; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803ED8F4; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803ED8F8; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803ED8FC; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803ED900; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803ED904; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803ED908; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803ED90C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803ED910; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803ED914; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803ED918; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803ED91C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803ED920; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803ED924; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803ED928; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803ED92C; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803ED930; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803ED934; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803ED938; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803ED93C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803ED940; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803ED944; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803ED948; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803ED94C; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803ED950; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803ED954; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803ED958; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803ED95C; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803ED960; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803ED964; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803ED968; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803ED96C; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803ED970; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803ED974; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803ED978; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803ED97C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803ED980; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803ED984; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803ED988; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803ED98C; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803ED990; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803ED994; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803ED998; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803ED99C; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803ED9A0; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803ED9A4; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803ED9A8; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803ED9AC; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803ED9B0; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803ED9B4; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803ED9B8; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803ED9C0; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803ED9C8; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803ED9D0; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803ED9D8; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803ED9E0; // type:object size:0x7 scope:local align:4 data:string +@2819 = .sdata:0x803ED9E8; // type:object size:0x7 scope:local align:4 data:string +@2821 = .sdata:0x803ED9F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803ED9F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EDA00; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EDA08; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EDA10; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EDA18; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803EDA20; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803EDA28; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803EDA30; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803EDA38; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EDA40; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803EDA48; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803EDA4C; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803EDA50; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803EDA54; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803EDA58; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EDA60; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803EDA64; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803EDA68; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803EDA6C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803EDA70; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803EDA74; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EDA78; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803EDA80; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EDA88; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EDA90; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803EDA98; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EDAA0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EDAA8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803EDAB0; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803EDAB8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDAC0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDAC8; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803EDAD0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EDAD8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EDAE0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803EDAE8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EDAF0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803EDAF8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EDB00; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EDB08; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803EDB10; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EDB18; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803EDB20; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803EDB28; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803EDB30; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EDB38; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803EDB40; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EDB48; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EDB50; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803EDB58; // type:object size:0x8 scope:local align:4 +@2667 = .sdata:0x803EDB60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EDB68; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EDB70; // type:object size:0x8 scope:local align:4 +@2670 = .sdata:0x803EDB78; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EDB80; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EDB88; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803EDB90; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803EDB98; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803EDB9C; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803EDBA0; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803EDBA4; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803EDBA8; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803EDBAC; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803EDBB0; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803EDBB4; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803EDBB8; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803EDBBC; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803EDBC0; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803EDBC4; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803EDBC8; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803EDBD0; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803EDBD4; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803EDBD8; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803EDBDC; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803EDBE0; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803EDBE4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803EDBE8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803EDBEC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803EDBF0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803EDBF4; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803EDBF8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803EDBFC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803EDC00; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803EDC04; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803EDC08; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803EDC0C; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803EDC10; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EDC14; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EDC18; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803EDC1C; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803EDC20; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803EDC24; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803EDC28; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803EDC2C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803EDC30; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803EDC38; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803EDC40; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803EDC48; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803EDC50; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803EDC54; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803EDC5C; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803EDC64; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803EDC6C; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803EDC74; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803EDC78; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803EDC80; // type:object size:0x6 scope:local align:4 data:string +@1277 = .sdata:0x803EDC88; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803EDC8C; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803EDC90; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803EDC94; // type:object size:0x4 scope:local align:4 data:float +@1289 = .sdata:0x803EDC98; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EDC9C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803EDCA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803EDCAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EDCB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EDCBC; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EDCC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EDCCC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EDCD4; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EDCE0; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803EDCE8; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803EDCF0; // type:object size:0x7 scope:local align:4 data:string +@771 = .sdata:0x803EDCF8; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803EDD00; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803EDD04; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803EDD0C; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803EDD18; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803EDD20; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803EDD28; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803EDD30; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803EDD38; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803EDD40; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803EDD48; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803EDD50; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803EDD58; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803EDD60; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803EDD68; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803EDD70; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803EDD78; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803EDD80; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803EDD88; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803EDD90; // type:object size:0x4 scope:local align:4 data:4byte +@31 = .sdata:0x803EDD98; // type:object size:0x2 scope:local align:4 data:string +fontEncode$55 = .sdata:0x803EDDA0; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803EDDA8; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803EDDB0; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803EDDB8; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803EDDC0; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803EDDC8; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803EDDD0; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803EDDD4; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803EDDD8; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803EDDE0; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803EDDE8; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803EDDEC; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803EDDF0; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803EDDF4; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803EDDF8; // type:object size:0x4 scope:local align:4 data:4byte +cmdReadOrigin = .sdata:0x803EDDFC; // type:object size:0x4 scope:local align:4 +cmdCalibrate = .sdata:0x803EDE00; // type:object size:0x4 scope:local align:4 +@413 = .sdata:0x803EDE04; // type:object size:0x6 scope:local align:4 data:string +Chan = .sdata:0x803EDE10; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803EDE18; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$208 = .sdata:0x803EDE20; // type:object size:0x4 scope:local align:4 +tbl2$209 = .sdata:0x803EDE24; // type:object size:0x4 scope:local align:4 +tbl3$210 = .sdata:0x803EDE28; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803EDE30; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803EDE38; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803EDE40; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803EDE48; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803EDE50; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803EDE58; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803EDE60; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803EDE68; // type:object size:0x6 scope:local align:4 +fragmentID = .sdata:0x803EDE70; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803EDE78; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803EDE80; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803EDE88; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803EDE90; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803EDE94; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803EDE98; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803EDEA0; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803EDEA8; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803EDEC0; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803EDEC4; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803EDEC8; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803EDECC; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803EDED0; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803EDED4; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803EDED8; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803EDEDC; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803EDEE0; // type:object size:0x1 scope:local align:1 data:byte +dacp$240 = .sbss:0x803EDEE4; // type:object size:0x4 scope:local align:4 data:4byte +init$241 = .sbss:0x803EDEE8; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803EDEF0; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803EDEF4; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803EDEF8; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803EDEFC; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803EDF00; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803EDF04; // type:object size:0x4 scope:local align:4 data:4byte +first$70 = .sbss:0x803EDF08; // type:object size:0x4 scope:local align:4 data:4byte +init$71 = .sbss:0x803EDF0C; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803EDF10; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803EDF14; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803EDF18; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803EDF1C; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803EDF20; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803EDF21; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803EDF22; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803EDF24; // type:object size:0x4 scope:local align:4 data:4byte +cur$194 = .sbss:0x803EDF28; // type:object size:0x4 scope:local align:4 data:4byte +init$195 = .sbss:0x803EDF2C; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803EDF30; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803EDF31; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803EDF32; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803EDF38; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803EDF3C; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803EDF40; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803EDF44; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803EDF48; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803EDF4C; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803EDF50; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803EDF54; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803EDF5C; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803EDF60; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803EDF64; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803EDF6C; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803EDF70; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$223 = .sbss:0x803EDF74; // type:object size:0x4 scope:local align:4 data:4byte +init$224 = .sbss:0x803EDF78; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803EDF7C; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803EDF80; // type:object size:0x4 scope:global align:4 data:4byte +TASK_READPTR = .sbss:0x803EDF88; // type:object size:0x1 scope:local align:1 data:byte +TASK_WRITEPTR = .sbss:0x803EDF89; // type:object size:0x1 scope:local align:1 data:byte +TASK_REMAIN = .sbss:0x803EDF8A; // type:object size:0x1 scope:local align:1 data:byte +cur_waits = .sbss:0x803EDF90; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803EDF94; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803EDF98; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803EDFA0; // type:object size:0x4 scope:local align:4 data:4byte +inited$64 = .sbss:0x803EDFA8; // type:object size:0x4 scope:local align:4 data:4byte +init$65 = .sbss:0x803EDFAC; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803EDFB0; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803EDFB4; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803EDFB8; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803EDFC0; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803EDFC8; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803EDFD0; // type:object size:0x4 scope:local align:4 data:4byte +first$164 = .sbss:0x803EDFD4; // type:object size:0x4 scope:local align:4 data:4byte +init$165 = .sbss:0x803EDFD8; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803EDFE0; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803EDFE8; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803EDFEC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803EDFF0; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803EDFF4; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803EDFF8; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803EDFFC; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803EE000; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803EE008; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803EE00C; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803EE010; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803EE014; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803EE018; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803EE01C; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803EE020; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803EE024; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803EE028; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803EE02C; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803EE030; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803EE038; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803EE040; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803EE044; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803EE048; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803EE050; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803EE054; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803EE058; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803EE059; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803EE05A; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803EE05C; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803EE060; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803EE064; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803EE068; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803EE06C; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803EE06D; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803EE070; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803EE074; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803EE078; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803EE07C; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803EE07E; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803EE080; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803EE082; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803EE084; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803EE086; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803EE088; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803EE08C; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803EE090; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803EE094; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803EE098; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803EE09C; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803EE0A0; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803EE0A4; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803EE0A8; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803EE0AC; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803EE0B0; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803EE0B8; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803EE0BC; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803EE0C0; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803EE0C4; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803EE0C8; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803EE0CC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803EE0D0; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803EE0D4; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803EE0D8; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803EE0DC; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803EE0E0; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803EE0E4; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803EE0E8; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803EE0F0; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803EE0F4; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803EE0F8; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803EE0FC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803EE100; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803EE104; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803EE108; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803EE10C; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803EE10D; // type:object size:0x1 scope:local align:1 data:byte +demo_parts_num = .sbss:0x803EE10E; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803EE10F; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803EE110; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803EE118; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803EE120; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803EE128; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803EE12C; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803EE130; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803EE134; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803EE138; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803EE13C; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803EE140; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803EE144; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803EE148; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803EE14C; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803EE154; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803EE158; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803EE15C; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803EE160; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803EE164; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803EE168; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803EE16C; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803EE170; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803EE174; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803EE178; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803EE180; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803EE184; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803EE188; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803EE18C; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803EE190; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803EE198; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803EE1A0; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803EE1A8; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803EE1AC; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803EE1B0; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803EE1B4; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803EE1B8; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803EE1BC; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803EE1C0; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803EE1C4; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803EE1C8; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803EE1CC; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803EE1D0; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803EE1D4; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803EE1D8; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803EE1DC; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803EE1E0; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803EE1E4; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803EE1E8; // type:object size:0x4 scope:local align:4 data:4byte +gfx__11DGXGraphics = .sbss:0x803EE1EC; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803EE1F0; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803EE1F1; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803EE1F2; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803EE1F8; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803EE1FC; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803EE200; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803EE208; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803EE20C; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803EE210; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803EE214; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803EE218; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803EE21C; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803EE220; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803EE224; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803EE228; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803EE22C; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803EE230; // type:object size:0x4 scope:local align:4 data:4byte +memcardWindow = .sbss:0x803EE234; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803EE238; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803EE239; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803EE23A; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803EE23C; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803EE240; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803EE244; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803EE245; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803EE248; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803EE250; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803EE254; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803EE258; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803EE25C; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803EE260; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803EE264; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803EE268; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803EE270; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803EE274; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803EE278; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803EE27C; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803EE280; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803EE284; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE288; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE28C; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE290; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE294; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE298; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE29C; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE2A0; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE2A4; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE2A8; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803EE2AC; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803EE2B0; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803EE2B8; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803EE2BC; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803EE2C0; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803EE2C4; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803EE2C8; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803EE2D0; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803EE2D2; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803EE2D4; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803EE2D8; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803EE2E0; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803EE2E8; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803EE2EC; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803EE2F0; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803EE2F4; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803EE2F8; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803EE2FC; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803EE300; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803EE308; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803EE30C; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803EE310; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803EE314; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803EE318; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803EE31C; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803EE320; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803EE324; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803EE328; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803EE330; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803EE338; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803EE340; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803EE344; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803EE348; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803EE350; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803EE358; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803EE359; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803EE35C; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803EE360; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803EE361; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803EE362; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803EE363; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803EE364; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803EE368; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803EE36C; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803EE370; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803EE374; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803EE378; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803EE37C; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803EE380; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803EE384; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803EE388; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803EE38C; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803EE390; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803EE394; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803EE398; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803EE39C; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803EE3A0; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803EE3A8; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803EE3AC; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803EE3B0; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803EE3B8; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803EE3C0; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803EE3C4; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803EE3C8; // type:object size:0x1 scope:global align:1 data:byte +count$1860 = .sbss:0x803EE3CC; // type:object size:0x4 scope:local align:4 data:4byte +init$1861 = .sbss:0x803EE3D0; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803EE3D4; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803EE3D8; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803EE3E0; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803EE3E4; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803EE3E8; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803EE3F0; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803EE3F8; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803EE3FC; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803EE400; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803EE404; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803EE408; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803EE410; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803EE418; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803EE420; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803EE424; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803EE425; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803EE426; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803EE427; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803EE428; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803EE42C; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803EE430; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803EE434; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803EE438; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803EE43C; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803EE440; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803EE444; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803EE448; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803EE44C; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803EE450; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803EE458; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803EE460; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803EE464; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803EE468; // type:object size:0x4 scope:local align:4 data:float +ang$5660 = .sbss:0x803EE46C; // type:object size:0x4 scope:local align:4 data:float +init$5661 = .sbss:0x803EE470; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803EE478; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803EE479; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803EE47C; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803EE480; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803EE484; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803EE488; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803EE48C; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803EE490; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803EE494; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803EE498; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803EE49C; // type:object size:0x4 scope:global align:4 data:4byte +timer$4155 = .sbss:0x803EE4A0; // type:object size:0x4 scope:local align:4 data:4byte +init$4156 = .sbss:0x803EE4A4; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803EE4A8; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803EE4AC; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803EE4B0; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803EE4B4; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803EE4B8; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803EE4BC; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803EE4C0; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803EE4C8; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803EE4CC; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803EE4D0; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803EE4D8; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803EE4E0; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803EE4E4; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803EE4E5; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803EE4E8; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803EE4F0; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803EE4F8; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803EE500; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803EE508; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803EE510; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803EE518; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803EE520; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803EE528; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803EE52C; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803EE530; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803EE538; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803EE540; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803EE548; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803EE54C; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803EE550; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803EE554; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803EE558; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803EE560; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803EE564; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803EE568; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803EE570; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803EE578; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803EE580; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803EE584; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803EE588; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803EE58C; // type:object size:0x4 scope:local align:4 data:4byte +AlarmQueue = .sbss:0x803EE590; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803EE598; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803EE59C; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803EE5A0; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803EE5A4; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803EE5A8; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803EE5B0; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803EE5B8; // type:object size:0x4 scope:global align:4 data:4byte +ResetFunctionQueue = .sbss:0x803EE5C0; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803EE5C8; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803EE5CC; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803EE5D0; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803EE5D8; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803EE5E0; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x803EE5E8; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803EE5EC; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803EE5F0; // type:object size:0x4 scope:local align:4 data:4byte +serEnabled = .sbss:0x803EE5F8; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803EE600; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803EE604; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803EE608; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803EE60C; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803EE610; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803EE614; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803EE618; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803EE620; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803EE624; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803EE628; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803EE62C; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803EE630; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803EE638; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803EE640; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803EE648; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803EE64C; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803EE650; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803EE654; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803EE658; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803EE65C; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803EE660; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803EE664; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803EE668; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803EE670; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803EE674; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803EE678; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803EE67C; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803EE680; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803EE684; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803EE688; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803EE68C; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803EE690; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803EE694; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803EE698; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803EE69C; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803EE6A0; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803EE6A4; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803EE6A8; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803EE6AC; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803EE6B0; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803EE6B4; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803EE6B8; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803EE6BC; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803EE6C0; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803EE6C8; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803EE6CC; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803EE6D0; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803EE6D8; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803EE6DC; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803EE6E0; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803EE6E4; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803EE6E6; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x803EE6E8; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x803EE6F0; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x803EE6F8; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x803EE700; // type:object size:0x8 scope:local align:8 data:4byte +FBSet = .sbss:0x803EE708; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803EE710; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803EE714; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803EE718; // type:object size:0x4 scope:local align:4 data:4byte +ProbingBits = .sbss:0x803EE71C; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803EE720; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803EE724; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803EE728; // type:object size:0x4 scope:local align:4 data:4byte +cmdTypeAndStatus = .sbss:0x803EE72C; // type:object size:0x4 scope:local align:4 +recalibrated$595 = .sbss:0x803EE730; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803EE734; // type:object size:0x4 scope:global align:4 data:4byte +__PADFixBits = .sbss:0x803EE738; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803EE740; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803EE744; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803EE748; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803EE74C; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803EE750; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803EE758; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803EE760; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803EE768; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803EE770; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803EE778; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803EE780; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803EE784; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803EE788; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803EE78C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803EE790; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803EE794; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803EE798; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803EE79C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803EE7A0; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803EE7A4; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803EE7A8; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803EE7AC; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803EE7B0; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803EE7B4; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803EE7B8; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803EE7BC; // type:object size:0x4 scope:local align:4 data:4byte +__CARDDiskID = .sbss:0x803EE7C0; // type:object size:0x4 scope:global align:4 data:4byte +ExiCallback = .sbss:0x803EE7C8; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803EE7CC; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803EE7D0; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803EE7D8; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803EE7DC; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803EE7E0; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803EE7E4; // type:object size:0x4 scope:global align:4 data:4byte +__GXCurrentThread = .sbss:0x803EE7E8; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803EE7EC; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803EE7F0; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803EE7F4; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803EE7F8; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803EE7FC; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803EE800; // type:object size:0x4 scope:global align:4 data:4byte +TokenCB = .sbss:0x803EE808; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803EE80C; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803EE810; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803EE814; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803EE820; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803EE828; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803EE830; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803EE834; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803EE838; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803EE83C; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803EE840; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803EE848; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803EE850; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803EE858; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803EE85C; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803EE860; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803EE868; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803EE86C; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803EE870; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803EE874; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803EE878; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803EE87C; // type:object size:0x1 scope:local align:1 data:byte +@225 = .sdata2:0x803EE880; // type:object size:0x7 scope:local align:4 data:string +@226 = .sdata2:0x803EE888; // type:object size:0x7 scope:local align:4 data:string +@103 = .sdata2:0x803EE890; // type:object size:0x8 scope:local align:4 data:string +@32 = .sdata2:0x803EE898; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x803EE8A0; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x803EE8A8; // type:object size:0x7 scope:local align:4 data:string +@79 = .sdata2:0x803EE8B0; // type:object size:0x4 scope:local align:4 data:float +@52 = .sdata2:0x803EE8B8; // type:object size:0x4 scope:local align:4 data:float +@202 = .sdata2:0x803EE8BC; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803EE8C0; // type:object size:0x4 scope:local align:4 data:float +@216 = .sdata2:0x803EE8C4; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x803EE8C8; // type:object size:0x4 scope:local align:4 data:float +@346 = .sdata2:0x803EE8D0; // type:object size:0x8 scope:local align:8 data:double +@262 = .sdata2:0x803EE8D8; // type:object size:0x4 scope:local align:4 data:float +@264 = .sdata2:0x803EE8E0; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x803EE8E8; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803EE8EC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803EE8F0; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x803EE8F8; // type:object size:0x8 scope:local align:8 data:double +@196 = .sdata2:0x803EE900; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803EE904; // type:object size:0x4 scope:local align:4 data:float +@198 = .sdata2:0x803EE908; // type:object size:0x4 scope:local align:4 data:float +@199 = .sdata2:0x803EE90C; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803EE910; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803EE918; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803EE920; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803EE928; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803EE930; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EE938; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803EE93C; // type:object size:0x4 scope:local align:4 data:float +@124 = .sdata2:0x803EE940; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803EE948; // type:object size:0x4 scope:local align:4 data:float +@58 = .sdata2:0x803EE950; // type:object size:0x2 scope:local align:4 data:string +@116 = .sdata2:0x803EE958; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803EE95C; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x803EE960; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803EE968; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x803EE970; // type:object size:0x4 scope:local align:4 data:float +@147 = .sdata2:0x803EE974; // type:object size:0x4 scope:local align:4 data:float +@148 = .sdata2:0x803EE978; // type:object size:0x4 scope:local align:4 data:float +@530 = .sdata2:0x803EE97C; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata2:0x803EE980; // type:object size:0x4 scope:local align:4 data:float +@730 = .sdata2:0x803EE984; // type:object size:0x4 scope:local align:4 data:float +@731 = .sdata2:0x803EE988; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EE98C; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803EE990; // type:object size:0x7 scope:local align:4 data:4byte +@1027 = .sdata2:0x803EE998; // type:object size:0x7 scope:local align:4 data:4byte +@146 = .sdata2:0x803EE9A0; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803EE9A8; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803EE9AC; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803EE9B0; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803EE9B8; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803EE9BC; // type:object size:0x4 scope:local align:4 data:float +@72 = .sdata2:0x803EE9C0; // type:object size:0x4 scope:local align:4 data:float +@73 = .sdata2:0x803EE9C4; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803EE9C8; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x803EE9D0; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803EE9D8; // type:object size:0x4 scope:local align:4 data:float +@65 = .sdata2:0x803EE9DC; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803EE9E0; // type:object size:0x4 scope:local align:4 data:float +@310 = .sdata2:0x803EE9E8; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x803EE9F0; // type:object size:0x4 scope:local align:4 data:float +@558 = .sdata2:0x803EE9F8; // type:object size:0x8 scope:local align:8 data:double +@570 = .sdata2:0x803EEA00; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803EEA08; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803EEA0C; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803EEA10; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803EEA14; // type:object size:0x4 scope:local align:4 data:float +@151 = .sdata2:0x803EEA18; // type:object size:0x4 scope:local align:4 data:float +@152 = .sdata2:0x803EEA1C; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x803EEA20; // type:object size:0x4 scope:local align:4 data:float +@154 = .sdata2:0x803EEA24; // type:object size:0x4 scope:local align:4 data:float +@155 = .sdata2:0x803EEA28; // type:object size:0x4 scope:local align:4 data:float +@156 = .sdata2:0x803EEA2C; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803EEA30; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803EEA38; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803EEA40; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803EEA44; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803EEA48; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803EEA50; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803EEA54; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803EEA58; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803EEA60; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x803EEA68; // type:object size:0x4 scope:local align:4 data:float +@328 = .sdata2:0x803EEA6C; // type:object size:0x4 scope:local align:4 data:float +@329 = .sdata2:0x803EEA70; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EEA74; // type:object size:0x4 scope:local align:4 data:float +@513 = .sdata2:0x803EEA78; // type:object size:0x4 scope:local align:4 data:float +@79 = .sdata2:0x803EEA80; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803EEA88; // type:object size:0x4 scope:local align:4 data:float +@315 = .sdata2:0x803EEA8C; // type:object size:0x4 scope:local align:4 data:float +@317 = .sdata2:0x803EEA90; // type:object size:0x8 scope:local align:8 data:double +@513 = .sdata2:0x803EEA98; // type:object size:0x4 scope:local align:4 data:float +@307 = .sdata2:0x803EEAA0; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803EEAA8; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803EEAAC; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EEAB0; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803EEAB8; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803EEABC; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803EEAC0; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803EEAC4; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803EEAC8; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EEACC; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803EEAD0; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EEAD8; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803EEAE0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803EEAE4; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x803EEAE8; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803EEAF0; // type:object size:0x8 scope:local align:8 data:double +@1659 = .sdata2:0x803EEAF8; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803EEAFC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EEB00; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EEB04; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803EEB08; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EEB10; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803EEB14; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803EEB18; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803EEB1C; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EEB20; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803EEB24; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803EEB28; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803EEB2C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803EEB30; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803EEB34; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803EEB38; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803EEB3C; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803EEB40; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803EEB44; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803EEB48; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803EEB4C; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803EEB50; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803EEB54; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803EEB58; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803EEB5C; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EEB60; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803EEB64; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EEB68; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EEB6C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EEB70; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EEB74; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EEB78; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803EEB7C; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803EEB80; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803EEB84; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803EEB88; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803EEB8C; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803EEB90; // type:object size:0x4 scope:local align:4 data:float +@2478 = .sdata2:0x803EEB94; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata2:0x803EEB98; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x803EEB9C; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x803EEBA0; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x803EEBA4; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x803EEBA8; // type:object size:0x8 scope:local align:8 data:double +@3582 = .sdata2:0x803EEBB0; // type:object size:0x8 scope:local align:8 data:double +@4427 = .sdata2:0x803EEBB8; // type:object size:0x8 scope:local align:4 data:4byte +@4492 = .sdata2:0x803EEBC0; // type:object size:0x8 scope:local align:8 data:double +@4493 = .sdata2:0x803EEBC8; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EEBD0; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803EEBD8; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EEBE0; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803EEBE8; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803EEBF0; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803EEBF4; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803EEBF8; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803EEBFC; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803EEC00; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EEC04; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803EEC08; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803EEC0C; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EEC10; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803EEC18; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803EEC20; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803EEC24; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803EEC28; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EEC2C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EEC30; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EEC38; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803EEC40; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803EEC48; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803EEC50; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803EEC58; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803EEC5C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803EEC60; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803EEC64; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803EEC68; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803EEC70; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803EEC74; // type:object size:0x4 scope:local align:4 data:float +@414 = .sdata2:0x803EEC78; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803EEC80; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803EEC88; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803EEC8C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803EEC90; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803EEC94; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803EEC98; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803EECA0; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803EECA8; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803EECAC; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EECB0; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803EECB8; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803EECC0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803EECC4; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803EECC8; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EECCC; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EECD0; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803EECD8; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803EECE0; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata2:0x803EECE8; // type:object size:0x8 scope:local align:8 data:double +@695 = .sdata2:0x803EECF0; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x803EECF8; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EECFC; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EED00; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EED08; // type:object size:0x8 scope:local align:8 data:double +@723 = .sdata2:0x803EED10; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803EED18; // type:object size:0x8 scope:local align:8 data:double +@726 = .sdata2:0x803EED20; // type:object size:0x4 scope:local align:4 data:float +@727 = .sdata2:0x803EED24; // type:object size:0x4 scope:local align:4 data:float +@874 = .sdata2:0x803EED28; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803EED2C; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803EED30; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata2:0x803EED34; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803EED38; // type:object size:0x8 scope:local align:8 data:double +@1304 = .sdata2:0x803EED40; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803EED48; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EED4C; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803EED50; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803EED54; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EED58; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803EED5C; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803EED60; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803EED64; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803EED68; // type:object size:0x8 scope:local align:8 data:double +@1262 = .sdata2:0x803EED70; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EED78; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EED7C; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EED80; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EED84; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803EED88; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803EED90; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803EED98; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EED9C; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803EEDA0; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803EEDA4; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata2:0x803EEDA8; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803EEDAC; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EEDB0; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803EEDB4; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata2:0x803EEDB8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EEDBC; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803EEDC0; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x803EEDC4; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x803EEDC8; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x803EEDCC; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EEDD0; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EEDD8; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EEDDC; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803EEDE0; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803EEDE4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803EEDE8; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803EEDEC; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata2:0x803EEDF0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EEDF8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EEDFC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EEE00; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EEE04; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EEE08; // type:object size:0x4 scope:local align:4 data:float +@2282 = .sdata2:0x803EEE0C; // type:object size:0x4 scope:local align:4 data:float +@2283 = .sdata2:0x803EEE10; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803EEE14; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803EEE18; // type:object size:0x4 scope:local align:4 data:float +@2426 = .sdata2:0x803EEE1C; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803EEE20; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803EEE24; // type:object size:0x4 scope:local align:4 data:float +@3087 = .sdata2:0x803EEE28; // type:object size:0x4 scope:local align:4 data:float +@3089 = .sdata2:0x803EEE2C; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803EEE30; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803EEE34; // type:object size:0x4 scope:local align:4 data:float +@3099 = .sdata2:0x803EEE38; // type:object size:0x4 scope:local align:4 data:float +@3100 = .sdata2:0x803EEE3C; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata2:0x803EEE40; // type:object size:0x4 scope:local align:4 data:float +@3347 = .sdata2:0x803EEE44; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803EEE48; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x803EEE4C; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x803EEE50; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x803EEE58; // type:object size:0x8 scope:local align:8 data:double +@1300 = .sdata2:0x803EEE60; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x803EEE64; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EEE68; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata2:0x803EEE6C; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EEE70; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803EEE78; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803EEE80; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803EEE84; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803EEE88; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803EEE8C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803EEE90; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803EEE94; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EEE98; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EEE9C; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803EEEA0; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata2:0x803EEEA4; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803EEEA8; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803EEEB0; // type:object size:0x8 scope:local align:8 data:double +@809 = .sdata2:0x803EEEB8; // type:object size:0x4 scope:local align:4 data:float +@810 = .sdata2:0x803EEEBC; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803EEEC0; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803EEEC4; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EEEC8; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EEECC; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EEED0; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EEED4; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EEED8; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EEEDC; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EEEE0; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EEEE4; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803EEEE8; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803EEEEC; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803EEEF0; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803EEEF4; // type:object size:0x4 scope:local align:4 data:float +@1171 = .sdata2:0x803EEEF8; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803EEF00; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EEF04; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EEF08; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803EEF0C; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EEF10; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803EEF14; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803EEF18; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EEF1C; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EEF20; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EEF24; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803EEF28; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803EEF2C; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803EEF30; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803EEF38; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803EEF40; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803EEF44; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803EEF48; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803EEF50; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803EEF54; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EEF58; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803EEF5C; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EEF60; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EEF64; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EEF68; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EEF6C; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803EEF70; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EEF74; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EEF78; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803EEF80; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803EEF84; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EEF88; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803EEF8C; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803EEF90; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EEF94; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EEF98; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EEF9C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EEFA0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EEFA4; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EEFA8; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803EEFAC; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803EEFB0; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803EEFB4; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803EEFB8; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EEFBC; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803EEFC0; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803EEFC4; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803EEFC8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803EEFD0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803EEFD4; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803EEFD8; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803EEFE0; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803EEFE8; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803EEFEC; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EEFF0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EEFF4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803EEFF8; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EEFFC; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803EF000; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803EF004; // type:object size:0x4 scope:local align:4 data:float +@2499 = .sdata2:0x803EF008; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EF00C; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EF010; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x803EF014; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803EF018; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803EF01C; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x803EF020; // type:object size:0x4 scope:local align:4 data:float +@3268 = .sdata2:0x803EF024; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803EF028; // type:object size:0x8 scope:local align:8 data:double +@3487 = .sdata2:0x803EF030; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x803EF034; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803EF038; // type:object size:0x8 scope:local align:8 data:double +@3789 = .sdata2:0x803EF040; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803EF044; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x803EF048; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x803EF04C; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x803EF050; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x803EF054; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x803EF058; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x803EF05C; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x803EF060; // type:object size:0x4 scope:local align:4 data:float +@4393 = .sdata2:0x803EF064; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x803EF068; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x803EF06C; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x803EF070; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EF078; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803EF07C; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803EF080; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803EF084; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803EF088; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803EF08C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803EF090; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803EF094; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803EF098; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803EF0A0; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803EF0A8; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803EF0AC; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803EF0B0; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803EF0B4; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803EF0B8; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803EF0BC; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803EF0C0; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803EF0C4; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803EF0C8; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803EF0D0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803EF0D4; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EF0D8; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803EF0E0; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803EF0E8; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803EF0EC; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x803EF0F0; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803EF0F4; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803EF0F8; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803EF0FC; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803EF100; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803EF104; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803EF108; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803EF10C; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803EF110; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803EF118; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803EF11C; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EF120; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803EF128; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803EF12C; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EF130; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata2:0x803EF134; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata2:0x803EF138; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EF13C; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EF140; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EF148; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803EF150; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803EF154; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803EF158; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803EF15C; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803EF160; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803EF164; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EF168; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EF170; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EF174; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EF178; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EF17C; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803EF180; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803EF188; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803EF190; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803EF198; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803EF1A0; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803EF1A4; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803EF1A8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EF1AC; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803EF1B0; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803EF1B4; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803EF1B8; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EF1BC; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803EF1C0; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EF1C4; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803EF1C8; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803EF1CC; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803EF1D0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EF1D4; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EF1D8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EF1E0; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EF1E4; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EF1E8; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803EF1F0; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata2:0x803EF1F4; // type:object size:0x4 scope:local align:4 data:float +@1194 = .sdata2:0x803EF1F8; // type:object size:0x4 scope:local align:4 data:float +@1196 = .sdata2:0x803EF1FC; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EF200; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EF208; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata2:0x803EF20C; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EF210; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EF214; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EF218; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EF21C; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EF220; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EF224; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803EF228; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EF22C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803EF230; // type:object size:0x8 scope:local align:8 data:double +@1600 = .sdata2:0x803EF238; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803EF240; // type:object size:0x8 scope:local align:8 data:double +@1602 = .sdata2:0x803EF248; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803EF250; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EF254; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EF258; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EF25C; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata2:0x803EF260; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803EF264; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EF268; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803EF26C; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803EF270; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EF274; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803EF278; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803EF27C; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata2:0x803EF280; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803EF284; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803EF288; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EF28C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803EF290; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803EF298; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803EF2A0; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EF2A4; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803EF2A8; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803EF2AC; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803EF2B0; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EF2B4; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803EF2B8; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EF2C0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EF2C8; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803EF2D0; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803EF2D8; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803EF2DC; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EF2E0; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803EF2E4; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803EF2E8; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata2:0x803EF2EC; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata2:0x803EF2F0; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803EF2F8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803EF2FC; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803EF300; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803EF308; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803EF310; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EF314; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EF318; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EF31C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EF320; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EF324; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EF328; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803EF32C; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EF330; // type:object size:0x4 scope:local align:4 data:float +@2502 = .sdata2:0x803EF334; // type:object size:0x4 scope:local align:4 data:float +@2503 = .sdata2:0x803EF338; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x803EF33C; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x803EF340; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata2:0x803EF344; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EF348; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EF34C; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803EF350; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EF358; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EF35C; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803EF360; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803EF364; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EF368; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803EF36C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803EF370; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803EF374; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803EF378; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EF37C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EF380; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EF384; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EF388; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EF38C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EF390; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EF394; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EF398; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EF3A0; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803EF3A8; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803EF3AC; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803EF3B0; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803EF3B8; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EF3C0; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803EF3C8; // type:object size:0x8 scope:local align:8 data:double +@1455 = .sdata2:0x803EF3D0; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EF3D4; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803EF3D8; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata2:0x803EF3DC; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803EF3E0; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EF3E4; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803EF3E8; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EF3EC; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EF3F0; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803EF3F4; // type:object size:0x4 scope:local align:4 data:float +@1331 = .sdata2:0x803EF3F8; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata2:0x803EF3FC; // type:object size:0x4 scope:local align:4 data:float +@1333 = .sdata2:0x803EF400; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803EF404; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata2:0x803EF408; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803EF410; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803EF414; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EF418; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EF41C; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803EF420; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803EF424; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EF428; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803EF42C; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EF430; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EF434; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803EF438; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EF43C; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803EF440; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EF444; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803EF448; // type:object size:0x8 scope:local align:8 data:double +@1438 = .sdata2:0x803EF450; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EF458; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EF45C; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EF460; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EF468; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803EF470; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803EF478; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803EF480; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EF488; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803EF48C; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EF490; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EF494; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata2:0x803EF498; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803EF49C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EF4A0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EF4A4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803EF4A8; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803EF4AC; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803EF4B0; // type:object size:0x8 scope:local align:8 data:double +@2020 = .sdata2:0x803EF4B8; // type:object size:0x8 scope:local align:8 data:double +@2040 = .sdata2:0x803EF4C0; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EF4C8; // type:object size:0x8 scope:local align:8 data:double +@2085 = .sdata2:0x803EF4D0; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803EF4D4; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EF4D8; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EF4DC; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EF4E0; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EF4E4; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EF4E8; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EF4EC; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803EF4F0; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803EF4F4; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata2:0x803EF4F8; // type:object size:0x4 scope:local align:4 data:float +@2900 = .sdata2:0x803EF4FC; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803EF500; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata2:0x803EF504; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x803EF508; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803EF50C; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803EF510; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803EF514; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803EF518; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803EF51C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803EF520; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803EF524; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EF528; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EF52C; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EF530; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803EF538; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803EF540; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803EF544; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EF548; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EF550; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EF554; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803EF558; // type:object size:0x8 scope:local align:8 data:double +@1751 = .sdata2:0x803EF560; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EF564; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803EF568; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803EF570; // type:object size:0x8 scope:local align:8 data:double +@2335 = .sdata2:0x803EF578; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803EF57C; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803EF580; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803EF584; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803EF588; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata2:0x803EF58C; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata2:0x803EF590; // type:object size:0x4 scope:local align:4 data:float +@2390 = .sdata2:0x803EF594; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803EF598; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata2:0x803EF59C; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803EF5A0; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803EF5A4; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803EF5A8; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata2:0x803EF5B0; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803EF5B4; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EF5B8; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803EF5C0; // type:object size:0x8 scope:local align:8 data:double +@1329 = .sdata2:0x803EF5C8; // type:object size:0x8 scope:local align:8 data:double +@3145 = .sdata2:0x803EF5D0; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata2:0x803EF5D4; // type:object size:0x4 scope:local align:4 data:float +@3161 = .sdata2:0x803EF5D8; // type:object size:0x4 scope:local align:4 data:float +@3236 = .sdata2:0x803EF5DC; // type:object size:0x4 scope:local align:4 data:float +@3237 = .sdata2:0x803EF5E0; // type:object size:0x4 scope:local align:4 data:float +@3238 = .sdata2:0x803EF5E4; // type:object size:0x4 scope:local align:4 data:float +@3239 = .sdata2:0x803EF5E8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EF5F0; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EF5F4; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EF5F8; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803EF5FC; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803EF600; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803EF608; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EF60C; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803EF610; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803EF618; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EF61C; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803EF620; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803EF628; // type:object size:0x8 scope:local align:8 data:double +@1967 = .sdata2:0x803EF630; // type:object size:0x8 scope:local align:8 data:double +@2050 = .sdata2:0x803EF638; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803EF63C; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803EF640; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EF644; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EF648; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EF64C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EF650; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EF654; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EF658; // type:object size:0x8 scope:local align:8 data:double +@1915 = .sdata2:0x803EF660; // type:object size:0x8 scope:local align:8 data:double +@1951 = .sdata2:0x803EF668; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EF66C; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EF670; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EF674; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EF678; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EF680; // type:object size:0x8 scope:local align:8 data:double +@2102 = .sdata2:0x803EF688; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EF68C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EF690; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EF698; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803EF6A0; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803EF6A8; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EF6AC; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803EF6B0; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803EF6B4; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EF6B8; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EF6BC; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EF6C0; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EF6C4; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803EF6C8; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EF6CC; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803EF6D0; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803EF6D4; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803EF6D8; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803EF6E0; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803EF6E4; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EF6E8; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803EF6EC; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803EF6F0; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803EF6F4; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EF6F8; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803EF700; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803EF708; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803EF710; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF718; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EF71C; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EF720; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EF728; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803EF730; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803EF734; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803EF738; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803EF73C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803EF740; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803EF744; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803EF748; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EF74C; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EF750; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803EF758; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803EF760; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803EF768; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803EF76C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803EF770; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EF774; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803EF778; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803EF77C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EF780; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EF784; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EF788; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EF78C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EF790; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803EF798; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EF79C; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803EF7A0; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EF7A4; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803EF7A8; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EF7B0; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EF7B4; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EF7B8; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EF7C0; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata2:0x803EF7C4; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EF7C8; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EF7CC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EF7D0; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EF7D4; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EF7D8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EF7DC; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EF7E0; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803EF7E8; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803EF7EC; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803EF7F0; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803EF7F4; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803EF7F8; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803EF800; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EF804; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EF808; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EF80C; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EF810; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803EF814; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EF818; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EF81C; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803EF820; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803EF824; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803EF828; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803EF830; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803EF834; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EF838; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803EF83C; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EF840; // type:object size:0x8 scope:local align:8 data:double +@1376 = .sdata2:0x803EF848; // type:object size:0x8 scope:local align:8 data:double +@1377 = .sdata2:0x803EF850; // type:object size:0x8 scope:local align:8 data:double +@1378 = .sdata2:0x803EF858; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EF85C; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EF860; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EF864; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803EF868; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803EF86C; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803EF870; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803EF878; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EF880; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803EF888; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EF88C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EF890; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EF898; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803EF8A0; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803EF8A4; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803EF8A8; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803EF8AC; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803EF8B0; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803EF8B4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EF8B8; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803EF8BC; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803EF8C0; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803EF8C4; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803EF8C8; // type:object size:0x4 scope:local align:4 data:float +@2674 = .sdata2:0x803EF8CC; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803EF8D0; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803EF8D4; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata2:0x803EF8D8; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803EF8DC; // type:object size:0x4 scope:local align:4 data:float +@3293 = .sdata2:0x803EF8E0; // type:object size:0x4 scope:local align:4 data:float +@3294 = .sdata2:0x803EF8E4; // type:object size:0x4 scope:local align:4 data:float +@3295 = .sdata2:0x803EF8E8; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x803EF8EC; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x803EF8F0; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x803EF8F4; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x803EF8F8; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x803EF8FC; // type:object size:0x4 scope:local align:4 data:float +@4242 = .sdata2:0x803EF900; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x803EF904; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EF908; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803EF90C; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EF910; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EF914; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EF918; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EF91C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EF920; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EF924; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803EF928; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EF92C; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803EF930; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EF934; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EF938; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803EF940; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803EF948; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803EF94C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803EF950; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803EF958; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803EF95C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EF960; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803EF964; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803EF968; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803EF970; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803EF978; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803EF980; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803EF988; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EF990; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803EF994; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803EF998; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EF99C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EF9A0; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EF9A8; // type:object size:0x8 scope:local align:8 data:double +@2356 = .sdata2:0x803EF9B0; // type:object size:0x8 scope:local align:8 data:double +@2357 = .sdata2:0x803EF9B8; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803EF9BC; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803EF9C0; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803EF9C4; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803EF9C8; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803EF9CC; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803EF9D0; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803EF9D4; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803EF9D8; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803EF9DC; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803EF9E0; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803EF9E4; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata2:0x803EF9E8; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803EF9EC; // type:object size:0x4 scope:local align:4 data:float +@2371 = .sdata2:0x803EF9F0; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata2:0x803EF9F4; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata2:0x803EF9F8; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803EFA00; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EFA04; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803EFA08; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803EFA0C; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803EFA10; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803EFA18; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803EFA20; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EFA24; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EFA28; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EFA2C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EFA30; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EFA38; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803EFA40; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803EFA48; // type:object size:0x8 scope:local align:8 data:double +@1435 = .sdata2:0x803EFA50; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EFA54; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803EFA58; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803EFA5C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EFA60; // type:object size:0x4 scope:local align:4 data:float +@1446 = .sdata2:0x803EFA64; // type:object size:0x4 scope:local align:4 data:float +@1448 = .sdata2:0x803EFA68; // type:object size:0x8 scope:local align:8 data:double +@1477 = .sdata2:0x803EFA70; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata2:0x803EFA74; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803EFA78; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803EFA7C; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803EFA80; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EFA84; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EFA88; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EFA90; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803EFA94; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EFA98; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EFA9C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EFAA0; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EFAA8; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803EFAB0; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803EFAB8; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803EFAC0; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803EFAC8; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EFAD0; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803EFAD4; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803EFAD8; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EFADC; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EFAE0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EFAE4; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EFAE8; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EFAEC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EFAF0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EFAF8; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803EFB00; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803EFB08; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803EFB0C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803EFB10; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EFB18; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803EFB1C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EFB20; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803EFB24; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803EFB28; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EFB30; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803EFB38; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803EFB40; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803EFB48; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803EFB50; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EFB54; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EFB58; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata2:0x803EFB5C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EFB60; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EFB64; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EFB68; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EFB6C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EFB70; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EFB74; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803EFB78; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803EFB80; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EFB84; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803EFB88; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EFB8C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EFB90; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EFB94; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EFB98; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EFB9C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EFBA0; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803EFBA8; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EFBAC; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EFBB0; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EFBB4; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EFBB8; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803EFBC0; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803EFBC4; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803EFBC8; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803EFBD0; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803EFBD8; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803EFBDC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EFBE0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EFBE4; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803EFBE8; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EFBF0; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803EFBF8; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803EFC00; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EFC04; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EFC08; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EFC0C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EFC10; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EFC14; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EFC18; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EFC1C; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EFC20; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803EFC28; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EFC2C; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EFC30; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EFC34; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EFC38; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EFC3C; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EFC40; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EFC48; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803EFC50; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803EFC54; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803EFC58; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803EFC60; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EFC64; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803EFC68; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803EFC6C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EFC70; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EFC74; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803EFC78; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EFC80; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EFC84; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EFC88; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EFC90; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EFC94; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EFC98; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EFC9C; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EFCA0; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EFCA4; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EFCA8; // type:object size:0x8 scope:local align:8 data:double +@1994 = .sdata2:0x803EFCB0; // type:object size:0x8 scope:local align:8 data:double +@2178 = .sdata2:0x803EFCB8; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803EFCBC; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata2:0x803EFCC0; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803EFCC4; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803EFCC8; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803EFCCC; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803EFCD0; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803EFCD8; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803EFCDC; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803EFCE0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EFCE4; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803EFCE8; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803EFCEC; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803EFCF0; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803EFCF8; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803EFD00; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803EFD04; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803EFD08; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803EFD0C; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803EFD10; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803EFD14; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EFD18; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803EFD1C; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EFD20; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803EFD28; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803EFD30; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EFD38; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EFD3C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EFD40; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EFD44; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EFD48; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EFD4C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EFD50; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EFD54; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EFD58; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803EFD5C; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803EFD60; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803EFD64; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803EFD68; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803EFD6C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EFD70; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803EFD78; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EFD7C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803EFD80; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EFD84; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EFD88; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803EFD8C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803EFD90; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803EFD98; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EFDA0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EFDA8; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EFDAC; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803EFDB0; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803EFDB4; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EFDB8; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803EFDC0; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803EFDC8; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EFDD0; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EFDD8; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803EFDE0; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803EFDE8; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EFDEC; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803EFDF0; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803EFDF4; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803EFDF8; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803EFDFC; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EFE00; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803EFE04; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803EFE08; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803EFE0C; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803EFE10; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803EFE14; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803EFE18; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803EFE20; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EFE24; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EFE28; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803EFE30; // type:object size:0x8 scope:local align:8 data:double +@2236 = .sdata2:0x803EFE38; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803EFE40; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803EFE48; // type:object size:0x8 scope:local align:8 data:double +@2239 = .sdata2:0x803EFE50; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803EFE54; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EFE58; // type:object size:0x8 scope:local align:8 data:double +@2540 = .sdata2:0x803EFE60; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata2:0x803EFE64; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803EFE68; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803EFE6C; // type:object size:0x4 scope:local align:4 data:float +@3267 = .sdata2:0x803EFE70; // type:object size:0x4 scope:local align:4 data:float +@3269 = .sdata2:0x803EFE74; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803EFE78; // type:object size:0x4 scope:local align:4 data:float +@3332 = .sdata2:0x803EFE7C; // type:object size:0x4 scope:local align:4 data:float +@3334 = .sdata2:0x803EFE80; // type:object size:0x8 scope:local align:8 data:double +@3664 = .sdata2:0x803EFE88; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x803EFE8C; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x803EFE90; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x803EFE94; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803EFE98; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x803EFE9C; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata2:0x803EFEA0; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x803EFEA4; // type:object size:0x4 scope:local align:4 data:float +@4589 = .sdata2:0x803EFEA8; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x803EFEAC; // type:object size:0x4 scope:local align:4 data:float +@4591 = .sdata2:0x803EFEB0; // type:object size:0x4 scope:local align:4 data:float +@4819 = .sdata2:0x803EFEB4; // type:object size:0x4 scope:local align:4 data:float +@4820 = .sdata2:0x803EFEB8; // type:object size:0x4 scope:local align:4 data:float +@4821 = .sdata2:0x803EFEBC; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata2:0x803EFEC0; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EFEC8; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803EFECC; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EFED0; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803EFED8; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EFEE0; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803EFEE4; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EFEE8; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803EFEF0; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EFEF4; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EFEF8; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EFEFC; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803EFF00; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803EFF04; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803EFF08; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803EFF0C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EFF10; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EFF14; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EFF18; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EFF1C; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EFF20; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EFF24; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EFF28; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EFF2C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EFF30; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EFF34; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EFF38; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EFF3C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EFF40; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EFF44; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EFF48; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EFF4C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EFF50; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EFF54; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EFF58; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EFF5C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EFF60; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EFF64; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EFF68; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EFF6C; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EFF70; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803EFF74; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EFF78; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EFF7C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EFF80; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EFF84; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EFF88; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EFF8C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EFF90; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803EFF94; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EFF98; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EFF9C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803EFFA0; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803EFFA8; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803EFFB0; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803EFFB4; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803EFFB8; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803EFFBC; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803EFFC0; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803EFFC4; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803EFFC8; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803EFFCC; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803EFFD0; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803EFFD8; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803EFFE0; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803EFFE8; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803EFFEC; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803EFFF0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803EFFF4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803EFFF8; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803EFFFC; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803F0000; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803F0004; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803F0008; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803F000C; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803F0010; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803F0014; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803F0018; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803F001C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F0020; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803F0024; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803F0028; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803F002C; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803F0030; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803F0034; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803F0038; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x803F003C; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata2:0x803F0040; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata2:0x803F0044; // type:object size:0x8 scope:local align:4 data:4byte +@5196 = .sdata2:0x803F004C; // type:object size:0x4 scope:local align:4 data:float +@5214 = .sdata2:0x803F0050; // type:object size:0x8 scope:local align:4 data:4byte +@5228 = .sdata2:0x803F0058; // type:object size:0x8 scope:local align:4 data:4byte +@5326 = .sdata2:0x803F0060; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803F0068; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803F006C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803F0070; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F0074; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803F0078; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F007C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803F0080; // type:object size:0x8 scope:local align:8 data:double +@1701 = .sdata2:0x803F0088; // type:object size:0x8 scope:local align:8 data:double +@1702 = .sdata2:0x803F0090; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803F0098; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803F009C; // type:object size:0x4 scope:local align:4 data:float +@1826 = .sdata2:0x803F00A0; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803F00A4; // type:object size:0x4 scope:local align:4 data:float +@1836 = .sdata2:0x803F00A8; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803F00AC; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F00B0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803F00B4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F00B8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F00BC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F00C0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F00C4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F00C8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F00CC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F00D0; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F00D4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F00D8; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F00DC; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F00E0; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata2:0x803F00E4; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803F00E8; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803F00EC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803F00F0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F00F4; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F00F8; // type:object size:0x8 scope:local align:8 data:double +@2232 = .sdata2:0x803F0100; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803F0104; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803F0108; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803F010C; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803F0110; // type:object size:0x4 scope:local align:4 data:float +@2678 = .sdata2:0x803F0114; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F0118; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803F011C; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata2:0x803F0120; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F0128; // type:object size:0x8 scope:local align:8 data:double +@946 = .sdata2:0x803F0130; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F0134; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F0138; // type:object size:0x8 scope:local align:8 data:double +@1097 = .sdata2:0x803F0140; // type:object size:0x8 scope:local align:8 data:double +@1488 = .sdata2:0x803F0148; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803F0150; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F0154; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803F0158; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803F0160; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803F0164; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F0168; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F0170; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803F0178; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803F017C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803F0180; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803F0184; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F0188; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F0190; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803F0198; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803F01A0; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803F01A8; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F01AC; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F01B0; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803F01B4; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803F01B8; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F01BC; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803F01C0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803F01C8; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803F01D0; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803F01D4; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803F01D8; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803F01E0; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803F01E8; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F01EC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F01F0; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803F01F8; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F01FC; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F0200; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803F0204; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F0208; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F0210; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F0214; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F0218; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803F021C; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803F0220; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803F0224; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F0228; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803F0230; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803F0234; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F0238; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803F023C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803F0240; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803F0244; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803F0248; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803F024C; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803F0250; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803F0254; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F0258; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803F025C; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803F0260; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803F0268; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803F0270; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803F0274; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F0278; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F027C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F0280; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F0284; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803F0288; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803F028C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803F0290; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803F0294; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F0298; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803F02A0; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803F02A8; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803F02AC; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803F02B0; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F02B4; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803F02B8; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803F02BC; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803F02C0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803F02C4; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803F02C8; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803F02CC; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata2:0x803F02D0; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803F02D8; // type:object size:0x8 scope:local align:8 data:double +@1757 = .sdata2:0x803F02E0; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803F02E4; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F02E8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F02F0; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F02F8; // type:object size:0x8 scope:local align:8 data:double +@1968 = .sdata2:0x803F0300; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F0304; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F0308; // type:object size:0x4 scope:local align:4 data:float +@2109 = .sdata2:0x803F030C; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803F0310; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F0318; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803F031C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F0320; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803F0324; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803F0328; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F0330; // type:object size:0x8 scope:local align:8 data:double +@1490 = .sdata2:0x803F0338; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803F033C; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803F0340; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803F0348; // type:object size:0x8 scope:local align:8 data:double +@1618 = .sdata2:0x803F0350; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803F0358; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F035C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F0360; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F0368; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803F0370; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803F0378; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803F037C; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803F0380; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F0384; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F0388; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803F038C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F0390; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803F0394; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803F0398; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803F039C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803F03A0; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803F03A8; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803F03AC; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F03B0; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803F03B4; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F03B8; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803F03BC; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803F03C0; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803F03C4; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803F03C8; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803F03D0; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803F03D8; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803F03DC; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803F03E0; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803F03E4; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803F03E8; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803F03EC; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803F03F0; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803F03F4; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803F03F8; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803F03FC; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803F0400; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803F0404; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F0408; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803F0410; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803F0414; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803F0418; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F0420; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803F0428; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F042C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F0430; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F0434; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F0438; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803F0440; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803F0444; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F0448; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803F044C; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata2:0x803F0450; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803F0458; // type:object size:0x8 scope:local align:8 data:double +@2770 = .sdata2:0x803F0460; // type:object size:0x8 scope:local align:8 data:double +@2789 = .sdata2:0x803F0468; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803F046C; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803F0470; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata2:0x803F0474; // type:object size:0x4 scope:local align:4 data:float +@3053 = .sdata2:0x803F0478; // type:object size:0x4 scope:local align:4 data:float +@3151 = .sdata2:0x803F047C; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803F0480; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x803F0484; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803F0488; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F048C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803F0490; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803F0494; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803F0498; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F049C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803F04A0; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803F04A4; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803F04A8; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803F04AC; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803F04B0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F04B8; // type:object size:0x8 scope:local align:8 data:double +@2762 = .sdata2:0x803F04C0; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803F04C4; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803F04C8; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803F04CC; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F04D0; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F04D8; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F04DC; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F04E0; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F04E8; // type:object size:0x8 scope:local align:8 data:double +@2215 = .sdata2:0x803F04F0; // type:object size:0x8 scope:local align:8 data:double +@2216 = .sdata2:0x803F04F8; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803F04FC; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F0500; // type:object size:0x4 scope:local align:4 data:float +@2710 = .sdata2:0x803F0504; // type:object size:0x4 scope:local align:4 data:float +@2712 = .sdata2:0x803F0508; // type:object size:0x4 scope:local align:4 data:float +@2714 = .sdata2:0x803F050C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata2:0x803F0510; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803F0514; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata2:0x803F0518; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x803F051C; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata2:0x803F0520; // type:object size:0x4 scope:local align:4 data:float +@2726 = .sdata2:0x803F0524; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F0528; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803F052C; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803F0530; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F0534; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F0538; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803F053C; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803F0540; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata2:0x803F0544; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata2:0x803F0548; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803F054C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803F0550; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F0554; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F0558; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803F055C; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803F0560; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata2:0x803F0564; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F0568; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata2:0x803F056C; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803F0570; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803F0574; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803F0578; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803F057C; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x803F0580; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803F0584; // type:object size:0x8 scope:local align:4 data:4byte +@2878 = .sdata2:0x803F058C; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x803F0590; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata2:0x803F0598; // type:object size:0x8 scope:local align:8 data:double +@3022 = .sdata2:0x803F05A0; // type:object size:0x4 scope:local align:4 data:float +@3383 = .sdata2:0x803F05A4; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x803F05A8; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x803F05AC; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata2:0x803F05B0; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x803F05B4; // type:object size:0x4 scope:local align:4 data:float +@4629 = .sdata2:0x803F05B8; // type:object size:0x4 scope:local align:4 data:float +@4712 = .sdata2:0x803F05BC; // type:object size:0x4 scope:local align:4 data:float +@4808 = .sdata2:0x803F05C0; // type:object size:0x4 scope:local align:4 data:float +@4810 = .sdata2:0x803F05C4; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata2:0x803F05C8; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x803F05CC; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata2:0x803F05D0; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803F05D4; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803F05D8; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803F05DC; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803F05E0; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x803F05E4; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x803F05E8; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x803F05EC; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x803F05F0; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x803F05F4; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata2:0x803F05F8; // type:object size:0x4 scope:local align:4 data:float +@5725 = .sdata2:0x803F05FC; // type:object size:0x4 scope:local align:4 data:float +@5726 = .sdata2:0x803F0600; // type:object size:0x4 scope:local align:4 data:float +@5727 = .sdata2:0x803F0604; // type:object size:0x4 scope:local align:4 data:float +@6699 = .sdata2:0x803F0608; // type:object size:0x4 scope:local align:4 data:float +@6700 = .sdata2:0x803F060C; // type:object size:0x4 scope:local align:4 data:float +@6701 = .sdata2:0x803F0610; // type:object size:0x4 scope:local align:4 data:float +@6702 = .sdata2:0x803F0614; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803F0618; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803F061C; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803F0620; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803F0624; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803F0628; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803F062C; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F0630; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803F0634; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803F0638; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803F0640; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803F0648; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803F0650; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803F0658; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803F065C; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803F0660; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803F0664; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803F0668; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803F066C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F0670; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x803F0674; // type:object size:0x4 scope:local align:4 data:float +@3444 = .sdata2:0x803F0678; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x803F067C; // type:object size:0x4 scope:local align:4 data:float +@3446 = .sdata2:0x803F0680; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x803F0684; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x803F0688; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x803F068C; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x803F0690; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x803F0694; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x803F0698; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x803F069C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x803F06A0; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x803F06A4; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803F06A8; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x803F06AC; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x803F06B0; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x803F06B4; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x803F06B8; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x803F06BC; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x803F06C0; // type:object size:0x4 scope:local align:4 data:float +@4155 = .sdata2:0x803F06C4; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x803F06C8; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x803F06CC; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata2:0x803F06D0; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata2:0x803F06D4; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x803F06D8; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x803F06DC; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x803F06E0; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x803F06E4; // type:object size:0x4 scope:local align:4 data:float +@5686 = .sdata2:0x803F06E8; // type:object size:0x4 scope:local align:4 data:float +@5687 = .sdata2:0x803F06EC; // type:object size:0x4 scope:local align:4 data:float +@5766 = .sdata2:0x803F06F0; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F06F8; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F06FC; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F0700; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803F0708; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803F0710; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803F0714; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803F0718; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F071C; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803F0720; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803F0724; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803F0728; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803F072C; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803F0730; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803F0738; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F0740; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803F0744; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803F0748; // type:object size:0x4 scope:local align:4 data:float +@2479 = .sdata2:0x803F0750; // type:object size:0x4 scope:local align:4 data:float +@3308 = .sdata2:0x803F0754; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x803F0758; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x803F075C; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x803F0760; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F0768; // type:object size:0x8 scope:local align:8 data:double +@4361 = .sdata2:0x803F0770; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F0778; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F077C; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803F0780; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803F0784; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803F0788; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803F078C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803F0790; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803F0794; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803F0798; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803F079C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F07A0; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803F07A4; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F07A8; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F07B0; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803F07B8; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803F07C0; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803F07C4; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803F07C8; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803F07D0; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803F07D4; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F07D8; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803F07DC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803F07E0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F07E4; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata2:0x803F07E8; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803F07EC; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata2:0x803F07F0; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803F07F8; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803F0800; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F0808; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803F080C; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F0810; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803F0818; // type:object size:0x8 scope:local align:8 data:double +@958 = .sdata2:0x803F0820; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803F0824; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F0828; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F082C; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F0830; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803F0834; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803F0838; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803F083C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F0840; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803F0848; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F084C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F0850; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803F0858; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803F0860; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F0868; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F086C; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803F0870; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F0874; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803F0878; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F087C; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803F0880; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803F0884; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803F0888; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803F0890; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803F0894; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803F0898; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803F08A0; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803F08A8; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803F08B0; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803F08B8; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803F08BC; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803F08C0; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803F08C4; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803F08C8; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803F08CC; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803F08D0; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803F08D8; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803F08E0; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803F08E4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F08E8; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803F08F0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803F08F8; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803F0900; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F0908; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F090C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F0910; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F0914; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F0918; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F091C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F0920; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F0924; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803F0928; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803F092C; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata2:0x803F0930; // type:object size:0x8 scope:local align:8 data:double +@495 = .sdata2:0x803F0938; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F0940; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F0944; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F0948; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803F094C; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F0950; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803F0954; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803F0958; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803F0960; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803F0968; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F096C; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F0970; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803F0974; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803F0978; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803F0980; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F0984; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803F0988; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803F098C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803F0990; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803F0994; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F0998; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F099C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803F09A0; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803F09A4; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803F09A8; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803F09AC; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F09B0; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803F09B4; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803F09B8; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F09BC; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F09C0; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803F09C8; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803F09CC; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803F09D0; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803F09D4; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803F09D8; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803F09DC; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803F09E0; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803F09E4; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F09E8; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803F09EC; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803F09F0; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F09F4; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F09F8; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803F09FC; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803F0A00; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F0A04; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F0A08; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F0A0C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803F0A10; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803F0A14; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803F0A18; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803F0A1C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F0A20; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F0A24; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F0A28; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F0A2C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803F0A30; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803F0A34; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803F0A38; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803F0A3C; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803F0A40; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803F0A44; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803F0A48; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803F0A4C; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803F0A50; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803F0A54; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803F0A58; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803F0A5C; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803F0A60; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803F0A68; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803F0A6C; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F0A70; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803F0A78; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803F0A80; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803F0A88; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803F0A8C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F0A90; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F0A98; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803F0AA0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F0AA4; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F0AA8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F0AAC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F0AB0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F0AB4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F0AB8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F0ABC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F0AC0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F0AC4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F0AC8; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F0ACC; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F0AD0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F0AD4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F0AD8; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F0ADC; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803F0AE0; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803F0AE4; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F0AE8; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F0AEC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F0AF0; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F0AF4; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F0AF8; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F0AFC; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F0B00; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803F0B04; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803F0B08; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803F0B0C; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803F0B10; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803F0B14; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803F0B18; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F0B20; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F0B24; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F0B28; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F0B2C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F0B30; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F0B34; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F0B38; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F0B3C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0B40; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F0B44; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F0B48; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F0B4C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F0B50; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0B54; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0B58; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F0B5C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0B60; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F0B64; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F0B68; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0B6C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0B70; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0B74; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F0B78; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F0B7C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F0B80; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803F0B84; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803F0B88; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803F0B90; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803F0B94; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803F0B98; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803F0B9C; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803F0BA0; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803F0BA4; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F0BA8; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F0BAC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F0BB0; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F0BB4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F0BB8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F0BBC; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803F0BC0; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F0BC4; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F0BC8; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803F0BD0; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803F0BD4; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F0BD8; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F0BDC; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F0BE0; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F0BE4; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F0BE8; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F0BEC; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F0BF0; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F0BF4; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F0BF8; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F0BFC; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F0C00; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F0C04; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F0C08; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F0C0C; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F0C10; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F0C14; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F0C18; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F0C1C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F0C20; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F0C24; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F0C28; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803F0C2C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F0C30; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803F0C34; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803F0C38; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F0C3C; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803F0C40; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803F0C44; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F0C48; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803F0C50; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803F0C58; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803F0C60; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F0C68; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F0C6C; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F0C70; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F0C74; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F0C78; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803F0C7C; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803F0C80; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F0C84; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803F0C88; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F0C8C; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803F0C90; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803F0C94; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F0C98; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803F0C9C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F0CA0; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803F0CA4; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F0CA8; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803F0CAC; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803F0CB0; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803F0CB8; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803F0CC0; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803F0CC4; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803F0CC8; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803F0CD0; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803F0CD4; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803F0CD8; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803F0CDC; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803F0CE0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F0CE8; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F0CEC; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F0CF0; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F0CF4; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803F0CF8; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803F0CFC; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803F0D00; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803F0D04; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803F0D08; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803F0D0C; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803F0D10; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803F0D14; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803F0D18; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803F0D1C; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803F0D20; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803F0D24; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803F0D28; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F0D2C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F0D30; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803F0D34; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803F0D38; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F0D3C; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803F0D40; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803F0D44; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803F0D48; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803F0D4C; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803F0D50; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F0D54; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803F0D58; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803F0D5C; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803F0D60; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F0D64; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803F0D68; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803F0D6C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803F0D70; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803F0D74; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803F0D78; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803F0D7C; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803F0D80; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803F0D84; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803F0D88; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803F0D90; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803F0D98; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803F0D9C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F0DA0; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F0DA4; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F0DA8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F0DAC; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F0DB0; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F0DB4; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F0DB8; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F0DBC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F0DC0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F0DC4; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F0DC8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803F0DCC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803F0DD0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803F0DD4; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803F0DD8; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803F0DDC; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803F0DE0; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F0DE4; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803F0DE8; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803F0DEC; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F0DF0; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803F0DF4; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F0DF8; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F0DFC; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803F0E00; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F0E04; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803F0E08; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803F0E0C; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803F0E10; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F0E14; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803F0E18; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803F0E1C; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803F0E20; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803F0E24; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F0E28; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803F0E2C; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803F0E30; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803F0E38; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803F0E40; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803F0E48; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803F0E50; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803F0E54; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803F0E58; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F0E5C; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F0E60; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F0E64; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803F0E68; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F0E6C; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803F0E70; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803F0E74; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803F0E78; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F0E7C; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F0E80; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F0E84; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F0E88; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803F0E90; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803F0E98; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803F0E9C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F0EA0; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803F0EA8; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803F0EB0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F0EB4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803F0EB8; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F0EBC; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F0EC0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F0EC4; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F0EC8; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F0ECC; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F0ED0; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F0ED4; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F0ED8; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F0EDC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F0EE0; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F0EE4; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0EE8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F0EEC; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F0EF0; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F0EF4; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F0EF8; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0EFC; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0F00; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F0F04; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0F08; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F0F0C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F0F10; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0F14; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0F18; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0F1C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F0F20; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F0F24; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F0F28; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803F0F2C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803F0F30; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803F0F38; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803F0F40; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F0F44; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F0F48; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803F0F4C; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803F0F50; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803F0F54; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803F0F58; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803F0F5C; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F0F60; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803F0F64; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803F0F68; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803F0F6C; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803F0F70; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803F0F74; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803F0F78; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803F0F7C; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803F0F80; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F0F88; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803F0F8C; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803F0F90; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803F0F94; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803F0F98; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803F0FA0; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803F0FA8; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F0FAC; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F0FB0; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803F0FB8; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803F0FC0; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803F0FC4; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803F0FC8; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F0FD0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F0FD4; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803F0FD8; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803F0FE0; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803F0FE8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F0FEC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803F0FF0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803F0FF4; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F0FF8; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803F0FFC; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803F1000; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803F1004; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803F1008; // type:object size:0x8 scope:local align:8 data:double +@3868 = .sdata2:0x803F1010; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x803F1014; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803F1018; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803F101C; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F1020; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F1028; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F102C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F1030; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F1034; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F1038; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803F103C; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F1040; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803F1044; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803F1048; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803F104C; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F1050; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803F1054; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F1058; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803F105C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803F1060; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803F1064; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803F1068; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803F106C; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803F1070; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803F1074; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803F1078; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803F107C; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803F1080; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803F1084; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F1088; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F108C; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F1090; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803F1094; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803F1098; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F109C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803F10A0; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803F10A4; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803F10A8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F10AC; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803F10B0; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F10B4; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803F10B8; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803F10BC; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803F10C0; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803F10C4; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803F10C8; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803F10D0; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F10D4; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F10D8; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F10DC; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F10E0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803F10E4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803F10E8; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803F10F0; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803F10F8; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F10FC; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F1100; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F1104; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F1108; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F110C; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803F1110; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F1114; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F1118; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803F111C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F1120; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F1124; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F1128; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F112C; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F1130; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F1134; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F1138; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F113C; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F1140; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F1144; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803F1148; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803F114C; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803F1150; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803F1154; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F1158; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803F115C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803F1160; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803F1164; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803F1168; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F116C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803F1170; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803F1174; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803F1178; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803F117C; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803F1180; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F1184; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F1188; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803F118C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803F1190; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803F1194; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803F1198; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803F119C; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803F11A0; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F11A4; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F11A8; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803F11AC; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F11B0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803F11B4; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803F11B8; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803F11BC; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803F11C0; // type:object size:0x8 scope:local align:8 data:double +@2035 = .sdata2:0x803F11C8; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F11CC; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F11D0; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803F11D4; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata2:0x803F11D8; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata2:0x803F11DC; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803F11E0; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata2:0x803F11E4; // type:object size:0x4 scope:local align:4 data:float +@2184 = .sdata2:0x803F11E8; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F11EC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803F11F0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803F11F4; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F11F8; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803F1200; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803F1208; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F120C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F1210; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803F1218; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803F1220; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F1224; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803F1228; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803F122C; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803F1230; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803F1234; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803F1238; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F123C; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F1240; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803F1244; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803F1248; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803F124C; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803F1250; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803F1254; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803F1258; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803F125C; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803F1260; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803F1264; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803F1268; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803F126C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803F1270; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803F1274; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803F1278; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803F127C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803F1280; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803F1284; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803F1288; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803F128C; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803F1290; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803F1294; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803F1298; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F129C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803F12A0; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803F12A4; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F12A8; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803F12AC; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803F12B0; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803F12B4; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803F12B8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F12BC; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803F12C0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803F12C4; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803F12C8; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803F12CC; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F12D0; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F12D4; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F12D8; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F12DC; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F12E0; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803F12E4; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803F12E8; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803F12EC; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F12F0; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F12F4; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F12F8; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F12FC; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F1300; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803F1308; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F130C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803F1310; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803F1314; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803F1318; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803F131C; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803F1320; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803F1324; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803F1328; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803F1330; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803F1334; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F1338; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803F133C; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F1340; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803F1344; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F1348; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F134C; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803F1350; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803F1358; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803F135C; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803F1360; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F1368; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F136C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F1370; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F1374; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F1378; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F137C; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F1380; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F1384; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F1388; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F138C; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F1390; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803F1394; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F1398; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F139C; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803F13A0; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803F13A4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F13A8; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803F13AC; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803F13B0; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803F13B4; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803F13B8; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803F13C0; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803F13C8; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803F13D0; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803F13D8; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803F13DC; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803F13E0; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803F13E8; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803F13F0; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F13F4; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F13F8; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803F13FC; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803F1400; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F1404; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803F1408; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803F140C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803F1410; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803F1414; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803F1418; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803F141C; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803F1420; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803F1424; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803F1428; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803F142C; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803F1430; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803F1434; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803F1438; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803F143C; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803F1440; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803F1444; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x803F1448; // type:object size:0x4 scope:local align:4 data:float +@4550 = .sdata2:0x803F144C; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x803F1450; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x803F1454; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803F1458; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803F145C; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803F1460; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803F1468; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803F1470; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803F1474; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803F1478; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F147C; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803F1480; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F1484; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803F1488; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F148C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F1490; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F1494; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F1498; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803F149C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803F14A0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F14A4; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F14A8; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F14AC; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F14B0; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803F14B4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F14B8; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F14BC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F14C0; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803F14C4; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803F14C8; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803F14CC; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803F14D0; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803F14D4; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803F14D8; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803F14DC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803F14E0; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F14E4; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803F14E8; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803F14F0; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803F14F4; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803F14F8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F14FC; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803F1500; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata2:0x803F1504; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F1508; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803F150C; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803F1510; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803F1514; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F1518; // type:object size:0x8 scope:local align:8 data:double +@2306 = .sdata2:0x803F1520; // type:object size:0x4 scope:local align:4 data:float +@2411 = .sdata2:0x803F1524; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803F1528; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803F152C; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x803F1530; // type:object size:0x4 scope:local align:4 data:float +@3124 = .sdata2:0x803F1534; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803F1538; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x803F153C; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x803F1540; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x803F1544; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803F1548; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803F154C; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x803F1550; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803F1558; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F155C; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F1560; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F1564; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F1568; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803F1570; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803F1578; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803F1580; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803F1584; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803F1588; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803F158C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803F1590; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803F1594; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803F1598; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803F159C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803F15A0; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F15A4; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803F15A8; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803F15AC; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803F15B0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F15B4; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803F15B8; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803F15BC; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803F15C0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F15C4; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F15C8; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803F15CC; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803F15D0; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803F15D4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803F15D8; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803F15E0; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803F15E4; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803F15E8; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803F15EC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803F15F0; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803F15F8; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803F15FC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F1600; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F1604; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F1608; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803F160C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F1610; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F1614; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803F1618; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803F161C; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803F1620; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803F1624; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803F1628; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F1630; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803F1634; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803F1638; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F163C; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803F1640; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F1644; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F1648; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F164C; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F1650; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803F1654; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803F1658; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803F165C; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803F1660; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803F1668; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803F166C; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803F1670; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803F1674; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803F1678; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803F167C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F1680; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803F1688; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803F168C; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803F1690; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803F1698; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803F16A0; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F16A4; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F16A8; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F16AC; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F16B0; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F16B4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803F16B8; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803F16BC; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803F16C0; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803F16C4; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F16C8; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F16CC; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803F16D0; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F16D4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F16D8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F16E0; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803F16E4; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803F16E8; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803F16EC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803F16F0; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803F16F4; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803F16F8; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803F1700; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803F1704; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803F1708; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803F170C; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803F1710; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803F1714; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F1718; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F1720; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803F1724; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803F1728; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata2:0x803F172C; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803F1730; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803F1734; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803F1738; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F173C; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803F1740; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803F1744; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803F1748; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803F1750; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803F1758; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F1760; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F1764; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F1768; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803F176C; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803F1770; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803F1774; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803F1778; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803F177C; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803F1780; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803F1784; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F1788; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F1790; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F1794; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F1798; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F179C; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803F17A0; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803F17A8; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803F17B0; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F17B8; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803F17BC; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata2:0x803F17C0; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803F17C4; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F17C8; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F17D0; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F17D4; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F17D8; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata2:0x803F17DC; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803F17E0; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F17E4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F17E8; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F17EC; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F17F0; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F17F4; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F17F8; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803F1800; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F1804; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F1808; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803F180C; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803F1810; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803F1814; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803F1818; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803F181C; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803F1820; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803F1828; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803F1830; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803F1834; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F1838; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803F183C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata2:0x803F1840; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F1848; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803F184C; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F1850; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F1854; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803F1858; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803F185C; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803F1860; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F1864; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F1868; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803F186C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F1870; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F1874; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803F1878; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata2:0x803F187C; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata2:0x803F1880; // type:object size:0x8 scope:local align:8 data:double +@2683 = .sdata2:0x803F1888; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803F188C; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803F1890; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata2:0x803F1894; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803F1898; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803F189C; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F18A0; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F18A4; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F18A8; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F18AC; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F18B0; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803F18B4; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata2:0x803F18B8; // type:object size:0x4 scope:local align:4 data:4byte +@3041 = .sdata2:0x803F18BC; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803F18C0; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata2:0x803F18C4; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803F18C8; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F18CC; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F18D0; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F18D8; // type:object size:0x8 scope:local align:8 data:double +@1044 = .sdata2:0x803F18E0; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata2:0x803F18E4; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata2:0x803F18E8; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803F18F0; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803F18F4; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803F18F8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803F18FC; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F1900; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803F1904; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F1908; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F190C; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F1910; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803F1914; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata2:0x803F1918; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F1920; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F1924; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F1928; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803F192C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F1930; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F1934; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata2:0x803F1938; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata2:0x803F193C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803F1940; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803F1944; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803F1948; // type:object size:0x4 scope:local align:4 data:float +@2158 = .sdata2:0x803F194C; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata2:0x803F1950; // type:object size:0x4 scope:local align:4 data:4byte +@2177 = .sdata2:0x803F1954; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803F1958; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803F195C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F1960; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F1964; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata2:0x803F1968; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata2:0x803F196C; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803F1970; // type:object size:0x8 scope:local align:8 data:double +@1838 = .sdata2:0x803F1978; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803F197C; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F1980; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F1984; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F1988; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803F1990; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803F1998; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F199C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F19A0; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F19A4; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F19A8; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F19AC; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F19B0; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803F19B4; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803F19B8; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F19BC; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F19C0; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F19C4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F19C8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F19CC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F19D0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F19D8; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F19DC; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803F19E0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F19E4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F19E8; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F19EC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F19F0; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F19F4; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F19F8; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F19FC; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F1A00; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F1A04; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F1A08; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F1A0C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F1A10; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F1A14; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803F1A18; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803F1A1C; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803F1A20; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803F1A24; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803F1A28; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803F1A2C; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803F1A30; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803F1A34; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F1A38; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803F1A40; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803F1A44; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F1A48; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F1A4C; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803F1A50; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803F1A58; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F1A5C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F1A60; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F1A64; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F1A68; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F1A6C; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803F1A70; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803F1A74; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803F1A78; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F1A7C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F1A80; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F1A84; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803F1A88; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F1A90; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F1A98; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F1A9C; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F1AA0; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803F1AA4; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F1AA8; // type:object size:0x8 scope:local align:8 data:double +@1564 = .sdata2:0x803F1AB0; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803F1AB4; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803F1AB8; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F1ABC; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803F1AC0; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F1AC8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803F1AD0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F1AD4; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F1AD8; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F1ADC; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803F1AE0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F1AE4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F1AE8; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F1AEC; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F1AF0; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803F1AF8; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F1AFC; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803F1B00; // type:object size:0x8 scope:local align:8 data:double +@1152 = .sdata2:0x803F1B08; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F1B0C; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata2:0x803F1B10; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803F1B18; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803F1B1C; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F1B20; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F1B24; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F1B28; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803F1B30; // type:object size:0x8 scope:local align:8 data:double +@999 = .sdata2:0x803F1B38; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F1B40; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F1B44; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F1B48; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803F1B50; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F1B54; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803F1B58; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F1B5C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F1B60; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F1B64; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F1B68; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F1B6C; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F1B70; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F1B74; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F1B78; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F1B80; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803F1B88; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F1B8C; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F1B90; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F1B94; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata2:0x803F1B98; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F1B9C; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F1BA0; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803F1BA4; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803F1BA8; // type:object size:0x4 scope:local align:4 data:float +@1862 = .sdata2:0x803F1BB0; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803F1BB8; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803F1BBC; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803F1BC0; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803F1BC8; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803F1BD0; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F1BD4; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F1BD8; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F1BDC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803F1BE0; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803F1BE8; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803F1BF0; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803F1BF4; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F1BF8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F1C00; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803F1C08; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803F1C10; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803F1C18; // type:object size:0x8 scope:local align:8 data:double +@1406 = .sdata2:0x803F1C20; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F1C28; // type:object size:0x8 scope:local align:8 data:double +@2013 = .sdata2:0x803F1C30; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F1C34; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F1C38; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803F1C3C; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803F1C40; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F1C48; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803F1C4C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803F1C50; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803F1C54; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803F1C58; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F1C60; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803F1C68; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F1C6C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F1C70; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F1C78; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803F1C80; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803F1C88; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803F1C90; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803F1C94; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F1C98; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F1C9C; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F1CA0; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803F1CA4; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F1CA8; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F1CAC; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F1CB0; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F1CB4; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F1CB8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F1CBC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F1CC0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F1CC4; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F1CC8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F1CCC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F1CD0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F1CD4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F1CD8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F1CDC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F1CE0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F1CE4; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F1CE8; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F1CEC; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F1CF0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F1CF4; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F1CF8; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F1CFC; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803F1D00; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F1D04; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F1D08; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803F1D0C; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F1D10; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803F1D14; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803F1D18; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803F1D1C; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803F1D20; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803F1D28; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803F1D30; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F1D34; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F1D38; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F1D40; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F1D44; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F1D48; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F1D4C; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F1D50; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F1D54; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F1D58; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F1D5C; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F1D60; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F1D64; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F1D68; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F1D6C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F1D70; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F1D74; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F1D78; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F1D7C; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F1D80; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F1D84; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F1D88; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F1D8C; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F1D90; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F1D94; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F1D98; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803F1D9C; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803F1DA0; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F1DA4; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F1DA8; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803F1DAC; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803F1DB0; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803F1DB4; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F1DB8; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F1DBC; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F1DC0; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803F1DC4; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803F1DC8; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803F1DD0; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803F1DD4; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803F1DD8; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803F1DDC; // type:object size:0x4 scope:local align:4 data:float +@3264 = .sdata2:0x803F1DE0; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803F1DE4; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F1DE8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803F1DEC; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F1DF0; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F1DF8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803F1DFC; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F1E00; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803F1E04; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F1E08; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803F1E10; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F1E18; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F1E20; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803F1E28; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803F1E30; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803F1E34; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803F1E38; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803F1E3C; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F1E40; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803F1E44; // type:object size:0x4 scope:local align:4 data:float +@2419 = .sdata2:0x803F1E48; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F1E4C; // type:object size:0x4 scope:local align:4 data:float +@2491 = .sdata2:0x803F1E50; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x803F1E54; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x803F1E58; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x803F1E5C; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x803F1E60; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x803F1E64; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x803F1E68; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x803F1E6C; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F1E70; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803F1E78; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F1E80; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F1E84; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803F1E88; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803F1E8C; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803F1E90; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata2:0x803F1E94; // type:object size:0x4 scope:local align:4 data:float +@1808 = .sdata2:0x803F1E98; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata2:0x803F1E9C; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F1EA0; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata2:0x803F1EA4; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F1EA8; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803F1EB0; // type:object size:0x8 scope:local align:8 data:double +@1969 = .sdata2:0x803F1EB8; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803F1EBC; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803F1EC0; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803F1EC4; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803F1EC8; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803F1ED0; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803F1ED8; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803F1EDC; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803F1EE0; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F1EE4; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F1EE8; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803F1EF0; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803F1EF4; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803F1EF8; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803F1EFC; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803F1F00; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803F1F04; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F1F08; // type:object size:0x4 scope:local align:4 data:float +@1121 = .sdata2:0x803F1F10; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803F1F18; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803F1F1C; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803F1F20; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803F1F28; // type:object size:0x8 scope:local align:8 data:double +@888 = .sdata2:0x803F1F30; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803F1F38; // type:object size:0x4 scope:local align:4 data:4byte +@1080 = .sdata2:0x803F1F3C; // type:object size:0x4 scope:local align:4 data:4byte +@727 = .sdata2:0x803F1F40; // type:object size:0x4 scope:local align:4 data:float +@728 = .sdata2:0x803F1F44; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803F1F48; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803F1F50; // type:object size:0x8 scope:local align:8 data:double +@649 = .sdata2:0x803F1F58; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803F1F60; // type:object size:0x8 scope:local align:8 data:double +@878 = .sdata2:0x803F1F68; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803F1F70; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803F1F78; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803F1F80; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803F1F88; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803F1F90; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803F1F94; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803F1F98; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803F1F9C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803F1FA0; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F1FA4; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F1FA8; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata2:0x803F1FB0; // type:object size:0x8 scope:local align:8 data:double +@2314 = .sdata2:0x803F1FB8; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F1FBC; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F1FC0; // type:object size:0x4 scope:local align:4 data:float +@2442 = .sdata2:0x803F1FC4; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata2:0x803F1FC8; // type:object size:0x4 scope:local align:4 data:float +@2455 = .sdata2:0x803F1FCC; // type:object size:0x4 scope:local align:4 data:float +@2456 = .sdata2:0x803F1FD0; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803F1FD4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803F1FD8; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F1FDC; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803F1FE0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F1FE8; // type:object size:0x8 scope:local align:8 data:double +@2702 = .sdata2:0x803F1FF0; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803F1FF4; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F1FF8; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803F1FFC; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata2:0x803F2000; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803F2004; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F2008; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803F200C; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803F2010; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F2014; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F2018; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata2:0x803F201C; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata2:0x803F2020; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F2024; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803F2028; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803F202C; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803F2030; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata2:0x803F2034; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803F2038; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803F203C; // type:object size:0x4 scope:local align:4 data:float +@2963 = .sdata2:0x803F2040; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803F2044; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata2:0x803F2048; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x803F204C; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803F2050; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803F2054; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803F2058; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F205C; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803F2060; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F2064; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F2068; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803F206C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F2070; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F2074; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F2078; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F2080; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803F2088; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803F208C; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F2090; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803F2094; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F2098; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F209C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F20A0; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F20A4; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803F20A8; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803F20AC; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803F20B0; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803F20B4; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F20B8; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803F20C0; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F20C4; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803F20C8; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803F20CC; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803F20D0; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata2:0x803F20D4; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata2:0x803F20D8; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803F20E0; // type:object size:0x8 scope:local align:8 data:double +@2553 = .sdata2:0x803F20E8; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803F20EC; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata2:0x803F20F0; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x803F20F4; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803F20F8; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803F2100; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803F2104; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803F2108; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F210C; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata2:0x803F2110; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803F2118; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803F2120; // type:object size:0x8 scope:local align:8 data:double +@1485 = .sdata2:0x803F2128; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F212C; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F2130; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F2134; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F2138; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803F213C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F2140; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803F2144; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F2148; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803F214C; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803F2150; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803F2154; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803F2158; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F2160; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803F2164; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803F2168; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803F216C; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F2170; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F2178; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803F2180; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803F2184; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F2188; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803F218C; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F2190; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F2194; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F2198; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F219C; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F21A0; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F21A4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F21A8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F21AC; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F21B0; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F21B4; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803F21B8; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803F21BC; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803F21C0; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F21C4; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803F21C8; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803F21D0; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803F21D4; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata2:0x803F21D8; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F21E0; // type:object size:0x8 scope:local align:8 data:double +@964 = .sdata2:0x803F21E8; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803F21EC; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803F21F0; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803F21F4; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803F21F8; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F2200; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803F2208; // type:object size:0x4 scope:local align:4 data:float +@1552 = .sdata2:0x803F220C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F2210; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803F2218; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F221C; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803F2220; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803F2228; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803F2230; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F2234; // type:object size:0x4 scope:local align:4 data:float +@2107 = .sdata2:0x803F2238; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803F2240; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803F2244; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803F2248; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803F224C; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803F2250; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803F2254; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F2258; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F225C; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803F2260; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803F2264; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F2268; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803F226C; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F2270; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F2274; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F2278; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F227C; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F2280; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803F2284; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803F2288; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803F228C; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803F2290; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803F2294; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F2298; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F229C; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803F22A0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803F22A4; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803F22A8; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803F22AC; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F22B0; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F22B4; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803F22B8; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803F22C0; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803F22C8; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803F22CC; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803F22D0; // type:object size:0x4 scope:local align:4 data:float +@3135 = .sdata2:0x803F22D4; // type:object size:0x4 scope:local align:4 data:float +@3137 = .sdata2:0x803F22D8; // type:object size:0x8 scope:local align:8 data:double +@3731 = .sdata2:0x803F22E0; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803F22E4; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803F22E8; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803F22EC; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x803F22F0; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x803F22F4; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803F22F8; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803F22FC; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803F2300; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803F2304; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803F2308; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803F230C; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F2310; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803F2314; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F2318; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803F231C; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F2320; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F2324; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F2328; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F2330; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F2338; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F233C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F2340; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F2344; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803F2348; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803F234C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F2350; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F2354; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F2358; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F235C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F2360; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F2364; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F2368; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F236C; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F2370; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F2374; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F2378; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F237C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F2380; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F2384; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F2388; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F238C; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F2390; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F2394; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F2398; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F239C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F23A0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F23A4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F23A8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F23AC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F23B0; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F23B8; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F23BC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F23C0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F23C4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F23C8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F23CC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F23D0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F23D4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F23D8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F23DC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F23E0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F23E4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F23E8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F23EC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F23F0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F23F4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F23F8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F23FC; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F2400; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F2404; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F2408; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F240C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F2410; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F2414; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F2418; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F241C; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F2420; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803F2424; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803F2428; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F242C; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F2430; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803F2434; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F2438; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F243C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803F2440; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F2444; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803F2448; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F244C; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F2450; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F2454; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F2458; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F245C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F2460; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F2464; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F2468; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F246C; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F2470; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F2474; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F2478; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F247C; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F2480; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803F2484; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F2488; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803F248C; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803F2490; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803F2494; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F2498; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F249C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F24A0; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F24A4; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F24A8; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F24AC; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F24B0; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F24B4; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F24B8; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F24BC; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F24C0; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F24C4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F24C8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F24CC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F24D0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F24D4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F24D8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F24DC; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F24E0; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F24E4; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F24E8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F24EC; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F24F0; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803F24F8; // type:object size:0x8 scope:local align:8 data:double +@2116 = .sdata2:0x803F2500; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F2504; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803F2508; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803F250C; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F2510; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803F2514; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F2518; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F251C; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F2520; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F2524; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F2528; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803F252C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F2530; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F2534; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F2538; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803F253C; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803F2540; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F2544; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F2548; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F254C; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803F2550; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803F2554; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803F2558; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F255C; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F2560; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata2:0x803F2564; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F2568; // type:object size:0x4 scope:local align:4 data:float +@3165 = .sdata2:0x803F256C; // type:object size:0x4 scope:local align:4 data:float +@3167 = .sdata2:0x803F2570; // type:object size:0x8 scope:local align:8 data:double +@3474 = .sdata2:0x803F2578; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x803F257C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F2580; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F2584; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F2588; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F258C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F2590; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F2594; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F2598; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F259C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F25A0; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F25A4; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F25A8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F25AC; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F25B0; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F25B4; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F25B8; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F25BC; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F25C0; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F25C4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F25C8; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F25CC; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F25D0; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F25D4; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803F25D8; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803F25DC; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F25E0; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F25E8; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803F25F0; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata2:0x803F25F8; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803F2600; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F2604; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F2608; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803F260C; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803F2610; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F2614; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F2618; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F261C; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F2620; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F2624; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F2628; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F262C; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F2630; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F2634; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F2638; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F263C; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F2640; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F2644; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F2648; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F264C; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F2650; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F2654; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F2658; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F265C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803F2660; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F2664; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803F2668; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803F266C; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803F2670; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803F2674; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F2678; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803F2680; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803F2688; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803F268C; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803F2690; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803F2694; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F2698; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F269C; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F26A0; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803F26A8; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803F26AC; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803F26B0; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803F26B4; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803F26B8; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803F26BC; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803F26C0; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F26C8; // type:object size:0x8 scope:local align:8 data:double +@882 = .sdata2:0x803F26D0; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F26D8; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F26DC; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F26E0; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803F26E4; // type:object size:0x4 scope:local align:4 data:float +@2823 = .sdata2:0x803F26E8; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803F26EC; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata2:0x803F26F0; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata2:0x803F26F8; // type:object size:0x8 scope:local align:8 data:double +@3077 = .sdata2:0x803F2700; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x803F2704; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x803F2708; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x803F270C; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x803F2710; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x803F2714; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata2:0x803F2718; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x803F271C; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x803F2720; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x803F2724; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x803F2728; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x803F272C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803F2730; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803F2738; // type:object size:0x8 scope:local align:8 data:double +@4102 = .sdata2:0x803F2740; // type:object size:0x8 scope:local align:8 data:double +@4103 = .sdata2:0x803F2748; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803F274C; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803F2750; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803F2754; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x803F2758; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x803F275C; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x803F2760; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x803F2764; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x803F2768; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803F276C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803F2770; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x803F2774; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x803F2778; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803F277C; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803F2780; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803F2784; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803F2788; // type:object size:0x4 scope:local align:4 data:float +@4523 = .sdata2:0x803F278C; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x803F2790; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x803F2794; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x803F2798; // type:object size:0x4 scope:local align:4 data:float +@4527 = .sdata2:0x803F279C; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata2:0x803F27A0; // type:object size:0x4 scope:local align:4 data:float +@5613 = .sdata2:0x803F27A4; // type:object size:0x4 scope:local align:4 data:float +@6617 = .sdata2:0x803F27A8; // type:object size:0x4 scope:local align:4 data:float +@6618 = .sdata2:0x803F27AC; // type:object size:0x4 scope:local align:4 data:float +@6619 = .sdata2:0x803F27B0; // type:object size:0x4 scope:local align:4 data:float +@6797 = .sdata2:0x803F27B4; // type:object size:0x4 scope:local align:4 data:float +@6895 = .sdata2:0x803F27B8; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F27C0; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803F27C4; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803F27C8; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F27CC; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803F27D0; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803F27D4; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F27D8; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803F27DC; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F27E0; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803F27E4; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803F27E8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F27EC; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803F27F0; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803F27F4; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F27F8; // type:object size:0x8 scope:local align:8 data:double +@1108 = .sdata2:0x803F2800; // type:object size:0x8 scope:local align:8 data:double +@772 = .sdata2:0x803F2808; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F280C; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F2810; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F2814; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F2818; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F281C; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F2820; // type:object size:0x4 scope:local align:4 data:float +@809 = .sdata2:0x803F2828; // type:object size:0x8 scope:local align:8 data:double +@829 = .sdata2:0x803F2830; // type:object size:0x4 scope:local align:4 data:float +@873 = .sdata2:0x803F2834; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F2838; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803F283C; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F2840; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F2844; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F2848; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803F284C; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F2850; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F2854; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F2858; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F285C; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803F2860; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803F2864; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata2:0x803F2868; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F286C; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F2870; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F2874; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F2878; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F287C; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F2880; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803F2884; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803F2888; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803F288C; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F2890; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803F2898; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F289C; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F28A0; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F28A4; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F28A8; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F28AC; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F28B0; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803F28B4; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F28B8; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F28BC; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F28C0; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803F28C4; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F28C8; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F28CC; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F28D0; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F28D4; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F28D8; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F28DC; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F28E0; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F28E4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F28E8; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F28EC; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F28F0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F28F4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F28F8; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F28FC; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F2900; // type:object size:0x8 scope:local align:8 data:double +@1932 = .sdata2:0x803F2908; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F290C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F2910; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803F2914; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F2918; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F291C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F2920; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F2924; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F2928; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F292C; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F2930; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F2934; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F2938; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F293C; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F2940; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F2944; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F2948; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F294C; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F2950; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F2954; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F2958; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F295C; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F2960; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803F2964; // type:object size:0x4 scope:local align:4 data:float +@2612 = .sdata2:0x803F2968; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803F2970; // type:object size:0x8 scope:local align:8 data:double +@1217 = .sdata2:0x803F2978; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803F297C; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F2980; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F2984; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F2988; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803F2990; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803F2998; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F29A0; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F29A8; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F29B0; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803F29B4; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F29B8; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803F29BC; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803F29C0; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803F29C4; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803F29C8; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803F29CC; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F29D0; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F29D4; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F29D8; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F29DC; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F29E0; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803F29E8; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F29EC; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803F29F0; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803F29F4; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F29F8; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F29FC; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F2A00; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F2A04; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F2A08; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803F2A10; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803F2A18; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F2A1C; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F2A20; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803F2A24; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F2A28; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803F2A2C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803F2A30; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803F2A34; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata2:0x803F2A38; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803F2A40; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F2A44; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata2:0x803F2A48; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata2:0x803F2A4C; // type:object size:0x4 scope:local align:4 data:float +@774 = .sdata2:0x803F2A50; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F2A58; // type:object size:0x8 scope:local align:8 data:double +@893 = .sdata2:0x803F2A60; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F2A68; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F2A6C; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803F2A70; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F2A74; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803F2A78; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F2A7C; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803F2A80; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803F2A88; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803F2A90; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803F2A94; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803F2A98; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803F2A9C; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F2AA0; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F2AA4; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F2AA8; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803F2AB0; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803F2AB4; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803F2AB8; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803F2ABC; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803F2AC0; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803F2AC4; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803F2AC8; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803F2ACC; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803F2AD0; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F2AD4; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F2AD8; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803F2ADC; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803F2AE0; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F2AE8; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803F2AEC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803F2AF0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F2AF4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F2AF8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F2AFC; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F2B00; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803F2B04; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803F2B08; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803F2B10; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803F2B18; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803F2B1C; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803F2B20; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803F2B24; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803F2B28; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803F2B30; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803F2B34; // type:object size:0x4 scope:local align:4 data:float +@203 = .sdata2:0x803F2B38; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x803F2B3C; // type:object size:0x4 scope:local align:4 data:float +@207 = .sdata2:0x803F2B40; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803F2B48; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803F2B4C; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803F2B50; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803F2B54; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803F2B58; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803F2B5C; // type:object size:0x4 scope:local align:4 data:float +@111 = .sdata2:0x803F2B60; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803F2B68; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x803F2B70; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x803F2B78; // type:object size:0x4 scope:local align:4 data:float +@112 = .sdata2:0x803F2B7C; // type:object size:0x4 scope:local align:4 data:float +@114 = .sdata2:0x803F2B80; // type:object size:0x8 scope:local align:8 data:double +@15 = .sdata2:0x803F2B88; // type:object size:0x4 scope:local align:4 data:4byte +@16 = .sdata2:0x803F2B8C; // type:object size:0x4 scope:local align:4 data:4byte +@17 = .sdata2:0x803F2B90; // type:object size:0x4 scope:local align:4 data:4byte +@158 = .sdata2:0x803F2B94; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F2B98; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x803F2B9C; // type:object size:0x4 scope:local align:4 data:float +@162 = .sdata2:0x803F2BA0; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x803F2BA8; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F2BB0; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x803F2BB8; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F2BBC; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803F2BC0; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803F2BC8; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803F2BD0; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F2BD8; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x803F2BE0; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F2BE8; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F2BEC; // type:object size:0x4 scope:local align:4 data:float +@189 = .sdata2:0x803F2BF0; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x803F2BF4; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x803F2BF8; // type:object size:0x4 scope:local align:4 data:float +@192 = .sdata2:0x803F2BFC; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803F2C00; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803F2C04; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F2C08; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803F2C10; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803F2C18; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803F2C20; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803F2C28; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803F2C30; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803F2C34; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F2C38; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803F2C40; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803F2C48; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803F2C50; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803F2C58; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803F2C60; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803F2C68; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803F2C70; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803F2C78; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803F2C80; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803F2C88; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803F2C90; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803F2C98; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803F2CA0; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803F2CA8; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F2CB0; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803F2CB8; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803F2CC0; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803F2CC8; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803F2CD0; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F2CD8; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803F2CE0; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803F2CE8; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803F2CF0; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803F2CF8; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803F2D00; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803F2D08; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803F2D10; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803F2D18; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803F2D20; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803F2D28; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803F2D30; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803F2D38; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803F2D40; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803F2D48; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803F2D50; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803F2D58; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803F2D60; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803F2D68; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803F2D70; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803F2D78; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803F2D80; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803F2D88; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803F2D90; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803F2D98; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803F2DA0; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803F2DA8; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803F2DB0; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803F2DB8; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803F2DC0; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803F2DC8; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803F2DD0; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803F2DD8; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803F2DE0; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803F2DE8; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803F2DF0; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F2DF8; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803F2E00; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803F2E08; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803F2E10; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803F2E18; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803F2E20; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803F2E28; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803F2E30; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803F2E38; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803F2E40; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F2E48; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803F2E4C; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803F2E50; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F2E54; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803F2E58; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803F2E5C; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803F2E60; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F2E64; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803F2E68; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803F2E6C; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803F2E70; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803F2E78; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803F2E80; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803F2E88; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803F2E90; // type:object size:0x8 scope:local align:8 data:double diff --git a/config/GPIP01_00/build.sha1 b/config/GPIP01_00/build.sha1 new file mode 100644 index 00000000..f8d95e3a --- /dev/null +++ b/config/GPIP01_00/build.sha1 @@ -0,0 +1 @@ +e5794ffe8ac72c3ead3849edbd2f27ea5e0ed440 build/GPIP01_00/main.dol diff --git a/config/GPIP01_00/config.yml b/config/GPIP01_00/config.yml new file mode 100644 index 00000000..c0c42792 --- /dev/null +++ b/config/GPIP01_00/config.yml @@ -0,0 +1,10 @@ +object: orig/GPIP01_00/sys/main.dol +hash: e5794ffe8ac72c3ead3849edbd2f27ea5e0ed440 + +# Generated from dataDir/build.map +symbols: config/GPIP01_00/symbols.txt +splits: config/GPIP01_00/splits.txt + +mw_comment_version: 8 # GC Linker 1.2.5 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPIP01_00/splits.txt b/config/GPIP01_00/splits.txt new file mode 100644 index 00000000..dcc15ebe --- /dev/null +++ b/config/GPIP01_00/splits.txt @@ -0,0 +1,3136 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:4 + .text type:code align:32 + .ctors type:rodata align:32 + .dtors type:rodata align:32 + .rodata type:rodata align:32 + .data type:data align:16 + .bss type:bss align:8 + .sdata type:data align:32 + .sbss type:bss align:8 + .sdata2 type:rodata align:32 + +sysBootup.cpp: + .text start:0x800055C0 end:0x80005660 + .data start:0x80224BC0 end:0x80224BE0 + +os/__start.c: + .init start:0x80003100 end:0x80003330 + +jaudio/dummyprobe.c: + .text start:0x80005660 end:0x80005700 + +jaudio/memory.c: + .text start:0x80005700 end:0x800057E0 + +jaudio/aictrl.c: + .text start:0x800057E0 end:0x80005FC0 + .rodata start:0x80223D80 end:0x80223D98 + .bss start:0x802EC380 end:0x802EC3A0 + .sbss start:0x803EC6C0 end:0x803EC6F0 + .sdata2 start:0x803ED120 end:0x803ED130 + +jaudio/sample.c: + .text start:0x80005FC0 end:0x80006260 + +jaudio/dummyrom.c: + .text start:0x80006260 end:0x80006380 + .bss start:0x803DB210 end:0x803DB240 align:4 common + .sbss start:0x803EC6F0 end:0x803EC700 + +jaudio/audiothread.c: + .text start:0x80006380 end:0x80006840 + .rodata start:0x80223D98 end:0x80223DA8 + .bss start:0x802EC3A0 end:0x802EC400 + .bss start:0x803DB240 end:0x803DFEA0 align:4 common + .sbss start:0x803EC700 end:0x803EC720 + .sdata2 start:0x803ED130 end:0x803ED138 + +jaudio/streamctrl.c: + .text start:0x80006840 end:0x80006BE0 + .data start:0x80224BE0 end:0x80224CB0 + .bss start:0x802EC400 end:0x802EC470 + .sdata2 start:0x803ED138 end:0x803ED148 + +jaudio/dspbuf.c: + .text start:0x80006BE0 end:0x80006F40 + .rodata start:0x80223DA8 end:0x80223DC0 + .bss start:0x802EC470 end:0x802EC480 + .sbss start:0x803EC720 end:0x803EC730 + +jaudio/cpubuf.c: + .text start:0x80006F40 end:0x80007180 + .bss start:0x802EC480 end:0x802EC490 + .sbss start:0x803EC730 end:0x803EC738 + +jaudio/playercall.c: + .text start:0x80007180 end:0x80007440 + .bss start:0x802EC490 end:0x802EC550 + +jaudio/dvdthread.c: + .text start:0x80007440 end:0x800081E0 + .data start:0x80224CB0 end:0x80224CE0 + .bss start:0x802EC550 end:0x802F5260 + .sbss start:0x803EC738 end:0x803EC780 + +jaudio/rate.c: + .sdata start:0x803E1C60 end:0x803E1C70 + .sbss start:0x803EC780 end:0x803EC788 + +jaudio/audiomesg.c: + .text start:0x800081E0 end:0x80008340 + +jaudio/stackchecker.c: + .text start:0x80008340 end:0x80008380 + +jaudio/dspproc.c: + .text start:0x80008380 end:0x80008520 + .sdata start:0x803E1C70 end:0x803E1C78 + .sbss start:0x803EC788 end:0x803EC790 + .sdata2 start:0x803ED148 end:0x803ED150 + +jaudio/dsptask.c: + .text start:0x80008520 end:0x80008820 + .data start:0x80224CE0 end:0x80226740 + .bss start:0x802F5260 end:0x802F7340 + .sbss start:0x803EC790 end:0x803EC798 + +jaudio/osdsp.c: + .text start:0x80008820 end:0x80008920 + .rodata start:0x80223DC0 end:0x80223E00 + .sbss start:0x803EC798 end:0x803EC7A0 + +jaudio/osdsp_task.c: + .text start:0x80008920 end:0x80008D80 + .rodata start:0x80223E00 end:0x80223EC0 + .bss start:0x802F7340 end:0x802F7360 + .sbss start:0x803EC7A0 end:0x803EC7B0 + +jaudio/driverinterface.c: + .text start:0x80008D80 end:0x8000A680 + .data start:0x80226740 end:0x802267D8 + .bss start:0x802F7360 end:0x8030B4E0 + .sdata start:0x803E1C78 end:0x803E1C80 + .sbss start:0x803EC7B0 end:0x803EC7C0 + .sdata2 start:0x803ED150 end:0x803ED170 + +jaudio/dspdriver.c: + .text start:0x8000A680 end:0x8000AEE0 + .data start:0x802267D8 end:0x80226800 + .bss start:0x8030B4E0 end:0x8030B8E0 + .sbss start:0x803EC7C0 end:0x803EC7C8 + .sdata2 start:0x803ED170 end:0x803ED180 + +jaudio/dspinterface.c: + .text start:0x8000AEE0 end:0x8000B6C0 + .data start:0x80226800 end:0x80226C60 + .bss start:0x8030B8E0 end:0x80311960 + .sdata start:0x803E1C80 end:0x803E1C90 + +jaudio/fxinterface.c: + .text start:0x8000B6C0 end:0x8000B800 + .data start:0x80226C60 end:0x80226C78 + +jaudio/tables.c: + .data start:0x80226C78 end:0x80226E78 + +jaudio/bankread.c: + .text start:0x8000B800 end:0x8000BC00 + .bss start:0x80311960 end:0x80311D60 + +jaudio/waveread.c: + .text start:0x8000BC00 end:0x8000C260 + .bss start:0x80311D60 end:0x80312560 + .bss start:0x803DFEA0 end:0x803DFEE0 align:4 common + +jaudio/connect.c: + .text start:0x8000C260 end:0x8000C9C0 + .bss start:0x80312560 end:0x80312960 + +jaudio/bankdrv.c: + .text start:0x8000C9C0 end:0x8000D140 + .data start:0x80226E78 end:0x80226E88 + .sdata2 start:0x803ED180 end:0x803ED1A8 + +jaudio/random.c: + .text start:0x8000D140 end:0x8000D2A0 + .sdata start:0x803E1C90 end:0x803E1C98 + .sdata2 start:0x803ED1A8 end:0x803ED1B8 + +jaudio/aramcall.c: + .text start:0x8000D2A0 end:0x8000D620 + .data start:0x80226E88 end:0x80226EC8 + .bss start:0x803DFEE0 end:0x803DFF0C align:4 common + .sdata start:0x803E1C98 end:0x803E1CA0 + .sbss start:0x803EC7C8 end:0x803EC7D0 + +jaudio/ja_calc.c: + .text start:0x8000D620 end:0x8000D7E0 + .bss start:0x80312960 end:0x80312D68 + .sdata2 start:0x803ED1B8 end:0x803ED1E8 + +jaudio/fat.c: + .text start:0x8000D7E0 end:0x8000DD00 + .bss start:0x80312D68 end:0x80314168 + .sbss start:0x803EC7D0 end:0x803EC7E0 + +jaudio/cmdstack.c: + .text start:0x8000DD00 end:0x8000DF80 + .sbss start:0x803EC7E0 end:0x803EC7F0 + +jaudio/virload.c: + .text start:0x8000DF80 end:0x8000E3C0 + .bss start:0x80314168 end:0x80314800 + .sbss start:0x803EC7F0 end:0x803EC800 + .sdata2 start:0x803ED1E8 end:0x803ED1F0 + +jaudio/heapctrl.c: + .text start:0x8000E3C0 end:0x8000EE00 + .rodata start:0x80223EC0 end:0x80223ED0 + .bss start:0x80314800 end:0x80324800 + .sbss start:0x803EC800 end:0x803EC808 + +jaudio/jammain_2.c: + .text start:0x8000EE00 end:0x80013240 + .data start:0x80226EC8 end:0x80227188 + .bss start:0x80324800 end:0x80324920 + .sdata start:0x803E1CA0 end:0x803E1CA8 + .sbss start:0x803EC808 end:0x803EC818 + .sdata2 start:0x803ED1F0 end:0x803ED238 + +jaudio/midplay.c: + .data start:0x80227188 end:0x80227588 + +jaudio/noteon.c: + .text start:0x80013240 end:0x800137A0 + .sdata2 start:0x803ED238 end:0x803ED240 + +jaudio/seqsetup.c: + .text start:0x800137A0 end:0x800145C0 + .bss start:0x80324920 end:0x80368560 + .sbss start:0x803EC818 end:0x803EC828 + .sdata2 start:0x803ED240 end:0x803ED250 + +jaudio/centcalc.c: + .text start:0x800145C0 end:0x800146A0 + .data start:0x80227588 end:0x80227688 + .sdata2 start:0x803ED250 end:0x803ED268 + +jaudio/jamosc.c: + .text start:0x800146A0 end:0x80014B40 + .data start:0x80227688 end:0x80227770 + .sdata2 start:0x803ED268 end:0x803ED270 + +jaudio/oneshot.c: + .text start:0x80014B40 end:0x80016300 + .data start:0x80227770 end:0x802277B0 + .sdata start:0x803E1CA8 end:0x803E1CB0 + .sdata2 start:0x803ED270 end:0x803ED2A0 + +jaudio/interface.c: + .text start:0x80016300 end:0x80016460 + .bss start:0x80368560 end:0x80368570 + .sdata start:0x803E1CB0 end:0x803E1CB8 + .sbss start:0x803EC828 end:0x803EC830 + +jaudio/verysimple.c: + .text start:0x80016460 end:0x80016E60 + .rodata start:0x80223ED0 end:0x80224030 + .data start:0x802277B0 end:0x802278C8 + .bss start:0x80368570 end:0x80368648 + .sbss start:0x803EC830 end:0x803EC858 + .sdata2 start:0x803ED2A0 end:0x803ED2B0 + +jaudio/app_inter.c: + .text start:0x80016E60 end:0x80016FE0 + .sbss start:0x803EC858 end:0x803EC860 + +jaudio/pikiinter.c: + .text start:0x80016FE0 end:0x80017B20 + .data start:0x802278C8 end:0x80227F90 + .bss start:0x803DFF0C end:0x803E1A70 align:4 common + .sbss start:0x803EC860 end:0x803EC870 + .sdata2 start:0x803ED2B0 end:0x803ED2D0 + +jaudio/piki_player.c: + .text start:0x80017B20 end:0x80018380 + .bss start:0x80368648 end:0x80368760 + .sbss start:0x803EC870 end:0x803EC8D8 + .sdata2 start:0x803ED2D0 end:0x803ED2E8 + +jaudio/piki_bgm.c: + .text start:0x80018380 end:0x800191A0 + .rodata start:0x80224030 end:0x80224058 + .data start:0x80227F90 end:0x802280A8 + .bss start:0x80368760 end:0x80369498 + .sdata start:0x803E1CB8 end:0x803E1D40 + .sbss start:0x803EC8D8 end:0x803EC8E8 + .sdata2 start:0x803ED2E8 end:0x803ED2F8 + +jaudio/piki_scene.c: + .text start:0x800191A0 end:0x80019B20 + .data start:0x802280A8 end:0x80228310 + .sdata start:0x803E1D40 end:0x803E1D50 + .sbss start:0x803EC8E8 end:0x803EC910 + .sdata2 start:0x803ED2F8 end:0x803ED300 + +jaudio/pikidemo.c: + .text start:0x80019B20 end:0x8001AE40 + .data start:0x80228310 end:0x80228DD0 + .bss start:0x80369498 end:0x80369508 + .sdata start:0x803E1D50 end:0x803E1D88 + .sbss start:0x803EC910 end:0x803EC938 + .sdata2 start:0x803ED300 end:0x803ED318 + +jaudio/file_seq.c: + .text start:0x8001AE40 end:0x8001B3C0 + .bss start:0x80369508 end:0x8036DD20 + .sdata start:0x803E1D88 end:0x803E1D90 + .sbss start:0x803EC938 end:0x803EC940 + +jaudio/cmdqueue.c: + .text start:0x8001B3C0 end:0x8001B5C0 + +jaudio/filter3d.c: + .text start:0x8001B5C0 end:0x8001B640 + .sdata2 start:0x803ED318 end:0x803ED320 + +jaudio/syncstream.c: + .text start:0x8001B640 end:0x8001D4E0 + .data start:0x80228DD0 end:0x80228E40 + .bss start:0x8036DD20 end:0x8038F788 + .sdata start:0x803E1D90 end:0x803E1D98 + .sbss start:0x803EC940 end:0x803EC948 + .sdata2 start:0x803ED320 end:0x803ED338 + +jaudio/pikiseq.c: + .data start:0x80228E40 end:0x80229120 + +jaudio/bankloader.c: + .text start:0x8001D4E0 end:0x8001D5C0 + +jaudio/interleave.c: + .text start:0x8001D5C0 end:0x8001D7E0 + .bss start:0x8038F788 end:0x8038F7C0 + .sdata start:0x803E1D98 end:0x803E1DA0 + +jaudio/hvqm_play.c: + .text start:0x8001D7E0 end:0x8001E7EC + .rodata start:0x80224058 end:0x80224080 + .bss start:0x8038F7C0 end:0x80390B80 + .bss start:0x803E1A70 end:0x803E1C50 align:4 common + .sdata start:0x803E1DA0 end:0x803E1DB0 + .sbss start:0x803EC948 end:0x803EC9A0 + .sdata2 start:0x803ED338 end:0x803ED340 + +hvqm4dec/hvqm4dec.c: + .text start:0x8001E7EC end:0x80024294 + .rodata start:0x80224080 end:0x80224098 + .data start:0x80229120 end:0x80229130 + .bss start:0x80390B80 end:0x803915C0 + .sbss start:0x803EC9A0 end:0x803EC9A8 + +sysCommon/ayuStack.cpp: + .text start:0x80024294 end:0x800249AC + +sysCommon/baseApp.cpp: + .text start:0x800249AC end:0x80024C60 + .data start:0x80229130 end:0x802291F8 + .sdata start:0x803E1DB0 end:0x803E1DF0 + +sysCommon/stream.cpp: + .text start:0x80024C60 end:0x800250B0 + .data start:0x802291F8 end:0x80229250 + .sdata start:0x803E1DF0 end:0x803E1E00 + +sysCommon/streamBufferedInput.cpp: + .text start:0x800250B0 end:0x800254A0 + .data start:0x80229250 end:0x802293A0 + .sdata start:0x803E1E00 end:0x803E1E20 + +sysCommon/string.cpp: + .text start:0x800254A0 end:0x800254C4 + +sysCommon/graphics.cpp: + .text start:0x800254C4 end:0x8002960C + .data start:0x802293A0 end:0x8022A100 + .sdata start:0x803E1E20 end:0x803E1F20 + .sdata2 start:0x803ED340 end:0x803ED3A8 + +sysCommon/grLight.cpp: + .text start:0x8002960C end:0x80029B5C + .data start:0x8022A100 end:0x8022A180 + .sdata start:0x803E1F20 end:0x803E1F78 + .sdata2 start:0x803ED3A8 end:0x803ED3F8 + +sysCommon/shapeBase.cpp: + .text start:0x80029B5C end:0x800356FC + .ctors start:0x80223D04 end:0x80223D08 + .rodata start:0x80224098 end:0x802240F8 + .data start:0x8022A180 end:0x8022A838 + .bss start:0x803915C0 end:0x803956C0 + .sdata start:0x803E1F78 end:0x803E2118 + .sbss start:0x803EC9A8 end:0x803EC9B8 + .sdata2 start:0x803ED3F8 end:0x803ED468 + +sysCommon/shpLightFlares.cpp: + .text start:0x800356FC end:0x80035CE8 + .data start:0x8022A838 end:0x8022A850 + .sdata start:0x803E2118 end:0x803E2160 + .sdata2 start:0x803ED468 end:0x803ED488 + +sysCommon/shpObjColl.cpp: + .text start:0x80035CE8 end:0x80036038 + .data start:0x8022A850 end:0x8022A860 + .sdata start:0x803E2160 end:0x803E2198 + .sdata2 start:0x803ED488 end:0x803ED490 + +sysCommon/shpRoutes.cpp: + .text start:0x80036038 end:0x80037130 + .data start:0x8022A860 end:0x8022AA50 + .sdata start:0x803E2198 end:0x803E2238 + .sdata2 start:0x803ED490 end:0x803ED4B8 + +sysCommon/sysMath.cpp: + .text start:0x80037130 end:0x8003D980 + .sdata start:0x803E2238 end:0x803E2250 + .sdata2 start:0x803ED4B8 end:0x803ED4F8 + +sysCommon/matMath.cpp: + .text start:0x8003D980 end:0x8003E9F8 + .ctors start:0x80223D08 end:0x80223D0C + .bss start:0x803956C0 end:0x8039D700 + .sdata start:0x803E2250 end:0x803E2258 + .sdata2 start:0x803ED4F8 end:0x803ED508 + +sysCommon/stdSystem.cpp: + .text start:0x8003E9F8 end:0x800401A0 + .data start:0x8022AA50 end:0x8022ABE0 + .sdata start:0x803E2258 end:0x803E22C0 + .sdata2 start:0x803ED508 end:0x803ED510 + +sysCommon/node.cpp: + .text start:0x800401A0 end:0x8004054C + .data start:0x8022ABE0 end:0x8022ACB0 + .sdata start:0x803E22C0 end:0x803E2300 + .sbss start:0x803EC9B8 end:0x803EC9C0 + +sysCommon/timers.cpp: + .text start:0x8004054C end:0x80040578 + +sysCommon/controller.cpp: + .text start:0x80040578 end:0x80040744 + .data start:0x8022ACB0 end:0x8022AD48 + .sdata start:0x803E2300 end:0x803E2330 + .sdata2 start:0x803ED510 end:0x803ED520 + +sysCommon/cmdStream.cpp: + .text start:0x80040744 end:0x8004114C + .sbss start:0x803EC9C0 end:0x803EC9C8 + +sysCommon/camera.cpp: + .text start:0x8004114C end:0x800434B4 + .data start:0x8022AD48 end:0x8022AD60 + .sdata start:0x803E2330 end:0x803E23B0 + .sdata2 start:0x803ED520 end:0x803ED578 + +sysCommon/atx.cpp: + .text start:0x800434B4 end:0x80043A24 + .data start:0x8022AD60 end:0x8022AE80 + .sdata start:0x803E23B0 end:0x803E23D8 + +sysCommon/id32.cpp: + .text start:0x80043A24 end:0x80043D5C + +sysDolphin/texture.cpp: + .text start:0x80043D5C end:0x800443A4 + .data start:0x8022AE80 end:0x8022AF20 + .sdata start:0x803E23D8 end:0x803E2410 + .sdata2 start:0x803ED578 end:0x803ED590 + +sysDolphin/system.cpp: + .text start:0x800443A4 end:0x80046BD8 + .ctors start:0x80223D0C end:0x80223D10 + .data start:0x8022AF20 end:0x802A7C58 + .bss start:0x8039D700 end:0x803A2280 + .sdata start:0x803E2410 end:0x803E24E8 + .sbss start:0x803EC9C8 end:0x803EC9F0 + .sdata2 start:0x803ED590 end:0x803ED5B0 + +sysDolphin/sysNew.cpp: + .text start:0x80046BD8 end:0x80046D88 + +sysDolphin/controllerMgr.cpp: + .text start:0x80046D88 end:0x8004708C + .data start:0x802A7C58 end:0x802A7C98 + .bss start:0x803A2280 end:0x803A22B0 + .sdata start:0x803E24E8 end:0x803E24F0 + +sysDolphin/dgxGraphics.cpp: + .text start:0x8004708C end:0x8004C4B4 + .ctors start:0x80223D10 end:0x80223D14 + .data start:0x802A7C98 end:0x802A8460 + .bss start:0x803A22B0 end:0x803A22B8 + .sdata start:0x803E24F0 end:0x803E2578 + .sbss start:0x803EC9F0 end:0x803ECA20 + .sdata2 start:0x803ED5B0 end:0x803ED5E8 + +sysDolphin/gameApp.cpp: + .text start:0x8004C4B4 end:0x8004C4E8 + +plugPikiColin/cardutil.cpp: + .text start:0x8004C4E8 end:0x8004D7AC + .data start:0x802A8460 end:0x802A8488 + .bss start:0x803A22B8 end:0x803A2638 + +plugPikiColin/dynsimulator.cpp: + .text start:0x8004D7AC end:0x8004FBD0 + .rodata start:0x802240F8 end:0x80224158 + .data start:0x802A8488 end:0x802A8570 + .sdata start:0x803E2578 end:0x803E2630 + .sdata2 start:0x803ED5E8 end:0x803ED600 + +plugPikiColin/animMgr.cpp: + .text start:0x8004FBD0 end:0x80051024 + .data start:0x802A8570 end:0x802A86D8 + .sdata start:0x803E2630 end:0x803E26B0 + .sdata2 start:0x803ED600 end:0x803ED618 + +plugPikiColin/gameflow.cpp: + .text start:0x80051024 end:0x80052C20 + .ctors start:0x80223D14 end:0x80223D18 + .data start:0x802A86D8 end:0x802A8E38 + .bss start:0x803A2638 end:0x803A29A0 + .sdata start:0x803E26B0 end:0x803E27D8 + .sbss start:0x803ECA20 end:0x803ECA28 + .sdata2 start:0x803ED618 end:0x803ED670 + +plugPikiColin/game.cpp: + .text start:0x80052C20 end:0x800537F0 + .ctors start:0x80223D18 end:0x80223D1C + .data start:0x802A8E38 end:0x802A90D0 + .bss start:0x803A29A0 end:0x803A2C08 + .sdata start:0x803E27D8 end:0x803E2878 + .sdata2 start:0x803ED670 end:0x803ED678 + +plugPikiColin/gamePrefs.cpp: + .text start:0x800537F0 end:0x8005484C + .rodata start:0x80224158 end:0x80224170 + .data start:0x802A90D0 end:0x802A9190 + .sdata start:0x803E2878 end:0x803E28A0 + +plugPikiColin/gameSetup.cpp: + .text start:0x8005484C end:0x80054D54 + .data start:0x802A9190 end:0x802A9E10 + .sdata start:0x803E28A0 end:0x803E2918 + +plugPikiColin/cardSelect.cpp: + .text start:0x80054D54 end:0x80055424 + .data start:0x802A9E10 end:0x802A9FD0 + .sdata start:0x803E2918 end:0x803E2970 + .sbss start:0x803ECA28 end:0x803ECA30 + .sdata2 start:0x803ED678 end:0x803ED688 + +plugPikiColin/mapSelect.cpp: + .text start:0x80055424 end:0x80056818 + .data start:0x802A9FD0 end:0x802AA290 + .sdata start:0x803E2970 end:0x803E29E8 + .sbss start:0x803ECA30 end:0x803ECA38 + .sdata2 start:0x803ED688 end:0x803ED698 + +plugPikiColin/newPikiGame.cpp: + .text start:0x80056818 end:0x8005ACE8 + .rodata start:0x80224170 end:0x80224198 + .data start:0x802AA290 end:0x802AA830 + .bss start:0x803A2C08 end:0x803A2C48 + .sdata start:0x803E29E8 end:0x803E2B50 + .sbss start:0x803ECA38 end:0x803ECA70 + .sdata2 start:0x803ED698 end:0x803ED700 + +plugPikiColin/introGame.cpp: + .text start:0x8005ACE8 end:0x8005B580 + .data start:0x802AA830 end:0x802AAA88 + .sdata start:0x803E2B50 end:0x803E2C08 + .sbss start:0x803ECA70 end:0x803ECA78 + .sdata2 start:0x803ED700 end:0x803ED720 + +plugPikiColin/gameExit.cpp: + .text start:0x8005B580 end:0x8005B670 + .data start:0x802AAA88 end:0x802AABA8 + .sdata start:0x803E2C08 end:0x803E2C58 + +plugPikiColin/gauges.cpp: + .text start:0x8005B670 end:0x8005CFD8 + .ctors start:0x80223D1C end:0x80223D20 + .data start:0x802AABA8 end:0x802AABC0 + .sdata start:0x803E2C58 end:0x803E2CA8 + .sbss start:0x803ECA78 end:0x803ECA90 + .sdata2 start:0x803ED720 end:0x803ED7A0 + +plugPikiColin/genMapObject.cpp: + .text start:0x8005CFD8 end:0x8005D5E8 + .data start:0x802AABC0 end:0x802AAE08 + .sdata start:0x803E2CA8 end:0x803E2D28 + .sbss start:0x803ECA90 end:0x803ECA98 + .sdata2 start:0x803ED7A0 end:0x803ED7B0 + +plugPikiColin/gui.cpp: + .text start:0x8005D5E8 end:0x8005E970 + .data start:0x802AAE08 end:0x802AAF48 + .sdata start:0x803E2D28 end:0x803E2D78 + .sdata2 start:0x803ED7B0 end:0x803ED7E0 + +plugPikiColin/parameters.cpp: + .text start:0x8005E970 end:0x8005ECE0 + .data start:0x802AAF48 end:0x802AAF78 + .sdata start:0x803E2D78 end:0x803E2D80 + +plugPikiColin/plugPiki.cpp: + .text start:0x8005ECE0 end:0x8005F6F4 + .data start:0x802AAF78 end:0x802AB1E8 + .sdata start:0x803E2D80 end:0x803E2E10 + .sdata2 start:0x803ED7E0 end:0x803ED7F0 + +plugPikiColin/titles.cpp: + .text start:0x8005F6F4 end:0x80061134 + .data start:0x802AB1E8 end:0x802AB4C0 + .sdata start:0x803E2E10 end:0x803E2F00 + .sbss start:0x803ECA98 end:0x803ECAD8 + .sdata2 start:0x803ED7F0 end:0x803ED858 + +plugPikiColin/ninLogo.cpp: + .text start:0x80061134 end:0x80061638 + .data start:0x802AB4C0 end:0x802AB630 + .sdata start:0x803E2F00 end:0x803E2F50 + .sbss start:0x803ECAD8 end:0x803ECAE0 + .sdata2 start:0x803ED858 end:0x803ED870 + +plugPikiColin/mapMgr.cpp: + .text start:0x80061638 end:0x80069674 + .ctors start:0x80223D20 end:0x80223D24 + .data start:0x802AB630 end:0x802ABD48 + .bss start:0x803A2C48 end:0x803A2C60 + .sdata start:0x803E2F50 end:0x803E3190 + .sbss start:0x803ECAE0 end:0x803ECAF8 + .sdata2 start:0x803ED870 end:0x803ED918 + +plugPikiColin/dayMgr.cpp: + .text start:0x80069674 end:0x8006F894 + .data start:0x802ABD48 end:0x802AC5C8 + .sdata start:0x803E3190 end:0x803E3420 + .sdata2 start:0x803ED918 end:0x803ED970 + +plugPikiColin/cinePlayer.cpp: + .text start:0x8006F894 end:0x80072FDC + .data start:0x802AC5C8 end:0x802AC828 + .bss start:0x803A2C60 end:0x803A3060 + .sdata start:0x803E3420 end:0x803E36B8 + .sdata2 start:0x803ED970 end:0x803ED998 + +plugPikiColin/lightPool.cpp: + .text start:0x80072FDC end:0x80073740 + .data start:0x802AC828 end:0x802AC8E0 + .sdata start:0x803E36B8 end:0x803E3718 + .sdata2 start:0x803ED998 end:0x803ED9C8 + +plugPikiColin/memoryCard.cpp: + .text start:0x80073740 end:0x80076CEC + .data start:0x802AC8E0 end:0x802AE5C8 + .bss start:0x803A3060 end:0x803D50E0 + .sdata start:0x803E3718 end:0x803E3768 + +plugPikiColin/moviePlayer.cpp: + .text start:0x80076CEC end:0x80077DA8 + .data start:0x802AE5C8 end:0x802AF198 + .sdata start:0x803E3768 end:0x803E37A8 + .sdata2 start:0x803ED9C8 end:0x803ED9E8 + +plugPikiColin/movSample.cpp: + .text start:0x80077DA8 end:0x80078C68 + .data start:0x802AF198 end:0x802AF3C8 + .bss start:0x803D50E0 end:0x803D6430 + .sdata start:0x803E37A8 end:0x803E37F8 + .sbss start:0x803ECAF8 end:0x803ECB00 + .sdata2 start:0x803ED9E8 end:0x803EDA10 + +plugPikiKando/omake.cpp: + .text start:0x80078C68 end:0x8007B41C + .data start:0x802AF3C8 end:0x802AF4C8 + .sdata start:0x803E37F8 end:0x803E3838 + .sbss start:0x803ECB00 end:0x803ECB08 + .sdata2 start:0x803EDA10 end:0x803EDA68 + +plugPikiKando/radarInfo.cpp: + .text start:0x8007B41C end:0x8007B680 + .data start:0x802AF4C8 end:0x802AF558 + .sdata start:0x803E3838 end:0x803E3878 + .sbss start:0x803ECB08 end:0x803ECB10 + +plugPikiKando/interactBattle.cpp: + .text start:0x8007B680 end:0x8007C754 + .data start:0x802AF558 end:0x802AFA00 + .sdata start:0x803E3878 end:0x803E3910 + .sdata2 start:0x803EDA68 end:0x803EDA78 + +plugPikiKando/interactGrab.cpp: + .text start:0x8007C754 end:0x8007C8B0 + .data start:0x802AFA00 end:0x802AFAC0 + .sdata start:0x803E3910 end:0x803E3940 + .sdata2 start:0x803EDA78 end:0x803EDA80 + +plugPikiKando/interactEtc.cpp: + .text start:0x8007C8B0 end:0x8007C9F0 + .data start:0x802AFAC0 end:0x802AFB78 + .sdata start:0x803E3940 end:0x803E3958 + +plugPikiKando/interactPullout.cpp: + .text start:0x8007C9F0 end:0x8007CCB4 + .data start:0x802AFB78 end:0x802AFBF0 + .sdata start:0x803E3958 end:0x803E3978 + .sdata2 start:0x803EDA80 end:0x803EDA90 + +plugPikiKando/saiEvents.cpp: + .text start:0x8007CCB4 end:0x8007D124 + .data start:0x802AFBF0 end:0x802AFFD8 + .sdata start:0x803E3978 end:0x803E39C8 + .sbss start:0x803ECB10 end:0x803ECB30 + +plugPikiKando/simpleAI.cpp: + .text start:0x8007D124 end:0x8007DE14 + .data start:0x802AFFD8 end:0x802B0460 + .sdata start:0x803E39C8 end:0x803E3A60 + .sdata2 start:0x803EDA90 end:0x803EDAA8 + +plugPikiKando/formationMgr.cpp: + .text start:0x8007DE14 end:0x8007F16C + .data start:0x802B0460 end:0x802B0598 + .sdata start:0x803E3A60 end:0x803E3B20 + .sdata2 start:0x803EDAA8 end:0x803EDB00 + +plugPikiKando/globalShapes.cpp: + .text start:0x8007F16C end:0x8007F270 + .data start:0x802B0598 end:0x802B0638 + .sbss start:0x803ECB30 end:0x803ECB48 + +plugPikiKando/playerState.cpp: + .text start:0x8007F270 end:0x80081AC8 + .rodata start:0x80224198 end:0x802241C8 + .data start:0x802B0638 end:0x802B06E0 + .sdata start:0x803E3B20 end:0x803E3BA8 + .sbss start:0x803ECB48 end:0x803ECB50 + .sdata2 start:0x803EDB00 end:0x803EDB08 + +plugPikiKando/gameDemo.cpp: + .text start:0x80081AC8 end:0x800826D0 + .data start:0x802B06E0 end:0x802B0A60 + .sdata start:0x803E3BA8 end:0x803E3C20 + .sbss start:0x803ECB50 end:0x803ECB58 + .sdata2 start:0x803EDB08 end:0x803EDB28 + +plugPikiKando/demoInvoker.cpp: + .text start:0x800826D0 end:0x80082FF4 + .sdata2 start:0x803EDB28 end:0x803EDB40 + +plugPikiKando/demoEvent.cpp: + .text start:0x80082FF4 end:0x80083444 + .data start:0x802B0A60 end:0x802B0AA0 + .sbss start:0x803ECB58 end:0x803ECB60 + +plugPikiKando/resultFlag.cpp: + .text start:0x80083444 end:0x80083D18 + .rodata start:0x802241C8 end:0x802241D8 + .data start:0x802B0AA0 end:0x802B0F80 + .sdata start:0x803E3C20 end:0x803E3C30 + +plugPikiKando/aiConstants.cpp: + .text start:0x80083D18 end:0x800841F8 + .data start:0x802B0F80 end:0x802B10A0 + .sdata start:0x803E3C30 end:0x803E3CD8 + .sbss start:0x803ECB60 end:0x803ECB68 + .sdata2 start:0x803EDB40 end:0x803EDB50 + +plugPikiKando/kio.cpp: + .text start:0x800841F8 end:0x80084578 + .sdata start:0x803E3CD8 end:0x803E3CE8 + .sbss start:0x803ECB68 end:0x803ECB78 + +plugPikiKando/keyConfig.cpp: + .text start:0x80084578 end:0x800848A0 + .data start:0x802B10A0 end:0x802B11E0 + .sdata start:0x803E3CE8 end:0x803E3D50 + .sbss start:0x803ECB78 end:0x803ECB80 + +plugPikiKando/aiPerf.cpp: + .text start:0x800848A0 end:0x80086360 + .rodata start:0x802241D8 end:0x802241F0 + .data start:0x802B11E0 end:0x802B16F8 + .sdata start:0x803E3D50 end:0x803E3D98 + .sbss start:0x803ECB80 end:0x803ECBB8 + .sdata2 start:0x803EDB50 end:0x803EDB60 + +plugPikiKando/courseDebug.cpp: + .text start:0x80086360 end:0x80086548 + .data start:0x802B16F8 end:0x802B1808 + .sdata start:0x803E3D98 end:0x803E3DD8 + .sbss start:0x803ECBB8 end:0x803ECBC8 + +plugPikiKando/memStat.cpp: + .text start:0x80086548 end:0x80086B7C + .data start:0x802B1808 end:0x802B18B0 + .sdata start:0x803E3DD8 end:0x803E3E10 + .sbss start:0x803ECBC8 end:0x803ECBD0 + +plugPikiKando/collInfo.cpp: + .text start:0x80086B7C end:0x80089EE4 + .ctors start:0x80223D24 end:0x80223D28 + .data start:0x802B18B0 end:0x802B1930 + .bss start:0x803D6430 end:0x803D6470 + .sdata start:0x803E3E10 end:0x803E3E20 + .sdata2 start:0x803EDB60 end:0x803EDB98 + +plugPikiKando/complexCreature.cpp: + .text start:0x80089EE4 end:0x80089EF8 + +plugPikiKando/creature.cpp: + .text start:0x80089EF8 end:0x8008D80C + .data start:0x802B1930 end:0x802B1AA8 + .bss start:0x803D6470 end:0x803D6C70 + .sdata start:0x803E3E20 end:0x803E3F98 + .sbss start:0x803ECBD0 end:0x803ECBE0 + .sdata2 start:0x803EDB98 end:0x803EDBF8 + +plugPikiKando/creatureCollision.cpp: + .text start:0x8008D80C end:0x8008DF74 + .sdata start:0x803E3F98 end:0x803E3FA0 + .sdata2 start:0x803EDBF8 end:0x803EDC10 + +plugPikiKando/creatureCollPart.cpp: + .text start:0x8008DF74 end:0x8008E184 + .data start:0x802B1AA8 end:0x802B1BE8 + .sdata start:0x803E3FA0 end:0x803E3FE0 + +plugPikiKando/creatureMove.cpp: + .text start:0x8008E184 end:0x8008F87C + .sdata start:0x803E3FE0 end:0x803E4030 + .sdata2 start:0x803EDC10 end:0x803EDC58 + +plugPikiKando/creatureStick.cpp: + .text start:0x8008F87C end:0x80091D78 + .data start:0x802B1BE8 end:0x802B1CC8 + .sdata start:0x803E4030 end:0x803E40B0 + .sdata2 start:0x803EDC58 end:0x803EDC80 + +plugPikiKando/dualCreature.cpp: + .text start:0x80091D78 end:0x800926C0 + .data start:0x802B1CC8 end:0x802B1FF0 + .sdata start:0x803E40B0 end:0x803E4138 + .sdata2 start:0x803EDC80 end:0x803EDCB0 + +plugPikiKando/dynCreature.cpp: + .text start:0x800926C0 end:0x80093E60 + .data start:0x802B1FF0 end:0x802B2270 + .sdata start:0x803E4138 end:0x803E4240 + .sbss start:0x803ECBE0 end:0x803ECBE8 + .sdata2 start:0x803EDCB0 end:0x803EDD08 + +plugPikiKando/eventListener.cpp: + .text start:0x80093E60 end:0x80093F50 + .data start:0x802B2270 end:0x802B2310 + .sdata start:0x803E4240 end:0x803E4260 + +plugPikiKando/fastGrid.cpp: + .text start:0x80093F50 end:0x8009455C + .sdata start:0x803E4260 end:0x803E4270 + .sbss start:0x803ECBE8 end:0x803ECBF0 + +plugPikiKando/ropeCreature.cpp: + .text start:0x8009455C end:0x800948F0 + .data start:0x802B2310 end:0x802B24B0 + .sdata start:0x803E4270 end:0x803E4290 + .sdata2 start:0x803EDD08 end:0x803EDD28 + +plugPikiKando/objectTypes.cpp: + .text start:0x800948F0 end:0x800949CC + .data start:0x802B24B0 end:0x802B27D8 + .sdata start:0x803E4290 end:0x803E4368 + +plugPikiKando/pelletMgr.cpp: + .text start:0x800949CC end:0x80099400 + .rodata start:0x802241F0 end:0x80224210 + .data start:0x802B27D8 end:0x802B3008 + .sdata start:0x803E4368 end:0x803E45B8 + .sbss start:0x803ECBF0 end:0x803ECC00 + .sdata2 start:0x803EDD28 end:0x803EDDB0 + +plugPikiKando/animPellet.cpp: + .text start:0x80099400 end:0x80099BD4 + .data start:0x802B3008 end:0x802B31A8 + .sdata start:0x803E45B8 end:0x803E4648 + .sdata2 start:0x803EDDB0 end:0x803EDDB8 + +plugPikiKando/genPellet.cpp: + .text start:0x80099BD4 end:0x80099EE4 + .data start:0x802B31A8 end:0x802B3280 + .sdata start:0x803E4648 end:0x803E4670 + +plugPikiKando/pelletState.cpp: + .text start:0x80099EE4 end:0x8009AFBC + .data start:0x802B3280 end:0x802B3748 + .sdata start:0x803E4670 end:0x803E4700 + .sdata2 start:0x803EDDB8 end:0x803EDDF0 + +plugPikiKando/workObject.cpp: + .text start:0x8009AFBC end:0x8009F49C + .data start:0x802B3748 end:0x802B4370 + .sdata start:0x803E4700 end:0x803E48A0 + .sbss start:0x803ECC00 end:0x803ECC08 + .sdata2 start:0x803EDDF0 end:0x803EDE50 + +plugPikiKando/routeMgr.cpp: + .text start:0x8009F49C end:0x800A32E0 + .data start:0x802B4370 end:0x802B4430 + .sdata start:0x803E48A0 end:0x803E48E8 + .sbss start:0x803ECC08 end:0x803ECC10 + .sdata2 start:0x803EDE50 end:0x803EDE90 + +plugPikiKando/seMgr.cpp: + .text start:0x800A32E0 end:0x800A39BC + .data start:0x802B4430 end:0x802B45D0 + .sdata start:0x803E48E8 end:0x803E4970 + .sbss start:0x803ECC10 end:0x803ECC18 + .sdata2 start:0x803EDE90 end:0x803EDEA8 + +plugPikiKando/seConstants.cpp: + .text start:0x800A39BC end:0x800A3B14 + .data start:0x802B45D0 end:0x802B46D0 + .sdata start:0x803E4970 end:0x803E49C8 + .sdata2 start:0x803EDEA8 end:0x803EDEB8 + +plugPikiKando/soundMgr.cpp: + .text start:0x800A3B14 end:0x800A52FC + .rodata start:0x80224210 end:0x80224238 + .data start:0x802B46D0 end:0x802B76F0 + .sdata start:0x803E49C8 end:0x803E4A98 + .sbss start:0x803ECC18 end:0x803ECC20 + .sdata2 start:0x803EDEB8 end:0x803EDEE0 + +plugPikiKando/updateMgr.cpp: + .text start:0x800A52FC end:0x800A55C8 + .sbss start:0x803ECC20 end:0x803ECC38 + +plugPikiKando/aiTable.cpp: + .sbss start:0x803ECC38 end:0x803ECC40 + +plugPikiKando/cPlate.cpp: + .text start:0x800A55C8 end:0x800A6C4C + .data start:0x802B76F0 end:0x802B7828 + .sdata start:0x803E4A98 end:0x803E4B78 + .sdata2 start:0x803EDEE0 end:0x803EDF30 + +plugPikiKando/aiStone.cpp: + .text start:0x800A6C4C end:0x800A78B0 + .data start:0x802B7828 end:0x802B7930 + .sdata start:0x803E4B78 end:0x803E4BD8 + .sdata2 start:0x803EDF30 end:0x803EDF80 + +plugPikiKando/aiActions.cpp: + .text start:0x800A78B0 end:0x800A81A0 + .data start:0x802B7930 end:0x802B7C18 + .sdata start:0x803E4BD8 end:0x803E4C60 + .sdata2 start:0x803EDF80 end:0x803EDFB8 + +plugPikiKando/aiAttack.cpp: + .text start:0x800A81A0 end:0x800AA3D4 + .data start:0x802B7C18 end:0x802B7E58 + .sdata start:0x803E4C60 end:0x803E4D18 + .sdata2 start:0x803EDFB8 end:0x803EE018 + +plugPikiKando/aiBore.cpp: + .text start:0x800AA3D4 end:0x800AC1C4 + .rodata start:0x80224238 end:0x80224298 + .data start:0x802B7E58 end:0x802B8280 + .sdata start:0x803E4D18 end:0x803E4D88 + .sdata2 start:0x803EE018 end:0x803EE050 + +plugPikiKando/aiBoMake.cpp: + .text start:0x800AC1C4 end:0x800AC654 + .data start:0x802B8280 end:0x802B83D0 + .sdata start:0x803E4D88 end:0x803E4DA8 + .sdata2 start:0x803EE050 end:0x803EE060 + +plugPikiKando/aiBou.cpp: + .text start:0x800AC654 end:0x800ACD58 + .data start:0x802B83D0 end:0x802B84A0 + .sdata start:0x803E4DA8 end:0x803E4DF0 + .sdata2 start:0x803EE060 end:0x803EE088 + +plugPikiKando/aiBridge.cpp: + .text start:0x800ACD58 end:0x800ADFF4 + .rodata start:0x80224298 end:0x802242A8 + .data start:0x802B84A0 end:0x802B8608 + .sdata start:0x803E4DF0 end:0x803E4E40 + .sdata2 start:0x803EE088 end:0x803EE0D0 + +plugPikiKando/aiBreakWall.cpp: + .text start:0x800ADFF4 end:0x800AEB38 + .data start:0x802B8608 end:0x802B8770 + .sdata start:0x803E4E40 end:0x803E4E80 + .sdata2 start:0x803EE0D0 end:0x803EE108 + +plugPikiKando/aiTransport.cpp: + .text start:0x800AEB38 end:0x800B4428 + .rodata start:0x802242A8 end:0x802242D0 + .data start:0x802B8770 end:0x802B88F0 + .sdata start:0x803E4E80 end:0x803E5060 + .sdata2 start:0x803EE108 end:0x803EE1A8 + +plugPikiKando/aiKinoko.cpp: + .text start:0x800B4428 end:0x800B5540 + .data start:0x802B88F0 end:0x802B8A48 + .sdata start:0x803E5060 end:0x803E50D0 + .sdata2 start:0x803EE1A8 end:0x803EE1F8 + +plugPikiKando/aiChase.cpp: + .text start:0x800B5540 end:0x800B5964 + .data start:0x802B8A48 end:0x802B8B78 + .sdata start:0x803E50D0 end:0x803E5110 + .sdata2 start:0x803EE1F8 end:0x803EE230 + +plugPikiKando/aiCrowd.cpp: + .text start:0x800B5964 end:0x800B7664 + .data start:0x802B8B78 end:0x802B8C88 + .sdata start:0x803E5110 end:0x803E51A8 + .sdata2 start:0x803EE230 end:0x803EE2A0 + +plugPikiKando/aiDecoy.cpp: + .text start:0x800B7664 end:0x800B7E1C + .data start:0x802B8C88 end:0x802B8D98 + .sdata start:0x803E51A8 end:0x803E51F0 + .sdata2 start:0x803EE2A0 end:0x803EE2D8 + +plugPikiKando/aiEnter.cpp: + .text start:0x800B7E1C end:0x800B86E0 + .data start:0x802B8D98 end:0x802B8EA8 + .sdata start:0x803E51F0 end:0x803E5238 + .sdata2 start:0x803EE2D8 end:0x803EE330 + +plugPikiKando/aiEscape.cpp: + .text start:0x800B86E0 end:0x800B8C20 + .data start:0x802B8EA8 end:0x802B8FE8 + .sdata start:0x803E5238 end:0x803E5290 + .sdata2 start:0x803EE330 end:0x803EE370 + +plugPikiKando/aiExit.cpp: + .text start:0x800B8C20 end:0x800B9178 + .data start:0x802B8FE8 end:0x802B90B8 + .sdata start:0x803E5290 end:0x803E5308 + .sdata2 start:0x803EE370 end:0x803EE3A8 + +plugPikiKando/aiMine.cpp: + .text start:0x800B9178 end:0x800B9790 + .data start:0x802B90B8 end:0x802B91F8 + .sdata start:0x803E5308 end:0x803E5350 + .sdata2 start:0x803EE3A8 end:0x803EE3B8 + +plugPikiKando/aiFormation.cpp: + .text start:0x800B9790 end:0x800BA4B8 + .data start:0x802B91F8 end:0x802B9320 + .sdata start:0x803E5350 end:0x803E53A8 + .sdata2 start:0x803EE3B8 end:0x803EE420 + +plugPikiKando/aiFree.cpp: + .text start:0x800BA4B8 end:0x800BAE20 + .data start:0x802B9320 end:0x802B9438 + .sdata start:0x803E53A8 end:0x803E5400 + .sdata2 start:0x803EE420 end:0x803EE448 + +plugPikiKando/aiGoto.cpp: + .text start:0x800BAE20 end:0x800BB3EC + .data start:0x802B9438 end:0x802B9548 + .sdata start:0x803E5400 end:0x803E5448 + .sdata2 start:0x803EE448 end:0x803EE480 + +plugPikiKando/aiGuard.cpp: + .text start:0x800BB3EC end:0x800BC9B4 + .data start:0x802B9548 end:0x802B9620 + .sdata start:0x803E5448 end:0x803E5498 + .sdata2 start:0x803EE480 end:0x803EE4C8 + +plugPikiKando/aiPick.cpp: + .text start:0x800BC9B4 end:0x800BD21C + .data start:0x802B9620 end:0x802B9830 + .sdata start:0x803E5498 end:0x803E54E8 + .sdata2 start:0x803EE4C8 end:0x803EE4D8 + +plugPikiKando/aiPickCreature.cpp: + .text start:0x800BD21C end:0x800BD528 + .data start:0x802B9830 end:0x802B9A28 + .sdata start:0x803E54E8 end:0x803E5528 + +plugPikiKando/aiPullout.cpp: + .text start:0x800BD528 end:0x800BDEA8 + .data start:0x802B9A28 end:0x802B9C30 + .sdata start:0x803E5528 end:0x803E5588 + .sdata2 start:0x803EE4D8 end:0x803EE500 + +plugPikiKando/aiPush.cpp: + .text start:0x800BDEA8 end:0x800BE8AC + .data start:0x802B9C30 end:0x802B9DA0 + .sdata start:0x803E5588 end:0x803E55C0 + .sdata2 start:0x803EE500 end:0x803EE530 + +plugPikiKando/aiPut.cpp: + .text start:0x800BE8AC end:0x800C08C8 + .data start:0x802B9DA0 end:0x802B9F78 + .sdata start:0x803E55C0 end:0x803E5650 + .sdata2 start:0x803EE530 end:0x803EE578 + +plugPikiKando/aiRandomBoid.cpp: + .text start:0x800C08C8 end:0x800C11A0 + .data start:0x802B9F78 end:0x802BA120 + .sdata start:0x803E5650 end:0x803E56F8 + .sdata2 start:0x803EE578 end:0x803EE5B8 + +plugPikiKando/aiRescue.cpp: + .text start:0x800C11A0 end:0x800C1CDC + .data start:0x802BA120 end:0x802BA240 + .sdata start:0x803E56F8 end:0x803E5758 + .sdata2 start:0x803EE5B8 end:0x803EE5F8 + +plugPikiKando/aiRope.cpp: + .text start:0x800C1CDC end:0x800C2024 + .data start:0x802BA240 end:0x802BA310 + .sdata start:0x803E5758 end:0x803E5798 + .sdata2 start:0x803EE5F8 end:0x803EE618 + +plugPikiKando/aiShoot.cpp: + .text start:0x800C2024 end:0x800C2B0C + .data start:0x802BA310 end:0x802BA4F8 + .sdata start:0x803E5798 end:0x803E57F0 + .sdata2 start:0x803EE618 end:0x803EE648 + +plugPikiKando/aiWatch.cpp: + .text start:0x800C2B0C end:0x800C2F60 + .data start:0x802BA4F8 end:0x802BA670 + .sdata start:0x803E57F0 end:0x803E5848 + .sdata2 start:0x803EE648 end:0x803EE670 + +plugPikiKando/aiWeed.cpp: + .text start:0x800C2F60 end:0x800C399C + .data start:0x802BA670 end:0x802BA770 + .sdata start:0x803E5848 end:0x803E58B0 + .sdata2 start:0x803EE670 end:0x803EE6C0 + +plugPikiKando/aiAction.cpp: + .text start:0x800C399C end:0x800C558C + .data start:0x802BA770 end:0x802BAAF0 + .sdata start:0x803E58B0 end:0x803E5930 + .sdata2 start:0x803EE6C0 end:0x803EE6C8 + +plugPikiKando/pikiInf.cpp: + .text start:0x800C558C end:0x800C6410 + .ctors start:0x80223D28 end:0x80223D2C + .data start:0x802BAAF0 end:0x802BACE8 + .bss start:0x803D6C70 end:0x803D6C98 + .sdata start:0x803E5930 end:0x803E59C0 + .sdata2 start:0x803EE6C8 end:0x803EE6D8 + +plugPikiKando/piki.cpp: + .text start:0x800C6410 end:0x800CD6BC + .ctors start:0x80223D2C end:0x80223D30 + .data start:0x802BACE8 end:0x802BB310 + .bss start:0x803D6C98 end:0x803D6CC8 + .sdata start:0x803E59C0 end:0x803E5AC8 + .sbss start:0x803ECC40 end:0x803ECC48 + .sdata2 start:0x803EE6D8 end:0x803EE768 + +plugPikiKando/odoMeter.cpp: + .text start:0x800CD6BC end:0x800CD808 + .sdata2 start:0x803EE768 end:0x803EE780 + +plugPikiKando/pikidoKill.cpp: + .text start:0x800CD808 end:0x800CDB88 + .sdata2 start:0x803EE780 end:0x803EE790 + +plugPikiKando/pikiMgr.cpp: + .text start:0x800CDB88 end:0x800CEFA0 + .data start:0x802BB310 end:0x802BB580 + .sdata start:0x803E5AC8 end:0x803E5C88 + .sbss start:0x803ECC48 end:0x803ECC50 + .sdata2 start:0x803EE790 end:0x803EE838 + +plugPikiKando/pikiState.cpp: + .text start:0x800CEFA0 end:0x800D874C + .rodata start:0x802242D0 end:0x80224378 + .data start:0x802BB580 end:0x802BCBE0 + .sdata start:0x803E5C88 end:0x803E60D8 + .sdata2 start:0x803EE838 end:0x803EE908 + +plugPikiKando/viewPiki.cpp: + .text start:0x800D874C end:0x800DAAE0 + .rodata start:0x80224378 end:0x80224390 + .data start:0x802BCBE0 end:0x802BCE60 + .bss start:0x803D6CC8 end:0x803D6CD8 + .sdata start:0x803E60D8 end:0x803E61D8 + .sdata2 start:0x803EE908 end:0x803EE990 + +plugPikiKando/conditions.cpp: + .text start:0x800DAAE0 end:0x800DAB6C + .data start:0x802BCE60 end:0x802BCEE0 + .sdata start:0x803E61D8 end:0x803E61F8 + +plugPikiKando/generator.cpp: + .text start:0x800DAB6C end:0x800DEC20 + .data start:0x802BCEE0 end:0x802BD4B8 + .sdata start:0x803E61F8 end:0x803E6350 + .sbss start:0x803ECC50 end:0x803ECC78 + .sdata2 start:0x803EE990 end:0x803EE9C0 + +plugPikiKando/generatorCache.cpp: + .text start:0x800DEC20 end:0x800E00E0 + .data start:0x802BD4B8 end:0x802BD658 + .sdata start:0x803E6350 end:0x803E6390 + .sbss start:0x803ECC78 end:0x803ECC80 + .sdata2 start:0x803EE9C0 end:0x803EE9D0 + +plugPikiKando/objectMgr.cpp: + .text start:0x800E00E0 end:0x800E2E6C + .data start:0x802BD658 end:0x802BD9B8 + .sdata start:0x803E6390 end:0x803E63E8 + .sdata2 start:0x803EE9D0 end:0x803EE9F0 + +plugPikiKando/searchSystem.cpp: + .text start:0x800E2E6C end:0x800E41F0 + .data start:0x802BD9B8 end:0x802BDA30 + .sdata start:0x803E63E8 end:0x803E63F8 + .sdata2 start:0x803EE9F0 end:0x803EEA00 + +plugPikiKando/smartPtr.cpp: + .text start:0x800E41F0 end:0x800E4248 + .data start:0x802BDA30 end:0x802BDA70 + .sdata start:0x803E63F8 end:0x803E6400 + +plugPikiKando/itemGem.cpp: + .text start:0x800E4248 end:0x800E4534 + .data start:0x802BDA70 end:0x802BDB00 + .sdata2 start:0x803EEA00 end:0x803EEA30 + +plugPikiKando/weedsItem.cpp: + .text start:0x800E4534 end:0x800E5C90 + .data start:0x802BDB00 end:0x802BE228 + .sdata start:0x803E6400 end:0x803E64B0 + .sdata2 start:0x803EEA30 end:0x803EEA98 + +plugPikiKando/kusaItem.cpp: + .text start:0x800E5C90 end:0x800E6520 + .data start:0x802BE228 end:0x802BE630 + .sdata start:0x803E64B0 end:0x803E6528 + .sdata2 start:0x803EEA98 end:0x803EEAB0 + +plugPikiKando/fishItem.cpp: + .text start:0x800E6520 end:0x800E6ED0 + .data start:0x802BE630 end:0x802BE8A0 + .sdata start:0x803E6528 end:0x803E65C0 + .sdata2 start:0x803EEAB0 end:0x803EEAE0 + +plugPikiKando/ufoItem.cpp: + .text start:0x800E6ED0 end:0x800E9664 + .rodata start:0x80224390 end:0x80224438 + .data start:0x802BE8A0 end:0x802BED68 + .sdata start:0x803E65C0 end:0x803E6708 + .sdata2 start:0x803EEAE0 end:0x803EEB30 + +plugPikiKando/ufoAnim.cpp: + .text start:0x800E9664 end:0x800EA048 + .data start:0x802BED68 end:0x802BEE98 + .sdata start:0x803E6708 end:0x803E6770 + .sdata2 start:0x803EEB30 end:0x803EEB48 + +plugPikiKando/bombItem.cpp: + .text start:0x800EA048 end:0x800EA5CC + .data start:0x802BEE98 end:0x802BF118 + .sdata start:0x803E6770 end:0x803E67B8 + .sdata2 start:0x803EEB48 end:0x803EEB58 + +plugPikiKando/goalItem.cpp: + .text start:0x800EA5CC end:0x800EC380 + .rodata start:0x80224438 end:0x80224460 + .data start:0x802BF118 end:0x802BF5D0 + .sdata start:0x803E67B8 end:0x803E6868 + .sbss start:0x803ECC80 end:0x803ECC88 + .sdata2 start:0x803EEB58 end:0x803EEBB8 + +plugPikiKando/pikiheadItem.cpp: + .text start:0x800EC380 end:0x800ED0BC + .data start:0x802BF5D0 end:0x802BF960 + .sdata start:0x803E6868 end:0x803E68F0 + .sdata2 start:0x803EEBB8 end:0x803EEBF8 + +plugPikiKando/keyItem.cpp: + .text start:0x800ED0BC end:0x800ED894 + .data start:0x802BF960 end:0x802BFCF8 + .sdata start:0x803E68F0 end:0x803E6950 + .sdata2 start:0x803EEBF8 end:0x803EEC48 + +plugPikiKando/ropeItem.cpp: + .text start:0x800ED894 end:0x800EDC88 + .data start:0x802BFCF8 end:0x802BFEC0 + .sdata start:0x803E6950 end:0x803E6978 + .sdata2 start:0x803EEC48 end:0x803EEC58 + +plugPikiKando/seedItem.cpp: + .text start:0x800EDC88 end:0x800EE1D8 + .data start:0x802BFEC0 end:0x802C0058 + .sdata start:0x803E6978 end:0x803E69A0 + .sdata2 start:0x803EEC58 end:0x803EECB0 + +plugPikiKando/genItem.cpp: + .text start:0x800EE1D8 end:0x800EEBA0 + .data start:0x802C0058 end:0x802C01C0 + .sdata start:0x803E69A0 end:0x803E69E8 + .sdata2 start:0x803EECB0 end:0x803EECC8 + +plugPikiKando/itemAI.cpp: + .text start:0x800EEBA0 end:0x800F2830 + .rodata start:0x80224460 end:0x80224478 + .data start:0x802C01C0 end:0x802C0DB8 + .sdata start:0x803E69E8 end:0x803E6C30 + .sdata2 start:0x803EECC8 end:0x803EED28 + +plugPikiKando/itemMgr.cpp: + .text start:0x800F2830 end:0x800F7810 + .data start:0x802C0DB8 end:0x802C1A80 + .sdata start:0x803E6C30 end:0x803E6DC8 + .sbss start:0x803ECC88 end:0x803ECC90 + .sdata2 start:0x803EED28 end:0x803EED70 + +plugPikiKando/itemObject.cpp: + .text start:0x800F7810 end:0x800F7B68 + .data start:0x802C1A80 end:0x802C2528 + .sdata start:0x803E6DC8 end:0x803E6E30 + +plugPikiKando/mizuItem.cpp: + .text start:0x800F7B68 end:0x800F7D44 + .data start:0x802C2528 end:0x802C27A0 + .sdata start:0x803E6E30 end:0x803E6E68 + .sdata2 start:0x803EED70 end:0x803EED78 + +plugPikiKando/paniItemAnimator.cpp: + .text start:0x800F7D44 end:0x800F7FE8 + .data start:0x802C27A0 end:0x802C2878 + .sdata start:0x803E6E68 end:0x803E6EC0 + +plugPikiKando/genNavi.cpp: + .text start:0x800F7FE8 end:0x800F81A0 + .data start:0x802C2878 end:0x802C2958 + .sdata start:0x803E6EC0 end:0x803E6EE8 + +plugPikiKando/navi.cpp: + .text start:0x800F81A0 end:0x80100FF8 + .data start:0x802C2958 end:0x802C2F40 + .sdata start:0x803E6EE8 end:0x803E71E8 + .sbss start:0x803ECC90 end:0x803ECCA0 + .sdata2 start:0x803EED78 end:0x803EEEB8 + +plugPikiKando/naviState.cpp: + .text start:0x80100FF8 end:0x8010AF98 + .rodata start:0x80224478 end:0x80224498 + .data start:0x802C2F40 end:0x802C4368 + .sdata start:0x803E71E8 end:0x803E75E0 + .sdata2 start:0x803EEEB8 end:0x803EEF98 + +plugPikiKando/naviDemoState.cpp: + .text start:0x8010AF98 end:0x8010CD24 + .data start:0x802C4368 end:0x802C4A48 + .sdata start:0x803E75E0 end:0x803E7690 + .sdata2 start:0x803EEF98 end:0x803EEFF0 + +plugPikiKando/gameCoreSection.cpp: + .text start:0x8010CD24 end:0x80111CCC + .data start:0x802C4A48 end:0x802C4DB8 + .sdata start:0x803E7690 end:0x803E77A0 + .sbss start:0x803ECCA0 end:0x803ECCD0 + .sdata2 start:0x803EEFF0 end:0x803EF018 + +plugPikiKando/gmWin.cpp: + .text start:0x80111CCC end:0x80112370 + .sbss start:0x803ECCD0 end:0x803ECCD8 + +plugPikiKando/gameStat.cpp: + .text start:0x80112370 end:0x8011257C + .ctors start:0x80223D30 end:0x80223D34 + .bss start:0x803D6CD8 end:0x803D6D60 + .sbss start:0x803ECCD8 end:0x803ECCF0 + +plugPikiKando/kmath.cpp: + .text start:0x8011257C end:0x8011301C + .sdata start:0x803E77A0 end:0x803E77A8 + .sdata2 start:0x803EF018 end:0x803EF070 + +plugPikiKando/uteffect.cpp: + .text start:0x8011301C end:0x80115A44 + .data start:0x802C4DB8 end:0x802C5640 + .sdata start:0x803E77A8 end:0x803E78C0 + .sbss start:0x803ECCF0 end:0x803ECCF8 + .sdata2 start:0x803EF070 end:0x803EF0A0 + +plugPikiKando/kontroller.cpp: + .text start:0x80115A44 end:0x80115F38 + .data start:0x802C5640 end:0x802C5730 + .sdata start:0x803E78C0 end:0x803E78F8 + .sbss start:0x803ECCF8 end:0x803ECD00 + +plugPikiKando/mapcode.cpp: + .text start:0x80115F38 end:0x80115FC8 + .sdata2 start:0x803EF0A0 end:0x803EF0A8 + +plugPikiKando/utkando.cpp: + .text start:0x80115FC8 end:0x8011707C + .sdata start:0x803E78F8 end:0x803E7918 + .sdata2 start:0x803EF0A8 end:0x803EF0C8 + +plugPikiKando/naviMgr.cpp: + .text start:0x8011707C end:0x80117714 + .data start:0x802C5730 end:0x802C5920 + .sdata start:0x803E7918 end:0x803E7970 + .sbss start:0x803ECD00 end:0x803ECD08 + +plugPikiKando/genMapParts.cpp: + .text start:0x80117714 end:0x80118360 + .data start:0x802C5920 end:0x802C5A98 + .sdata start:0x803E7970 end:0x803E7A48 + .sbss start:0x803ECD08 end:0x803ECD10 + .sdata2 start:0x803EF0C8 end:0x803EF0D8 + +plugPikiKando/mapParts.cpp: + .text start:0x80118360 end:0x80118BBC + .data start:0x802C5A98 end:0x802C5DA8 + .sdata start:0x803E7A48 end:0x803E7AD0 + .sdata2 start:0x803EF0D8 end:0x803EF0E8 + +plugPikiKando/panipikianimator.cpp: + .text start:0x80118BBC end:0x801198C8 + .data start:0x802C5DA8 end:0x802C6080 + .sdata start:0x803E7AD0 end:0x803E7D18 + +plugPikiKando/actor.cpp: + .text start:0x801198C8 end:0x8011996C + +plugPikiKando/actorMgr.cpp: + .text start:0x8011996C end:0x801199E8 + .sbss start:0x803ECD10 end:0x803ECD18 + +plugPikiKando/genActor.cpp: + .text start:0x801199E8 end:0x80119B9C + .data start:0x802C6080 end:0x802C6168 + .sdata start:0x803E7D18 end:0x803E7D40 + +plugPikiKando/pikiInfo.cpp: + .text start:0x80119B9C end:0x80119BF4 + .sbss start:0x803ECD18 end:0x803ECD20 + +plugPikiKando/plantMgr.cpp: + .text start:0x80119BF4 end:0x8011B000 + .data start:0x802C6168 end:0x802C6890 + .sdata start:0x803E7D40 end:0x803E7EA8 + .sbss start:0x803ECD20 end:0x803ECD28 + .sdata2 start:0x803EF0E8 end:0x803EF120 + +plugPikiKando/paniPlantAnimator.cpp: + .text start:0x8011B000 end:0x8011B184 + .data start:0x802C6890 end:0x802C6948 + .sdata start:0x803E7EA8 end:0x803E7EE0 + +plugPikiNakata/genteki.cpp: + .text start:0x8011B184 end:0x8011B564 + .data start:0x802C6948 end:0x802C6A18 + .sdata start:0x803E7EE0 end:0x803E7F08 + +plugPikiNakata/nakatacode.cpp: + .text start:0x8011B564 end:0x8011B59C + .sbss start:0x803ECD28 end:0x803ECD30 + +plugPikiNakata/nlibfunction.cpp: + .text start:0x8011B59C end:0x8011BB38 + .data start:0x802C6A18 end:0x802C6B28 + .sdata start:0x803E7F08 end:0x803E7F30 + .sdata2 start:0x803EF120 end:0x803EF130 + +plugPikiNakata/nlibgeometry.cpp: + .text start:0x8011BB38 end:0x8011D2B4 + .data start:0x802C6B28 end:0x802C6C18 + .sdata start:0x803E7F30 end:0x803E7F80 + .sdata2 start:0x803EF130 end:0x803EF158 + +plugPikiNakata/nlibgeometry3d.cpp: + .text start:0x8011D2B4 end:0x8011D814 + .data start:0x802C6C18 end:0x802C6C38 + .sdata start:0x803E7F80 end:0x803E7FA0 + +plugPikiNakata/nlibgraphics.cpp: + .text start:0x8011D814 end:0x8011DA00 + .sdata start:0x803E7FA0 end:0x803E7FB8 + .sdata2 start:0x803EF158 end:0x803EF160 + +plugPikiNakata/nlibmath.cpp: + .text start:0x8011DA00 end:0x8011DD18 + .data start:0x802C6C38 end:0x802C7458 + .sdata start:0x803E7FB8 end:0x803E7FC8 + .sdata2 start:0x803EF160 end:0x803EF180 + +plugPikiNakata/nlibspline.cpp: + .text start:0x8011DD18 end:0x8011DFB0 + +plugPikiNakata/nlibsystem.cpp: + .text start:0x8011DFB0 end:0x8011EE10 + .data start:0x802C7458 end:0x802C7548 + .sdata start:0x803E7FC8 end:0x803E7FF8 + .sbss start:0x803ECD30 end:0x803ECD38 + .sdata2 start:0x803EF180 end:0x803EF190 + +plugPikiNakata/panianimator.cpp: + .text start:0x8011EE10 end:0x8011F758 + .data start:0x802C7548 end:0x802C7610 + .sdata start:0x803E7FF8 end:0x803E8008 + .sdata2 start:0x803EF190 end:0x803EF1A0 + +plugPikiNakata/panipikianimmgr.cpp: + .text start:0x8011F758 end:0x8011FA5C + .sbss start:0x803ECD38 end:0x803ECD40 + .sdata2 start:0x803EF1A0 end:0x803EF1A8 + +plugPikiNakata/panitekianimator.cpp: + .text start:0x8011FA5C end:0x8011FD00 + .data start:0x802C7610 end:0x802C7708 + .sdata start:0x803E8008 end:0x803E8088 + +plugPikiNakata/paraparameters.cpp: + .text start:0x8011FD00 end:0x80120314 + .data start:0x802C7708 end:0x802C7808 + .sdata start:0x803E8088 end:0x803E80B0 + .sdata2 start:0x803EF1A8 end:0x803EF1B0 + +plugPikiNakata/pcamcamera.cpp: + .text start:0x80120314 end:0x80122360 + .data start:0x802C7808 end:0x802C78D8 + .sdata start:0x803E80B0 end:0x803E80D8 + .sdata2 start:0x803EF1B0 end:0x803EF1F0 + +plugPikiNakata/pcamcameramanager.cpp: + .text start:0x80122360 end:0x801228B4 + .data start:0x802C78D8 end:0x802C79B0 + .sdata start:0x803E80D8 end:0x803E8108 + .sdata2 start:0x803EF1F0 end:0x803EF210 + +plugPikiNakata/pcammotionevents.cpp: + .text start:0x801228B4 end:0x801230D0 + .data start:0x802C79B0 end:0x802C7C68 + .sdata start:0x803E8108 end:0x803E8158 + .sdata2 start:0x803EF210 end:0x803EF240 + +plugPikiNakata/pcamcameraparameters.cpp: + .text start:0x801230D0 end:0x80123C4C + .data start:0x802C7C68 end:0x802C8210 + .sdata start:0x803E8158 end:0x803E8190 + .sdata2 start:0x803EF240 end:0x803EF2D8 + +plugPikiNakata/peve.cpp: + .text start:0x80123C4C end:0x80124374 + .data start:0x802C8210 end:0x802C84C8 + .sdata start:0x803E8190 end:0x803E8200 + .sdata2 start:0x803EF2D8 end:0x803EF2F0 + +plugPikiNakata/peveconditions.cpp: + .text start:0x80124374 end:0x80124610 + .data start:0x802C84C8 end:0x802C8628 + .sdata start:0x803E8200 end:0x803E8230 + .sdata2 start:0x803EF2F0 end:0x803EF2F8 + +plugPikiNakata/pevemotionevents.cpp: + .text start:0x80124610 end:0x80125510 + .data start:0x802C8628 end:0x802C8BF8 + .sdata start:0x803E8230 end:0x803E82B8 + .sdata2 start:0x803EF2F8 end:0x803EF300 + +plugPikiNakata/tai.cpp: + .text start:0x80125510 end:0x80125D10 + .data start:0x802C8BF8 end:0x802C8CD0 + .sdata start:0x803E82B8 end:0x803E82E0 + +plugPikiNakata/taiattackactions.cpp: + .text start:0x80125D10 end:0x80126AB4 + .data start:0x802C8CD0 end:0x802C9050 + .sdata start:0x803E82E0 end:0x803E8358 + .sdata2 start:0x803EF300 end:0x803EF310 + +plugPikiNakata/taibasicactions.cpp: + .text start:0x80126AB4 end:0x80126C2C + .data start:0x802C9050 end:0x802C9200 + .sdata start:0x803E8358 end:0x803E8390 + +plugPikiNakata/taichappy.cpp: + .text start:0x80126C2C end:0x801291CC + .data start:0x802C9200 end:0x802C96F0 + .sdata start:0x803E8390 end:0x803E8450 + .sdata2 start:0x803EF310 end:0x803EF390 + +plugPikiNakata/taicollec.cpp: + .text start:0x801291CC end:0x8012CB98 + .data start:0x802C96F0 end:0x802CA2E0 + .sdata start:0x803E8450 end:0x803E85F8 + .sdata2 start:0x803EF390 end:0x803EF400 + +plugPikiNakata/taicollisionactions.cpp: + .text start:0x8012CB98 end:0x8012CCB4 + .data start:0x802CA2E0 end:0x802CA4F8 + .sdata start:0x803E85F8 end:0x803E8638 + +plugPikiNakata/taieffectactions.cpp: + .text start:0x8012CCB4 end:0x8012CDD4 + .data start:0x802CA4F8 end:0x802CA688 + .sdata start:0x803E8638 end:0x803E8668 + +plugPikiNakata/taiiwagen.cpp: + .text start:0x8012CDD4 end:0x8012DBD8 + .data start:0x802CA688 end:0x802CA990 + .sdata start:0x803E8668 end:0x803E8720 + .sdata2 start:0x803EF400 end:0x803EF438 + +plugPikiNakata/taijudgementactions.cpp: + .text start:0x8012DBD8 end:0x8012E2A4 + .data start:0x802CA990 end:0x802CACD8 + .sdata start:0x803E8720 end:0x803E8788 + .sdata2 start:0x803EF438 end:0x803EF440 + +plugPikiNakata/taikinoko.cpp: + .text start:0x8012E2A4 end:0x80130604 + .data start:0x802CACD8 end:0x802CB230 + .sdata start:0x803E8788 end:0x803E8850 + .sdata2 start:0x803EF440 end:0x803EF4D8 + +plugPikiNakata/taimessageactions.cpp: + .text start:0x80130604 end:0x80130670 + .data start:0x802CB230 end:0x802CB2E8 + .sdata start:0x803E8850 end:0x803E8868 + +plugPikiNakata/taimizinko.cpp: + .text start:0x80130670 end:0x80132724 + .data start:0x802CB2E8 end:0x802CB920 + .sdata start:0x803E8868 end:0x803E8968 + .sdata2 start:0x803EF4D8 end:0x803EF530 + +plugPikiNakata/taimotionactions.cpp: + .text start:0x80132724 end:0x80132C6C + .data start:0x802CB920 end:0x802CBC40 + .sdata start:0x803E8968 end:0x803E89E0 + .sdata2 start:0x803EF530 end:0x803EF540 + +plugPikiNakata/taimoveactions.cpp: + .text start:0x80132C6C end:0x8013432C + .data start:0x802CBC40 end:0x802CC5B0 + .sdata start:0x803E89E0 end:0x803E8B18 + .sdata2 start:0x803EF540 end:0x803EF558 + +plugPikiNakata/tainapkid.cpp: + .text start:0x8013432C end:0x80138C0C + .data start:0x802CC5B0 end:0x802CD098 + .sdata start:0x803E8B18 end:0x803E8C78 + .sdata2 start:0x803EF558 end:0x803EF610 + +plugPikiNakata/taiotimoti.cpp: + .text start:0x80138C0C end:0x8013C1C0 + .data start:0x802CD098 end:0x802CD828 + .sdata start:0x803E8C78 end:0x803E8D90 + .sdata2 start:0x803EF610 end:0x803EF6C8 + +plugPikiNakata/taipalm.cpp: + .text start:0x8013C1C0 end:0x8013D2E4 + .data start:0x802CD828 end:0x802CDD58 + .sdata start:0x803E8D90 end:0x803E8E68 + .sdata2 start:0x803EF6C8 end:0x803EF710 + +plugPikiNakata/taireactionactions.cpp: + .text start:0x8013D2E4 end:0x8013DA10 + .data start:0x802CDD58 end:0x802CE3D8 + .sdata start:0x803E8E68 end:0x803E8F40 + .sdata2 start:0x803EF710 end:0x803EF720 + +plugPikiNakata/taiswallow.cpp: + .text start:0x8013DA10 end:0x801406DC + .data start:0x802CE3D8 end:0x802CEA78 + .sdata start:0x803E8F40 end:0x803E9020 + .sdata2 start:0x803EF720 end:0x803EF7B0 + +plugPikiNakata/taishell.cpp: + .text start:0x801406DC end:0x80141DDC + .data start:0x802CEA78 end:0x802CEFA8 + .sdata start:0x803E9020 end:0x803E90D8 + .sdata2 start:0x803EF7B0 end:0x803EF7F8 + +plugPikiNakata/taitimeractions.cpp: + .text start:0x80141DDC end:0x801421A8 + .data start:0x802CEFA8 end:0x802CF0D8 + .sdata start:0x803E90D8 end:0x803E9100 + .sdata2 start:0x803EF7F8 end:0x803EF818 + +plugPikiNakata/taiwaitactions.cpp: + .text start:0x801421A8 end:0x801422FC + .data start:0x802CF0D8 end:0x802CF170 + .sdata start:0x803E9100 end:0x803E9118 + .sdata2 start:0x803EF818 end:0x803EF838 + +plugPikiNakata/teki.cpp: + .text start:0x801422FC end:0x80142554 + .data start:0x802CF170 end:0x802CF4C8 + .sdata start:0x803E9118 end:0x803E9180 + .sdata2 start:0x803EF838 end:0x803EF840 + +plugPikiNakata/tekianimationmanager.cpp: + .text start:0x80142554 end:0x80142668 + .data start:0x802CF4C8 end:0x802CF5A8 + .sdata start:0x803E9180 end:0x803E91B0 + +plugPikiNakata/tekibteki.cpp: + .text start:0x80142668 end:0x801482CC + .data start:0x802CF5A8 end:0x802CFA00 + .sdata start:0x803E91B0 end:0x803E92F8 + .sdata2 start:0x803EF840 end:0x803EF888 + +plugPikiNakata/tekiconditions.cpp: + .text start:0x801482CC end:0x80148AA4 + .data start:0x802CFA00 end:0x802CFFB8 + .sdata start:0x803E92F8 end:0x803E93B8 + .sdata2 start:0x803EF888 end:0x803EF890 + +plugPikiNakata/tekievent.cpp: + .text start:0x80148AA4 end:0x80148B18 + +plugPikiNakata/tekiinteraction.cpp: + .text start:0x80148B18 end:0x80148C98 + .data start:0x802CFFB8 end:0x802D00A8 + .sdata start:0x803E93B8 end:0x803E93D0 + +plugPikiNakata/tekimgr.cpp: + .text start:0x80148C98 end:0x80149830 + .data start:0x802D00A8 end:0x802D03B0 + .sdata start:0x803E93D0 end:0x803E9530 + .sbss start:0x803ECD40 end:0x803ECD48 + +plugPikiNakata/tekinakata.cpp: + .text start:0x80149830 end:0x8014A104 + +plugPikiNakata/tekinteki.cpp: + .text start:0x8014A104 end:0x8014A454 + .data start:0x802D03B0 end:0x802D0698 + .sdata start:0x803E9530 end:0x803E9578 + .sdata2 start:0x803EF890 end:0x803EF898 + +plugPikiNakata/tekiparameters.cpp: + .text start:0x8014A454 end:0x8014B16C + .data start:0x802D0698 end:0x802D0C48 + .sdata start:0x803E9578 end:0x803E95C8 + .sdata2 start:0x803EF898 end:0x803EF8D8 + +plugPikiNakata/tekipersonality.cpp: + .text start:0x8014B16C end:0x8014B8B0 + .data start:0x802D0C48 end:0x802D0D40 + .sdata start:0x803E95C8 end:0x803E95F0 + .sdata2 start:0x803EF8D8 end:0x803EF8F0 + +plugPikiNakata/tekistrategy.cpp: + .text start:0x8014B8B0 end:0x8014B9DC + .data start:0x802D0D40 end:0x802D0DA0 + .sdata start:0x803E95F0 end:0x803E95F8 + +plugPikiNishimura/genBoss.cpp: + .text start:0x8014B9DC end:0x8014BFD8 + .data start:0x802D0DA0 end:0x802D0E70 + .sdata start:0x803E95F8 end:0x803E9620 + +plugPikiNishimura/Boss.cpp: + .text start:0x8014BFD8 end:0x8014E174 + .data start:0x802D0E70 end:0x802D1110 + .sdata start:0x803E9620 end:0x803E9700 + .sdata2 start:0x803EF8F0 end:0x803EF950 + +plugPikiNishimura/BossAnimMgr.cpp: + .text start:0x8014E174 end:0x8014E208 + .data start:0x802D1110 end:0x802D11D8 + .sdata start:0x803E9700 end:0x803E9730 + +plugPikiNishimura/BossCnd.cpp: + .text start:0x8014E208 end:0x8014E494 + .data start:0x802D11D8 end:0x802D12C0 + .sdata start:0x803E9730 end:0x803E9760 + .sdata2 start:0x803EF950 end:0x803EF968 + +plugPikiNishimura/BossMgr.cpp: + .text start:0x8014E494 end:0x80150D90 + .data start:0x802D12C0 end:0x802D17E8 + .sdata start:0x803E9760 end:0x803E9800 + .sbss start:0x803ECD48 end:0x803ECD50 + +plugPikiNishimura/BossShapeObj.cpp: + .text start:0x80150D90 end:0x80150EA0 + .data start:0x802D17E8 end:0x802D1800 + .sdata2 start:0x803EF968 end:0x803EF970 + +plugPikiNishimura/Spider.cpp: + .text start:0x80150EA0 end:0x80151F4C + .data start:0x802D1800 end:0x802D1B28 + .sdata start:0x803E9800 end:0x803E9960 + .sdata2 start:0x803EF970 end:0x803EFA10 + +plugPikiNishimura/SpiderAi.cpp: + .text start:0x80151F4C end:0x80154114 + .data start:0x802D1B28 end:0x802D1BB8 + .sdata start:0x803E9960 end:0x803E9970 + .sdata2 start:0x803EFA10 end:0x803EFA60 + +plugPikiNishimura/SpiderLeg.cpp: + .text start:0x80154114 end:0x801589D0 + .rodata start:0x80224498 end:0x802244E8 + .data start:0x802D1BB8 end:0x802D1D30 + .sdata start:0x803E9970 end:0x803E99E8 + .sbss start:0x803ECD50 end:0x803ECD58 + .sdata2 start:0x803EFA60 end:0x803EFAE8 + +plugPikiNishimura/Snake.cpp: + .text start:0x801589D0 end:0x801598FC + .data start:0x802D1D30 end:0x802D2040 + .sdata start:0x803E99E8 end:0x803E9B28 + .sdata2 start:0x803EFAE8 end:0x803EFB60 + +plugPikiNishimura/SnakeAi.cpp: + .text start:0x801598FC end:0x8015E3B4 + .rodata start:0x802244E8 end:0x80224500 + .data start:0x802D2040 end:0x802D2108 + .sdata start:0x803E9B28 end:0x803E9B58 + .sdata2 start:0x803EFB60 end:0x803EFBA0 + +plugPikiNishimura/SnakeBody.cpp: + .text start:0x8015E3B4 end:0x80161E20 + .rodata start:0x80224500 end:0x80224540 + .data start:0x802D2108 end:0x802D21C8 + .sdata start:0x803E9B58 end:0x803E9BB0 + .sdata2 start:0x803EFBA0 end:0x803EFBD8 + +plugPikiNishimura/Slime.cpp: + .text start:0x80161E20 end:0x8016328C + .data start:0x802D21C8 end:0x802D2580 + .sdata start:0x803E9BB0 end:0x803E9CC8 + .sdata2 start:0x803EFBD8 end:0x803EFC48 + +plugPikiNishimura/SlimeAi.cpp: + .text start:0x8016328C end:0x80168D3C + .data start:0x802D2580 end:0x802D25A8 + .sdata start:0x803E9CC8 end:0x803E9D18 + .sdata2 start:0x803EFC48 end:0x803EFCC8 + +plugPikiNishimura/SlimeBody.cpp: + .text start:0x80168D3C end:0x80169984 + .sdata start:0x803E9D18 end:0x803E9D38 + .sdata2 start:0x803EFCC8 end:0x803EFCE8 + +plugPikiNishimura/SlimeCreature.cpp: + .text start:0x80169984 end:0x80169BB0 + .data start:0x802D25A8 end:0x802D2738 + .sdata start:0x803E9D38 end:0x803E9D58 + .sdata2 start:0x803EFCE8 end:0x803EFCF8 + +plugPikiNishimura/King.cpp: + .text start:0x80169BB0 end:0x8016A9BC + .data start:0x802D2738 end:0x802D2A60 + .sdata start:0x803E9D58 end:0x803E9E90 + .sdata2 start:0x803EFCF8 end:0x803EFD60 + +plugPikiNishimura/KingAi.cpp: + .text start:0x8016A9BC end:0x80171490 + .data start:0x802D2A60 end:0x802D2BC0 + .sdata start:0x803E9E90 end:0x803E9EB8 + .sdata2 start:0x803EFD60 end:0x803EFDC8 + +plugPikiNishimura/KingBody.cpp: + .text start:0x80171490 end:0x8017413C + .data start:0x802D2BC0 end:0x802D2DA0 + .sdata start:0x803E9EB8 end:0x803E9FE8 + .sdata2 start:0x803EFDC8 end:0x803EFE10 + +plugPikiNishimura/Kogane.cpp: + .text start:0x8017413C end:0x80174810 + .data start:0x802D2DA0 end:0x802D3030 + .sdata start:0x803E9FE8 end:0x803EA098 + .sdata2 start:0x803EFE10 end:0x803EFE50 + +plugPikiNishimura/KoganeAi.cpp: + .text start:0x80174810 end:0x801764EC + .rodata start:0x80224540 end:0x80224550 + .data start:0x802D3030 end:0x802D3108 + .sdata start:0x803EA098 end:0x803EA148 + .sdata2 start:0x803EFE50 end:0x803EFEA0 + +plugPikiNishimura/Pom.cpp: + .text start:0x801764EC end:0x80176C64 + .data start:0x802D3108 end:0x802D33A8 + .sdata start:0x803EA148 end:0x803EA1F0 + .sdata2 start:0x803EFEA0 end:0x803EFED8 + +plugPikiNishimura/PomAi.cpp: + .text start:0x80176C64 end:0x80178514 + .data start:0x802D33A8 end:0x802D34A8 + .sdata start:0x803EA1F0 end:0x803EA220 + .sdata2 start:0x803EFED8 end:0x803EFF28 + +plugPikiNishimura/KingBack.cpp: + .text start:0x80178514 end:0x801788B8 + .data start:0x802D34A8 end:0x802D3710 + .sdata start:0x803EA220 end:0x803EA280 + .sdata2 start:0x803EFF28 end:0x803EFF38 + +plugPikiNishimura/Nucleus.cpp: + .text start:0x801788B8 end:0x80178C50 + .data start:0x802D3710 end:0x802D3968 + .sdata start:0x803EA280 end:0x803EA2F8 + .sdata2 start:0x803EFF38 end:0x803EFF50 + +plugPikiNishimura/NucleusAi.cpp: + .text start:0x80178C50 end:0x80179060 + .data start:0x802D3968 end:0x802D39C0 + .sdata start:0x803EA2F8 end:0x803EA308 + .sdata2 start:0x803EFF50 end:0x803EFF58 + +plugPikiNishimura/CoreNucleus.cpp: + .text start:0x80179060 end:0x80179450 + .data start:0x802D39C0 end:0x802D3C28 + .sdata start:0x803EA308 end:0x803EA378 + .sdata2 start:0x803EFF58 end:0x803EFF70 + +plugPikiNishimura/CoreNucleusAi.cpp: + .text start:0x80179450 end:0x80179AE0 + .data start:0x802D3C28 end:0x802D3C88 + .sdata start:0x803EA378 end:0x803EA390 + .sdata2 start:0x803EFF70 end:0x803EFF78 + +plugPikiNishimura/Mizu.cpp: + .text start:0x80179AE0 end:0x80179F64 + .data start:0x802D3C88 end:0x802D3EE0 + .sdata start:0x803EA390 end:0x803EA3F8 + .sdata2 start:0x803EFF78 end:0x803EFF90 + +plugPikiNishimura/MizuAi.cpp: + .text start:0x80179F64 end:0x8017A9D4 + .data start:0x802D3EE0 end:0x802D3FC8 + .sdata start:0x803EA3F8 end:0x803EA430 + .sdata2 start:0x803EFF90 end:0x803EFFA8 + +plugPikiNishimura/RumbleData.cpp: + .data start:0x802D3FC8 end:0x802D4AF8 + .sdata start:0x803EA430 end:0x803EA480 + +plugPikiNishimura/nscalculation.cpp: + .text start:0x8017A9D4 end:0x8017AF74 + .sdata2 start:0x803EFFA8 end:0x803EFFD0 + +plugPikiNishimura/HmRumbleMgr.cpp: + .text start:0x8017AF74 end:0x8017BD8C + .sbss start:0x803ECD58 end:0x803ECD60 + .sdata2 start:0x803EFFD0 end:0x803EFFE0 + +plugPikiNishimura/HmRumbleSample.cpp: + .text start:0x8017BD8C end:0x8017BE50 + .sdata2 start:0x803EFFE0 end:0x803EFFE8 + +plugPikiOgawa/ogTest.cpp: + .text start:0x8017BE50 end:0x8017CF5C + .data start:0x802D4AF8 end:0x802D4D90 + .sdata start:0x803EA480 end:0x803EA510 + .sdata2 start:0x803EFFE8 end:0x803F0008 + +plugPikiOgawa/ogSub.cpp: + .text start:0x8017CF5C end:0x8017F79C + .data start:0x802D4D90 end:0x802D5650 + .bss start:0x803D6D60 end:0x803D7160 + .sdata start:0x803EA510 end:0x803EA5C0 + .sdata2 start:0x803F0008 end:0x803F0048 + +plugPikiOgawa/ogTitle.cpp: + .text start:0x8017F79C end:0x801809CC + .data start:0x802D5650 end:0x802D5700 + .sdata start:0x803EA5C0 end:0x803EA5C8 + .sdata2 start:0x803F0048 end:0x803F0058 + +plugPikiOgawa/ogPause.cpp: + .text start:0x801809CC end:0x80181248 + .data start:0x802D5700 end:0x802D5768 + .sdata2 start:0x803F0058 end:0x803F0070 + +plugPikiOgawa/ogTutorial.cpp: + .text start:0x80181248 end:0x80181494 + .data start:0x802D5768 end:0x802D5780 + +plugPikiOgawa/ogTutorialData.cpp: + .data start:0x802D5780 end:0x802D6698 + .sdata start:0x803EA5C8 end:0x803EA888 + +plugPikiOgawa/ogMap.cpp: + .text start:0x80181494 end:0x80181ABC + .data start:0x802D6698 end:0x802D66C8 + .sdata2 start:0x803F0070 end:0x803F0090 + +plugPikiOgawa/ogResult.cpp: + .text start:0x80181ABC end:0x80183754 + .data start:0x802D66C8 end:0x802D76F8 + .sdata start:0x803EA888 end:0x803EA890 + .sdata2 start:0x803F0090 end:0x803F00C0 + +plugPikiOgawa/ogRader.cpp: + .text start:0x80183754 end:0x80185EDC + .data start:0x802D76F8 end:0x802D77C8 + .sdata2 start:0x803F00C0 end:0x803F0150 + +plugPikiOgawa/ogFileSelect.cpp: + .text start:0x80185EDC end:0x8018A2AC + .data start:0x802D77C8 end:0x802D7920 + .sdata start:0x803EA890 end:0x803EA8D8 + .sdata2 start:0x803F0150 end:0x803F01A8 + +plugPikiOgawa/ogMessage.cpp: + .text start:0x8018A2AC end:0x8018B794 + .data start:0x802D7920 end:0x802D82E8 + .sdata start:0x803EA8D8 end:0x803EA930 + .sdata2 start:0x803F01A8 end:0x803F01F0 + +plugPikiOgawa/ogMemChk.cpp: + .text start:0x8018B794 end:0x8018D93C + .data start:0x802D82E8 end:0x802D8408 + .sdata start:0x803EA930 end:0x803EA940 + .sdata2 start:0x803F01F0 end:0x803F0218 + +plugPikiOgawa/ogDiary.cpp: + .text start:0x8018D93C end:0x8018F9DC + .data start:0x802D8408 end:0x802D8488 + .bss start:0x803D7160 end:0x803D7188 + .sdata start:0x803EA940 end:0x803EA980 + .sdata2 start:0x803F0218 end:0x803F0268 + +plugPikiOgawa/ogMenu.cpp: + .text start:0x8018F9DC end:0x80191CDC + .data start:0x802D8488 end:0x802D8630 + .sdata start:0x803EA980 end:0x803EA9B0 + .sdata2 start:0x803F0268 end:0x803F02D8 + +plugPikiOgawa/ogFileChkSel.cpp: + .text start:0x80191CDC end:0x801920E4 + .data start:0x802D8630 end:0x802D8648 + .sdata2 start:0x803F02D8 end:0x803F02E8 + +plugPikiOgawa/ogMakeDefault.cpp: + .text start:0x801920E4 end:0x8019294C + .data start:0x802D8648 end:0x802D8678 + .sdata2 start:0x803F02E8 end:0x803F0310 + +plugPikiOgawa/ogTotalScore.cpp: + .text start:0x8019294C end:0x80193E88 + .data start:0x802D8678 end:0x802D8690 + .sdata start:0x803EA9B0 end:0x803EA9D0 + .sdata2 start:0x803F0310 end:0x803F0330 + +plugPikiOgawa/ogSave.cpp: + .text start:0x80193E88 end:0x80194FAC + .data start:0x802D8690 end:0x802D8740 + .sdata2 start:0x803F0330 end:0x803F0350 + +plugPikiOgawa/ogNitaku.cpp: + .text start:0x80194FAC end:0x801958E4 + .sdata2 start:0x803F0350 end:0x803F0370 + +plugPikiOgawa/ogFileCopy.cpp: + .text start:0x801958E4 end:0x80196220 + .sdata start:0x803EA9D0 end:0x803EA9E8 + .sdata2 start:0x803F0370 end:0x803F03A0 + +plugPikiOgawa/ogFileDelete.cpp: + .text start:0x80196220 end:0x80196670 + .sdata start:0x803EA9E8 end:0x803EA9F8 + .sdata2 start:0x803F03A0 end:0x803F03D8 + +plugPikiOgawa/ogGraph.cpp: + .text start:0x80196670 end:0x801970D0 + .data start:0x802D8740 end:0x802D8850 + .sdata2 start:0x803F03D8 end:0x803F03E8 + +plugPikiOgawa/ogStart.cpp: + .text start:0x801970D0 end:0x80197474 + .data start:0x802D8850 end:0x802D8868 + .sdata2 start:0x803F03E8 end:0x803F0408 + +plugPikiOgawa/ogCallBack.cpp: + .text start:0x80197474 end:0x80197B5C + .data start:0x802D8868 end:0x802D8940 + .sdata start:0x803EA9F8 end:0x803EAA18 + .sdata2 start:0x803F0408 end:0x803F0420 + +plugPikiYamashita/gameCourseClear.cpp: + .text start:0x80197B5C end:0x80199F4C + .data start:0x802D8940 end:0x802D9078 + .sdata start:0x803EAA18 end:0x803EAB48 + .sdata2 start:0x803F0420 end:0x803F0450 + +plugPikiYamashita/gameStageClear.cpp: + .text start:0x80199F4C end:0x80199FD0 + .data start:0x802D9078 end:0x802D91B0 + .sdata start:0x803EAB48 end:0x803EAB90 + +plugPikiYamashita/gameCredits.cpp: + .text start:0x80199FD0 end:0x8019A068 + .data start:0x802D91B0 end:0x802D92E0 + .sdata start:0x803EAB90 end:0x803EABD8 + +plugPikiYamashita/zenMath.cpp: + .text start:0x8019A068 end:0x8019A3A8 + .sdata start:0x803EABD8 end:0x803EABF0 + .sdata2 start:0x803F0450 end:0x803F0468 + +plugPikiYamashita/effectMgr.cpp: + .text start:0x8019A3A8 end:0x8019B454 + .data start:0x802D92E0 end:0x802DCC40 + .sdata start:0x803EABF0 end:0x803EACA0 + .sbss start:0x803ECD60 end:0x803ECD68 + .sdata2 start:0x803F0468 end:0x803F0488 + +plugPikiYamashita/particleGenerator.cpp: + .text start:0x8019B454 end:0x8019F66C + .data start:0x802DCC40 end:0x802DCD38 + .sdata start:0x803EACA0 end:0x803EACC0 + .sdata2 start:0x803F0488 end:0x803F04D8 + +plugPikiYamashita/particleLoader.cpp: + .text start:0x8019F66C end:0x8019F848 + .data start:0x802DCD38 end:0x802DCDA8 + .sdata start:0x803EACC0 end:0x803EACD0 + +plugPikiYamashita/solidField.cpp: + .data start:0x802DCDA8 end:0x802DFDC0 + +plugPikiYamashita/particleManager.cpp: + .text start:0x8019F848 end:0x8019FF1C + .sdata start:0x803EACD0 end:0x803EACD8 + .sdata2 start:0x803F04D8 end:0x803F04E0 + +plugPikiYamashita/particleMdlManager.cpp: + .text start:0x8019FF1C end:0x801A0558 + .data start:0x802DFDC0 end:0x802DFEB8 + .sdata start:0x803EACD8 end:0x803EAD28 + .sdata2 start:0x803F04E0 end:0x803F04E8 + +plugPikiYamashita/bBoardColourAnim.cpp: + .text start:0x801A0558 end:0x801A09B4 + .sdata2 start:0x803F04E8 end:0x803F0500 + +plugPikiYamashita/simpleParticle.cpp: + .text start:0x801A09B4 end:0x801A0E9C + .sdata2 start:0x803F0500 end:0x803F0528 + +plugPikiYamashita/tekiyteki.cpp: + .text start:0x801A0E9C end:0x801A1840 + .data start:0x802DFEB8 end:0x802E0290 + .sdata start:0x803EAD28 end:0x803EADC0 + .sdata2 start:0x803F0528 end:0x803F0550 + +plugPikiYamashita/tekiyamashita.cpp: + .text start:0x801A1840 end:0x801A1CDC + +plugPikiYamashita/TAIanimation.cpp: + .text start:0x801A1CDC end:0x801A1D18 + +plugPikiYamashita/TAItank.cpp: + .text start:0x801A1D18 end:0x801A3EBC + .ctors start:0x80223D34 end:0x80223D38 + .data start:0x802E0290 end:0x802E0B00 + .sdata start:0x803EADC0 end:0x803EAF18 + .sbss start:0x803ECD68 end:0x803ECD70 + .sdata2 start:0x803F0550 end:0x803F05D8 + +plugPikiYamashita/TAImar.cpp: + .text start:0x801A3EBC end:0x801A6BD8 + .ctors start:0x80223D38 end:0x80223D3C + .data start:0x802E0B00 end:0x802E1750 + .sdata start:0x803EAF18 end:0x803EB0C0 + .sbss start:0x803ECD70 end:0x803ECD80 + .sdata2 start:0x803F05D8 end:0x803F0680 + +plugPikiYamashita/TAIAreaction.cpp: + .text start:0x801A6BD8 end:0x801A7374 + .data start:0x802E1750 end:0x802E19C8 + .sdata start:0x803EB0C0 end:0x803EB120 + .sdata2 start:0x803F0680 end:0x803F0690 + +plugPikiYamashita/TAIAmove.cpp: + .text start:0x801A7374 end:0x801AB39C + .data start:0x802E19C8 end:0x802E2250 + .sdata start:0x803EB120 end:0x803EB2C0 + .sdata2 start:0x803F0690 end:0x803F0708 + +plugPikiYamashita/TAIAmotion.cpp: + .text start:0x801AB39C end:0x801AB7DC + .data start:0x802E2250 end:0x802E2340 + .sdata start:0x803EB2C0 end:0x803EB2E0 + .sdata2 start:0x803F0708 end:0x803F0718 + +plugPikiYamashita/TAIAjudge.cpp: + .text start:0x801AB7DC end:0x801AC8E4 + .data start:0x802E2340 end:0x802E2808 + .sdata start:0x803EB2E0 end:0x803EB378 + .sdata2 start:0x803F0718 end:0x803F0728 + +plugPikiYamashita/TAIAattack.cpp: + .text start:0x801AC8E4 end:0x801ADEF4 + .data start:0x802E2808 end:0x802E2BD0 + .sdata start:0x803EB378 end:0x803EB420 + .sdata2 start:0x803F0728 end:0x803F0758 + +plugPikiYamashita/P2DGrafContext.cpp: + .text start:0x801ADEF4 end:0x801AE438 + .data start:0x802E2BD0 end:0x802E2C18 + .sdata start:0x803EB420 end:0x803EB428 + .sdata2 start:0x803F0758 end:0x803F0768 + +plugPikiYamashita/P2DOrthoGraph.cpp: + .text start:0x801AE438 end:0x801AE8D8 + .data start:0x802E2C18 end:0x802E2C68 + .sdata start:0x803EB428 end:0x803EB438 + .sdata2 start:0x803F0768 end:0x803F0778 + +plugPikiYamashita/P2DPerspGraph.cpp: + .text start:0x801AE8D8 end:0x801AEDE4 + .data start:0x802E2C68 end:0x802E2CE0 + .sdata start:0x803EB438 end:0x803EB490 + .sdata2 start:0x803F0778 end:0x803F07A0 + +plugPikiYamashita/P2DPane.cpp: + .text start:0x801AEDE4 end:0x801B000C + .data start:0x802E2CE0 end:0x802E2D20 + .sdata start:0x803EB490 end:0x803EB4C8 + .sdata2 start:0x803F07A0 end:0x803F07B0 + +plugPikiYamashita/P2DPicture.cpp: + .text start:0x801B000C end:0x801B1298 + .data start:0x802E2D20 end:0x802E2D88 + .sdata start:0x803EB4C8 end:0x803EB4E0 + .sdata2 start:0x803F07B0 end:0x803F07D8 + +plugPikiYamashita/P2DScreen.cpp: + .text start:0x801B1298 end:0x801B19BC + .data start:0x802E2D88 end:0x802E2E40 + .sdata start:0x803EB4E0 end:0x803EB4F8 + +plugPikiYamashita/P2DStream.cpp: + .text start:0x801B19BC end:0x801B1B10 + +plugPikiYamashita/PSUList.cpp: + .text start:0x801B1B10 end:0x801B1D70 + +plugPikiYamashita/PUTRect.cpp: + .text start:0x801B1D70 end:0x801B1F38 + +plugPikiYamashita/P2DWindow.cpp: + .text start:0x801B1F38 end:0x801B2BF4 + .data start:0x802E2E40 end:0x802E2EA8 + .sdata start:0x803EB4F8 end:0x803EB510 + +plugPikiYamashita/P2DTextBox.cpp: + .text start:0x801B2BF4 end:0x801B30EC + .data start:0x802E2EA8 end:0x802E2F10 + .sdata start:0x803EB510 end:0x803EB528 + .sdata2 start:0x803F07D8 end:0x803F07E0 + +plugPikiYamashita/P2DPrint.cpp: + .text start:0x801B30EC end:0x801B43B4 + .data start:0x802E2F10 end:0x802E2F70 + .sdata2 start:0x803F07E0 end:0x803F0808 + +plugPikiYamashita/P2DFont.cpp: + .text start:0x801B43B4 end:0x801B4A88 + .data start:0x802E2F70 end:0x802E2FD0 + .sdata start:0x803EB528 end:0x803EB540 + .sdata2 start:0x803F0808 end:0x803F0830 + +plugPikiYamashita/drawGameInfo.cpp: + .text start:0x801B4A88 end:0x801B888C + .data start:0x802E2FD0 end:0x802E3738 + .sdata start:0x803EB540 end:0x803EB5E8 + .sbss start:0x803ECD80 end:0x803ECD88 + .sdata2 start:0x803F0830 end:0x803F08E8 + +plugPikiYamashita/zenGraphics.cpp: + .text start:0x801B888C end:0x801B8D50 + .sdata start:0x803EB5E8 end:0x803EB5F0 + .sdata2 start:0x803F08E8 end:0x803F0920 + +plugPikiYamashita/drawContainer.cpp: + .text start:0x801B8D50 end:0x801BDCC4 + .data start:0x802E3738 end:0x802E3AA8 + .bss start:0x803D7188 end:0x803D71E0 + .sdata start:0x803EB5F0 end:0x803EB6A0 + .sbss start:0x803ECD88 end:0x803ECD90 + .sdata2 start:0x803F0920 end:0x803F0998 + +plugPikiYamashita/drawCommon.cpp: + .text start:0x801BDCC4 end:0x801BEA60 + .data start:0x802E3AA8 end:0x802E3BB0 + .bss start:0x803D71E0 end:0x803D7230 + .sdata start:0x803EB6A0 end:0x803EB6E0 + .sdata2 start:0x803F0998 end:0x803F09E8 + +plugPikiYamashita/zenController.cpp: + .text start:0x801BEA60 end:0x801BEBEC + .sbss start:0x803ECD90 end:0x803ECD98 + .sdata2 start:0x803F09E8 end:0x803F09F8 + +plugPikiYamashita/drawHurryUp.cpp: + .text start:0x801BEBEC end:0x801BF7F0 + .data start:0x802E3BB0 end:0x802E3BC8 + .sdata start:0x803EB6E0 end:0x803EB6F0 + .sdata2 start:0x803F09F8 end:0x803F0A48 + +plugPikiYamashita/texAnim.cpp: + .text start:0x801BF7F0 end:0x801BF890 + +plugPikiYamashita/drawAccount.cpp: + .text start:0x801BF890 end:0x801C0ECC + .data start:0x802E3BC8 end:0x802E3D40 + .sdata start:0x803EB6F0 end:0x803EB728 + .sdata2 start:0x803F0A48 end:0x803F0A68 + +plugPikiYamashita/drawMenu.cpp: + .text start:0x801C0ECC end:0x801C30B0 + .data start:0x802E3D40 end:0x802E3D98 + .sdata start:0x803EB728 end:0x803EB770 + .sdata2 start:0x803F0A68 end:0x803F0AB0 + +plugPikiYamashita/TAIeffectAttack.cpp: + .text start:0x801C30B0 end:0x801C4124 + .data start:0x802E3D98 end:0x802E3E70 + .sdata start:0x803EB770 end:0x803EB7D0 + .sdata2 start:0x803F0AB0 end:0x803F0AD8 + +plugPikiYamashita/TAIbeatle.cpp: + .text start:0x801C4124 end:0x801C7C20 + .data start:0x802E3E70 end:0x802E4618 + .sdata start:0x803EB7D0 end:0x803EB908 + .sdata2 start:0x803F0AD8 end:0x803F0B90 + +plugPikiYamashita/menuPanelMgr.cpp: + .text start:0x801C7C20 end:0x801C89FC + .data start:0x802E4618 end:0x802E46E8 + .sdata start:0x803EB908 end:0x803EB948 + .sdata2 start:0x803F0B90 end:0x803F0BF0 + +plugPikiYamashita/TAIkabekuiA.cpp: + .text start:0x801C89FC end:0x801CA2BC + .data start:0x802E46E8 end:0x802E4D30 + .sdata start:0x803EB948 end:0x803EBA20 + .sdata2 start:0x803F0BF0 end:0x803F0C50 + +plugPikiYamashita/TAIkabekuiB.cpp: + .text start:0x801CA2BC end:0x801CBE74 + .data start:0x802E4D30 end:0x802E5420 + .sdata start:0x803EBA20 end:0x803EBAE8 + .sdata2 start:0x803F0C50 end:0x803F0CB0 + +plugPikiYamashita/TAIkabekuiC.cpp: + .text start:0x801CBE74 end:0x801CE560 + .data start:0x802E5420 end:0x802E5ED0 + .sdata start:0x803EBAE8 end:0x803EBC30 + .sdata2 start:0x803F0CB0 end:0x803F0D30 + +plugPikiYamashita/TAItamago.cpp: + .text start:0x801CE560 end:0x801CF710 + .data start:0x802E5ED0 end:0x802E6380 + .sdata start:0x803EBC30 end:0x803EBCC8 + .sdata2 start:0x803F0D30 end:0x803F0D98 + +plugPikiYamashita/TAIdororo.cpp: + .text start:0x801CF710 end:0x801D2F54 + .data start:0x802E6380 end:0x802E6C50 + .sdata start:0x803EBCC8 end:0x803EBE08 + .sdata2 start:0x803F0D98 end:0x803F0E18 + +plugPikiYamashita/TAIhibaA.cpp: + .text start:0x801D2F54 end:0x801D45A4 + .ctors start:0x80223D3C end:0x80223D40 + .data start:0x802E6C50 end:0x802E7180 + .sdata start:0x803EBE08 end:0x803EBEB0 + .sbss start:0x803ECD98 end:0x803ECDA0 + .sdata2 start:0x803F0E18 end:0x803F0E90 + +plugPikiYamashita/TAIAeffect.cpp: + .text start:0x801D45A4 end:0x801D49A0 + .data start:0x802E7180 end:0x802E71E8 + .sdata start:0x803EBEB0 end:0x803EBEC8 + .sdata2 start:0x803F0E90 end:0x803F0E98 + +plugPikiYamashita/TAImiurin.cpp: + .text start:0x801D49A0 end:0x801D87DC + .data start:0x802E71E8 end:0x802E7DA8 + .sdata start:0x803EBEC8 end:0x803EC028 + .sdata2 start:0x803F0E98 end:0x803F0F30 + +plugPikiYamashita/ptclGenPack.cpp: + .text start:0x801D87DC end:0x801D89A4 + +plugPikiYamashita/drawProgre.cpp: + .text start:0x801D89A4 end:0x801D8F68 + .data start:0x802E7DA8 end:0x802E7DD0 + .sdata2 start:0x803F0F30 end:0x803F0F40 + +plugPikiYamashita/spectrumCursorMgr.cpp: + .text start:0x801D8F68 end:0x801D98A0 + .sdata start:0x803EC028 end:0x803EC030 + .sdata2 start:0x803F0F40 end:0x803F0F70 + +plugPikiYamashita/drawWorldMap.cpp: + .text start:0x801D98A0 end:0x801E6204 + .data start:0x802E7DD0 end:0x802E8058 + .sdata start:0x803EC030 end:0x803EC240 + .sbss start:0x803ECDA0 end:0x803ECDA8 + .sdata2 start:0x803F0F70 end:0x803F1058 + +plugPikiYamashita/drawCountDown.cpp: + .text start:0x801E6204 end:0x801E7054 + .data start:0x802E8058 end:0x802E8070 + .sdata start:0x803EC240 end:0x803EC248 + .sdata2 start:0x803F1058 end:0x803F10A0 + +plugPikiYamashita/drawGameOver.cpp: + .text start:0x801E7054 end:0x801E7DA8 + .data start:0x802E8070 end:0x802E80A0 + .sdata start:0x803EC248 end:0x803EC250 + .sdata2 start:0x803F10A0 end:0x803F1110 + +plugPikiYamashita/yai.cpp: + .text start:0x801E7DA8 end:0x801E8014 + .data start:0x802E80A0 end:0x802E80F0 + .sdata start:0x803EC250 end:0x803EC260 + +plugPikiYamashita/effectMgr2D.cpp: + .text start:0x801E8014 end:0x801E844C + .data start:0x802E80F0 end:0x802E89F8 + .sdata start:0x803EC260 end:0x803EC278 + .sdata2 start:0x803F1110 end:0x803F1130 + +plugPikiYamashita/drawWMPause.cpp: + .text start:0x801E844C end:0x801E86F4 + .data start:0x802E89F8 end:0x802E8A10 + .sdata2 start:0x803F1130 end:0x803F1140 + +plugPikiYamashita/TAIusuba.cpp: + .text start:0x801E86F4 end:0x801E91C4 + .data start:0x802E8A10 end:0x802E8D80 + .sdata start:0x803EC278 end:0x803EC308 + .sdata2 start:0x803F1140 end:0x803F11A0 + +plugPikiYamashita/TAIotama.cpp: + .text start:0x801E91C4 end:0x801EABCC + .data start:0x802E8D80 end:0x802E9298 + .sdata start:0x803EC308 end:0x803EC3A8 + .sdata2 start:0x803F11A0 end:0x803F1218 + +plugPikiYamashita/drawCMcourseSelect.cpp: + .text start:0x801EABCC end:0x801EBBD4 + .data start:0x802E9298 end:0x802E93B8 + .sdata start:0x803EC3A8 end:0x803EC458 + .sdata2 start:0x803F1218 end:0x803F1240 + +plugPikiYamashita/drawCMtitle.cpp: + .text start:0x801EBBD4 end:0x801EC000 + .data start:0x802E93B8 end:0x802E93E0 + .sdata start:0x803EC458 end:0x803EC460 + .sdata2 start:0x803F1240 end:0x803F1270 + +plugPikiYamashita/drawCMscore.cpp: + .text start:0x801EC000 end:0x801ECA3C + .data start:0x802E93E0 end:0x802E9438 + .sdata start:0x803EC460 end:0x803EC488 + .sdata2 start:0x803F1270 end:0x803F1290 + +plugPikiYamashita/drawCMbest.cpp: + .text start:0x801ECA3C end:0x801ED2BC + .data start:0x802E9438 end:0x802E94A8 + .sdata start:0x803EC488 end:0x803EC490 + .sdata2 start:0x803F1290 end:0x803F12C0 + +plugPikiYamashita/drawCMresult.cpp: + .text start:0x801ED2BC end:0x801EE8A0 + .data start:0x802E94A8 end:0x802E96A8 + .sdata start:0x803EC490 end:0x803EC4F0 + .sdata2 start:0x803F12C0 end:0x803F12E0 + +plugPikiYamashita/drawMenuBase.cpp: + .text start:0x801EE8A0 end:0x801EF1D4 + .data start:0x802E96A8 end:0x802E9750 + .sdata start:0x803EC4F0 end:0x803EC528 + .sdata2 start:0x803F12E0 end:0x803F1308 + +plugPikiYamashita/drawHiScore.cpp: + .text start:0x801EF1D4 end:0x801EFC48 + .data start:0x802E9750 end:0x802E9768 + .sdata start:0x803EC528 end:0x803EC558 + .sdata2 start:0x803F1308 end:0x803F1310 + +plugPikiYamashita/damageEffect.cpp: + .text start:0x801EFC48 end:0x801F012C + .sdata2 start:0x803F1310 end:0x803F1330 + +plugPikiYamashita/alphaWipe.cpp: + .text start:0x801F012C end:0x801F04B4 + .sdata2 start:0x803F1330 end:0x803F1340 + +plugPikiYamashita/drawUfoParts.cpp: + .text start:0x801F04B4 end:0x801F0B78 + .data start:0x802E9768 end:0x802E9780 + .sdata start:0x803EC558 end:0x803EC568 + .sdata2 start:0x803F1340 end:0x803F1350 + +plugPikiYamashita/zenSys.cpp: + .text start:0x801F0B78 end:0x801F0DB0 + .sdata start:0x803EC568 end:0x803EC570 + +plugPikiYamashita/drawSaveMes.cpp: + .text start:0x801F0DB0 end:0x801F1CB4 + .data start:0x802E9780 end:0x802E9800 + .sdata2 start:0x803F1350 end:0x803F1388 + +plugPikiYamashita/drawSaveFailure.cpp: + .text start:0x801F1CB4 end:0x801F218C + .data start:0x802E9800 end:0x802E9810 + .sdata2 start:0x803F1388 end:0x803F13A0 + +plugPikiYamashita/drawFinalResult.cpp: + .text start:0x801F218C end:0x801F3C54 + .data start:0x802E9810 end:0x802E9878 + .sdata start:0x803EC570 end:0x803EC598 + .sdata2 start:0x803F13A0 end:0x803F13D0 + +plugPikiYamashita/drawOptionSave.cpp: + .text start:0x801F3C54 end:0x801F4098 + .data start:0x802E9878 end:0x802E98C8 + +base/PPCArch.c: + .text start:0x801F4098 end:0x801F40FC + +os/OS.c: + .text start:0x801F40FC end:0x801F4994 + .data start:0x802E98C8 end:0x802E9A88 + .sbss start:0x803ECDA8 end:0x803ECDC8 + +os/OSAlarm.c: + .text start:0x801F4994 end:0x801F503C + .sbss start:0x803ECDC8 end:0x803ECDD0 + +os/OSAlloc.c: + .text start:0x801F503C end:0x801F51A8 + .sdata start:0x803EC598 end:0x803EC5A0 + .sbss start:0x803ECDD0 end:0x803ECDE0 + +os/OSArena.c: + .text start:0x801F51A8 end:0x801F51C8 + .sdata start:0x803EC5A0 end:0x803EC5A8 + .sbss start:0x803ECDE0 end:0x803ECDE8 + +os/OSAudioSystem.c: + .text start:0x801F51C8 end:0x801F545C + .data start:0x802E9A88 end:0x802E9B08 + +os/OSCache.c: + .text start:0x801F545C end:0x801F5908 + .data start:0x802E9B08 end:0x802E9D38 + +os/OSContext.c: + .text start:0x801F5908 end:0x801F6170 + .data start:0x802E9D38 end:0x802E9F10 + +os/OSError.c: + .text start:0x801F6170 end:0x801F6538 + .data start:0x802E9F10 end:0x802EA230 + .bss start:0x803D7230 end:0x803D7280 + .sdata start:0x803EC5A8 end:0x803EC5B0 + +os/OSFont.c: + .text start:0x801F6538 end:0x801F6590 + .sdata start:0x803EC5B0 end:0x803EC5B8 + +os/OSInterrupt.c: + .text start:0x801F6590 end:0x801F6DF8 + .data start:0x802EA230 end:0x802EA260 + .sbss start:0x803ECDE8 end:0x803ECE00 + +os/OSLink.c: + .text start:0x801F6DF8 end:0x801F6E10 + +os/OSMessage.c: + .text start:0x801F6E10 end:0x801F7014 + +os/OSMemory.c: + .text start:0x801F7014 end:0x801F72F4 + .data start:0x802EA260 end:0x802EA270 + +os/OSMutex.c: + .text start:0x801F72F4 end:0x801F7800 + +os/OSReboot.c: + .text start:0x801F7800 end:0x801F7A18 + .bss start:0x803D7280 end:0x803D72A0 + .sbss start:0x803ECE00 end:0x803ECE10 + +os/OSReset.c: + .text start:0x801F7A18 end:0x801F7DEC + .sbss start:0x803ECE10 end:0x803ECE18 + +os/OSResetSW.c: + .text start:0x801F7DEC end:0x801F8198 + .sbss start:0x803ECE18 end:0x803ECE38 + +os/OSRtc.c: + .text start:0x801F8198 end:0x801F8BC0 + .bss start:0x803D72A0 end:0x803D72F8 + +os/OSSync.c: + .text start:0x801F8BC0 end:0x801F8C44 + +os/OSThread.c: + .text start:0x801F8C44 end:0x801FA638 + .data start:0x802EA270 end:0x802EAA80 + .bss start:0x803D72F8 end:0x803D7CE0 + .sdata start:0x803EC5B8 end:0x803EC5C0 + .sbss start:0x803ECE38 end:0x803ECE48 + +os/OSTime.c: + .text start:0x801FA638 end:0x801FAA5C + .data start:0x802EAA80 end:0x802EAAE0 + +os/__ppc_eabi_init.cpp: + .init start:0x80003330 end:0x80003384 + .text start:0x801FAA5C end:0x801FAAF0 + +db/db.c: + .text start:0x801FAAF0 end:0x801FABDC + .data start:0x802EAAE0 end:0x802EAAF8 + .sbss start:0x803ECE48 end:0x803ECE50 + +mtx/mtx.c: + .text start:0x801FABDC end:0x801FAF44 + .sdata start:0x803EC5C0 end:0x803EC5C8 + .sdata2 start:0x803F13D0 end:0x803F13E8 + +mtx/mtx44.c: + .text start:0x801FAF44 end:0x801FB0AC + .sdata2 start:0x803F13E8 end:0x803F1400 + +mtx/vec.c: + .text start:0x801FB0AC end:0x801FB0E8 + .sdata2 start:0x803F1400 end:0x803F1408 + +dvd/dvdlow.c: + .text start:0x801FB0E8 end:0x801FBF3C + .bss start:0x803D7CE0 end:0x803D7DC0 + .sdata start:0x803EC5C8 end:0x803EC5D0 + .sbss start:0x803ECE50 end:0x803ECE98 + +dvd/dvdfs.c: + .text start:0x801FBF3C end:0x801FC934 + .data start:0x802EAAF8 end:0x802EAEE8 + .sdata start:0x803EC5D0 end:0x803EC5D8 + .sbss start:0x803ECE98 end:0x803ECEB8 + +dvd/dvd.c: + .text start:0x801FC934 end:0x801FEEE4 + .data start:0x802EAEE8 end:0x802EB000 + .bss start:0x803D7DC0 end:0x803D7E98 + .sdata start:0x803EC5D8 end:0x803EC5E0 + .sbss start:0x803ECEB8 end:0x803ECF00 + +dvd/dvdqueue.c: + .text start:0x801FEEE4 end:0x801FF0DC + .bss start:0x803D7E98 end:0x803D7EB8 + +dvd/dvderror.c: + .text start:0x801FF0DC end:0x801FF274 + .data start:0x802EB000 end:0x802EB048 + +dvd/fstload.c: + .text start:0x801FF274 end:0x801FF4B4 + .data start:0x802EB048 end:0x802EB0B8 + .bss start:0x803D7EB8 end:0x803D7F28 + .sdata start:0x803EC5E0 end:0x803EC5F0 + .sbss start:0x803ECF00 end:0x803ECF10 + +vi/vi.c: + .text start:0x801FF4B4 end:0x80200E0C + .data start:0x802EB0B8 end:0x802EB380 + .bss start:0x803D7F28 end:0x803D8070 + .sbss start:0x803ECF10 end:0x803ECF60 + +pad/Padclamp.c: + .text start:0x80200E0C end:0x80201044 + .sdata start:0x803EC5F0 end:0x803EC5F8 + +pad/Pad.c: + .text start:0x80201044 end:0x80202B0C + .data start:0x802EB380 end:0x802EB390 + .bss start:0x803D8070 end:0x803D80C0 + .sdata start:0x803EC5F8 end:0x803EC618 + .sbss start:0x803ECF60 end:0x803ECF88 + +card/CARDNet.c: + .sdata start:0x803EC618 end:0x803EC620 + +ai/ai.c: + .text start:0x80202B0C end:0x80203414 + .sbss start:0x803ECF88 end:0x803ECFC8 + +ar/ar.c: + .text start:0x80203414 end:0x80203F98 + .sbss start:0x803ECFC8 end:0x803ECFE8 + +ar/arq.c: + .text start:0x80203F98 end:0x8020432C + .sbss start:0x803ECFE8 end:0x803ED010 + +dsp/dsp.c: + .text start:0x8020432C end:0x80204470 + .data start:0x802EB390 end:0x802EB3C8 + .sbss start:0x803ED010 end:0x803ED018 + +dsp/dsp_debug.c: + .text start:0x80204470 end:0x802044C0 + +dsp/dsp_task.c: + .text start:0x802044C0 end:0x80204920 + .data start:0x802EB3C8 end:0x802EB508 + .sbss start:0x803ED018 end:0x803ED028 + +card/CARDBios.c: + .text start:0x80204920 end:0x80205C70 + .data start:0x802EB508 end:0x802EB520 + .bss start:0x803D80C0 end:0x803D8300 + +card/CARDUnlock.c: + .text start:0x80205C70 end:0x80206E84 + .data start:0x802EB520 end:0x802EB680 + +card/CARDRdwr.c: + .text start:0x80206E84 end:0x8020711C + +card/CARDBlock.c: + .text start:0x8020711C end:0x80207520 + +card/CARDDir.c: + .text start:0x80207520 end:0x80207784 + +card/CARDCheck.c: + .text start:0x80207784 end:0x80208714 + +card/CARDMount.c: + .text start:0x80208714 end:0x80209028 + .data start:0x802EB680 end:0x802EB6C0 + +card/CARDFormat.c: + .text start:0x80209028 end:0x80209860 + +card/CARDOpen.c: + .text start:0x80209860 end:0x80209CC4 + +card/CARDCreate.c: + .text start:0x80209CC4 end:0x8020A05C + +card/CARDRead.c: + .text start:0x8020A05C end:0x8020A4D4 + +card/CARDWrite.c: + .text start:0x8020A4D4 end:0x8020A850 + +card/CARDDelete.c: + .text start:0x8020A850 end:0x8020AA68 + +card/CARDStat.c: + .text start:0x8020AA68 end:0x8020AF48 + +card/CARDRename.c: + .text start:0x8020AF48 end:0x8020B18C + +si/SIBios.c: + .text start:0x8020B18C end:0x8020C86C + .data start:0x802EB6C0 end:0x802EB790 + .bss start:0x803D8300 end:0x803D8500 + .sbss start:0x803ED028 end:0x803ED038 + +si/SISamplingRate.c: + .text start:0x8020C86C end:0x8020C974 + .data start:0x802EB790 end:0x802EB828 + .sbss start:0x803ED038 end:0x803ED040 + +exi/EXIBios.c: + .text start:0x8020C974 end:0x8020E210 + .bss start:0x803D8500 end:0x803D85C0 + +exi/EXIUart.c: + .text start:0x8020E210 end:0x8020E488 + .sbss start:0x803ED040 end:0x803ED050 + +hio/hio.c: + .text start:0x8020E488 end:0x8020EC24 + .sdata start:0x803EC620 end:0x803EC628 + .sbss start:0x803ED050 end:0x803ED060 + +gx/GXInit.c: + .text start:0x8020EC24 end:0x8020FD10 + .bss start:0x803D85C0 end:0x803D8B38 + .sdata start:0x803EC628 end:0x803EC630 + .sbss start:0x803ED060 end:0x803ED070 + .sdata2 start:0x803F1408 end:0x803F1428 + +gx/GXFifo.c: + .text start:0x8020FD10 end:0x80210480 + .sbss start:0x803ED070 end:0x803ED090 + +gx/GXAttr.c: + .text start:0x80210480 end:0x80211998 + .data start:0x802EB828 end:0x802EB9F0 + .sdata start:0x803EC630 end:0x803EC640 + +gx/GXMisc.c: + .text start:0x80211998 end:0x80211D64 + .sbss start:0x803ED090 end:0x803ED0A8 + +gx/GXGeometry.c: + .text start:0x80211D64 end:0x8021211C + +gx/GXFrameBuf.c: + .text start:0x8021211C end:0x80212BB0 + .data start:0x802EB9F0 end:0x802EBAE0 + .sdata2 start:0x803F1428 end:0x803F1430 + +gx/GXLight.c: + .text start:0x80212BB0 end:0x8021333C + .sdata2 start:0x803F1430 end:0x803F1450 + +gx/GXTexture.c: + .text start:0x8021333C end:0x80214070 + .data start:0x802EBAE0 end:0x802EBC10 + .sdata start:0x803EC640 end:0x803EC680 + .sdata2 start:0x803F1450 end:0x803F1478 + +gx/GXBump.c: + .text start:0x80214070 end:0x80214444 + +gx/GXTev.c: + .text start:0x80214444 end:0x80214E7C + .data start:0x802EBC10 end:0x802EBC38 + +gx/GXPixel.c: + .text start:0x80214E7C end:0x802155C4 + .data start:0x802EBC38 end:0x802EBC58 + .sdata2 start:0x803F1478 end:0x803F14A8 + +gx/GXStubs.c: + .text start:0x802155C4 end:0x802155C8 + +gx/GXDisplayList.c: + .text start:0x802155C8 end:0x802157D4 + .bss start:0x803D8B38 end:0x803D9058 + .sbss start:0x803ED0A8 end:0x803ED0B0 + +gx/GXTransform.c: + .text start:0x802157D4 end:0x80215D50 + .sdata2 start:0x803F14A8 end:0x803F14B8 + +gx/GXPerf.c: + .text start:0x80215D50 end:0x802165F8 + .data start:0x802EBC58 end:0x802EBD48 + +Runtime/PPCEABI/H/__va_arg.c: + .text start:0x802165F8 end:0x802166EC + +Runtime/PPCEABI/H/global_destructor_chain.c: + .text start:0x802166EC end:0x8021674C + .dtors start:0x80223D68 end:0x80223D6C + .sbss start:0x803ED0B0 end:0x803ED0B8 + +Runtime/PPCEABI/H/CPlusLibPPC.cp: + .text start:0x8021674C end:0x8021677C + +Runtime/PPCEABI/H/NMWException.cp: + extab start:0x80005520 end:0x80005560 + extabindex start:0x80005560 end:0x80005590 + .text start:0x8021677C end:0x80216AB8 + +Runtime/PPCEABI/H/ptmf.c: + .text start:0x80216AB8 end:0x80216AE0 + .rodata start:0x80224550 end:0x80224560 + +Runtime/PPCEABI/H/ExceptionPPC.cp: + .text start:0x80216AE0 end:0x80216B50 + .bss start:0x803D9058 end:0x803D9068 + +Runtime/PPCEABI/H/runtime.c: + .text start:0x80216B50 end:0x80217248 + .rodata start:0x80224560 end:0x80224578 + +Runtime/PPCEABI/H/__init_cpp_exceptions.cpp: + .text start:0x80217248 end:0x802172C4 + .ctors start:0x80223D00 end:0x80223D04 + .dtors start:0x80223D60 end:0x80223D68 + .sdata start:0x803EC680 end:0x803EC688 + +MSL_C/PPCEABI/bare/H/ansi_files.c: + .data start:0x802EBD48 end:0x802EBE20 + +MSL_C/PPCEABI/bare/H/abort_exit.c: + .text start:0x802172C4 end:0x802173D0 + .bss start:0x803D9068 end:0x803D9268 + .sbss start:0x803ED0B8 end:0x803ED0D0 + +MSL_C/PPCEABI/bare/H/errno.c: + .sbss start:0x803ED0D0 end:0x803ED0D8 + +MSL_C/PPCEABI/bare/H/ansi_fp.c: + .text start:0x802173D0 end:0x80217A28 + .rodata start:0x80224578 end:0x80224600 + .sdata start:0x803EC688 end:0x803EC690 + .sdata2 start:0x803F14B8 end:0x803F14E8 + +MSL_C/PPCEABI/bare/H/arith.c: + .text start:0x80217A28 end:0x80217A38 + +MSL_C/PPCEABI/bare/H/buffer_io.c: + .text start:0x80217A38 end:0x80217B38 + +MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c: + .text start:0x80217B38 end:0x80217B3C + +MSL_C/PPCEABI/bare/H/ctype.c: + .text start:0x80217B3C end:0x80217B8C + .rodata start:0x80224600 end:0x80224900 + +MSL_C/PPCEABI/bare/H/locale.c: + .rodata start:0x80224900 end:0x80224908 + .data start:0x802EBE20 end:0x802EBE50 + +MSL_C/PPCEABI/bare/H/direct_io.c: + .text start:0x80217B8C end:0x80217E68 + +MSL_C/PPCEABI/bare/H/mbstring.c: + .text start:0x80217E68 end:0x80217EF4 + +MSL_C/PPCEABI/bare/H/mem.c: + .init start:0x80003384 end:0x800034C8 + .text start:0x80217EF4 end:0x80218040 + +MSL_C/PPCEABI/bare/H/mem_funcs.c: + .text start:0x80218040 end:0x8021831C + +MSL_C/PPCEABI/bare/H/misc_io.c: + .text start:0x8021831C end:0x80218320 + +MSL_C/PPCEABI/bare/H/printf.c: + .text start:0x80218320 end:0x80219DF0 + .rodata start:0x80224908 end:0x80224918 + .data start:0x802EBE50 end:0x802EC070 + .sdata start:0x803EC690 end:0x803EC698 + .sdata2 start:0x803F14E8 end:0x803F14F0 + +MSL_C/PPCEABI/bare/H/rand.c: + .text start:0x80219DF0 end:0x80219E1C + .sdata start:0x803EC698 end:0x803EC6A0 + +MSL_C/PPCEABI/bare/H/scanf.c: + .text start:0x80219E1C end:0x8021AE70 + .rodata start:0x80224918 end:0x80224940 + .data start:0x802EC070 end:0x802EC140 + +MSL_C/PPCEABI/bare/H/string.c: + .text start:0x8021AE70 end:0x8021B1B4 + .sdata start:0x803EC6A0 end:0x803EC6A8 + +MSL_C/PPCEABI/bare/H/strtold.c: + .text start:0x8021B1B4 end:0x8021B924 + .rodata start:0x80224940 end:0x80224970 + .sdata2 start:0x803F14F0 end:0x803F1500 + +MSL_C/PPCEABI/bare/H/strtoul.c: + .text start:0x8021B924 end:0x8021C298 + .data start:0x802EC140 end:0x802EC1C8 + +MSL_C/PPCEABI/bare/H/float.c: + .data start:0x802EC1C8 end:0x802EC200 + +MSL_C/PPCEABI/bare/H/uart_console_io.c: + .text start:0x8021C298 end:0x8021C418 + .sbss start:0x803ED0D8 end:0x803ED0E0 + +MSL_C/PPCEABI/bare/H/wchar_io.c: + .text start:0x8021C418 end:0x8021C498 + +MSL_C/PPCEABI/bare/H/e_asin.c: + .text start:0x8021C498 end:0x8021C4A0 + +MSL_C/PPCEABI/bare/H/e_atan2.c: + .text start:0x8021C4A0 end:0x8021C738 + .sdata2 start:0x803F1500 end:0x803F1558 + +MSL_C/PPCEABI/bare/H/e_pow.c: + .text start:0x8021C738 end:0x8021CF70 + .rodata start:0x80224970 end:0x802249A0 + .sdata2 start:0x803F1558 end:0x803F1668 + +MSL_C/PPCEABI/bare/H/fminmaxdim.c: + .text start:0x8021CF70 end:0x8021CFF0 + +MSL_C/PPCEABI/bare/H/s_atan.c: + .text start:0x8021CFF0 end:0x8021D230 + .rodata start:0x802249A0 end:0x80224A38 + .sdata2 start:0x803F1668 end:0x803F1690 + +MSL_C/PPCEABI/bare/H/s_copysign.c: + .text start:0x8021D230 end:0x8021D25C + +MSL_C/PPCEABI/bare/H/s_frexp.c: + .text start:0x8021D25C end:0x8021D2F8 + .sdata2 start:0x803F1690 end:0x803F1698 + +MSL_C/PPCEABI/bare/H/s_ldexp.c: + .text start:0x8021D2F8 end:0x8021D470 + .sdata2 start:0x803F1698 end:0x803F16C0 + +MSL_C/PPCEABI/bare/H/w_atan2.c: + .text start:0x8021D470 end:0x8021D490 + +MSL_C/PPCEABI/bare/H/w_pow.c: + .text start:0x8021D490 end:0x8021D4B0 + +MSL_C/PPCEABI/bare/H/hyperbolicsf.c: + .text start:0x8021D4B0 end:0x8021D4B8 + +MSL_C/PPCEABI/bare/H/inverse_trig.c: + .text start:0x8021D4B8 end:0x8021D858 + .rodata start:0x80224A38 end:0x80224AF0 + .sdata2 start:0x803F16C0 end:0x803F16E0 + +MSL_C/PPCEABI/bare/H/trigf.c: + .text start:0x8021D858 end:0x8021DC44 + .ctors start:0x80223D40 end:0x80223D44 + .rodata start:0x80224AF0 end:0x80224B00 + .data start:0x802EC200 end:0x802EC210 + .sdata2 start:0x803F16E0 end:0x803F16F8 + +MSL_C/PPCEABI/bare/H/common_float_tables.c: + .rodata start:0x80224B00 end:0x80224B48 + +MSL_C/PPCEABI/bare/H/math_inlines.c: + .text start:0x8021DC44 end:0x8021DCD4 + .sdata2 start:0x803F16F8 end:0x803F1710 + +TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x8021DCD4 end:0x8021DE3C + +TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x8021DE3C end:0x8021E098 + .bss start:0x803D9268 end:0x803D9290 + +TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x8021E098 end:0x8021E22C + .rodata start:0x80224B48 end:0x80224B68 + .bss start:0x803D9290 end:0x803D9298 + +TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x8021E22C end:0x8021E254 + +TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x8021E254 end:0x8021EA9C + .bss start:0x803D9298 end:0x803DAC48 + +TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x8021EA9C end:0x8021EC64 + .bss start:0x803DAC48 end:0x803DAC60 + +TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x8021EC64 end:0x8021EC68 + +TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x8021EC68 end:0x8021ED00 + .data start:0x802EC210 end:0x802EC298 + .bss start:0x803DAC60 end:0x803DAC68 + +TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x8021ED00 end:0x8021FFA4 + .data start:0x802EC298 end:0x802EC2D0 + +TRK_MINNOW_DOLPHIN/support.c: + .text start:0x8021FFA4 end:0x80220420 + +TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x80220420 end:0x80220438 + +TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x80220438 end:0x80220510 + +TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x80220510 end:0x80220548 + +TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x800034C8 end:0x8000351C + .text start:0x80220548 end:0x8022060C + +TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x8022060C end:0x80221BE8 + .rodata start:0x80224B68 end:0x80224BB4 + .data start:0x802EC2D0 end:0x802EC300 + .bss start:0x803DAC68 end:0x803DB1E8 + +TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x8000351C end:0x80005450 + +TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x80005450 end:0x80005470 + .text start:0x80221BE8 end:0x80221E28 + .data start:0x802EC300 end:0x802EC340 + .bss start:0x803DB1E8 end:0x803DB1F0 + +TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x80221E28 end:0x802221A0 + +TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x802221A0 end:0x802221E8 + .bss start:0x803DB1F0 end:0x803DB1F8 + +TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x802221E8 end:0x80222540 + .data start:0x802EC340 end:0x802EC360 + +TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x80222540 end:0x80222574 + +amcExi2/AmcExi.c: + .text start:0x80222574 end:0x80222BB4 + .bss start:0x803DB1F8 end:0x803DB210 + .sdata start:0x803EC6A8 end:0x803EC6B0 + +amcExi2/AmcExi2Comm.c: + .text start:0x80222BB4 end:0x80223258 + .data start:0x802EC360 end:0x802EC379 + .sdata start:0x803EC6B0 end:0x803EC6B8 + .sbss start:0x803ED0E0 end:0x803ED0F0 + +amcnotstub/amcnotstub.c: + .text start:0x80223258 end:0x80223260 + +OdemuExi2/DebuggerDriver.c: + .text start:0x80223260 end:0x80223CE0 + .sdata start:0x803EC6B8 end:0x803EC6B9 + .sbss start:0x803ED0F0 end:0x803ED105 + +odenotstub/odenotstub.c: + .text start:0x80223CE0 end:0x80223CE8 diff --git a/config/GPIP01_00/symbols.txt b/config/GPIP01_00/symbols.txt new file mode 100644 index 00000000..c29e7f2c --- /dev/null +++ b/config/GPIP01_00/symbols.txt @@ -0,0 +1,29710 @@ +__check_pad3 = .init:0x80003100; // type:function size:0x40 scope:local align:4 +__start = .init:0x80003140; // type:function size:0x114 scope:weak align:4 +__init_registers = .init:0x80003254; // type:function size:0x1C scope:local align:4 +__init_data = .init:0x80003270; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x80003330; // type:function size:0x20 scope:global align:4 +__flush_cache = .init:0x80003350; // type:function size:0x34 scope:global align:4 +memset = .init:0x80003384; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x800033B4; // type:function size:0xC4 scope:global align:4 +memcpy = .init:0x80003478; // type:function size:0x50 scope:global align:4 +TRK_memcpy = .init:0x800034C8; // type:function size:0x24 scope:global align:4 +TRK_memset = .init:0x800034EC; // type:function size:0x30 scope:global align:4 +gTRKInterruptVectorTable = .init:0x8000351C; // type:label scope:global +lbl_800040B0 = .init:0x800040B0; // type:label +lbl_800040F0 = .init:0x800040F0; // type:label +gTRKInterruptVectorTableEnd = .init:0x80005450; // type:label scope:global +__TRK_reset = .init:0x80005450; // type:function size:0x20 scope:global align:4 +_rom_copy_info = .init:0x80005470; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x800054F4; // type:object size:0x18 scope:global data:4byte +@152 = extab:0x80005520; // type:object size:0x8 scope:local align:4 +@174 = extab:0x80005528; // type:object size:0x18 scope:local align:4 +@182 = extab:0x80005540; // type:object size:0x8 scope:local align:4 +@201 = extab:0x80005548; // type:object size:0x18 scope:local align:4 +@153 = extabindex:0x80005560; // type:object size:0xC scope:local align:4 +@175 = extabindex:0x8000556C; // type:object size:0xC scope:local align:4 +@183 = extabindex:0x80005578; // type:object size:0xC scope:local align:4 +@202 = extabindex:0x80005584; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x80005590; // type:object size:0x20 scope:global +main = .text:0x800055C0; // type:function size:0x88 scope:global align:4 +Probe_Start = .text:0x80005660; // type:function size:0x4 scope:global align:32 +Probe_Finish = .text:0x80005680; // type:function size:0x4 scope:global align:32 +Console_printf = .text:0x800056A0; // type:function size:0x50 scope:global align:32 +Nas_HeapAlloc__FP6ALHeapl = .text:0x80005700; // type:function size:0x6C scope:global align:32 +Nas_HeapInit__FP6ALHeapPUcl = .text:0x80005780; // type:function size:0x58 scope:global align:32 +Jac_HeapSetup = .text:0x800057E0; // type:function size:0x4C scope:global align:32 +OSAlloc2 = .text:0x80005840; // type:function size:0x80 scope:global align:32 +Jac_Init = .text:0x800058C0; // type:function size:0xAC scope:global align:32 +MixMonoTrack__FPslPFl_Ps = .text:0x80005980; // type:function size:0xDC scope:local align:32 +MixMonoTrackWide__FPslPFl_Ps = .text:0x80005A60; // type:function size:0xDC scope:local align:32 +MixExtraTrack__FPslPFl_Ps = .text:0x80005B40; // type:function size:0xF8 scope:local align:32 +MixInterleaveTrack__FPslPFl_Ps = .text:0x80005C40; // type:function size:0x8C scope:local align:32 +Jac_VframeWork = .text:0x80005CE0; // type:function size:0x188 scope:global align:32 +Jac_UpdateDAC = .text:0x80005E80; // type:function size:0xA8 scope:global align:32 +Jac_SetOutputMode = .text:0x80005F40; // type:function size:0x8 scope:global align:32 +Jac_GetOutputMode = .text:0x80005F60; // type:function size:0x8 scope:global align:32 +Jac_SetMixerLevel = .text:0x80005F80; // type:function size:0x34 scope:global align:32 +Jac_imixcopy__FPsPsPsl = .text:0x80005FC0; // type:function size:0x30 scope:global align:32 +Jac_bcopyfast__FPUlPUlUl = .text:0x80006000; // type:function size:0x3C scope:global align:32 +Jac_bcopy__FPvPvl = .text:0x80006040; // type:function size:0xFC scope:global align:32 +Jac_bzerofast__FPUlUl = .text:0x80006140; // type:function size:0x2C scope:global align:32 +Jac_bzero__FPvl = .text:0x80006180; // type:function size:0xE0 scope:global align:32 +Jac_SetAudioARAMSize__FUl = .text:0x80006260; // type:function size:0x8 scope:global align:32 +ARAllocFull__FPUl = .text:0x80006280; // type:function size:0x58 scope:global align:32 +Jac_InitARAM__FUl = .text:0x800062E0; // type:function size:0x98 scope:global align:32 +DspSyncCountClear = .text:0x80006380; // type:function size:0x8 scope:global align:32 +DspSyncCountCheck = .text:0x800063A0; // type:function size:0x8 scope:global align:32 +DspSync__Fv = .text:0x800063C0; // type:function size:0x44 scope:local align:32 +DspSync2__FPv = .text:0x80006420; // type:function size:0x68 scope:local align:32 +StopAudioThread = .text:0x800064A0; // type:function size:0x50 scope:global align:32 +AudioSync__Fv = .text:0x80006500; // type:function size:0x80 scope:local align:32 +audioproc__FPv = .text:0x80006580; // type:function size:0x134 scope:local align:32 +OSInitFastCast = .text:0x800066C0; // type:function size:0x34 scope:local align:32 +StartAudioThread = .text:0x80006700; // type:function size:0x124 scope:global align:32 +StreamMain__Fv = .text:0x80006840; // type:function size:0x39C scope:global align:32 +Jac_GetCurrentSCounter__Fv = .text:0x80006BE0; // type:function size:0x8 scope:global align:32 +DspbufProcess__F13DSPBUF_EVENTS = .text:0x80006C00; // type:function size:0x24C scope:global align:32 +UpdateDSP__Fv = .text:0x80006E60; // type:function size:0x54 scope:global align:32 +MixDsp__Fl = .text:0x80006EC0; // type:function size:0x40 scope:global align:32 +DspFrameEnd__Fv = .text:0x80006F00; // type:function size:0x24 scope:global align:32 +CpubufProcess__F13DSPBUF_EVENTS = .text:0x80006F40; // type:function size:0x1F8 scope:global align:32 +CpuFrameEnd__Fv = .text:0x80007140; // type:function size:0x24 scope:global align:32 +ResetPlayerCallback = .text:0x80007180; // type:function size:0x2C scope:global align:32 +Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x800071C0; // type:function size:0x50 scope:global align:32 +Jac_RegisterDspPlayerCallback = .text:0x80007220; // type:function size:0x48 scope:global align:32 +Jac_RegisterPlayerCallback = .text:0x80007280; // type:function size:0xA4 scope:global align:32 +PlayerCallback__Fv = .text:0x80007340; // type:function size:0x7C scope:global align:32 +DspPlayerCallback__Fv = .text:0x800073C0; // type:function size:0x7C scope:global align:32 +GetCallStack__Fv = .text:0x80007440; // type:function size:0x60 scope:local align:32 +DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x800074A0; // type:function size:0x8C scope:local align:32 +DVDT_SetRootPath__FPc = .text:0x80007540; // type:function size:0x4C scope:global align:32 +DVDT_ExtendPath__FPcPc = .text:0x800075A0; // type:function size:0x80 scope:global align:32 +DVDT_AddTask__FPFPv_lPvUl = .text:0x80007620; // type:function size:0x7C scope:global align:32 +jac_dvdproc_init__Fv = .text:0x800076A0; // type:function size:0x3C scope:global align:32 +jac_dvdproc__FPv = .text:0x800076E0; // type:function size:0x88 scope:global align:32 +__DoError__FP8DVDCall_Ul = .text:0x80007780; // type:function size:0x48 scope:local align:32 +__DoFinish__FP8DVDCall_Ul = .text:0x800077E0; // type:function size:0x44 scope:local align:32 +__DVDT_CheckBack__FPv = .text:0x80007840; // type:function size:0x24 scope:local align:32 +DVDT_LoadtoDRAM_Main__FPv = .text:0x80007880; // type:function size:0xE8 scope:global align:32 +DVDT_LoadtoDRAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007980; // type:function size:0x84 scope:global align:32 +__Alloc_DVDBuffer__Fv = .text:0x80007A20; // type:function size:0x38 scope:local align:32 +__WriteBufferSize__FPUcUlUl = .text:0x80007A60; // type:function size:0x30 scope:local align:32 +__UpdateBuffer__Fv = .text:0x80007AA0; // type:function size:0x40 scope:local align:32 +DVDT_SetBuffer__FPUcUlUl = .text:0x80007AE0; // type:function size:0x58 scope:global align:32 +DVDT_CloseBuffer__FPUc = .text:0x80007B40; // type:function size:0xBC scope:global align:32 +ARAM_DMAfinish__FUl = .text:0x80007C00; // type:function size:0x10 scope:local align:32 +DVDT_LoadtoARAM_Main__FPv = .text:0x80007C20; // type:function size:0x22C scope:global align:32 +DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x80007E60; // type:function size:0x84 scope:global align:32 +DVDT_CheckFile__FPc = .text:0x80007F00; // type:function size:0x70 scope:global align:32 +DVDT_LoadFile__FPcPUc = .text:0x80007F80; // type:function size:0x70 scope:global align:32 +DVDT_CheckPass__FUlPUlPFUl_v = .text:0x80008000; // type:function size:0x40 scope:global align:32 +Jac_RegisterExtFastOpen__FPc = .text:0x80008040; // type:function size:0x30 scope:global align:32 +Jac_RegisterFastOpen__FPc = .text:0x80008080; // type:function size:0x100 scope:global align:32 +Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x80008180; // type:function size:0x50 scope:global align:32 +Jac_InitMessageQueue__FP16Jac_MessageQueuePPvl = .text:0x800081E0; // type:function size:0x18 scope:global align:32 +Jac_SendMessage__FP16Jac_MessageQueuePv = .text:0x80008200; // type:function size:0x80 scope:global align:32 +Jac_ReceiveMessage__FP16Jac_MessageQueuePPv = .text:0x80008280; // type:function size:0x58 scope:global align:32 +Jac_ReceiveMessage_Fast__FP16Jac_MessageQueuePPv = .text:0x800082E0; // type:function size:0x60 scope:global align:32 +Jac_StackInit = .text:0x80008340; // type:function size:0x3C scope:global align:32 +DSPReleaseHalt__Fv = .text:0x80008380; // type:function size:0x54 scope:global align:32 +setup_callback__FUs = .text:0x800083E0; // type:function size:0xC scope:local align:32 +DsetupTable__FUlUlUlUlUl = .text:0x80008400; // type:function size:0x64 scope:global align:32 +DsetMixerLevel__Ff = .text:0x80008480; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800084C0; // type:function size:0x48 scope:global align:32 +DspHandShake__FPv = .text:0x80008520; // type:function size:0x3C scope:local align:32 +DspBoot__FPFPv_v = .text:0x80008560; // type:function size:0xA4 scope:global align:32 +DSPSendCommands2__FPUlUlPFUs_v = .text:0x80008620; // type:function size:0xD8 scope:global align:32 +DspInitWork__Fv = .text:0x80008700; // type:function size:0x2C scope:local align:32 +DspStartWork__FUlPFUs_v = .text:0x80008740; // type:function size:0x4C scope:global align:32 +DspFinishWork__FUs = .text:0x800087A0; // type:function size:0x68 scope:global align:32 +DSPAddTask = .text:0x80008820; // type:function size:0x7C scope:global align:32 +DSPAddPriorTask__FP15STRUCT_DSP_TASK = .text:0x800088A0; // type:function size:0x74 scope:global align:32 +__DSPHandler = .text:0x80008920; // type:function size:0x340 scope:global align:32 +DsyncFrame2__FUlUlUl = .text:0x80008C60; // type:function size:0x84 scope:global align:32 +Dsp_Update_Request__Fv = .text:0x80008D00; // type:function size:0x40 scope:local align:32 +Dsp_Running_Check__Fv = .text:0x80008D40; // type:function size:0x1C scope:global align:32 +Dsp_Running_Start__Fv = .text:0x80008D60; // type:function size:0xC scope:global align:32 +Channel_SetMixerLevel__Ff = .text:0x80008D80; // type:function size:0x24 scope:global align:32 +Get_GlobalHandle__Fv = .text:0x80008DC0; // type:function size:0xC scope:global align:32 +List_CountChannel__FPP3jc_ = .text:0x80008DE0; // type:function size:0x20 scope:global align:32 +List_CutChannel__FP3jc_ = .text:0x80008E00; // type:function size:0x70 scope:global align:32 +List_GetChannel__FPP3jc_ = .text:0x80008E80; // type:function size:0x30 scope:global align:32 +List_AddChannelTail__FPP3jc_P3jc_ = .text:0x80008EC0; // type:function size:0x48 scope:global align:32 +List_AddChannel__FPP3jc_P3jc_ = .text:0x80008F20; // type:function size:0x14 scope:global align:32 +FixAllocChannel__FP4jcs_Ul = .text:0x80008F40; // type:function size:0x9C scope:global align:32 +FixReleaseChannel__FP3jc_ = .text:0x80008FE0; // type:function size:0x60 scope:global align:32 +FixReleaseChannelAll__FP4jcs_ = .text:0x80009040; // type:function size:0xF0 scope:global align:32 +FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x80009140; // type:function size:0xEC scope:global align:32 +PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x80009240; // type:function size:0x70 scope:local align:32 +InitJcs__FP4jcs_ = .text:0x800092C0; // type:function size:0x104 scope:global align:32 +Channel_Init__FP3jc_ = .text:0x800093E0; // type:function size:0x138 scope:global align:32 +Channel_FirstInit__FP3jc_ = .text:0x80009520; // type:function size:0x30 scope:local align:32 +InitGlobalChannel__Fv = .text:0x80009560; // type:function size:0x7C scope:global align:32 +__UpdateJcToDSPInit__FP3jc_ = .text:0x800095E0; // type:function size:0xD8 scope:local align:32 +__UpdateJcToDSP__FP3jc_ = .text:0x800096C0; // type:function size:0xD8 scope:local align:32 +UpdateJcToDSP__FP3jc_ = .text:0x800097A0; // type:function size:0x38 scope:global align:32 +UpdateEffecterParam__FP3jc_ = .text:0x800097E0; // type:function size:0x348 scope:global align:32 +DoEffectOsc__FP3jc_Ucf = .text:0x80009B40; // type:function size:0x68 scope:global align:32 +KillBrokenLogicalChannels__FP6dspch_ = .text:0x80009BC0; // type:function size:0x84 scope:local align:32 +CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x80009C60; // type:function size:0x384 scope:local align:32 +StopLogicalChannel__FP3jc_ = .text:0x8000A000; // type:function size:0x78 scope:global align:32 +CheckLogicalChannel__FP3jc_ = .text:0x8000A080; // type:function size:0x28 scope:global align:32 +PlayLogicalChannel__FP3jc_ = .text:0x8000A0C0; // type:function size:0x180 scope:global align:32 +ResetInitialVolume__FP3jc_ = .text:0x8000A240; // type:function size:0x74 scope:global align:32 +Add_WaitDSPChannel__FP3jc_ = .text:0x8000A2C0; // type:function size:0xB0 scope:global align:32 +Del_WaitDSPChannel__FP3jc_ = .text:0x8000A380; // type:function size:0x64 scope:global align:32 +__Entry_WaitChannel__FUc = .text:0x8000A400; // type:function size:0xFC scope:global align:32 +EntryCheck_WaitDSPChannel__Fv = .text:0x8000A500; // type:function size:0xC4 scope:global align:32 +Cancel_WaitDSPChannel__FP3jc_ = .text:0x8000A5E0; // type:function size:0x4C scope:local align:32 +ForceStopLogicalChannel__FP3jc_ = .text:0x8000A640; // type:function size:0x38 scope:global align:32 +InitDSPchannel__Fv = .text:0x8000A680; // type:function size:0x60 scope:global align:32 +AllocDSPchannel__FUlUl = .text:0x8000A6E0; // type:function size:0x114 scope:global align:32 +DeAllocDSPchannel__FP6dspch_Ul = .text:0x8000A800; // type:function size:0xDC scope:global align:32 +GetLowerDSPchannel__Fv = .text:0x8000A8E0; // type:function size:0x104 scope:global align:32 +GetLowerActiveDSPchannel__Fv = .text:0x8000AA00; // type:function size:0xD8 scope:global align:32 +ForceStopDSPchannel__FP6dspch_ = .text:0x8000AAE0; // type:function size:0x7C scope:global align:32 +BreakLowerDSPchannel__FUc = .text:0x8000AB60; // type:function size:0xAC scope:global align:32 +BreakLowerActiveDSPchannel__FUc = .text:0x8000AC20; // type:function size:0xAC scope:global align:32 +UpdateDSPchannelAll__Fv = .text:0x8000ACE0; // type:function size:0x1F4 scope:global align:32 +GetDspHandle__FUc = .text:0x8000AEE0; // type:function size:0x18 scope:global align:32 +GetFxHandle__FUc = .text:0x8000AF00; // type:function size:0x14 scope:global align:32 +DSP_SetPitch__FUcUs = .text:0x8000AF20; // type:function size:0x2C scope:global align:32 +DSP_SetMixerInitDelayMax__FUcUc = .text:0x8000AF60; // type:function size:0x20 scope:global align:32 +DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8000AF80; // type:function size:0x4C scope:global align:32 +DSP_SetMixerVolume__FUcUcsUc = .text:0x8000AFE0; // type:function size:0x44 scope:global align:32 +DSP_SetOscInfo__FUcUl = .text:0x8000B040; // type:function size:0x2C scope:global align:32 +DSP_SetPauseFlag__FUcUc = .text:0x8000B080; // type:function size:0x20 scope:global align:32 +DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8000B0A0; // type:function size:0xB0 scope:global align:32 +DSP_SetBusConnect__FUcUcUc = .text:0x8000B160; // type:function size:0x38 scope:global align:32 +DSP_PlayStop__FUc = .text:0x8000B1A0; // type:function size:0x20 scope:global align:32 +DSP_AllocInit__FUc = .text:0x8000B1C0; // type:function size:0x60 scope:global align:32 +DSP_PlayStart__FUc = .text:0x8000B220; // type:function size:0x7C scope:global align:32 +DSP_SetDistFilter__FUcs = .text:0x8000B2A0; // type:function size:0x1C scope:global align:32 +DSP_SetFilterTable__FPsPsUl = .text:0x8000B2C0; // type:function size:0x24 scope:global align:32 +DSP_SetIIRFilterParam__FUcPs = .text:0x8000B300; // type:function size:0x3C scope:global align:32 +DSP_SetFIR8FilterParam__FUcPs = .text:0x8000B340; // type:function size:0x3C scope:global align:32 +DSP_SetFilterMode__FUcUs = .text:0x8000B380; // type:function size:0x54 scope:global align:32 +DSP_InitFilter__FUc = .text:0x8000B3E0; // type:function size:0x70 scope:global align:32 +DSP_FlushBuffer__Fv = .text:0x8000B460; // type:function size:0x3C scope:global align:32 +DSP_FlushChannel__FUc = .text:0x8000B4A0; // type:function size:0x38 scope:global align:32 +DSP_InvalChannelAll__Fv = .text:0x8000B4E0; // type:function size:0x2C scope:global align:32 +DSP_ClearBuffer__Fv = .text:0x8000B520; // type:function size:0x50 scope:global align:32 +DSP_CreateMap__Fv = .text:0x8000B580; // type:function size:0x68 scope:global align:32 +DSP_SetupBuffer__Fv = .text:0x8000B600; // type:function size:0x44 scope:global align:32 +DSP_InitBuffer__Fv = .text:0x8000B660; // type:function size:0x58 scope:global align:32 +DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x8000B6C0; // type:function size:0x138 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000B800; // type:function size:0x24 scope:local align:32 +Bank_Test__FPUc = .text:0x8000B840; // type:function size:0x270 scope:global align:32 +__Bank_Regist_Inner__FPUcUlUl = .text:0x8000BAC0; // type:function size:0x68 scope:local align:32 +Bank_Regist__FPvUl = .text:0x8000BB40; // type:function size:0x24 scope:global align:32 +Bank_Init__Fv = .text:0x8000BB80; // type:function size:0x2C scope:global align:32 +Bank_Get__FUl = .text:0x8000BBC0; // type:function size:0x28 scope:global align:32 +PTconvert__FPPvUl = .text:0x8000BC00; // type:function size:0x38 scope:local align:32 +Wave_Test__FPUc = .text:0x8000BC40; // type:function size:0x2A0 scope:global align:32 +Wavegroup_Regist__FPvUl = .text:0x8000BEE0; // type:function size:0x84 scope:global align:32 +Wavegroup_Init__Fv = .text:0x8000BF80; // type:function size:0x2C scope:global align:32 +WaveidToWavegroup__FUlUl = .text:0x8000BFC0; // type:function size:0x64 scope:global align:32 +__WaveScene_Set__FUlUli = .text:0x8000C040; // type:function size:0x8C scope:local align:32 +WaveScene_Set__FUlUl = .text:0x8000C0E0; // type:function size:0x24 scope:global align:32 +WaveScene_Load__FUlUl = .text:0x8000C120; // type:function size:0x24 scope:global align:32 +__WaveScene_Close__FUlUli = .text:0x8000C160; // type:function size:0x74 scope:local align:32 +WaveScene_Close__FUlUl = .text:0x8000C1E0; // type:function size:0x24 scope:global align:32 +WaveScene_Erase__FUlUl = .text:0x8000C220; // type:function size:0x24 scope:global align:32 +UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x8000C260; // type:function size:0xA0 scope:local align:32 +UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x8000C300; // type:function size:0x174 scope:local align:32 +Jac_SceneClose__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000C480; // type:function size:0x9C scope:global align:32 +Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x8000C520; // type:function size:0x15C scope:global align:32 +SearchWave__FP5Ctrl_Ul = .text:0x8000C680; // type:function size:0x44 scope:local align:32 +__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x8000C6E0; // type:function size:0x10C scope:global align:32 +GetSoundHandle__FP10CtrlGroup_Ul = .text:0x8000C800; // type:function size:0x74 scope:global align:32 +Jac_WsVirtualToPhysical__FUs = .text:0x8000C880; // type:function size:0x18 scope:global align:32 +Jac_BnkVirtualToPhysical__FUs = .text:0x8000C8A0; // type:function size:0x18 scope:global align:32 +Jac_WsConnectTableSet__FUlUl = .text:0x8000C8C0; // type:function size:0x50 scope:global align:32 +Jac_BnkConnectTableSet__FUlUl = .text:0x8000C920; // type:function size:0x50 scope:global align:32 +Jac_ConnectTableInit__Fv = .text:0x8000C980; // type:function size:0x3C scope:global align:32 +Bank_InstChange__FP5Bank_Ul = .text:0x8000C9C0; // type:function size:0x30 scope:global align:32 +Bank_PercChange__FP5Bank_Ul = .text:0x8000CA00; // type:function size:0x30 scope:global align:32 +Bank_GetInstKeymap__FP5Inst_Uc = .text:0x8000CA40; // type:function size:0x5C scope:global align:32 +Bank_GetInstVmap__FP5Inst_UcUc = .text:0x8000CAA0; // type:function size:0x90 scope:global align:32 +Bank_GetPercVmap__FP5Perc_UcUc = .text:0x8000CB40; // type:function size:0x68 scope:global align:32 +Bank_SenseToOfs__FP6Sense_Uc = .text:0x8000CBC0; // type:function size:0x104 scope:global align:32 +Bank_RandToOfs__FP5Rand_ = .text:0x8000CCE0; // type:function size:0x48 scope:global align:32 +Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x8000CD40; // type:function size:0x3F8 scope:global align:32 +GetRandom_s32 = .text:0x8000D140; // type:function size:0x64 scope:global align:32 +GetRandom_u32 = .text:0x8000D1C0; // type:function size:0x24 scope:global align:32 +GetRandom_ulimit = .text:0x8000D200; // type:function size:0x38 scope:global align:32 +GetRandom_sf32 = .text:0x8000D240; // type:function size:0x54 scope:global align:32 +LoadAram__FPcPUlUl = .text:0x8000D2A0; // type:function size:0x64 scope:local align:32 +LoadAramSingle__FPcUlUlPUlUl = .text:0x8000D320; // type:function size:0x68 scope:local align:32 +Show_AramMotherHeap__Fv = .text:0x8000D3A0; // type:function size:0x2C scope:global align:32 +Collect_AramMotherHeap__Fv = .text:0x8000D3E0; // type:function size:0x2C scope:global align:32 +Init_AramMotherHeap__Fv = .text:0x8000D420; // type:function size:0x6C scope:global align:32 +LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x8000D4A0; // type:function size:0xF8 scope:global align:32 +LoadAram_All__FPcPUlP7jaheap_ = .text:0x8000D5A0; // type:function size:0x38 scope:global align:32 +LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x8000D5E0; // type:function size:0x28 scope:global align:32 +sqrtf2__Ff = .text:0x8000D620; // type:function size:0x20 scope:global align:32 +sqrtf__3stdFf = .text:0x8000D640; // type:function size:0x64 scope:weak align:32 +atanf2__Fff = .text:0x8000D6C0; // type:function size:0x24 scope:global align:32 +Jac_InitSinTable__Fv = .text:0x8000D700; // type:function size:0x88 scope:global align:32 +sinf3__Ff = .text:0x8000D7A0; // type:function size:0x34 scope:global align:32 +Jac_FatMemory_Init__FUl = .text:0x8000D7E0; // type:function size:0x44 scope:global align:32 +FAT_InitSystem__FPUcUl = .text:0x8000D840; // type:function size:0xBC scope:global align:32 +FAT_AllocateMemory__FUl = .text:0x8000D900; // type:function size:0xD4 scope:global align:32 +FAT_FreeMemory__FUs = .text:0x8000D9E0; // type:function size:0x190 scope:global align:32 +FAT_GetPointer__FUsUl = .text:0x8000DB80; // type:function size:0x48 scope:global align:32 +FAT_ReadByte__FUsUl = .text:0x8000DBE0; // type:function size:0x34 scope:global align:32 +FAT_StoreBlock__FPUcUsUlUl = .text:0x8000DC20; // type:function size:0xE0 scope:global align:32 +Add_PortcmdOnce = .text:0x8000DD00; // type:function size:0x28 scope:global align:32 +Set_Portcmd = .text:0x8000DD40; // type:function size:0x18 scope:global align:32 +Add_Portcmd = .text:0x8000DD60; // type:function size:0x78 scope:global align:32 +Get_Portcmd__FP10JPorthead_ = .text:0x8000DDE0; // type:function size:0x40 scope:local align:32 +Jac_Portcmd_Proc_Once = .text:0x8000DE20; // type:function size:0x50 scope:global align:32 +Jac_Portcmd_Proc_Stay = .text:0x8000DE80; // type:function size:0x4C scope:global align:32 +Portcmd_Main__FPv = .text:0x8000DEE0; // type:function size:0x30 scope:local align:32 +Jac_Porthead_Init = .text:0x8000DF20; // type:function size:0x10 scope:global align:32 +Jac_Portcmd_Init = .text:0x8000DF40; // type:function size:0x3C scope:global align:32 +JV_InitHeader_M__FPcPUcPUc = .text:0x8000DF80; // type:function size:0x138 scope:global align:32 +JV_GetArchiveHandle__FPc = .text:0x8000E0C0; // type:function size:0x7C scope:global align:32 +JV_GetRealHandle__FUl = .text:0x8000E140; // type:function size:0x80 scope:global align:32 +JV_CheckSize__FUl = .text:0x8000E1C0; // type:function size:0x34 scope:global align:32 +JV_LoadFile__FUlPUcUlUl = .text:0x8000E200; // type:function size:0xD0 scope:global align:32 +JV_LoadFile_Async2__FUlPUcUlUlPFUl_vUl = .text:0x8000E2E0; // type:function size:0xE0 scope:global align:32 +ARAMFinish__FUl = .text:0x8000E3C0; // type:function size:0x34 scope:local align:32 +ARAM_TO_ARAM_DMA__FUlUlUl = .text:0x8000E400; // type:function size:0xE8 scope:local align:32 +DRAM_TO_DRAM_DMA__FUlUlUl = .text:0x8000E500; // type:function size:0xFC scope:local align:32 +Jac_InitHeap__FP7jaheap_ = .text:0x8000E600; // type:function size:0x44 scope:global align:32 +Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x8000E660; // type:function size:0x38 scope:global align:32 +Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x8000E6A0; // type:function size:0x100 scope:global align:32 +Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x8000E7A0; // type:function size:0x38 scope:global align:32 +Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x8000E7E0; // type:function size:0x5C scope:global align:32 +Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x8000E840; // type:function size:0x1B4 scope:global align:32 +Jac_DeleteHeap__FP7jaheap_ = .text:0x8000EA00; // type:function size:0x1B0 scope:global align:32 +Jac_Move_Children__FP7jaheap_l = .text:0x8000EBC0; // type:function size:0x64 scope:local align:32 +Jac_GarbageCollection_St__FP7jaheap_ = .text:0x8000EC40; // type:function size:0xC8 scope:global align:32 +Jac_ShowHeap__FP7jaheap_Ul = .text:0x8000ED20; // type:function size:0xC4 scope:global align:32 +Jam_OfsToAddr = .text:0x8000EE00; // type:function size:0x54 scope:global align:32 +__ByteReadOfs__FP5seqp_Ul = .text:0x8000EE60; // type:function size:0x54 scope:local align:32 +__WordReadOfs__FP5seqp_Ul = .text:0x8000EEC0; // type:function size:0x50 scope:local align:32 +__24ReadOfs__FP5seqp_Ul = .text:0x8000EF20; // type:function size:0x68 scope:local align:32 +__LongReadOfs__FP5seqp_Ul = .text:0x8000EFA0; // type:function size:0x50 scope:local align:32 +__ByteRead__FP5seqp_ = .text:0x8000F000; // type:function size:0x70 scope:local align:32 +__WordRead__FP5seqp_ = .text:0x8000F080; // type:function size:0x48 scope:local align:32 +__24Read__FP5seqp_ = .text:0x8000F0E0; // type:function size:0x5C scope:local align:32 +__ConditionCheck__FP5seqp_Uc = .text:0x8000F140; // type:function size:0xD0 scope:local align:32 +Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x8000F220; // type:function size:0x90 scope:global align:32 +Extend8to16__FUc = .text:0x8000F2C0; // type:function size:0x20 scope:global align:32 +Jam_WriteTimeParam__FP5seqp_Uc = .text:0x8000F2E0; // type:function size:0x1A8 scope:global align:32 +Jam_WriteRegDirect = .text:0x8000F4A0; // type:function size:0xAC scope:global align:32 +LoadTbl__FP5seqp_UlUlUl = .text:0x8000F560; // type:function size:0x98 scope:local align:32 +Jam_WriteRegParam = .text:0x8000F600; // type:function size:0x484 scope:global align:32 +Jam_ReadRegDirect = .text:0x8000FAA0; // type:function size:0x16C scope:global align:32 +Jam_ReadRegXY__FP5seqp_ = .text:0x8000FC20; // type:function size:0x48 scope:global align:32 +Jam_ReadReg32 = .text:0x8000FC80; // type:function size:0x5C scope:global align:32 +Jam_WriteRegXY = .text:0x8000FCE0; // type:function size:0x48 scope:global align:32 +__ExchangeRegisterValue__FP5seqp_Uc = .text:0x8000FD40; // type:function size:0x3C scope:global align:32 +Jam_WritePortAppDirect = .text:0x8000FD80; // type:function size:0x78 scope:global align:32 +Jam_ReadPortAppDirect = .text:0x8000FE00; // type:function size:0x30 scope:global align:32 +Jam_CheckPortAppDirect = .text:0x8000FE40; // type:function size:0x6C scope:global align:32 +Jam_InitRegistTrack = .text:0x8000FEC0; // type:function size:0x30 scope:global align:32 +Jam_RegistTrack__FP5seqp_Ul = .text:0x8000FF00; // type:function size:0xA8 scope:global align:32 +Jam_UnRegistTrack = .text:0x8000FFC0; // type:function size:0x8C scope:global align:32 +Jam_GetTrackHandle = .text:0x80010060; // type:function size:0x50 scope:global align:32 +Jam_InitExtBuffer = .text:0x800100C0; // type:function size:0x18 scope:global align:32 +Jam_AssignExtBuffer = .text:0x800100E0; // type:function size:0x38 scope:global align:32 +Jam_AssignExtBufferP = .text:0x80010120; // type:function size:0x60 scope:global align:32 +Jam_SetExtFirFilterD = .text:0x80010180; // type:function size:0x44 scope:global align:32 +Jam_SetExtParamD = .text:0x800101E0; // type:function size:0xA4 scope:global align:32 +Jam_OnExtSwitchD = .text:0x800102A0; // type:function size:0x24 scope:global align:32 +Jam_OffExtSwitchD = .text:0x800102E0; // type:function size:0x28 scope:global align:32 +Jam_SetExtParam = .text:0x80010320; // type:function size:0x2C scope:global align:32 +Jam_OnExtSwitch = .text:0x80010360; // type:function size:0x2C scope:global align:32 +Jam_OffExtSwitch = .text:0x800103A0; // type:function size:0x2C scope:global align:32 +Jam_SetExtParamP = .text:0x800103E0; // type:function size:0x38 scope:global align:32 +Jam_OnExtSwitchP = .text:0x80010420; // type:function size:0x3C scope:global align:32 +Jam_RegisterTrackCallback = .text:0x80010460; // type:function size:0xC scope:global align:32 +__PanCalc__FfffUc = .text:0x80010480; // type:function size:0x4C scope:local align:32 +Jam_UpdateTrackAll = .text:0x800104E0; // type:function size:0x320 scope:global align:32 +OSf32tos8 = .text:0x80010800; // type:function size:0xC scope:local align:32 +Jam_UpdateTrack = .text:0x80010820; // type:function size:0x4A8 scope:global align:32 +Jam_UpdateTempo = .text:0x80010CE0; // type:function size:0x104 scope:global align:32 +Jam_MuteTrack = .text:0x80010E00; // type:function size:0xCC scope:global align:32 +Jam_PauseTrack = .text:0x80010EE0; // type:function size:0x13C scope:global align:32 +Jam_UnPauseTrack = .text:0x80011020; // type:function size:0xEC scope:global align:32 +Jam_SetInterrupt = .text:0x80011120; // type:function size:0x28 scope:global align:32 +Jam_TryInterrupt = .text:0x80011160; // type:function size:0x90 scope:global align:32 +Cmd_OpenTrack__Fv = .text:0x80011200; // type:function size:0x38 scope:local align:32 +Cmd_OpenTrackBros__Fv = .text:0x80011240; // type:function size:0x50 scope:local align:32 +Cmd_Call__Fv = .text:0x800112A0; // type:function size:0x3C scope:local align:32 +Cmd_CallF__Fv = .text:0x800112E0; // type:function size:0x100 scope:local align:32 +Cmd_Ret__Fv = .text:0x800113E0; // type:function size:0x28 scope:local align:32 +Cmd_RetF__Fv = .text:0x80011420; // type:function size:0x60 scope:local align:32 +Cmd_Jmp__Fv = .text:0x80011480; // type:function size:0x1C scope:local align:32 +Cmd_JmpF__Fv = .text:0x800114A0; // type:function size:0x20 scope:local align:32 +Cmd_LoopS__Fv = .text:0x800114C0; // type:function size:0x48 scope:local align:32 +Cmd_LoopE__Fv = .text:0x80011520; // type:function size:0x78 scope:local align:32 +Cmd_ReadPort__Fv = .text:0x800115A0; // type:function size:0x54 scope:local align:32 +Cmd_WritePort__Fv = .text:0x80011600; // type:function size:0x40 scope:local align:32 +Cmd_CheckPortImport__Fv = .text:0x80011640; // type:function size:0x44 scope:local align:32 +Cmd_CheckPortExport__Fv = .text:0x800116A0; // type:function size:0x44 scope:local align:32 +Cmd_WaitReg__Fv = .text:0x80011700; // type:function size:0x2C scope:local align:32 +Cmd_ConnectName__Fv = .text:0x80011740; // type:function size:0x28 scope:local align:32 +Cmd_ParentWritePort__Fv = .text:0x80011780; // type:function size:0x40 scope:local align:32 +Cmd_ChildWritePort__Fv = .text:0x800117C0; // type:function size:0x48 scope:local align:32 +Cmd_SetLastNote__Fv = .text:0x80011820; // type:function size:0x30 scope:local align:32 +Cmd_TimeRelate__Fv = .text:0x80011860; // type:function size:0x1C scope:local align:32 +Cmd_SimpleOsc__Fv = .text:0x80011880; // type:function size:0x34 scope:local align:32 +Cmd_SimpleEnv__Fv = .text:0x800118C0; // type:function size:0x38 scope:local align:32 +Cmd_SimpleADSR__Fv = .text:0x80011900; // type:function size:0x64 scope:local align:32 +Cmd_Transpose__Fv = .text:0x80011980; // type:function size:0x48 scope:local align:32 +Cmd_CloseTrack__Fv = .text:0x800119E0; // type:function size:0x68 scope:local align:32 +Cmd_OutSwitch__Fv = .text:0x80011A60; // type:function size:0x38 scope:local align:32 +Cmd_UpdateSync__Fv = .text:0x80011AA0; // type:function size:0x34 scope:local align:32 +Cmd_BusConnect__Fv = .text:0x80011AE0; // type:function size:0x2C scope:local align:32 +Cmd_PauseStatus__Fv = .text:0x80011B20; // type:function size:0x1C scope:local align:32 +Cmd_SetInterrupt__Fv = .text:0x80011B40; // type:function size:0x44 scope:local align:32 +Cmd_DisInterrupt__Fv = .text:0x80011BA0; // type:function size:0x30 scope:local align:32 +Cmd_ClrI__Fv = .text:0x80011BE0; // type:function size:0x14 scope:local align:32 +Cmd_SetI__Fv = .text:0x80011C00; // type:function size:0x14 scope:local align:32 +Cmd_RetI__Fv = .text:0x80011C20; // type:function size:0x2C scope:local align:32 +Cmd_IntTimer__Fv = .text:0x80011C60; // type:function size:0x34 scope:local align:32 +Cmd_ConnectOpen__Fv = .text:0x80011CA0; // type:function size:0x2C scope:local align:32 +Cmd_ConnectClose__Fv = .text:0x80011CE0; // type:function size:0x28 scope:local align:32 +Cmd_SyncCPU__Fv = .text:0x80011D20; // type:function size:0x60 scope:local align:32 +Cmd_FlushAll__Fv = .text:0x80011D80; // type:function size:0x38 scope:local align:32 +Cmd_FlushRelease__Fv = .text:0x80011DC0; // type:function size:0x2C scope:local align:32 +Cmd_Wait3__Fv = .text:0x80011E00; // type:function size:0x2C scope:local align:32 +Cmd_TimeBase__Fv = .text:0x80011E40; // type:function size:0x44 scope:local align:32 +Cmd_Tempo__Fv = .text:0x80011EA0; // type:function size:0x50 scope:local align:32 +Cmd_Finish__Fv = .text:0x80011F00; // type:function size:0xCC scope:local align:32 +Cmd_Nop__Fv = .text:0x80011FE0; // type:function size:0x8 scope:local align:32 +Cmd_PanPowSet__Fv = .text:0x80012000; // type:function size:0xAC scope:local align:32 +Cmd_IIRSet__Fv = .text:0x800120C0; // type:function size:0x94 scope:local align:32 +Cmd_FIRSet__Fv = .text:0x80012160; // type:function size:0x44 scope:local align:32 +Cmd_EXTSet__Fv = .text:0x800121C0; // type:function size:0x50 scope:local align:32 +Cmd_PanSwSet__Fv = .text:0x80012220; // type:function size:0xC4 scope:local align:32 +Cmd_OscRoute__Fv = .text:0x80012300; // type:function size:0x40 scope:local align:32 +Cmd_IIRCutOff__Fv = .text:0x80012340; // type:function size:0xA0 scope:local align:32 +Cmd_OscFull__Fv = .text:0x800123E0; // type:function size:0x40 scope:local align:32 +Cmd_CheckWave__Fv = .text:0x80012420; // type:function size:0x68 scope:local align:32 +Cmd_Printf__Fv = .text:0x800124A0; // type:function size:0x204 scope:local align:32 +Cmd_Process__FP5seqp_UcUs = .text:0x800126C0; // type:function size:0x130 scope:global align:32 +RegCmd_Process__FP5seqp_iUl = .text:0x80012800; // type:function size:0xA8 scope:global align:32 +Jam_SeqmainNote = .text:0x800128C0; // type:function size:0x8C0 scope:global align:32 +SeqUpdate = .text:0x80013180; // type:function size:0xA8 scope:global align:32 +NoteON__FP5seqp_llll = .text:0x80013240; // type:function size:0x394 scope:global align:32 +NoteOFF_R__FP5seqp_UcUs = .text:0x800135E0; // type:function size:0x90 scope:global align:32 +NoteOFF__FP5seqp_Uc = .text:0x80013680; // type:function size:0x24 scope:global align:32 +GateON__FP5seqp_llll = .text:0x800136C0; // type:function size:0x58 scope:global align:32 +CheckNoteStop__FP5seqp_l = .text:0x80013720; // type:function size:0x64 scope:global align:32 +Jaq_Reset = .text:0x800137A0; // type:function size:0xA0 scope:global align:32 +BackTrack__FP5seqp_ = .text:0x80013840; // type:function size:0x88 scope:local align:32 +GetNewTrack__Fv = .text:0x800138E0; // type:function size:0x64 scope:local align:32 +AllocNewRoot__FP5seqp_ = .text:0x80013960; // type:function size:0x48 scope:global align:32 +DeAllocRoot__FP5seqp_ = .text:0x800139C0; // type:function size:0x4C scope:global align:32 +Jaq_HandleToSeq = .text:0x80013A20; // type:function size:0x18 scope:global align:32 +Init_Track__FP5seqp_UlP5seqp_ = .text:0x80013A40; // type:function size:0x368 scope:local align:32 +Jaq_StopSeq = .text:0x80013DC0; // type:function size:0xA0 scope:global align:32 +__StopSeq__FP5seqp_ = .text:0x80013E60; // type:function size:0x54 scope:local align:32 +Jaq_SetSeqData = .text:0x80013EC0; // type:function size:0x24 scope:global align:32 +Jaq_SetSeqData_Limit = .text:0x80013F00; // type:function size:0x170 scope:global align:32 +Jaq_SetBankNumber = .text:0x80014080; // type:function size:0x2C scope:global align:32 +Jaq_StartSeq = .text:0x800140C0; // type:function size:0xB4 scope:global align:32 +Jaq_OpenTrack = .text:0x80014180; // type:function size:0x14C scope:global align:32 +__AllNoteOff__FP5seqp_ = .text:0x800142E0; // type:function size:0xB4 scope:global align:32 +Jaq_CloseTrack = .text:0x800143A0; // type:function size:0x120 scope:global align:32 +Jaq_RootCallback__FPv = .text:0x800144C0; // type:function size:0xE8 scope:local align:32 +Jam_PitchToCent = .text:0x800145C0; // type:function size:0xCC scope:global align:32 +Osc_Update_Param = .text:0x800146A0; // type:function size:0x90 scope:global align:32 +Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80014740; // type:function size:0x3C scope:global align:32 +Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80014780; // type:function size:0x3C scope:global align:32 +Osc_Setup_Simple = .text:0x800147C0; // type:function size:0x64 scope:global align:32 +Osc_Clear_Overwrite = .text:0x80014840; // type:function size:0x10 scope:global align:32 +Osc_Init_Env = .text:0x80014860; // type:function size:0x4C scope:global align:32 +Osc_Setup_SimpleEnv = .text:0x800148C0; // type:function size:0x94 scope:global align:32 +Osc_Setup_ADSR = .text:0x80014960; // type:function size:0xB0 scope:global align:32 +Osc_Setup_Full = .text:0x80014A20; // type:function size:0x10C scope:global align:32 +__GetTrigger__FP3jc_Uc = .text:0x80014B40; // type:function size:0x34 scope:local align:32 +__Clamp01__Ff = .text:0x80014B80; // type:function size:0x28 scope:local align:32 +__Clamp01InitPan__FP3jc_ = .text:0x80014BC0; // type:function size:0x54 scope:local align:32 +__DoEffect__FP3jc_Ucf = .text:0x80014C20; // type:function size:0x68 scope:local align:32 +EffecterInit__FP3jc_P5Inst_ = .text:0x80014CA0; // type:function size:0x138 scope:local align:32 +EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x80014DE0; // type:function size:0xD0 scope:local align:32 +EffecterInit_Osc__FP3jc_ = .text:0x80014EC0; // type:function size:0x7C scope:local align:32 +Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80014F40; // type:function size:0x6C scope:global align:32 +__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x80014FC0; // type:function size:0x10C scope:local align:32 +__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x800150E0; // type:function size:0x154 scope:local align:32 +PercRead__FUlUl = .text:0x80015240; // type:function size:0x44 scope:global align:32 +InstRead__FUlUl = .text:0x800152A0; // type:function size:0x44 scope:global align:32 +VmapRead__FP5Inst_UcUc = .text:0x80015300; // type:function size:0x2C scope:global align:32 +__Oneshot_WavePause__FP3jc_Uc = .text:0x80015340; // type:function size:0x10 scope:local align:32 +__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80015360; // type:function size:0x14C scope:local align:32 +__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x800154C0; // type:function size:0xE8 scope:local align:32 +Init_1shot__FP4jcs_Ul = .text:0x800155C0; // type:function size:0x70 scope:global align:32 +Stop_1Shot__FP3jc_ = .text:0x80015640; // type:function size:0x3C scope:global align:32 +Stop_1Shot_R__FP3jc_Us = .text:0x80015680; // type:function size:0x40 scope:global align:32 +AllStop_1Shot__FP4jcs_ = .text:0x800156C0; // type:function size:0x6C scope:global align:32 +Extra_Update__FP3jc_8JCSTATUS = .text:0x80015740; // type:function size:0x6C scope:local align:32 +SetPitchTarget_1Shot__FP3jc_fUl = .text:0x800157C0; // type:function size:0x30 scope:global align:32 +SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80015800; // type:function size:0x90 scope:global align:32 +Gate_1Shot__FP3jc_UcUcl = .text:0x800158A0; // type:function size:0xC8 scope:global align:32 +UpdatePause_1Shot__FP3jc_Uc = .text:0x80015980; // type:function size:0x8 scope:global align:32 +UpdatePanPower_1Shot__FP3jc_ffff = .text:0x800159A0; // type:function size:0x30 scope:global align:32 +FlushRelease_1Shot__FP4jcs_ = .text:0x800159E0; // type:function size:0xB0 scope:global align:32 +Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x80015AA0; // type:function size:0x1C4 scope:local align:32 +One_CheckInstWave__F8SOUNDID_ = .text:0x80015C80; // type:function size:0x98 scope:global align:32 +Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80015D20; // type:function size:0x27C scope:global align:32 +Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x80015FA0; // type:function size:0x20C scope:global align:32 +Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800161C0; // type:function size:0x128 scope:global align:32 +Jac_OutputMode = .text:0x80016300; // type:function size:0x20 scope:global align:32 +Jac_SetBGMVolume = .text:0x80016320; // type:function size:0x10 scope:global align:32 +Jac_SetSEVolume = .text:0x80016340; // type:function size:0x10 scope:global align:32 +Jac_Gsync = .text:0x80016360; // type:function size:0x48 scope:global align:32 +Jac_SetProcessStatus = .text:0x800163C0; // type:function size:0x8C scope:global align:32 +InitQueue__Fv = .text:0x80016460; // type:function size:0x6C scope:local align:32 +Jac_StopSe = .text:0x800164E0; // type:function size:0xC scope:global align:32 +Jac_PauseCheck = .text:0x80016500; // type:function size:0x10 scope:global align:32 +Jac_SysSEDemoFadeCheck = .text:0x80016520; // type:function size:0x68 scope:global align:32 +Jac_PlaySystemSe = .text:0x800165A0; // type:function size:0x3A0 scope:global align:32 +Jac_StopSystemSe = .text:0x80016940; // type:function size:0x70 scope:global align:32 +Jac_PlayInit__Fv = .text:0x800169C0; // type:function size:0x50 scope:local align:32 +Jac_Archiver_Init__Fv = .text:0x80016A20; // type:function size:0x4 scope:local align:32 +TrackReceive__FP5seqp_Us = .text:0x80016A40; // type:function size:0xAC scope:local align:32 +AuxBusInit__Fv = .text:0x80016B00; // type:function size:0x7C scope:local align:32 +__BootSoundOK__FUl = .text:0x80016B80; // type:function size:0xC scope:local align:32 +Jac_CheckBootOk = .text:0x80016BA0; // type:function size:0x8 scope:global align:32 +Jac_Start = .text:0x80016BC0; // type:function size:0x144 scope:global align:32 +Jac_Freeze_Precall = .text:0x80016D20; // type:function size:0x4C scope:global align:32 +Jac_Freeze = .text:0x80016D80; // type:function size:0x38 scope:global align:32 +__ResetCounter__Fv = .text:0x80016DC0; // type:function size:0xC scope:local align:32 +Jac_AddDVDBuffer = .text:0x80016DE0; // type:function size:0x38 scope:global align:32 +Jac_BackDVDBuffer = .text:0x80016E20; // type:function size:0x34 scope:global align:32 +Jac_StreamMovieInit = .text:0x80016E60; // type:function size:0x70 scope:global align:32 +Jac_StreamMovieStop = .text:0x80016EE0; // type:function size:0x4C scope:global align:32 +Jac_StreamMovieUpdate = .text:0x80016F40; // type:function size:0x20 scope:global align:32 +Jac_StreamMovieGetPicture = .text:0x80016F60; // type:function size:0x64 scope:global align:32 +__SetVolandPan__FP9Portargs_ = .text:0x80016FE0; // type:function size:0x48 scope:local align:32 +SendToStack__FP7SEvent_ = .text:0x80017040; // type:function size:0x48 scope:local align:32 +Jac_InitEventSystem = .text:0x800170A0; // type:function size:0xEC scope:global align:32 +Jac_EventFrameCheck = .text:0x800171A0; // type:function size:0xBC scope:global align:32 +Jac_UpdateCamera = .text:0x80017260; // type:function size:0x13C scope:global align:32 +Jac_CreateEvent = .text:0x800173A0; // type:function size:0x118 scope:global align:32 +Jac_UpdateEventPosition = .text:0x800174C0; // type:function size:0x5C scope:global align:32 +Jac_PlayEventAction = .text:0x80017520; // type:function size:0x2E0 scope:global align:32 +Jac_StopEventAction = .text:0x80017800; // type:function size:0xBC scope:global align:32 +MML_StopEventAction = .text:0x800178C0; // type:function size:0x70 scope:global align:32 +MML_StopEventAll = .text:0x80017940; // type:function size:0x5C scope:global align:32 +Jac_DestroyEvent = .text:0x800179A0; // type:function size:0x94 scope:global align:32 +Jac_InitAllEvent = .text:0x80017A40; // type:function size:0x3C scope:global align:32 +Jac_CheckFreeEvents = .text:0x80017A80; // type:function size:0x38 scope:global align:32 +Jac_GetActiveEvents = .text:0x80017AC0; // type:function size:0x50 scope:global align:32 +Jac_Orima_Walk = .text:0x80017B20; // type:function size:0xDC scope:global align:32 +Jac_Orima_Formation = .text:0x80017C00; // type:function size:0x190 scope:global align:32 +Jac_PlayOrimaSe = .text:0x80017DA0; // type:function size:0x250 scope:global align:32 +Jac_PauseOrimaSe__Fv = .text:0x80018000; // type:function size:0x30 scope:global align:32 +Jac_UnPauseOrimaSe__Fv = .text:0x80018040; // type:function size:0x30 scope:global align:32 +Jac_StopOrimaSe = .text:0x80018080; // type:function size:0xB8 scope:global align:32 +Jac_Piki_Number = .text:0x80018140; // type:function size:0x78 scope:global align:32 +Jac_UpdatePikiGaya__Fv = .text:0x800181C0; // type:function size:0x1B4 scope:global align:32 +Jac_BgmFrameCallback__FPv = .text:0x80018380; // type:function size:0x3C scope:local align:32 +Jac_InitBgm = .text:0x800183C0; // type:function size:0x180 scope:global align:32 +Jac_FadeOutBgm = .text:0x80018540; // type:function size:0x2C scope:global align:32 +Jac_StopBgm = .text:0x80018580; // type:function size:0x54 scope:global align:32 +Jac_ReadyBgm = .text:0x800185E0; // type:function size:0xA0 scope:global align:32 +Jac_PlayBgm = .text:0x80018680; // type:function size:0x250 scope:global align:32 +Jac_ChangeBgmMode = .text:0x800188E0; // type:function size:0x58 scope:global align:32 +Jac_SetBgmModeFlag = .text:0x80018940; // type:function size:0xEC scope:global align:32 +Jac_BgmFrameWork = .text:0x80018A40; // type:function size:0x124 scope:global align:32 +Jac_MoveBgmTrackVol = .text:0x80018B80; // type:function size:0xBC scope:global align:32 +Jac_ChangeBgmTrackVol = .text:0x80018C40; // type:function size:0x17C scope:global align:32 +Jac_UpdateBgmCrossVol__FP11BgmControl_ = .text:0x80018DC0; // type:function size:0x8C scope:local align:32 +Jac_GameVolume = .text:0x80018E60; // type:function size:0xC4 scope:global align:32 +Jac_EasyCrossFade = .text:0x80018F40; // type:function size:0xE4 scope:global align:32 +Jac_DemoFade = .text:0x80019040; // type:function size:0xC8 scope:global align:32 +Jac_EnterBossMode = .text:0x80019120; // type:function size:0x28 scope:global align:32 +Jac_ExitBossMode = .text:0x80019160; // type:function size:0x28 scope:global align:32 +Jac_Delete_CurrentBgmWave = .text:0x800191A0; // type:function size:0x38 scope:global align:32 +__Loaded__FUl = .text:0x800191E0; // type:function size:0x94 scope:local align:32 +Jac_GetCurrentScene = .text:0x80019280; // type:function size:0x8 scope:global align:32 +Jac_TellChgMode = .text:0x800192A0; // type:function size:0x8 scope:global align:32 +Jac_SceneSetup = .text:0x800192C0; // type:function size:0x45C scope:global align:32 +Jac_SceneExit = .text:0x80019720; // type:function size:0xFC scope:global align:32 +Jac_SetStreamLevel = .text:0x80019820; // type:function size:0xC scope:global align:32 +Jac_UpdateStreamLevel = .text:0x80019840; // type:function size:0x64 scope:global align:32 +MovieSync__FUll = .text:0x800198C0; // type:function size:0x7C scope:local align:32 +Jac_InitStreamSystem = .text:0x80019940; // type:function size:0x28 scope:global align:32 +Jac_StopDemoSound__FUl = .text:0x80019980; // type:function size:0x38 scope:global align:32 +Jac_PrepareDemoSound__FUl = .text:0x800199C0; // type:function size:0x98 scope:global align:32 +Jac_StartDemoSound__FUl = .text:0x80019A60; // type:function size:0xA4 scope:global align:32 +Jac_DemoSceneInit = .text:0x80019B20; // type:function size:0x10 scope:global align:32 +Jac_DemoCheckFrameCall__Fv = .text:0x80019B40; // type:function size:0x18 scope:local align:32 +Jac_DemoEventUnPauseCheck__Fv = .text:0x80019B60; // type:function size:0x50 scope:global align:32 +Jac_DemoCheck__Fv = .text:0x80019BC0; // type:function size:0x48 scope:global align:32 +Jac_DemoWalkCheck__Fv = .text:0x80019C20; // type:function size:0x80 scope:global align:32 +Jac_DemoCheckEvent__FUc = .text:0x80019CA0; // type:function size:0x7C scope:global align:32 +DoSequence__FUlUl = .text:0x80019D20; // type:function size:0x16C scope:local align:32 +Jac_PlayDemoSequenceDirect__FUl = .text:0x80019EA0; // type:function size:0x44 scope:global align:32 +Jac_InitDemoSystem__Fv = .text:0x80019F00; // type:function size:0x50 scope:global align:32 +Jac_StartDemo = .text:0x80019F60; // type:function size:0x4F0 scope:global align:32 +Jac_DemoSound = .text:0x8001A460; // type:function size:0x40 scope:global align:32 +Jac_DemoFrame = .text:0x8001A4A0; // type:function size:0x4C scope:global align:32 +Jac_BgmAnimEndRecover__Fv = .text:0x8001A500; // type:function size:0x7C scope:local align:32 +Jac_BgmAnimEndStop__Fv = .text:0x8001A580; // type:function size:0x5C scope:local align:32 +Jac_DemoBGMForceStop__Fv = .text:0x8001A5E0; // type:function size:0xD0 scope:global align:32 +__Jac_FinishDemo__Fv = .text:0x8001A6C0; // type:function size:0x108 scope:local align:32 +Jac_FinishDemo = .text:0x8001A7E0; // type:function size:0xE0 scope:global align:32 +Jac_FinishDemo_NoErase__Fv = .text:0x8001A8C0; // type:function size:0x20 scope:local align:32 +__Loaded__FUl = .text:0x8001A8E0; // type:function size:0x20 scope:local align:32 +__Prepare_BGM__FUl = .text:0x8001A900; // type:function size:0x1AC scope:local align:32 +Jac_PrepareDemo = .text:0x8001AAC0; // type:function size:0xA8 scope:global align:32 +Jac_StartPartsFindDemo = .text:0x8001AB80; // type:function size:0xD0 scope:global align:32 +Jac_FinishPartsFindDemo = .text:0x8001AC60; // type:function size:0x4C scope:global align:32 +Jac_StartTextDemo = .text:0x8001ACC0; // type:function size:0x84 scope:global align:32 +Jac_FinishTextDemo = .text:0x8001AD60; // type:function size:0x68 scope:global align:32 +Jac_SetDemoPartsID = .text:0x8001ADE0; // type:function size:0x18 scope:global align:32 +Jac_SetDemoOnyons = .text:0x8001AE00; // type:function size:0x18 scope:global align:32 +Jac_SetDemoPartsCount = .text:0x8001AE20; // type:function size:0x18 scope:global align:32 +Jaf_InitSeqArchive2__FPcPUcPUc = .text:0x8001AE40; // type:function size:0xD0 scope:global align:32 +Jaf_CheckSeqSize__FUl = .text:0x8001AF20; // type:function size:0x3C scope:global align:32 +Jaf_LoadSeq__FUlPUc = .text:0x8001AF60; // type:function size:0x88 scope:global align:32 +Jaf_ClearSeq__FUl = .text:0x8001B000; // type:function size:0x1C scope:global align:32 +Jaf_CheckSeq__FUl = .text:0x8001B020; // type:function size:0x18 scope:global align:32 +Jaf_ReadySeq__FUlUl = .text:0x8001B040; // type:function size:0xA0 scope:global align:32 +Jaf_PlaySeq__FUl = .text:0x8001B0E0; // type:function size:0x38 scope:global align:32 +Jaf_StartSeq__FUlUl = .text:0x8001B120; // type:function size:0x38 scope:global align:32 +Jaf_StopSeq__FUl = .text:0x8001B160; // type:function size:0x70 scope:global align:32 +Jaf_HandleToSeq__FUl = .text:0x8001B1E0; // type:function size:0x14 scope:global align:32 +Jaf_LoadFinish__FUl = .text:0x8001B200; // type:function size:0x28 scope:local align:32 +__LoadSeqA__FUlUlPUcPFUl_v = .text:0x8001B240; // type:function size:0x124 scope:global align:32 +Jaf_LoadSeqA__FUlPUc = .text:0x8001B380; // type:function size:0x34 scope:global align:32 +Add_Queue__FP9cmdqueue_ = .text:0x8001B3C0; // type:function size:0x3C scope:local align:32 +Jal_AddCmdQueue = .text:0x8001B400; // type:function size:0x60 scope:global align:32 +Jal_SendCmdQueue_Noblock = .text:0x8001B460; // type:function size:0x30 scope:global align:32 +Jal_SendCmdQueue_Force = .text:0x8001B4A0; // type:function size:0x54 scope:global align:32 +Jal_FrameWork__FPv = .text:0x8001B500; // type:function size:0x78 scope:local align:32 +Jal_CmdQueue_Init = .text:0x8001B580; // type:function size:0x2C scope:global align:32 +V3D_GetAngle__FP9Vector3D_ = .text:0x8001B5C0; // type:function size:0x34 scope:global align:32 +V3D_Abs__FP9Vector3D_ = .text:0x8001B600; // type:function size:0x40 scope:global align:32 +Stop_DirectPCM__FP6dspch_ = .text:0x8001B640; // type:function size:0x38 scope:global align:32 +Play_DirectPCM__FP6dspch_PsUsUl = .text:0x8001B680; // type:function size:0xDC scope:global align:32 +Get_DirectPCM_Counter__FP11DSPchannel_ = .text:0x8001B760; // type:function size:0xC scope:global align:32 +Get_DirectPCM_Remain__FP11DSPchannel_ = .text:0x8001B780; // type:function size:0x8 scope:global align:32 +__DVDReadAsyncRetry__Fv = .text:0x8001B7A0; // type:function size:0x3C scope:local align:32 +DVDReadAsyncPrio2__FP11DVDFileInfoPvllPFlP11DVDFileInfo_vl = .text:0x8001B7E0; // type:function size:0x48 scope:local align:32 +__LoadFin__FlP11DVDFileInfo = .text:0x8001B840; // type:function size:0x14C scope:local align:32 +LoadADPCM__FP11StreamCtrl_i = .text:0x8001B9A0; // type:function size:0x190 scope:local align:32 +BufContInit__FP11BufControl_UcUcUcUcUlUlUl = .text:0x8001BB40; // type:function size:0x20 scope:local align:32 +Init_StreamAudio = .text:0x8001BB60; // type:function size:0x30 scope:global align:32 +StreamAudio_Start = .text:0x8001BBA0; // type:function size:0x318 scope:global align:32 +StreamAudio_Callback__FPv = .text:0x8001BEC0; // type:function size:0x8B4 scope:local align:32 +RegisterStreamCallback = .text:0x8001C780; // type:function size:0x8 scope:global align:32 +__DecodePCM__FP11StreamCtrl_ = .text:0x8001C7A0; // type:function size:0x94 scope:local align:32 +Jac_Decode_ADPCM = .text:0x8001C840; // type:function size:0x194 scope:global align:32 +__DecodeADPCM__FP11StreamCtrl_ = .text:0x8001C9E0; // type:function size:0xD0 scope:local align:32 +Clamp16__Fl = .text:0x8001CAC0; // type:function size:0x24 scope:local align:32 +__DecodeADPCM4X__FP11StreamCtrl_ = .text:0x8001CB00; // type:function size:0x19C scope:local align:32 +__Decode__FP11StreamCtrl_ = .text:0x8001CCA0; // type:function size:0x6C scope:local align:32 +__PcmToLoop__FP11StreamCtrl_ = .text:0x8001CD20; // type:function size:0x13C scope:local align:32 +StreamSyncCheckReady = .text:0x8001CE60; // type:function size:0x38 scope:global align:32 +StreamSyncCheckReadyID = .text:0x8001CEA0; // type:function size:0x5C scope:global align:32 +StreamSyncCheckBusy = .text:0x8001CF00; // type:function size:0x54 scope:global align:32 +StreamSyncPlayAudio = .text:0x8001CF60; // type:function size:0x60 scope:global align:32 +StreamSyncStopAudio = .text:0x8001CFC0; // type:function size:0x50 scope:global align:32 +__StreamChgPitch__FP11StreamCtrl_ = .text:0x8001D020; // type:function size:0xA8 scope:local align:32 +__StreamChgVolume__FP11StreamCtrl_ = .text:0x8001D0E0; // type:function size:0x124 scope:local align:32 +StreamChgVolume = .text:0x8001D220; // type:function size:0x34 scope:global align:32 +StreamChgMixLevel = .text:0x8001D260; // type:function size:0x34 scope:global align:32 +StreamGetCurrentFrame = .text:0x8001D2A0; // type:function size:0x190 scope:global align:32 +StreamSetDVDPause = .text:0x8001D440; // type:function size:0x4C scope:global align:32 +StreamCheckAudioFormat = .text:0x8001D4A0; // type:function size:0x28 scope:global align:32 +Bank_Setup__FPc = .text:0x8001D4E0; // type:function size:0xE0 scope:global align:32 +Jac_SendStreamData__FPUcUl = .text:0x8001D5C0; // type:function size:0x90 scope:global align:32 +Jac_CheckStreamFree__FUl = .text:0x8001D660; // type:function size:0x20 scope:global align:32 +Jac_CheckStreamRemain__FUl = .text:0x8001D680; // type:function size:0x20 scope:global align:32 +Jac_GetStreamRemain__Fv = .text:0x8001D6A0; // type:function size:0xC scope:global align:32 +Jac_GetStreamData__FPUcUl = .text:0x8001D6C0; // type:function size:0xC0 scope:global align:32 +Jac_InitStreamData__FPUcUl = .text:0x8001D780; // type:function size:0x44 scope:global align:32 +__ReLoad__Fv = .text:0x8001D7E0; // type:function size:0x104 scope:local align:32 +__LoadFin__FUl = .text:0x8001D900; // type:function size:0x74 scope:local align:32 +__VirtualLoad__FUlUlPUc = .text:0x8001D980; // type:function size:0x198 scope:local align:32 +InitAudio1__FP13StreamHeader_PUcUl = .text:0x8001DB20; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Init = .text:0x8001DB80; // type:function size:0x3BC scope:global align:32 +hvqm_forcestop__Fv = .text:0x8001DF40; // type:function size:0x50 scope:local align:32 +Jac_HVQM_Update = .text:0x8001DFA0; // type:function size:0x39C scope:global align:32 +Jac_HVQM_ForceStop = .text:0x8001E340; // type:function size:0x74 scope:global align:32 +Jac_GetPicture = .text:0x8001E3C0; // type:function size:0x228 scope:global align:32 +InitPic__Fv = .text:0x8001E600; // type:function size:0x40 scope:local align:32 +CheckDraw__FUl = .text:0x8001E640; // type:function size:0x44 scope:local align:32 +Decode1__FPUcUlUc = .text:0x8001E6A0; // type:function size:0x14C scope:local align:32 +init_global_constants = .text:0x8001E7EC; // type:function size:0x360 scope:local align:4 +setHVQPlaneDesc = .text:0x8001EB4C; // type:function size:0x11C scope:local align:4 +_readTree = .text:0x8001EC68; // type:function size:0x2CC scope:local align:4 +getByte = .text:0x8001EF34; // type:function size:0x64 scope:local align:4 +Ipic_BasisNumDec = .text:0x8001EF98; // type:function size:0x2C4 scope:local align:4 +IpicDcvDec = .text:0x8001F25C; // type:function size:0x13C scope:local align:4 +getBit = .text:0x8001F398; // type:function size:0x40 scope:local align:4 +decodeHuff = .text:0x8001F3D8; // type:function size:0x70 scope:local align:4 +MakeNest = .text:0x8001F448; // type:function size:0x3A4 scope:local align:4 +WeightImBlock = .text:0x8001F7EC; // type:function size:0x198 scope:local align:4 +OrgBlock = .text:0x8001F984; // type:function size:0x48 scope:local align:4 +IntraAotBlock = .text:0x8001F9CC; // type:function size:0x3D0 scope:local align:4 +GetAotBasis = .text:0x8001FD9C; // type:function size:0x47C scope:local align:4 +IpicBlockDec = .text:0x80020218; // type:function size:0x144 scope:local align:4 +IpicLineDec = .text:0x8002035C; // type:function size:0xD4 scope:local align:4 +IpicPlaneDec = .text:0x80020430; // type:function size:0xDC scope:local align:4 +initMCHandler = .text:0x8002050C; // type:function size:0x8C scope:local align:4 +_MotionComp_00 = .text:0x80020598; // type:function size:0x9C scope:local align:4 +_MotionComp_01 = .text:0x80020634; // type:function size:0x1AC scope:local align:4 +_MotionComp_10 = .text:0x800207E0; // type:function size:0x19C scope:local align:4 +_MotionComp_11 = .text:0x8002097C; // type:function size:0x2AC scope:local align:4 +MotionComp = .text:0x80020C28; // type:function size:0xA00 scope:local align:4 +decode_PB_cc = .text:0x80021628; // type:function size:0x41C scope:local align:4 +PrediAotBlock = .text:0x80021A44; // type:function size:0x86C scope:local align:4 +GetMCAotBasis = .text:0x800222B0; // type:function size:0x4C4 scope:local align:4 +MCBlockDecMCNest = .text:0x80022774; // type:function size:0x164 scope:local align:4 +MCBlockDecDCNest = .text:0x800228D8; // type:function size:0x158 scope:local align:4 +spread_PB_descMap = .text:0x80022A30; // type:function size:0x430 scope:local align:4 +BpicPlaneDec = .text:0x80022E60; // type:function size:0x43C scope:local align:4 +HVQM4InitDecoder = .text:0x8002329C; // type:function size:0x20 scope:global align:4 +HVQM4InitSeqObj = .text:0x800232BC; // type:function size:0x24 scope:global align:4 +HVQM4BuffSize = .text:0x800232E0; // type:function size:0x74 scope:global align:4 +HVQM4SetBuffer = .text:0x80023354; // type:function size:0x464 scope:global align:4 +HVQM4DecodeIpic = .text:0x800237B8; // type:function size:0x510 scope:global align:4 +HVQM4DecodePpic = .text:0x80023CC8; // type:function size:0x24 scope:global align:4 +HVQM4DecodeBpic = .text:0x80023CEC; // type:function size:0x5A8 scope:global align:4 +reset__8AyuStackFi = .text:0x80024294; // type:function size:0xBC scope:global align:4 +push__8AyuStackFi = .text:0x80024350; // type:function size:0x114 scope:global align:4 +pop__8AyuStackFv = .text:0x80024464; // type:function size:0x54 scope:global align:4 +init__7AyuHeapFPciPvi = .text:0x800244B8; // type:function size:0x74 scope:global align:4 +__ct__8AyuCacheFUl = .text:0x8002452C; // type:function size:0x68 scope:global align:4 +init__8AyuCacheFUlUl = .text:0x80024594; // type:function size:0x198 scope:global align:4 +mallocL__8AyuCacheFUl = .text:0x8002472C; // type:function size:0x120 scope:global align:4 +cacheFree__8AyuCacheFPv = .text:0x8002484C; // type:function size:0x114 scope:global align:4 +isEmpty__8AyuCacheFv = .text:0x80024960; // type:function size:0x18 scope:global align:4 +largestBlockFree__8AyuCacheFv = .text:0x80024978; // type:function size:0x34 scope:global align:4 +__ct__7BaseAppFv = .text:0x800249AC; // type:function size:0xD8 scope:global align:4 +setName__8CoreNodeFPc = .text:0x80024A84; // type:function size:0x8 scope:weak align:4 +softReset__7BaseAppFv = .text:0x80024A8C; // type:function size:0x48 scope:global align:4 +__dt__7BaseAppFv = .text:0x80024AD4; // type:function size:0xA4 scope:global align:4 +flush__6StreamFv = .text:0x80024B78; // type:function size:0x4 scope:weak align:4 +InitApp__7BaseAppFPc = .text:0x80024B7C; // type:function size:0x4 scope:weak align:4 +idle__7BaseAppFv = .text:0x80024B80; // type:function size:0x8 scope:weak align:4 +keyDown__7BaseAppFiii = .text:0x80024B88; // type:function size:0x8 scope:weak align:4 +useHeap__7BaseAppFi = .text:0x80024B90; // type:function size:0x30 scope:weak align:4 +procCmd__7BaseAppFPc = .text:0x80024BC0; // type:function size:0x4 scope:weak align:4 +concat__4NodeFR8Matrix4f = .text:0x80024BC4; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3SRT = .text:0x80024BF0; // type:function size:0x2C scope:weak align:4 +concat__4NodeFR3VQS = .text:0x80024C1C; // type:function size:0x2C scope:weak align:4 +concat__4NodeFv = .text:0x80024C48; // type:function size:0x4 scope:weak align:4 +getModelMatrix__4NodeFv = .text:0x80024C4C; // type:function size:0x8 scope:weak align:4 +read__8CoreNodeFR18RandomAccessStream = .text:0x80024C54; // type:function size:0x4 scope:weak align:4 +getAgeNodeType__5ANodeFv = .text:0x80024C58; // type:function size:0x8 scope:weak align:4 +readInt__6StreamFv = .text:0x80024C60; // type:function size:0x38 scope:global align:4 +readByte__6StreamFv = .text:0x80024C98; // type:function size:0x38 scope:global align:4 +readShort__6StreamFv = .text:0x80024CD0; // type:function size:0x38 scope:global align:4 +readFloat__6StreamFv = .text:0x80024D08; // type:function size:0x38 scope:global align:4 +readString__6StreamFv = .text:0x80024D40; // type:function size:0x7C scope:global align:4 +readString__6StreamFPci = .text:0x80024DBC; // type:function size:0x38 scope:global align:4 +readString__6StreamFR6String = .text:0x80024DF4; // type:function size:0xA4 scope:global align:4 +writeInt__6StreamFi = .text:0x80024E98; // type:function size:0x38 scope:global align:4 +writeByte__6StreamFUc = .text:0x80024ED0; // type:function size:0x38 scope:global align:4 +writeShort__6StreamFs = .text:0x80024F08; // type:function size:0x38 scope:global align:4 +writeFloat__6StreamFf = .text:0x80024F40; // type:function size:0x38 scope:global align:4 +writeString__6StreamFPc = .text:0x80024F78; // type:function size:0x3C scope:global align:4 +writeString__6StreamFR6String = .text:0x80024FB4; // type:function size:0xD4 scope:global align:4 +read__6StreamFPvi = .text:0x80025088; // type:function size:0x4 scope:global align:4 +write__6StreamFPvi = .text:0x8002508C; // type:function size:0x4 scope:global align:4 +getPending__6StreamFv = .text:0x80025090; // type:function size:0x8 scope:global align:4 +getAvailable__6StreamFv = .text:0x80025098; // type:function size:0x8 scope:global align:4 +close__6StreamFv = .text:0x800250A0; // type:function size:0x4 scope:global align:4 +setPosition__18RandomAccessStreamFi = .text:0x800250A4; // type:function size:0x4 scope:weak align:4 +getClosing__6StreamFv = .text:0x800250A8; // type:function size:0x8 scope:weak align:4 +init__19BufferedInputStreamFP6StreamPUci = .text:0x800250B0; // type:function size:0x98 scope:global align:4 +__ct__19BufferedInputStreamFP6StreamPUci = .text:0x80025148; // type:function size:0xC0 scope:global align:4 +fillBuffer__19BufferedInputStreamFv = .text:0x80025208; // type:function size:0x88 scope:global align:4 +getPending__19BufferedInputStreamFv = .text:0x80025290; // type:function size:0x44 scope:weak align:4 +read__19BufferedInputStreamFPvi = .text:0x800252D4; // type:function size:0x104 scope:global align:4 +close__19BufferedInputStreamFv = .text:0x800253D8; // type:function size:0x30 scope:weak align:4 +getPosition__19BufferedInputStreamFv = .text:0x80025408; // type:function size:0x8 scope:weak align:4 +getLength__18RandomAccessStreamFv = .text:0x80025410; // type:function size:0x2C scope:weak align:4 +getPosition__18RandomAccessStreamFv = .text:0x8002543C; // type:function size:0x8 scope:weak align:4 +getPending__18RandomAccessStreamFv = .text:0x80025444; // type:function size:0x5C scope:weak align:4 +getLength__6StringFv = .text:0x800254A0; // type:function size:0x24 scope:global align:4 +animate__20PVWPolygonColourInfoFPfR6Colour = .text:0x800254C4; // type:function size:0x120 scope:global align:4 +extract__17PVWColourAnimInfoFfR6Colour = .text:0x800255E4; // type:function size:0x498 scope:global align:4 +extract__16PVWAlphaAnimInfoFfR6Colour = .text:0x80025A7C; // type:function size:0x1F8 scope:global align:4 +extract__22PVWColourShortAnimInfoFfR11ShortColour = .text:0x80025C74; // type:function size:0x4A0 scope:global align:4 +extract__21PVWAlphaShortAnimInfoFfR11ShortColour = .text:0x80026114; // type:function size:0x208 scope:global align:4 +extract__14PVWTexAnimInfoFfR8Vector3f = .text:0x8002631C; // type:function size:0x3B0 scope:global align:4 +animate__14PVWTextureDataFPfR8Matrix4f = .text:0x800266CC; // type:function size:0x2F8 scope:global align:4 +read__14PVWTextureDataFR18RandomAccessStream = .text:0x800269C4; // type:function size:0x5A4 scope:global align:4 +read__14PVWTextureInfoFR18RandomAccessStream = .text:0x80026F68; // type:function size:0x1E8 scope:global align:4 +__ct__14PVWTextureDataFv = .text:0x80027150; // type:function size:0x18 scope:weak align:4 +animate__12PVWTevColRegFPfR11ShortColour = .text:0x80027168; // type:function size:0x120 scope:global align:4 +attach__8MaterialFv = .text:0x80027288; // type:function size:0x54 scope:global align:4 +useDList__8GraphicsFUl = .text:0x800272DC; // type:function size:0x4 scope:weak align:4 +compileMaterial__8GraphicsFP8Material = .text:0x800272E0; // type:function size:0x8 scope:weak align:4 +read__8MaterialFR18RandomAccessStream = .text:0x800272E8; // type:function size:0x238 scope:global align:4 +read__28PVWAnimInfo1<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027520; // type:function size:0x120 scope:weak align:4 +read__28PVWAnimInfo3<12PVWKeyInfoU8>FR18RandomAccessStream = .text:0x80027640; // type:function size:0x228 scope:weak align:4 +setTexture__4FontFP7Textureii = .text:0x80027868; // type:function size:0x2D0 scope:global align:4 +__ct__8FontCharFv = .text:0x80027B38; // type:function size:0x2C scope:weak align:4 +charToIndex__4FontFc = .text:0x80027B64; // type:function size:0xC scope:global align:4 +searchKanjiCode__FUs = .text:0x80027B70; // type:function size:0x98 scope:local align:4 +charToIndex__4FontFUs = .text:0x80027C08; // type:function size:0xDC scope:global align:4 +stringWidth__4FontFPc = .text:0x80027CE4; // type:function size:0xF4 scope:global align:4 +__ct__11CollTriInfoFv = .text:0x80027DD8; // type:function size:0x58 scope:weak align:4 +__ct__5PlaneFv = .text:0x80027E30; // type:function size:0x14 scope:weak align:4 +setMaterial__15MaterialHandlerFP8Material = .text:0x80027E44; // type:function size:0x34 scope:global align:4 +setTexMatrix__15MaterialHandlerFb = .text:0x80027E78; // type:function size:0x30 scope:global align:4 +__ct__8GraphicsFv = .text:0x80027EA8; // type:function size:0x1C8 scope:global align:4 +__ct__11CachedShapeFv = .text:0x80028070; // type:function size:0xC scope:weak align:4 +initRender__8GraphicsFii = .text:0x8002807C; // type:function size:0x50 scope:global align:4 +resetMatrixBuffer__8GraphicsFv = .text:0x800280CC; // type:function size:0xC scope:global align:4 +getMatrices__8GraphicsFi = .text:0x800280D8; // type:function size:0x1C scope:global align:4 +resetCacheBuffer__8GraphicsFv = .text:0x800280F4; // type:function size:0x18 scope:global align:4 +cacheShape__8GraphicsFP9BaseShapeP17ShapeDynMaterials = .text:0x8002810C; // type:function size:0x184 scope:global align:4 +flushCachedShapes__8GraphicsFv = .text:0x80028290; // type:function size:0xA0 scope:global align:4 +calcDataSize__6TexImgFiii = .text:0x80028330; // type:function size:0x9C scope:global align:4 +read__6TexImgFR18RandomAccessStream = .text:0x800283CC; // type:function size:0x130 scope:global align:4 +getTileSize__6TexImgFiRUlRUl = .text:0x800284FC; // type:function size:0x58 scope:global align:4 +importBti__6TexImgFP7TextureR18RandomAccessStreamPUc = .text:0x80028554; // type:function size:0x3EC scope:global align:4 +importTxe__6TexImgFP7TextureR18RandomAccessStream = .text:0x80028940; // type:function size:0x1A8 scope:global align:4 +initImage__7TexAttrFv = .text:0x80028AE8; // type:function size:0x1E4 scope:global align:4 +read__7TexAttrFR18RandomAccessStream = .text:0x80028CCC; // type:function size:0xAC scope:global align:4 +drawCylinder__8GraphicsFR8Vector3fR8Vector3ffR8Matrix4f = .text:0x80028D78; // type:function size:0x2BC scope:global align:4 +drawSphere__8GraphicsFR8Vector3ffR8Matrix4f = .text:0x80029034; // type:function size:0x1FC scope:global align:4 +perspPrintf__8GraphicsFP4FontR8Vector3fiiPce = .text:0x80029230; // type:function size:0x170 scope:global align:4 +calcLighting__8GraphicsFf = .text:0x800293A0; // type:function size:0x114 scope:global align:4 +setAmbient__8GraphicsFv = .text:0x800294B4; // type:function size:0x4 scope:weak align:4 +makeResident__12CacheTextureFv = .text:0x800294B8; // type:function size:0x7C scope:global align:4 +videoReset__8GraphicsFv = .text:0x80029534; // type:function size:0x4 scope:weak align:4 +setVerticalFilter__8GraphicsFPUc = .text:0x80029538; // type:function size:0x4 scope:weak align:4 +getVerticalFilter__8GraphicsFPUc = .text:0x8002953C; // type:function size:0x4 scope:weak align:4 +getDListPtr__8GraphicsFv = .text:0x80029540; // type:function size:0x8 scope:weak align:4 +getDListRemainSize__8GraphicsFv = .text:0x80029548; // type:function size:0x8 scope:weak align:4 +setLightcam__8GraphicsFP11LightCamera = .text:0x80029550; // type:function size:0x8 scope:weak align:4 +setBlendMode__8GraphicsFUcUcUc = .text:0x80029558; // type:function size:0x4 scope:weak align:4 +setMatHandler__8GraphicsFP15MaterialHandler = .text:0x8002955C; // type:function size:0x7C scope:weak align:4 +useMaterial__8GraphicsFP8Material = .text:0x800295D8; // type:function size:0x30 scope:weak align:4 +testRectangle__8GraphicsFR8RectArea = .text:0x80029608; // type:function size:0x4 scope:weak align:4 +__ct__5LightFv = .text:0x8002960C; // type:function size:0x200 scope:global align:4 +__ct__12CullingPlaneFv = .text:0x8002980C; // type:function size:0x14 scope:weak align:4 +setLightDistAttn__5LightFffi = .text:0x80029820; // type:function size:0xE4 scope:global align:4 +setLightSpot__5LightFfi = .text:0x80029904; // type:function size:0x188 scope:global align:4 +update__5LightFv = .text:0x80029A8C; // type:function size:0xD0 scope:global align:4 +read__8DispListFR18RandomAccessStream = .text:0x80029B5C; // type:function size:0x100 scope:global align:4 +read__8MtxGroupFR18RandomAccessStream = .text:0x80029C5C; // type:function size:0x13C scope:global align:4 +__ct__8DispListFv = .text:0x80029D98; // type:function size:0x94 scope:weak align:4 +read__4MeshFR18RandomAccessStream = .text:0x80029E2C; // type:function size:0x110 scope:global align:4 +__ct__8MtxGroupFv = .text:0x80029F3C; // type:function size:0x14 scope:weak align:4 +recOverrideAnim__5JointFP11AnimContext = .text:0x80029F50; // type:function size:0xA4 scope:global align:4 +read__5JointFR18RandomAccessStream = .text:0x80029FF4; // type:function size:0x2DC scope:global align:4 +animate__11AnimContextFf = .text:0x8002A2D0; // type:function size:0x4C scope:global align:4 +extract__FfR9AnimParamR9DataChunk = .text:0x8002A31C; // type:function size:0x1C4 scope:local align:4 +__ct__11CamDataInfoFv = .text:0x8002A4E0; // type:function size:0x7C scope:global align:4 +update__11CamDataInfoFfR8Matrix4f = .text:0x8002A55C; // type:function size:0x334 scope:global align:4 +update__13LightDataInfoFf = .text:0x8002A890; // type:function size:0x264 scope:global align:4 +parse__9SceneDataFP9CmdStream = .text:0x8002AAF4; // type:function size:0xD4C scope:global align:4 +addData__9DataChunkFf = .text:0x8002B840; // type:function size:0xA0 scope:weak align:4 +getAnimInfo__9SceneDataFP9CmdStream = .text:0x8002B8E0; // type:function size:0x1F4 scope:global align:4 +__ct__13LightDataInfoFv = .text:0x8002BAD4; // type:function size:0x3C scope:weak align:4 +extractSRT__8AnimDataFR3SRTiP12AnimDataInfof = .text:0x8002BB10; // type:function size:0x370 scope:global align:4 +makeAnimSRT__8AnimDataFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002BE80; // type:function size:0x150 scope:global align:4 +detach__8AnimDataFv = .text:0x8002BFD0; // type:function size:0x3C scope:global align:4 +__ct__13AnimCacheInfoFv = .text:0x8002C00C; // type:function size:0x10 scope:weak align:4 +checkMask__8AnimDataFv = .text:0x8002C01C; // type:function size:0x25C scope:global align:4 +read__7AnimDcaFR18RandomAccessStream = .text:0x8002C278; // type:function size:0x3D4 scope:global align:4 +__ct__12AnimDataInfoFv = .text:0x8002C64C; // type:function size:0x34 scope:weak align:4 +parse__7AnimDcaFP9CmdStream = .text:0x8002C680; // type:function size:0xA8C scope:global align:4 +getAnimInfo__7AnimDcaFP9CmdStream = .text:0x8002D10C; // type:function size:0x154 scope:global align:4 +__ct__7AnimDckFP9BaseShapei = .text:0x8002D260; // type:function size:0x10C scope:global align:4 +read__7AnimDckFR18RandomAccessStream = .text:0x8002D36C; // type:function size:0x41C scope:global align:4 +parse__7AnimDckFP9CmdStream = .text:0x8002D788; // type:function size:0xCE4 scope:global align:4 +getAnimInfo__7AnimDckFP9CmdStream = .text:0x8002E46C; // type:function size:0x154 scope:global align:4 +extractSRT__7AnimDckFR3SRTiP12AnimDataInfof = .text:0x8002E5C0; // type:function size:0x220 scope:global align:4 +makeAnimSRT__7AnimDckFiP8Matrix4fP8Matrix4fP12AnimDataInfof = .text:0x8002E7E0; // type:function size:0xCC scope:global align:4 +importIni__9BaseShapeFR18RandomAccessStream = .text:0x8002E8AC; // type:function size:0x364 scope:global align:4 +makeRouteGroup__9BaseShapeFv = .text:0x8002EC10; // type:function size:0x50 scope:weak align:4 +animate__17ShapeDynMaterialsFPf = .text:0x8002EC60; // type:function size:0xF4 scope:global align:4 +updateContext__17ShapeDynMaterialsFv = .text:0x8002ED54; // type:function size:0x1E8 scope:global align:4 +__ct__9BaseShapeFv = .text:0x8002EF3C; // type:function size:0x30C scope:global align:4 +countMaterials__9BaseShapeFP5JointUl = .text:0x8002F248; // type:function size:0x16C scope:global align:4 +recTraverseMaterials__9BaseShapeFP5JointP22IDelegate2 = .text:0x8002F3B4; // type:function size:0xC4 scope:global align:4 +instanceMaterials__9BaseShapeFi = .text:0x8002F478; // type:function size:0x78 scope:global align:4 +makeInstance__9BaseShapeFR17ShapeDynMaterialsi = .text:0x8002F4F0; // type:function size:0x30C scope:global align:4 +__ct__6ColourFv = .text:0x8002F7FC; // type:function size:0x4 scope:weak align:4 +__ct__12PVWTevColRegFv = .text:0x8002F800; // type:function size:0xC scope:weak align:4 +__ct__8MaterialFv = .text:0x8002F80C; // type:function size:0xAC scope:weak align:4 +drawculled__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x8002F8B8; // type:function size:0x778 scope:global align:4 +drawshape__9BaseShapeFR8GraphicsR6CameraP17ShapeDynMaterials = .text:0x80030030; // type:function size:0x1A0 scope:global align:4 +resolveTextureNames__9BaseShapeFv = .text:0x800301D0; // type:function size:0x40C scope:global align:4 +__ct__7TexAttrFv = .text:0x800305DC; // type:function size:0x5C scope:weak align:4 +recAddMatpoly__9BaseShapeFP5Jointi = .text:0x80030638; // type:function size:0xCC scope:global align:4 +read__9BaseShapeFR18RandomAccessStream = .text:0x80030704; // type:function size:0x2590 scope:global align:4 +__ct__9CollGroupFv = .text:0x80032C94; // type:function size:0x18 scope:weak align:4 +__ct__5JointFv = .text:0x80032CAC; // type:function size:0xE4 scope:weak align:4 +__ct__4MeshFv = .text:0x80032D90; // type:function size:0x54 scope:weak align:4 +__ct__8EnvelopeFv = .text:0x80032DE4; // type:function size:0x14 scope:weak align:4 +read__11PVWTevStageFR18RandomAccessStream = .text:0x80032DF8; // type:function size:0x32C scope:weak align:4 +read__29PVWAnimInfo1<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x80033124; // type:function size:0xF8 scope:weak align:4 +read__29PVWAnimInfo3<13PVWKeyInfoS10>FR18RandomAccessStream = .text:0x8003321C; // type:function size:0x1B0 scope:weak align:4 +__ct__10PVWTevInfoFv = .text:0x800333CC; // type:function size:0x60 scope:weak align:4 +__ct__6TexImgFv = .text:0x8003342C; // type:function size:0x4C scope:weak align:4 +__ct__8Vector2fFv = .text:0x80033478; // type:function size:0x4 scope:weak align:4 +initIni__9BaseShapeFb = .text:0x8003347C; // type:function size:0x248 scope:global align:4 +initialise__9BaseShapeFv = .text:0x800336C4; // type:function size:0x258 scope:global align:4 +createCollisions__9BaseShapeFi = .text:0x8003391C; // type:function size:0xBA8 scope:global align:4 +calcBasePose__9BaseShapeFR8Matrix4f = .text:0x800344C4; // type:function size:0x150 scope:global align:4 +loadDck__9BaseShapeFPcR18RandomAccessStream = .text:0x80034614; // type:function size:0xE8 scope:global align:4 +importDck__9BaseShapeFPcP9CmdStream = .text:0x800346FC; // type:function size:0x1E0 scope:global align:4 +loadDca__9BaseShapeFPcR18RandomAccessStream = .text:0x800348DC; // type:function size:0xDC scope:global align:4 +loadAnimation__9BaseShapeFPcb = .text:0x800349B8; // type:function size:0x1C4 scope:global align:4 +__ct__8CoreNodeFPc = .text:0x80034B7C; // type:function size:0x30 scope:weak align:4 +getAnimMatrix__9BaseShapeFi = .text:0x80034BAC; // type:function size:0x10 scope:global align:4 +backupAnimOverrides__9BaseShapeFPP11AnimContext = .text:0x80034BBC; // type:function size:0x38 scope:global align:4 +restoreAnimOverrides__9BaseShapeFv = .text:0x80034BF4; // type:function size:0x34 scope:global align:4 +overrideAnim__9BaseShapeFiP11AnimContext = .text:0x80034C28; // type:function size:0x94 scope:global align:4 +__ct__15AnimFrameCacherFi = .text:0x80034CBC; // type:function size:0x74 scope:global align:4 +cacheFrameSpace__15AnimFrameCacherFiP13AnimCacheInfo = .text:0x80034D30; // type:function size:0x1A8 scope:global align:4 +updateAnim__9BaseShapeFR8GraphicsR8Matrix4fPf = .text:0x80034ED8; // type:function size:0x2E0 scope:global align:4 +calcWeightedMatrices__9BaseShapeFv = .text:0x800351B8; // type:function size:0x190 scope:global align:4 +makeNormalIndexes__9BaseShapeFPUs = .text:0x80035348; // type:function size:0x140 scope:global align:4 +calcJointWorldPos__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035488; // type:function size:0xF8 scope:global align:4 +calcJointWorldDir__9BaseShapeFR8GraphicsiR8Vector3f = .text:0x80035580; // type:function size:0x60 scope:global align:4 +attach__10MatobjInfoFv = .text:0x800355E0; // type:function size:0x30 scope:weak align:4 +detach__10MatobjInfoFv = .text:0x80035610; // type:function size:0x4 scope:weak align:4 +attach__10GfxobjInfoFv = .text:0x80035614; // type:function size:0x4 scope:weak align:4 +detach__10GfxobjInfoFv = .text:0x80035618; // type:function size:0x4 scope:weak align:4 +optimize__9BaseShapeFv = .text:0x8003561C; // type:function size:0x4 scope:weak align:4 +update__9BaseShapeFv = .text:0x80035620; // type:function size:0x4 scope:weak align:4 +render__9BaseShapeFR8Graphics = .text:0x80035624; // type:function size:0x4 scope:weak align:4 +render2d__9BaseShapeFR8Graphics = .text:0x80035628; // type:function size:0x4 scope:weak align:4 +writeType__8AnimDataFR18RandomAccessStream = .text:0x8003562C; // type:function size:0x4 scope:weak align:4 +invoke__32Delegate2<9BaseShape,P5Joint,Ul>FP5JointUl = .text:0x80035630; // type:function size:0x30 scope:weak align:4 +__sinit_shapeBase_cpp = .text:0x80035660; // type:function size:0x88 scope:local align:4 +__ct__8Vector3fFv = .text:0x800356E8; // type:function size:0x14 scope:weak align:4 +loadini__10LightGroupFP9CmdStream = .text:0x800356FC; // type:function size:0x420 scope:global align:4 +refresh__10LightGroupFR8GraphicsP8Matrix4f = .text:0x80035B1C; // type:function size:0x1CC scope:global align:4 +loadini__11ObjCollInfoFP9CmdStream = .text:0x80035CE8; // type:function size:0x350 scope:global align:4 +loadini__10RoutePointFP9CmdStream = .text:0x80036038; // type:function size:0x184 scope:global align:4 +__ct__10RouteGroupFv = .text:0x800361BC; // type:function size:0x184 scope:global align:4 +refresh__10RouteGroupFR8GraphicsP8EditNode = .text:0x80036340; // type:function size:0x9A0 scope:global align:4 +__ct__8Vector3fFRCfRCfRCf = .text:0x80036CE0; // type:function size:0x1C scope:weak align:4 +render2d__10RouteGroupFR8GraphicsRi = .text:0x80036CFC; // type:function size:0x60 scope:global align:4 +loadini__10RouteGroupFP9CmdStream = .text:0x80036D5C; // type:function size:0x3CC scope:global align:4 +msgCommand__8EditNodeFR7DataMsg = .text:0x80037128; // type:function size:0x4 scope:weak align:4 +render2d__8EditNodeFR8GraphicsRi = .text:0x8003712C; // type:function size:0x4 scope:weak align:4 +CheckMinMaxDir__12CullingPlaneFv = .text:0x80037130; // type:function size:0xA0 scope:global align:4 +rotate__8Vector3fFR8Matrix4f = .text:0x800371D0; // type:function size:0xAC scope:global align:4 +rotateTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x8003727C; // type:function size:0x94 scope:global align:4 +multMatrix__8Vector3fFR8Matrix4f = .text:0x80037310; // type:function size:0xC4 scope:global align:4 +multMatrixTo__8Vector3fFR8Matrix4fR8Vector3f = .text:0x800373D4; // type:function size:0xAC scope:global align:4 +fromMat3f__4QuatFR8Matrix3f = .text:0x80037480; // type:function size:0x4E4 scope:global align:4 +rotate__4QuatFR8Vector3ff = .text:0x80037964; // type:function size:0xA4 scope:global align:4 +multiply__4QuatFR4Quat = .text:0x80037A08; // type:function size:0xEC scope:global align:4 +normalise__4QuatFv = .text:0x80037AF4; // type:function size:0xD4 scope:global align:4 +genVectorX__4QuatFR8Vector3f = .text:0x80037BC8; // type:function size:0x80 scope:global align:4 +genVectorY__4QuatFR8Vector3f = .text:0x80037C48; // type:function size:0x80 scope:global align:4 +genVectorZ__4QuatFR8Vector3f = .text:0x80037CC8; // type:function size:0x80 scope:global align:4 +slerp__4QuatFR4Quatfi = .text:0x80037D48; // type:function size:0x164 scope:global align:4 +fromEuler__4QuatFR8Vector3f = .text:0x80037EAC; // type:function size:0x2A0 scope:global align:4 +roundAng__Ff = .text:0x8003814C; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x80038178; // type:function size:0x74 scope:global align:4 +qdist2__Fffff = .text:0x800381EC; // type:function size:0x50 scope:global align:4 +init__11CollTriInfoFP8RoomInfoP8Vector3f = .text:0x8003823C; // type:function size:0x1BC scope:global align:4 +behindEdge__11CollTriInfoFR8Vector3f = .text:0x800383F8; // type:function size:0xC4 scope:global align:4 +draw__8BoundBoxFR8Graphics = .text:0x800384BC; // type:function size:0x644 scope:global align:4 +pointInsideTri__FR4KTriR8Vector3f = .text:0x80038B00; // type:function size:0xE8 scope:local align:4 +triRectDistance__FP8Vector3fP8Vector3fP8Vector3fR8BoundBoxb = .text:0x80038BE8; // type:function size:0x260 scope:global align:4 +distanceTriRect__FR4KTriR5KRectPfPfPfPf = .text:0x80038E48; // type:function size:0x1A8 scope:global align:4 +inside__5KRectFR8Vector3f = .text:0x80038FF0; // type:function size:0x70 scope:global align:4 +__ct__4KTriFv = .text:0x80039060; // type:function size:0x2C scope:global align:4 +set__4KTriFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003908C; // type:function size:0xC4 scope:global align:4 +sqrDistance__FR8KSegmentR4KTriPfPfPf = .text:0x80039150; // type:function size:0x18C4 scope:global align:4 +sqrDistance__FR8KSegmentR8KSegmentPfPf = .text:0x8003AA14; // type:function size:0x828 scope:global align:4 +sqrDistance__FR8KSegmentR5KRectPfPfPf = .text:0x8003B23C; // type:function size:0x1D9C scope:global align:4 +sqrDistance__FR4KTriR5KRectPfPfPfPf = .text:0x8003CFD8; // type:function size:0x468 scope:global align:4 +sqrDistance__FR8Vector3fR4KTriPfPf = .text:0x8003D440; // type:function size:0x540 scope:global align:4 +makeIdentity__8Matrix4fFv = .text:0x8003D980; // type:function size:0x4C scope:global align:4 +makeRotate__8Matrix4fFR8Vector3fff = .text:0x8003D9CC; // type:function size:0xC0 scope:global align:4 +makeRotate__8Matrix4fFR8Vector3ff = .text:0x8003DA8C; // type:function size:0x6C scope:global align:4 +multiply__8Matrix4fFR8Matrix4f = .text:0x8003DAF8; // type:function size:0x1A0 scope:global align:4 +multiplyTo__8Matrix4fFR8Matrix4fR8Matrix4f = .text:0x8003DC98; // type:function size:0x20 scope:global align:4 +makeSRT__8Matrix4fFR8Vector3fR8Vector3fR8Vector3f = .text:0x8003DCB8; // type:function size:0x19C scope:global align:4 +makeConcatSRT__8Matrix4fFP8Matrix4fR8Matrix4fR3SRT = .text:0x8003DE54; // type:function size:0x1AC scope:global align:4 +inverse__8Matrix4fFP8Matrix4f = .text:0x8003E000; // type:function size:0x380 scope:global align:4 +scale__8Matrix4fFR8Vector3f = .text:0x8003E380; // type:function size:0xC4 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fP8Vector3f = .text:0x8003E444; // type:function size:0x300 scope:global align:4 +makeLookat__8Matrix4fFR8Vector3fR8Vector3fR8Vector3fR8Vector3f = .text:0x8003E744; // type:function size:0x100 scope:global align:4 +transposeTo__8Matrix4fFR8Matrix4f = .text:0x8003E844; // type:function size:0x84 scope:global align:4 +makeVQS__8Matrix4fFR8Vector3fR4QuatR8Vector3f = .text:0x8003E8C8; // type:function size:0x12C scope:global align:4 +__sinit_matMath_cpp = .text:0x8003E9F4; // type:function size:0x4 scope:local align:4 +detach__10AnmobjInfoFv = .text:0x8003E9F8; // type:function size:0x30 scope:global align:4 +__ct__9StdSystemFv = .text:0x8003EA28; // type:function size:0x148 scope:global align:4 +__ct__7AyuHeapFv = .text:0x8003EB70; // type:function size:0xC scope:weak align:4 +onceInit__9StdSystemFv = .text:0x8003EB7C; // type:function size:0x68 scope:global align:4 +__ct__8Matrix4fFv = .text:0x8003EBE4; // type:function size:0x4 scope:weak align:4 +getHeap__9StdSystemFi = .text:0x8003EBE8; // type:function size:0x14 scope:global align:4 +resetHeap__9StdSystemFii = .text:0x8003EBFC; // type:function size:0x34 scope:global align:4 +setHeap__9StdSystemFi = .text:0x8003EC30; // type:function size:0x10 scope:global align:4 +findGfxObject__9StdSystemFPcUl = .text:0x8003EC40; // type:function size:0x90 scope:global align:4 +loadTexture__9StdSystemFPcb = .text:0x8003ECD0; // type:function size:0xF4 scope:global align:4 +openFile__9StdSystemFPcbb = .text:0x8003EDC4; // type:function size:0x8 scope:weak align:4 +loadShape__9StdSystemFPcb = .text:0x8003EDCC; // type:function size:0x1A8 scope:global align:4 +findAnimation__9StdSystemFPc = .text:0x8003EF74; // type:function size:0xA0 scope:global align:4 +findAnyIndex__9StdSystemFPcPc = .text:0x8003F014; // type:function size:0xA4 scope:global align:4 +loadAnimation__9StdSystemFP5ShapePcb = .text:0x8003F0B8; // type:function size:0xBC scope:global align:4 +addAnimation__9StdSystemFP8AnimDataPc = .text:0x8003F174; // type:function size:0xB8 scope:global align:4 +addGfxObject__9StdSystemFP10GfxobjInfo = .text:0x8003F22C; // type:function size:0x28 scope:global align:4 +attachObjs__9StdSystemFv = .text:0x8003F254; // type:function size:0x9C scope:global align:4 +detachObjs__9StdSystemFv = .text:0x8003F2F0; // type:function size:0x88 scope:global align:4 +invalidateObjs__9StdSystemFUlUl = .text:0x8003F378; // type:function size:0x48 scope:global align:4 +addTexture__9StdSystemFP7TexturePc = .text:0x8003F3C0; // type:function size:0xD4 scope:global align:4 +initSoftReset__9StdSystemFv = .text:0x8003F494; // type:function size:0x10 scope:global align:4 +getShape__9StdSystemFPcPcPcb = .text:0x8003F4A4; // type:function size:0x108 scope:global align:4 +initLFlares__9StdSystemFi = .text:0x8003F5AC; // type:function size:0x68 scope:global align:4 +__ct__6LFInfoFv = .text:0x8003F614; // type:function size:0x1C scope:weak align:4 +resetLFlares__9StdSystemFv = .text:0x8003F630; // type:function size:0xC scope:global align:4 +getLFlareInfo__9StdSystemFv = .text:0x8003F63C; // type:function size:0x38 scope:global align:4 +registerLFlare__9StdSystemFP7Texture = .text:0x8003F674; // type:function size:0xDC scope:global align:4 +flushLFlares__9StdSystemFR8Graphics = .text:0x8003F750; // type:function size:0x24C scope:global align:4 +loadBundle__9StdSystemFPcb = .text:0x8003F99C; // type:function size:0x560 scope:global align:4 +copyWaitUntilDone__9StdSystemFv = .text:0x8003FEFC; // type:function size:0x4 scope:weak align:4 +copyRamToCache__9StdSystemFUlUlUl = .text:0x8003FF00; // type:function size:0x8 scope:weak align:4 +stringDup__9StdSystemFPc = .text:0x8003FF08; // type:function size:0x5C scope:global align:4 +updateInfo__13TextureCacherFP12CacheTexture = .text:0x8003FF64; // type:function size:0x48 scope:global align:4 +purgeAll__13TextureCacherFv = .text:0x8003FFAC; // type:function size:0x44 scope:global align:4 +removeOldest__13TextureCacherFv = .text:0x8003FFF0; // type:function size:0x50 scope:global align:4 +cacheTexture__13TextureCacherFP12CacheTexture = .text:0x80040040; // type:function size:0xE0 scope:global align:4 +copyCacheToRam__9StdSystemFUlUlUl = .text:0x80040120; // type:function size:0x4 scope:weak align:4 +copyCacheToTexture__9StdSystemFP12CacheTexture = .text:0x80040124; // type:function size:0x4 scope:weak align:4 +Activate__9StdSystemFb = .text:0x80040128; // type:function size:0x4 scope:weak align:4 +parseArchiveDirectory__9StdSystemFPcPc = .text:0x8004012C; // type:function size:0x4 scope:weak align:4 +startLoading__9StdSystemFP9LoadIdlerbUl = .text:0x80040130; // type:function size:0x4 scope:weak align:4 +endLoading__9StdSystemFv = .text:0x80040134; // type:function size:0x4 scope:weak align:4 +attach__10TexobjInfoFv = .text:0x80040138; // type:function size:0x30 scope:weak align:4 +attach__9GfxObjectFv = .text:0x80040168; // type:function size:0x4 scope:weak align:4 +detach__10TexobjInfoFv = .text:0x8004016C; // type:function size:0x30 scope:weak align:4 +detach__9GfxObjectFv = .text:0x8004019C; // type:function size:0x4 scope:weak align:4 +add__8CoreNodeFP8CoreNode = .text:0x800401A0; // type:function size:0x38 scope:global align:4 +del__8CoreNodeFv = .text:0x800401D8; // type:function size:0x70 scope:global align:4 +getChildCount__8CoreNodeFv = .text:0x80040248; // type:function size:0x20 scope:global align:4 +load__8CoreNodeFPcPcUl = .text:0x80040268; // type:function size:0x9C scope:global align:4 +init__4NodeFPc = .text:0x80040304; // type:function size:0x28 scope:global align:4 +update__4NodeFv = .text:0x8004032C; // type:function size:0x6C scope:global align:4 +draw__4NodeFR8Graphics = .text:0x80040398; // type:function size:0x5C scope:global align:4 +render__4NodeFR8Graphics = .text:0x800403F4; // type:function size:0x2C scope:global align:4 +update__7SRTNodeFv = .text:0x80040420; // type:function size:0x7C scope:global align:4 +Del__7NodeMgrFP4Node = .text:0x8004049C; // type:function size:0x64 scope:global align:4 +__ct__7NodeMgrFv = .text:0x80040500; // type:function size:0x3C scope:global align:4 +concat__7SRTNodeFv = .text:0x8004053C; // type:function size:0x4 scope:weak align:4 +concat__7SRTNodeFR8Matrix4f = .text:0x80040540; // type:function size:0x4 scope:weak align:4 +getModelMatrix__7SRTNodeFv = .text:0x80040544; // type:function size:0x8 scope:weak align:4 +reset__6TimersFv = .text:0x8004054C; // type:function size:0x10 scope:global align:4 +newFrame__6TimersFv = .text:0x8004055C; // type:function size:0x10 scope:global align:4 +_start__6TimersFPcb = .text:0x8004056C; // type:function size:0x4 scope:global align:4 +_stop__6TimersFPc = .text:0x80040570; // type:function size:0x4 scope:global align:4 +draw__6TimersFR8GraphicsP4Font = .text:0x80040574; // type:function size:0x4 scope:global align:4 +reset__10ControllerFUl = .text:0x80040578; // type:function size:0x24 scope:global align:4 +updateCont__10ControllerFUl = .text:0x8004059C; // type:function size:0x9C scope:global align:4 +update__10ControllerFv = .text:0x80040638; // type:function size:0x2C scope:global align:4 +getMainStickX__10ControllerFv = .text:0x80040664; // type:function size:0x38 scope:global align:4 +getMainStickY__10ControllerFv = .text:0x8004069C; // type:function size:0x38 scope:global align:4 +getSubStickX__10ControllerFv = .text:0x800406D4; // type:function size:0x38 scope:global align:4 +getSubStickY__10ControllerFv = .text:0x8004070C; // type:function size:0x38 scope:global align:4 +__ct__9CmdStreamFP6Stream = .text:0x80040744; // type:function size:0xB0 scope:global align:4 +fillBuffer__9CmdStreamFb = .text:0x800407F4; // type:function size:0xEC scope:global align:4 +whiteSpace__9CmdStreamFc = .text:0x800408E0; // type:function size:0x40 scope:global align:4 +endOfCmds__9CmdStreamFv = .text:0x80040920; // type:function size:0x174 scope:global align:4 +copyToToken__9CmdStreamFi = .text:0x80040A94; // type:function size:0x50 scope:global align:4 +skipLine__9CmdStreamFv = .text:0x80040AE4; // type:function size:0x194 scope:global align:4 +getToken__9CmdStreamFb = .text:0x80040C78; // type:function size:0x324 scope:global align:4 +isToken__9CmdStreamFPc = .text:0x80040F9C; // type:function size:0xB4 scope:global align:4 +endOfSection__9CmdStreamFv = .text:0x80041050; // type:function size:0xFC scope:global align:4 +isPointVisible__11CullFrustumFR8Vector3ff = .text:0x8004114C; // type:function size:0x6C scope:global align:4 +draw__11CullFrustumFR8Graphics = .text:0x800411B8; // type:function size:0xFBC scope:global align:4 +updateViewPlanes__11CullFrustumFffff = .text:0x80042174; // type:function size:0x46C scope:global align:4 +createViewPlanes__11CullFrustumFv = .text:0x800425E0; // type:function size:0x23C scope:global align:4 +update__11CullFrustumFffff = .text:0x8004281C; // type:function size:0x150 scope:global align:4 +calcVectors__11CullFrustumFR8Vector3fR8Vector3f = .text:0x8004296C; // type:function size:0x268 scope:global align:4 +calcLookAt__11CullFrustumFR8Vector3fR8Vector3fP8Vector3f = .text:0x80042BD4; // type:function size:0x3C scope:global align:4 +projectWorldPoint__6CameraFR8GraphicsR8Vector3f = .text:0x80042C10; // type:function size:0x17C scope:global align:4 +__ct__6CameraFv = .text:0x80042D8C; // type:function size:0x150 scope:global align:4 +initLightmap__11LightCameraFii = .text:0x80042EDC; // type:function size:0xD0 scope:global align:4 +calcProjection__11LightCameraFR8GraphicsbP4Node = .text:0x80042FAC; // type:function size:0x508 scope:global align:4 +close__9AtxStreamFv = .text:0x800434B4; // type:function size:0x38 scope:global align:4 +open__9AtxStreamFPci = .text:0x800434EC; // type:function size:0xD8 scope:global align:4 +write__9AtxStreamFPvi = .text:0x800435C4; // type:function size:0x94 scope:global align:4 +read__9AtxStreamFPvi = .text:0x80043658; // type:function size:0x94 scope:global align:4 +getPending__9AtxStreamFv = .text:0x800436EC; // type:function size:0x80 scope:global align:4 +flush__9AtxStreamFv = .text:0x8004376C; // type:function size:0x74 scope:global align:4 +setPosition__13AtxFileStreamFi = .text:0x800437E0; // type:function size:0x5C scope:global align:4 +read__13AtxFileStreamFPvi = .text:0x8004383C; // type:function size:0x98 scope:global align:4 +write__13AtxFileStreamFPvi = .text:0x800438D4; // type:function size:0xAC scope:global align:4 +close__13AtxFileStreamFv = .text:0x80043980; // type:function size:0x7C scope:global align:4 +getPending__13AtxFileStreamFv = .text:0x800439FC; // type:function size:0x10 scope:weak align:4 +getPosition__13AtxFileStreamFv = .text:0x80043A0C; // type:function size:0x8 scope:weak align:4 +getLength__13AtxFileStreamFv = .text:0x80043A14; // type:function size:0x8 scope:weak align:4 +setLength__13AtxFileStreamFi = .text:0x80043A1C; // type:function size:0x8 scope:weak align:4 +__ct__4ID32Fv = .text:0x80043A24; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80043A5C; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80043A8C; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80043AB0; // type:function size:0xA8 scope:global align:4 +updateID__4ID32Fv = .text:0x80043B58; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x80043B7C; // type:function size:0x2C scope:global align:4 +__eq__4ID32FUl = .text:0x80043BA8; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x80043BBC; // type:function size:0x14 scope:global align:4 +write__4ID32FR18RandomAccessStream = .text:0x80043BD0; // type:function size:0x94 scope:global align:4 +read__4ID32FR18RandomAccessStream = .text:0x80043C64; // type:function size:0xBC scope:global align:4 +print__4ID32Fv = .text:0x80043D20; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x80043D24; // type:function size:0x38 scope:global align:4 +__ct__7TextureFv = .text:0x80043D5C; // type:function size:0x70 scope:global align:4 +getAlpha__7TextureFii = .text:0x80043DCC; // type:function size:0xD4 scope:global align:4 +read__7TextureFR18RandomAccessStream = .text:0x80043EA0; // type:function size:0x168 scope:global align:4 +detach__7TextureFv = .text:0x80044008; // type:function size:0xC scope:global align:4 +attach__7TextureFv = .text:0x80044014; // type:function size:0x118 scope:global align:4 +createBuffer__7TextureFiiiPv = .text:0x8004412C; // type:function size:0xE4 scope:global align:4 +grabBuffer__7TextureFiibb = .text:0x80044210; // type:function size:0x110 scope:global align:4 +decodeData__7TextureFP6TexImg = .text:0x80044320; // type:function size:0x80 scope:global align:4 +makeResident__7TextureFv = .text:0x800443A0; // type:function size:0x4 scope:weak align:4 +openFile__6SystemFPcbb = .text:0x800443A4; // type:function size:0x254 scope:global align:4 +initSoftReset__6SystemFv = .text:0x800445F8; // type:function size:0x48 scope:global align:4 +beginRender__6SystemFv = .text:0x80044640; // type:function size:0xF4 scope:global align:4 +doneRender__6SystemFv = .text:0x80044734; // type:function size:0x24 scope:global align:4 +waitRetrace__6SystemFv = .text:0x80044758; // type:function size:0x24 scope:global align:4 +run__6SystemFP7BaseApp = .text:0x8004477C; // type:function size:0x60 scope:global align:4 +getTime__6SystemFv = .text:0x800447DC; // type:function size:0x58 scope:global align:4 +updateSysClock__6SystemFv = .text:0x80044834; // type:function size:0x13C scope:global align:4 +parseArchiveDirectory__6SystemFPcPc = .text:0x80044970; // type:function size:0x39C scope:global align:4 +read__9DVDStreamFPvi = .text:0x80044D0C; // type:function size:0x8C scope:weak align:4 +getPending__9DVDStreamFv = .text:0x80044D98; // type:function size:0x8 scope:weak align:4 +ParseMapFile__Fv = .text:0x80044DA0; // type:function size:0x648 scope:local align:4 +hardReset__6SystemFv = .text:0x800453E8; // type:function size:0x114 scope:global align:4 +__ct__6SystemFv = .text:0x800454FC; // type:function size:0xF8 scope:global align:4 +initBigFont__Fv = .text:0x800455F4; // type:function size:0x170 scope:global align:4 +showDvdError__6SystemFR8Graphics = .text:0x80045764; // type:function size:0x18C scope:global align:4 +Initialise__6SystemFv = .text:0x800458F0; // type:function size:0x498 scope:global align:4 +sndPlaySe__6SystemFUl = .text:0x80045D88; // type:function size:0x4 scope:global align:4 +__dt__6SystemFv = .text:0x80045D8C; // type:function size:0x4C scope:global align:4 +loadFunc__FPv = .text:0x80045DD8; // type:function size:0x348 scope:local align:4 +draw__9LoadIdlerFR8Graphics = .text:0x80046120; // type:function size:0x4 scope:weak align:4 +init__9LoadIdlerFv = .text:0x80046124; // type:function size:0x4 scope:weak align:4 +startLoading__6SystemFP9LoadIdlerbUl = .text:0x80046128; // type:function size:0x94 scope:global align:4 +nudgeLoading__6SystemFv = .text:0x800461BC; // type:function size:0x34 scope:global align:4 +endLoading__6SystemFv = .text:0x800461F0; // type:function size:0x78 scope:global align:4 +doneDMA__FUl = .text:0x80046268; // type:function size:0x4C scope:local align:4 +copyWaitUntilDone__6SystemFv = .text:0x800462B4; // type:function size:0x10 scope:global align:4 +copyRamToCache__6SystemFUlUlUl = .text:0x800462C4; // type:function size:0x104 scope:global align:4 +copyCacheToRam__6SystemFUlUlUl = .text:0x800463C8; // type:function size:0xC4 scope:global align:4 +freeBuffer__FUl = .text:0x8004648C; // type:function size:0xC0 scope:local align:4 +copyCacheToTexture__6SystemFP12CacheTexture = .text:0x8004654C; // type:function size:0xCC scope:global align:4 +dvdFunc__FPv = .text:0x80046618; // type:function size:0x224 scope:local align:4 +nudgeDvdThread__6SystemFv = .text:0x8004683C; // type:function size:0x34 scope:global align:4 +startDvdThread__6SystemFv = .text:0x80046870; // type:function size:0x58 scope:global align:4 +flush__9LogStreamFv = .text:0x800468C8; // type:function size:0x60 scope:weak align:4 +write__9LogStreamFPvi = .text:0x80046928; // type:function size:0x11C scope:weak align:4 +close__9DVDStreamFv = .text:0x80046A44; // type:function size:0x3C scope:weak align:4 +invoke__29Delegate1<6System,R8Graphics>FR8Graphics = .text:0x80046A80; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x80046AB0; // type:function size:0xA4 scope:local align:4 +getPending__10AramStreamFv = .text:0x80046B54; // type:function size:0x8 scope:weak align:4 +read__10AramStreamFPvi = .text:0x80046B5C; // type:function size:0x7C scope:weak align:4 +alloc__6SystemFUl = .text:0x80046BD8; // type:function size:0x164 scope:global align:4 +__nwa__FUli = .text:0x80046D3C; // type:function size:0x44 scope:global align:4 +__dl__FPv = .text:0x80046D80; // type:function size:0x4 scope:global align:4 +__dla__FPv = .text:0x80046D84; // type:function size:0x4 scope:global align:4 +update__13ControllerMgrFv = .text:0x80046D88; // type:function size:0xC4 scope:global align:4 +keyDown__13ControllerMgrFi = .text:0x80046E4C; // type:function size:0x20 scope:global align:4 +init__13ControllerMgrFv = .text:0x80046E6C; // type:function size:0x28 scope:global align:4 +updateController__13ControllerMgrFP10Controller = .text:0x80046E94; // type:function size:0x1F8 scope:global align:4 +__ct__11DGXGraphicsFb = .text:0x8004708C; // type:function size:0x2B8 scope:global align:4 +setVerticalFilter__11DGXGraphicsFPUc = .text:0x80047344; // type:function size:0x94 scope:global align:4 +getVerticalFilter__11DGXGraphicsFPUc = .text:0x800473D8; // type:function size:0x94 scope:global align:4 +videoReset__11DGXGraphicsFv = .text:0x8004746C; // type:function size:0x74 scope:global align:4 +resetCopyFilter__11DGXGraphicsFv = .text:0x800474E0; // type:function size:0x40 scope:global align:4 +setupRender__11DGXGraphicsFv = .text:0x80047520; // type:function size:0x40 scope:global align:4 +getDListPtr__11DGXGraphicsFv = .text:0x80047560; // type:function size:0x8 scope:global align:4 +getDListRemainSize__11DGXGraphicsFv = .text:0x80047568; // type:function size:0x8 scope:global align:4 +useDList__11DGXGraphicsFUl = .text:0x80047570; // type:function size:0x1C scope:global align:4 +compileMaterial__11DGXGraphicsFP8Material = .text:0x8004758C; // type:function size:0x4C8 scope:global align:4 +initRender__11DGXGraphicsFii = .text:0x80047A54; // type:function size:0x1AC scope:global align:4 +beginRender__11DGXGraphicsFv = .text:0x80047C00; // type:function size:0x38 scope:global align:4 +doneRender__11DGXGraphicsFv = .text:0x80047C38; // type:function size:0x30 scope:global align:4 +waitRetrace__11DGXGraphicsFv = .text:0x80047C68; // type:function size:0xC4 scope:global align:4 +waitPostRetrace__11DGXGraphicsFv = .text:0x80047D2C; // type:function size:0x70 scope:global align:4 +retraceProc__11DGXGraphicsFUl = .text:0x80047D9C; // type:function size:0x84 scope:global align:4 +setCamera__11DGXGraphicsFP6Camera = .text:0x80047E20; // type:function size:0x8 scope:global align:4 +calcViewMatrix__11DGXGraphicsFR8Matrix4fR8Matrix4f = .text:0x80047E28; // type:function size:0x2C scope:global align:4 +setLineWidth__11DGXGraphicsFf = .text:0x80047E54; // type:function size:0x50 scope:global align:4 +setDepth__11DGXGraphicsFb = .text:0x80047EA4; // type:function size:0x5C scope:global align:4 +setCullFront__11DGXGraphicsFi = .text:0x80047F00; // type:function size:0x78 scope:global align:4 +setAmbient__11DGXGraphicsFv = .text:0x80047F78; // type:function size:0xA0 scope:global align:4 +setLighting__11DGXGraphicsFbP15PVWLightingInfo = .text:0x80048018; // type:function size:0x1D0 scope:global align:4 +setLight__11DGXGraphicsFP5Lighti = .text:0x800481E8; // type:function size:0x344 scope:global align:4 +setPerspective__11DGXGraphicsFPA4_ffffff = .text:0x8004852C; // type:function size:0x98 scope:global align:4 +setOrthogonal__11DGXGraphicsFPA4_fR8RectArea = .text:0x800485C4; // type:function size:0x19C scope:global align:4 +setScissor__11DGXGraphicsFR8RectArea = .text:0x80048760; // type:function size:0x3C scope:global align:4 +setViewport__11DGXGraphicsFR8RectArea = .text:0x8004879C; // type:function size:0x98 scope:global align:4 +setViewportOffset__11DGXGraphicsFR8RectArea = .text:0x80048834; // type:function size:0x30 scope:global align:4 +initReflectTex__11DGXGraphicsFb = .text:0x80048864; // type:function size:0x4 scope:global align:4 +initProjTex__11DGXGraphicsFbP11LightCamera = .text:0x80048868; // type:function size:0xD0 scope:global align:4 +useMatrixQuick__11DGXGraphicsFR8Matrix4fi = .text:0x80048938; // type:function size:0x168 scope:global align:4 +useMatrix__11DGXGraphicsFR8Matrix4fi = .text:0x80048AA0; // type:function size:0x54 scope:global align:4 +useTexture__11DGXGraphicsFP7Texturei = .text:0x80048AF4; // type:function size:0xF8 scope:global align:4 +setMatMatrices__11DGXGraphicsFP8Materiali = .text:0x80048BEC; // type:function size:0x148 scope:global align:4 +setMaterial__11DGXGraphicsFP8Materialb = .text:0x80048D34; // type:function size:0x864 scope:global align:4 +initMesh__11DGXGraphicsFP5Shape = .text:0x80049598; // type:function size:0x1D4 scope:global align:4 +setupVtxDesc__11DGXGraphicsFP5ShapeP8MaterialP4Mesh = .text:0x8004976C; // type:function size:0x260 scope:global align:4 +drawSingleMatpoly__11DGXGraphicsFP5ShapePQ25Joint7MatPoly = .text:0x800499CC; // type:function size:0x244 scope:global align:4 +drawMeshes__11DGXGraphicsFR6CameraP5Shape = .text:0x80049C10; // type:function size:0xB0 scope:global align:4 +setColour__11DGXGraphicsFR6Colourb = .text:0x80049CC0; // type:function size:0x9C scope:global align:4 +setAuxColour__11DGXGraphicsFR6Colour = .text:0x80049D5C; // type:function size:0xC scope:global align:4 +setPrimEnv__11DGXGraphicsFP6ColourP6Colour = .text:0x80049D68; // type:function size:0x60 scope:global align:4 +setClearColour__11DGXGraphicsFR6Colour = .text:0x80049DC8; // type:function size:0xC scope:global align:4 +clearBuffer__11DGXGraphicsFib = .text:0x80049DD4; // type:function size:0x34 scope:global align:4 +setFog__11DGXGraphicsFb = .text:0x80049E08; // type:function size:0xB4 scope:global align:4 +setFog__11DGXGraphicsFbR6Colourfff = .text:0x80049EBC; // type:function size:0x40 scope:global align:4 +setBlendMode__11DGXGraphicsFUcUcUc = .text:0x80049EFC; // type:function size:0x164 scope:global align:4 +setCBlending__11DGXGraphicsFi = .text:0x8004A060; // type:function size:0x438 scope:global align:4 +initParticle__11DGXGraphicsFb = .text:0x8004A498; // type:function size:0xB8 scope:global align:4 +drawRotParticle__11DGXGraphicsFR6CameraR8Vector3fUsf = .text:0x8004A550; // type:function size:0x328 scope:global align:4 +drawParticle__11DGXGraphicsFR6CameraR8Vector3ff = .text:0x8004A878; // type:function size:0x27C scope:global align:4 +drawCamParticle__11DGXGraphicsFR6CameraR8Vector3fR8Vector2fR8Vector2fR8Vector2f = .text:0x8004AAF4; // type:function size:0x128 scope:global align:4 +drawLine__11DGXGraphicsFR8Vector3fR8Vector3f = .text:0x8004AC1C; // type:function size:0xF4 scope:global align:4 +drawPoints__11DGXGraphicsFP8Vector3fi = .text:0x8004AD10; // type:function size:0x224 scope:global align:4 +drawOneTri__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004AF34; // type:function size:0x3D8 scope:global align:4 +blatRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B30C; // type:function size:0x21C scope:global align:4 +testRectangle__11DGXGraphicsFR8RectArea = .text:0x8004B528; // type:function size:0x1C8 scope:global align:4 +drawRectangle__11DGXGraphicsFR8RectAreaR8RectAreaP8Vector3f = .text:0x8004B6F0; // type:function size:0x46C scope:global align:4 +lineRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BB5C; // type:function size:0x1DC scope:global align:4 +fillRectangle__11DGXGraphicsFR8RectArea = .text:0x8004BD38; // type:function size:0x1AC scope:global align:4 +texturePrintf__11DGXGraphicsFP4FontiiPce = .text:0x8004BEE4; // type:function size:0x41C scope:global align:4 +__ct__5ShapeFv = .text:0x8004C300; // type:function size:0x3C scope:global align:4 +optimize__5ShapeFv = .text:0x8004C33C; // type:function size:0x13C scope:global align:4 +setPointSize__11DGXGraphicsFf = .text:0x8004C478; // type:function size:0x4 scope:weak align:4 +setClippingPlane__11DGXGraphicsFbP5Plane = .text:0x8004C47C; // type:function size:0x4 scope:weak align:4 +drawOutline__11DGXGraphicsFR6CameraP5Shape = .text:0x8004C480; // type:function size:0x4 scope:weak align:4 +drawOneStrip__11DGXGraphicsFP8Vector3fP8Vector3fP8Vector2fi = .text:0x8004C484; // type:function size:0x4 scope:weak align:4 +__sinit_dgxGraphics_cpp = .text:0x8004C488; // type:function size:0x2C scope:local align:4 +renderall__7GameAppFv = .text:0x8004C4B4; // type:function size:0x34 scope:global align:4 +DoMount__FlPv = .text:0x8004C4E8; // type:function size:0x104 scope:local align:4 +DoErase__Fll = .text:0x8004C5EC; // type:function size:0xFC scope:local align:4 +DoList__FlP14CardUtilDirent = .text:0x8004C6E8; // type:function size:0x5CC scope:local align:4 +DoSave__FlP8CARDStatPv = .text:0x8004CCB4; // type:function size:0x5AC scope:local align:4 +CardUtilCommand__FlllPvUlUl = .text:0x8004D260; // type:function size:0xB0 scope:local align:4 +CardUtilResultCode__Fv = .text:0x8004D310; // type:function size:0x10 scope:global align:4 +CardUtilMount__FlPv = .text:0x8004D320; // type:function size:0x34 scope:global align:4 +CardUtilUnmount__Fl = .text:0x8004D354; // type:function size:0x34 scope:global align:4 +CardUtilIsCardBusy__Fv = .text:0x8004D388; // type:function size:0x1C scope:global align:4 +CardUtilIdleWhileBusy__Fv = .text:0x8004D3A4; // type:function size:0x40 scope:global align:4 +CardUtilErase__Fll = .text:0x8004D3E4; // type:function size:0x34 scope:global align:4 +CardUtilOpen__FllPv = .text:0x8004D418; // type:function size:0x34 scope:global align:4 +CardUtilSave__FlP8CARDStatPv = .text:0x8004D44C; // type:function size:0x34 scope:global align:4 +CardUtilWrite__FllPvUlUl = .text:0x8004D480; // type:function size:0x3C scope:global align:4 +CardUtilMain__FPv = .text:0x8004D4BC; // type:function size:0x25C scope:local align:4 +CardUtilInit__FPvUll = .text:0x8004D718; // type:function size:0x94 scope:global align:4 +initializeBody__9RigidBodyFv = .text:0x8004D7AC; // type:function size:0x30C scope:global align:4 +initRender__9RigidBodyFi = .text:0x8004DAB8; // type:function size:0x4 scope:global align:4 +render__9RigidBodyFR8Graphics = .text:0x8004DABC; // type:function size:0x1BC scope:global align:4 +applyCMForce__9RigidBodyFR8Vector3f = .text:0x8004DC78; // type:function size:0x50 scope:global align:4 +integrate__9RigidBodyFiif = .text:0x8004DCC8; // type:function size:0xD90 scope:global align:4 +identity__8Matrix3fFv = .text:0x8004EA58; // type:function size:0x6C scope:weak align:4 +resolveCollisions__9RigidBodyFiR9Collision = .text:0x8004EAC4; // type:function size:0x34C scope:global align:4 +applyGroundForces__9RigidBodyFiP9CollGroup = .text:0x8004EE10; // type:function size:0x398 scope:global align:4 +applyBodyFriction__9RigidBodyFiR8Vector3fR8Vector3fR8Vector3f = .text:0x8004F1A8; // type:function size:0x1B8 scope:weak align:4 +updateViewInfo__9RigidBodyFii = .text:0x8004F360; // type:function size:0xE0 scope:global align:4 +makeBodyQuat__9RigidBodyFR4Quat = .text:0x8004F440; // type:function size:0x4 scope:weak align:4 +updateVecQuats__9RigidBodyFif = .text:0x8004F444; // type:function size:0x1E8 scope:global align:4 +calculateVertices__9RigidBodyFi = .text:0x8004F62C; // type:function size:0x13C scope:global align:4 +checkForCollisions__9RigidBodyFiR9CollState = .text:0x8004F768; // type:function size:0x8 scope:global align:4 +resetWorld__12DynSimulatorFv = .text:0x8004F770; // type:function size:0xB8 scope:global align:4 +doSimulation__12DynSimulatorFffP5Shape = .text:0x8004F828; // type:function size:0x1B4 scope:global align:4 +computeForces__9RigidBodyFif = .text:0x8004F9DC; // type:function size:0x80 scope:weak align:4 +initCollisions__9RigidBodyFi = .text:0x8004FA5C; // type:function size:0xE8 scope:weak align:4 +updateVecQuats__12DynSimulatorFf = .text:0x8004FB44; // type:function size:0x6C scope:global align:4 +initDimensions__9RigidBodyFfff = .text:0x8004FBB0; // type:function size:0x10 scope:weak align:4 +shadrender__9RigidBodyFR8GraphicsP11LightCamera = .text:0x8004FBC0; // type:function size:0x4 scope:weak align:4 +getViewScale__9RigidBodyFv = .text:0x8004FBC4; // type:function size:0x8 scope:weak align:4 +updateCont__9RigidBodyFv = .text:0x8004FBCC; // type:function size:0x4 scope:weak align:4 +checkAnimData__8AnimInfoFv = .text:0x8004FBD0; // type:function size:0xDC scope:global align:4 +__ct__8AnimInfoFP7AnimMgrP8AnimData = .text:0x8004FCAC; // type:function size:0x27C scope:global align:4 +setIndex__8AnimInfoFv = .text:0x8004FF28; // type:function size:0x48 scope:global align:4 +setAnimFlags__8AnimInfoFUl = .text:0x8004FF70; // type:function size:0x24 scope:global align:4 +countAKeys__8AnimInfoFv = .text:0x8004FF94; // type:function size:0x24 scope:global align:4 +countIKeys__8AnimInfoFv = .text:0x8004FFB8; // type:function size:0x24 scope:global align:4 +countEKeys__8AnimInfoFv = .text:0x8004FFDC; // type:function size:0x24 scope:global align:4 +getInfoKey__8AnimInfoFi = .text:0x80050000; // type:function size:0x38 scope:global align:4 +getEventKey__8AnimInfoFi = .text:0x80050038; // type:function size:0x38 scope:global align:4 +getKeyValue__8AnimInfoFi = .text:0x80050070; // type:function size:0x38 scope:global align:4 +doread__8AnimInfoFR18RandomAccessStreami = .text:0x800500A8; // type:function size:0x2F8 scope:global align:4 +__ct__7AnimKeyFv = .text:0x800503A0; // type:function size:0x20 scope:weak align:4 +updateAnimFlags__8AnimInfoFv = .text:0x800503C0; // type:function size:0x10 scope:global align:4 +addKeyFrame__8AnimInfoFv = .text:0x800503D0; // type:function size:0x80 scope:global align:4 +__ct__7AnimMgrFP5ShapePciPc = .text:0x80050450; // type:function size:0x234 scope:global align:4 +Set__5ayuIDFPc = .text:0x80050684; // type:function size:0xC scope:weak align:4 +__nwa__FUl = .text:0x80050690; // type:function size:0x20 scope:weak align:4 +loadAnims__7AnimMgrFPcPc = .text:0x800506B0; // type:function size:0x1E8 scope:global align:4 +addAnimation__7AnimMgrFPcb = .text:0x80050898; // type:function size:0x8C scope:global align:4 +countAnims__7AnimMgrFv = .text:0x80050924; // type:function size:0x20 scope:global align:4 +read__7AnimMgrFR18RandomAccessStream = .text:0x80050944; // type:function size:0x1D8 scope:global align:4 +startAnim__8AnimatorFiiii = .text:0x80050B1C; // type:function size:0x21C scope:global align:4 +finishLoop__8AnimatorFv = .text:0x80050D38; // type:function size:0x4 scope:global align:4 +finishOneShot__8AnimatorFv = .text:0x80050D3C; // type:function size:0x30 scope:global align:4 +updateContext__8AnimatorFv = .text:0x80050D6C; // type:function size:0x5C scope:global align:4 +animate__8AnimatorFf = .text:0x80050DC8; // type:function size:0x23C scope:global align:4 +changeContext__8AnimatorFP11AnimContext = .text:0x80051004; // type:function size:0x8 scope:weak align:4 +size__13Parm<6String>Fv = .text:0x8005100C; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x80051014; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x8005101C; // type:function size:0x8 scope:weak align:4 +draw__13GameLoadIdlerFR8Graphics = .text:0x80051024; // type:function size:0x150 scope:global align:4 +drawLoadLogo__8GameFlowFR8GraphicsbP7Texturef = .text:0x80051174; // type:function size:0x254 scope:global align:4 +setTime__10WorldClockFf = .text:0x800513C8; // type:function size:0xA8 scope:global align:4 +update__10WorldClockFf = .text:0x80051470; // type:function size:0xF8 scope:global align:4 +menuToggleTimers__8GameFlowFR4Menu = .text:0x80051568; // type:function size:0x90 scope:global align:4 +menuTogglePrint__8GameFlowFR4Menu = .text:0x800515F8; // type:function size:0x60 scope:global align:4 +menuToggleDInfo__8GameFlowFR4Menu = .text:0x80051658; // type:function size:0x60 scope:global align:4 +menuToggleDExtra__8GameFlowFR4Menu = .text:0x800516B8; // type:function size:0x60 scope:global align:4 +menuToggleBlur__8GameFlowFR4Menu = .text:0x80051718; // type:function size:0x60 scope:global align:4 +menuToggleInfo__8GameFlowFR4Menu = .text:0x80051778; // type:function size:0x60 scope:global align:4 +menuToggleColls__8GameFlowFR4Menu = .text:0x800517D8; // type:function size:0x60 scope:global align:4 +menuChangeFilter__8GameFlowFR4Menu = .text:0x80051838; // type:function size:0xA0 scope:global align:4 +menuIncreaseFilter__8GameFlowFR4Menu = .text:0x800518D8; // type:function size:0xAC scope:global align:4 +menuDecreaseFilter__8GameFlowFR4Menu = .text:0x80051984; // type:function size:0xAC scope:global align:4 +read__8GameFlowFR18RandomAccessStream = .text:0x80051A30; // type:function size:0x24 scope:global align:4 +preloadLanguage__Fv = .text:0x80051A54; // type:function size:0x144 scope:global align:4 +setLoadBanner__8GameFlowFPc = .text:0x80051B98; // type:function size:0x9C scope:global align:4 +hardReset__8GameFlowFP7BaseApp = .text:0x80051C34; // type:function size:0x664 scope:global align:4 +softReset__8GameFlowFv = .text:0x80052298; // type:function size:0x554 scope:global align:4 +__ct__4NodeFPc = .text:0x800527EC; // type:function size:0x6C scope:weak align:4 +loadShape__8GameFlowFPcb = .text:0x80052858; // type:function size:0x24 scope:global align:4 +update__8GameFlowFv = .text:0x8005287C; // type:function size:0x2C scope:global align:4 +addGenNode__8GameFlowFPcP8CoreNode = .text:0x800528A8; // type:function size:0xD0 scope:global align:4 +update__11GameGenFlowFv = .text:0x80052978; // type:function size:0x60 scope:weak align:4 +init__13GameLoadIdlerFv = .text:0x800529D8; // type:function size:0x4 scope:weak align:4 +invoke__27Delegate1<8GameFlow,R4Menu>FR4Menu = .text:0x800529DC; // type:function size:0x30 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80052A0C; // type:function size:0x1CC scope:local align:4 +__ct__17GameRecChalCourseFv = .text:0x80052BD8; // type:function size:0x1C scope:weak align:4 +__ct__17GameRecDeadPikminFv = .text:0x80052BF4; // type:function size:0xC scope:weak align:4 +__ct__17GameRecBornPikminFv = .text:0x80052C00; // type:function size:0xC scope:weak align:4 +__ct__13GameRecMinDayFv = .text:0x80052C0C; // type:function size:0x14 scope:weak align:4 +read__9StageInfoFR18RandomAccessStream = .text:0x80052C20; // type:function size:0x4 scope:global align:4 +parseGenerators__9StageInfoFP9CmdStream = .text:0x80052C24; // type:function size:0x168 scope:global align:4 +readMapList__14FlowControllerFPc = .text:0x80052D8C; // type:function size:0x378 scope:global align:4 +init__16OnePlayerSectionFv = .text:0x80053104; // type:function size:0x5FC scope:global align:4 +__sinit_game_cpp = .text:0x80053700; // type:function size:0xF0 scope:local align:4 +openStage__9PlayStateFi = .text:0x800537F0; // type:function size:0x40 scope:global align:4 +Initialise__9GamePrefsFv = .text:0x80053830; // type:function size:0x10C scope:global align:4 +setBgmVol__9GamePrefsFUc = .text:0x8005393C; // type:function size:0x40 scope:global align:4 +setSfxVol__9GamePrefsFUc = .text:0x8005397C; // type:function size:0x40 scope:global align:4 +setStereoMode__9GamePrefsFb = .text:0x800539BC; // type:function size:0x9C scope:global align:4 +setVibeMode__9GamePrefsFb = .text:0x80053A58; // type:function size:0xB8 scope:global align:4 +getChildMode__9GamePrefsFv = .text:0x80053B10; // type:function size:0x20 scope:global align:4 +setChildMode__9GamePrefsFi = .text:0x80053B30; // type:function size:0x8C scope:global align:4 +getChallengeScores__9GamePrefsFR17GameChalQuickInfo = .text:0x80053BBC; // type:function size:0x68 scope:global align:4 +checkIsHiscore__9GamePrefsFR17GameChalQuickInfo = .text:0x80053C24; // type:function size:0x174 scope:global align:4 +checkIsHiscore__9GamePrefsFR13GameQuickInfo = .text:0x80053D98; // type:function size:0x34C scope:global align:4 +write__9GamePrefsFR18RandomAccessStream = .text:0x800540E4; // type:function size:0x178 scope:global align:4 +fixSoundMode__9GamePrefsFv = .text:0x8005425C; // type:function size:0xB8 scope:global align:4 +read__9GamePrefsFR18RandomAccessStream = .text:0x80054314; // type:function size:0x350 scope:global align:4 +write__9PlayStateFR18RandomAccessStream = .text:0x80054664; // type:function size:0xF4 scope:global align:4 +read__9PlayStateFR18RandomAccessStream = .text:0x80054758; // type:function size:0xF4 scope:global align:4 +preCacheShapes__16GameSetupSectionFv = .text:0x8005484C; // type:function size:0x190 scope:global align:4 +__ct__16GameSetupSectionFv = .text:0x800549DC; // type:function size:0x284 scope:global align:4 +update__16GameSetupSectionFv = .text:0x80054C60; // type:function size:0x1C scope:global align:4 +init__16GameSetupSectionFv = .text:0x80054C7C; // type:function size:0x4 scope:weak align:4 +getPending__9RamStreamFv = .text:0x80054C80; // type:function size:0x10 scope:weak align:4 +setPosition__9RamStreamFi = .text:0x80054C90; // type:function size:0x8 scope:weak align:4 +getPosition__9RamStreamFv = .text:0x80054C98; // type:function size:0x8 scope:weak align:4 +getLength__9RamStreamFv = .text:0x80054CA0; // type:function size:0x8 scope:weak align:4 +setLength__9RamStreamFi = .text:0x80054CA8; // type:function size:0x8 scope:weak align:4 +read__9RamStreamFPvi = .text:0x80054CB0; // type:function size:0x54 scope:weak align:4 +write__9RamStreamFPvi = .text:0x80054D04; // type:function size:0x50 scope:weak align:4 +__ct__17CardSelectSectionFv = .text:0x80054D54; // type:function size:0x23C scope:global align:4 +update__22CardSelectSetupSectionFv = .text:0x80054F90; // type:function size:0x298 scope:weak align:4 +draw__22CardSelectSetupSectionFR8Graphics = .text:0x80055228; // type:function size:0x1F8 scope:weak align:4 +init__17CardSelectSectionFv = .text:0x80055420; // type:function size:0x4 scope:weak align:4 +openAllChMaps__21MapSelectSetupSectionFR4Menu = .text:0x80055424; // type:function size:0x368 scope:weak align:4 +openAllMaps__21MapSelectSetupSectionFR4Menu = .text:0x8005578C; // type:function size:0x2D0 scope:weak align:4 +menuSelectOption__21MapSelectSetupSectionFR4Menu = .text:0x80055A5C; // type:function size:0x10C scope:weak align:4 +__ct__16MapSelectSectionFv = .text:0x80055B68; // type:function size:0x46C scope:global align:4 +makeMapsMenu__21MapSelectSetupSectionFv = .text:0x80055FD4; // type:function size:0x294 scope:weak align:4 +update__21MapSelectSetupSectionFv = .text:0x80056268; // type:function size:0x328 scope:weak align:4 +draw__21MapSelectSetupSectionFR8Graphics = .text:0x80056590; // type:function size:0x224 scope:weak align:4 +init__16MapSelectSectionFv = .text:0x800567B4; // type:function size:0x4 scope:weak align:4 +invoke__23Delegate1<4Menu,R4Menu>FR4Menu = .text:0x800567B8; // type:function size:0x30 scope:weak align:4 +invoke__41Delegate1<21MapSelectSetupSection,R4Menu>FR4Menu = .text:0x800567E8; // type:function size:0x30 scope:weak align:4 +createMenuWindow__Fv = .text:0x80056818; // type:function size:0x118 scope:local align:4 +createTutorialWindow__Fiib = .text:0x80056930; // type:function size:0x1B0 scope:local align:4 +deleteTutorialWindow__Fv = .text:0x80056AE0; // type:function size:0xBC scope:local align:4 +__ct__15BaseGameSectionFv = .text:0x80056B9C; // type:function size:0x118 scope:global align:4 +draw__15BaseGameSectionFR8Graphics = .text:0x80056CB4; // type:function size:0x244 scope:global align:4 +postUpdate__9ModeStateFv = .text:0x80056EF8; // type:function size:0x4 scope:weak align:4 +update__18IntroGameModeStateFRUl = .text:0x80056EFC; // type:function size:0x128 scope:global align:4 +update__16RunningModeStateFRUl = .text:0x80057024; // type:function size:0x6A0 scope:global align:4 +message__13GameInterfaceFii = .text:0x800576C4; // type:function size:0x4 scope:weak align:4 +postRender__18IntroGameModeStateFR8Graphics = .text:0x800576C8; // type:function size:0x78 scope:global align:4 +postRender__16RunningModeStateFR8Graphics = .text:0x80057740; // type:function size:0x294 scope:global align:4 +update__16MessageModeStateFRUl = .text:0x800579D4; // type:function size:0x360 scope:global align:4 +update__16DayOverModeStateFRUl = .text:0x80057D34; // type:function size:0x58C scope:global align:4 +makeTotalScoreWindow__16DayOverModeStateFv = .text:0x800582C0; // type:function size:0x250 scope:global align:4 +initialisePhaseOne__16DayOverModeStateFv = .text:0x80058510; // type:function size:0x368 scope:global align:4 +initialisePhaseTwo__16DayOverModeStateFv = .text:0x80058878; // type:function size:0x410 scope:global align:4 +initialisePhaseThree__16DayOverModeStateFv = .text:0x80058C88; // type:function size:0x258 scope:global align:4 +initialisePhaseFour__16DayOverModeStateFv = .text:0x80058EE0; // type:function size:0x13C scope:global align:4 +parseMessages__18GameMovieInterfaceFv = .text:0x8005901C; // type:function size:0xC0 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface13SimpleMessage = .text:0x800590DC; // type:function size:0x458 scope:global align:4 +parse__18GameMovieInterfaceFRQ218GameMovieInterface14ComplexMessage = .text:0x80059534; // type:function size:0x4C scope:global align:4 +__ct__18NewPikiGameSectionFv = .text:0x80059580; // type:function size:0x730 scope:global align:4 +init2Ddata__23NewPikiGameSetupSectionFv = .text:0x80059CB0; // type:function size:0x160 scope:weak align:4 +createMapObjects__23NewPikiGameSetupSectionFP6MapMgr = .text:0x80059E10; // type:function size:0x1B4 scope:weak align:4 +__ct__Q218GameMovieInterface14ComplexMessageFv = .text:0x80059FC4; // type:function size:0x20 scope:weak align:4 +movie__13GameInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80059FE4; // type:function size:0x4 scope:weak align:4 +parseMessages__13GameInterfaceFv = .text:0x80059FE8; // type:function size:0x4 scope:weak align:4 +parse__13GameInterfaceFii = .text:0x80059FEC; // type:function size:0x4 scope:weak align:4 +openMenu__23NewPikiGameSetupSectionFv = .text:0x80059FF0; // type:function size:0x54 scope:weak align:4 +update__23NewPikiGameSetupSectionFv = .text:0x8005A044; // type:function size:0x138 scope:weak align:4 +update__9ModeStateFRUl = .text:0x8005A17C; // type:function size:0xC scope:weak align:4 +draw__23NewPikiGameSetupSectionFR8Graphics = .text:0x8005A188; // type:function size:0x83C scope:weak align:4 +postRender__9ModeStateFR8Graphics = .text:0x8005A9C4; // type:function size:0x4 scope:weak align:4 +init__18NewPikiGameSectionFv = .text:0x8005A9C8; // type:function size:0x4 scope:weak align:4 +message__18GameMovieInterfaceFii = .text:0x8005A9CC; // type:function size:0x3C scope:weak align:4 +movie__18GameMovieInterfaceFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x8005AA08; // type:function size:0x11C scope:weak align:4 +postRender__16DayOverModeStateFR8Graphics = .text:0x8005AB24; // type:function size:0xC8 scope:weak align:4 +postRender__16MessageModeStateFR8Graphics = .text:0x8005ABEC; // type:function size:0x78 scope:weak align:4 +update__21QuittingGameModeStateFRUl = .text:0x8005AC64; // type:function size:0xC scope:weak align:4 +postUpdate__21QuittingGameModeStateFv = .text:0x8005AC70; // type:function size:0x74 scope:weak align:4 +openMenu__15BaseGameSectionFv = .text:0x8005ACE4; // type:function size:0x4 scope:weak align:4 +__ct__16IntroGameSectionFv = .text:0x8005ACE8; // type:function size:0x29C scope:global align:4 +update__14IntroModeStateFRUl = .text:0x8005AF84; // type:function size:0x80 scope:weak align:4 +postRender__14IntroModeStateFR8Graphics = .text:0x8005B004; // type:function size:0x4 scope:weak align:4 +update__17QuittingModeStateFRUl = .text:0x8005B008; // type:function size:0xC scope:weak align:4 +postUpdate__17QuittingModeStateFv = .text:0x8005B014; // type:function size:0x5C scope:weak align:4 +update__21IntroGameSetupSectionFv = .text:0x8005B070; // type:function size:0x30 scope:weak align:4 +draw__21IntroGameSetupSectionFR8Graphics = .text:0x8005B0A0; // type:function size:0x4DC scope:weak align:4 +init__16IntroGameSectionFv = .text:0x8005B57C; // type:function size:0x4 scope:weak align:4 +__ct__15GameExitSectionFv = .text:0x8005B580; // type:function size:0x9C scope:global align:4 +update__15GameExitSectionFv = .text:0x8005B61C; // type:function size:0x50 scope:global align:4 +init__15GameExitSectionFv = .text:0x8005B66C; // type:function size:0x4 scope:weak align:4 +update__9GaugeInfoFv = .text:0x8005B670; // type:function size:0x150 scope:global align:4 +showDigits__9GaugeInfoF8Vector3fR6Colouriff = .text:0x8005B7C0; // type:function size:0x210 scope:global align:4 +refresh__9GaugeInfoFR8Graphics = .text:0x8005B9D0; // type:function size:0x270 scope:global align:4 +init__12LifeGaugeMgrFi = .text:0x8005BC40; // type:function size:0xF0 scope:global align:4 +__ct__9GaugeInfoFv = .text:0x8005BD30; // type:function size:0x54 scope:weak align:4 +update__12LifeGaugeMgrFv = .text:0x8005BD84; // type:function size:0x40 scope:global align:4 +refresh__12LifeGaugeMgrFR8Graphics = .text:0x8005BDC4; // type:function size:0x68 scope:global align:4 +removeLG__12LifeGaugeMgrFP9GaugeInfo = .text:0x8005BE2C; // type:function size:0x60 scope:global align:4 +__ct__9LifeGaugeFv = .text:0x8005BE8C; // type:function size:0xD8 scope:global align:4 +updValue__9LifeGaugeFff = .text:0x8005BF64; // type:function size:0x30 scope:global align:4 +refresh__9LifeGaugeFR8Graphics = .text:0x8005BF94; // type:function size:0xEC8 scope:global align:4 +countOn__9LifeGaugeFR8Vector3fii = .text:0x8005CE5C; // type:function size:0x148 scope:global align:4 +countOff__9LifeGaugeFv = .text:0x8005CFA4; // type:function size:0x30 scope:global align:4 +__sinit_gauges_cpp = .text:0x8005CFD4; // type:function size:0x4 scope:local align:4 +makeObjectMapObject__Fv = .text:0x8005CFD8; // type:function size:0x40 scope:local align:4 +__ct__18GenObjectMapObjectFv = .text:0x8005D018; // type:function size:0x68 scope:global align:4 +initialise__18GenObjectMapObjectFP6MapMgr = .text:0x8005D080; // type:function size:0x90 scope:global align:4 +doRead__18GenObjectMapObjectFR18RandomAccessStream = .text:0x8005D110; // type:function size:0x40 scope:global align:4 +render__18GenObjectMapObjectFR8GraphicsP9Generator = .text:0x8005D150; // type:function size:0x4 scope:global align:4 +birth__18GenObjectMapObjectFR9BirthInfo = .text:0x8005D154; // type:function size:0x8 scope:global align:4 +__ct__9RigidBodyFv = .text:0x8005D15C; // type:function size:0x2A8 scope:weak align:4 +__ct__4QuatFv = .text:0x8005D404; // type:function size:0x14 scope:weak align:4 +__ct__Q29RigidBody13configurationFv = .text:0x8005D418; // type:function size:0x150 scope:weak align:4 +__ct__11WorldSpringFv = .text:0x8005D568; // type:function size:0x14 scope:weak align:4 +set__8Vector3fFRCfRCfRCf = .text:0x8005D57C; // type:function size:0x1C scope:weak align:4 +applyGroundForces__12DynObjBridgeFiP9CollGroup = .text:0x8005D598; // type:function size:0x4 scope:weak align:4 +initDimensions__10DynObjBodyFfff = .text:0x8005D59C; // type:function size:0x34 scope:weak align:4 +updateUseList__9GenObjectFP9Generatori = .text:0x8005D5D0; // type:function size:0x4 scope:weak align:4 +init__9GenObjectFP9Generator = .text:0x8005D5D4; // type:function size:0x4 scope:weak align:4 +update__9GenObjectFP9Generator = .text:0x8005D5D8; // type:function size:0x4 scope:weak align:4 +doWrite__7GenBaseFR18RandomAccessStream = .text:0x8005D5DC; // type:function size:0x4 scope:weak align:4 +update__7GenBaseFv = .text:0x8005D5E0; // type:function size:0x4 scope:weak align:4 +render__7GenBaseFR8Graphics = .text:0x8005D5E4; // type:function size:0x4 scope:weak align:4 +__ct__4MenuFP10ControllerP4Fontb = .text:0x8005D5E8; // type:function size:0x1C8 scope:global align:4 +__ct__Q24Menu8MenuItemFiiPcP18IDelegate1 = .text:0x8005D7B0; // type:function size:0x94 scope:global align:4 +addKeyEvent__4MenuFiiP18IDelegate1 = .text:0x8005D844; // type:function size:0xC8 scope:global align:4 +enterOption__4MenuFv = .text:0x8005D90C; // type:function size:0x4 scope:global align:4 +enterMenu__4MenuFP4Menu = .text:0x8005D910; // type:function size:0x48 scope:global align:4 +exitMenu__4MenuFP4Menu = .text:0x8005D958; // type:function size:0x44 scope:global align:4 +open__4MenuFb = .text:0x8005D99C; // type:function size:0x2C scope:global align:4 +close__4MenuFv = .text:0x8005D9C8; // type:function size:0x24 scope:global align:4 +resetOptions__4MenuFv = .text:0x8005D9EC; // type:function size:0x20 scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x8005DA0C; // type:function size:0x194 scope:global align:4 +addMenu__4MenuFP4MenuiPc = .text:0x8005DBA0; // type:function size:0x184 scope:global align:4 +checkNewOption__4MenuFv = .text:0x8005DD24; // type:function size:0x150 scope:global align:4 +checkSelectKey__4MenuFv = .text:0x8005DE74; // type:function size:0x1C scope:global align:4 +checkCancelKey__4MenuFv = .text:0x8005DE90; // type:function size:0x1C scope:global align:4 +doUpdate__4MenuFb = .text:0x8005DEAC; // type:function size:0x258 scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x8005E104; // type:function size:0x1FC scope:global align:4 +draw__4MenuFR8Graphicsf = .text:0x8005E300; // type:function size:0x60C scope:global align:4 +menuCloseMenu__4MenuFR4Menu = .text:0x8005E90C; // type:function size:0x64 scope:global align:4 +__ct__8BaseParmFP10Parameters5ayuID = .text:0x8005E970; // type:function size:0x6C scope:global align:4 +write__10ParametersFR18RandomAccessStream = .text:0x8005E9DC; // type:function size:0xA8 scope:global align:4 +write__8BaseParmFR18RandomAccessStream = .text:0x8005EA84; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR18RandomAccessStream = .text:0x8005EA88; // type:function size:0xD4 scope:global align:4 +read__8BaseParmFR18RandomAccessStream = .text:0x8005EB5C; // type:function size:0x4 scope:weak align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005EB60; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005EBA0; // type:function size:0x38 scope:global align:4 +read__7ParmFR18RandomAccessStream = .text:0x8005EBD8; // type:function size:0x40 scope:global align:4 +write__7ParmFR18RandomAccessStream = .text:0x8005EC18; // type:function size:0x38 scope:global align:4 +read__13Parm<6String>FR18RandomAccessStream = .text:0x8005EC50; // type:function size:0x58 scope:global align:4 +write__13Parm<6String>FR18RandomAccessStream = .text:0x8005ECA8; // type:function size:0x38 scope:global align:4 +hardReset__11PlugPikiAppFv = .text:0x8005ECE0; // type:function size:0x160 scope:global align:4 +softReset__11PlugPikiAppFv = .text:0x8005EE40; // type:function size:0x40 scope:global align:4 +update__11PlugPikiAppFv = .text:0x8005EE80; // type:function size:0x4C scope:global align:4 +draw__11PlugPikiAppFR8Graphics = .text:0x8005EECC; // type:function size:0x4BC scope:global align:4 +idle__11PlugPikiAppFv = .text:0x8005F388; // type:function size:0x144 scope:global align:4 +__ct__11PlugPikiAppFv = .text:0x8005F4CC; // type:function size:0x148 scope:global align:4 +__dt__7GameAppFv = .text:0x8005F614; // type:function size:0x64 scope:weak align:4 +idle__7GameAppFv = .text:0x8005F678; // type:function size:0x8 scope:weak align:4 +__dt__11PlugPikiAppFv = .text:0x8005F680; // type:function size:0x74 scope:weak align:4 +menuSelectOption__17TitleSetupSectionFR4Menu = .text:0x8005F6F4; // type:function size:0x8C scope:weak align:4 +message__20TitlesMovieInterfaceFii = .text:0x8005F780; // type:function size:0x38 scope:global align:4 +init__13TitlesSectionFv = .text:0x8005F7B8; // type:function size:0x880 scope:global align:4 +update__17TitleSetupSectionFv = .text:0x80060038; // type:function size:0x724 scope:weak align:4 +draw__17TitleSetupSectionFR8Graphics = .text:0x8006075C; // type:function size:0x8BC scope:weak align:4 +drawMenu__17TitleSetupSectionFR8GraphicsP4Menuf = .text:0x80061018; // type:function size:0xEC scope:weak align:4 +invoke__37Delegate1<17TitleSetupSection,R4Menu>FR4Menu = .text:0x80061104; // type:function size:0x30 scope:weak align:4 +init__14NinLogoSectionFv = .text:0x80061134; // type:function size:0x114 scope:global align:4 +update__19NinLogoSetupSectionFv = .text:0x80061248; // type:function size:0xF0 scope:weak align:4 +draw__19NinLogoSetupSectionFR8Graphics = .text:0x80061338; // type:function size:0x214 scope:weak align:4 +drawMenu__19NinLogoSetupSectionFR8GraphicsP4Menuf = .text:0x8006154C; // type:function size:0xEC scope:weak align:4 +createDupCollData__12DynCollShapeFv = .text:0x80061638; // type:function size:0x268 scope:global align:4 +updatePos__12DynCollShapeFv = .text:0x800618A0; // type:function size:0x3CC scope:global align:4 +jointVisible__12DynCollShapeFii = .text:0x80061C6C; // type:function size:0x44 scope:global align:4 +adjust__12DynCollShapeFP8Creature = .text:0x80061CB0; // type:function size:0x94 scope:global align:4 +update__12DynCollShapeFv = .text:0x80061D44; // type:function size:0x48 scope:global align:4 +updateContext__12DynCollShapeFv = .text:0x80061D8C; // type:function size:0x3C scope:global align:4 +refresh__12DynCollShapeFR8Graphics = .text:0x80061DC8; // type:function size:0x64 scope:global align:4 +finishOneShot__14MapObjAnimatorFv = .text:0x80061E2C; // type:function size:0x34 scope:global align:4 +__ct__12DynCollShapeFP5Shape = .text:0x80061E60; // type:function size:0x1BC scope:weak align:4 +nextState__12DynMapObjectFv = .text:0x8006201C; // type:function size:0x24 scope:global align:4 +touchCallback__12DynMapObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80062040; // type:function size:0x3C scope:global align:4 +update__12DynMapObjectFv = .text:0x8006207C; // type:function size:0x1A8 scope:global align:4 +draw__12DynMapObjectFR8Graphics = .text:0x80062224; // type:function size:0x2C scope:global align:4 +refresh__12DynMapObjectFR8Graphics = .text:0x80062250; // type:function size:0x184 scope:global align:4 +touchCallback__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800623D4; // type:function size:0x30 scope:global align:4 +applyVelocity__14DynCollObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062404; // type:function size:0x30 scope:global align:4 +touchCallback__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x80062434; // type:function size:0x1B8 scope:global align:4 +applyVelocity__10DynObjBodyFR5PlaneR8Vector3fR8Vector3f = .text:0x800625EC; // type:function size:0x1B8 scope:global align:4 +integrate__10DynObjBodyFiif = .text:0x800627A4; // type:function size:0x868 scope:global align:4 +integrate__12DynObjSeeSawFiif = .text:0x8006300C; // type:function size:0x8A8 scope:global align:4 +initRender__10DynObjBodyFi = .text:0x800638B4; // type:function size:0xF8 scope:global align:4 +applyWorldSpring__10DynObjBodyFiiR8Vector3f = .text:0x800639AC; // type:function size:0x3E8 scope:global align:4 +render__10DynObjBodyFR8Graphics = .text:0x80063D94; // type:function size:0x1AC scope:global align:4 +computeForces__10DynObjBodyFif = .text:0x80063F40; // type:function size:0x1E0 scope:global align:4 +initBodyCollisions__10DynObjBodyFv = .text:0x80064120; // type:function size:0x268 scope:global align:4 +readScript__10DynObjBodyFP6MapMgrPc = .text:0x80064388; // type:function size:0x3A4 scope:global align:4 +render__14DynObjPushableFR8Graphics = .text:0x8006472C; // type:function size:0x538 scope:global align:4 +__ct__6MapMgrFP10Controller = .text:0x80064C64; // type:function size:0x6B0 scope:global align:4 +__ct__7MapRoomFv = .text:0x80065314; // type:function size:0x18 scope:weak align:4 +initEffects__6MapMgrFv = .text:0x8006532C; // type:function size:0x30 scope:global align:4 +initShape__6MapMgrFv = .text:0x8006535C; // type:function size:0x3C4 scope:global align:4 +__ct__9CollisionFv = .text:0x80065720; // type:function size:0x20 scope:weak align:4 +createLights__6MapMgrFv = .text:0x80065740; // type:function size:0x4 scope:global align:4 +updateSimulation__6MapMgrFv = .text:0x80065744; // type:function size:0xFC scope:global align:4 +update__6MapMgrFv = .text:0x80065840; // type:function size:0x1D4 scope:global align:4 +alwaysUpdatePlatform__8CreatureFv = .text:0x80065A14; // type:function size:0x8 scope:weak align:4 +preRender__6MapMgrFR8Graphics = .text:0x80065A1C; // type:function size:0xF4 scope:global align:4 +drawShadowCasters__6MapMgrFR8Graphics = .text:0x80065B10; // type:function size:0x19C scope:global align:4 +refresh__6MapMgrFR8Graphics = .text:0x80065CAC; // type:function size:0x438 scope:global align:4 +addLight__9SoftLightFUlP12LShortColourP5Shape = .text:0x800660E4; // type:function size:0x94 scope:weak align:4 +subLight__9SoftLightFP12LShortColour = .text:0x80066178; // type:function size:0x60 scope:weak align:4 +showCollisions__6MapMgrFR8Vector3f = .text:0x800661D8; // type:function size:0x78C scope:global align:4 +drawXLU__6MapMgrFR8Graphics = .text:0x80066964; // type:function size:0x160 scope:global align:4 +postrefresh__6MapMgrFR8Graphics = .text:0x80066AC4; // type:function size:0xEDC scope:global align:4 +updatePos__6MapMgrFff = .text:0x800679A0; // type:function size:0x270 scope:global align:4 +getLight__6MapMgrFff = .text:0x80067C10; // type:function size:0x8 scope:global align:4 +getCollGroupList__6MapMgrFffb = .text:0x80067C18; // type:function size:0x164 scope:global align:4 +getMinY__6MapMgrFffb = .text:0x80067D7C; // type:function size:0x164 scope:global align:4 +getMaxY__6MapMgrFffb = .text:0x80067EE0; // type:function size:0x170 scope:global align:4 +getCurrTri__6MapMgrFffb = .text:0x80068050; // type:function size:0x15C scope:global align:4 +findEdgePenetration__6MapMgrFR11CollTriInfoP8Vector3fR8Vector3ffR8Vector3f = .text:0x800681AC; // type:function size:0x2EC scope:global align:4 +recTraceMove__6MapMgrFP9CollGroupR9MoveTracef = .text:0x80068498; // type:function size:0x82C scope:global align:4 +touchCallback__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x80068CC4; // type:function size:0x4 scope:weak align:4 +wallCallback__8CreatureFR5PlaneP13DynCollObject = .text:0x80068CC8; // type:function size:0x4 scope:weak align:4 +traceMove__6MapMgrFP8CreatureR9MoveTracef = .text:0x80068CCC; // type:function size:0x5D0 scope:global align:4 +loadPlatshape__6MapMgrFPc = .text:0x8006929C; // type:function size:0x70 scope:global align:4 +requestCollPart__6MapMgrFP11ObjCollInfoP8Creature = .text:0x8006930C; // type:function size:0x9C scope:global align:4 +__ct__12ShadowCasterFv = .text:0x800693A8; // type:function size:0x134 scope:global align:4 +initShadow__12ShadowCasterFv = .text:0x800694DC; // type:function size:0x2C scope:global align:4 +setMaterial__17MapProjMatHandlerFP8Material = .text:0x80069508; // type:function size:0x3C scope:weak align:4 +setTexMatrix__17MapProjMatHandlerFb = .text:0x80069544; // type:function size:0x38 scope:weak align:4 +setMaterial__17MapShadMatHandlerFP8Material = .text:0x8006957C; // type:function size:0x3C scope:weak align:4 +touchCallback__14DynObjPushableFR5PlaneR8Vector3fR8Vector3f = .text:0x800695B8; // type:function size:0x4 scope:weak align:4 +update__14DynCollObjBodyFv = .text:0x800695BC; // type:function size:0x4 scope:weak align:4 +adjust__14DynCollObjBodyFP8Creature = .text:0x800695C0; // type:function size:0x4 scope:weak align:4 +getShape__12DynCollShapeFv = .text:0x800695C4; // type:function size:0x8 scope:weak align:4 +applyVelocity__13DynCollObjectFR5PlaneR8Vector3fR8Vector3f = .text:0x800695CC; // type:function size:0x4 scope:weak align:4 +update__13MapObjectPartFv = .text:0x800695D0; // type:function size:0x4 scope:weak align:4 +refresh__13MapObjectPartFR8Graphics = .text:0x800695D4; // type:function size:0x4 scope:weak align:4 +touchCallback__13MapObjectPartFR5PlaneR8Vector3fR8Vector3f = .text:0x800695D8; // type:function size:0x38 scope:weak align:4 +adjust__13DynCollObjectFP8Creature = .text:0x80069610; // type:function size:0x4 scope:weak align:4 +getShape__13DynCollObjectFv = .text:0x80069614; // type:function size:0x8 scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x8006961C; // type:function size:0x58 scope:local align:4 +menuEnterZ__12PositionMenuFR4Menu = .text:0x80069674; // type:function size:0x58 scope:weak align:4 +menuEnterY__12PositionMenuFR4Menu = .text:0x800696CC; // type:function size:0x58 scope:weak align:4 +menuEnterX__12PositionMenuFR4Menu = .text:0x80069724; // type:function size:0x54 scope:weak align:4 +menuIncrease__12PositionMenuFR4Menu = .text:0x80069778; // type:function size:0xA4 scope:weak align:4 +menuDecrease__12PositionMenuFR4Menu = .text:0x8006981C; // type:function size:0xA4 scope:weak align:4 +menuEnterA__10ColourMenuFR4Menu = .text:0x800698C0; // type:function size:0x50 scope:weak align:4 +menuEnterB__10ColourMenuFR4Menu = .text:0x80069910; // type:function size:0x50 scope:weak align:4 +menuEnterG__10ColourMenuFR4Menu = .text:0x80069960; // type:function size:0x50 scope:weak align:4 +menuEnterR__10ColourMenuFR4Menu = .text:0x800699B0; // type:function size:0x4C scope:weak align:4 +menuIncrease__10ColourMenuFR4Menu = .text:0x800699FC; // type:function size:0x54 scope:weak align:4 +menuDecrease__10ColourMenuFR4Menu = .text:0x80069A50; // type:function size:0x54 scope:weak align:4 +menuEnterFar__7FogMenuFR4Menu = .text:0x80069AA4; // type:function size:0x54 scope:weak align:4 +menuEnterNear__7FogMenuFR4Menu = .text:0x80069AF8; // type:function size:0x54 scope:weak align:4 +menuIncrease__7FogMenuFR4Menu = .text:0x80069B4C; // type:function size:0x58 scope:weak align:4 +menuDecrease__7FogMenuFR4Menu = .text:0x80069BA4; // type:function size:0x58 scope:weak align:4 +menuChangeMove__9LightMenuFR4Menu = .text:0x80069BFC; // type:function size:0x434 scope:weak align:4 +menuChangeType__9LightMenuFR4Menu = .text:0x8006A030; // type:function size:0x458 scope:weak align:4 +menuEnterNear__9LightMenuFR4Menu = .text:0x8006A488; // type:function size:0x54 scope:weak align:4 +menuIncrease__9LightMenuFR4Menu = .text:0x8006A4DC; // type:function size:0x58 scope:weak align:4 +menuDecrease__9LightMenuFR4Menu = .text:0x8006A534; // type:function size:0x58 scope:weak align:4 +__ct__10ColourMenuFP6ColourP10ControllerP4Fontb = .text:0x8006A58C; // type:function size:0x72C scope:weak align:4 +__ct__12PositionMenuFP8Vector3fP10ControllerP4Fontbb = .text:0x8006ACB8; // type:function size:0x5BC scope:weak align:4 +menuBIncrease__6DayMgrFR4Menu = .text:0x8006B274; // type:function size:0x5C scope:global align:4 +menuBDecrease__6DayMgrFR4Menu = .text:0x8006B2D0; // type:function size:0x5C scope:global align:4 +__ct__6DayMgrFP6MapMgrP10Controller = .text:0x8006B32C; // type:function size:0x1B80 scope:global align:4 +__ct__9LightMenuFP5LightPiP10ControllerP4Fontb = .text:0x8006CEAC; // type:function size:0x52C scope:weak align:4 +__ct__7FogMenuFP6ColourPfPfP10ControllerP4Fontb = .text:0x8006D3D8; // type:function size:0xB30 scope:weak align:4 +__ct__11TimeSettingFv = .text:0x8006DF08; // type:function size:0x314 scope:weak align:4 +menuIncreaseLights__6DayMgrFR4Menu = .text:0x8006E21C; // type:function size:0x58 scope:global align:4 +menuDecreaseLights__6DayMgrFR4Menu = .text:0x8006E274; // type:function size:0x58 scope:global align:4 +menuIncreaseTime__6DayMgrFR4Menu = .text:0x8006E2CC; // type:function size:0x84 scope:global align:4 +menuDecreaseTime__6DayMgrFR4Menu = .text:0x8006E350; // type:function size:0x84 scope:global align:4 +refresh__6DayMgrFR8Graphicsfi = .text:0x8006E3D4; // type:function size:0xA38 scope:global align:4 +setFog__6DayMgrFR8GraphicsP6Colour = .text:0x8006EE0C; // type:function size:0x54 scope:global align:4 +menuDumpSettings__6DayMgrFR4Menu = .text:0x8006EE60; // type:function size:0x84 scope:global align:4 +init__6DayMgrFP9CmdStream = .text:0x8006EEE4; // type:function size:0x8C0 scope:global align:4 +invoke__25Delegate1<6DayMgr,R4Menu>FR4Menu = .text:0x8006F7A4; // type:function size:0x30 scope:weak align:4 +invoke__28Delegate1<9LightMenu,R4Menu>FR4Menu = .text:0x8006F7D4; // type:function size:0x30 scope:weak align:4 +invoke__26Delegate1<7FogMenu,R4Menu>FR4Menu = .text:0x8006F804; // type:function size:0x30 scope:weak align:4 +invoke__30Delegate1<10ColourMenu,R4Menu>FR4Menu = .text:0x8006F834; // type:function size:0x30 scope:weak align:4 +invoke__32Delegate1<12PositionMenu,R4Menu>FR4Menu = .text:0x8006F864; // type:function size:0x30 scope:weak align:4 +init__15CinematicPlayerFPc = .text:0x8006F894; // type:function size:0x1BC scope:global align:4 +__ct__15CinematicPlayerFPc = .text:0x8006FA50; // type:function size:0x1B0 scope:global align:4 +__ct__13ActorInstanceFv = .text:0x8006FC00; // type:function size:0x130 scope:weak align:4 +loadCin__15CinematicPlayerFPc = .text:0x8006FD30; // type:function size:0x720 scope:global align:4 +addScene__15CinematicPlayerFP9SceneData = .text:0x80070450; // type:function size:0xB4 scope:global align:4 +addCut__15CinematicPlayerFiii = .text:0x80070504; // type:function size:0x90 scope:global align:4 +addActor__15CinematicPlayerFP15CineShapeObject = .text:0x80070594; // type:function size:0xA0 scope:global align:4 +addSceneCut__15CinematicPlayerFv = .text:0x80070634; // type:function size:0x138 scope:global align:4 +skipScene__15CinematicPlayerFi = .text:0x8007076C; // type:function size:0x84 scope:global align:4 +update__15CinematicPlayerFv = .text:0x800707F0; // type:function size:0x574 scope:global align:4 +addLights__15CinematicPlayerFR8Graphics = .text:0x80070D64; // type:function size:0xC4 scope:global align:4 +refresh__15CinematicPlayerFR8Graphics = .text:0x80070E28; // type:function size:0xA8 scope:global align:4 +addInstance__8SceneCutFPc = .text:0x80070ED0; // type:function size:0x190 scope:global align:4 +exitInstance__13ActorInstanceFv = .text:0x80071060; // type:function size:0xC4 scope:global align:4 +initInstance__13ActorInstanceFv = .text:0x80071124; // type:function size:0x1BC scope:global align:4 +checkEventKeys__13ActorInstanceFffR8Vector3f = .text:0x800712E0; // type:function size:0xDCC scope:global align:4 +refresh__13ActorInstanceFR8Matrix4fR8GraphicsPf = .text:0x800720AC; // type:function size:0xF10 scope:global align:4 +__ct__8Vector3fFRC8Vector3f = .text:0x80072FBC; // type:function size:0x1C scope:weak align:4 +demoDraw__8CreatureFR8GraphicsP8Matrix4f = .text:0x80072FD8; // type:function size:0x4 scope:weak align:4 +__ct__9LightPoolFv = .text:0x80072FDC; // type:function size:0x16C scope:global align:4 +draw__9LightPoolFR8Graphics = .text:0x80073148; // type:function size:0x5F8 scope:global align:4 +getOptionsOffset__10MemoryCardFi = .text:0x80073740; // type:function size:0xC scope:global align:4 +getGameFileOffset__10MemoryCardFi = .text:0x8007374C; // type:function size:0xC scope:global align:4 +calcChecksum__10MemoryCardFPvUl = .text:0x80073758; // type:function size:0x17C scope:global align:4 +hasCardFinished__10MemoryCardFv = .text:0x800738D4; // type:function size:0x70 scope:global align:4 +attemptFormatCard__10MemoryCardFi = .text:0x80073944; // type:function size:0x134 scope:global align:4 +waitWhileBusy__10MemoryCardFi = .text:0x80073A78; // type:function size:0x38 scope:global align:4 +getCardStatus__10MemoryCardFi = .text:0x80073AB0; // type:function size:0x1BC scope:global align:4 +checkUseFile__10MemoryCardFv = .text:0x80073C6C; // type:function size:0x13C scope:global align:4 +getMemoryCardState__10MemoryCardFb = .text:0x80073DA8; // type:function size:0x174 scope:global align:4 +loadCurrentFile__10MemoryCardFv = .text:0x80073F1C; // type:function size:0xB0 scope:global align:4 +getNewestOptionsIndex__10MemoryCardFv = .text:0x80073FCC; // type:function size:0x1DC scope:global align:4 +loadOptions__10MemoryCardFv = .text:0x800741A8; // type:function size:0xA4 scope:global align:4 +saveOptions__10MemoryCardFv = .text:0x8007424C; // type:function size:0xD4 scope:global align:4 +loadCurrentGame__10MemoryCardFv = .text:0x80074320; // type:function size:0xAC scope:global align:4 +saveCurrentGame__10MemoryCardFv = .text:0x800743CC; // type:function size:0x424 scope:global align:4 +writeCurrentGame__10MemoryCardFP18RandomAccessStreamR9PlayState = .text:0x800747F0; // type:function size:0x128 scope:global align:4 +readCurrentGame__10MemoryCardFP18RandomAccessStream = .text:0x80074918; // type:function size:0x70 scope:global align:4 +initBannerArea__10MemoryCardFR8CARDStatPc = .text:0x80074988; // type:function size:0x3B0 scope:global align:4 +initOptionsArea__10MemoryCardFi = .text:0x80074D38; // type:function size:0x210 scope:global align:4 +makeDefaultFile__10MemoryCardFv = .text:0x80074F48; // type:function size:0x414 scope:global align:4 +__ct__6StreamFv = .text:0x8007535C; // type:function size:0x10 scope:weak align:4 +copyFile__10MemoryCardFR13CardQuickInfoR13CardQuickInfo = .text:0x8007536C; // type:function size:0x314 scope:global align:4 +delFile__10MemoryCardFR13CardQuickInfo = .text:0x80075680; // type:function size:0x454 scope:global align:4 +doFormatCard__10MemoryCardFv = .text:0x80075AD4; // type:function size:0x6C scope:global align:4 +isCardInserted__10MemoryCardFv = .text:0x80075B40; // type:function size:0x34 scope:global align:4 +hasCardChanged__10MemoryCardFv = .text:0x80075B74; // type:function size:0x22C scope:global align:4 +getOkSections__10MemoryCardFv = .text:0x80075DA0; // type:function size:0x574 scope:global align:4 +isFileBroken__10MemoryCardFv = .text:0x80076314; // type:function size:0xA0 scope:global align:4 +repairFile__10MemoryCardFv = .text:0x800763B4; // type:function size:0x52C scope:global align:4 +didSaveFail__10MemoryCardFv = .text:0x800768E0; // type:function size:0x40 scope:global align:4 +getQuickInfos__10MemoryCardFP13CardQuickInfo = .text:0x80076920; // type:function size:0x398 scope:global align:4 +init__10MemoryCardFv = .text:0x80076CB8; // type:function size:0x34 scope:global align:4 +__ct__11MoviePlayerFv = .text:0x80076CEC; // type:function size:0xBC scope:global align:4 +resetMovieList__11MoviePlayerFv = .text:0x80076DA8; // type:function size:0xE0 scope:global align:4 +fixMovieList__11MoviePlayerFv = .text:0x80076E88; // type:function size:0x90 scope:global align:4 +initMovie__11MoviePlayerFP9MovieInfoi = .text:0x80076F18; // type:function size:0x100 scope:global align:4 +startMovie__11MoviePlayerFiiP8CreatureP8Vector3fP8Vector3fUlb = .text:0x80077018; // type:function size:0x49C scope:global align:4 +sndStartMovie__11MoviePlayerFP9MovieInfo = .text:0x800774B4; // type:function size:0x104 scope:global align:4 +initMovieFlags__11MoviePlayerFP9MovieInfo = .text:0x800775B8; // type:function size:0x124 scope:global align:4 +sndStopMovie__11MoviePlayerFP9MovieInfo = .text:0x800776DC; // type:function size:0x64 scope:global align:4 +update__11MoviePlayerFv = .text:0x80077740; // type:function size:0x3CC scope:global align:4 +skipScene__11MoviePlayerFi = .text:0x80077B0C; // type:function size:0xAC scope:global align:4 +getLookAtPos__11MoviePlayerFR8Vector3f = .text:0x80077BB8; // type:function size:0x1C scope:global align:4 +setCamera__11MoviePlayerFR8Graphics = .text:0x80077BD4; // type:function size:0x100 scope:global align:4 +addLights__11MoviePlayerFR8Graphics = .text:0x80077CD4; // type:function size:0x60 scope:global align:4 +refresh__11MoviePlayerFR8Graphics = .text:0x80077D34; // type:function size:0x74 scope:global align:4 +convHVQM4TexY8UV8__FiiPUcPUc = .text:0x80077DA8; // type:function size:0x3F0 scope:global align:4 +playbackFunc__FPv = .text:0x80078198; // type:function size:0x34 scope:local align:4 +init__16MovSampleSectionFv = .text:0x800781CC; // type:function size:0x258 scope:global align:4 +update__21MovSampleSetupSectionFv = .text:0x80078424; // type:function size:0x14C scope:weak align:4 +draw__21MovSampleSetupSectionFR8Graphics = .text:0x80078570; // type:function size:0x6F8 scope:weak align:4 +__ct__15AttentionCameraFv = .text:0x80078C68; // type:function size:0x1E8 scope:global align:4 +reset__10ClothFaderFv = .text:0x80078E50; // type:function size:0x49C scope:weak align:4 +__ct__Q210ClothFader8ParticleFv = .text:0x800792EC; // type:function size:0x2C scope:weak align:4 +initFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079318; // type:function size:0x4 scope:weak align:4 +finish__15AttentionCameraFv = .text:0x8007931C; // type:function size:0x50 scope:global align:4 +update__15AttentionCameraFv = .text:0x8007936C; // type:function size:0xF0 scope:global align:4 +updateFadeIn__Q215AttentionCamera5FaderFv = .text:0x8007945C; // type:function size:0x8 scope:weak align:4 +initFadeIn__Q215AttentionCamera5FaderFv = .text:0x80079464; // type:function size:0x4 scope:weak align:4 +updateFadeOut__Q215AttentionCamera5FaderFv = .text:0x80079468; // type:function size:0x8 scope:weak align:4 +refresh__15AttentionCameraFR8Graphics = .text:0x80079470; // type:function size:0x5C scope:global align:4 +drawFadeIn__Q215AttentionCamera5FaderFR8Graphics = .text:0x800794CC; // type:function size:0x4 scope:weak align:4 +drawFadeOut__Q215AttentionCamera5FaderFR8Graphics = .text:0x800794D0; // type:function size:0x4 scope:weak align:4 +initFadeIn__10ClothFaderFv = .text:0x800794D4; // type:function size:0x288 scope:weak align:4 +makeSprings__10ClothFaderFv = .text:0x8007975C; // type:function size:0x3C8 scope:weak align:4 +initFadeOut__10ClothFaderFv = .text:0x80079B24; // type:function size:0x288 scope:weak align:4 +updateFadeIn__10ClothFaderFv = .text:0x80079DAC; // type:function size:0x410 scope:weak align:4 +updateFadeOut__10ClothFaderFv = .text:0x8007A1BC; // type:function size:0x410 scope:weak align:4 +drawFadeOut__10ClothFaderFR8Graphics = .text:0x8007A5CC; // type:function size:0x338 scope:weak align:4 +drawFadeIn__10ClothFaderFR8Graphics = .text:0x8007A904; // type:function size:0x338 scope:weak align:4 +initFadeIn__11SimpleFaderFv = .text:0x8007AC3C; // type:function size:0x14 scope:weak align:4 +initFadeOut__11SimpleFaderFv = .text:0x8007AC50; // type:function size:0x14 scope:weak align:4 +updateFadeIn__11SimpleFaderFv = .text:0x8007AC64; // type:function size:0x3C scope:weak align:4 +updateFadeOut__11SimpleFaderFv = .text:0x8007ACA0; // type:function size:0x3C scope:weak align:4 +drawFadeOut__11SimpleFaderFR8Graphics = .text:0x8007ACDC; // type:function size:0x188 scope:weak align:4 +drawFadeIn__11SimpleFaderFR8Graphics = .text:0x8007AE64; // type:function size:0x180 scope:weak align:4 +initFadeIn__12DefaultFaderFv = .text:0x8007AFE4; // type:function size:0x14 scope:weak align:4 +updateFadeIn__12DefaultFaderFv = .text:0x8007AFF8; // type:function size:0x3C scope:weak align:4 +drawFadeOut__12DefaultFaderFR8Graphics = .text:0x8007B034; // type:function size:0x1D0 scope:weak align:4 +initFadeOut__12DefaultFaderFv = .text:0x8007B204; // type:function size:0x14 scope:weak align:4 +updateFadeOut__12DefaultFaderFv = .text:0x8007B218; // type:function size:0x3C scope:weak align:4 +drawFadeIn__12DefaultFaderFR8Graphics = .text:0x8007B254; // type:function size:0x1C8 scope:weak align:4 +__ct__9RadarInfoFv = .text:0x8007B41C; // type:function size:0xC8 scope:global align:4 +attachParts__9RadarInfoFP8Creature = .text:0x8007B4E4; // type:function size:0xE8 scope:global align:4 +detachParts__9RadarInfoFP8Creature = .text:0x8007B5CC; // type:function size:0x70 scope:global align:4 +getPos__Q29RadarInfo9PartsInfoFv = .text:0x8007B63C; // type:function size:0x44 scope:global align:4 +actPiki__12InteractBombFP4Piki = .text:0x8007B680; // type:function size:0x1A0 scope:global align:4 +actPiki__12InteractBuryFP4Piki = .text:0x8007B820; // type:function size:0xC0 scope:global align:4 +actPiki__17InteractThrowAwayFP4Piki = .text:0x8007B8E0; // type:function size:0x6C scope:global align:4 +actPiki__19InteractChangeColorFP4Piki = .text:0x8007B94C; // type:function size:0x80 scope:global align:4 +changeShape__4PikiFi = .text:0x8007B9CC; // type:function size:0x4 scope:weak align:4 +actPiki__19InteractChangeHappaFP4Piki = .text:0x8007B9D0; // type:function size:0x74 scope:global align:4 +setFlower__4PikiFi = .text:0x8007BA44; // type:function size:0x4 scope:weak align:4 +actPiki__13InteractSporeFP4Piki = .text:0x8007BA48; // type:function size:0x120 scope:global align:4 +actPiki__14InteractBubbleFP4Piki = .text:0x8007BB68; // type:function size:0xB4 scope:global align:4 +actPiki__12InteractFireFP4Piki = .text:0x8007BC1C; // type:function size:0x7C scope:global align:4 +actCommon__12InteractWindFP8Creature = .text:0x8007BC98; // type:function size:0x8 scope:global align:4 +actPiki__12InteractWindFP4Piki = .text:0x8007BCA0; // type:function size:0x108 scope:global align:4 +actCommon__13InteractFlickFP8Creature = .text:0x8007BDA8; // type:function size:0x5C scope:global align:4 +actPiki__13InteractFlickFP4Piki = .text:0x8007BE04; // type:function size:0xEC scope:global align:4 +actCommon__19InteractSlimeAttackFP8Creature = .text:0x8007BEF0; // type:function size:0x8 scope:global align:4 +getDamagePortion__14InteractAttackFv = .text:0x8007BEF8; // type:function size:0x18C scope:global align:4 +actCommon__14InteractAttackFP8Creature = .text:0x8007C084; // type:function size:0x44 scope:global align:4 +isVisible__8CreatureFv = .text:0x8007C0C8; // type:function size:0x8 scope:weak align:4 +actPiki__14InteractAttackFP4Piki = .text:0x8007C0D0; // type:function size:0x188 scope:global align:4 +actCommon__15InteractSwallowFP8Creature = .text:0x8007C258; // type:function size:0x8 scope:global align:4 +actPiki__15InteractSwallowFP4Piki = .text:0x8007C260; // type:function size:0x2F0 scope:global align:4 +satisfy__9ConditionFP8Creature = .text:0x8007C550; // type:function size:0x8 scope:weak align:4 +actPiki__12InteractKillFP4Piki = .text:0x8007C558; // type:function size:0x48 scope:global align:4 +actNavi__12InteractKillFP4Navi = .text:0x8007C5A0; // type:function size:0x2C scope:global align:4 +actPiki__13InteractPressFP4Piki = .text:0x8007C5CC; // type:function size:0x138 scope:global align:4 +actTeki__13InteractFluteFP4Teki = .text:0x8007C704; // type:function size:0x8 scope:global align:4 +actCommon__11InteractionFP8Creature = .text:0x8007C70C; // type:function size:0x8 scope:weak align:4 +actPiki__11InteractionFP4Piki = .text:0x8007C714; // type:function size:0x8 scope:weak align:4 +actNavi__11InteractionFP4Navi = .text:0x8007C71C; // type:function size:0x8 scope:weak align:4 +actBoss__11InteractionFP4Boss = .text:0x8007C724; // type:function size:0x8 scope:weak align:4 +actPellet__11InteractionFP6Pellet = .text:0x8007C72C; // type:function size:0x8 scope:weak align:4 +actHinderRock__11InteractionFP10HinderRock = .text:0x8007C734; // type:function size:0x8 scope:weak align:4 +actBridge__11InteractionFP6Bridge = .text:0x8007C73C; // type:function size:0x8 scope:weak align:4 +actItem__11InteractionFP12ItemCreature = .text:0x8007C744; // type:function size:0x8 scope:weak align:4 +actTeki__11InteractionFP4Teki = .text:0x8007C74C; // type:function size:0x8 scope:weak align:4 +actCommon__12InteractGrabFP8Creature = .text:0x8007C754; // type:function size:0x3C scope:global align:4 +actCommon__15InteractReleaseFP8Creature = .text:0x8007C790; // type:function size:0x120 scope:global align:4 +actPiki__12InteractTalkFP4Piki = .text:0x8007C8B0; // type:function size:0x3C scope:global align:4 +actPiki__12InteractWarnFP4Piki = .text:0x8007C8EC; // type:function size:0x104 scope:global align:4 +actCommon__15InteractPulloutFP8Creature = .text:0x8007C9F0; // type:function size:0x8 scope:global align:4 +actPiki__15InteractPulloutFP4Piki = .text:0x8007C9F8; // type:function size:0x2BC scope:global align:4 +SAIEventInit__Fv = .text:0x8007CCB4; // type:function size:0x15C scope:global align:4 +procAnimMsg__18SAIMotionDoneEventFP10AICreatureP7MsgAnim = .text:0x8007CE10; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionAction0EventFP10AICreatureP7MsgAnim = .text:0x8007CE50; // type:function size:0x40 scope:global align:4 +procAnimMsg__23SAIMotionLoopStartEventFP10AICreatureP7MsgAnim = .text:0x8007CE90; // type:function size:0x40 scope:global align:4 +procAnimMsg__21SAIMotionLoopEndEventFP10AICreatureP7MsgAnim = .text:0x8007CED0; // type:function size:0x40 scope:global align:4 +procBounceMsg__14SAIBounceEventFP10AICreatureP9MsgBounce = .text:0x8007CF10; // type:function size:0x30 scope:global align:4 +procCollideMsg__15SAICollideEventFP10AICreatureP10MsgCollide = .text:0x8007CF40; // type:function size:0x30 scope:global align:4 +procGroundMsg__14SAIGroundEventFP10AICreatureP9MsgGround = .text:0x8007CF70; // type:function size:0x30 scope:global align:4 +procUserMsg__12SAIUserEventFP10AICreatureP7MsgUser = .text:0x8007CFA0; // type:function size:0x40 scope:global align:4 +procBounceMsg__22Receiver<10AICreature>FP10AICreatureP9MsgBounce = .text:0x8007CFE0; // type:function size:0x4 scope:weak align:4 +procStickMsg__22Receiver<10AICreature>FP10AICreatureP8MsgStick = .text:0x8007CFE4; // type:function size:0x4 scope:weak align:4 +procHangMsg__22Receiver<10AICreature>FP10AICreatureP7MsgHang = .text:0x8007CFE8; // type:function size:0x4 scope:weak align:4 +procTargetMsg__22Receiver<10AICreature>FP10AICreatureP9MsgTarget = .text:0x8007CFEC; // type:function size:0x4 scope:weak align:4 +procCollideMsg__22Receiver<10AICreature>FP10AICreatureP10MsgCollide = .text:0x8007CFF0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__22Receiver<10AICreature>FP10AICreatureP7MsgAnim = .text:0x8007CFF4; // type:function size:0x4 scope:weak align:4 +procDamageMsg__22Receiver<10AICreature>FP10AICreatureP9MsgDamage = .text:0x8007CFF8; // type:function size:0x4 scope:weak align:4 +procWallMsg__22Receiver<10AICreature>FP10AICreatureP7MsgWall = .text:0x8007CFFC; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__22Receiver<10AICreature>FP10AICreatureP10MsgOffWall = .text:0x8007D000; // type:function size:0x4 scope:weak align:4 +procUserMsg__22Receiver<10AICreature>FP10AICreatureP7MsgUser = .text:0x8007D004; // type:function size:0x4 scope:weak align:4 +procGroundMsg__22Receiver<10AICreature>FP10AICreatureP9MsgGround = .text:0x8007D008; // type:function size:0x4 scope:weak align:4 +procMsg__22Receiver<10AICreature>FP10AICreatureP3Msg = .text:0x8007D00C; // type:function size:0x118 scope:weak align:4 +__ct__10AICreatureFP12CreatureProp = .text:0x8007D124; // type:function size:0xA4 scope:global align:4 +collisionCallback__10AICreatureFR9CollEvent = .text:0x8007D1C8; // type:function size:0x6C scope:global align:4 +bounceCallback__10AICreatureFv = .text:0x8007D234; // type:function size:0x60 scope:global align:4 +animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007D294; // type:function size:0xB4 scope:global align:4 +playEffect__10AICreatureFi = .text:0x8007D348; // type:function size:0x4 scope:weak align:4 +playSound__10AICreatureFi = .text:0x8007D34C; // type:function size:0x4 scope:weak align:4 +clearEventFlags__10AICreatureFv = .text:0x8007D350; // type:function size:0x30 scope:global align:4 +setEventFlag__10AICreatureFib = .text:0x8007D380; // type:function size:0x1C scope:global align:4 +__ct__8SimpleAIFv = .text:0x8007D39C; // type:function size:0x24 scope:global align:4 +procMsg__8SimpleAIFP10AICreatureP3Msg = .text:0x8007D3C0; // type:function size:0x68 scope:global align:4 +getCurrState__10AICreatureFv = .text:0x8007D428; // type:function size:0x8 scope:weak align:4 +addState__8SimpleAIFiiP9SAIActionP9SAIActionP9SAIAction = .text:0x8007D430; // type:function size:0xE8 scope:global align:4 +addArrow__8SimpleAIFiP8SAIEventi = .text:0x8007D518; // type:function size:0xF8 scope:global align:4 +start__8SimpleAIFP10AICreaturei = .text:0x8007D610; // type:function size:0x2C scope:global align:4 +transit__26StateMachine<10AICreature>FP10AICreaturei = .text:0x8007D63C; // type:function size:0xD8 scope:weak align:4 +init__20AState<10AICreature>FP10AICreature = .text:0x8007D714; // type:function size:0x4 scope:weak align:4 +setCurrState__10AICreatureFP20AState<10AICreature> = .text:0x8007D718; // type:function size:0x8 scope:weak align:4 +cleanup__20AState<10AICreature>FP10AICreature = .text:0x8007D720; // type:function size:0x4 scope:weak align:4 +exec__8SimpleAIFP10AICreature = .text:0x8007D724; // type:function size:0x7C scope:global align:4 +checkEvent__8SimpleAIFP10AICreature = .text:0x8007D7A0; // type:function size:0xF8 scope:global align:4 +satisfy__12SAIConditionFP10AICreature = .text:0x8007D898; // type:function size:0x8 scope:weak align:4 +__ct__8SAIStateFi = .text:0x8007D8A0; // type:function size:0x10C scope:global align:4 +init__8SAIStateFP10AICreature = .text:0x8007D9AC; // type:function size:0xA4 scope:global align:4 +startMotion__10AICreatureFi = .text:0x8007DA50; // type:function size:0x4 scope:weak align:4 +exec__8SAIStateFP10AICreature = .text:0x8007DA54; // type:function size:0x74 scope:global align:4 +procMsg__8SAIStateFP10AICreatureP3Msg = .text:0x8007DAC8; // type:function size:0xA0 scope:global align:4 +cleanup__8SAIStateFP10AICreature = .text:0x8007DB68; // type:function size:0x38 scope:global align:4 +startMotion__10AICreatureFif = .text:0x8007DBA0; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFf = .text:0x8007DBA4; // type:function size:0x4 scope:weak align:4 +finishMotion__10AICreatureFv = .text:0x8007DBA8; // type:function size:0x4 scope:weak align:4 +getCurrentMotionName__10AICreatureFv = .text:0x8007DBAC; // type:function size:0x8 scope:weak align:4 +getCurrentMotionCounter__10AICreatureFv = .text:0x8007DBB4; // type:function size:0x8 scope:weak align:4 +getMotionSpeed__10AICreatureFv = .text:0x8007DBBC; // type:function size:0x8 scope:weak align:4 +setMotionSpeed__10AICreatureFf = .text:0x8007DBC4; // type:function size:0x4 scope:weak align:4 +stopMotion__10AICreatureFv = .text:0x8007DBC8; // type:function size:0x4 scope:weak align:4 +insideSafeArea__8CreatureFR8Vector3f = .text:0x8007DBCC; // type:function size:0x8 scope:weak align:4 +platAttachable__8CreatureFv = .text:0x8007DBD4; // type:function size:0x8 scope:weak align:4 +doDoAI__8CreatureFv = .text:0x8007DBDC; // type:function size:0x8 scope:weak align:4 +setRouteTracer__8CreatureFP11RouteTracer = .text:0x8007DBE4; // type:function size:0x4 scope:weak align:4 +initParam__8CreatureFi = .text:0x8007DBE8; // type:function size:0x4 scope:weak align:4 +startAI__8CreatureFi = .text:0x8007DBEC; // type:function size:0x4 scope:weak align:4 +getiMass__8CreatureFv = .text:0x8007DBF0; // type:function size:0x8 scope:weak align:4 +getSize__8CreatureFv = .text:0x8007DBF8; // type:function size:0x8 scope:weak align:4 +getHeight__8CreatureFv = .text:0x8007DC00; // type:function size:0x8 scope:weak align:4 +getCylinderHeight__8CreatureFv = .text:0x8007DC08; // type:function size:0x8 scope:weak align:4 +doStore__8CreatureFP11CreatureInf = .text:0x8007DC10; // type:function size:0x4 scope:weak align:4 +doRestore__8CreatureFP11CreatureInf = .text:0x8007DC14; // type:function size:0x4 scope:weak align:4 +doSave__8CreatureFR18RandomAccessStream = .text:0x8007DC18; // type:function size:0x4 scope:weak align:4 +doLoad__8CreatureFR18RandomAccessStream = .text:0x8007DC1C; // type:function size:0x4 scope:weak align:4 +getShadowPos__8CreatureFv = .text:0x8007DC20; // type:function size:0x1C scope:weak align:4 +setCentre__8CreatureFR8Vector3f = .text:0x8007DC3C; // type:function size:0x1C scope:weak align:4 +isOrganic__8CreatureFv = .text:0x8007DC58; // type:function size:0x8 scope:weak align:4 +isBuried__8CreatureFv = .text:0x8007DC60; // type:function size:0x8 scope:weak align:4 +isAtari__8CreatureFv = .text:0x8007DC68; // type:function size:0x8 scope:weak align:4 +isAlive__8CreatureFv = .text:0x8007DC70; // type:function size:0x18 scope:weak align:4 +isFixed__8CreatureFv = .text:0x8007DC88; // type:function size:0x8 scope:weak align:4 +needFlick__8CreatureFP8Creature = .text:0x8007DC90; // type:function size:0x8 scope:weak align:4 +ignoreAtari__8CreatureFP8Creature = .text:0x8007DC98; // type:function size:0x8 scope:weak align:4 +isFree__8CreatureFv = .text:0x8007DCA0; // type:function size:0x18 scope:weak align:4 +sendMsg__8CreatureFP3Msg = .text:0x8007DCB8; // type:function size:0x4 scope:weak align:4 +jumpCallback__8CreatureFv = .text:0x8007DCBC; // type:function size:0x4 scope:weak align:4 +offwallCallback__8CreatureFP13DynCollObject = .text:0x8007DCC0; // type:function size:0x4 scope:weak align:4 +stickCallback__8CreatureFP8Creature = .text:0x8007DCC4; // type:function size:0x4 scope:weak align:4 +offstickCallback__8CreatureFP8Creature = .text:0x8007DCC8; // type:function size:0x4 scope:weak align:4 +stickToCallback__8CreatureFP8Creature = .text:0x8007DCCC; // type:function size:0x4 scope:weak align:4 +dump__8CreatureFv = .text:0x8007DCD0; // type:function size:0x4 scope:weak align:4 +startWaterEffect__8CreatureFv = .text:0x8007DCD4; // type:function size:0x4 scope:weak align:4 +finishWaterEffect__8CreatureFv = .text:0x8007DCD8; // type:function size:0x4 scope:weak align:4 +isRopable__8CreatureFv = .text:0x8007DCDC; // type:function size:0x8 scope:weak align:4 +mayIstick__8CreatureFv = .text:0x8007DCE4; // type:function size:0x8 scope:weak align:4 +getFormationPri__8CreatureFv = .text:0x8007DCEC; // type:function size:0x8 scope:weak align:4 +refresh2d__8CreatureFR8Graphics = .text:0x8007DCF4; // type:function size:0x4 scope:weak align:4 +doAI__8CreatureFv = .text:0x8007DCF8; // type:function size:0x4 scope:weak align:4 +doAnimation__8CreatureFv = .text:0x8007DCFC; // type:function size:0x4 scope:weak align:4 +exitCourse__8CreatureFv = .text:0x8007DD00; // type:function size:0x4 scope:weak align:4 +addCntCallback__12RefCountableFv = .text:0x8007DD04; // type:function size:0x4 scope:weak align:4 +subCntCallback__12RefCountableFv = .text:0x8007DD08; // type:function size:0x4 scope:weak align:4 +exec__20AState<10AICreature>FP10AICreature = .text:0x8007DD0C; // type:function size:0x4 scope:weak align:4 +resume__20AState<10AICreature>FP10AICreature = .text:0x8007DD10; // type:function size:0x4 scope:weak align:4 +restart__20AState<10AICreature>FP10AICreature = .text:0x8007DD14; // type:function size:0x4 scope:weak align:4 +transit__20AState<10AICreature>FP10AICreaturei = .text:0x8007DD18; // type:function size:0x30 scope:weak align:4 +init__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DD48; // type:function size:0x4 scope:weak align:4 +exec__26StateMachine<10AICreature>FP10AICreature = .text:0x8007DD4C; // type:function size:0x58 scope:weak align:4 +procMsg__26StateMachine<10AICreature>FP10AICreatureP3Msg = .text:0x8007DDA4; // type:function size:0x68 scope:weak align:4 +@696@animationKeyUpdated__10AICreatureFR16PaniAnimKeyEvent = .text:0x8007DE0C; // type:function size:0x8 scope:weak align:4 +getCreature__12FormationMgrFi = .text:0x8007DE14; // type:function size:0x10 scope:global align:4 +getFirst__12FormationMgrFv = .text:0x8007DE24; // type:function size:0x8 scope:global align:4 +getNext__12FormationMgrFi = .text:0x8007DE2C; // type:function size:0x8 scope:global align:4 +isDone__12FormationMgrFi = .text:0x8007DE34; // type:function size:0x1C scope:global align:4 +getPos__9FormPointFv = .text:0x8007DE50; // type:function size:0xE0 scope:global align:4 +getLastCentre__12FormationMgrFv = .text:0x8007DF30; // type:function size:0xA8 scope:global align:4 +getLength__12FormArrangerFP12FormationMgr = .text:0x8007DFD8; // type:function size:0x8 scope:weak align:4 +getFormPoint__12FormationMgrFP8Creature = .text:0x8007DFE0; // type:function size:0x1E4 scope:global align:4 +slide__12FormationMgrFP8Creaturei = .text:0x8007E1C4; // type:function size:0x1F4 scope:global align:4 +exit__12FormationMgrFP8Creature = .text:0x8007E3B8; // type:function size:0x1A0 scope:global align:4 +arrange__14CircleArrangerFP12FormationMgr = .text:0x8007E558; // type:function size:0x300 scope:global align:4 +arrange__15PyramidArrangerFP12FormationMgr = .text:0x8007E858; // type:function size:0x2B8 scope:global align:4 +getLength__15PyramidArrangerFP12FormationMgr = .text:0x8007EB10; // type:function size:0xEC scope:global align:4 +arrange__12LineArrangerFP12FormationMgr = .text:0x8007EBFC; // type:function size:0x26C scope:global align:4 +arrange__12WingArrangerFP12FormationMgr = .text:0x8007EE68; // type:function size:0x2FC scope:global align:4 +getFrameTime__6SystemFv = .text:0x8007F164; // type:function size:0x8 scope:weak align:4 +exitCourse__11GlobalShapeFv = .text:0x8007F16C; // type:function size:0x20 scope:global align:4 +init__11GlobalShapeFv = .text:0x8007F18C; // type:function size:0xE4 scope:global align:4 +isEnding__11PlayerStateFv = .text:0x8007F270; // type:function size:0x58 scope:global align:4 +existUfoParts__11PlayerStateFUl = .text:0x8007F2C8; // type:function size:0x19C scope:global align:4 +initGame__11PlayerStateFv = .text:0x8007F464; // type:function size:0x1CC scope:global align:4 +__ct__11PlayerStateFv = .text:0x8007F630; // type:function size:0x330 scope:global align:4 +set__Q29TimeGraph7PikiNumFii = .text:0x8007F960; // type:function size:0x2C scope:weak align:4 +__ct__Q211PlayerState8UfoPartsFv = .text:0x8007F98C; // type:function size:0x70 scope:weak align:4 +courseOpen__11PlayerStateFi = .text:0x8007F9FC; // type:function size:0x40 scope:global align:4 +happyEndable__11PlayerStateFv = .text:0x8007FA3C; // type:function size:0x1C scope:global align:4 +setChallengeMode__11PlayerStateFv = .text:0x8007FA58; // type:function size:0x74 scope:global align:4 +getPartsGetCount__11PlayerStateFi = .text:0x8007FACC; // type:function size:0xC scope:global align:4 +getCardUfoPartsCount__11PlayerStateFv = .text:0x8007FAD8; // type:function size:0x8 scope:global align:4 +getTotalPikiCount__11PlayerStateFi = .text:0x8007FAE0; // type:function size:0x84 scope:global align:4 +saveCard__11PlayerStateFR18RandomAccessStream = .text:0x8007FB64; // type:function size:0x3FC scope:global align:4 +loadCard__11PlayerStateFR18RandomAccessStream = .text:0x8007FF60; // type:function size:0x3CC scope:global align:4 +isTutorial__11PlayerStateFv = .text:0x8008032C; // type:function size:0x44 scope:global align:4 +isGameCourse__11PlayerStateFv = .text:0x80080370; // type:function size:0x2C scope:global align:4 +checkLimitGenFlag__11PlayerStateFi = .text:0x8008039C; // type:function size:0x68 scope:global align:4 +setLimitGenFlag__11PlayerStateFi = .text:0x80080404; // type:function size:0x80 scope:global align:4 +displayPikiCount__11PlayerStateFi = .text:0x80080484; // type:function size:0x20 scope:global align:4 +setDisplayPikiCount__11PlayerStateFi = .text:0x800804A4; // type:function size:0x18 scope:global align:4 +hasUfoParts__11PlayerStateFUl = .text:0x800804BC; // type:function size:0x5C scope:global align:4 +update__11PlayerStateFv = .text:0x80080518; // type:function size:0xE4 scope:global align:4 +initCourse__11PlayerStateFv = .text:0x800805FC; // type:function size:0x1B0 scope:global align:4 +exitCourse__11PlayerStateFv = .text:0x800807AC; // type:function size:0xD0 scope:global align:4 +setNavi__11PlayerStateFb = .text:0x8008087C; // type:function size:0x94 scope:global align:4 +getFinalDeadPikis__11PlayerStateFv = .text:0x80080910; // type:function size:0x8 scope:global align:4 +updateFinalResult__11PlayerStateFv = .text:0x80080918; // type:function size:0x150 scope:global align:4 +getCurrDay__11PlayerStateFv = .text:0x80080A68; // type:function size:0x14 scope:global align:4 +getTotalDays__11PlayerStateFv = .text:0x80080A7C; // type:function size:0x8 scope:global align:4 +getStartHour__11PlayerStateFv = .text:0x80080A84; // type:function size:0x28 scope:global align:4 +getEndHour__11PlayerStateFv = .text:0x80080AAC; // type:function size:0x28 scope:global align:4 +getPikiHourCount__11PlayerStateFii = .text:0x80080AD4; // type:function size:0x4C scope:global align:4 +getTotalParts__11PlayerStateFv = .text:0x80080B20; // type:function size:0x8 scope:global align:4 +getCurrParts__11PlayerStateFv = .text:0x80080B28; // type:function size:0x8 scope:global align:4 +isUfoBroken__11PlayerStateFv = .text:0x80080B30; // type:function size:0x50 scope:global align:4 +registerUfoParts__11PlayerStateFiUlUl = .text:0x80080B80; // type:function size:0xC4 scope:global align:4 +initAnim__Q211PlayerState8UfoPartsFP17PelletShapeObject = .text:0x80080C44; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__Q211PlayerState8UfoPartsFR16PaniAnimKeyEvent = .text:0x80080CB8; // type:function size:0x1F0 scope:global align:4 +ufoAssignStart__11PlayerStateFv = .text:0x80080EA8; // type:function size:0xD0 scope:global align:4 +startSpecialMotions__11PlayerStateFv = .text:0x80080F78; // type:function size:0x84 scope:global align:4 +startAfterMotions__11PlayerStateFv = .text:0x80080FFC; // type:function size:0xC8 scope:global align:4 +startUfoPartsMotion__11PlayerStateFUlib = .text:0x800810C4; // type:function size:0x10C scope:global align:4 +getUfoParts__11PlayerStateFUlb = .text:0x800811D0; // type:function size:0x458 scope:global align:4 +getNextPowerupNumber__11PlayerStateFv = .text:0x80081628; // type:function size:0x58 scope:global align:4 +preloadHenkaMovie__11PlayerStateFv = .text:0x80081680; // type:function size:0x100 scope:global align:4 +findUfoParts__11PlayerStateFUl = .text:0x80081780; // type:function size:0x4C scope:global align:4 +renderParts__11PlayerStateFR8GraphicsP5Shape = .text:0x800817CC; // type:function size:0x2FC scope:global align:4 +__ct__9DemoFlagsFv = .text:0x80081AC8; // type:function size:0x5F4 scope:global align:4 +initGame__9DemoFlagsFv = .text:0x800820BC; // type:function size:0x58 scope:global align:4 +initCourse__9DemoFlagsFv = .text:0x80082114; // type:function size:0x14 scope:global align:4 +update__9DemoFlagsFv = .text:0x80082128; // type:function size:0xF8 scope:global align:4 +saveCard__9DemoFlagsFR18RandomAccessStream = .text:0x80082220; // type:function size:0x70 scope:global align:4 +loadCard__9DemoFlagsFR18RandomAccessStream = .text:0x80082290; // type:function size:0x70 scope:global align:4 +registerDemoFlag__9DemoFlagsFiPcUsUsb = .text:0x80082300; // type:function size:0x7C scope:global align:4 +isFlag__9DemoFlagsFi = .text:0x8008237C; // type:function size:0x30 scope:global align:4 +resetFlag__9DemoFlagsFi = .text:0x800823AC; // type:function size:0x28 scope:global align:4 +setFlag__9DemoFlagsFiP8Creature = .text:0x800823D4; // type:function size:0x234 scope:global align:4 +setFlagOnly__9DemoFlagsFi = .text:0x80082608; // type:function size:0x30 scope:global align:4 +setTimer__9DemoFlagsFfiP8Creature = .text:0x80082638; // type:function size:0x48 scope:global align:4 +resetTimer__9DemoFlagsFv = .text:0x80082680; // type:function size:0x1C scope:global align:4 +getDemoFlag__9DemoFlagsFi = .text:0x8008269C; // type:function size:0x10 scope:global align:4 +read__9DemoParmsFR18RandomAccessStream = .text:0x800826AC; // type:function size:0x24 scope:weak align:4 +demoCheck__4NaviFv = .text:0x800826D0; // type:function size:0x6D8 scope:global align:4 +demoCheck__4PikiFv = .text:0x80082DA8; // type:function size:0x24C scope:global align:4 +__ct__12DemoEventMgrFv = .text:0x80082FF4; // type:function size:0x4 scope:global align:4 +act__12DemoEventMgrFii = .text:0x80082FF8; // type:function size:0x44C scope:global align:4 +__ct__11ResultFlagsFv = .text:0x80083444; // type:function size:0x1BC scope:global align:4 +initGame__11ResultFlagsFv = .text:0x80083600; // type:function size:0x178 scope:global align:4 +saveCard__11ResultFlagsFR18RandomAccessStream = .text:0x80083778; // type:function size:0xA4 scope:global align:4 +loadCard__11ResultFlagsFR18RandomAccessStream = .text:0x8008381C; // type:function size:0x9C scope:global align:4 +setOn__11ResultFlagsFi = .text:0x800838B8; // type:function size:0x50 scope:global align:4 +setSeen__11ResultFlagsFi = .text:0x80083908; // type:function size:0x24 scope:global align:4 +getDayDocument__11ResultFlagsFiRi = .text:0x8008392C; // type:function size:0xA0 scope:global align:4 +getDocument__11ResultFlagsFRi = .text:0x800839CC; // type:function size:0x180 scope:global align:4 +dump__11ResultFlagsFv = .text:0x80083B4C; // type:function size:0x10C scope:global align:4 +getFlag__11ResultFlagsFi = .text:0x80083C58; // type:function size:0x30 scope:global align:4 +setFlag__11ResultFlagsFiUc = .text:0x80083C88; // type:function size:0x90 scope:global align:4 +createInstance__10AIConstantFv = .text:0x80083D18; // type:function size:0x4C scope:global align:4 +__ct__10AIConstantFv = .text:0x80083D64; // type:function size:0x470 scope:global align:4 +read__10AIConstantFR18RandomAccessStream = .text:0x800841D4; // type:function size:0x24 scope:weak align:4 +hioEnumCallback__Fl = .text:0x800841F8; // type:function size:0x10 scope:local align:4 +hioCallback__Fv = .text:0x80084208; // type:function size:0x24 scope:local align:4 +__ct__3KIOFv = .text:0x8008422C; // type:function size:0x5C scope:global align:4 +initialise__3KIOFv = .text:0x80084288; // type:function size:0x74 scope:global align:4 +readMailbox__3KIOFv = .text:0x800842FC; // type:function size:0xDC scope:global align:4 +startWrite__3KIOFiPUci = .text:0x800843D8; // type:function size:0x38 scope:global align:4 +writeHeader__3KIOFv = .text:0x80084410; // type:function size:0x64 scope:global align:4 +set__10KIOContextFiPUci = .text:0x80084474; // type:function size:0x1C scope:global align:4 +write__10KIOContextFv = .text:0x80084490; // type:function size:0xE8 scope:global align:4 +createInstance__9KeyConfigFv = .text:0x80084578; // type:function size:0x4C scope:global align:4 +__ct__9KeyConfigFv = .text:0x800845C4; // type:function size:0x1DC scope:global align:4 +read__9KeyConfigFR18RandomAccessStream = .text:0x800847A0; // type:function size:0xC0 scope:global align:4 +read__Q29KeyConfig3KeyFR18RandomAccessStream = .text:0x80084860; // type:function size:0x40 scope:global align:4 +clearCounts__6AIPerfFv = .text:0x800848A0; // type:function size:0x2C scope:global align:4 +addMenu__6AIPerfFP4Menu = .text:0x800848CC; // type:function size:0xC20 scope:global align:4 +toggleMoveType__6AIPerfFR4Menu = .text:0x800854EC; // type:function size:0x88 scope:global align:4 +toggleGeneratorMode__6AIPerfFR4Menu = .text:0x80085574; // type:function size:0x78 scope:global align:4 +toggleBridge__6AIPerfFR4Menu = .text:0x800855EC; // type:function size:0x78 scope:global align:4 +toggleShowRoute__6AIPerfFR4Menu = .text:0x80085664; // type:function size:0x78 scope:global align:4 +toggleKando__6AIPerfFR4Menu = .text:0x800856DC; // type:function size:0x78 scope:global align:4 +toggleLOD__6AIPerfFR4Menu = .text:0x80085754; // type:function size:0x78 scope:global align:4 +toggleColls__6AIPerfFR4Menu = .text:0x800857CC; // type:function size:0x78 scope:global align:4 +toggleASync__6AIPerfFR4Menu = .text:0x80085844; // type:function size:0x78 scope:global align:4 +toggleInsQuick__6AIPerfFR4Menu = .text:0x800858BC; // type:function size:0x78 scope:global align:4 +toggleSoundDebug__6AIPerfFR4Menu = .text:0x80085934; // type:function size:0x78 scope:global align:4 +toggleCollSort__6AIPerfFR4Menu = .text:0x800859AC; // type:function size:0x78 scope:global align:4 +incOptLevel__6AIPerfFR4Menu = .text:0x80085A24; // type:function size:0x4C scope:global align:4 +decOptLevel__6AIPerfFR4Menu = .text:0x80085A70; // type:function size:0x4C scope:global align:4 +incUfoLevel__6AIPerfFR4Menu = .text:0x80085ABC; // type:function size:0x160 scope:global align:4 +decUfoLevel__6AIPerfFR4Menu = .text:0x80085C1C; // type:function size:0x38 scope:global align:4 +collectPikis__6AIPerfFR4Menu = .text:0x80085C54; // type:function size:0x170 scope:global align:4 +fullfillPiki__6AIPerfFR4Menu = .text:0x80085DC4; // type:function size:0xB8 scope:global align:4 +flowerPiki__6AIPerfFR4Menu = .text:0x80085E7C; // type:function size:0x114 scope:global align:4 +breakSluice__6AIPerfFR4Menu = .text:0x80085F90; // type:function size:0x398 scope:global align:4 +isBridge__10WorkObjectFv = .text:0x80086328; // type:function size:0x8 scope:weak align:4 +invoke__25Delegate1<6AIPerf,R4Menu>FR4Menu = .text:0x80086330; // type:function size:0x30 scope:weak align:4 +makeObjectDebug__Fv = .text:0x80086360; // type:function size:0x12C scope:local align:4 +initialise__14GenObjectDebugFv = .text:0x8008648C; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectDebugFR18RandomAccessStream = .text:0x80086518; // type:function size:0x4 scope:global align:4 +birth__14GenObjectDebugFR9BirthInfo = .text:0x8008651C; // type:function size:0x28 scope:global align:4 +render__9GenObjectFR8GraphicsP9Generator = .text:0x80086544; // type:function size:0x4 scope:weak align:4 +__ct__7MemStatFv = .text:0x80086548; // type:function size:0x80 scope:global align:4 +reset__7MemStatFv = .text:0x800865C8; // type:function size:0x28 scope:global align:4 +start__7MemStatFPc = .text:0x800865F0; // type:function size:0x110 scope:global align:4 +end__7MemStatFPc = .text:0x80086700; // type:function size:0x78 scope:global align:4 +print__7MemStatFv = .text:0x80086778; // type:function size:0x34 scope:global align:4 +getInfo__7MemStatFPc = .text:0x800867AC; // type:function size:0x24 scope:global align:4 +printInfoRec__7MemStatFP7MemInfoi = .text:0x800867D0; // type:function size:0x238 scope:global align:4 +getInfoRec__7MemStatFPcP7MemInfo = .text:0x80086A08; // type:function size:0x174 scope:global align:4 +get2dDist__8CylinderFR8Vector3f = .text:0x80086B7C; // type:function size:0x2DC scope:global align:4 +collide__8CylinderFRC6SphereR8Vector3fRf = .text:0x80086E58; // type:function size:0x3C0 scope:global align:4 +getYRatio__4TubeFf = .text:0x80087218; // type:function size:0x2C scope:global align:4 +collide__4TubeFRC6SphereR8Vector3fRf = .text:0x80087244; // type:function size:0x33C scope:global align:4 +getPosRatio__8CylinderFRC8Vector3f = .text:0x80087580; // type:function size:0xE4 scope:global align:4 +getPosRatio__4TubeFRC8Vector3f = .text:0x80087664; // type:function size:0xE4 scope:global align:4 +getPosGradient__4TubeFR8Vector3ffR8Vector3fR8Vector3f = .text:0x80087748; // type:function size:0x238 scope:global align:4 +setPos__4TubeFf = .text:0x80087980; // type:function size:0xF8 scope:global align:4 +isStickable__8CollPartFv = .text:0x80087A78; // type:function size:0x124 scope:global align:4 +isClimbable__8CollPartFv = .text:0x80087B9C; // type:function size:0x5C scope:global align:4 +isBouncy__8CollPartFv = .text:0x80087BF8; // type:function size:0x50 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80087C48; // type:function size:0x34 scope:global align:4 +getChild__8CollPartFv = .text:0x80087C7C; // type:function size:0x28 scope:global align:4 +getChildAt__8CollPartFi = .text:0x80087CA4; // type:function size:0x5C scope:global align:4 +__ct__8CollPartFv = .text:0x80087D00; // type:function size:0x3C scope:global align:4 +getTypeString__8CollPartFv = .text:0x80087D3C; // type:function size:0x1C scope:global align:4 +getID__8CollPartFv = .text:0x80087D58; // type:function size:0x3C scope:global align:4 +getCode__8CollPartFv = .text:0x80087D94; // type:function size:0x3C scope:global align:4 +getMatrix__8CollPartFv = .text:0x80087DD0; // type:function size:0x164 scope:global align:4 +update__8CollPartFR8Graphicsb = .text:0x80087F34; // type:function size:0x4A4 scope:global align:4 +collide__8CollPartFP8CollPartR8Vector3f = .text:0x800883D8; // type:function size:0x66C scope:global align:4 +makeTube__8CollPartFR4Tube = .text:0x80088A44; // type:function size:0xA4 scope:global align:4 +__ct__8CollInfoFi = .text:0x80088AE8; // type:function size:0xA0 scope:global align:4 +enableStick__8CollInfoFv = .text:0x80088B88; // type:function size:0x34 scope:global align:4 +disableStick__8CollInfoFv = .text:0x80088BBC; // type:function size:0x34 scope:global align:4 +checkCollisionSpecial__8CollInfoFR8Vector3ffP11CndCollPart = .text:0x80088BF0; // type:function size:0x1C0 scope:global align:4 +satisfy__11CndCollPartFP8CollPart = .text:0x80088DB0; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollInfoFP8CreatureR8Vector3f = .text:0x80088DB8; // type:function size:0x28 scope:global align:4 +checkCollisionRec__8CollInfoFP8CreatureiR8Vector3f = .text:0x80088DE0; // type:function size:0x624 scope:global align:4 +div__8Vector3fFf = .text:0x80089404; // type:function size:0x28 scope:weak align:4 +checkCollision__8CollInfoFP8CollInfoPP8CollPartPP8CollPartR8Vector3f = .text:0x8008942C; // type:function size:0x34 scope:global align:4 +checkCollisionRec__8CollInfoFP8CollInfoiiPP8CollPartPP8CollPartR8Vector3f = .text:0x80089460; // type:function size:0x160 scope:global align:4 +getBoundingSphere__8CollInfoFv = .text:0x800895C0; // type:function size:0x8 scope:global align:4 +getSphere__8CollInfoFUl = .text:0x800895C8; // type:function size:0x60 scope:global align:4 +getNearestCollPart__8CollInfoFR8Vector3fUl = .text:0x80089628; // type:function size:0x17C scope:global align:4 +getRandomCollPart__8CollInfoFUl = .text:0x800897A4; // type:function size:0x130 scope:global align:4 +getPlatform__8CollInfoFP13DynCollObject = .text:0x800898D4; // type:function size:0xD0 scope:global align:4 +updateInfo__8CollInfoFR8Graphicsb = .text:0x800899A4; // type:function size:0x64 scope:global align:4 +hasInfo__8CollInfoFv = .text:0x80089A08; // type:function size:0x14 scope:global align:4 +initInfo__8CollInfoFP5ShapeP8CollPartPUl = .text:0x80089A1C; // type:function size:0xA4 scope:global align:4 +makeTubesChild__8CollInfoFUli = .text:0x80089AC0; // type:function size:0xB0 scope:global align:4 +setUpdater__8CollInfoFUlP15CollPartUpdater = .text:0x80089B70; // type:function size:0x78 scope:global align:4 +createPart__8CollInfoFP11ObjCollInfoib = .text:0x80089BE8; // type:function size:0x1BC scope:global align:4 +getId2Index__8CollInfoFUl = .text:0x80089DA4; // type:function size:0x44 scope:global align:4 +makeTree__8CollInfoFv = .text:0x80089DE8; // type:function size:0xF8 scope:global align:4 +__sinit_collInfo_cpp = .text:0x80089EE0; // type:function size:0x4 scope:local align:4 +__ct__19SmartPtr<8Creature>Fv = .text:0x80089EE4; // type:function size:0xC scope:weak align:4 +collisionCallback__8CreatureFR9CollEvent = .text:0x80089EF0; // type:function size:0x4 scope:weak align:4 +bounceCallback__8CreatureFv = .text:0x80089EF4; // type:function size:0x4 scope:weak align:4 +finishFixPosition__8CreatureFv = .text:0x80089EF8; // type:function size:0x10 scope:global align:4 +isTerrible__8CreatureFv = .text:0x80089F08; // type:function size:0x48 scope:global align:4 +load__8CreatureFR18RandomAccessStreamb = .text:0x80089F50; // type:function size:0xD8 scope:global align:4 +save__8CreatureFR18RandomAccessStreamb = .text:0x8008A028; // type:function size:0xD8 scope:global align:4 +getCollidePlatformCreature__8CreatureFv = .text:0x8008A100; // type:function size:0x1C scope:global align:4 +getCollidePlatformNormal__8CreatureFv = .text:0x8008A11C; // type:function size:0x44 scope:global align:4 +isBoss__8CreatureFv = .text:0x8008A160; // type:function size:0x24 scope:global align:4 +enableStick__8CreatureFv = .text:0x8008A184; // type:function size:0x48 scope:global align:4 +disableStick__8CreatureFv = .text:0x8008A1CC; // type:function size:0x48 scope:global align:4 +getNearestCollPart__8CreatureFR8Vector3fUl = .text:0x8008A214; // type:function size:0x70 scope:global align:4 +getRandomCollPart__8CreatureFUl = .text:0x8008A284; // type:function size:0x60 scope:global align:4 +getBoundingSphereCentre__8CreatureFv = .text:0x8008A2E4; // type:function size:0xD8 scope:global align:4 +getBoundingSphereRadius__8CreatureFv = .text:0x8008A3BC; // type:function size:0xB0 scope:global align:4 +playEventSound__8CreatureFP8Creaturei = .text:0x8008A46C; // type:function size:0x38 scope:global align:4 +stopEventSound__8CreatureFP8Creaturei = .text:0x8008A4A4; // type:function size:0x38 scope:global align:4 +getCentre__8CreatureFv = .text:0x8008A4DC; // type:function size:0xF4 scope:global align:4 +getCentreSize__8CreatureFv = .text:0x8008A5D0; // type:function size:0x74 scope:global align:4 +getStandType__8CreatureFv = .text:0x8008A644; // type:function size:0x6C scope:global align:4 +__ct__10SearchDataFv = .text:0x8008A6B0; // type:function size:0x5C scope:global align:4 +getGeneratorID__8CreatureFv = .text:0x8008A70C; // type:function size:0x20 scope:global align:4 +stimulate__8CreatureFR11Interaction = .text:0x8008A72C; // type:function size:0x28 scope:global align:4 +setStateGrabbed__8CreatureFP8Creature = .text:0x8008A754; // type:function size:0x138 scope:global align:4 +resetStateGrabbed__8CreatureFv = .text:0x8008A88C; // type:function size:0x68 scope:global align:4 +turnTo__8CreatureFR8Vector3f = .text:0x8008A8F4; // type:function size:0x48 scope:global align:4 +init__8CreatureFv = .text:0x8008A93C; // type:function size:0x180 scope:global align:4 +init__8CreatureFR8Vector3f = .text:0x8008AABC; // type:function size:0x64 scope:global align:4 +resetPosition__8CreatureFR8Vector3f = .text:0x8008AB20; // type:function size:0x34 scope:global align:4 +detachGenerator__8CreatureFv = .text:0x8008AB54; // type:function size:0x44 scope:global align:4 +kill__8CreatureFb = .text:0x8008AB98; // type:function size:0x1F8 scope:global align:4 +__ct__8CreatureFP12CreatureProp = .text:0x8008AD90; // type:function size:0x2C0 scope:global align:4 +updateStatic__8CreatureFv = .text:0x8008B050; // type:function size:0x70 scope:global align:4 +update__8CreatureFv = .text:0x8008B0C0; // type:function size:0x580 scope:global align:4 +postUpdate__8CreatureFif = .text:0x8008B640; // type:function size:0x1F4 scope:global align:4 +updateAI__8CreatureFv = .text:0x8008B834; // type:function size:0xB4 scope:global align:4 +centreDist__FP8CreatureP8Creature = .text:0x8008B8E8; // type:function size:0xF0 scope:global align:4 +sphereDist__FP8CreatureP8Creature = .text:0x8008B9D8; // type:function size:0x11C scope:global align:4 +collisionCheck__8CreatureFf = .text:0x8008BAF4; // type:function size:0x6E8 scope:global align:4 +getCatchPos__8CreatureFP8Creature = .text:0x8008C1DC; // type:function size:0xA0 scope:global align:4 +needShadow__8CreatureFv = .text:0x8008C27C; // type:function size:0x8 scope:global align:4 +getShadowSize__8CreatureFv = .text:0x8008C284; // type:function size:0x40 scope:global align:4 +recTraceShadowTris__FR8GraphicsR8Vector3fP11CollTriInfo = .text:0x8008C2C4; // type:function size:0x2B4 scope:local align:4 +drawShadow__8CreatureFR8Graphics = .text:0x8008C578; // type:function size:0x7BC scope:global align:4 +qdist2__FP8CreatureP8Creature = .text:0x8008CD34; // type:function size:0x94 scope:global align:4 +circleDist__FP8CreatureP8Creature = .text:0x8008CDC8; // type:function size:0xEC scope:global align:4 +moveVelocity__8CreatureFv = .text:0x8008CEB4; // type:function size:0x540 scope:global align:4 +getAvoid__8CreatureFR8Vector3fR8Vector3f = .text:0x8008D3F4; // type:function size:0x8 scope:global align:4 +renderAtari__8CreatureFR8Graphics = .text:0x8008D3FC; // type:function size:0x34C scope:global align:4 +roughCull__FP8CreatureP8Creaturef = .text:0x8008D748; // type:function size:0x54 scope:global align:4 +stickUpdate__8CreatureFv = .text:0x8008D79C; // type:function size:0x70 scope:global align:4 +respondColl__8CreatureFP8CreaturefP8CollPartP8CollPartRC8Vector3f = .text:0x8008D80C; // type:function size:0x768 scope:global align:4 +touchCallback__16CreatureCollPartFR5PlaneR8Vector3fR8Vector3f = .text:0x8008DF74; // type:function size:0x4 scope:global align:4 +init__15CreaturePlatMgrFP8CreatureP6MapMgrP5Shape = .text:0x8008DF78; // type:function size:0xA0 scope:global align:4 +release__15CreaturePlatMgrFv = .text:0x8008E018; // type:function size:0x68 scope:global align:4 +update__15CreaturePlatMgrFR8Graphics = .text:0x8008E080; // type:function size:0xFC scope:global align:4 +update__16CreatureCollPartFv = .text:0x8008E17C; // type:function size:0x4 scope:weak align:4 +refresh__16CreatureCollPartFR8Graphics = .text:0x8008E180; // type:function size:0x4 scope:weak align:4 +moveRotation__8CreatureFf = .text:0x8008E184; // type:function size:0x200 scope:global align:4 +moveAttach__8CreatureFv = .text:0x8008E384; // type:function size:0x110 scope:global align:4 +moveNew__8CreatureFf = .text:0x8008E494; // type:function size:0xD60 scope:global align:4 +getNearestPlane__8CreatureFP11CollTriInfo = .text:0x8008F1F4; // type:function size:0x100 scope:global align:4 +traceMove2__FP8CreatureR9MoveTracef = .text:0x8008F2F4; // type:function size:0x588 scope:global align:4 +interactStickers__8CreatureFP8CreatureR11InteractionP9Condition = .text:0x8008F87C; // type:function size:0x160 scope:global align:4 +killStickers__8CreatureFP8CreatureP9Conditioni = .text:0x8008F9DC; // type:function size:0x174 scope:global align:4 +next__8IteratorFv = .text:0x8008FB50; // type:function size:0x124 scope:weak align:4 +first__8IteratorFv = .text:0x8008FC74; // type:function size:0x11C scope:weak align:4 +startClimb__8CreatureFv = .text:0x8008FD90; // type:function size:0x68 scope:global align:4 +endClimb__8CreatureFv = .text:0x8008FDF8; // type:function size:0x10 scope:global align:4 +isStickToPlatform__8CreatureFv = .text:0x8008FE08; // type:function size:0x48 scope:global align:4 +startStickMouth__8CreatureFP8CreatureP8CollPart = .text:0x8008FE50; // type:function size:0x84 scope:global align:4 +endStickMouth__8CreatureFv = .text:0x8008FED4; // type:function size:0x40 scope:global align:4 +startStickObjectSphere__8CreatureFP8CreatureP8CollPartf = .text:0x8008FF14; // type:function size:0x310 scope:global align:4 +startStickObjectTube__8CreatureFP8CreatureP8CollPart = .text:0x80090224; // type:function size:0x34C scope:global align:4 +startStickObject__8CreatureFP8CreatureP8CollPartif = .text:0x80090570; // type:function size:0x1C0 scope:global align:4 +endStickObject__8CreatureFv = .text:0x80090730; // type:function size:0x6C scope:global align:4 +startStick__8CreatureFP8CreatureP8CollPart = .text:0x8009079C; // type:function size:0xF8 scope:global align:4 +endStick__8CreatureFv = .text:0x80090894; // type:function size:0xEC scope:global align:4 +startRope__8CreatureFP12RopeCreaturef = .text:0x80090980; // type:function size:0x124 scope:global align:4 +endRope__8CreatureFv = .text:0x80090AA4; // type:function size:0x98 scope:global align:4 +__ct__8StickersFP8Creature = .text:0x80090B3C; // type:function size:0x58 scope:global align:4 +calcNum__8StickersFv = .text:0x80090B94; // type:function size:0x30 scope:global align:4 +getCreature__8StickersFi = .text:0x80090BC4; // type:function size:0xCC scope:global align:4 +getFirst__8StickersFv = .text:0x80090C90; // type:function size:0x8 scope:global align:4 +getNext__8StickersFi = .text:0x80090C98; // type:function size:0x8 scope:global align:4 +isDone__8StickersFi = .text:0x80090CA0; // type:function size:0x1C scope:global align:4 +updateStickPlatform__8CreatureFv = .text:0x80090CBC; // type:function size:0x254 scope:global align:4 +updateStickNonPlatform__8CreatureFv = .text:0x80090F10; // type:function size:0xBC scope:global align:4 +updateStickSphere__8CreatureFv = .text:0x80090FCC; // type:function size:0x1EC scope:global align:4 +updateStickPellet__8CreatureFv = .text:0x800911B8; // type:function size:0x360 scope:global align:4 +updateStickTube__8CreatureFv = .text:0x80091518; // type:function size:0x3BC scope:global align:4 +updateStickRope__8CreatureFv = .text:0x800918D4; // type:function size:0x4A4 scope:global align:4 +__ct__12DualCreatureFv = .text:0x80091D78; // type:function size:0x94 scope:global align:4 +doKill__12DualCreatureFv = .text:0x80091E0C; // type:function size:0x34 scope:global align:4 +isFrontFace__12DualCreatureFv = .text:0x80091E40; // type:function size:0x60 scope:global align:4 +getY__12DualCreatureFv = .text:0x80091EA0; // type:function size:0x50 scope:global align:4 +onGround__12DualCreatureFv = .text:0x80091EF0; // type:function size:0x54 scope:global align:4 +useRealDynamics__12DualCreatureFv = .text:0x80091F44; // type:function size:0x50 scope:global align:4 +useSimpleDynamics__12DualCreatureFv = .text:0x80091F94; // type:function size:0x44 scope:global align:4 +rotateY__12DualCreatureFf = .text:0x80091FD8; // type:function size:0xC4 scope:global align:4 +update__12DualCreatureFv = .text:0x8009209C; // type:function size:0x34 scope:global align:4 +refresh__12DualCreatureFR8Graphics = .text:0x800920D0; // type:function size:0x21C scope:global align:4 +init__11PelCreatureFR8Vector3f = .text:0x800922EC; // type:function size:0x50 scope:global align:4 +getiMass__11PelCreatureFv = .text:0x8009233C; // type:function size:0x8 scope:global align:4 +isAlive__11PelCreatureFv = .text:0x80092344; // type:function size:0x8 scope:global align:4 +startAI__11PelCreatureFi = .text:0x8009234C; // type:function size:0x60 scope:global align:4 +doRender__11PelCreatureFR8GraphicsR8Matrix4f = .text:0x800923AC; // type:function size:0x1C8 scope:global align:4 +doCreateColls__11PelCreatureFR8Graphics = .text:0x80092574; // type:function size:0x14C scope:global align:4 +__ct__11DynParticleFv = .text:0x800926C0; // type:function size:0xD8 scope:global align:4 +getSize__11DynParticleFv = .text:0x80092798; // type:function size:0x10 scope:global align:4 +refresh__11DynParticleFR8Graphics = .text:0x800927A8; // type:function size:0x4 scope:global align:4 +doKill__11DynParticleFv = .text:0x800927AC; // type:function size:0x4 scope:global align:4 +__ct__15DynParticleHeapFi = .text:0x800927B0; // type:function size:0x1F4 scope:global align:4 +__ct__11DynCreatureFv = .text:0x800929A4; // type:function size:0xF4 scope:global align:4 +enablePickOffset__11DynCreatureFf = .text:0x80092A98; // type:function size:0x1C scope:global align:4 +disablePickOffset__11DynCreatureFv = .text:0x80092AB4; // type:function size:0x18 scope:global align:4 +addParticle__11DynCreatureFfR8Vector3f = .text:0x80092ACC; // type:function size:0x100 scope:global align:4 +releaseAllParticles__11DynCreatureFv = .text:0x80092BCC; // type:function size:0x68 scope:global align:4 +initialiseSystem__11DynCreatureFv = .text:0x80092C34; // type:function size:0x18C scope:global align:4 +update__11DynCreatureFv = .text:0x80092DC0; // type:function size:0x3C scope:global align:4 +simulate__11DynCreatureFf = .text:0x80092DFC; // type:function size:0xB64 scope:global align:4 +createInvInertiaTensor__11DynCreatureFv = .text:0x80093960; // type:function size:0x1B0 scope:global align:4 +refresh__11DynCreatureFR8Graphics = .text:0x80093B10; // type:function size:0x2B4 scope:global align:4 +doKill__11DynCreatureFv = .text:0x80093DC4; // type:function size:0x68 scope:global align:4 +read__12CreaturePropFR18RandomAccessStream = .text:0x80093E2C; // type:function size:0x20 scope:weak align:4 +isFree__11DynParticleFv = .text:0x80093E4C; // type:function size:0x14 scope:weak align:4 +__ct__11EventTalkerFv = .text:0x80093E60; // type:function size:0x90 scope:global align:4 +informEvent__11EventTalkerFR5Event = .text:0x80093EF0; // type:function size:0x5C scope:global align:4 +gotEvent__13EventListenerFR5Event = .text:0x80093F4C; // type:function size:0x4 scope:weak align:4 +__ct__8FastGridFv = .text:0x80093F50; // type:function size:0x24 scope:global align:4 +initAIGrid__8FastGridFUc = .text:0x80093F74; // type:function size:0x78 scope:global align:4 +clearAIGrid__8FastGridFv = .text:0x80093FEC; // type:function size:0x2C scope:global align:4 +delAIGrid__8FastGridFv = .text:0x80094018; // type:function size:0x30 scope:global align:4 +aiCulling__8FastGridFv = .text:0x80094048; // type:function size:0x1A8 scope:global align:4 +aiCullingLarge__8FastGridFi = .text:0x800941F0; // type:function size:0xB8 scope:global align:4 +doCulling__8FastGridFRC8FastGridf = .text:0x800942A8; // type:function size:0x130 scope:global align:4 +updateGrid__8FastGridFRC8Vector3f = .text:0x800943D8; // type:function size:0x9C scope:global align:4 +updateAIGrid__8FastGridFRC8Vector3fb = .text:0x80094474; // type:function size:0xE8 scope:global align:4 +__ct__12RopeCreatureFP12CreatureProp = .text:0x8009455C; // type:function size:0x58 scope:global align:4 +setRope__12RopeCreatureFP8Creature = .text:0x800945B4; // type:function size:0x1A8 scope:global align:4 +update__12RopeCreatureFv = .text:0x8009475C; // type:function size:0xD4 scope:global align:4 +getRopePos__12RopeCreatureFf = .text:0x80094830; // type:function size:0xB4 scope:global align:4 +refresh__12RopeCreatureFR8Graphics = .text:0x800948E4; // type:function size:0x4 scope:global align:4 +needShadow__12RopeCreatureFv = .text:0x800948E8; // type:function size:0x8 scope:weak align:4 +getName__7ObjTypeFi = .text:0x800948F0; // type:function size:0x48 scope:global align:4 +getIndex__7ObjTypeFPc = .text:0x80094938; // type:function size:0x94 scope:global align:4 +getUfoIndexFromID__9PelletMgrFUl = .text:0x800949CC; // type:function size:0x44 scope:global align:4 +getUfoIDFromIndex__9PelletMgrFi = .text:0x80094A10; // type:function size:0x18 scope:global align:4 +__ct__12PelletConfigFv = .text:0x80094A28; // type:function size:0x390 scope:global align:4 +read__12PelletConfigFR18RandomAccessStream = .text:0x80094DB8; // type:function size:0x74 scope:global align:4 +becomePellet__10PelletViewFUlR8Vector3ff = .text:0x80094E2C; // type:function size:0x1C8 scope:global align:4 +__ct__6PelletFv = .text:0x80094FF4; // type:function size:0x270 scope:global align:4 +isUfoPartsID__6PelletFUl = .text:0x80095264; // type:function size:0x3C scope:global align:4 +startWaterEffect__6PelletFv = .text:0x800952A0; // type:function size:0x90 scope:global align:4 +finishWaterEffect__6PelletFv = .text:0x80095330; // type:function size:0x30 scope:global align:4 +doKill__6PelletFv = .text:0x80095360; // type:function size:0x90 scope:global align:4 +getState__6PelletFv = .text:0x800953F0; // type:function size:0x1C scope:global align:4 +ignoreAtari__6PelletFP8Creature = .text:0x8009540C; // type:function size:0x38 scope:global align:4 +isAlive__6PelletFv = .text:0x80095444; // type:function size:0x8 scope:global align:4 +isAtari__6PelletFv = .text:0x8009544C; // type:function size:0x48 scope:global align:4 +isVisible__6PelletFv = .text:0x80095494; // type:function size:0x50 scope:global align:4 +setTrySound__6PelletFb = .text:0x800954E4; // type:function size:0x80 scope:global align:4 +startPick__6PelletFv = .text:0x80095564; // type:function size:0x3A0 scope:global align:4 +finishPick__6PelletFv = .text:0x80095904; // type:function size:0x80 scope:global align:4 +startGoal__6PelletFv = .text:0x80095984; // type:function size:0xB8 scope:global align:4 +transit__21StateMachine<6Pellet>FP6Pelleti = .text:0x80095A3C; // type:function size:0xB0 scope:weak align:4 +init__15AState<6Pellet>FP6Pellet = .text:0x80095AEC; // type:function size:0x4 scope:weak align:4 +cleanup__15AState<6Pellet>FP6Pellet = .text:0x80095AF0; // type:function size:0x4 scope:weak align:4 +doCarry__6PelletFP8CreatureR8Vector3fUs = .text:0x80095AF4; // type:function size:0x16C scope:global align:4 +getBottomRadius__6PelletFv = .text:0x80095C60; // type:function size:0x108 scope:global align:4 +getCentre__6PelletFv = .text:0x80095D68; // type:function size:0x1C scope:global align:4 +getCylinderHeight__6PelletFv = .text:0x80095D84; // type:function size:0x48 scope:global align:4 +getSize__6PelletFv = .text:0x80095DCC; // type:function size:0x78 scope:global align:4 +viewGetScale__10PelletViewFv = .text:0x80095E44; // type:function size:0x1C scope:weak align:4 +getiMass__6PelletFv = .text:0x80095E60; // type:function size:0x8 scope:global align:4 +startStickTeki__6PelletFP8Creaturef = .text:0x80095E68; // type:function size:0xE4 scope:global align:4 +endStickTeki__6PelletFP8Creature = .text:0x80095F4C; // type:function size:0x94 scope:global align:4 +winnable__6PelletFi = .text:0x80095FE0; // type:function size:0x174 scope:global align:4 +stickSlot__6PelletFi = .text:0x80096154; // type:function size:0x68 scope:global align:4 +stickOffSlot__6PelletFi = .text:0x800961BC; // type:function size:0x5C scope:global align:4 +getMinFreeSlotIndex__6PelletFv = .text:0x80096218; // type:function size:0x6C scope:global align:4 +getNearestFreeSlotIndex__6PelletFR8Vector3f = .text:0x80096284; // type:function size:0x160 scope:global align:4 +getRandomFreeSlotIndex__6PelletFv = .text:0x800963E4; // type:function size:0xD8 scope:global align:4 +getSlotLocalPos__6PelletFif = .text:0x800964BC; // type:function size:0x1A0 scope:global align:4 +getSlotGlobalPos__6PelletFif = .text:0x8009665C; // type:function size:0x78 scope:global align:4 +setSlotFlag__6PelletFi = .text:0x800966D4; // type:function size:0x34 scope:global align:4 +resetSlotFlag__6PelletFi = .text:0x80096708; // type:function size:0x34 scope:global align:4 +isSlotFlag__6PelletFi = .text:0x8009673C; // type:function size:0x44 scope:global align:4 +initPellet__6PelletFP17PelletShapeObjectP12PelletConfig = .text:0x80096780; // type:function size:0xE0 scope:global align:4 +startCarryMotion__6PelletFf = .text:0x80096860; // type:function size:0x44 scope:global align:4 +viewStartTrembleMotion__10PelletViewFf = .text:0x800968A4; // type:function size:0x4 scope:weak align:4 +viewSetMotionSpeed__10PelletViewFf = .text:0x800968A8; // type:function size:0x4 scope:weak align:4 +finishMotion__6PelletFv = .text:0x800968AC; // type:function size:0x64 scope:global align:4 +viewFinishMotion__10PelletViewFv = .text:0x80096910; // type:function size:0x4 scope:weak align:4 +init__6PelletFR8Vector3f = .text:0x80096914; // type:function size:0x98 scope:global align:4 +isFree__6PelletFv = .text:0x800969AC; // type:function size:0x34 scope:global align:4 +doLoad__6PelletFR18RandomAccessStream = .text:0x800969E0; // type:function size:0x248 scope:global align:4 +animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x80096C28; // type:function size:0x78 scope:global align:4 +doSave__6PelletFR18RandomAccessStream = .text:0x80096CA0; // type:function size:0x94 scope:global align:4 +startAI__6PelletFi = .text:0x80096D34; // type:function size:0x3B8 scope:global align:4 +doAnimation__6PelletFv = .text:0x800970EC; // type:function size:0x60 scope:global align:4 +viewDoAnimation__10PelletViewFv = .text:0x8009714C; // type:function size:0x4 scope:weak align:4 +refresh__6PelletFR8Graphics = .text:0x80097150; // type:function size:0x88 scope:global align:4 +postUpdate__6PelletFif = .text:0x800971D8; // type:function size:0x88 scope:global align:4 +update__6PelletFv = .text:0x80097260; // type:function size:0x94C scope:global align:4 +exec__21StateMachine<6Pellet>FP6Pellet = .text:0x80097BAC; // type:function size:0x3C scope:weak align:4 +exec__15AState<6Pellet>FP6Pellet = .text:0x80097BE8; // type:function size:0x4 scope:weak align:4 +bounceCallback__6PelletFv = .text:0x80097BEC; // type:function size:0x50 scope:global align:4 +collisionCallback__6PelletFR9CollEvent = .text:0x80097C3C; // type:function size:0x20 scope:global align:4 +stimulate__6PelletFR11Interaction = .text:0x80097C5C; // type:function size:0x74 scope:global align:4 +doRender__6PelletFR8GraphicsR8Matrix4f = .text:0x80097CD0; // type:function size:0x2F8 scope:global align:4 +doCreateColls__6PelletFR8Graphics = .text:0x80097FC8; // type:function size:0x1BC scope:global align:4 +actPellet__15InteractSwallowFP6Pellet = .text:0x80098184; // type:function size:0x64 scope:global align:4 +actPellet__12InteractKillFP6Pellet = .text:0x800981E8; // type:function size:0x148 scope:global align:4 +decomposeNumberPellet__9PelletMgrFUlRiRi = .text:0x80098330; // type:function size:0x58 scope:global align:4 +registerUfoParts__9PelletMgrFv = .text:0x80098388; // type:function size:0x68 scope:global align:4 +newNumberPellet__9PelletMgrFii = .text:0x800983F0; // type:function size:0x78 scope:global align:4 +newPellet__9PelletMgrFUlP10PelletView = .text:0x80098468; // type:function size:0x154 scope:global align:4 +getShapeObject__9PelletMgrFUl = .text:0x800985BC; // type:function size:0x94 scope:global align:4 +createObject__9PelletMgrFv = .text:0x80098650; // type:function size:0x54 scope:global align:4 +__ct__9PelletMgrFP6MapMgr = .text:0x800986A4; // type:function size:0x254 scope:global align:4 +__ct__7ParmFP10Parametersfff5ayuIDPc = .text:0x800988F8; // type:function size:0x58 scope:weak align:4 +__dt__13MonoObjectMgrFv = .text:0x80098950; // type:function size:0x6C scope:weak align:4 +addUseList__9PelletMgrFUl = .text:0x800989BC; // type:function size:0xF0 scope:global align:4 +initShapeInfos__9PelletMgrFv = .text:0x80098AAC; // type:function size:0x54 scope:global align:4 +getConfigIndex__9PelletMgrFUl = .text:0x80098B00; // type:function size:0x40 scope:global align:4 +getConfigFromIdx__9PelletMgrFi = .text:0x80098B40; // type:function size:0x9C scope:global align:4 +getConfig__9PelletMgrFUl = .text:0x80098BDC; // type:function size:0x38 scope:global align:4 +read__9PelletMgrFR18RandomAccessStream = .text:0x80098C14; // type:function size:0x44 scope:global align:4 +readConfigs__9PelletMgrFR18RandomAccessStream = .text:0x80098C58; // type:function size:0xBC scope:global align:4 +readAnimInfos__9PelletMgrFR18RandomAccessStream = .text:0x80098D14; // type:function size:0xBC scope:global align:4 +initTekiNakaParts__9PelletMgrFv = .text:0x80098DD0; // type:function size:0xD4 scope:global align:4 +createShapeObjects__9PelletMgrFv = .text:0x80098EA4; // type:function size:0xDC scope:global align:4 +refresh__9PelletMgrFR8Graphics = .text:0x80098F80; // type:function size:0x210 scope:global align:4 +refresh2d__9PelletMgrFR8Graphics = .text:0x80099190; // type:function size:0x4 scope:global align:4 +__dt__9PelletMgrFv = .text:0x80099194; // type:function size:0x84 scope:weak align:4 +getSize__13MonoObjectMgrFv = .text:0x80099218; // type:function size:0x8 scope:weak align:4 +getMax__13MonoObjectMgrFv = .text:0x80099220; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGenerator = .text:0x80099228; // type:function size:0x8 scope:weak align:4 +kill__7KEffectFv = .text:0x80099230; // type:function size:0x4 scope:weak align:4 +stop__7KEffectFv = .text:0x80099234; // type:function size:0x4 scope:weak align:4 +restart__7KEffectFv = .text:0x80099238; // type:function size:0x4 scope:weak align:4 +invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8009923C; // type:function size:0x8 scope:weak align:4 +invoke__7KEffectFPQ23zen11particleMdl = .text:0x80099244; // type:function size:0x8 scope:weak align:4 +init__21StateMachine<6Pellet>FP6Pellet = .text:0x8009924C; // type:function size:0x4 scope:weak align:4 +procMsg__21StateMachine<6Pellet>FP6PelletP3Msg = .text:0x80099250; // type:function size:0x3C scope:weak align:4 +procMsg__17Receiver<6Pellet>FP6PelletP3Msg = .text:0x8009928C; // type:function size:0x118 scope:weak align:4 +procGroundMsg__17Receiver<6Pellet>FP6PelletP9MsgGround = .text:0x800993A4; // type:function size:0x4 scope:weak align:4 +procUserMsg__17Receiver<6Pellet>FP6PelletP7MsgUser = .text:0x800993A8; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__17Receiver<6Pellet>FP6PelletP10MsgOffWall = .text:0x800993AC; // type:function size:0x4 scope:weak align:4 +procWallMsg__17Receiver<6Pellet>FP6PelletP7MsgWall = .text:0x800993B0; // type:function size:0x4 scope:weak align:4 +procDamageMsg__17Receiver<6Pellet>FP6PelletP9MsgDamage = .text:0x800993B4; // type:function size:0x4 scope:weak align:4 +procAnimMsg__17Receiver<6Pellet>FP6PelletP7MsgAnim = .text:0x800993B8; // type:function size:0x4 scope:weak align:4 +procCollideMsg__17Receiver<6Pellet>FP6PelletP10MsgCollide = .text:0x800993BC; // type:function size:0x4 scope:weak align:4 +procTargetMsg__17Receiver<6Pellet>FP6PelletP9MsgTarget = .text:0x800993C0; // type:function size:0x4 scope:weak align:4 +procHangMsg__17Receiver<6Pellet>FP6PelletP7MsgHang = .text:0x800993C4; // type:function size:0x4 scope:weak align:4 +procStickMsg__17Receiver<6Pellet>FP6PelletP8MsgStick = .text:0x800993C8; // type:function size:0x4 scope:weak align:4 +procBounceMsg__17Receiver<6Pellet>FP6PelletP9MsgBounce = .text:0x800993CC; // type:function size:0x4 scope:weak align:4 +@4@read__12PelletConfigFR18RandomAccessStream = .text:0x800993D0; // type:function size:0x8 scope:weak align:4 +@4@invoke__7KEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800993D8; // type:function size:0x8 scope:weak align:4 +@8@invoke__7KEffectFPQ23zen11particleMdl = .text:0x800993E0; // type:function size:0x8 scope:weak align:4 +@1088@animationKeyUpdated__6PelletFR16PaniAnimKeyEvent = .text:0x800993E8; // type:function size:0x8 scope:weak align:4 +@8@read__9PelletMgrFR18RandomAccessStream = .text:0x800993F0; // type:function size:0x8 scope:weak align:4 +@8@update__13MonoObjectMgrFv = .text:0x800993F8; // type:function size:0x8 scope:weak align:4 +__ct__14PelletAnimInfoFv = .text:0x80099400; // type:function size:0x180 scope:global align:4 +createShapeObject__14PelletAnimInfoFv = .text:0x80099580; // type:function size:0xD4 scope:global align:4 +read__14PelletAnimInfoFR18RandomAccessStream = .text:0x80099654; // type:function size:0x90 scope:global align:4 +__ct__17PelletShapeObjectFPcP5ShapePcPci = .text:0x800996E4; // type:function size:0x140 scope:global align:4 +__ct__14PelletAnimatorFv = .text:0x80099824; // type:function size:0x38 scope:global align:4 +init__14PelletAnimatorFP11AnimContextP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8009985C; // type:function size:0x6C scope:global align:4 +finishMotion__14PelletAnimatorFP14PaniMotionInfoP14PaniMotionInfo = .text:0x800998C8; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80099920; // type:function size:0x58 scope:global align:4 +startMotion__14PelletAnimatorFR14PaniMotionInfo = .text:0x80099978; // type:function size:0x28 scope:global align:4 +updateAnimation__14PelletAnimatorFff = .text:0x800999A0; // type:function size:0x5C scope:global align:4 +updateContext__14PelletAnimatorFv = .text:0x800999FC; // type:function size:0x4C scope:global align:4 +createMotionTable__18PaniPelletAnimatorFv = .text:0x80099A48; // type:function size:0x148 scope:global align:4 +__ct__18PaniPelletAnimatorFv = .text:0x80099B90; // type:function size:0x3C scope:global align:4 +@4@read__14PelletAnimInfoFR18RandomAccessStream = .text:0x80099BCC; // type:function size:0x8 scope:weak align:4 +makeObjectPellet__Fv = .text:0x80099BD4; // type:function size:0x80 scope:local align:4 +initialise__15GenObjectPelletFv = .text:0x80099C54; // type:function size:0x8C scope:global align:4 +doRead__15GenObjectPelletFR18RandomAccessStream = .text:0x80099CE0; // type:function size:0x54 scope:global align:4 +doWrite__15GenObjectPelletFR18RandomAccessStream = .text:0x80099D34; // type:function size:0x70 scope:global align:4 +updateUseList__15GenObjectPelletFP9Generatori = .text:0x80099DA4; // type:function size:0x40 scope:global align:4 +birth__15GenObjectPelletFR9BirthInfo = .text:0x80099DE4; // type:function size:0x100 scope:global align:4 +init__18PelletStateMachineFP6Pellet = .text:0x80099EE4; // type:function size:0x400 scope:global align:4 +__ct__18PelletUfoLoadStateFv = .text:0x8009A2E4; // type:function size:0x4C scope:global align:4 +init__18PelletUfoLoadStateFP6Pellet = .text:0x8009A330; // type:function size:0xC scope:global align:4 +exec__18PelletUfoLoadStateFP6Pellet = .text:0x8009A33C; // type:function size:0x70 scope:global align:4 +transit__15AState<6Pellet>FP6Pelleti = .text:0x8009A3AC; // type:function size:0x30 scope:weak align:4 +cleanup__18PelletUfoLoadStateFP6Pellet = .text:0x8009A3DC; // type:function size:0x1C scope:global align:4 +__ct__15PelletDeadStateFv = .text:0x8009A3F8; // type:function size:0x4C scope:global align:4 +init__15PelletDeadStateFP6Pellet = .text:0x8009A444; // type:function size:0x4 scope:global align:4 +exec__15PelletDeadStateFP6Pellet = .text:0x8009A448; // type:function size:0x4 scope:global align:4 +cleanup__15PelletDeadStateFP6Pellet = .text:0x8009A44C; // type:function size:0x4 scope:global align:4 +__ct__17PelletNormalStateFv = .text:0x8009A450; // type:function size:0x48 scope:global align:4 +init__17PelletNormalStateFP6Pellet = .text:0x8009A498; // type:function size:0x4 scope:global align:4 +exec__17PelletNormalStateFP6Pellet = .text:0x8009A49C; // type:function size:0x4 scope:global align:4 +cleanup__17PelletNormalStateFP6Pellet = .text:0x8009A4A0; // type:function size:0x4 scope:global align:4 +__ct__20PelletSwallowedStateFv = .text:0x8009A4A4; // type:function size:0x50 scope:global align:4 +init__20PelletSwallowedStateFP6Pellet = .text:0x8009A4F4; // type:function size:0x4 scope:global align:4 +exec__20PelletSwallowedStateFP6Pellet = .text:0x8009A4F8; // type:function size:0x3C scope:global align:4 +cleanup__20PelletSwallowedStateFP6Pellet = .text:0x8009A534; // type:function size:0x24 scope:global align:4 +__ct__17PelletAppearStateFv = .text:0x8009A558; // type:function size:0x4C scope:global align:4 +init__17PelletAppearStateFP6Pellet = .text:0x8009A5A4; // type:function size:0x30 scope:global align:4 +procBounceMsg__17PelletAppearStateFP6PelletP9MsgBounce = .text:0x8009A5D4; // type:function size:0x30 scope:global align:4 +exec__17PelletAppearStateFP6Pellet = .text:0x8009A604; // type:function size:0xCC scope:global align:4 +cleanup__17PelletAppearStateFP6Pellet = .text:0x8009A6D0; // type:function size:0x4 scope:global align:4 +__ct__15PelletGoalStateFv = .text:0x8009A6D4; // type:function size:0x5C scope:global align:4 +init__15PelletGoalStateFP6Pellet = .text:0x8009A730; // type:function size:0x57C scope:global align:4 +exec__15PelletGoalStateFP6Pellet = .text:0x8009ACAC; // type:function size:0x2D4 scope:global align:4 +finishSuck__8SuckableFP6Pellet = .text:0x8009AF80; // type:function size:0x4 scope:weak align:4 +cleanup__15PelletGoalStateFP6Pellet = .text:0x8009AF84; // type:function size:0x30 scope:global align:4 +resume__15AState<6Pellet>FP6Pellet = .text:0x8009AFB4; // type:function size:0x4 scope:weak align:4 +restart__15AState<6Pellet>FP6Pellet = .text:0x8009AFB8; // type:function size:0x4 scope:weak align:4 +beginPush__10HinderRockFv = .text:0x8009AFBC; // type:function size:0x10 scope:global align:4 +endPush__10HinderRockFv = .text:0x8009AFCC; // type:function size:0x18 scope:global align:4 +finalSetup__13WorkObjectMgrFv = .text:0x8009AFE4; // type:function size:0x10C scope:global align:4 +finalSetup__10WorkObjectFv = .text:0x8009B0F0; // type:function size:0x4 scope:weak align:4 +doKill__10WorkObjectFv = .text:0x8009B0F4; // type:function size:0x24 scope:global align:4 +__ct__13WorkObjectMgrFv = .text:0x8009B118; // type:function size:0x110 scope:global align:4 +__dt__9ObjectMgrFv = .text:0x8009B228; // type:function size:0x54 scope:weak align:4 +loadShapes__13WorkObjectMgrFv = .text:0x8009B27C; // type:function size:0x94 scope:global align:4 +birth__13WorkObjectMgrFii = .text:0x8009B310; // type:function size:0x12C scope:global align:4 +getCreature__13WorkObjectMgrFi = .text:0x8009B43C; // type:function size:0x88 scope:global align:4 +getFirst__13WorkObjectMgrFv = .text:0x8009B4C4; // type:function size:0x8 scope:global align:4 +getNext__13WorkObjectMgrFi = .text:0x8009B4CC; // type:function size:0x8 scope:global align:4 +isDone__13WorkObjectMgrFi = .text:0x8009B4D4; // type:function size:0x44 scope:global align:4 +getSize__13WorkObjectMgrFv = .text:0x8009B518; // type:function size:0x24 scope:global align:4 +ramSaveParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B53C; // type:function size:0xA0 scope:global align:4 +ramLoadParameters__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B5DC; // type:function size:0xA0 scope:global align:4 +makeObjectWorkObject__Fv = .text:0x8009B67C; // type:function size:0x16C scope:local align:4 +initialise__19GenObjectWorkObjectFv = .text:0x8009B7E8; // type:function size:0x8C scope:global align:4 +doRead__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009B874; // type:function size:0x20C scope:global align:4 +doWrite__19GenObjectWorkObjectFR18RandomAccessStream = .text:0x8009BA80; // type:function size:0x1B4 scope:global align:4 +updateUseList__19GenObjectWorkObjectFP9Generatori = .text:0x8009BC34; // type:function size:0x20 scope:global align:4 +birth__19GenObjectWorkObjectFR9BirthInfo = .text:0x8009BC54; // type:function size:0x180 scope:global align:4 +__ct__10HinderRockFP5Shape = .text:0x8009BDD4; // type:function size:0x178 scope:global align:4 +insideSafeArea__10HinderRockFR8Vector3f = .text:0x8009BF4C; // type:function size:0x74 scope:global align:4 +doLoad__10HinderRockFR18RandomAccessStream = .text:0x8009BFC0; // type:function size:0x164 scope:global align:4 +doSave__10HinderRockFR18RandomAccessStream = .text:0x8009C124; // type:function size:0x40 scope:global align:4 +getCentreSize__10HinderRockFv = .text:0x8009C164; // type:function size:0x8 scope:global align:4 +isFinished__10HinderRockFv = .text:0x8009C16C; // type:function size:0x14 scope:global align:4 +getZVector__10HinderRockFv = .text:0x8009C180; // type:function size:0xC8 scope:global align:4 +getXVector__10HinderRockFv = .text:0x8009C248; // type:function size:0xC8 scope:global align:4 +getPlaneFlag__10HinderRockFR8Vector3f = .text:0x8009C310; // type:function size:0xF8 scope:global align:4 +updatePlanes__10HinderRockFv = .text:0x8009C408; // type:function size:0x3A8 scope:global align:4 +getVertex__10HinderRockFi = .text:0x8009C7B0; // type:function size:0xA0 scope:global align:4 +stimulate__10HinderRockFR11Interaction = .text:0x8009C850; // type:function size:0x74 scope:global align:4 +actHinderRock__12InteractPushFP10HinderRock = .text:0x8009C8C4; // type:function size:0x18 scope:global align:4 +refresh__10HinderRockFR8Graphics = .text:0x8009C8DC; // type:function size:0xC0 scope:global align:4 +workable__10HinderRockFR8Vector3f = .text:0x8009C99C; // type:function size:0x11C scope:global align:4 +update__10HinderRockFv = .text:0x8009CAB8; // type:function size:0x830 scope:global align:4 +startAI__10HinderRockFi = .text:0x8009D2E8; // type:function size:0x198 scope:global align:4 +workable__6BridgeFR8Vector3f = .text:0x8009D480; // type:function size:0x154 scope:global align:4 +__ct__6BridgeFP5Shapeb = .text:0x8009D5D4; // type:function size:0x2C4 scope:global align:4 +stimulate__6BridgeFR11Interaction = .text:0x8009D898; // type:function size:0x74 scope:global align:4 +refresh__6BridgeFR8Graphics = .text:0x8009D90C; // type:function size:0xE4 scope:global align:4 +update__6BridgeFv = .text:0x8009D9F0; // type:function size:0xE0 scope:global align:4 +startAI__6BridgeFi = .text:0x8009DAD0; // type:function size:0x300 scope:global align:4 +doLoad__6BridgeFR18RandomAccessStream = .text:0x8009DDD0; // type:function size:0x18C scope:global align:4 +doSave__6BridgeFR18RandomAccessStream = .text:0x8009DF5C; // type:function size:0x80 scope:global align:4 +insideSafeArea__6BridgeFR8Vector3f = .text:0x8009DFDC; // type:function size:0xB0 scope:global align:4 +isFinished__6BridgeFv = .text:0x8009E08C; // type:function size:0x68 scope:global align:4 +getFirstUnfinishedStage__6BridgeFv = .text:0x8009E0F4; // type:function size:0x68 scope:global align:4 +getFirstFinishedStage__6BridgeFv = .text:0x8009E15C; // type:function size:0x68 scope:global align:4 +getJointIndex__6BridgeFi = .text:0x8009E1C4; // type:function size:0x40 scope:global align:4 +isStageFinished__6BridgeFi = .text:0x8009E204; // type:function size:0x9C scope:global align:4 +flatten__6BridgeFv = .text:0x8009E2A0; // type:function size:0xA4 scope:global align:4 +dump__6BridgeFv = .text:0x8009E344; // type:function size:0x128 scope:global align:4 +setStageFinished__6BridgeFib = .text:0x8009E46C; // type:function size:0x394 scope:global align:4 +getStagePos__6BridgeFi = .text:0x8009E800; // type:function size:0xC8 scope:global align:4 +getStageZ__6BridgeFi = .text:0x8009E8C8; // type:function size:0x64 scope:global align:4 +getBridgePos__6BridgeFR8Vector3fRfRf = .text:0x8009E92C; // type:function size:0xE8 scope:global align:4 +getBridgeZVec__6BridgeFv = .text:0x8009EA14; // type:function size:0x60 scope:global align:4 +getBridgeXVec__6BridgeFv = .text:0x8009EA74; // type:function size:0x60 scope:global align:4 +getStartPos__6BridgeFv = .text:0x8009EAD4; // type:function size:0xFC scope:global align:4 +getStageDepth__6BridgeFv = .text:0x8009EBD0; // type:function size:0x8 scope:global align:4 +getStageWidth__6BridgeFv = .text:0x8009EBD8; // type:function size:0x8 scope:global align:4 +startStageFinished__6BridgeFib = .text:0x8009EBE0; // type:function size:0x424 scope:global align:4 +actBridge__13InteractBuildFP6Bridge = .text:0x8009F004; // type:function size:0xA0 scope:global align:4 +actBridge__13InteractBreakFP6Bridge = .text:0x8009F0A4; // type:function size:0x2E8 scope:global align:4 +__ml__FRC8Vector3fRCf = .text:0x8009F38C; // type:function size:0x2C scope:weak align:4 +isBridge__6BridgeFv = .text:0x8009F3B8; // type:function size:0x8 scope:weak align:4 +alwaysUpdatePlatform__6BridgeFv = .text:0x8009F3C0; // type:function size:0x14 scope:weak align:4 +finalSetup__6BridgeFv = .text:0x8009F3D4; // type:function size:0xC scope:weak align:4 +isVisible__10WorkObjectFv = .text:0x8009F3E0; // type:function size:0x8 scope:weak align:4 +isAlive__10WorkObjectFv = .text:0x8009F3E8; // type:function size:0x8 scope:weak align:4 +isHinderRock__10WorkObjectFv = .text:0x8009F3F0; // type:function size:0x8 scope:weak align:4 +getHeight__12ItemCreatureFv = .text:0x8009F3F8; // type:function size:0x8 scope:weak align:4 +isHinderRock__10HinderRockFv = .text:0x8009F400; // type:function size:0x8 scope:weak align:4 +update__13DynBuildShapeFv = .text:0x8009F408; // type:function size:0x4 scope:weak align:4 +refresh__13DynBuildShapeFR8Graphics = .text:0x8009F40C; // type:function size:0x4 scope:weak align:4 +__dt__13WorkObjectMgrFv = .text:0x8009F410; // type:function size:0x6C scope:weak align:4 +getMax__13WorkObjectMgrFv = .text:0x8009F47C; // type:function size:0x8 scope:weak align:4 +isFinished__10WorkObjectFv = .text:0x8009F484; // type:function size:0x8 scope:weak align:4 +workable__10WorkObjectFR8Vector3f = .text:0x8009F48C; // type:function size:0x8 scope:weak align:4 +@8@update__9ObjectMgrFv = .text:0x8009F494; // type:function size:0x8 scope:weak align:4 +__ct__Q210PathFinder6BufferFv = .text:0x8009F49C; // type:function size:0x14 scope:weak align:4 +findASync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009F4B0; // type:function size:0xB4 scope:global align:4 +checkASync__10PathFinderFUl = .text:0x8009F564; // type:function size:0x88 scope:global align:4 +releaseHandle__10PathFinderFUl = .text:0x8009F5EC; // type:function size:0xD8 scope:global align:4 +updateClient__10PathFinderFRQ210PathFinder6Clienti = .text:0x8009F6C4; // type:function size:0x340 scope:global align:4 +findSync__10PathFinderFPP8WayPointiiib = .text:0x8009FA04; // type:function size:0x84 scope:global align:4 +findSync__10PathFinderFPQ210PathFinder6Bufferiib = .text:0x8009FA88; // type:function size:0x230 scope:global align:4 +getWayPoint__10PathFinderFi = .text:0x8009FCB8; // type:function size:0x14 scope:global align:4 +selectWay__10PathFinderFRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x8009FCCC; // type:function size:0x1FC scope:global align:4 +getPathFinder__8RouteMgrFUl = .text:0x8009FEC8; // type:function size:0x48 scope:global align:4 +update__8RouteMgrFv = .text:0x8009FF10; // type:function size:0xB0 scope:global align:4 +getNumWayPoints__8RouteMgrFUl = .text:0x8009FFC0; // type:function size:0x4C scope:global align:4 +getSafePosition__8RouteMgrFUlR8Vector3f = .text:0x800A000C; // type:function size:0x3B8 scope:global align:4 +findNearestEdge__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A03C4; // type:function size:0x474 scope:global align:4 +findNearestEdgeAvoidOff__8RouteMgrFPP8WayPointPP8WayPointUlR8Vector3fbbb = .text:0x800A0838; // type:function size:0x768 scope:global align:4 +findNearestWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A0FA0; // type:function size:0x16C scope:global align:4 +findNearestOffWayPoint__8RouteMgrFUlR8Vector3fb = .text:0x800A110C; // type:function size:0x16C scope:global align:4 +createOffPlane__8RouteMgrFUlR5PlaneP8WayPoint = .text:0x800A1278; // type:function size:0x17C scope:global align:4 +findNearestWayPointAll__8RouteMgrFUlR8Vector3f = .text:0x800A13F4; // type:function size:0x13C scope:global align:4 +getWayPoint__8RouteMgrFUli = .text:0x800A1530; // type:function size:0x5C scope:global align:4 +__ct__8RouteMgrFv = .text:0x800A158C; // type:function size:0x9C scope:global align:4 +setFlag__8WayPointFb = .text:0x800A1628; // type:function size:0x14 scope:global align:4 +construct__8RouteMgrFP6MapMgr = .text:0x800A163C; // type:function size:0x274 scope:global align:4 +__ct__8WayPointFv = .text:0x800A18B0; // type:function size:0x14 scope:weak align:4 +initLinks__8RouteMgrFv = .text:0x800A18C4; // type:function size:0x134 scope:global align:4 +id2idx__8RouteMgrFUl = .text:0x800A19F8; // type:function size:0x48 scope:global align:4 +getColinIndex__8RouteMgrFP10RouteGroupP10RoutePoint = .text:0x800A1A40; // type:function size:0x2C scope:global align:4 +resetLinkInfos__8WayPointFv = .text:0x800A1A6C; // type:function size:0x90 scope:global align:4 +initLinkInfos__8WayPointFv = .text:0x800A1AFC; // type:function size:0x3BC scope:global align:4 +findSyncOnyon__10PathFinderFR8Vector3fPQ210PathFinder6Bufferiib = .text:0x800A1EB8; // type:function size:0x580 scope:global align:4 +selectWayOnyon__10PathFinderFiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A2438; // type:function size:0x264 scope:global align:4 +selectSecondBestWayOnyon__10PathFinderFR8Vector3fRiiRQ210PathFinder6BufferiPQ210PathFinder6Bufferib = .text:0x800A269C; // type:function size:0x52C scope:global align:4 +refresh__8RouteMgrFR8Graphics = .text:0x800A2BC8; // type:function size:0x134 scope:global align:4 +drawBattenPoleSpec__FR8GraphicsR8Vector3ffPcR6Colour = .text:0x800A2CFC; // type:function size:0x224 scope:local align:4 +refresh__8WayPointFR8Graphics = .text:0x800A2F20; // type:function size:0x3C0 scope:global align:4 +__ct__5SeMgrFv = .text:0x800A32E0; // type:function size:0x180 scope:global align:4 +playNaviSound__5SeMgrFll = .text:0x800A3460; // type:function size:0x28 scope:global align:4 +addInfo__5SeMgrFiPc = .text:0x800A3488; // type:function size:0x34 scope:global align:4 +update__5SeMgrFv = .text:0x800A34BC; // type:function size:0x4 scope:global align:4 +joinBattle__5SeMgrFv = .text:0x800A34C0; // type:function size:0x10 scope:global align:4 +leaveBattle__5SeMgrFv = .text:0x800A34D0; // type:function size:0x24 scope:global align:4 +setPikiNum__5SeMgrFi = .text:0x800A34F4; // type:function size:0x38 scope:global align:4 +doRender__5SeWinFR8Graphics = .text:0x800A352C; // type:function size:0xE4 scope:global align:4 +update__5SeWinFv = .text:0x800A3610; // type:function size:0x2E4 scope:global align:4 +open__5SeWinFv = .text:0x800A38F4; // type:function size:0x7C scope:global align:4 +close__5SeWinFv = .text:0x800A3970; // type:function size:0x4C scope:global align:4 +__ct__10SeConstantFv = .text:0x800A39BC; // type:function size:0x134 scope:global align:4 +read__10SeConstantFR18RandomAccessStream = .text:0x800A3AF0; // type:function size:0x24 scope:weak align:4 +__ct__9SeContextFv = .text:0x800A3B14; // type:function size:0x70 scope:global align:4 +__ct__9SeContextFP8Creaturei = .text:0x800A3B84; // type:function size:0x68 scope:global align:4 +setContext__9SeContextFP8Creaturei = .text:0x800A3BEC; // type:function size:0x9C scope:global align:4 +playSound__9SeContextFi = .text:0x800A3C88; // type:function size:0xD4 scope:global align:4 +stopSound__9SeContextFi = .text:0x800A3D5C; // type:function size:0x48 scope:global align:4 +update__9SeContextFv = .text:0x800A3DA4; // type:function size:0x94 scope:global align:4 +releaseEvent__9SeContextFv = .text:0x800A3E38; // type:function size:0x58 scope:global align:4 +__ct__8SeSystemFv = .text:0x800A3E90; // type:function size:0x120 scope:global align:4 +__ct__Q28SeSystem5EventFv = .text:0x800A3FB0; // type:function size:0x14 scope:weak align:4 +initEvent__8SeSystemFv = .text:0x800A3FC4; // type:function size:0x78 scope:global align:4 +resetSystem__8SeSystemFv = .text:0x800A403C; // type:function size:0x78 scope:global align:4 +createEvent__8SeSystemFP9SeContextiP8SVector_ = .text:0x800A40B4; // type:function size:0x20C scope:global align:4 +playPikiSound__8SeSystemFiR8Vector3f = .text:0x800A42C0; // type:function size:0x2C scope:global align:4 +playSoundDirect__8SeSystemFiiR8Vector3f = .text:0x800A42EC; // type:function size:0x394 scope:global align:4 +destroyEvent__8SeSystemFP9SeContextl = .text:0x800A4680; // type:function size:0x108 scope:global align:4 +getEvent__8SeSystemFP9SeContext = .text:0x800A4788; // type:function size:0x48 scope:global align:4 +draw3d__8SeSystemFR8Graphics = .text:0x800A47D0; // type:function size:0x1B8 scope:global align:4 +draw2d__8SeSystemFR8Graphics = .text:0x800A4988; // type:function size:0x2D0 scope:global align:4 +dumpEvents__8SeSystemFv = .text:0x800A4C58; // type:function size:0xB8 scope:global align:4 +update__8SeSystemFR8GraphicsR8Vector3f = .text:0x800A4D10; // type:function size:0x368 scope:global align:4 +isBossBgm__4BossFv = .text:0x800A5078; // type:function size:0x8 scope:weak align:4 +calcCameraPos__8SeSystemFR8Vector3fR8Vector3f = .text:0x800A5080; // type:function size:0xFC scope:global align:4 +getJacID__8SeSystemFi = .text:0x800A517C; // type:function size:0x18 scope:global align:4 +exitCourse__8SeSystemFv = .text:0x800A5194; // type:function size:0x98 scope:global align:4 +playSysSe__8SeSystemFi = .text:0x800A522C; // type:function size:0x34 scope:global align:4 +stopSysSe__8SeSystemFi = .text:0x800A5260; // type:function size:0x34 scope:global align:4 +playPlayerSe__8SeSystemFi = .text:0x800A5294; // type:function size:0x34 scope:global align:4 +stopPlayerSe__8SeSystemFi = .text:0x800A52C8; // type:function size:0x34 scope:global align:4 +__ct__13UpdateContextFv = .text:0x800A52FC; // type:function size:0x14 scope:global align:4 +updatable__13UpdateContextFv = .text:0x800A5310; // type:function size:0x4C scope:global align:4 +init__13UpdateContextFP9UpdateMgr = .text:0x800A535C; // type:function size:0x30 scope:global align:4 +exit__13UpdateContextFv = .text:0x800A538C; // type:function size:0x4C scope:global align:4 +__ct__9UpdateMgrFv = .text:0x800A53D8; // type:function size:0x1C scope:global align:4 +update__9UpdateMgrFv = .text:0x800A53F4; // type:function size:0x24 scope:global align:4 +updatable__9UpdateMgrFP13UpdateContext = .text:0x800A5418; // type:function size:0x30 scope:global align:4 +create__9UpdateMgrFi = .text:0x800A5448; // type:function size:0x94 scope:global align:4 +addClient__9UpdateMgrFP13UpdateContext = .text:0x800A54DC; // type:function size:0x90 scope:global align:4 +removeClient__9UpdateMgrFP13UpdateContext = .text:0x800A556C; // type:function size:0x5C scope:global align:4 +getCreature__6CPlateFi = .text:0x800A55C8; // type:function size:0x14 scope:global align:4 +__ct__6CPlateFP6MapMgr = .text:0x800A55DC; // type:function size:0x22C scope:global align:4 +__ct__Q26CPlate4SlotFv = .text:0x800A5808; // type:function size:0x30 scope:weak align:4 +canNaviRunFast__6CPlateFv = .text:0x800A5838; // type:function size:0x8 scope:global align:4 +init__6CPlateFR8Vector3f = .text:0x800A5840; // type:function size:0x4 scope:global align:4 +setPos__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A5844; // type:function size:0x1C0 scope:global align:4 +setPosGray__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A5A04; // type:function size:0x1BC scope:global align:4 +getSlot__6CPlateFP8CreatureP17SlotChangeListner = .text:0x800A5BC0; // type:function size:0xB0 scope:global align:4 +changeFlower__6CPlateFP4Piki = .text:0x800A5C70; // type:function size:0x50 scope:global align:4 +releaseSlot__6CPlateFP8Creaturei = .text:0x800A5CC0; // type:function size:0x144 scope:global align:4 +validSlot__6CPlateFi = .text:0x800A5E04; // type:function size:0x24 scope:global align:4 +sortByColor__6CPlateFP4Piki = .text:0x800A5E28; // type:function size:0x424 scope:global align:4 +rearrangeSlot__6CPlateFR8Vector3ffR8Vector3f = .text:0x800A624C; // type:function size:0x2DC scope:global align:4 +refresh__6CPlateFif = .text:0x800A6528; // type:function size:0x188 scope:global align:4 +refreshSlot__6CPlateFv = .text:0x800A66B0; // type:function size:0x234 scope:global align:4 +update__6CPlateFv = .text:0x800A68E4; // type:function size:0x38 scope:global align:4 +render__6CPlateFR8Graphics = .text:0x800A691C; // type:function size:0x2CC scope:global align:4 +getFirst__6CPlateFv = .text:0x800A6BE8; // type:function size:0x8 scope:weak align:4 +getNext__6CPlateFi = .text:0x800A6BF0; // type:function size:0x8 scope:weak align:4 +isDone__6CPlateFi = .text:0x800A6BF8; // type:function size:0x18 scope:weak align:4 +read__6CPlateFR18RandomAccessStream = .text:0x800A6C10; // type:function size:0x24 scope:weak align:4 +@8@read__6CPlateFR18RandomAccessStream = .text:0x800A6C34; // type:function size:0x8 scope:weak align:4 +@8@render__6CPlateFR8Graphics = .text:0x800A6C3C; // type:function size:0x8 scope:weak align:4 +@8@update__6CPlateFv = .text:0x800A6C44; // type:function size:0x8 scope:weak align:4 +__ct__8ActStoneFP4Piki = .text:0x800A6C4C; // type:function size:0x54 scope:global align:4 +init__8ActStoneFP8Creature = .text:0x800A6CA0; // type:function size:0x58 scope:global align:4 +exec__8ActStoneFv = .text:0x800A6CF8; // type:function size:0x74 scope:global align:4 +cleanup__8ActStoneFv = .text:0x800A6D6C; // type:function size:0x4C scope:global align:4 +initApproach__8ActStoneFv = .text:0x800A6DB8; // type:function size:0x84 scope:global align:4 +exeApproach__8ActStoneFv = .text:0x800A6E3C; // type:function size:0x190 scope:global align:4 +initAdjust__8ActStoneFv = .text:0x800A6FCC; // type:function size:0xC scope:global align:4 +exeAdjust__8ActStoneFv = .text:0x800A6FD8; // type:function size:0x1C4 scope:global align:4 +initAttack__8ActStoneFv = .text:0x800A719C; // type:function size:0x94 scope:global align:4 +exeAttack__8ActStoneFv = .text:0x800A7230; // type:function size:0x174 scope:global align:4 +animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A73A4; // type:function size:0x30C scope:global align:4 +__dt__8ActStoneFv = .text:0x800A76B0; // type:function size:0x6C scope:weak align:4 +defaultInitialiser__6ActionFv = .text:0x800A771C; // type:function size:0x4 scope:weak align:4 +dump__6ActionFv = .text:0x800A7720; // type:function size:0x4 scope:weak align:4 +draw__6ActionFR8Graphics = .text:0x800A7724; // type:function size:0x4 scope:weak align:4 +resume__6ActionFv = .text:0x800A7728; // type:function size:0x4 scope:weak align:4 +restart__6ActionFv = .text:0x800A772C; // type:function size:0x4 scope:weak align:4 +resumable__6ActionFv = .text:0x800A7730; // type:function size:0x8 scope:weak align:4 +getInfo__6ActionFPc = .text:0x800A7738; // type:function size:0x2C scope:weak align:4 +procBounceMsg__15Receiver<4Piki>FP4PikiP9MsgBounce = .text:0x800A7764; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Piki>FP4PikiP8MsgStick = .text:0x800A7768; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Piki>FP4PikiP7MsgHang = .text:0x800A776C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Piki>FP4PikiP9MsgTarget = .text:0x800A7770; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Piki>FP4PikiP10MsgCollide = .text:0x800A7774; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Piki>FP4PikiP7MsgAnim = .text:0x800A7778; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Piki>FP4PikiP9MsgDamage = .text:0x800A777C; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Piki>FP4PikiP7MsgWall = .text:0x800A7780; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Piki>FP4PikiP10MsgOffWall = .text:0x800A7784; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Piki>FP4PikiP7MsgUser = .text:0x800A7788; // type:function size:0x4 scope:weak align:4 +procGroundMsg__15Receiver<4Piki>FP4PikiP9MsgGround = .text:0x800A778C; // type:function size:0x4 scope:weak align:4 +procMsg__15Receiver<4Piki>FP4PikiP3Msg = .text:0x800A7790; // type:function size:0x118 scope:weak align:4 +@20@animationKeyUpdated__8ActStoneFR16PaniAnimKeyEvent = .text:0x800A78A8; // type:function size:0x8 scope:weak align:4 +__ct__7ActPickFP4Piki = .text:0x800A78B0; // type:function size:0x80 scope:global align:4 +initialise__Q27ActPick11InitialiserFP6Action = .text:0x800A7930; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A7934; // type:function size:0xD4 scope:global align:4 +init__7ActPickFP8Creature = .text:0x800A7A08; // type:function size:0xB8 scope:global align:4 +cleanup__7ActPickFv = .text:0x800A7AC0; // type:function size:0x40 scope:global align:4 +exec__7ActPickFv = .text:0x800A7B00; // type:function size:0xB4 scope:global align:4 +initialise__Q26ActPut11InitialiserFP6Action = .text:0x800A7BB4; // type:function size:0x4 scope:global align:4 +init__6ActPutFP8Creature = .text:0x800A7BB8; // type:function size:0xC scope:global align:4 +cleanup__6ActPutFv = .text:0x800A7BC4; // type:function size:0x4 scope:global align:4 +exec__6ActPutFv = .text:0x800A7BC8; // type:function size:0xD8 scope:global align:4 +__ct__9ActAdjustFP4Piki = .text:0x800A7CA0; // type:function size:0x6C scope:global align:4 +initialise__Q29ActAdjust11InitialiserFP6Action = .text:0x800A7D0C; // type:function size:0x14 scope:global align:4 +init__9ActAdjustFP8Creature = .text:0x800A7D20; // type:function size:0x200 scope:global align:4 +cleanup__9ActAdjustFv = .text:0x800A7F20; // type:function size:0x14 scope:global align:4 +exec__9ActAdjustFv = .text:0x800A7F34; // type:function size:0x11C scope:global align:4 +__dt__9ActAdjustFv = .text:0x800A8050; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__9ActAdjustFv = .text:0x800A80B4; // type:function size:0x14 scope:weak align:4 +__dt__6ActPutFv = .text:0x800A80C8; // type:function size:0x64 scope:weak align:4 +__dt__7ActPickFv = .text:0x800A812C; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActPickFR16PaniAnimKeyEvent = .text:0x800A8198; // type:function size:0x8 scope:weak align:4 +__ct__9ActAttackFP4Piki = .text:0x800A81A0; // type:function size:0xC8 scope:global align:4 +__dt__9AndActionFv = .text:0x800A8268; // type:function size:0x64 scope:weak align:4 +init__9ActAttackFP8Creature = .text:0x800A82CC; // type:function size:0x150 scope:global align:4 +animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800A841C; // type:function size:0xFC scope:global align:4 +resume__9ActAttackFv = .text:0x800A8518; // type:function size:0xC scope:global align:4 +restart__9ActAttackFv = .text:0x800A8524; // type:function size:0x54 scope:global align:4 +resumable__9ActAttackFv = .text:0x800A8578; // type:function size:0x8 scope:global align:4 +findTarget__9ActAttackFv = .text:0x800A8580; // type:function size:0x8 scope:global align:4 +exec__9ActAttackFv = .text:0x800A8588; // type:function size:0x33C scope:global align:4 +cleanup__9ActAttackFv = .text:0x800A88C4; // type:function size:0x64 scope:global align:4 +__ct__13ActJumpAttackFP4Piki = .text:0x800A8928; // type:function size:0x60 scope:global align:4 +init__13ActJumpAttackFP8Creature = .text:0x800A8988; // type:function size:0x1CC scope:global align:4 +procStickMsg__13ActJumpAttackFP4PikiP8MsgStick = .text:0x800A8B54; // type:function size:0x9C scope:global align:4 +procBounceMsg__13ActJumpAttackFP4PikiP9MsgBounce = .text:0x800A8BF0; // type:function size:0x1C scope:global align:4 +procCollideMsg__13ActJumpAttackFP4PikiP10MsgCollide = .text:0x800A8C0C; // type:function size:0x268 scope:global align:4 +exec__13ActJumpAttackFv = .text:0x800A8E74; // type:function size:0xE6C scope:global align:4 +cleanup__13ActJumpAttackFv = .text:0x800A9CE0; // type:function size:0x4C scope:global align:4 +attackHit__13ActJumpAttackFv = .text:0x800A9D2C; // type:function size:0x2C scope:global align:4 +animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800A9D58; // type:function size:0x12C scope:global align:4 +doClimb__13ActJumpAttackFv = .text:0x800A9E84; // type:function size:0x458 scope:global align:4 +__dt__13ActJumpAttackFv = .text:0x800AA2DC; // type:function size:0x6C scope:weak align:4 +__dt__9ActAttackFv = .text:0x800AA348; // type:function size:0x7C scope:weak align:4 +@24@animationKeyUpdated__9ActAttackFR16PaniAnimKeyEvent = .text:0x800AA3C4; // type:function size:0x8 scope:weak align:4 +@20@animationKeyUpdated__13ActJumpAttackFR16PaniAnimKeyEvent = .text:0x800AA3CC; // type:function size:0x8 scope:weak align:4 +__ct__13ActFreeSelectFP4Piki = .text:0x800AA3D4; // type:function size:0x108 scope:global align:4 +init__13ActFreeSelectFP8Creature = .text:0x800AA4DC; // type:function size:0xF4 scope:global align:4 +finishRest__13ActFreeSelectFv = .text:0x800AA5D0; // type:function size:0x84 scope:global align:4 +exec__13ActFreeSelectFv = .text:0x800AA654; // type:function size:0x108 scope:global align:4 +cleanup__13ActFreeSelectFv = .text:0x800AA75C; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActFreeSelectFP4PikiP9MsgTarget = .text:0x800AA760; // type:function size:0x78 scope:global align:4 +determine__13ActFreeSelectFv = .text:0x800AA7D8; // type:function size:0x2D8 scope:global align:4 +__ct__13ActBoreSelectFP4Piki = .text:0x800AAAB0; // type:function size:0x104 scope:global align:4 +init__13ActBoreSelectFP8Creature = .text:0x800AABB4; // type:function size:0xF4 scope:global align:4 +stop__13ActBoreSelectFv = .text:0x800AACA8; // type:function size:0xC scope:global align:4 +exec__13ActBoreSelectFv = .text:0x800AACB4; // type:function size:0x184 scope:global align:4 +cleanup__13ActBoreSelectFv = .text:0x800AAE38; // type:function size:0x4 scope:global align:4 +procTargetMsg__13ActBoreSelectFP4PikiP9MsgTarget = .text:0x800AAE3C; // type:function size:0x78 scope:global align:4 +procAnimMsg__13ActBoreSelectFP4PikiP7MsgAnim = .text:0x800AAEB4; // type:function size:0xBC scope:global align:4 +determine__13ActBoreSelectFv = .text:0x800AAF70; // type:function size:0x2D8 scope:global align:4 +__ct__11ActBoreTalkFP4Piki = .text:0x800AB248; // type:function size:0x80 scope:global align:4 +init__11ActBoreTalkFP8Creature = .text:0x800AB2C8; // type:function size:0xE8 scope:global align:4 +startTalk__11ActBoreTalkFv = .text:0x800AB3B0; // type:function size:0x214 scope:global align:4 +exec__11ActBoreTalkFv = .text:0x800AB5C4; // type:function size:0x128 scope:global align:4 +cleanup__11ActBoreTalkFv = .text:0x800AB6EC; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AB6F0; // type:function size:0x24 scope:global align:4 +init__13ActBoreListenFP8Creature = .text:0x800AB714; // type:function size:0x4 scope:global align:4 +exec__13ActBoreListenFv = .text:0x800AB718; // type:function size:0x8 scope:global align:4 +cleanup__13ActBoreListenFv = .text:0x800AB720; // type:function size:0x4 scope:global align:4 +procAnimMsg__13ActBoreListenFP4PikiP7MsgAnim = .text:0x800AB724; // type:function size:0x4 scope:global align:4 +__ct__14ActBoreOneshotFP4Piki = .text:0x800AB728; // type:function size:0x80 scope:global align:4 +finish__14ActBoreOneshotFv = .text:0x800AB7A8; // type:function size:0x38 scope:global align:4 +init__14ActBoreOneshotFP8Creature = .text:0x800AB7E0; // type:function size:0xE0 scope:global align:4 +exec__14ActBoreOneshotFv = .text:0x800AB8C0; // type:function size:0x1C scope:global align:4 +cleanup__14ActBoreOneshotFv = .text:0x800AB8DC; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AB8E0; // type:function size:0x18 scope:global align:4 +__ct__11ActBoreRestFP4Piki = .text:0x800AB8F8; // type:function size:0x80 scope:global align:4 +init__11ActBoreRestFP8Creature = .text:0x800AB978; // type:function size:0x8C scope:global align:4 +sitDown__11ActBoreRestFv = .text:0x800ABA04; // type:function size:0xE8 scope:global align:4 +exec__11ActBoreRestFv = .text:0x800ABAEC; // type:function size:0x2E8 scope:global align:4 +cleanup__11ActBoreRestFv = .text:0x800ABDD4; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800ABDD8; // type:function size:0x104 scope:global align:4 +__dt__11ActBoreRestFv = .text:0x800ABEDC; // type:function size:0x80 scope:weak align:4 +__dt__14ActBoreOneshotFv = .text:0x800ABF5C; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreListenFv = .text:0x800ABFDC; // type:function size:0x64 scope:weak align:4 +__dt__11ActBoreTalkFv = .text:0x800AC040; // type:function size:0x80 scope:weak align:4 +__dt__13ActBoreSelectFv = .text:0x800AC0C0; // type:function size:0x64 scope:weak align:4 +__dt__13ActFreeSelectFv = .text:0x800AC124; // type:function size:0x64 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreTalkFR16PaniAnimKeyEvent = .text:0x800AC188; // type:function size:0x14 scope:weak align:4 +@28@4@animationKeyUpdated__14ActBoreOneshotFR16PaniAnimKeyEvent = .text:0x800AC19C; // type:function size:0x14 scope:weak align:4 +@40@4@animationKeyUpdated__11ActBoreRestFR16PaniAnimKeyEvent = .text:0x800AC1B0; // type:function size:0x14 scope:weak align:4 +__ct__9ActBoMakeFP4Piki = .text:0x800AC1C4; // type:function size:0x54 scope:global align:4 +init__9ActBoMakeFP8Creature = .text:0x800AC218; // type:function size:0x40 scope:global align:4 +exec__9ActBoMakeFv = .text:0x800AC258; // type:function size:0xA0 scope:global align:4 +initApproach__9ActBoMakeFv = .text:0x800AC2F8; // type:function size:0x64 scope:global align:4 +exeApproach__9ActBoMakeFv = .text:0x800AC35C; // type:function size:0x12C scope:global align:4 +initWork__9ActBoMakeFv = .text:0x800AC488; // type:function size:0xB4 scope:global align:4 +exeWork__9ActBoMakeFv = .text:0x800AC53C; // type:function size:0x8 scope:global align:4 +cleanup__9ActBoMakeFv = .text:0x800AC544; // type:function size:0x24 scope:global align:4 +animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC568; // type:function size:0x78 scope:global align:4 +__dt__9ActBoMakeFv = .text:0x800AC5E0; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__9ActBoMakeFR16PaniAnimKeyEvent = .text:0x800AC64C; // type:function size:0x8 scope:weak align:4 +__ct__6ActBouFP4Piki = .text:0x800AC654; // type:function size:0x6C scope:global align:4 +init__6ActBouFP8Creature = .text:0x800AC6C0; // type:function size:0xA8 scope:global align:4 +exec__6ActBouFv = .text:0x800AC768; // type:function size:0x4C scope:global align:4 +gotoLeg__6ActBouFv = .text:0x800AC7B4; // type:function size:0x210 scope:global align:4 +procCollideMsg__6ActBouFP4PikiP10MsgCollide = .text:0x800AC9C4; // type:function size:0x180 scope:global align:4 +climb__6ActBouFv = .text:0x800ACB44; // type:function size:0x108 scope:global align:4 +cleanup__6ActBouFv = .text:0x800ACC4C; // type:function size:0xA8 scope:global align:4 +__dt__6ActBouFv = .text:0x800ACCF4; // type:function size:0x64 scope:weak align:4 +__ct__9ActBridgeFP4Piki = .text:0x800ACD58; // type:function size:0xAC scope:global align:4 +init__9ActBridgeFP8Creature = .text:0x800ACE04; // type:function size:0xDC scope:global align:4 +dump__9ActBridgeFv = .text:0x800ACEE0; // type:function size:0x6C scope:global align:4 +exec__9ActBridgeFv = .text:0x800ACF4C; // type:function size:0x94 scope:global align:4 +procWallMsg__9ActBridgeFP4PikiP7MsgWall = .text:0x800ACFE0; // type:function size:0x28 scope:global align:4 +animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800AD008; // type:function size:0xB0 scope:global align:4 +cleanup__9ActBridgeFv = .text:0x800AD0B8; // type:function size:0x24 scope:global align:4 +newExeApproach__9ActBridgeFv = .text:0x800AD0DC; // type:function size:0x360 scope:global align:4 +newInitGo__9ActBridgeFv = .text:0x800AD43C; // type:function size:0xE0 scope:global align:4 +newExeGo__9ActBridgeFv = .text:0x800AD51C; // type:function size:0x30C scope:global align:4 +newInitWork__9ActBridgeFv = .text:0x800AD828; // type:function size:0xD0 scope:global align:4 +newExeWork__9ActBridgeFv = .text:0x800AD8F8; // type:function size:0x668 scope:global align:4 +__dt__9ActBridgeFv = .text:0x800ADF60; // type:function size:0x80 scope:weak align:4 +@80@4@animationKeyUpdated__9ActBridgeFR16PaniAnimKeyEvent = .text:0x800ADFE0; // type:function size:0x14 scope:weak align:4 +__ct__12ActBreakWallFP4Piki = .text:0x800ADFF4; // type:function size:0x70 scope:global align:4 +init__12ActBreakWallFP8Creature = .text:0x800AE064; // type:function size:0x154 scope:global align:4 +procCollideMsg__12ActBreakWallFP4PikiP10MsgCollide = .text:0x800AE1B8; // type:function size:0xC4 scope:global align:4 +animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AE27C; // type:function size:0x190 scope:global align:4 +exec__12ActBreakWallFv = .text:0x800AE40C; // type:function size:0x148 scope:global align:4 +isAlive__12BuildingItemFv = .text:0x800AE554; // type:function size:0x20 scope:weak align:4 +gotoWall__12ActBreakWallFv = .text:0x800AE574; // type:function size:0xC8 scope:global align:4 +initBreakWall__12ActBreakWallFv = .text:0x800AE63C; // type:function size:0x90 scope:global align:4 +startWorkMotion__12ActBreakWallFv = .text:0x800AE6CC; // type:function size:0xF4 scope:global align:4 +breakWall__12ActBreakWallFv = .text:0x800AE7C0; // type:function size:0x2E4 scope:global align:4 +isCompleted__12BuildingItemFv = .text:0x800AEAA4; // type:function size:0x1C scope:weak align:4 +cleanup__12ActBreakWallFv = .text:0x800AEAC0; // type:function size:0x4 scope:global align:4 +__dt__12ActBreakWallFv = .text:0x800AEAC4; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActBreakWallFR16PaniAnimKeyEvent = .text:0x800AEB30; // type:function size:0x8 scope:weak align:4 +turnOver__12ActTransportFv = .text:0x800AEB38; // type:function size:0x290 scope:global align:4 +isStickLeader__12ActTransportFv = .text:0x800AEDC8; // type:function size:0x150 scope:global align:4 +getCarriers__12ActTransportFv = .text:0x800AEF18; // type:function size:0x190 scope:global align:4 +__ct__12ActTransportFP4Piki = .text:0x800AF0A8; // type:function size:0xF4 scope:global align:4 +findPellet__12ActTransportFv = .text:0x800AF19C; // type:function size:0x160 scope:global align:4 +init__12ActTransportFP8Creature = .text:0x800AF2FC; // type:function size:0x160 scope:global align:4 +setSlotIndex__12ActTransportFv = .text:0x800AF45C; // type:function size:0x4C scope:global align:4 +animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800AF4A8; // type:function size:0x194 scope:global align:4 +execJump__12ActTransportFv = .text:0x800AF63C; // type:function size:0x4F0 scope:global align:4 +gotoLiftPos__12ActTransportFv = .text:0x800AFB2C; // type:function size:0x740 scope:global align:4 +doLift__12ActTransportFv = .text:0x800B026C; // type:function size:0x664 scope:global align:4 +useWaterRoute__12ActTransportFv = .text:0x800B08D0; // type:function size:0x168 scope:global align:4 +exec__12ActTransportFv = .text:0x800B0A38; // type:function size:0x8B4 scope:global align:4 +moveGuruGuru__12ActTransportFv = .text:0x800B12EC; // type:function size:0x8A8 scope:global align:4 +decideGoal__12ActTransportFP8Creature = .text:0x800B1B94; // type:function size:0x318 scope:global align:4 +cleanup__12ActTransportFv = .text:0x800B1EAC; // type:function size:0x1B8 scope:global align:4 +crGetPoint__12ActTransportFi = .text:0x800B2064; // type:function size:0x1D8 scope:global align:4 +crPointOpen__12ActTransportFi = .text:0x800B223C; // type:function size:0x8C scope:global align:4 +crInit__12ActTransportFv = .text:0x800B22C8; // type:function size:0x514 scope:global align:4 +crMakeRefs__12ActTransportFv = .text:0x800B27DC; // type:function size:0x80 scope:global align:4 +findObstacle__12ActTransportFv = .text:0x800B285C; // type:function size:0x32C scope:global align:4 +crMove__12ActTransportFv = .text:0x800B2B88; // type:function size:0x94C scope:global align:4 +draw__12ActTransportFR8Graphics = .text:0x800B34D4; // type:function size:0x7C4 scope:global align:4 +moveToWayPoint__12ActTransportFv = .text:0x800B3C98; // type:function size:0x6FC scope:global align:4 +__dt__12ActTransportFv = .text:0x800B4394; // type:function size:0x80 scope:weak align:4 +@184@4@animationKeyUpdated__12ActTransportFR16PaniAnimKeyEvent = .text:0x800B4414; // type:function size:0x14 scope:weak align:4 +__ct__9ActKinokoFP4Piki = .text:0x800B4428; // type:function size:0xA4 scope:global align:4 +init__9ActKinokoFP8Creature = .text:0x800B44CC; // type:function size:0x80 scope:global align:4 +exec__9ActKinokoFv = .text:0x800B454C; // type:function size:0x6C scope:global align:4 +exeStick__9ActKinokoFv = .text:0x800B45B8; // type:function size:0x80 scope:global align:4 +exeJump__9ActKinokoFv = .text:0x800B4638; // type:function size:0x128 scope:global align:4 +initAttack__9ActKinokoFv = .text:0x800B4760; // type:function size:0xC scope:global align:4 +exeAttack__9ActKinokoFv = .text:0x800B476C; // type:function size:0x1C0 scope:global align:4 +initBoid__9ActKinokoFv = .text:0x800B492C; // type:function size:0x288 scope:global align:4 +exeBoid__9ActKinokoFv = .text:0x800B4BB4; // type:function size:0x85C scope:global align:4 +animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B5410; // type:function size:0x98 scope:global align:4 +cleanup__9ActKinokoFv = .text:0x800B54A8; // type:function size:0x4 scope:global align:4 +__dt__9ActKinokoFv = .text:0x800B54AC; // type:function size:0x80 scope:weak align:4 +@48@4@animationKeyUpdated__9ActKinokoFR16PaniAnimKeyEvent = .text:0x800B552C; // type:function size:0x14 scope:weak align:4 +__ct__8ActChaseFP4Piki = .text:0x800B5540; // type:function size:0x6C scope:global align:4 +initialise__Q28ActChase11InitialiserFP6Action = .text:0x800B55AC; // type:function size:0x4 scope:global align:4 +init__8ActChaseFP8Creature = .text:0x800B55B0; // type:function size:0xD4 scope:global align:4 +cleanup__8ActChaseFv = .text:0x800B5684; // type:function size:0x40 scope:global align:4 +exec__8ActChaseFv = .text:0x800B56C4; // type:function size:0x23C scope:global align:4 +__dt__8ActChaseFv = .text:0x800B5900; // type:function size:0x64 scope:weak align:4 +__ct__8ActCrowdFP4Piki = .text:0x800B5964; // type:function size:0xFC scope:global align:4 +inform__8ActCrowdFi = .text:0x800B5A60; // type:function size:0x8 scope:global align:4 +startSort__8ActCrowdFv = .text:0x800B5A68; // type:function size:0x2C scope:global align:4 +init__8ActCrowdFP8Creature = .text:0x800B5A94; // type:function size:0x15C scope:global align:4 +procCollideMsg__8ActCrowdFP4PikiP10MsgCollide = .text:0x800B5BF0; // type:function size:0xE4 scope:global align:4 +procWallMsg__8ActCrowdFP4PikiP7MsgWall = .text:0x800B5CD4; // type:function size:0x34 scope:global align:4 +procAnimMsg__8ActCrowdFP4PikiP7MsgAnim = .text:0x800B5D08; // type:function size:0x11C scope:global align:4 +cleanup__8ActCrowdFv = .text:0x800B5E24; // type:function size:0xFC scope:global align:4 +exec__8ActCrowdFv = .text:0x800B5F20; // type:function size:0x164C scope:global align:4 +startZawatuki__8ActCrowdFv = .text:0x800B756C; // type:function size:0x58 scope:global align:4 +finishZawatuki__8ActCrowdFv = .text:0x800B75C4; // type:function size:0x4 scope:global align:4 +__dt__8ActCrowdFv = .text:0x800B75C8; // type:function size:0x80 scope:weak align:4 +resumable__8ActCrowdFv = .text:0x800B7648; // type:function size:0x8 scope:weak align:4 +@128@4@inform__8ActCrowdFi = .text:0x800B7650; // type:function size:0x14 scope:weak align:4 +__ct__8ActDecoyFP4Piki = .text:0x800B7664; // type:function size:0x54 scope:global align:4 +findTeki__8ActDecoyFv = .text:0x800B76B8; // type:function size:0x178 scope:global align:4 +init__8ActDecoyFP8Creature = .text:0x800B7830; // type:function size:0x5C scope:global align:4 +cleanup__8ActDecoyFv = .text:0x800B788C; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B7890; // type:function size:0x4 scope:global align:4 +exec__8ActDecoyFv = .text:0x800B7894; // type:function size:0x514 scope:global align:4 +__dt__8ActDecoyFv = .text:0x800B7DA8; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__8ActDecoyFR16PaniAnimKeyEvent = .text:0x800B7E14; // type:function size:0x8 scope:weak align:4 +__ct__8ActEnterFP4Piki = .text:0x800B7E1C; // type:function size:0x60 scope:global align:4 +init__8ActEnterFP8Creature = .text:0x800B7E7C; // type:function size:0x1F0 scope:global align:4 +findLeg__8ActEnterFv = .text:0x800B806C; // type:function size:0xCC scope:global align:4 +exec__8ActEnterFv = .text:0x800B8138; // type:function size:0xE8 scope:global align:4 +procCollideMsg__8ActEnterFP4PikiP10MsgCollide = .text:0x800B8220; // type:function size:0x58 scope:global align:4 +gotoLeg__8ActEnterFv = .text:0x800B8278; // type:function size:0x1AC scope:global align:4 +climb__8ActEnterFv = .text:0x800B8424; // type:function size:0x234 scope:global align:4 +cleanup__8ActEnterFv = .text:0x800B8658; // type:function size:0x24 scope:global align:4 +__dt__8ActEnterFv = .text:0x800B867C; // type:function size:0x64 scope:weak align:4 +__ct__9ActEscapeFP4Piki = .text:0x800B86E0; // type:function size:0x7C scope:global align:4 +initialise__Q29ActEscape11InitialiserFP6Action = .text:0x800B875C; // type:function size:0x4 scope:global align:4 +init__9ActEscapeFP8Creature = .text:0x800B8760; // type:function size:0xF8 scope:global align:4 +cleanup__9ActEscapeFv = .text:0x800B8858; // type:function size:0x40 scope:global align:4 +exec__9ActEscapeFv = .text:0x800B8898; // type:function size:0x2CC scope:global align:4 +getInfo__9ActEscapeFPc = .text:0x800B8B64; // type:function size:0x58 scope:global align:4 +__dt__9ActEscapeFv = .text:0x800B8BBC; // type:function size:0x64 scope:weak align:4 +__ct__7ActExitFP4Piki = .text:0x800B8C20; // type:function size:0x60 scope:global align:4 +init__7ActExitFP8Creature = .text:0x800B8C80; // type:function size:0xC0 scope:global align:4 +procCollideMsg__7ActExitFP4PikiP10MsgCollide = .text:0x800B8D40; // type:function size:0x2C scope:global align:4 +exec__7ActExitFv = .text:0x800B8D6C; // type:function size:0x2E8 scope:global align:4 +cleanup__7ActExitFv = .text:0x800B9054; // type:function size:0xC0 scope:global align:4 +__dt__7ActExitFv = .text:0x800B9114; // type:function size:0x64 scope:weak align:4 +__ct__7ActMineFP4Piki = .text:0x800B9178; // type:function size:0x80 scope:global align:4 +init__7ActMineFP8Creature = .text:0x800B91F8; // type:function size:0x64 scope:global align:4 +initWatch__7ActMineFv = .text:0x800B925C; // type:function size:0x90 scope:global align:4 +exeMine__7ActMineFv = .text:0x800B92EC; // type:function size:0x14C scope:global align:4 +exec__7ActMineFv = .text:0x800B9438; // type:function size:0x200 scope:global align:4 +cleanup__7ActMineFv = .text:0x800B9638; // type:function size:0x4 scope:global align:4 +animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B963C; // type:function size:0xC0 scope:global align:4 +__dt__7ActMineFv = .text:0x800B96FC; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__7ActMineFR16PaniAnimKeyEvent = .text:0x800B977C; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800B9790; // type:function size:0x32C scope:global align:4 +__ct__12ActFormationFP4Piki = .text:0x800B9ABC; // type:function size:0x5C scope:global align:4 +getFormPoint__12ActFormationFv = .text:0x800B9B18; // type:function size:0x148 scope:global align:4 +init__12ActFormationFP8Creature = .text:0x800B9C60; // type:function size:0xF4 scope:global align:4 +cleanup__12ActFormationFv = .text:0x800B9D54; // type:function size:0x4C scope:global align:4 +exec__12ActFormationFv = .text:0x800B9DA0; // type:function size:0x6A4 scope:global align:4 +__dt__12ActFormationFv = .text:0x800BA444; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__12ActFormationFR16PaniAnimKeyEvent = .text:0x800BA4B0; // type:function size:0x8 scope:weak align:4 +__ct__7ActFreeFP4Piki = .text:0x800BA4B8; // type:function size:0xCC scope:global align:4 +initBoid__7ActFreeFR8Vector3ff = .text:0x800BA584; // type:function size:0xD0 scope:global align:4 +exeBoid__7ActFreeFv = .text:0x800BA654; // type:function size:0x1C4 scope:global align:4 +init__7ActFreeFP8Creature = .text:0x800BA818; // type:function size:0x2F4 scope:global align:4 +cleanup__7ActFreeFv = .text:0x800BAB0C; // type:function size:0xAC scope:global align:4 +animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BABB8; // type:function size:0x4 scope:global align:4 +exec__7ActFreeFv = .text:0x800BABBC; // type:function size:0xF0 scope:global align:4 +procCollideMsg__7ActFreeFP4PikiP10MsgCollide = .text:0x800BACAC; // type:function size:0xD8 scope:global align:4 +__dt__7ActFreeFv = .text:0x800BAD84; // type:function size:0x80 scope:weak align:4 +resumable__7ActFreeFv = .text:0x800BAE04; // type:function size:0x8 scope:weak align:4 +@72@4@animationKeyUpdated__7ActFreeFR16PaniAnimKeyEvent = .text:0x800BAE0C; // type:function size:0x14 scope:weak align:4 +__ct__7ActGotoFP4Piki = .text:0x800BAE20; // type:function size:0x4C scope:global align:4 +initialise__Q27ActGoto11InitialiserFP6Action = .text:0x800BAE6C; // type:function size:0x7C scope:global align:4 +init__7ActGotoFP8Creature = .text:0x800BAEE8; // type:function size:0xD4 scope:global align:4 +cleanup__7ActGotoFv = .text:0x800BAFBC; // type:function size:0x40 scope:global align:4 +exec__7ActGotoFv = .text:0x800BAFFC; // type:function size:0x378 scope:global align:4 +__dt__7ActGotoFv = .text:0x800BB374; // type:function size:0x64 scope:weak align:4 +defaultInitialiser__7ActGotoFv = .text:0x800BB3D8; // type:function size:0x14 scope:weak align:4 +__ct__8ActGuardFP4Piki = .text:0x800BB3EC; // type:function size:0x84 scope:global align:4 +init__8ActGuardFP8Creature = .text:0x800BB470; // type:function size:0xC4 scope:global align:4 +cleanup__8ActGuardFv = .text:0x800BB534; // type:function size:0x11C scope:global align:4 +dump__8ActGuardFv = .text:0x800BB650; // type:function size:0xC scope:global align:4 +exec__8ActGuardFv = .text:0x800BB65C; // type:function size:0x71C scope:global align:4 +findFriend__8ActGuardFv = .text:0x800BBD78; // type:function size:0x1F4 scope:global align:4 +checkLoop__8ActGuardFP4Piki = .text:0x800BBF6C; // type:function size:0xFC scope:global align:4 +findFriend__8ActGuardFi = .text:0x800BC068; // type:function size:0x258 scope:global align:4 +setGoal__8ActGuardFv = .text:0x800BC2C0; // type:function size:0x1F8 scope:global align:4 +getLeft__8ActGuardFP4Piki = .text:0x800BC4B8; // type:function size:0x88 scope:global align:4 +getRight__8ActGuardFP4Piki = .text:0x800BC540; // type:function size:0x88 scope:global align:4 +setLeft__8ActGuardFv = .text:0x800BC5C8; // type:function size:0x1C4 scope:global align:4 +setRight__8ActGuardFv = .text:0x800BC78C; // type:function size:0x1C4 scope:global align:4 +__dt__8ActGuardFv = .text:0x800BC950; // type:function size:0x64 scope:weak align:4 +__ct__11ActPickItemFP4Piki = .text:0x800BC9B4; // type:function size:0xE0 scope:global align:4 +findItem__11ActPickItemFv = .text:0x800BCA94; // type:function size:0x180 scope:global align:4 +init__11ActPickItemFP8Creature = .text:0x800BCC14; // type:function size:0xB0 scope:global align:4 +exec__11ActPickItemFv = .text:0x800BCCC4; // type:function size:0xE8 scope:global align:4 +cleanup__11ActPickItemFv = .text:0x800BCDAC; // type:function size:0x40 scope:global align:4 +init__9ActFlowerFP8Creature = .text:0x800BCDEC; // type:function size:0x15C scope:global align:4 +animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BCF48; // type:function size:0x120 scope:global align:4 +cleanup__9ActFlowerFv = .text:0x800BD068; // type:function size:0x38 scope:global align:4 +exec__9ActFlowerFv = .text:0x800BD0A0; // type:function size:0x74 scope:global align:4 +__dt__9ActFlowerFv = .text:0x800BD114; // type:function size:0x80 scope:weak align:4 +__dt__11ActPickItemFv = .text:0x800BD194; // type:function size:0x74 scope:weak align:4 +@32@4@animationKeyUpdated__9ActFlowerFR16PaniAnimKeyEvent = .text:0x800BD208; // type:function size:0x14 scope:weak align:4 +__ct__15ActPickCreatureFP4Piki = .text:0x800BD21C; // type:function size:0xCC scope:global align:4 +init__15ActPickCreatureFP8Creature = .text:0x800BD2E8; // type:function size:0x20 scope:global align:4 +initialise__Q210ActDeliver11InitialiserFP6Action = .text:0x800BD308; // type:function size:0x64 scope:global align:4 +init__10ActDeliverFP8Creature = .text:0x800BD36C; // type:function size:0x84 scope:global align:4 +__dt__10ActDeliverFv = .text:0x800BD3F0; // type:function size:0x74 scope:weak align:4 +defaultInitialiser__10ActDeliverFv = .text:0x800BD464; // type:function size:0xC scope:weak align:4 +cleanup__10ActDeliverFv = .text:0x800BD470; // type:function size:0x40 scope:weak align:4 +initialise__Q26Action11InitialiserFP6Action = .text:0x800BD4B0; // type:function size:0x4 scope:weak align:4 +__dt__15ActPickCreatureFv = .text:0x800BD4B4; // type:function size:0x74 scope:weak align:4 +__ct__10ActPulloutFP4Piki = .text:0x800BD528; // type:function size:0x100 scope:global align:4 +init__10ActPulloutFP8Creature = .text:0x800BD628; // type:function size:0x250 scope:global align:4 +exec__10ActPulloutFv = .text:0x800BD878; // type:function size:0xDC scope:global align:4 +cleanup__10ActPulloutFv = .text:0x800BD954; // type:function size:0x50 scope:global align:4 +cleanup__18ActPulloutCreatureFv = .text:0x800BD9A4; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDA18; // type:function size:0x78 scope:global align:4 +__ct__18ActPulloutCreatureFP4Piki = .text:0x800BDA90; // type:function size:0x5C scope:global align:4 +init__18ActPulloutCreatureFP8Creature = .text:0x800BDAEC; // type:function size:0x94 scope:global align:4 +exec__18ActPulloutCreatureFv = .text:0x800BDB80; // type:function size:0x240 scope:global align:4 +__dt__18ActPulloutCreatureFv = .text:0x800BDDC0; // type:function size:0x6C scope:weak align:4 +__dt__10ActPulloutFv = .text:0x800BDE2C; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__18ActPulloutCreatureFR16PaniAnimKeyEvent = .text:0x800BDEA0; // type:function size:0x8 scope:weak align:4 +__ct__7ActPushFP4Piki = .text:0x800BDEA8; // type:function size:0xA0 scope:global align:4 +init__7ActPushFP8Creature = .text:0x800BDF48; // type:function size:0x98 scope:global align:4 +exec__7ActPushFv = .text:0x800BDFE0; // type:function size:0xCC scope:global align:4 +exeApproach__7ActPushFv = .text:0x800BE0AC; // type:function size:0x110 scope:global align:4 +initGo__7ActPushFv = .text:0x800BE1BC; // type:function size:0x13C scope:global align:4 +exeGo__7ActPushFv = .text:0x800BE2F8; // type:function size:0x214 scope:global align:4 +animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE50C; // type:function size:0x2D4 scope:global align:4 +cleanup__7ActPushFv = .text:0x800BE7E0; // type:function size:0x38 scope:global align:4 +__dt__7ActPushFv = .text:0x800BE818; // type:function size:0x80 scope:weak align:4 +@72@4@animationKeyUpdated__7ActPushFR16PaniAnimKeyEvent = .text:0x800BE898; // type:function size:0x14 scope:weak align:4 +procCollideMsg__10ActPutBombFP4PikiP10MsgCollide = .text:0x800BE8AC; // type:function size:0xA0 scope:global align:4 +__ct__10ActPutBombFP4Piki = .text:0x800BE94C; // type:function size:0x88 scope:global align:4 +findTeki__10ActPutBombFv = .text:0x800BE9D4; // type:function size:0x48C scope:global align:4 +init__10ActPutBombFP8Creature = .text:0x800BEE60; // type:function size:0x1C0 scope:global align:4 +initSet__10ActPutBombFv = .text:0x800BF020; // type:function size:0xC scope:global align:4 +exeSet__10ActPutBombFv = .text:0x800BF02C; // type:function size:0x1D8 scope:global align:4 +warnPikis__10ActPutBombFv = .text:0x800BF204; // type:function size:0x164 scope:global align:4 +initAim__10ActPutBombFv = .text:0x800BF368; // type:function size:0x16C scope:global align:4 +exeAim__10ActPutBombFv = .text:0x800BF4D4; // type:function size:0x2CC scope:global align:4 +initWait__10ActPutBombFv = .text:0x800BF7A0; // type:function size:0xC scope:global align:4 +initThrow__10ActPutBombFv = .text:0x800BF7AC; // type:function size:0x84 scope:global align:4 +initPut__10ActPutBombFv = .text:0x800BF830; // type:function size:0x14C scope:global align:4 +exeThrow__10ActPutBombFv = .text:0x800BF97C; // type:function size:0x23C scope:global align:4 +exec__10ActPutBombFv = .text:0x800BFBB8; // type:function size:0x210 scope:global align:4 +animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800BFDC8; // type:function size:0x38 scope:global align:4 +cleanup__10ActPutBombFv = .text:0x800BFE00; // type:function size:0x4 scope:global align:4 +__ct__10ActPutItemFP4Piki = .text:0x800BFE04; // type:function size:0x5C scope:global align:4 +findPos__10ActPutItemFv = .text:0x800BFE60; // type:function size:0x40C scope:global align:4 +findAdjacent__10ActPutItemFP8Creature = .text:0x800C026C; // type:function size:0x340 scope:global align:4 +init__10ActPutItemFP8Creature = .text:0x800C05AC; // type:function size:0x6C scope:global align:4 +exec__10ActPutItemFv = .text:0x800C0618; // type:function size:0x178 scope:global align:4 +cleanup__10ActPutItemFv = .text:0x800C0790; // type:function size:0x40 scope:global align:4 +__dt__10ActPutItemFv = .text:0x800C07D0; // type:function size:0x64 scope:weak align:4 +__dt__10ActPutBombFv = .text:0x800C0834; // type:function size:0x80 scope:weak align:4 +@40@4@animationKeyUpdated__10ActPutBombFR16PaniAnimKeyEvent = .text:0x800C08B4; // type:function size:0x14 scope:weak align:4 +animationKeyUpdated__Q213ActRandomBoid12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C08C8; // type:function size:0x2F8 scope:global align:4 +__ct__13ActRandomBoidFP4Piki = .text:0x800C0BC0; // type:function size:0x8C scope:global align:4 +initialise__Q213ActRandomBoid11InitialiserFP6Action = .text:0x800C0C4C; // type:function size:0x4 scope:global align:4 +init__13ActRandomBoidFP8Creature = .text:0x800C0C50; // type:function size:0xE8 scope:global align:4 +cleanup__13ActRandomBoidFv = .text:0x800C0D38; // type:function size:0x4 scope:global align:4 +exec__13ActRandomBoidFv = .text:0x800C0D3C; // type:function size:0x3BC scope:global align:4 +getInfo__13ActRandomBoidFPc = .text:0x800C10F8; // type:function size:0x44 scope:global align:4 +__dt__13ActRandomBoidFv = .text:0x800C113C; // type:function size:0x64 scope:weak align:4 +__ct__9ActRescueFP4Piki = .text:0x800C11A0; // type:function size:0x98 scope:global align:4 +init__9ActRescueFP8Creature = .text:0x800C1238; // type:function size:0x44 scope:global align:4 +exec__9ActRescueFv = .text:0x800C127C; // type:function size:0x14C scope:global align:4 +animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C13C8; // type:function size:0x6C scope:global align:4 +initApproach__9ActRescueFv = .text:0x800C1434; // type:function size:0x64 scope:global align:4 +exeApproach__9ActRescueFv = .text:0x800C1498; // type:function size:0xE4 scope:global align:4 +initRescue__9ActRescueFv = .text:0x800C157C; // type:function size:0x8C scope:global align:4 +exeRescue__9ActRescueFv = .text:0x800C1608; // type:function size:0x78 scope:global align:4 +initGo__9ActRescueFv = .text:0x800C1680; // type:function size:0x184 scope:global align:4 +exeGo__9ActRescueFv = .text:0x800C1804; // type:function size:0x16C scope:global align:4 +initThrow__9ActRescueFv = .text:0x800C1970; // type:function size:0x20 scope:global align:4 +exeThrow__9ActRescueFv = .text:0x800C1990; // type:function size:0x2B4 scope:global align:4 +cleanup__9ActRescueFv = .text:0x800C1C44; // type:function size:0x4 scope:global align:4 +__dt__9ActRescueFv = .text:0x800C1C48; // type:function size:0x80 scope:weak align:4 +@52@4@animationKeyUpdated__9ActRescueFR16PaniAnimKeyEvent = .text:0x800C1CC8; // type:function size:0x14 scope:weak align:4 +__ct__7ActRopeFP4Piki = .text:0x800C1CDC; // type:function size:0x60 scope:global align:4 +init__7ActRopeFP8Creature = .text:0x800C1D3C; // type:function size:0x178 scope:global align:4 +exec__7ActRopeFv = .text:0x800C1EB4; // type:function size:0x70 scope:global align:4 +cleanup__7ActRopeFv = .text:0x800C1F24; // type:function size:0x9C scope:global align:4 +__dt__7ActRopeFv = .text:0x800C1FC0; // type:function size:0x64 scope:weak align:4 +__ct__8ActShootFP4Piki = .text:0x800C2024; // type:function size:0x120 scope:global align:4 +init__8ActShootFP8Creature = .text:0x800C2144; // type:function size:0xB0 scope:global align:4 +findTarget__8ActShootFv = .text:0x800C21F4; // type:function size:0x178 scope:global align:4 +exec__8ActShootFv = .text:0x800C236C; // type:function size:0x1CC scope:global align:4 +cleanup__8ActShootFv = .text:0x800C2538; // type:function size:0x40 scope:global align:4 +cleanup__16ActShootCreatureFv = .text:0x800C2578; // type:function size:0x40 scope:global align:4 +animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C25B8; // type:function size:0xAC scope:global align:4 +__ct__16ActShootCreatureFP4Piki = .text:0x800C2664; // type:function size:0x5C scope:global align:4 +init__16ActShootCreatureFP8Creature = .text:0x800C26C0; // type:function size:0x88 scope:global align:4 +exec__16ActShootCreatureFv = .text:0x800C2748; // type:function size:0x2DC scope:global align:4 +__dt__16ActShootCreatureFv = .text:0x800C2A24; // type:function size:0x6C scope:weak align:4 +__dt__8ActShootFv = .text:0x800C2A90; // type:function size:0x74 scope:weak align:4 +@20@animationKeyUpdated__16ActShootCreatureFR16PaniAnimKeyEvent = .text:0x800C2B04; // type:function size:0x8 scope:weak align:4 +animationKeyUpdated__Q28ActWatch12AnimListenerFR16PaniAnimKeyEvent = .text:0x800C2B0C; // type:function size:0x4 scope:global align:4 +__ct__8ActWatchFP4Piki = .text:0x800C2B10; // type:function size:0xC4 scope:global align:4 +initialise__Q28ActWatch11InitialiserFP6Action = .text:0x800C2BD4; // type:function size:0x4 scope:global align:4 +init__8ActWatchFP8Creature = .text:0x800C2BD8; // type:function size:0x148 scope:global align:4 +cleanup__8ActWatchFv = .text:0x800C2D20; // type:function size:0x48 scope:global align:4 +getInfo__8ActWatchFPc = .text:0x800C2D68; // type:function size:0x38 scope:global align:4 +exec__8ActWatchFv = .text:0x800C2DA0; // type:function size:0x15C scope:global align:4 +__dt__8ActWatchFv = .text:0x800C2EFC; // type:function size:0x64 scope:weak align:4 +__ct__7ActWeedFP4Piki = .text:0x800C2F60; // type:function size:0x54 scope:global align:4 +init__7ActWeedFP8Creature = .text:0x800C2FB4; // type:function size:0x58 scope:global align:4 +exec__7ActWeedFv = .text:0x800C300C; // type:function size:0x60 scope:global align:4 +cleanup__7ActWeedFv = .text:0x800C306C; // type:function size:0x2C scope:global align:4 +initApproach__7ActWeedFv = .text:0x800C3098; // type:function size:0x70 scope:global align:4 +exeApproach__7ActWeedFv = .text:0x800C3108; // type:function size:0x1E0 scope:global align:4 +initAdjust__7ActWeedFv = .text:0x800C32E8; // type:function size:0xC scope:global align:4 +exeAdjust__7ActWeedFv = .text:0x800C32F4; // type:function size:0x214 scope:global align:4 +initNuking__7ActWeedFv = .text:0x800C3508; // type:function size:0x8C scope:global align:4 +exeNuking__7ActWeedFv = .text:0x800C3594; // type:function size:0xE0 scope:global align:4 +animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C3674; // type:function size:0x2B4 scope:global align:4 +__dt__7ActWeedFv = .text:0x800C3928; // type:function size:0x6C scope:weak align:4 +@20@animationKeyUpdated__7ActWeedFR16PaniAnimKeyEvent = .text:0x800C3994; // type:function size:0x8 scope:weak align:4 +procMsg__6ActionFP3Msg = .text:0x800C399C; // type:function size:0x240 scope:global align:4 +initialise__Q26Action5ChildFP8Creature = .text:0x800C3BDC; // type:function size:0xAC scope:global align:4 +__ct__6ActionFP4Pikib = .text:0x800C3C88; // type:function size:0x38 scope:global align:4 +__dt__6ActionFv = .text:0x800C3CC0; // type:function size:0x78 scope:global align:4 +__dt__Q26Action5ChildFv = .text:0x800C3D38; // type:function size:0x80 scope:weak align:4 +init__6ActionFP8Creature = .text:0x800C3DB8; // type:function size:0xC scope:global align:4 +exec__6ActionFv = .text:0x800C3DC4; // type:function size:0x8 scope:global align:4 +init__9AndActionFP8Creature = .text:0x800C3DCC; // type:function size:0xE0 scope:global align:4 +exec__9AndActionFv = .text:0x800C3EAC; // type:function size:0x14C scope:global align:4 +init__8OrActionFP8Creature = .text:0x800C3FF8; // type:function size:0xE0 scope:global align:4 +exec__8OrActionFv = .text:0x800C40D8; // type:function size:0x150 scope:global align:4 +setChildren__6ActionFie = .text:0x800C4228; // type:function size:0x124 scope:global align:4 +__ct__Q26Action5ChildFv = .text:0x800C434C; // type:function size:0x10 scope:weak align:4 +cleanup__6ActionFv = .text:0x800C435C; // type:function size:0x70 scope:global align:4 +animationKeyUpdated__Q29TopAction14MotionListenerFR16PaniAnimKeyEvent = .text:0x800C43CC; // type:function size:0xDC scope:global align:4 +__ct__9TopActionFP4Piki = .text:0x800C44A8; // type:function size:0x64C scope:global align:4 +__dt__9TopActionFv = .text:0x800C4AF4; // type:function size:0x88 scope:global align:4 +init__9TopActionFP8Creature = .text:0x800C4B7C; // type:function size:0xE8 scope:global align:4 +exec__9TopActionFv = .text:0x800C4C64; // type:function size:0x598 scope:global align:4 +abandon__9TopActionFPQ23zen17particleGenerator = .text:0x800C51FC; // type:function size:0x84 scope:global align:4 +resumable__9TopActionFv = .text:0x800C5280; // type:function size:0x4C scope:global align:4 +resume__9TopActionFv = .text:0x800C52CC; // type:function size:0x4C scope:global align:4 +restart__9TopActionFv = .text:0x800C5318; // type:function size:0x4C scope:global align:4 +__ct__Q29TopAction7ObjBoreFv = .text:0x800C5364; // type:function size:0x90 scope:global align:4 +__ct__Q29TopAction7BoredomFv = .text:0x800C53F4; // type:function size:0x8C scope:global align:4 +getInfo__9TopActionFPc = .text:0x800C5480; // type:function size:0x3C scope:weak align:4 +draw__9TopActionFR8Graphics = .text:0x800C54BC; // type:function size:0x48 scope:weak align:4 +__dt__8OrActionFv = .text:0x800C5504; // type:function size:0x88 scope:weak align:4 +initGame__10PikiInfMgrFv = .text:0x800C558C; // type:function size:0x28 scope:global align:4 +saveCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C55B4; // type:function size:0x78 scope:global align:4 +loadCard__10PikiInfMgrFR18RandomAccessStream = .text:0x800C562C; // type:function size:0x70 scope:global align:4 +incPiki__10PikiInfMgrFP4Piki = .text:0x800C569C; // type:function size:0x34 scope:global align:4 +incPiki__10PikiInfMgrFii = .text:0x800C56D0; // type:function size:0x1C scope:global align:4 +decPiki__10PikiInfMgrFP4Piki = .text:0x800C56EC; // type:function size:0x34 scope:global align:4 +clear__10PikiInfMgrFv = .text:0x800C5720; // type:function size:0x2C scope:global align:4 +store__7BaseInfFP8Creature = .text:0x800C574C; // type:function size:0x5C scope:global align:4 +doStore__7BaseInfFP8Creature = .text:0x800C57A8; // type:function size:0x4 scope:weak align:4 +restore__7BaseInfFP8Creature = .text:0x800C57AC; // type:function size:0x5C scope:global align:4 +doRestore__7BaseInfFP8Creature = .text:0x800C5808; // type:function size:0x4 scope:weak align:4 +saveCard__7BaseInfFR18RandomAccessStream = .text:0x800C580C; // type:function size:0xA0 scope:global align:4 +loadCard__7BaseInfFR18RandomAccessStream = .text:0x800C58AC; // type:function size:0xF4 scope:global align:4 +saveCard__8BPikiInfFR18RandomAccessStream = .text:0x800C59A0; // type:function size:0xC4 scope:global align:4 +loadCard__8BPikiInfFR18RandomAccessStream = .text:0x800C5A64; // type:function size:0x118 scope:global align:4 +doStore__8BPikiInfFP8Creature = .text:0x800C5B7C; // type:function size:0x14 scope:global align:4 +doRestore__8BPikiInfFP8Creature = .text:0x800C5B90; // type:function size:0x14 scope:global align:4 +__ct__10MonoInfMgrFv = .text:0x800C5BA4; // type:function size:0x170 scope:global align:4 +init__10MonoInfMgrFi = .text:0x800C5D14; // type:function size:0xD0 scope:global align:4 +getFreeInf__10MonoInfMgrFv = .text:0x800C5DE4; // type:function size:0x58 scope:global align:4 +delInf__10MonoInfMgrFP7BaseInf = .text:0x800C5E3C; // type:function size:0x48 scope:global align:4 +getActiveNum__10MonoInfMgrFv = .text:0x800C5E84; // type:function size:0x24 scope:global align:4 +getFreeNum__10MonoInfMgrFv = .text:0x800C5EA8; // type:function size:0x24 scope:global align:4 +loadCard__10MonoInfMgrFR18RandomAccessStream = .text:0x800C5ECC; // type:function size:0xC4 scope:global align:4 +newInf__11BPikiInfMgrFv = .text:0x800C5F90; // type:function size:0xCC scope:global align:4 +getPikiCount__11BPikiInfMgrFi = .text:0x800C605C; // type:function size:0x2C scope:global align:4 +newInf__14CreatureInfMgrFv = .text:0x800C6088; // type:function size:0xD4 scope:global align:4 +doStore__11CreatureInfFP8Creature = .text:0x800C615C; // type:function size:0xE0 scope:global align:4 +doRestore__11CreatureInfFP8Creature = .text:0x800C623C; // type:function size:0x60 scope:global align:4 +init__8StageInfFv = .text:0x800C629C; // type:function size:0x30 scope:global align:4 +initGame__8StageInfFv = .text:0x800C62CC; // type:function size:0x64 scope:global align:4 +saveCard__8StageInfFR18RandomAccessStream = .text:0x800C6330; // type:function size:0x88 scope:global align:4 +loadCard__8StageInfFR18RandomAccessStream = .text:0x800C63B8; // type:function size:0x20 scope:global align:4 +init__6InfMgrFi = .text:0x800C63D8; // type:function size:0x4 scope:weak align:4 +__sinit_pikiInf_cpp = .text:0x800C63DC; // type:function size:0x34 scope:local align:4 +isSafeMePos__4PikiFR8Vector3f = .text:0x800C6410; // type:function size:0x300 scope:global align:4 +startDemo__4PikiFv = .text:0x800C6710; // type:function size:0xAC scope:global align:4 +stopEffect__9PikiStateFv = .text:0x800C67BC; // type:function size:0x4 scope:weak align:4 +finishDemo__4PikiFv = .text:0x800C67C0; // type:function size:0xA0 scope:global align:4 +restartEffect__9PikiStateFv = .text:0x800C6860; // type:function size:0x4 scope:weak align:4 +appearDemo__4PikiFv = .text:0x800C6864; // type:function size:0xD4 scope:global align:4 +getUpperMotionIndex__4PikiFv = .text:0x800C6938; // type:function size:0x8 scope:global align:4 +addCntCallback__4PikiFv = .text:0x800C6940; // type:function size:0x30 scope:global align:4 +subCntCallback__4PikiFv = .text:0x800C6970; // type:function size:0x4 scope:global align:4 +getAttackPower__4PikiFv = .text:0x800C6974; // type:function size:0x44 scope:global align:4 +findRoute__4PikiFiibb = .text:0x800C69B8; // type:function size:0x35C scope:global align:4 +moveRouteTraceDynamic__4PikiFf = .text:0x800C6D14; // type:function size:0x1CC scope:global align:4 +initRouteTrace__4PikiFR8Vector3fb = .text:0x800C6EE0; // type:function size:0x4C0 scope:global align:4 +moveRouteTrace__4PikiFf = .text:0x800C73A0; // type:function size:0x700 scope:global align:4 +crGetPoint__4PikiFi = .text:0x800C7AA0; // type:function size:0xB8 scope:global align:4 +crPointOpen__4PikiFi = .text:0x800C7B58; // type:function size:0x68 scope:global align:4 +crGetRadius__4PikiFi = .text:0x800C7BC0; // type:function size:0x60 scope:global align:4 +crMakeRefs__4PikiFv = .text:0x800C7C20; // type:function size:0x108 scope:global align:4 +hasBomb__4PikiFv = .text:0x800C7D28; // type:function size:0x1C scope:global align:4 +startFire__4PikiFv = .text:0x800C7D44; // type:function size:0x90 scope:global align:4 +endFire__4PikiFv = .text:0x800C7DD4; // type:function size:0x64 scope:global align:4 +isTeki__4PikiFP4Piki = .text:0x800C7E38; // type:function size:0x13C scope:global align:4 +actOnSituaton__4PikiFv = .text:0x800C7F74; // type:function size:0x404 scope:global align:4 +freeAI__9PikiStateFv = .text:0x800C8378; // type:function size:0x8 scope:weak align:4 +doDoAI__4PikiFv = .text:0x800C8380; // type:function size:0x4C scope:global align:4 +isRopable__4PikiFv = .text:0x800C83CC; // type:function size:0x24 scope:global align:4 +getCatchPos__4PikiFP8Creature = .text:0x800C83F0; // type:function size:0x1C scope:global align:4 +getState__4PikiFv = .text:0x800C840C; // type:function size:0xC scope:global align:4 +isBuried__4PikiFv = .text:0x800C8418; // type:function size:0x18 scope:global align:4 +graspSituation__4PikiFPP8Creature = .text:0x800C8430; // type:function size:0x1300 scope:global align:4 +initColor__4PikiFi = .text:0x800C9730; // type:function size:0xD8 scope:global align:4 +startKinoko__4PikiFv = .text:0x800C9808; // type:function size:0x30 scope:global align:4 +endKinoko__4PikiFv = .text:0x800C9838; // type:function size:0x50 scope:global align:4 +setColor__4PikiFi = .text:0x800C9888; // type:function size:0x98 scope:global align:4 +setPastel__4PikiFv = .text:0x800C9920; // type:function size:0x9C scope:global align:4 +unsetPastel__4PikiFv = .text:0x800C99BC; // type:function size:0x98 scope:global align:4 +updateColor__4PikiFv = .text:0x800C9A54; // type:function size:0x1A8 scope:global align:4 +needShadow__4PikiFv = .text:0x800C9BFC; // type:function size:0x78 scope:global align:4 +isFixed__4PikiFv = .text:0x800C9C74; // type:function size:0x28 scope:global align:4 +sendMsg__4PikiFP3Msg = .text:0x800C9C9C; // type:function size:0x98 scope:global align:4 +procMsg__19StateMachine<4Piki>FP4PikiP3Msg = .text:0x800C9D34; // type:function size:0x3C scope:weak align:4 +stimulate__4PikiFR11Interaction = .text:0x800C9D70; // type:function size:0x74 scope:global align:4 +getFormationPri__4PikiFv = .text:0x800C9DE4; // type:function size:0x74 scope:global align:4 +startDamage__4PikiFv = .text:0x800C9E58; // type:function size:0x8C scope:global align:4 +resume__13AState<4Piki>FP4Piki = .text:0x800C9EE4; // type:function size:0x4 scope:weak align:4 +finishDamage__4PikiFv = .text:0x800C9EE8; // type:function size:0xDC scope:global align:4 +restart__13AState<4Piki>FP4Piki = .text:0x800C9FC4; // type:function size:0x4 scope:weak align:4 +animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800C9FC8; // type:function size:0xDC scope:global align:4 +isAtari__4PikiFv = .text:0x800CA0A4; // type:function size:0x64 scope:global align:4 +ignoreAtari__4PikiFP8Creature = .text:0x800CA108; // type:function size:0xB8 scope:global align:4 +needFlick__4PikiFP8Creature = .text:0x800CA1C0; // type:function size:0x8 scope:global align:4 +isVisible__4PikiFv = .text:0x800CA1C8; // type:function size:0x110 scope:global align:4 +isThrowable__4PikiFv = .text:0x800CA2D8; // type:function size:0xC4 scope:global align:4 +offwallCallback__4PikiFP13DynCollObject = .text:0x800CA39C; // type:function size:0x44 scope:global align:4 +wallCallback__4PikiFR5PlaneP13DynCollObject = .text:0x800CA3E0; // type:function size:0x58 scope:global align:4 +jumpCallback__4PikiFv = .text:0x800CA438; // type:function size:0x4 scope:global align:4 +platAttachable__4PikiFv = .text:0x800CA43C; // type:function size:0x80 scope:global align:4 +mayIstick__4PikiFv = .text:0x800CA4BC; // type:function size:0xE0 scope:global align:4 +stickToCallback__4PikiFP8Creature = .text:0x800CA59C; // type:function size:0x38 scope:global align:4 +bounceCallback__4PikiFv = .text:0x800CA5D4; // type:function size:0x2BC scope:global align:4 +startMotion__4PikiFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800CA890; // type:function size:0x234 scope:global align:4 +enableMotionBlend__4PikiFv = .text:0x800CAAC4; // type:function size:0x48 scope:global align:4 +checkBridgeWall__4PikiFP8CreatureR8Vector3f = .text:0x800CAB0C; // type:function size:0x190 scope:global align:4 +collisionCallback__4PikiFR9CollEvent = .text:0x800CAC9C; // type:function size:0xB78 scope:global align:4 +collideAI__9PikiStateFv = .text:0x800CB814; // type:function size:0x8 scope:weak align:4 +__ct__4PikiFP12CreatureProp = .text:0x800CB81C; // type:function size:0x400 scope:global align:4 +getSpeed__4PikiFf = .text:0x800CBC1C; // type:function size:0x74 scope:global align:4 +setSpeed__4PikiFfR8Vector3f = .text:0x800CBC90; // type:function size:0xC4 scope:global align:4 +setSpeed__4PikiFff = .text:0x800CBD54; // type:function size:0xDC scope:global align:4 +getSize__4PikiFv = .text:0x800CBE30; // type:function size:0x20 scope:global align:4 +getiMass__4PikiFv = .text:0x800CBE50; // type:function size:0x44 scope:global align:4 +resetPosition__4PikiFR8Vector3f = .text:0x800CBE94; // type:function size:0x68 scope:global align:4 +init__4PikiFP4Navi = .text:0x800CBEFC; // type:function size:0x2EC scope:global align:4 +initBirth__4PikiFv = .text:0x800CC1E8; // type:function size:0x4 scope:weak align:4 +isAlive__4PikiFv = .text:0x800CC1EC; // type:function size:0x38 scope:global align:4 +isFruit__4PikiFv = .text:0x800CC224; // type:function size:0x14 scope:global align:4 +updateLookCreature__4PikiFv = .text:0x800CC238; // type:function size:0x34C scope:global align:4 +useLookUpdate__9PikiStateFv = .text:0x800CC584; // type:function size:0x8 scope:weak align:4 +doAnimation__4PikiFv = .text:0x800CC58C; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4PikiFv = .text:0x800CC5DC; // type:function size:0x448 scope:global align:4 +realAI__4PikiFv = .text:0x800CCA24; // type:function size:0x53C scope:global align:4 +exec__19StateMachine<4Piki>FP4Piki = .text:0x800CCF60; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Piki>FP4Piki = .text:0x800CCF9C; // type:function size:0x4 scope:weak align:4 +doAI__4PikiFv = .text:0x800CCFA0; // type:function size:0xE4 scope:global align:4 +changeMode__4PikiFiP4Navi = .text:0x800CD084; // type:function size:0x24C scope:global align:4 +dump__4PikiFv = .text:0x800CD2D0; // type:function size:0x250 scope:global align:4 +getShadowPos__4PikiFv = .text:0x800CD520; // type:function size:0x1C scope:weak align:4 +setLeaves__4PikiFi = .text:0x800CD53C; // type:function size:0x4 scope:weak align:4 +init__19StateMachine<4Piki>FP4Piki = .text:0x800CD540; // type:function size:0x4 scope:weak align:4 +transit__19StateMachine<4Piki>FP4Pikii = .text:0x800CD544; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Piki>FP4Piki = .text:0x800CD5F4; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Piki>FP4Piki = .text:0x800CD5F8; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x800CD5FC; // type:function size:0xB8 scope:local align:4 +@696@animationKeyUpdated__4PikiFR16PaniAnimKeyEvent = .text:0x800CD6B4; // type:function size:0x8 scope:weak align:4 +__ct__8OdoMeterFv = .text:0x800CD6BC; // type:function size:0x10 scope:global align:4 +start__8OdoMeterFff = .text:0x800CD6CC; // type:function size:0x18 scope:global align:4 +moving__8OdoMeterFR8Vector3fR8Vector3f = .text:0x800CD6E4; // type:function size:0x124 scope:global align:4 +doKill__4PikiFv = .text:0x800CD808; // type:function size:0x380 scope:global align:4 +birth__7PikiMgrFv = .text:0x800CDB88; // type:function size:0xBC scope:global align:4 +__ct__7PikiMgrFP4Navi = .text:0x800CDC44; // type:function size:0x258 scope:global align:4 +__ct__Q28PikiProp5ParmsFv = .text:0x800CDE9C; // type:function size:0xD90 scope:weak align:4 +init__7PikiMgrFv = .text:0x800CEC2C; // type:function size:0x18 scope:global align:4 +createObject__7PikiMgrFv = .text:0x800CEC44; // type:function size:0x7C scope:global align:4 +update__7PikiMgrFv = .text:0x800CECC0; // type:function size:0x20 scope:global align:4 +refresh__7PikiMgrFR8Graphics = .text:0x800CECE0; // type:function size:0x20 scope:global align:4 +read__7PikiMgrFR18RandomAccessStream = .text:0x800CED00; // type:function size:0x30 scope:global align:4 +read__8PikiPropFR18RandomAccessStream = .text:0x800CED30; // type:function size:0x44 scope:weak align:4 +dumpAll__7PikiMgrFv = .text:0x800CED74; // type:function size:0x198 scope:global align:4 +__dt__7PikiMgrFv = .text:0x800CEF0C; // type:function size:0x84 scope:weak align:4 +@8@read__7PikiMgrFR18RandomAccessStream = .text:0x800CEF90; // type:function size:0x8 scope:weak align:4 +@8@update__7PikiMgrFv = .text:0x800CEF98; // type:function size:0x8 scope:weak align:4 +init__16PikiStateMachineFP4Piki = .text:0x800CEFA0; // type:function size:0x1428 scope:global align:4 +dump__9PikiStateFv = .text:0x800D03C8; // type:function size:0x2C scope:global align:4 +doDump__9PikiStateFv = .text:0x800D03F4; // type:function size:0x4 scope:weak align:4 +transit__16PikiStateMachineFP4Pikii = .text:0x800D03F8; // type:function size:0xE0 scope:global align:4 +transit__9PikiStateFP4Pikii = .text:0x800D04D8; // type:function size:0x30 scope:global align:4 +__ct__15PikiLookAtStateFv = .text:0x800D0508; // type:function size:0x4C scope:global align:4 +init__15PikiLookAtStateFP4Piki = .text:0x800D0554; // type:function size:0xA0 scope:global align:4 +exec__15PikiLookAtStateFP4Piki = .text:0x800D05F4; // type:function size:0x20C scope:global align:4 +cleanup__15PikiLookAtStateFP4Piki = .text:0x800D0800; // type:function size:0x2C scope:global align:4 +procAnimMsg__15PikiLookAtStateFP4PikiP7MsgAnim = .text:0x800D082C; // type:function size:0xB4 scope:global align:4 +__ct__15PikiNormalStateFv = .text:0x800D08E0; // type:function size:0x48 scope:global align:4 +init__15PikiNormalStateFP4Piki = .text:0x800D0928; // type:function size:0x88 scope:global align:4 +restart__15PikiNormalStateFP4Piki = .text:0x800D09B0; // type:function size:0x2C scope:global align:4 +exec__15PikiNormalStateFP4Piki = .text:0x800D09DC; // type:function size:0x6C scope:global align:4 +cleanup__15PikiNormalStateFP4Piki = .text:0x800D0A48; // type:function size:0x4 scope:global align:4 +procWallMsg__15PikiNormalStateFP4PikiP7MsgWall = .text:0x800D0A4C; // type:function size:0x4 scope:global align:4 +procOffWallMsg__15PikiNormalStateFP4PikiP10MsgOffWall = .text:0x800D0A50; // type:function size:0x14 scope:global align:4 +procCollideMsg__15PikiNormalStateFP4PikiP10MsgCollide = .text:0x800D0A64; // type:function size:0xF4 scope:global align:4 +__ct__15PikiAbsorbStateFv = .text:0x800D0B58; // type:function size:0x4C scope:global align:4 +init__15PikiAbsorbStateFP4Piki = .text:0x800D0BA4; // type:function size:0xA4 scope:global align:4 +exec__15PikiAbsorbStateFP4Piki = .text:0x800D0C48; // type:function size:0xE8 scope:global align:4 +procAnimMsg__15PikiAbsorbStateFP4PikiP7MsgAnim = .text:0x800D0D30; // type:function size:0x110 scope:global align:4 +cleanup__15PikiAbsorbStateFP4Piki = .text:0x800D0E40; // type:function size:0x4 scope:global align:4 +__ct__14PikiDrownStateFv = .text:0x800D0E44; // type:function size:0x5C scope:global align:4 +init__14PikiDrownStateFP4Piki = .text:0x800D0EA0; // type:function size:0x208 scope:global align:4 +exec__14PikiDrownStateFP4Piki = .text:0x800D10A8; // type:function size:0x3DC scope:global align:4 +cleanup__14PikiDrownStateFP4Piki = .text:0x800D1484; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDrownStateFP4PikiP7MsgAnim = .text:0x800D1488; // type:function size:0x1AC scope:global align:4 +__ct__15PikiKinokoStateFv = .text:0x800D1634; // type:function size:0x5C scope:global align:4 +init__15PikiKinokoStateFP4Piki = .text:0x800D1690; // type:function size:0xA4 scope:global align:4 +initWalk__15PikiKinokoStateFP4Piki = .text:0x800D1734; // type:function size:0x268 scope:global align:4 +exec__15PikiKinokoStateFP4Piki = .text:0x800D199C; // type:function size:0x44 scope:global align:4 +exeAttack__15PikiKinokoStateFP4Piki = .text:0x800D19E0; // type:function size:0x4 scope:global align:4 +exeBoid__15PikiKinokoStateFP4Piki = .text:0x800D19E4; // type:function size:0x7B8 scope:global align:4 +cleanup__15PikiKinokoStateFP4Piki = .text:0x800D219C; // type:function size:0x24 scope:global align:4 +__ct__15PikiBubbleStateFv = .text:0x800D21C0; // type:function size:0x4C scope:global align:4 +init__15PikiBubbleStateFP4Piki = .text:0x800D220C; // type:function size:0x12C scope:global align:4 +exec__15PikiBubbleStateFP4Piki = .text:0x800D2338; // type:function size:0x154 scope:global align:4 +cleanup__15PikiBubbleStateFP4Piki = .text:0x800D248C; // type:function size:0x80 scope:global align:4 +__ct__14PikiFiredStateFv = .text:0x800D250C; // type:function size:0x4C scope:global align:4 +init__14PikiFiredStateFP4Piki = .text:0x800D2558; // type:function size:0xE4 scope:global align:4 +exec__14PikiFiredStateFP4Piki = .text:0x800D263C; // type:function size:0x154 scope:global align:4 +cleanup__14PikiFiredStateFP4Piki = .text:0x800D2790; // type:function size:0x4 scope:global align:4 +__ct__18PikiSwallowedStateFv = .text:0x800D2794; // type:function size:0x50 scope:global align:4 +init__18PikiSwallowedStateFP4Piki = .text:0x800D27E4; // type:function size:0x10 scope:global align:4 +exec__18PikiSwallowedStateFP4Piki = .text:0x800D27F4; // type:function size:0x104 scope:global align:4 +cleanup__18PikiSwallowedStateFP4Piki = .text:0x800D28F8; // type:function size:0x18 scope:global align:4 +__ct__15PikiBulletStateFv = .text:0x800D2910; // type:function size:0x4C scope:global align:4 +init__15PikiBulletStateFP4Piki = .text:0x800D295C; // type:function size:0x70 scope:global align:4 +exec__15PikiBulletStateFP4Piki = .text:0x800D29CC; // type:function size:0x3F0 scope:global align:4 +procWallMsg__15PikiBulletStateFP4PikiP7MsgWall = .text:0x800D2DBC; // type:function size:0x60 scope:global align:4 +cleanup__15PikiBulletStateFP4Piki = .text:0x800D2E1C; // type:function size:0x4 scope:global align:4 +__ct__14PikiFlickStateFv = .text:0x800D2E20; // type:function size:0x4C scope:global align:4 +init__14PikiFlickStateFP4Piki = .text:0x800D2E6C; // type:function size:0x168 scope:global align:4 +exec__14PikiFlickStateFP4Piki = .text:0x800D2FD4; // type:function size:0x1A0 scope:global align:4 +procAnimMsg__14PikiFlickStateFP4PikiP7MsgAnim = .text:0x800D3174; // type:function size:0x294 scope:global align:4 +cleanup__14PikiFlickStateFP4Piki = .text:0x800D3408; // type:function size:0xF8 scope:global align:4 +__ct__14PikiFlownStateFv = .text:0x800D3500; // type:function size:0x4C scope:global align:4 +init__14PikiFlownStateFP4Piki = .text:0x800D354C; // type:function size:0x124 scope:global align:4 +procBounceMsg__14PikiFlownStateFP4PikiP9MsgBounce = .text:0x800D3670; // type:function size:0x98 scope:global align:4 +exec__14PikiFlownStateFP4Piki = .text:0x800D3708; // type:function size:0x170 scope:global align:4 +procAnimMsg__14PikiFlownStateFP4PikiP7MsgAnim = .text:0x800D3878; // type:function size:0x230 scope:global align:4 +cleanup__14PikiFlownStateFP4Piki = .text:0x800D3AA8; // type:function size:0xA0 scope:global align:4 +__ct__17PikiFallMeckStateFv = .text:0x800D3B48; // type:function size:0x50 scope:global align:4 +init__17PikiFallMeckStateFP4Piki = .text:0x800D3B98; // type:function size:0x84 scope:global align:4 +exec__17PikiFallMeckStateFP4Piki = .text:0x800D3C1C; // type:function size:0x4 scope:global align:4 +procBounceMsg__17PikiFallMeckStateFP4PikiP9MsgBounce = .text:0x800D3C20; // type:function size:0x288 scope:global align:4 +cleanup__17PikiFallMeckStateFP4Piki = .text:0x800D3EA8; // type:function size:0x4 scope:global align:4 +__ct__13PikiFallStateFv = .text:0x800D3EAC; // type:function size:0x4C scope:global align:4 +init__13PikiFallStateFP4Piki = .text:0x800D3EF8; // type:function size:0x88 scope:global align:4 +exec__13PikiFallStateFP4Piki = .text:0x800D3F80; // type:function size:0x4 scope:global align:4 +procBounceMsg__13PikiFallStateFP4PikiP9MsgBounce = .text:0x800D3F84; // type:function size:0x7C scope:global align:4 +procAnimMsg__13PikiFallStateFP4PikiP7MsgAnim = .text:0x800D4000; // type:function size:0xD4 scope:global align:4 +cleanup__13PikiFallStateFP4Piki = .text:0x800D40D4; // type:function size:0x4 scope:global align:4 +__ct__14PikiCliffStateFv = .text:0x800D40D8; // type:function size:0x5C scope:global align:4 +init__14PikiCliffStateFP4Piki = .text:0x800D4134; // type:function size:0x138 scope:global align:4 +exec__14PikiCliffStateFP4Piki = .text:0x800D426C; // type:function size:0x3C scope:global align:4 +nearEnough__14PikiCliffStateFP4Piki = .text:0x800D42A8; // type:function size:0x1A4 scope:global align:4 +procAnimMsg__14PikiCliffStateFP4PikiP7MsgAnim = .text:0x800D444C; // type:function size:0x4A4 scope:global align:4 +cleanup__14PikiCliffStateFP4Piki = .text:0x800D48F0; // type:function size:0x4 scope:global align:4 +__ct__15PikiGoHangStateFv = .text:0x800D48F4; // type:function size:0x4C scope:global align:4 +init__15PikiGoHangStateFP4Piki = .text:0x800D4940; // type:function size:0x5C scope:global align:4 +exec__15PikiGoHangStateFP4Piki = .text:0x800D499C; // type:function size:0x174 scope:global align:4 +cleanup__15PikiGoHangStateFP4Piki = .text:0x800D4B10; // type:function size:0x4 scope:global align:4 +__ct__15PikiHangedStateFv = .text:0x800D4B14; // type:function size:0x4C scope:global align:4 +procAnimMsg__15PikiHangedStateFP4PikiP7MsgAnim = .text:0x800D4B60; // type:function size:0x38 scope:global align:4 +init__15PikiHangedStateFP4Piki = .text:0x800D4B98; // type:function size:0xB4 scope:global align:4 +exec__15PikiHangedStateFP4Piki = .text:0x800D4C4C; // type:function size:0x44 scope:global align:4 +cleanup__15PikiHangedStateFP4Piki = .text:0x800D4C90; // type:function size:0x24 scope:global align:4 +__ct__20PikiWaterHangedStateFv = .text:0x800D4CB4; // type:function size:0x50 scope:global align:4 +procAnimMsg__20PikiWaterHangedStateFP4PikiP7MsgAnim = .text:0x800D4D04; // type:function size:0x38 scope:global align:4 +init__20PikiWaterHangedStateFP4Piki = .text:0x800D4D3C; // type:function size:0xB4 scope:global align:4 +exec__20PikiWaterHangedStateFP4Piki = .text:0x800D4DF0; // type:function size:0x44 scope:global align:4 +cleanup__20PikiWaterHangedStateFP4Piki = .text:0x800D4E34; // type:function size:0x24 scope:global align:4 +__ct__13PikiEmitStateFv = .text:0x800D4E58; // type:function size:0x4C scope:global align:4 +init__13PikiEmitStateFP4Piki = .text:0x800D4EA4; // type:function size:0xA4 scope:global align:4 +exec__13PikiEmitStateFP4Piki = .text:0x800D4F48; // type:function size:0x40 scope:global align:4 +cleanup__13PikiEmitStateFP4Piki = .text:0x800D4F88; // type:function size:0x10 scope:global align:4 +procBounceMsg__13PikiEmitStateFP4PikiP9MsgBounce = .text:0x800D4F98; // type:function size:0x8C scope:global align:4 +procAnimMsg__13PikiEmitStateFP4PikiP7MsgAnim = .text:0x800D5024; // type:function size:0xB4 scope:global align:4 +__ct__15PikiFlyingStateFv = .text:0x800D50D8; // type:function size:0x8C scope:global align:4 +stopEffect__15PikiFlyingStateFv = .text:0x800D5164; // type:function size:0x24 scope:global align:4 +restartEffect__15PikiFlyingStateFv = .text:0x800D5188; // type:function size:0x24 scope:global align:4 +init__15PikiFlyingStateFP4Piki = .text:0x800D51AC; // type:function size:0xB0 scope:global align:4 +exec__15PikiFlyingStateFP4Piki = .text:0x800D525C; // type:function size:0x3C0 scope:global align:4 +cleanup__15PikiFlyingStateFP4Piki = .text:0x800D561C; // type:function size:0x44 scope:global align:4 +procCollideMsg__15PikiFlyingStateFP4PikiP10MsgCollide = .text:0x800D5660; // type:function size:0x6DC scope:global align:4 +procStickMsg__15PikiFlyingStateFP4PikiP8MsgStick = .text:0x800D5D3C; // type:function size:0x4 scope:global align:4 +procBounceMsg__15PikiFlyingStateFP4PikiP9MsgBounce = .text:0x800D5D40; // type:function size:0xE8 scope:global align:4 +__ct__13PikiGrowStateFv = .text:0x800D5E28; // type:function size:0x4C scope:global align:4 +init__13PikiGrowStateFP4Piki = .text:0x800D5E74; // type:function size:0x7C scope:global align:4 +exec__13PikiGrowStateFP4Piki = .text:0x800D5EF0; // type:function size:0x4 scope:global align:4 +cleanup__13PikiGrowStateFP4Piki = .text:0x800D5EF4; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiGrowStateFP4PikiP7MsgAnim = .text:0x800D5EF8; // type:function size:0x44 scope:global align:4 +__ct__21PikiKinokoChangeStateFv = .text:0x800D5F3C; // type:function size:0x50 scope:global align:4 +init__21PikiKinokoChangeStateFP4Piki = .text:0x800D5F8C; // type:function size:0xAC scope:global align:4 +restart__21PikiKinokoChangeStateFP4Piki = .text:0x800D6038; // type:function size:0x2C scope:global align:4 +exec__21PikiKinokoChangeStateFP4Piki = .text:0x800D6064; // type:function size:0x78 scope:global align:4 +cleanup__21PikiKinokoChangeStateFP4Piki = .text:0x800D60DC; // type:function size:0x4 scope:global align:4 +procAnimMsg__21PikiKinokoChangeStateFP4PikiP7MsgAnim = .text:0x800D60E0; // type:function size:0x94 scope:global align:4 +__ct__15PikiGrowupStateFv = .text:0x800D6174; // type:function size:0x4C scope:global align:4 +init__15PikiGrowupStateFP4Piki = .text:0x800D61C0; // type:function size:0xC8 scope:global align:4 +exec__15PikiGrowupStateFP4Piki = .text:0x800D6288; // type:function size:0x98 scope:global align:4 +cleanup__15PikiGrowupStateFP4Piki = .text:0x800D6320; // type:function size:0x4 scope:global align:4 +procAnimMsg__15PikiGrowupStateFP4PikiP7MsgAnim = .text:0x800D6324; // type:function size:0x134 scope:global align:4 +__ct__13PikiWaveStateFv = .text:0x800D6458; // type:function size:0x4C scope:global align:4 +init__13PikiWaveStateFP4Piki = .text:0x800D64A4; // type:function size:0x4 scope:global align:4 +exec__13PikiWaveStateFP4Piki = .text:0x800D64A8; // type:function size:0x4 scope:global align:4 +cleanup__13PikiWaveStateFP4Piki = .text:0x800D64AC; // type:function size:0x4 scope:global align:4 +resume__13PikiWaveStateFP4Piki = .text:0x800D64B0; // type:function size:0x30 scope:global align:4 +restart__13PikiWaveStateFP4Piki = .text:0x800D64E0; // type:function size:0x4 scope:global align:4 +procAnimMsg__13PikiWaveStateFP4PikiP7MsgAnim = .text:0x800D64E4; // type:function size:0x48 scope:global align:4 +__ct__13PikiPushStateFv = .text:0x800D652C; // type:function size:0x4C scope:global align:4 +init__13PikiPushStateFP4Piki = .text:0x800D6578; // type:function size:0x88 scope:global align:4 +exec__13PikiPushStateFP4Piki = .text:0x800D6600; // type:function size:0x150 scope:global align:4 +cleanup__13PikiPushStateFP4Piki = .text:0x800D6750; // type:function size:0xC scope:global align:4 +resume__13PikiPushStateFP4Piki = .text:0x800D675C; // type:function size:0x30 scope:global align:4 +restart__13PikiPushStateFP4Piki = .text:0x800D678C; // type:function size:0x4 scope:global align:4 +procOffWallMsg__13PikiPushStateFP4PikiP10MsgOffWall = .text:0x800D6790; // type:function size:0x38 scope:global align:4 +procAnimMsg__13PikiPushStateFP4PikiP7MsgAnim = .text:0x800D67C8; // type:function size:0x78 scope:global align:4 +__ct__17PikiPushPikiStateFv = .text:0x800D6840; // type:function size:0x50 scope:global align:4 +init__17PikiPushPikiStateFP4Piki = .text:0x800D6890; // type:function size:0x90 scope:global align:4 +exec__17PikiPushPikiStateFP4Piki = .text:0x800D6920; // type:function size:0xF4 scope:global align:4 +cleanup__17PikiPushPikiStateFP4Piki = .text:0x800D6A14; // type:function size:0xC scope:global align:4 +resume__17PikiPushPikiStateFP4Piki = .text:0x800D6A20; // type:function size:0x30 scope:global align:4 +restart__17PikiPushPikiStateFP4Piki = .text:0x800D6A50; // type:function size:0x4 scope:global align:4 +procCollideMsg__17PikiPushPikiStateFP4PikiP10MsgCollide = .text:0x800D6A54; // type:function size:0xA4 scope:global align:4 +procWallMsg__17PikiPushPikiStateFP4PikiP7MsgWall = .text:0x800D6AF8; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiPushPikiStateFP4PikiP7MsgAnim = .text:0x800D6AFC; // type:function size:0x80 scope:global align:4 +__ct__13PikiBuryStateFv = .text:0x800D6B7C; // type:function size:0x4C scope:global align:4 +init__13PikiBuryStateFP4Piki = .text:0x800D6BC8; // type:function size:0x4 scope:global align:4 +exec__13PikiBuryStateFP4Piki = .text:0x800D6BCC; // type:function size:0x200 scope:global align:4 +cleanup__13PikiBuryStateFP4Piki = .text:0x800D6DCC; // type:function size:0x4 scope:global align:4 +__ct__19PikiNukareWaitStateFv = .text:0x800D6DD0; // type:function size:0x50 scope:global align:4 +init__19PikiNukareWaitStateFP4Piki = .text:0x800D6E20; // type:function size:0x14C scope:global align:4 +exec__19PikiNukareWaitStateFP4Piki = .text:0x800D6F6C; // type:function size:0x78 scope:global align:4 +cleanup__19PikiNukareWaitStateFP4Piki = .text:0x800D6FE4; // type:function size:0x4 scope:global align:4 +__ct__15PikiNukareStateFv = .text:0x800D6FE8; // type:function size:0x4C scope:global align:4 +init__15PikiNukareStateFP4Piki = .text:0x800D7034; // type:function size:0xAC scope:global align:4 +exec__15PikiNukareStateFP4Piki = .text:0x800D70E0; // type:function size:0x4 scope:global align:4 +cleanup__15PikiNukareStateFP4Piki = .text:0x800D70E4; // type:function size:0x264 scope:global align:4 +procAnimMsg__15PikiNukareStateFP4PikiP7MsgAnim = .text:0x800D7348; // type:function size:0x190 scope:global align:4 +__ct__17PikiAutoNukiStateFv = .text:0x800D74D8; // type:function size:0x50 scope:global align:4 +init__17PikiAutoNukiStateFP4Piki = .text:0x800D7528; // type:function size:0xDC scope:global align:4 +exec__17PikiAutoNukiStateFP4Piki = .text:0x800D7604; // type:function size:0x78 scope:global align:4 +cleanup__17PikiAutoNukiStateFP4Piki = .text:0x800D767C; // type:function size:0x4 scope:global align:4 +procAnimMsg__17PikiAutoNukiStateFP4PikiP7MsgAnim = .text:0x800D7680; // type:function size:0x9C scope:global align:4 +__ct__16PikiPressedStateFv = .text:0x800D771C; // type:function size:0x4C scope:global align:4 +procCollideMsg__16PikiPressedStateFP4PikiP10MsgCollide = .text:0x800D7768; // type:function size:0x24 scope:global align:4 +init__16PikiPressedStateFP4Piki = .text:0x800D778C; // type:function size:0x34 scope:global align:4 +exec__16PikiPressedStateFP4Piki = .text:0x800D77C0; // type:function size:0x140 scope:global align:4 +cleanup__16PikiPressedStateFP4Piki = .text:0x800D7900; // type:function size:0x4 scope:global align:4 +__ct__14PikiDyingStateFv = .text:0x800D7904; // type:function size:0x4C scope:global align:4 +init__14PikiDyingStateFP4Piki = .text:0x800D7950; // type:function size:0x11C scope:global align:4 +exec__14PikiDyingStateFP4Piki = .text:0x800D7A6C; // type:function size:0x34 scope:global align:4 +cleanup__14PikiDyingStateFP4Piki = .text:0x800D7AA0; // type:function size:0x4 scope:global align:4 +procAnimMsg__14PikiDyingStateFP4PikiP7MsgAnim = .text:0x800D7AA4; // type:function size:0x90 scope:global align:4 +__ct__13PikiDeadStateFv = .text:0x800D7B34; // type:function size:0x4C scope:global align:4 +init__13PikiDeadStateFP4Piki = .text:0x800D7B80; // type:function size:0x34 scope:global align:4 +exec__13PikiDeadStateFP4Piki = .text:0x800D7BB4; // type:function size:0x9C scope:global align:4 +cleanup__13PikiDeadStateFP4Piki = .text:0x800D7C50; // type:function size:0x1C scope:global align:4 +__ct__16PikiEmotionStateFv = .text:0x800D7C6C; // type:function size:0x60 scope:global align:4 +init__16PikiEmotionStateFP4Piki = .text:0x800D7CCC; // type:function size:0x784 scope:global align:4 +doDump__16PikiEmotionStateFv = .text:0x800D8450; // type:function size:0x4 scope:global align:4 +exec__16PikiEmotionStateFP4Piki = .text:0x800D8454; // type:function size:0x1B8 scope:global align:4 +cleanup__16PikiEmotionStateFP4Piki = .text:0x800D860C; // type:function size:0x34 scope:global align:4 +procAnimMsg__16PikiEmotionStateFP4PikiP7MsgAnim = .text:0x800D8640; // type:function size:0x84 scope:global align:4 +useLookUpdate__13PikiDeadStateFv = .text:0x800D86C4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__14PikiDyingStateFv = .text:0x800D86CC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__16PikiPressedStateFv = .text:0x800D86D4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__17PikiAutoNukiStateFv = .text:0x800D86DC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiNukareStateFv = .text:0x800D86E4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__19PikiNukareWaitStateFv = .text:0x800D86EC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__15PikiGrowupStateFv = .text:0x800D86F4; // type:function size:0x8 scope:weak align:4 +useLookUpdate__21PikiKinokoChangeStateFv = .text:0x800D86FC; // type:function size:0x8 scope:weak align:4 +useLookUpdate__13PikiGrowStateFv = .text:0x800D8704; // type:function size:0x8 scope:weak align:4 +collideAI__15PikiNormalStateFv = .text:0x800D870C; // type:function size:0x8 scope:weak align:4 +freeAI__15PikiNormalStateFv = .text:0x800D8714; // type:function size:0x8 scope:weak align:4 +transit__13AState<4Piki>FP4Pikii = .text:0x800D871C; // type:function size:0x30 scope:weak align:4 +exitCourse__15PikiShapeObjectFv = .text:0x800D874C; // type:function size:0x28 scope:global align:4 +init__15PikiShapeObjectFv = .text:0x800D8774; // type:function size:0x28 scope:global align:4 +getAnimMgr__15PikiShapeObjectFv = .text:0x800D879C; // type:function size:0x3C scope:global align:4 +initOnce__15PikiShapeObjectFv = .text:0x800D87D8; // type:function size:0x1B4 scope:global align:4 +__ct__15PikiShapeObjectFP5Shape = .text:0x800D898C; // type:function size:0x9C scope:global align:4 +isKinoko__8ViewPikiFv = .text:0x800D8A28; // type:function size:0x20 scope:global align:4 +changeShape__8ViewPikiFi = .text:0x800D8A48; // type:function size:0x128 scope:global align:4 +__ct__8ViewPikiFP12CreatureProp = .text:0x800D8B70; // type:function size:0x60 scope:global align:4 +initBirth__8ViewPikiFv = .text:0x800D8BD0; // type:function size:0xB4 scope:global align:4 +init__8ViewPikiFP5ShapeP6MapMgrP4Navi = .text:0x800D8C84; // type:function size:0x26C scope:global align:4 +setFlower__8ViewPikiFi = .text:0x800D8EF0; // type:function size:0x64 scope:global align:4 +setLeaves__8ViewPikiFi = .text:0x800D8F54; // type:function size:0x4 scope:global align:4 +postUpdate__8ViewPikiFif = .text:0x800D8F58; // type:function size:0x17C scope:global align:4 +update__8ViewPikiFv = .text:0x800D90D4; // type:function size:0x408 scope:global align:4 +startHimaLook__4PikiFP8Vector3f = .text:0x800D94DC; // type:function size:0xA0 scope:global align:4 +finishLook__4PikiFv = .text:0x800D957C; // type:function size:0x18 scope:global align:4 +isLooking__4PikiFv = .text:0x800D9594; // type:function size:0x14 scope:global align:4 +updateLook__4PikiFv = .text:0x800D95A8; // type:function size:0x378 scope:global align:4 +demoDraw__8ViewPikiFR8GraphicsP8Matrix4f = .text:0x800D9920; // type:function size:0x678 scope:global align:4 +refresh__8ViewPikiFR8Graphics = .text:0x800D9F98; // type:function size:0xB48 scope:global align:4 +satisfy__12CndIsVisibleFP8Creature = .text:0x800DAAE0; // type:function size:0x30 scope:global align:4 +satisfy__10CndIsAtariFP8Creature = .text:0x800DAB10; // type:function size:0x30 scope:global align:4 +satisfy__13CndStickMouthFP8Creature = .text:0x800DAB40; // type:function size:0x2C scope:global align:4 +__ct__7GenBaseFUlPcPc = .text:0x800DAB6C; // type:function size:0x30 scope:global align:4 +getLatestVersion__7GenBaseFv = .text:0x800DAB9C; // type:function size:0xC scope:weak align:4 +ramSaveParameters__7GenBaseFR18RandomAccessStream = .text:0x800DABA8; // type:function size:0x20 scope:global align:4 +ramLoadParameters__7GenBaseFR18RandomAccessStream = .text:0x800DABC8; // type:function size:0x20 scope:global align:4 +doRead__7GenBaseFR18RandomAccessStream = .text:0x800DABE8; // type:function size:0x4 scope:weak align:4 +makeObjectPiki__Fv = .text:0x800DABEC; // type:function size:0xFC scope:local align:4 +getLatestVersion__9GenObjectFv = .text:0x800DACE8; // type:function size:0x50 scope:global align:4 +makeTypeOne__Fv = .text:0x800DAD38; // type:function size:0x17C scope:local align:4 +makeTypeAtOnce__Fv = .text:0x800DAEB4; // type:function size:0x130 scope:local align:4 +makeTypeInitRand__Fv = .text:0x800DAFE4; // type:function size:0x15C scope:local align:4 +getLatestVersion__7GenTypeFv = .text:0x800DB140; // type:function size:0x50 scope:global align:4 +ramSaveParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB190; // type:function size:0x6C scope:global align:4 +ramLoadParameters__7GenTypeFR18RandomAccessStream = .text:0x800DB1FC; // type:function size:0x6C scope:global align:4 +ramSaveParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB268; // type:function size:0xC0 scope:global align:4 +ramLoadParameters__10GenTypeOneFR18RandomAccessStream = .text:0x800DB328; // type:function size:0xC0 scope:global align:4 +ramSaveParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB3E8; // type:function size:0x88 scope:global align:4 +ramLoadParameters__13GenTypeAtOnceFR18RandomAccessStream = .text:0x800DB470; // type:function size:0x88 scope:global align:4 +ramSaveParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB4F8; // type:function size:0xA4 scope:global align:4 +ramLoadParameters__15GenTypeInitRandFR18RandomAccessStream = .text:0x800DB59C; // type:function size:0xA4 scope:global align:4 +doWrite__7GenAreaFR18RandomAccessStream = .text:0x800DB640; // type:function size:0x7C scope:global align:4 +doRead__7GenAreaFR18RandomAccessStream = .text:0x800DB6BC; // type:function size:0x7C scope:global align:4 +makeCircleArea__Fv = .text:0x800DB738; // type:function size:0xD8 scope:local align:4 +makePointArea__Fv = .text:0x800DB810; // type:function size:0x98 scope:local align:4 +getLatestVersion__7GenAreaFv = .text:0x800DB8A8; // type:function size:0x50 scope:global align:4 +ramSaveParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DB8F8; // type:function size:0x40 scope:global align:4 +ramLoadParameters__13GenAreaCircleFR18RandomAccessStream = .text:0x800DB938; // type:function size:0x60 scope:global align:4 +__ct__9GeneratorFv = .text:0x800DB998; // type:function size:0x170 scope:global align:4 +__ct__9GeneratorFi = .text:0x800DBB08; // type:function size:0x154 scope:global align:4 +isExpired__9GeneratorFv = .text:0x800DBC5C; // type:function size:0x38 scope:global align:4 +loadCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBC94; // type:function size:0x104 scope:global align:4 +saveCreature__9GeneratorFR18RandomAccessStream = .text:0x800DBD98; // type:function size:0x78 scope:global align:4 +init__9GeneratorFv = .text:0x800DBE10; // type:function size:0x23C scope:global align:4 +init__7GenTypeFP9Generator = .text:0x800DC04C; // type:function size:0x4 scope:weak align:4 +init__7GenAreaFP9Generator = .text:0x800DC050; // type:function size:0x4 scope:weak align:4 +informDeath__9GeneratorFP8Creature = .text:0x800DC054; // type:function size:0x88 scope:global align:4 +update__9GeneratorFv = .text:0x800DC0DC; // type:function size:0x4 scope:global align:4 +render__9GeneratorFR8Graphics = .text:0x800DC0E0; // type:function size:0x1AC scope:global align:4 +render__7GenTypeFR8GraphicsP9Generator = .text:0x800DC28C; // type:function size:0x4 scope:weak align:4 +render__7GenAreaFR8GraphicsP9Generator = .text:0x800DC290; // type:function size:0x4 scope:weak align:4 +read__9GeneratorFR18RandomAccessStream = .text:0x800DC294; // type:function size:0x734 scope:global align:4 +create__17Factory<7GenType>FUl = .text:0x800DC9C8; // type:function size:0x6C scope:weak align:4 +create__17Factory<7GenArea>FUl = .text:0x800DCA34; // type:function size:0x6C scope:weak align:4 +create__19Factory<9GenObject>FUl = .text:0x800DCAA0; // type:function size:0x6C scope:weak align:4 +write__9GeneratorFR18RandomAccessStream = .text:0x800DCB0C; // type:function size:0x760 scope:global align:4 +__ct__12GeneratorMgrFv = .text:0x800DD26C; // type:function size:0x514 scope:global align:4 +init__12GeneratorMgrFv = .text:0x800DD780; // type:function size:0x40 scope:global align:4 +setDayLimit__12GeneratorMgrFi = .text:0x800DD7C0; // type:function size:0x1C scope:global align:4 +updateUseList__12GeneratorMgrFv = .text:0x800DD7DC; // type:function size:0xA0 scope:global align:4 +update__12GeneratorMgrFv = .text:0x800DD87C; // type:function size:0x4C scope:global align:4 +render__12GeneratorMgrFR8Graphics = .text:0x800DD8C8; // type:function size:0x5C scope:global align:4 +read__12GeneratorMgrFR18RandomAccessStreamb = .text:0x800DD924; // type:function size:0x274 scope:global align:4 +ramSaveParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDB98; // type:function size:0x6C scope:global align:4 +ramLoadParameters__13GenObjectPikiFR18RandomAccessStream = .text:0x800DDC04; // type:function size:0x6C scope:global align:4 +birth__13GenObjectPikiFR9BirthInfo = .text:0x800DDC70; // type:function size:0x214 scope:global align:4 +init__10GenTypeOneFP9Generator = .text:0x800DDE84; // type:function size:0xA4 scope:global align:4 +setBirthInfo__10GenTypeOneFR9BirthInfoP9Generator = .text:0x800DDF28; // type:function size:0x1B8 scope:global align:4 +render__10GenTypeOneFR8GraphicsP9Generator = .text:0x800DE0E0; // type:function size:0x168 scope:global align:4 +getMaxCount__13GenTypeAtOnceFv = .text:0x800DE248; // type:function size:0x8 scope:global align:4 +init__13GenTypeAtOnceFP9Generator = .text:0x800DE250; // type:function size:0xE4 scope:global align:4 +setBirthInfo__13GenTypeAtOnceFR9BirthInfoP9Generator = .text:0x800DE334; // type:function size:0x138 scope:global align:4 +getMaxCount__15GenTypeInitRandFv = .text:0x800DE46C; // type:function size:0x8 scope:global align:4 +init__15GenTypeInitRandFP9Generator = .text:0x800DE474; // type:function size:0x144 scope:global align:4 +setBirthInfo__15GenTypeInitRandFR9BirthInfoP9Generator = .text:0x800DE5B8; // type:function size:0x138 scope:global align:4 +getPos__12GenAreaPointFP9Generator = .text:0x800DE6F0; // type:function size:0x88 scope:global align:4 +render__12GenAreaPointFR8GraphicsP9Generator = .text:0x800DE778; // type:function size:0x4 scope:global align:4 +getPos__13GenAreaCircleFP9Generator = .text:0x800DE77C; // type:function size:0x1A4 scope:global align:4 +render__13GenAreaCircleFR8GraphicsP9Generator = .text:0x800DE920; // type:function size:0x130 scope:global align:4 +__ct__13GeneratorListFv = .text:0x800DEA50; // type:function size:0x58 scope:global align:4 +findGenerator__13GeneratorListFi = .text:0x800DEAA8; // type:function size:0x38 scope:global align:4 +createRamGenerators__13GeneratorListFv = .text:0x800DEAE0; // type:function size:0x70 scope:global align:4 +updateUseList__13GeneratorListFv = .text:0x800DEB50; // type:function size:0xB0 scope:global align:4 +getRadius__13GenAreaCircleFv = .text:0x800DEC00; // type:function size:0x8 scope:weak align:4 +update__7GenAreaFP9Generator = .text:0x800DEC08; // type:function size:0x4 scope:weak align:4 +getRadius__7GenAreaFv = .text:0x800DEC0C; // type:function size:0x8 scope:weak align:4 +update__7GenTypeFP9Generator = .text:0x800DEC14; // type:function size:0x4 scope:weak align:4 +getMaxCount__10GenTypeOneFv = .text:0x800DEC18; // type:function size:0x8 scope:weak align:4 +__ct__14GeneratorCacheFv = .text:0x800DEC20; // type:function size:0x130 scope:global align:4 +init__14GeneratorCacheFPUci = .text:0x800DED50; // type:function size:0x18 scope:global align:4 +initGame__14GeneratorCacheFv = .text:0x800DED68; // type:function size:0xB8 scope:global align:4 +addOne__14GeneratorCacheFUl = .text:0x800DEE20; // type:function size:0xF4 scope:global align:4 +saveCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DEF14; // type:function size:0x134 scope:global align:4 +loadCard__14GeneratorCacheFR18RandomAccessStream = .text:0x800DF048; // type:function size:0x23C scope:global align:4 +saveCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF284; // type:function size:0x10C scope:global align:4 +loadCard__Q214GeneratorCache5CacheFR18RandomAccessStream = .text:0x800DF390; // type:function size:0x10C scope:global align:4 +findCache__14GeneratorCacheFRQ214GeneratorCache5CacheUl = .text:0x800DF49C; // type:function size:0x28 scope:global align:4 +preload__14GeneratorCacheFUl = .text:0x800DF4C4; // type:function size:0x160 scope:global align:4 +hasUfoParts__14GeneratorCacheFUlUl = .text:0x800DF624; // type:function size:0x128 scope:global align:4 +load__14GeneratorCacheFUl = .text:0x800DF74C; // type:function size:0x19C scope:global align:4 +beginSave__14GeneratorCacheFUl = .text:0x800DF8E8; // type:function size:0x90 scope:global align:4 +endSave__14GeneratorCacheFv = .text:0x800DF978; // type:function size:0x80 scope:global align:4 +saveGenerator__14GeneratorCacheFP9Generator = .text:0x800DF9F8; // type:function size:0x160 scope:global align:4 +prepareUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFB58; // type:function size:0x118 scope:global align:4 +loadUfoParts__14GeneratorCacheFPQ214GeneratorCache5Cache = .text:0x800DFC70; // type:function size:0x11C scope:global align:4 +saveUfoParts__14GeneratorCacheFP6Pellet = .text:0x800DFD8C; // type:function size:0x124 scope:global align:4 +saveGeneratorCreature__14GeneratorCacheFP9Generator = .text:0x800DFEB0; // type:function size:0x168 scope:global align:4 +dump__14GeneratorCacheFv = .text:0x800E0018; // type:function size:0x5C scope:global align:4 +assertValid__14GeneratorCacheFv = .text:0x800E0074; // type:function size:0x6C scope:global align:4 +stickUpdate__9ObjectMgrFv = .text:0x800E00E0; // type:function size:0x10C scope:global align:4 +invalidateSearch__9ObjectMgrFv = .text:0x800E01EC; // type:function size:0x124 scope:global align:4 +update__9ObjectMgrFv = .text:0x800E0310; // type:function size:0x10C scope:global align:4 +store__9ObjectMgrFv = .text:0x800E041C; // type:function size:0x4 scope:global align:4 +killAll__9ObjectMgrFv = .text:0x800E0420; // type:function size:0x264 scope:global align:4 +postUpdate__9ObjectMgrFif = .text:0x800E0684; // type:function size:0x16C scope:global align:4 +refresh__9ObjectMgrFR8Graphics = .text:0x800E07F0; // type:function size:0x11C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3fP9Condition = .text:0x800E090C; // type:function size:0x25C scope:global align:4 +findClosest__9ObjectMgrFR8Vector3ffP9Condition = .text:0x800E0B68; // type:function size:0x274 scope:global align:4 +drawShadow__9ObjectMgrFR8GraphicsP7Texture = .text:0x800E0DDC; // type:function size:0x128 scope:global align:4 +__ct__13MonoObjectMgrFv = .text:0x800E0F04; // type:function size:0xA4 scope:global align:4 +create__13MonoObjectMgrFi = .text:0x800E0FA8; // type:function size:0xB4 scope:global align:4 +postUpdate__13MonoObjectMgrFif = .text:0x800E105C; // type:function size:0xB8 scope:global align:4 +drawShadow__13MonoObjectMgrFR8GraphicsP7Texture = .text:0x800E1114; // type:function size:0x9C scope:global align:4 +refresh__13MonoObjectMgrFR8Graphics = .text:0x800E11B0; // type:function size:0x90 scope:global align:4 +update__13MonoObjectMgrFv = .text:0x800E1240; // type:function size:0xEC scope:global align:4 +birth__13MonoObjectMgrFv = .text:0x800E132C; // type:function size:0xAC scope:global align:4 +kill__13MonoObjectMgrFP8Creature = .text:0x800E13D8; // type:function size:0x84 scope:global align:4 +getCreature__13MonoObjectMgrFi = .text:0x800E145C; // type:function size:0x3C scope:global align:4 +getFirst__13MonoObjectMgrFv = .text:0x800E1498; // type:function size:0x58 scope:global align:4 +getNext__13MonoObjectMgrFi = .text:0x800E14F0; // type:function size:0x5C scope:global align:4 +isDone__13MonoObjectMgrFi = .text:0x800E154C; // type:function size:0x1C scope:global align:4 +search__13MonoObjectMgrFP9ObjectMgr = .text:0x800E1568; // type:function size:0x388 scope:global align:4 +searchSelf__13MonoObjectMgrFv = .text:0x800E18F0; // type:function size:0x30C scope:global align:4 +__ct__13PolyObjectMgrFi = .text:0x800E1BFC; // type:function size:0x260 scope:global align:4 +create__13PolyObjectMgrFi = .text:0x800E1E5C; // type:function size:0x7C scope:global align:4 +update__13PolyObjectMgrFv = .text:0x800E1ED8; // type:function size:0x108 scope:global align:4 +postUpdate__13PolyObjectMgrFif = .text:0x800E1FE0; // type:function size:0xAC scope:global align:4 +refresh__13PolyObjectMgrFR8Graphics = .text:0x800E208C; // type:function size:0x9C scope:global align:4 +drawShadow__13PolyObjectMgrFR8GraphicsP7Texture = .text:0x800E2128; // type:function size:0xA8 scope:global align:4 +beginRegister__13PolyObjectMgrFv = .text:0x800E21D0; // type:function size:0x4 scope:global align:4 +registerClass__13PolyObjectMgrFiP8Creaturei = .text:0x800E21D4; // type:function size:0x88 scope:global align:4 +endRegister__13PolyObjectMgrFv = .text:0x800E225C; // type:function size:0x68 scope:global align:4 +get__13PolyObjectMgrFi = .text:0x800E22C4; // type:function size:0x14 scope:global align:4 +birth__13PolyObjectMgrFi = .text:0x800E22D8; // type:function size:0x11C scope:global align:4 +kill__13PolyObjectMgrFP8Creature = .text:0x800E23F4; // type:function size:0x80 scope:global align:4 +getCreature__13PolyObjectMgrFi = .text:0x800E2474; // type:function size:0x44 scope:global align:4 +getFirst__13PolyObjectMgrFv = .text:0x800E24B8; // type:function size:0x58 scope:global align:4 +getNext__13PolyObjectMgrFi = .text:0x800E2510; // type:function size:0x5C scope:global align:4 +isDone__13PolyObjectMgrFi = .text:0x800E256C; // type:function size:0x1C scope:global align:4 +search__13PolyObjectMgrFP9ObjectMgr = .text:0x800E2588; // type:function size:0x28 scope:global align:4 +searchSelf__13PolyObjectMgrFv = .text:0x800E25B0; // type:function size:0x2C0 scope:global align:4 +search__9ObjectMgrFP9ObjectMgr = .text:0x800E2870; // type:function size:0x404 scope:global align:4 +getCreature__15CreatureNodeMgrFi = .text:0x800E2C74; // type:function size:0x88 scope:global align:4 +getFirst__15CreatureNodeMgrFv = .text:0x800E2CFC; // type:function size:0x8 scope:global align:4 +getNext__15CreatureNodeMgrFi = .text:0x800E2D04; // type:function size:0x8 scope:global align:4 +isDone__15CreatureNodeMgrFi = .text:0x800E2D0C; // type:function size:0x44 scope:global align:4 +getSize__15CreatureNodeMgrFv = .text:0x800E2D50; // type:function size:0x24 scope:global align:4 +__dt__15CreatureNodeMgrFv = .text:0x800E2D74; // type:function size:0x6C scope:weak align:4 +getMax__15CreatureNodeMgrFv = .text:0x800E2DE0; // type:function size:0x8 scope:weak align:4 +__dt__13PolyObjectMgrFv = .text:0x800E2DE8; // type:function size:0x6C scope:weak align:4 +getSize__13PolyObjectMgrFv = .text:0x800E2E54; // type:function size:0x8 scope:weak align:4 +getMax__13PolyObjectMgrFv = .text:0x800E2E5C; // type:function size:0x8 scope:weak align:4 +@8@update__13PolyObjectMgrFv = .text:0x800E2E64; // type:function size:0x8 scope:weak align:4 +__ct__12SearchSystemFv = .text:0x800E2E6C; // type:function size:0x4 scope:global align:4 +update__12SearchSystemFv = .text:0x800E2E70; // type:function size:0x46C scope:global align:4 +updateLoopOptimised__12SearchSystemFv = .text:0x800E32DC; // type:function size:0x7EC scope:global align:4 +__ct__12SearchBufferFv = .text:0x800E3AC8; // type:function size:0x70 scope:global align:4 +init__12SearchBufferFP10SearchDatai = .text:0x800E3B38; // type:function size:0x1D8 scope:global align:4 +clear__12SearchBufferFv = .text:0x800E3D10; // type:function size:0x3C scope:global align:4 +invalidate__12SearchBufferFv = .text:0x800E3D4C; // type:function size:0x60 scope:global align:4 +insertQuick__12SearchBufferFP8Creaturef = .text:0x800E3DAC; // type:function size:0x1E8 scope:global align:4 +insert__12SearchBufferFP8Creaturef = .text:0x800E3F94; // type:function size:0x204 scope:global align:4 +getCreature__12SearchBufferFi = .text:0x800E4198; // type:function size:0x2C scope:global align:4 +getFirst__12SearchBufferFv = .text:0x800E41C4; // type:function size:0x8 scope:global align:4 +getNext__12SearchBufferFi = .text:0x800E41CC; // type:function size:0x8 scope:global align:4 +isDone__12SearchBufferFi = .text:0x800E41D4; // type:function size:0x1C scope:global align:4 +__ct__12RefCountableFv = .text:0x800E41F0; // type:function size:0x18 scope:global align:4 +clearCnt__12RefCountableFv = .text:0x800E4208; // type:function size:0xC scope:global align:4 +addCnt__12RefCountableFv = .text:0x800E4214; // type:function size:0x10 scope:global align:4 +subCnt__12RefCountableFv = .text:0x800E4224; // type:function size:0x24 scope:global align:4 +setColorType__7GemItemFi = .text:0x800E4248; // type:function size:0xE4 scope:global align:4 +split__7GemItemFv = .text:0x800E432C; // type:function size:0x1FC scope:global align:4 +finalSetup__12ItemCreatureFv = .text:0x800E4528; // type:function size:0xC scope:weak align:4 +workable__7RockGenFv = .text:0x800E4534; // type:function size:0x20 scope:global align:4 +startWork__7RockGenFv = .text:0x800E4554; // type:function size:0x18 scope:global align:4 +finishWork__7RockGenFv = .text:0x800E456C; // type:function size:0x18 scope:global align:4 +workable__8GrassGenFv = .text:0x800E4584; // type:function size:0x20 scope:global align:4 +startWork__8GrassGenFv = .text:0x800E45A4; // type:function size:0x18 scope:global align:4 +finishWork__8GrassGenFv = .text:0x800E45BC; // type:function size:0x18 scope:global align:4 +resolve__7RockGenFv = .text:0x800E45D4; // type:function size:0x25C scope:global align:4 +resolve__8GrassGenFv = .text:0x800E4830; // type:function size:0x25C scope:global align:4 +__ct__7RockGenFP5ShapeP12CreatureProp = .text:0x800E4A8C; // type:function size:0xA0 scope:global align:4 +create__7RockGenFifi = .text:0x800E4B2C; // type:function size:0x284 scope:global align:4 +__ct__6PebbleFv = .text:0x800E4DB0; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__7RockGenFfi = .text:0x800E4DC4; // type:function size:0x10 scope:global align:4 +startAI__7RockGenFi = .text:0x800E4DD4; // type:function size:0x5C scope:global align:4 +killPebble__7RockGenFv = .text:0x800E4E30; // type:function size:0x10 scope:global align:4 +doSave__7RockGenFR18RandomAccessStream = .text:0x800E4E40; // type:function size:0x3C scope:global align:4 +doLoad__7RockGenFR18RandomAccessStream = .text:0x800E4E7C; // type:function size:0x80 scope:global align:4 +update__7RockGenFv = .text:0x800E4EFC; // type:function size:0x2C scope:global align:4 +refresh__7RockGenFR8Graphics = .text:0x800E4F28; // type:function size:0x190 scope:global align:4 +getSize__7RockGenFv = .text:0x800E50B8; // type:function size:0x8 scope:weak align:4 +getRandomPebble__7RockGenFv = .text:0x800E50C0; // type:function size:0xE0 scope:global align:4 +__ct__8GrassGenFP5ShapeP12CreatureProp = .text:0x800E51A0; // type:function size:0xA0 scope:global align:4 +create__8GrassGenFifi = .text:0x800E5240; // type:function size:0x244 scope:global align:4 +__ct__5GrassFv = .text:0x800E5484; // type:function size:0x14 scope:weak align:4 +setSizeAndNum__8GrassGenFfi = .text:0x800E5498; // type:function size:0x10 scope:global align:4 +startAI__8GrassGenFi = .text:0x800E54A8; // type:function size:0x5C scope:global align:4 +update__8GrassGenFv = .text:0x800E5504; // type:function size:0x2C scope:global align:4 +refresh__8GrassGenFR8Graphics = .text:0x800E5530; // type:function size:0x190 scope:global align:4 +getSize__8GrassGenFv = .text:0x800E56C0; // type:function size:0x8 scope:weak align:4 +getRandomGrass__8GrassGenFv = .text:0x800E56C8; // type:function size:0xE0 scope:global align:4 +update__8WeedsGenFv = .text:0x800E57A8; // type:function size:0x4 scope:global align:4 +refresh__8WeedsGenFR8Graphics = .text:0x800E57AC; // type:function size:0x4 scope:global align:4 +startAI__8WeedsGenFi = .text:0x800E57B0; // type:function size:0x1CC scope:global align:4 +startAI__4WeedFi = .text:0x800E597C; // type:function size:0x24 scope:global align:4 +interactPullout__4WeedFP8Creature = .text:0x800E59A0; // type:function size:0xCC scope:global align:4 +update__4WeedFv = .text:0x800E5A6C; // type:function size:0x9C scope:global align:4 +refresh__4WeedFR8Graphics = .text:0x800E5B08; // type:function size:0x108 scope:global align:4 +isVisible__4WeedFv = .text:0x800E5C10; // type:function size:0x14 scope:global align:4 +isAlive__4WeedFv = .text:0x800E5C24; // type:function size:0x8 scope:global align:4 +isAtari__4WeedFv = .text:0x800E5C2C; // type:function size:0x14 scope:global align:4 +needFlick__4WeedFP8Creature = .text:0x800E5C40; // type:function size:0x8 scope:weak align:4 +isAlive__8GrassGenFv = .text:0x800E5C48; // type:function size:0x14 scope:weak align:4 +isVisible__8GrassGenFv = .text:0x800E5C5C; // type:function size:0x8 scope:weak align:4 +needFlick__8GrassGenFP8Creature = .text:0x800E5C64; // type:function size:0x8 scope:weak align:4 +isAlive__7RockGenFv = .text:0x800E5C6C; // type:function size:0x14 scope:weak align:4 +isVisible__7RockGenFv = .text:0x800E5C80; // type:function size:0x8 scope:weak align:4 +needFlick__7RockGenFP8Creature = .text:0x800E5C88; // type:function size:0x8 scope:weak align:4 +__ct__8KusaItemFP12CreaturePropP5Shape = .text:0x800E5C90; // type:function size:0xA4 scope:global align:4 +startAI__8KusaItemFi = .text:0x800E5D34; // type:function size:0x118 scope:global align:4 +doLoad__8KusaItemFR18RandomAccessStream = .text:0x800E5E4C; // type:function size:0x60 scope:global align:4 +doSave__8KusaItemFR18RandomAccessStream = .text:0x800E5EAC; // type:function size:0x38 scope:global align:4 +ignoreAtari__8KusaItemFP8Creature = .text:0x800E5EE4; // type:function size:0x1C scope:global align:4 +getSize__8KusaItemFv = .text:0x800E5F00; // type:function size:0x8 scope:global align:4 +getiMass__8KusaItemFv = .text:0x800E5F08; // type:function size:0x8 scope:global align:4 +update__8KusaItemFv = .text:0x800E5F10; // type:function size:0x38 scope:global align:4 +refresh__8KusaItemFR8Graphics = .text:0x800E5F48; // type:function size:0x144 scope:global align:4 +__ct__10BoBaseItemFP12CreaturePropP5Shape = .text:0x800E608C; // type:function size:0xD8 scope:global align:4 +startAI__10BoBaseItemFi = .text:0x800E6164; // type:function size:0xAC scope:global align:4 +ignoreAtari__10BoBaseItemFP8Creature = .text:0x800E6210; // type:function size:0x30 scope:global align:4 +getSize__10BoBaseItemFv = .text:0x800E6240; // type:function size:0x8 scope:global align:4 +getiMass__10BoBaseItemFv = .text:0x800E6248; // type:function size:0x8 scope:global align:4 +update__10BoBaseItemFv = .text:0x800E6250; // type:function size:0xB4 scope:global align:4 +refresh__10BoBaseItemFR8Graphics = .text:0x800E6304; // type:function size:0xEC scope:global align:4 +interactBuild__10BoBaseItemFR13InteractBuild = .text:0x800E63F0; // type:function size:0x110 scope:global align:4 +isAlive__10BoBaseItemFv = .text:0x800E6500; // type:function size:0x8 scope:global align:4 +isVisible__10BoBaseItemFv = .text:0x800E6508; // type:function size:0x8 scope:weak align:4 +isVisible__8KusaItemFv = .text:0x800E6510; // type:function size:0x8 scope:weak align:4 +isAlive__8KusaItemFv = .text:0x800E6518; // type:function size:0x8 scope:weak align:4 +__ct__13FishGeneratorFv = .text:0x800E6520; // type:function size:0xB0 scope:global align:4 +__ct__4FishFv = .text:0x800E65D0; // type:function size:0x20 scope:weak align:4 +startAI__13FishGeneratorFi = .text:0x800E65F0; // type:function size:0x1B4 scope:global align:4 +update__13FishGeneratorFv = .text:0x800E67A4; // type:function size:0x140 scope:global align:4 +moveFish__13FishGeneratorFP4Fish = .text:0x800E68E4; // type:function size:0x554 scope:global align:4 +refresh__13FishGeneratorFR8Graphics = .text:0x800E6E38; // type:function size:0x98 scope:global align:4 +insideSafeArea__7UfoItemFR8Vector3f = .text:0x800E6ED0; // type:function size:0xB4 scope:global align:4 +setSpotTurn__7UfoItemFb = .text:0x800E6F84; // type:function size:0x124 scope:global align:4 +setSpotActive__7UfoItemFb = .text:0x800E70A8; // type:function size:0x14C scope:global align:4 +setTroubleEffect__7UfoItemFb = .text:0x800E71F4; // type:function size:0xB8 scope:global align:4 +startTroubleEffectOne__7UfoItemFi = .text:0x800E72AC; // type:function size:0xD4 scope:global align:4 +updateTroubleEffect__7UfoItemFv = .text:0x800E7380; // type:function size:0x24C scope:global align:4 +startConeEffect__7UfoItemFi = .text:0x800E75CC; // type:function size:0x12C scope:global align:4 +finishConeEffect__7UfoItemFv = .text:0x800E76F8; // type:function size:0x24 scope:global align:4 +startLevelFlag__7UfoItemFi = .text:0x800E771C; // type:function size:0x158 scope:global align:4 +lightLevelFlag__7UfoItemFi = .text:0x800E7874; // type:function size:0x78 scope:global align:4 +setJetEffect__7UfoItemFib = .text:0x800E78EC; // type:function size:0x390 scope:global align:4 +__ct__Q27UfoItem13LightAnimatorFv = .text:0x800E7C7C; // type:function size:0x1C scope:global align:4 +start__Q27UfoItem13LightAnimatorFi = .text:0x800E7C98; // type:function size:0x58 scope:global align:4 +getGoalPos__7UfoItemFv = .text:0x800E7CF0; // type:function size:0x64 scope:global align:4 +getGoalPosRadius__7UfoItemFv = .text:0x800E7D54; // type:function size:0x44 scope:global align:4 +getSuckPos__7UfoItemFv = .text:0x800E7D98; // type:function size:0x84 scope:global align:4 +suckMe__7UfoItemFP6Pellet = .text:0x800E7E1C; // type:function size:0xBC scope:global align:4 +startYozora__7UfoItemFv = .text:0x800E7ED8; // type:function size:0xAC scope:global align:4 +startGalaxy__7UfoItemFv = .text:0x800E7F84; // type:function size:0xAC scope:global align:4 +finishSuck__7UfoItemFP6Pellet = .text:0x800E8030; // type:function size:0x130 scope:global align:4 +animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E8160; // type:function size:0x454 scope:global align:4 +needShadow__7UfoItemFv = .text:0x800E85B4; // type:function size:0x8 scope:global align:4 +__ct__7UfoItemFP12CreaturePropP14UfoShapeObject = .text:0x800E85BC; // type:function size:0x1F4 scope:global align:4 +__ct__Q27UfoItem4SpotFv = .text:0x800E87B0; // type:function size:0x14 scope:weak align:4 +ignoreAtari__7UfoItemFP8Creature = .text:0x800E87C4; // type:function size:0x8 scope:global align:4 +startTakeoff__7UfoItemFv = .text:0x800E87CC; // type:function size:0xC0 scope:global align:4 +startAI__7UfoItemFi = .text:0x800E888C; // type:function size:0x2BC scope:global align:4 +getSize__7UfoItemFv = .text:0x800E8B48; // type:function size:0x8 scope:global align:4 +getiMass__7UfoItemFv = .text:0x800E8B50; // type:function size:0x8 scope:global align:4 +accessible__7UfoItemFv = .text:0x800E8B58; // type:function size:0xB0 scope:global align:4 +startAccess__7UfoItemFv = .text:0x800E8C08; // type:function size:0x170 scope:global align:4 +finishAccess__7UfoItemFv = .text:0x800E8D78; // type:function size:0x48 scope:global align:4 +update__7UfoItemFv = .text:0x800E8DC0; // type:function size:0x6C scope:global align:4 +setPca1Effect__7UfoItemFb = .text:0x800E8E2C; // type:function size:0x118 scope:global align:4 +setPca2Effect__7UfoItemFb = .text:0x800E8F44; // type:function size:0x118 scope:global align:4 +refresh__7UfoItemFR8Graphics = .text:0x800E905C; // type:function size:0xE4 scope:global align:4 +demoDraw__7UfoItemFR8GraphicsP8Matrix4f = .text:0x800E9140; // type:function size:0x504 scope:global align:4 +getRouteIndex__7UfoItemFv = .text:0x800E9644; // type:function size:0x8 scope:weak align:4 +isVisible__7UfoItemFv = .text:0x800E964C; // type:function size:0x8 scope:weak align:4 +isAlive__7UfoItemFv = .text:0x800E9654; // type:function size:0x8 scope:weak align:4 +@696@animationKeyUpdated__7UfoItemFR16PaniAnimKeyEvent = .text:0x800E965C; // type:function size:0x8 scope:weak align:4 +__ct__14UfoShapeObjectFP5Shape = .text:0x800E9664; // type:function size:0x158 scope:global align:4 +__ct__11AnimContextFv = .text:0x800E97BC; // type:function size:0x28 scope:weak align:4 +createMotionTable__15PaniUfoAnimatorFv = .text:0x800E97E4; // type:function size:0x2B0 scope:global align:4 +__ct__15PaniUfoAnimatorFv = .text:0x800E9A94; // type:function size:0x3C scope:global align:4 +__ct__11UfoAnimatorFv = .text:0x800E9AD0; // type:function size:0x5C scope:global align:4 +init__11UfoAnimatorFP14UfoShapeObjectP15PaniMotionTable = .text:0x800E9B2C; // type:function size:0xA4 scope:global align:4 +startMotion__11UfoAnimatorFiP14PaniMotionInfo = .text:0x800E9BD0; // type:function size:0x38 scope:global align:4 +setMotionSpeed__11UfoAnimatorFif = .text:0x800E9C08; // type:function size:0x10 scope:global align:4 +getMotionIndex__11UfoAnimatorFi = .text:0x800E9C18; // type:function size:0x14 scope:global align:4 +stopAllMotions__11UfoAnimatorFv = .text:0x800E9C2C; // type:function size:0x48 scope:global align:4 +initFlagMotions__11UfoAnimatorFi = .text:0x800E9C74; // type:function size:0x120 scope:global align:4 +startFlagMotions__11UfoAnimatorFi = .text:0x800E9D94; // type:function size:0x144 scope:global align:4 +setMotionLastFrame__11UfoAnimatorFi = .text:0x800E9ED8; // type:function size:0x88 scope:global align:4 +updateAnimation__11UfoAnimatorFv = .text:0x800E9F60; // type:function size:0x80 scope:global align:4 +updateContext__11UfoAnimatorFv = .text:0x800E9FE0; // type:function size:0x68 scope:global align:4 +collisionCallback__8BombItemFR9CollEvent = .text:0x800EA048; // type:function size:0xA8 scope:global align:4 +isVisible__8BombItemFv = .text:0x800EA0F0; // type:function size:0x58 scope:global align:4 +needShadow__8BombItemFv = .text:0x800EA148; // type:function size:0x8 scope:global align:4 +isAlive__8BombItemFv = .text:0x800EA150; // type:function size:0x58 scope:global align:4 +__ct__8BombItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EA1A8; // type:function size:0xAC scope:global align:4 +startAI__8BombItemFi = .text:0x800EA254; // type:function size:0xE8 scope:global align:4 +getSize__8BombItemFv = .text:0x800EA33C; // type:function size:0x8 scope:global align:4 +getiMass__8BombItemFv = .text:0x800EA344; // type:function size:0x8 scope:global align:4 +update__8BombItemFv = .text:0x800EA34C; // type:function size:0xD8 scope:global align:4 +renderTimer__8BombItemFR8Graphics = .text:0x800EA424; // type:function size:0x4 scope:global align:4 +refresh2d__8BombItemFR8Graphics = .text:0x800EA428; // type:function size:0x98 scope:global align:4 +refresh__8BombItemFR8Graphics = .text:0x800EA4C0; // type:function size:0xA8 scope:global align:4 +renderBlast__8BombItemFR8Graphics = .text:0x800EA568; // type:function size:0x4 scope:global align:4 +dump__8BombItemFv = .text:0x800EA56C; // type:function size:0x60 scope:global align:4 +insideSafeArea__8GoalItemFR8Vector3f = .text:0x800EA5CC; // type:function size:0x40 scope:global align:4 +playEffect__8GoalItemFi = .text:0x800EA60C; // type:function size:0x760 scope:global align:4 +setFlowEffect__8GoalItemFb = .text:0x800EAD6C; // type:function size:0xB4 scope:global align:4 +setSpotActive__8GoalItemFb = .text:0x800EAE20; // type:function size:0x178 scope:global align:4 +invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EAF98; // type:function size:0x58 scope:global align:4 +setFlightLight__8GoalItemFb = .text:0x800EAFF0; // type:function size:0x8 scope:global align:4 +getSuckPos__8GoalItemFv = .text:0x800EAFF8; // type:function size:0x24 scope:global align:4 +suckMe__8GoalItemFP6Pellet = .text:0x800EB01C; // type:function size:0xF4 scope:global align:4 +enterGoal__8GoalItemFP4Piki = .text:0x800EB110; // type:function size:0xC4 scope:global align:4 +exitPikis__8GoalItemFi = .text:0x800EB1D4; // type:function size:0x20 scope:global align:4 +exitPiki__8GoalItemFv = .text:0x800EB1F4; // type:function size:0x27C scope:global align:4 +needShadow__8GoalItemFv = .text:0x800EB470; // type:function size:0x8 scope:global align:4 +__ct__8GoalItemFP12CreaturePropP15ItemShapeObjectP15ItemShapeObjectP15ItemShapeObjectP8SimpleAI = .text:0x800EB478; // type:function size:0x110 scope:global align:4 +ignoreAtari__8GoalItemFP8Creature = .text:0x800EB588; // type:function size:0x1C scope:global align:4 +setColorType__8GoalItemFi = .text:0x800EB5A4; // type:function size:0x44 scope:global align:4 +startTakeoff__8GoalItemFv = .text:0x800EB5E8; // type:function size:0x7C scope:global align:4 +startLand__8GoalItemFv = .text:0x800EB664; // type:function size:0x104 scope:global align:4 +startConeShrink__8GoalItemFv = .text:0x800EB768; // type:function size:0x30 scope:global align:4 +startConeEmit__8GoalItemFv = .text:0x800EB798; // type:function size:0x14 scope:global align:4 +startAI__8GoalItemFi = .text:0x800EB7AC; // type:function size:0x494 scope:global align:4 +startBoot__8GoalItemFv = .text:0x800EBC40; // type:function size:0x74 scope:global align:4 +emitPiki__8GoalItemFv = .text:0x800EBCB4; // type:function size:0x2C scope:global align:4 +getSize__8GoalItemFv = .text:0x800EBCE0; // type:function size:0x8 scope:global align:4 +getiMass__8GoalItemFv = .text:0x800EBCE8; // type:function size:0x8 scope:global align:4 +update__8GoalItemFv = .text:0x800EBCF0; // type:function size:0x2D4 scope:global align:4 +refresh__8GoalItemFR8Graphics = .text:0x800EBFC4; // type:function size:0x378 scope:global align:4 +getGoalPos__8GoalItemFv = .text:0x800EC33C; // type:function size:0x1C scope:weak align:4 +getGoalPosRadius__8GoalItemFv = .text:0x800EC358; // type:function size:0x8 scope:weak align:4 +getRouteIndex__8GoalItemFv = .text:0x800EC360; // type:function size:0x8 scope:weak align:4 +isVisible__8GoalItemFv = .text:0x800EC368; // type:function size:0x8 scope:weak align:4 +isAlive__8GoalItemFv = .text:0x800EC370; // type:function size:0x8 scope:weak align:4 +@968@invoke__8GoalItemFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x800EC378; // type:function size:0x8 scope:weak align:4 +startWaterEffect__12PikiHeadItemFv = .text:0x800EC380; // type:function size:0x60 scope:global align:4 +finishWaterEffect__12PikiHeadItemFv = .text:0x800EC3E0; // type:function size:0x30 scope:global align:4 +playSound__12PikiHeadItemFi = .text:0x800EC410; // type:function size:0x74 scope:global align:4 +canPullout__12PikiHeadItemFv = .text:0x800EC484; // type:function size:0x58 scope:global align:4 +isVisible__12PikiHeadItemFv = .text:0x800EC4DC; // type:function size:0x8 scope:global align:4 +needShadow__12PikiHeadItemFv = .text:0x800EC4E4; // type:function size:0x68 scope:global align:4 +isAlive__12PikiHeadItemFv = .text:0x800EC54C; // type:function size:0x8 scope:global align:4 +__ct__12PikiHeadItemFP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800EC554; // type:function size:0x18C scope:global align:4 +startAI__12PikiHeadItemFi = .text:0x800EC6E0; // type:function size:0x150 scope:global align:4 +setPermanentEffects__12PikiHeadItemFb = .text:0x800EC830; // type:function size:0x8C scope:global align:4 +doKill__12PikiHeadItemFv = .text:0x800EC8BC; // type:function size:0x8C scope:global align:4 +getSize__12PikiHeadItemFv = .text:0x800EC948; // type:function size:0x8 scope:global align:4 +getiMass__12PikiHeadItemFv = .text:0x800EC950; // type:function size:0x8 scope:global align:4 +setColor__12PikiHeadItemFi = .text:0x800EC958; // type:function size:0x8 scope:global align:4 +refresh__12PikiHeadItemFR8Graphics = .text:0x800EC960; // type:function size:0x54C scope:global align:4 +interactBikkuri__12PikiHeadItemFR15InteractBikkuri = .text:0x800ECEAC; // type:function size:0x108 scope:global align:4 +interactSwallow__12PikiHeadItemFR15InteractSwallow = .text:0x800ECFB4; // type:function size:0x100 scope:global align:4 +isAtari__12PikiHeadItemFv = .text:0x800ED0B4; // type:function size:0x8 scope:weak align:4 +__ct__7KeyItemFP12CreaturePropP5Shape = .text:0x800ED0BC; // type:function size:0xA8 scope:global align:4 +getSize__7KeyItemFv = .text:0x800ED164; // type:function size:0x8 scope:global align:4 +init__7KeyItemFR8Vector3f = .text:0x800ED16C; // type:function size:0x54 scope:global align:4 +startAI__7KeyItemFi = .text:0x800ED1C0; // type:function size:0xC scope:global align:4 +isVisible__7KeyItemFv = .text:0x800ED1CC; // type:function size:0x20 scope:global align:4 +doKill__7KeyItemFv = .text:0x800ED1EC; // type:function size:0x3C scope:global align:4 +update__7KeyItemFv = .text:0x800ED228; // type:function size:0x10C scope:global align:4 +collisionCallback__7KeyItemFR9CollEvent = .text:0x800ED334; // type:function size:0x4 scope:global align:4 +getiMass__7KeyItemFv = .text:0x800ED338; // type:function size:0x8 scope:global align:4 +refresh__7KeyItemFR8Graphics = .text:0x800ED340; // type:function size:0x14C scope:global align:4 +__ct__8DoorItemFiP12CreaturePropP5Shape = .text:0x800ED48C; // type:function size:0x60 scope:global align:4 +disappear__8DoorItemFv = .text:0x800ED4EC; // type:function size:0x20 scope:global align:4 +getSize__8DoorItemFv = .text:0x800ED50C; // type:function size:0x1C scope:global align:4 +init__8DoorItemFR8Vector3f = .text:0x800ED528; // type:function size:0x54 scope:global align:4 +startAI__8DoorItemFi = .text:0x800ED57C; // type:function size:0xC scope:global align:4 +update__8DoorItemFv = .text:0x800ED588; // type:function size:0xA8 scope:global align:4 +isVisible__8DoorItemFv = .text:0x800ED630; // type:function size:0x20 scope:global align:4 +getiMass__8DoorItemFv = .text:0x800ED650; // type:function size:0x8 scope:global align:4 +isAtari__8DoorItemFv = .text:0x800ED658; // type:function size:0x20 scope:global align:4 +refresh__8DoorItemFR8Graphics = .text:0x800ED678; // type:function size:0x204 scope:global align:4 +isAlive__8DoorItemFv = .text:0x800ED87C; // type:function size:0x8 scope:weak align:4 +getHeight__8DoorItemFv = .text:0x800ED884; // type:function size:0x8 scope:weak align:4 +getHeight__7KeyItemFv = .text:0x800ED88C; // type:function size:0x8 scope:weak align:4 +__ct__8RopeItemFP12CreaturePropP5Shape = .text:0x800ED894; // type:function size:0xB0 scope:global align:4 +isAtari__8RopeItemFv = .text:0x800ED944; // type:function size:0x8 scope:global align:4 +getSize__8RopeItemFv = .text:0x800ED94C; // type:function size:0x8 scope:global align:4 +init__8RopeItemFR8Vector3f = .text:0x800ED954; // type:function size:0x4C scope:global align:4 +autoInit__8RopeItemFv = .text:0x800ED9A0; // type:function size:0x290 scope:global align:4 +startAI__8RopeItemFi = .text:0x800EDC30; // type:function size:0x4 scope:global align:4 +doKill__8RopeItemFv = .text:0x800EDC34; // type:function size:0x34 scope:global align:4 +getiMass__8RopeItemFv = .text:0x800EDC68; // type:function size:0x8 scope:global align:4 +needShadow__8RopeItemFv = .text:0x800EDC70; // type:function size:0x8 scope:weak align:4 +isAlive__8RopeItemFv = .text:0x800EDC78; // type:function size:0x8 scope:weak align:4 +isVisible__8RopeItemFv = .text:0x800EDC80; // type:function size:0x8 scope:weak align:4 +__ct__8SeedItemFP12CreaturePropPP5Shape = .text:0x800EDC88; // type:function size:0xDC scope:global align:4 +getSize__8SeedItemFv = .text:0x800EDD64; // type:function size:0x8 scope:global align:4 +init__8SeedItemFR8Vector3f = .text:0x800EDD6C; // type:function size:0x44 scope:global align:4 +isVisible__8SeedItemFv = .text:0x800EDDB0; // type:function size:0x14 scope:global align:4 +isAtari__8SeedItemFv = .text:0x800EDDC4; // type:function size:0x8 scope:global align:4 +doKill__8SeedItemFv = .text:0x800EDDCC; // type:function size:0x3C scope:global align:4 +update__8SeedItemFv = .text:0x800EDE08; // type:function size:0x23C scope:global align:4 +doAI__8SeedItemFv = .text:0x800EE044; // type:function size:0x10 scope:global align:4 +refresh__8SeedItemFR8Graphics = .text:0x800EE054; // type:function size:0x138 scope:global align:4 +stimulate__8SeedItemFR11Interaction = .text:0x800EE18C; // type:function size:0x3C scope:weak align:4 +getHeight__8SeedItemFv = .text:0x800EE1C8; // type:function size:0x8 scope:weak align:4 +getiMass__8SeedItemFv = .text:0x800EE1D0; // type:function size:0x8 scope:weak align:4 +ramSaveParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE1D8; // type:function size:0xA8 scope:global align:4 +ramLoadParameters__13GenObjectItemFR18RandomAccessStream = .text:0x800EE280; // type:function size:0xA8 scope:global align:4 +makeObjectItem__Fv = .text:0x800EE328; // type:function size:0x158 scope:local align:4 +initialise__13GenObjectItemFv = .text:0x800EE480; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectItemFR18RandomAccessStream = .text:0x800EE50C; // type:function size:0x11C scope:global align:4 +doWrite__13GenObjectItemFR18RandomAccessStream = .text:0x800EE628; // type:function size:0x100 scope:global align:4 +updateUseList__13GenObjectItemFP9Generatori = .text:0x800EE728; // type:function size:0x30 scope:global align:4 +birth__13GenObjectItemFR9BirthInfo = .text:0x800EE758; // type:function size:0x448 scope:global align:4 +__ct__8SluiceAIFv = .text:0x800EEBA0; // type:function size:0x33C scope:global align:4 +act__Q28SluiceAI4InitFP10AICreature = .text:0x800EEEDC; // type:function size:0x3C scope:global align:4 +act__Q28SluiceAI10MotionDoneFP10AICreature = .text:0x800EEF18; // type:function size:0x6C scope:global align:4 +act__Q28SluiceAI8AddCountFP10AICreature = .text:0x800EEF84; // type:function size:0x10 scope:global align:4 +act__Q28SluiceAI8WaitInitFP10AICreature = .text:0x800EEF94; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10ChangeInitFP10AICreature = .text:0x800EF020; // type:function size:0x8C scope:global align:4 +act__Q28SluiceAI10DamageInitFP10AICreature = .text:0x800EF0AC; // type:function size:0x6C scope:global align:4 +__ct__10PikiHeadAIFv = .text:0x800EF118; // type:function size:0x50C scope:global align:4 +act__Q210PikiHeadAI11BounceSoundFP10AICreature = .text:0x800EF624; // type:function size:0x114 scope:global align:4 +act__Q210PikiHeadAI12FlyingEffectFP10AICreature = .text:0x800EF738; // type:function size:0x44 scope:global align:4 +act__Q210PikiHeadAI10FlyingExecFP10AICreature = .text:0x800EF77C; // type:function size:0x28 scope:global align:4 +act__Q210PikiHeadAI13FlyingCleanupFP10AICreature = .text:0x800EF7A4; // type:function size:0x24 scope:global align:4 +act__Q210PikiHeadAI9BuryInit2FP10AICreature = .text:0x800EF7C8; // type:function size:0xC scope:global align:4 +act__Q210PikiHeadAI9BuryExec2FP10AICreature = .text:0x800EF7D4; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI8BuryInitFP10AICreature = .text:0x800EF808; // type:function size:0x88 scope:global align:4 +act__Q210PikiHeadAI8BuryExecFP10AICreature = .text:0x800EF890; // type:function size:0x80 scope:global align:4 +act__Q210PikiHeadAI8TaneInitFP10AICreature = .text:0x800EF910; // type:function size:0x74 scope:global align:4 +act__Q210PikiHeadAI8TaneExecFP10AICreature = .text:0x800EF984; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI8WaitInitFP10AICreature = .text:0x800EF9DC; // type:function size:0xD8 scope:global align:4 +act__Q210PikiHeadAI8WaitExecFP10AICreature = .text:0x800EFAB4; // type:function size:0x130 scope:global align:4 +act__Q210PikiHeadAI12GrowupedExecFP10AICreature = .text:0x800EFBE4; // type:function size:0x148 scope:global align:4 +act__Q210PikiHeadAI10GrowEffectFP10AICreature = .text:0x800EFD2C; // type:function size:0x34 scope:global align:4 +act__Q210PikiHeadAI10KaretaInitFP10AICreature = .text:0x800EFD60; // type:function size:0x7C scope:global align:4 +act__Q210PikiHeadAI10KaretaExecFP10AICreature = .text:0x800EFDDC; // type:function size:0x58 scope:global align:4 +act__Q210PikiHeadAI4DeadFP10AICreature = .text:0x800EFE34; // type:function size:0x28 scope:global align:4 +__ct__6BombAIFv = .text:0x800EFE5C; // type:function size:0x390 scope:global align:4 +act__Q26BombAI7SetInitFP10AICreature = .text:0x800F01EC; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7SetExecFP10AICreature = .text:0x800F026C; // type:function size:0x70 scope:global align:4 +act__Q26BombAI8BombInitFP10AICreature = .text:0x800F02DC; // type:function size:0xE3C scope:global align:4 +act__Q26BombAI8BombExecFP10AICreature = .text:0x800F1118; // type:function size:0x34 scope:global align:4 +act__Q26BombAI8MizuInitFP10AICreature = .text:0x800F114C; // type:function size:0xC scope:global align:4 +act__Q26BombAI8MizuExecFP10AICreature = .text:0x800F1158; // type:function size:0x80 scope:global align:4 +act__Q26BombAI7DieInitFP10AICreature = .text:0x800F11D8; // type:function size:0x24 scope:global align:4 +act__Q26BombAI7DieExecFP10AICreature = .text:0x800F11FC; // type:function size:0x7C scope:global align:4 +__ct__6GoalAIFv = .text:0x800F1278; // type:function size:0x3E0 scope:global align:4 +satisfy__Q26GoalAI11NotFinishedFP10AICreature = .text:0x800F1658; // type:function size:0x28 scope:global align:4 +act__Q26GoalAI8WaitInitFP10AICreature = .text:0x800F1680; // type:function size:0xB8 scope:global align:4 +act__Q26GoalAI8BootInitFP10AICreature = .text:0x800F1738; // type:function size:0x38 scope:global align:4 +act__Q26GoalAI8BootEmitFP10AICreature = .text:0x800F1770; // type:function size:0x460 scope:global align:4 +act__Q26GoalAI8BootDoneFP10AICreature = .text:0x800F1BD0; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI8EmitPikiFP10AICreature = .text:0x800F1BD4; // type:function size:0x32C scope:global align:4 +act__Q26GoalAI8EmitWaitFP10AICreature = .text:0x800F1F00; // type:function size:0x4 scope:global align:4 +act__Q26GoalAI6EffectFP10AICreature = .text:0x800F1F04; // type:function size:0x78 scope:global align:4 +act__Q25GemAI8RiseInitFP10AICreature = .text:0x800F1F7C; // type:function size:0xC0 scope:global align:4 +act__Q25GemAI8RiseExecFP10AICreature = .text:0x800F203C; // type:function size:0x178 scope:global align:4 +act__Q25GemAI3DieFP10AICreature = .text:0x800F21B4; // type:function size:0x98 scope:global align:4 +__ct__7WaterAIFv = .text:0x800F224C; // type:function size:0x254 scope:global align:4 +satisfy__Q27WaterAI11CollideCharFP10AICreature = .text:0x800F24A0; // type:function size:0x40 scope:global align:4 +act__Q27WaterAI3DieFP10AICreature = .text:0x800F24E0; // type:function size:0x28 scope:global align:4 +__ct__11FallWaterAIFv = .text:0x800F2508; // type:function size:0x1D8 scope:global align:4 +act__Q211FallWaterAI11CollideInitFP10AICreature = .text:0x800F26E0; // type:function size:0x54 scope:global align:4 +act__Q211FallWaterAI8EmitInitFP10AICreature = .text:0x800F2734; // type:function size:0x80 scope:global align:4 +act__Q211FallWaterAI13DisappearInitFP10AICreature = .text:0x800F27B4; // type:function size:0x28 scope:global align:4 +satisfy__11CndBombableFP8CollPart = .text:0x800F27DC; // type:function size:0x54 scope:weak align:4 +insideSafeArea__12BuildingItemFR8Vector3f = .text:0x800F2830; // type:function size:0x40 scope:global align:4 +getContainer__7ItemMgrFi = .text:0x800F2870; // type:function size:0x13C scope:global align:4 +getNearestContainer__7ItemMgrFR8Vector3ff = .text:0x800F29AC; // type:function size:0x144 scope:global align:4 +getUfo__7ItemMgrFv = .text:0x800F2AF0; // type:function size:0x114 scope:global align:4 +__ct__13MeltingPotMgrFP7ItemMgr = .text:0x800F2C04; // type:function size:0x3C0 scope:global align:4 +finalSetup__13MeltingPotMgrFv = .text:0x800F2FC4; // type:function size:0x160 scope:global align:4 +prepare__13MeltingPotMgrFi = .text:0x800F3124; // type:function size:0x374 scope:global align:4 +birth__13MeltingPotMgrFi = .text:0x800F3498; // type:function size:0x2BC scope:global align:4 +addUseList__7ItemMgrFi = .text:0x800F3754; // type:function size:0xF4 scope:global align:4 +__ct__7ItemMgrFv = .text:0x800F3848; // type:function size:0x9D8 scope:global align:4 +getPelletShapeObject__7ItemMgrFii = .text:0x800F4220; // type:function size:0x8 scope:global align:4 +initialise__7ItemMgrFv = .text:0x800F4228; // type:function size:0x153C scope:global align:4 +__ct__12ItemCreatureFiP12CreaturePropP5Shape = .text:0x800F5764; // type:function size:0xC8 scope:global align:4 +init__12ItemCreatureFR8Vector3f = .text:0x800F582C; // type:function size:0x70 scope:global align:4 +setMotionSpeed__12ItemCreatureFf = .text:0x800F589C; // type:function size:0x8 scope:global align:4 +getMotionSpeed__12ItemCreatureFv = .text:0x800F58A4; // type:function size:0x8 scope:global align:4 +stopMotion__12ItemCreatureFv = .text:0x800F58AC; // type:function size:0xC scope:global align:4 +getCurrentMotionCounter__12ItemCreatureFv = .text:0x800F58B8; // type:function size:0x8 scope:global align:4 +getCurrentMotionName__12ItemCreatureFv = .text:0x800F58C0; // type:function size:0x2C scope:global align:4 +startMotion__12ItemCreatureFi = .text:0x800F58EC; // type:function size:0x48 scope:global align:4 +finishMotion__12ItemCreatureFv = .text:0x800F5934; // type:function size:0x4C scope:global align:4 +startMotion__12ItemCreatureFif = .text:0x800F5980; // type:function size:0x58 scope:global align:4 +finishMotion__12ItemCreatureFf = .text:0x800F59D8; // type:function size:0x5C scope:global align:4 +doKill__12ItemCreatureFv = .text:0x800F5A34; // type:function size:0x34 scope:global align:4 +doAnimation__12ItemCreatureFv = .text:0x800F5A68; // type:function size:0x44 scope:global align:4 +update__12ItemCreatureFv = .text:0x800F5AAC; // type:function size:0x3C scope:global align:4 +doAI__12ItemCreatureFv = .text:0x800F5AE8; // type:function size:0x48 scope:global align:4 +refresh__12ItemCreatureFR8Graphics = .text:0x800F5B30; // type:function size:0x220 scope:global align:4 +stimulate__12ItemCreatureFR11Interaction = .text:0x800F5D50; // type:function size:0x74 scope:global align:4 +actItem__13InteractBuildFP12ItemCreature = .text:0x800F5DC4; // type:function size:0x40 scope:global align:4 +actItem__15InteractBikkuriFP12ItemCreature = .text:0x800F5E04; // type:function size:0x40 scope:global align:4 +actItem__13InteractFlickFP12ItemCreature = .text:0x800F5E44; // type:function size:0x34 scope:global align:4 +actItem__15InteractSwallowFP12ItemCreature = .text:0x800F5E78; // type:function size:0x40 scope:global align:4 +actItem__15InteractPulloutFP12ItemCreature = .text:0x800F5EB8; // type:function size:0x40 scope:global align:4 +actItem__12InteractBombFP12ItemCreature = .text:0x800F5EF8; // type:function size:0x2D4 scope:global align:4 +playEffect__12BuildingItemFi = .text:0x800F61CC; // type:function size:0x60 scope:global align:4 +actItem__14InteractAttackFP12ItemCreature = .text:0x800F622C; // type:function size:0x270 scope:global align:4 +__ct__12BuildingItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F649C; // type:function size:0x144 scope:global align:4 +getBoundingSphereRadius__12BuildingItemFv = .text:0x800F65E0; // type:function size:0x64 scope:global align:4 +startAI__12BuildingItemFi = .text:0x800F6644; // type:function size:0x1C8 scope:global align:4 +startBreakEffect__12BuildingItemFv = .text:0x800F680C; // type:function size:0x90 scope:global align:4 +stopBreakEffect__12BuildingItemFv = .text:0x800F689C; // type:function size:0x60 scope:global align:4 +update__12BuildingItemFv = .text:0x800F68FC; // type:function size:0x54 scope:global align:4 +refresh__12BuildingItemFR8Graphics = .text:0x800F6950; // type:function size:0x1A4 scope:global align:4 +refresh2d__12BuildingItemFR8Graphics = .text:0x800F6AF4; // type:function size:0x4 scope:global align:4 +doKill__12BuildingItemFv = .text:0x800F6AF8; // type:function size:0x48 scope:global align:4 +doSave__12BuildingItemFR18RandomAccessStream = .text:0x800F6B40; // type:function size:0xAC scope:global align:4 +doLoad__12BuildingItemFR18RandomAccessStream = .text:0x800F6BEC; // type:function size:0x17C scope:global align:4 +doStore__12BuildingItemFP11CreatureInf = .text:0x800F6D68; // type:function size:0x24 scope:global align:4 +doRestore__12BuildingItemFP11CreatureInf = .text:0x800F6D8C; // type:function size:0x120 scope:global align:4 +birth__7ItemMgrFi = .text:0x800F6EAC; // type:function size:0x68 scope:global align:4 +refresh__7ItemMgrFR8Graphics = .text:0x800F6F14; // type:function size:0x68 scope:global align:4 +refresh2d__7ItemMgrFR8Graphics = .text:0x800F6F7C; // type:function size:0x204 scope:global align:4 +update__7ItemMgrFv = .text:0x800F7180; // type:function size:0x64 scope:global align:4 +kill__7ItemMgrFP8Creature = .text:0x800F71E4; // type:function size:0x64 scope:global align:4 +__ct__11PikiHeadMgrFP7ItemMgr = .text:0x800F7248; // type:function size:0x1D8 scope:global align:4 +birth__11PikiHeadMgrFv = .text:0x800F7420; // type:function size:0xA0 scope:global align:4 +createObject__11PikiHeadMgrFv = .text:0x800F74C0; // type:function size:0x60 scope:global align:4 +getContainerExitCount__7ItemMgrFv = .text:0x800F7520; // type:function size:0x14C scope:global align:4 +__dt__11PikiHeadMgrFv = .text:0x800F766C; // type:function size:0x84 scope:weak align:4 +__dt__7ItemMgrFv = .text:0x800F76F0; // type:function size:0x84 scope:weak align:4 +__dt__13MeltingPotMgrFv = .text:0x800F7774; // type:function size:0x84 scope:weak align:4 +getiMass__12BuildingItemFv = .text:0x800F77F8; // type:function size:0x8 scope:weak align:4 +needShadow__12BuildingItemFv = .text:0x800F7800; // type:function size:0x8 scope:weak align:4 +@8@update__7ItemMgrFv = .text:0x800F7808; // type:function size:0x8 scope:weak align:4 +startAI__8ItemBallFi = .text:0x800F7810; // type:function size:0x3C scope:global align:4 +isAlive__8ItemBallFv = .text:0x800F784C; // type:function size:0x8 scope:global align:4 +isVisible__8ItemBallFv = .text:0x800F7854; // type:function size:0x8 scope:global align:4 +update__10ItemObjectFv = .text:0x800F785C; // type:function size:0x4 scope:global align:4 +__ct__11BombGenItemFP5Shape = .text:0x800F7860; // type:function size:0x7C scope:global align:4 +pickable__11BombGenItemFv = .text:0x800F78DC; // type:function size:0x30 scope:global align:4 +pick__11BombGenItemFv = .text:0x800F790C; // type:function size:0x6C scope:global align:4 +__ct__7FulcrumFv = .text:0x800F7978; // type:function size:0x6C scope:global align:4 +__ct__19NaviDemoSunsetStartFv = .text:0x800F79E4; // type:function size:0x6C scope:global align:4 +__ct__18NaviDemoSunsetGoalFv = .text:0x800F7A50; // type:function size:0x6C scope:global align:4 +needShadow__10ItemObjectFv = .text:0x800F7ABC; // type:function size:0x8 scope:weak align:4 +postUpdate__10ItemObjectFif = .text:0x800F7AC4; // type:function size:0x4 scope:weak align:4 +isAtari__10ItemObjectFv = .text:0x800F7AC8; // type:function size:0x8 scope:weak align:4 +isAtari__11BombGenItemFv = .text:0x800F7AD0; // type:function size:0x30 scope:weak align:4 +needFlick__11BombGenItemFP8Creature = .text:0x800F7B00; // type:function size:0x8 scope:weak align:4 +isVisible__11BombGenItemFv = .text:0x800F7B08; // type:function size:0x30 scope:weak align:4 +isAlive__11BombGenItemFv = .text:0x800F7B38; // type:function size:0x30 scope:weak align:4 +__ct__8MizuItemFiP12CreaturePropP15ItemShapeObjectP8SimpleAI = .text:0x800F7B68; // type:function size:0x68 scope:global align:4 +update__8MizuItemFv = .text:0x800F7BD0; // type:function size:0x70 scope:global align:4 +needFlick__8MizuItemFP8Creature = .text:0x800F7C40; // type:function size:0x8 scope:global align:4 +startAI__8MizuItemFi = .text:0x800F7C48; // type:function size:0x90 scope:global align:4 +isAlive__8MizuItemFv = .text:0x800F7CD8; // type:function size:0x6C scope:global align:4 +createMotionTable__16PaniItemAnimatorFv = .text:0x800F7D44; // type:function size:0x268 scope:global align:4 +__ct__16PaniItemAnimatorFv = .text:0x800F7FAC; // type:function size:0x3C scope:global align:4 +makeObjectNavi__Fv = .text:0x800F7FE8; // type:function size:0x70 scope:local align:4 +initialise__13GenObjectNaviFv = .text:0x800F8058; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectNaviFR18RandomAccessStream = .text:0x800F80E4; // type:function size:0x4 scope:global align:4 +birth__13GenObjectNaviFR9BirthInfo = .text:0x800F80E8; // type:function size:0xB8 scope:global align:4 +viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x800F81A0; // type:function size:0x9C scope:global align:4 +viewStartTrembleMotion__4NaviFf = .text:0x800F823C; // type:function size:0x5C scope:global align:4 +viewKill__4NaviFv = .text:0x800F8298; // type:function size:0x28 scope:global align:4 +viewGetBottomRadius__4NaviFv = .text:0x800F82C0; // type:function size:0x8 scope:global align:4 +viewGetHeight__4NaviFv = .text:0x800F82C8; // type:function size:0x8 scope:global align:4 +isNuking__4NaviFv = .text:0x800F82D0; // type:function size:0x28 scope:global align:4 +transit__19StateMachine<4Navi>FP4Navii = .text:0x800F82F8; // type:function size:0xB0 scope:weak align:4 +init__13AState<4Navi>FP4Navi = .text:0x800F83A8; // type:function size:0x4 scope:weak align:4 +cleanup__13AState<4Navi>FP4Navi = .text:0x800F83AC; // type:function size:0x4 scope:weak align:4 +startMovieInf__4NaviFv = .text:0x800F83B0; // type:function size:0x38 scope:global align:4 +incPlatePiki__4NaviFv = .text:0x800F83E8; // type:function size:0x14 scope:global align:4 +decPlatePiki__4NaviFv = .text:0x800F83FC; // type:function size:0x14 scope:global align:4 +getPlatePikis__4NaviFv = .text:0x800F8410; // type:function size:0xC scope:global align:4 +startDayEnd__4NaviFv = .text:0x800F841C; // type:function size:0xC scope:global align:4 +updateDayEnd__4NaviFR8Vector3f = .text:0x800F8428; // type:function size:0x410 scope:global align:4 +enterAllPikis__4NaviFv = .text:0x800F8838; // type:function size:0x228 scope:global align:4 +__ct__8NaviPropFv = .text:0x800F8A60; // type:function size:0xC20 scope:global align:4 +isBuried__4NaviFv = .text:0x800F9680; // type:function size:0x20 scope:global align:4 +isVisible__4NaviFv = .text:0x800F96A0; // type:function size:0x20 scope:global align:4 +isRopable__4NaviFv = .text:0x800F96C0; // type:function size:0x20 scope:global align:4 +resume__13AState<4Navi>FP4Navi = .text:0x800F96E0; // type:function size:0x4 scope:weak align:4 +invincible__9NaviStateFP4Navi = .text:0x800F96E4; // type:function size:0x8 scope:weak align:4 +startDamageEffect__4NaviFv = .text:0x800F96EC; // type:function size:0x234 scope:global align:4 +finishDamage__4NaviFv = .text:0x800F9920; // type:function size:0x120 scope:global align:4 +restart__13AState<4Navi>FP4Navi = .text:0x800F9A40; // type:function size:0x4 scope:weak align:4 +__ct__4NaviFP12CreaturePropi = .text:0x800F9A44; // type:function size:0x668 scope:global align:4 +startKontroller__4NaviFv = .text:0x800FA0AC; // type:function size:0x54 scope:global align:4 +rideUfo__4NaviFv = .text:0x800FA100; // type:function size:0x40 scope:global align:4 +reset__4NaviFv = .text:0x800FA140; // type:function size:0x408 scope:global align:4 +getSize__4NaviFv = .text:0x800FA548; // type:function size:0xC scope:global align:4 +getiMass__4NaviFv = .text:0x800FA554; // type:function size:0x48 scope:global align:4 +findNextThrowPiki__4NaviFv = .text:0x800FA59C; // type:function size:0x18C scope:global align:4 +startMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x800FA728; // type:function size:0x38 scope:global align:4 +enableMotionBlend__4NaviFv = .text:0x800FA760; // type:function size:0x50 scope:global align:4 +updateWalkAnimation__4NaviFv = .text:0x800FA7B0; // type:function size:0x3BC scope:global align:4 +postUpdate__4NaviFif = .text:0x800FAB6C; // type:function size:0x34 scope:global align:4 +update__4NaviFv = .text:0x800FABA0; // type:function size:0x500 scope:global align:4 +animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x800FB0A0; // type:function size:0x1F4 scope:global align:4 +callPikis__4NaviFf = .text:0x800FB294; // type:function size:0x7C4 scope:global align:4 +callDebugs__4NaviFf = .text:0x800FBA58; // type:function size:0x37C scope:global align:4 +releasePikis__4NaviFv = .text:0x800FBDD4; // type:function size:0x7DC scope:global align:4 +doAI__4NaviFv = .text:0x800FC5B0; // type:function size:0xC4 scope:global align:4 +exec__19StateMachine<4Navi>FP4Navi = .text:0x800FC674; // type:function size:0x3C scope:weak align:4 +exec__13AState<4Navi>FP4Navi = .text:0x800FC6B0; // type:function size:0x4 scope:weak align:4 +procActionButton__4NaviFv = .text:0x800FC6B4; // type:function size:0xA40 scope:global align:4 +offwallCallback__4NaviFP13DynCollObject = .text:0x800FD0F4; // type:function size:0x3C scope:global align:4 +wallCallback__4NaviFR5PlaneP13DynCollObject = .text:0x800FD130; // type:function size:0x58 scope:global align:4 +jumpCallback__4NaviFv = .text:0x800FD188; // type:function size:0x4 scope:global align:4 +isAtari__4NaviFv = .text:0x800FD18C; // type:function size:0x4C scope:global align:4 +ignoreAtari__4NaviFP8Creature = .text:0x800FD1D8; // type:function size:0x4C scope:global align:4 +bounceCallback__4NaviFv = .text:0x800FD224; // type:function size:0x50 scope:global align:4 +letPikiWork__4NaviFv = .text:0x800FD274; // type:function size:0x1D8 scope:global align:4 +collisionCallback__4NaviFR9CollEvent = .text:0x800FD44C; // type:function size:0x370 scope:global align:4 +doKill__4NaviFv = .text:0x800FD7BC; // type:function size:0x4 scope:global align:4 +reviseController__4NaviFR8Vector3f = .text:0x800FD7C0; // type:function size:0x1E8 scope:global align:4 +makeVelocity__4NaviFb = .text:0x800FD9A8; // type:function size:0x8FC scope:global align:4 +makeCStick__4NaviFb = .text:0x800FE2A4; // type:function size:0x858 scope:global align:4 +refresh__4NaviFR8Graphics = .text:0x800FEAFC; // type:function size:0x5A8 scope:global align:4 +demoDraw__4NaviFR8GraphicsP8Matrix4f = .text:0x800FF0A4; // type:function size:0xE8 scope:global align:4 +draw__4NaviFR8Graphics = .text:0x800FF18C; // type:function size:0x2D8 scope:global align:4 +renderCircle__4NaviFR8Graphics = .text:0x800FF464; // type:function size:0x1FC scope:global align:4 +refresh2d__4NaviFR8Graphics = .text:0x800FF660; // type:function size:0x4 scope:global align:4 +sendMsg__4NaviFP3Msg = .text:0x800FF664; // type:function size:0x3C scope:global align:4 +procMsg__19StateMachine<4Navi>FP4NaviP3Msg = .text:0x800FF6A0; // type:function size:0x3C scope:weak align:4 +procMsg__15Receiver<4Navi>FP4NaviP3Msg = .text:0x800FF6DC; // type:function size:0x118 scope:weak align:4 +procGroundMsg__15Receiver<4Navi>FP4NaviP9MsgGround = .text:0x800FF7F4; // type:function size:0x4 scope:weak align:4 +procUserMsg__15Receiver<4Navi>FP4NaviP7MsgUser = .text:0x800FF7F8; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__15Receiver<4Navi>FP4NaviP10MsgOffWall = .text:0x800FF7FC; // type:function size:0x4 scope:weak align:4 +procWallMsg__15Receiver<4Navi>FP4NaviP7MsgWall = .text:0x800FF800; // type:function size:0x4 scope:weak align:4 +procDamageMsg__15Receiver<4Navi>FP4NaviP9MsgDamage = .text:0x800FF804; // type:function size:0x4 scope:weak align:4 +procAnimMsg__15Receiver<4Navi>FP4NaviP7MsgAnim = .text:0x800FF808; // type:function size:0x4 scope:weak align:4 +procCollideMsg__15Receiver<4Navi>FP4NaviP10MsgCollide = .text:0x800FF80C; // type:function size:0x4 scope:weak align:4 +procTargetMsg__15Receiver<4Navi>FP4NaviP9MsgTarget = .text:0x800FF810; // type:function size:0x4 scope:weak align:4 +procHangMsg__15Receiver<4Navi>FP4NaviP7MsgHang = .text:0x800FF814; // type:function size:0x4 scope:weak align:4 +procStickMsg__15Receiver<4Navi>FP4NaviP8MsgStick = .text:0x800FF818; // type:function size:0x4 scope:weak align:4 +procBounceMsg__15Receiver<4Navi>FP4NaviP9MsgBounce = .text:0x800FF81C; // type:function size:0x4 scope:weak align:4 +stimulate__4NaviFR11Interaction = .text:0x800FF820; // type:function size:0x74 scope:global align:4 +actNavi__14InteractGeyzerFP4Navi = .text:0x800FF894; // type:function size:0xC4 scope:global align:4 +actNavi__12InteractBuryFP4Navi = .text:0x800FF958; // type:function size:0xFC scope:global align:4 +actNavi__12InteractWindFP4Navi = .text:0x800FFA54; // type:function size:0x94 scope:global align:4 +actNavi__12InteractSuckFP4Navi = .text:0x800FFAE8; // type:function size:0x114 scope:global align:4 +actNavi__14InteractAttackFP4Navi = .text:0x800FFBFC; // type:function size:0x1A4 scope:global align:4 +actNavi__13InteractPressFP4Navi = .text:0x800FFDA0; // type:function size:0x110 scope:global align:4 +actNavi__15InteractSwallowFP4Navi = .text:0x800FFEB0; // type:function size:0x1B8 scope:global align:4 +actNavi__12InteractBombFP4Navi = .text:0x80100068; // type:function size:0x118 scope:global align:4 +orimaDamaged__4NaviFv = .text:0x80100180; // type:function size:0x80 scope:global align:4 +actNavi__13InteractFlickFP4Navi = .text:0x80100200; // type:function size:0x144 scope:global align:4 +actNavi__14InteractBubbleFP4Navi = .text:0x80100344; // type:function size:0xF0 scope:global align:4 +actNavi__12InteractFireFP4Navi = .text:0x80100434; // type:function size:0xF0 scope:global align:4 +dump__4NaviFv = .text:0x80100524; // type:function size:0xC0 scope:global align:4 +throwPiki__4NaviFP4PikiR8Vector3f = .text:0x801005E4; // type:function size:0x234 scope:global align:4 +swapMotion__4NaviFR14PaniMotionInfoR14PaniMotionInfo = .text:0x80100818; // type:function size:0x5C scope:global align:4 +finishLook__4NaviFv = .text:0x80100874; // type:function size:0x14 scope:global align:4 +updateLook__4NaviFv = .text:0x80100888; // type:function size:0x340 scope:global align:4 +updateHeadMatrix__4NaviFv = .text:0x80100BC8; // type:function size:0x37C scope:global align:4 +draw__10NaviDrawerFR8Graphics = .text:0x80100F44; // type:function size:0x24 scope:weak align:4 +viewInit__10PelletViewFv = .text:0x80100F68; // type:function size:0x4 scope:weak align:4 +viewStartExplodeMotion__10PelletViewFf = .text:0x80100F6C; // type:function size:0x4 scope:weak align:4 +read__8NaviPropFR18RandomAccessStream = .text:0x80100F70; // type:function size:0x44 scope:weak align:4 +mayIstick__4NaviFv = .text:0x80100FB4; // type:function size:0x8 scope:weak align:4 +getShadowSize__4NaviFv = .text:0x80100FBC; // type:function size:0x8 scope:weak align:4 +init__19StateMachine<4Navi>FP4Navi = .text:0x80100FC4; // type:function size:0x4 scope:weak align:4 +@696@animationKeyUpdated__4NaviFR16PaniAnimKeyEvent = .text:0x80100FC8; // type:function size:0x8 scope:weak align:4 +@700@viewGetHeight__4NaviFv = .text:0x80100FD0; // type:function size:0x8 scope:weak align:4 +@700@viewGetBottomRadius__4NaviFv = .text:0x80100FD8; // type:function size:0x8 scope:weak align:4 +@700@viewStartTrembleMotion__4NaviFf = .text:0x80100FE0; // type:function size:0x8 scope:weak align:4 +@700@viewDraw__4NaviFR8GraphicsR8Matrix4f = .text:0x80100FE8; // type:function size:0x8 scope:weak align:4 +@700@viewKill__4NaviFv = .text:0x80100FF0; // type:function size:0x8 scope:weak align:4 +getNaviState__16NaviStateMachineFP4Navi = .text:0x80100FF8; // type:function size:0x8 scope:global align:4 +init__16NaviStateMachineFP4Navi = .text:0x80101000; // type:function size:0x15D4 scope:global align:4 +__ct__15NaviPelletStateFv = .text:0x801025D4; // type:function size:0x44 scope:global align:4 +init__15NaviPelletStateFP4Navi = .text:0x80102618; // type:function size:0x6C scope:global align:4 +exec__15NaviPelletStateFP4Navi = .text:0x80102684; // type:function size:0x200 scope:global align:4 +procAnimMsg__15NaviPelletStateFP4NaviP7MsgAnim = .text:0x80102884; // type:function size:0x50 scope:global align:4 +transit__13AState<4Navi>FP4Navii = .text:0x801028D4; // type:function size:0x30 scope:weak align:4 +cleanup__15NaviPelletStateFP4Navi = .text:0x80102904; // type:function size:0x44 scope:global align:4 +__ct__17NaviDemoWaitStateFv = .text:0x80102948; // type:function size:0x54 scope:global align:4 +init__17NaviDemoWaitStateFP4Navi = .text:0x8010299C; // type:function size:0xC8 scope:global align:4 +exec__17NaviDemoWaitStateFP4Navi = .text:0x80102A64; // type:function size:0xEC scope:global align:4 +cleanup__17NaviDemoWaitStateFP4Navi = .text:0x80102B50; // type:function size:0x84 scope:global align:4 +__ct__16NaviDemoInfStateFv = .text:0x80102BD4; // type:function size:0x44 scope:global align:4 +init__16NaviDemoInfStateFP4Navi = .text:0x80102C18; // type:function size:0x4 scope:global align:4 +exec__16NaviDemoInfStateFP4Navi = .text:0x80102C1C; // type:function size:0x1C scope:global align:4 +cleanup__16NaviDemoInfStateFP4Navi = .text:0x80102C38; // type:function size:0x4 scope:global align:4 +__ct__14NaviStuckStateFv = .text:0x80102C3C; // type:function size:0x54 scope:global align:4 +init__14NaviStuckStateFP4Navi = .text:0x80102C90; // type:function size:0x90 scope:global align:4 +exec__14NaviStuckStateFP4Navi = .text:0x80102D20; // type:function size:0x340 scope:global align:4 +cleanup__14NaviStuckStateFP4Navi = .text:0x80103060; // type:function size:0x4 scope:global align:4 +__ct__13NaviBuryStateFv = .text:0x80103064; // type:function size:0x54 scope:global align:4 +init__13NaviBuryStateFP4Navi = .text:0x801030B8; // type:function size:0x10C scope:global align:4 +exec__13NaviBuryStateFP4Navi = .text:0x801031C4; // type:function size:0x310 scope:global align:4 +procAnimMsg__13NaviBuryStateFP4NaviP7MsgAnim = .text:0x801034D4; // type:function size:0x3D4 scope:global align:4 +cleanup__13NaviBuryStateFP4Navi = .text:0x801038A8; // type:function size:0x4 scope:global align:4 +__ct__13NaviWalkStateFv = .text:0x801038AC; // type:function size:0x40 scope:global align:4 +init__13NaviWalkStateFP4Navi = .text:0x801038EC; // type:function size:0x84 scope:global align:4 +restart__13NaviWalkStateFP4Navi = .text:0x80103970; // type:function size:0x2C scope:global align:4 +exec__13NaviWalkStateFP4Navi = .text:0x8010399C; // type:function size:0xDE8 scope:global align:4 +cleanup__13NaviWalkStateFP4Navi = .text:0x80104784; // type:function size:0x24 scope:global align:4 +procWallMsg__13NaviWalkStateFP4NaviP7MsgWall = .text:0x801047A8; // type:function size:0x60 scope:global align:4 +procOffWallMsg__13NaviWalkStateFP4NaviP10MsgOffWall = .text:0x80104808; // type:function size:0x14 scope:global align:4 +procCollideMsg__13NaviWalkStateFP4NaviP10MsgCollide = .text:0x8010481C; // type:function size:0xC scope:global align:4 +__ct__12NaviUfoStateFv = .text:0x80104828; // type:function size:0x54 scope:global align:4 +init__12NaviUfoStateFP4Navi = .text:0x8010487C; // type:function size:0x88 scope:global align:4 +procCollideMsg__12NaviUfoStateFP4NaviP10MsgCollide = .text:0x80104904; // type:function size:0xB8 scope:global align:4 +exec__12NaviUfoStateFP4Navi = .text:0x801049BC; // type:function size:0x468 scope:global align:4 +cleanup__12NaviUfoStateFP4Navi = .text:0x80104E24; // type:function size:0x48 scope:global align:4 +procAnimMsg__12NaviUfoStateFP4NaviP7MsgAnim = .text:0x80104E6C; // type:function size:0x30 scope:global align:4 +__ct__18NaviContainerStateFv = .text:0x80104E9C; // type:function size:0xAC scope:global align:4 +init__18NaviContainerStateFP4Navi = .text:0x80104F48; // type:function size:0x204 scope:global align:4 +informWin__18NaviContainerStateFi = .text:0x8010514C; // type:function size:0x30 scope:global align:4 +onCloseWindow__18NaviContainerStateFv = .text:0x8010517C; // type:function size:0x18 scope:global align:4 +exec__18NaviContainerStateFP4Navi = .text:0x80105194; // type:function size:0xE8 scope:global align:4 +enterPikis__18NaviContainerStateFP4Navii = .text:0x8010527C; // type:function size:0x1E8 scope:global align:4 +exitPikis__18NaviContainerStateFP4Navii = .text:0x80105464; // type:function size:0x28 scope:global align:4 +cleanup__18NaviContainerStateFP4Navi = .text:0x8010548C; // type:function size:0x38 scope:global align:4 +__ct__13NaviPickStateFv = .text:0x801054C4; // type:function size:0x44 scope:global align:4 +procAnimMsg__13NaviPickStateFP4NaviP7MsgAnim = .text:0x80105508; // type:function size:0x4 scope:global align:4 +init__13NaviPickStateFP4Navi = .text:0x8010550C; // type:function size:0x70 scope:global align:4 +exec__13NaviPickStateFP4Navi = .text:0x8010557C; // type:function size:0x4C scope:global align:4 +cleanup__13NaviPickStateFP4Navi = .text:0x801055C8; // type:function size:0x24 scope:global align:4 +__ct__13NaviRopeStateFv = .text:0x801055EC; // type:function size:0x44 scope:global align:4 +init__13NaviRopeStateFP4Navi = .text:0x80105630; // type:function size:0x74 scope:global align:4 +exec__13NaviRopeStateFP4Navi = .text:0x801056A4; // type:function size:0x25C scope:global align:4 +cleanup__13NaviRopeStateFP4Navi = .text:0x80105900; // type:function size:0x4 scope:global align:4 +__ct__17NaviRopeExitStateFv = .text:0x80105904; // type:function size:0x44 scope:global align:4 +init__17NaviRopeExitStateFP4Navi = .text:0x80105948; // type:function size:0xDC scope:global align:4 +exec__17NaviRopeExitStateFP4Navi = .text:0x80105A24; // type:function size:0x4 scope:global align:4 +cleanup__17NaviRopeExitStateFP4Navi = .text:0x80105A28; // type:function size:0x4 scope:global align:4 +procBounceMsg__17NaviRopeExitStateFP4NaviP9MsgBounce = .text:0x80105A2C; // type:function size:0x30 scope:global align:4 +__ct__16NaviFunbariStateFv = .text:0x80105A5C; // type:function size:0x44 scope:global align:4 +init__16NaviFunbariStateFP4Navi = .text:0x80105AA0; // type:function size:0x94 scope:global align:4 +exec__16NaviFunbariStateFP4Navi = .text:0x80105B34; // type:function size:0x1C scope:global align:4 +procAnimMsg__16NaviFunbariStateFP4NaviP7MsgAnim = .text:0x80105B50; // type:function size:0x44 scope:global align:4 +cleanup__16NaviFunbariStateFP4Navi = .text:0x80105B94; // type:function size:0x4 scope:global align:4 +__ct__13NaviIdleStateFv = .text:0x80105B98; // type:function size:0x44 scope:global align:4 +init__13NaviIdleStateFP4Navi = .text:0x80105BDC; // type:function size:0xCC scope:global align:4 +exec__13NaviIdleStateFP4Navi = .text:0x80105CA8; // type:function size:0x13C scope:global align:4 +procAnimMsg__13NaviIdleStateFP4NaviP7MsgAnim = .text:0x80105DE4; // type:function size:0x64 scope:global align:4 +cleanup__13NaviIdleStateFP4Navi = .text:0x80105E48; // type:function size:0xC scope:global align:4 +__ct__14NaviFlickStateFv = .text:0x80105E54; // type:function size:0x44 scope:global align:4 +init__14NaviFlickStateFP4Navi = .text:0x80105E98; // type:function size:0x124 scope:global align:4 +exec__14NaviFlickStateFP4Navi = .text:0x80105FBC; // type:function size:0x178 scope:global align:4 +procAnimMsg__14NaviFlickStateFP4NaviP7MsgAnim = .text:0x80106134; // type:function size:0x150 scope:global align:4 +cleanup__14NaviFlickStateFP4Navi = .text:0x80106284; // type:function size:0x34 scope:global align:4 +__ct__15NaviGeyzerStateFv = .text:0x801062B8; // type:function size:0x54 scope:global align:4 +init__15NaviGeyzerStateFP4Navi = .text:0x8010630C; // type:function size:0x140 scope:global align:4 +exec__15NaviGeyzerStateFP4Navi = .text:0x8010644C; // type:function size:0x214 scope:global align:4 +procAnimMsg__15NaviGeyzerStateFP4NaviP7MsgAnim = .text:0x80106660; // type:function size:0x120 scope:global align:4 +procBounceMsg__15NaviGeyzerStateFP4NaviP9MsgBounce = .text:0x80106780; // type:function size:0x94 scope:global align:4 +cleanup__15NaviGeyzerStateFP4Navi = .text:0x80106814; // type:function size:0x34 scope:global align:4 +__ct__15NaviGatherStateFv = .text:0x80106848; // type:function size:0x44 scope:global align:4 +resume__15NaviGatherStateFP4Navi = .text:0x8010688C; // type:function size:0x2C scope:global align:4 +restart__15NaviGatherStateFP4Navi = .text:0x801068B8; // type:function size:0x30 scope:global align:4 +init__15NaviGatherStateFP4Navi = .text:0x801068E8; // type:function size:0x138 scope:global align:4 +exec__15NaviGatherStateFP4Navi = .text:0x80106A20; // type:function size:0x5EC scope:global align:4 +procAnimMsg__15NaviGatherStateFP4NaviP7MsgAnim = .text:0x8010700C; // type:function size:0x68 scope:global align:4 +cleanup__15NaviGatherStateFP4Navi = .text:0x80107074; // type:function size:0x6C scope:global align:4 +__ct__16NaviReleaseStateFv = .text:0x801070E0; // type:function size:0x44 scope:global align:4 +init__16NaviReleaseStateFP4Navi = .text:0x80107124; // type:function size:0xA0 scope:global align:4 +exec__16NaviReleaseStateFP4Navi = .text:0x801071C4; // type:function size:0x90 scope:global align:4 +cleanup__16NaviReleaseStateFP4Navi = .text:0x80107254; // type:function size:0x4 scope:global align:4 +procAnimMsg__16NaviReleaseStateFP4NaviP7MsgAnim = .text:0x80107258; // type:function size:0x90 scope:global align:4 +__ct__18NaviThrowWaitStateFv = .text:0x801072E8; // type:function size:0x44 scope:global align:4 +resume__18NaviThrowWaitStateFP4Navi = .text:0x8010732C; // type:function size:0x2C scope:global align:4 +restart__18NaviThrowWaitStateFP4Navi = .text:0x80107358; // type:function size:0x30 scope:global align:4 +init__18NaviThrowWaitStateFP4Navi = .text:0x80107388; // type:function size:0x3CC scope:global align:4 +procAnimMsg__18NaviThrowWaitStateFP4NaviP7MsgAnim = .text:0x80107754; // type:function size:0x8C scope:global align:4 +exec__18NaviThrowWaitStateFP4Navi = .text:0x801077E0; // type:function size:0x59C scope:global align:4 +sortPikis__18NaviThrowWaitStateFP4Navi = .text:0x80107D7C; // type:function size:0x16C scope:global align:4 +cleanup__18NaviThrowWaitStateFP4Navi = .text:0x80107EE8; // type:function size:0x4 scope:global align:4 +__ct__14NaviThrowStateFv = .text:0x80107EEC; // type:function size:0x44 scope:global align:4 +init__14NaviThrowStateFP4Navi = .text:0x80107F30; // type:function size:0xA4 scope:global align:4 +procTargetMsg__14NaviThrowStateFP4NaviP9MsgTarget = .text:0x80107FD4; // type:function size:0xC scope:global align:4 +procAnimMsg__14NaviThrowStateFP4NaviP7MsgAnim = .text:0x80107FE0; // type:function size:0x148 scope:global align:4 +exec__14NaviThrowStateFP4Navi = .text:0x80108128; // type:function size:0xF8 scope:global align:4 +cleanup__14NaviThrowStateFP4Navi = .text:0x80108220; // type:function size:0x4 scope:global align:4 +__ct__13NaviPushStateFv = .text:0x80108224; // type:function size:0x44 scope:global align:4 +init__13NaviPushStateFP4Navi = .text:0x80108268; // type:function size:0x90 scope:global align:4 +exec__13NaviPushStateFP4Navi = .text:0x801082F8; // type:function size:0x248 scope:global align:4 +cleanup__13NaviPushStateFP4Navi = .text:0x80108540; // type:function size:0x14 scope:global align:4 +procAnimMsg__13NaviPushStateFP4NaviP7MsgAnim = .text:0x80108554; // type:function size:0xF4 scope:global align:4 +procOffWallMsg__13NaviPushStateFP4NaviP10MsgOffWall = .text:0x80108648; // type:function size:0x4 scope:global align:4 +__ct__17NaviPushPikiStateFv = .text:0x8010864C; // type:function size:0x44 scope:global align:4 +init__17NaviPushPikiStateFP4Navi = .text:0x80108690; // type:function size:0x90 scope:global align:4 +exec__17NaviPushPikiStateFP4Navi = .text:0x80108720; // type:function size:0x1A8 scope:global align:4 +cleanup__17NaviPushPikiStateFP4Navi = .text:0x801088C8; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPushPikiStateFP4NaviP7MsgAnim = .text:0x801088CC; // type:function size:0xE4 scope:global align:4 +procCollideMsg__17NaviPushPikiStateFP4NaviP10MsgCollide = .text:0x801089B0; // type:function size:0xC scope:global align:4 +__ct__13NaviNukuStateFv = .text:0x801089BC; // type:function size:0x44 scope:global align:4 +init__13NaviNukuStateFP4Navi = .text:0x80108A00; // type:function size:0x184 scope:global align:4 +exec__13NaviNukuStateFP4Navi = .text:0x80108B84; // type:function size:0x110 scope:global align:4 +cleanup__13NaviNukuStateFP4Navi = .text:0x80108C94; // type:function size:0x38 scope:global align:4 +procAnimMsg__13NaviNukuStateFP4NaviP7MsgAnim = .text:0x80108CCC; // type:function size:0x12C scope:global align:4 +__ct__19NaviNukuAdjustStateFv = .text:0x80108DF8; // type:function size:0x60 scope:global align:4 +resume__19NaviNukuAdjustStateFP4Navi = .text:0x80108E58; // type:function size:0x2C scope:global align:4 +restart__19NaviNukuAdjustStateFP4Navi = .text:0x80108E84; // type:function size:0x30 scope:global align:4 +init__19NaviNukuAdjustStateFP4Navi = .text:0x80108EB4; // type:function size:0x1E4 scope:global align:4 +exec__19NaviNukuAdjustStateFP4Navi = .text:0x80109098; // type:function size:0x45C scope:global align:4 +cleanup__19NaviNukuAdjustStateFP4Navi = .text:0x801094F4; // type:function size:0x10 scope:global align:4 +__ct__16NaviPressedStateFv = .text:0x80109504; // type:function size:0x44 scope:global align:4 +init__16NaviPressedStateFP4Navi = .text:0x80109548; // type:function size:0x10 scope:global align:4 +exec__16NaviPressedStateFP4Navi = .text:0x80109558; // type:function size:0xF4 scope:global align:4 +cleanup__16NaviPressedStateFP4Navi = .text:0x8010964C; // type:function size:0x4 scope:global align:4 +__ct__12NaviSowStateFv = .text:0x80109650; // type:function size:0x44 scope:global align:4 +init__12NaviSowStateFP4Navi = .text:0x80109694; // type:function size:0x74 scope:global align:4 +exec__12NaviSowStateFP4Navi = .text:0x80109708; // type:function size:0x4 scope:global align:4 +cleanup__12NaviSowStateFP4Navi = .text:0x8010970C; // type:function size:0x4 scope:global align:4 +__ct__14NaviWaterStateFv = .text:0x80109710; // type:function size:0x44 scope:global align:4 +init__14NaviWaterStateFP4Navi = .text:0x80109754; // type:function size:0xA4 scope:global align:4 +exec__14NaviWaterStateFP4Navi = .text:0x801097F8; // type:function size:0x4 scope:global align:4 +cleanup__14NaviWaterStateFP4Navi = .text:0x801097FC; // type:function size:0x4 scope:global align:4 +__ct__15NaviAttackStateFv = .text:0x80109800; // type:function size:0x44 scope:global align:4 +resume__15NaviAttackStateFP4Navi = .text:0x80109844; // type:function size:0x2C scope:global align:4 +restart__15NaviAttackStateFP4Navi = .text:0x80109870; // type:function size:0x30 scope:global align:4 +init__15NaviAttackStateFP4Navi = .text:0x801098A0; // type:function size:0xCC scope:global align:4 +exec__15NaviAttackStateFP4Navi = .text:0x8010996C; // type:function size:0x424 scope:global align:4 +cleanup__15NaviAttackStateFP4Navi = .text:0x80109D90; // type:function size:0x4 scope:global align:4 +procAnimMsg__15NaviAttackStateFP4NaviP7MsgAnim = .text:0x80109D94; // type:function size:0x80 scope:global align:4 +__ct__13NaviLockStateFv = .text:0x80109E14; // type:function size:0x44 scope:global align:4 +init__13NaviLockStateFP4Navi = .text:0x80109E58; // type:function size:0x4 scope:global align:4 +exec__13NaviLockStateFP4Navi = .text:0x80109E5C; // type:function size:0x4 scope:global align:4 +cleanup__13NaviLockStateFP4Navi = .text:0x80109E60; // type:function size:0x4 scope:global align:4 +__ct__14NaviClearStateFv = .text:0x80109E64; // type:function size:0x44 scope:global align:4 +init__14NaviClearStateFP4Navi = .text:0x80109EA8; // type:function size:0xA4 scope:global align:4 +exec__14NaviClearStateFP4Navi = .text:0x80109F4C; // type:function size:0x4 scope:global align:4 +procAnimMsg__14NaviClearStateFP4NaviP7MsgAnim = .text:0x80109F50; // type:function size:0x50 scope:global align:4 +cleanup__14NaviClearStateFP4Navi = .text:0x80109FA0; // type:function size:0x4 scope:global align:4 +__ct__15NaviIroIroStateFv = .text:0x80109FA4; // type:function size:0x44 scope:global align:4 +init__15NaviIroIroStateFP4Navi = .text:0x80109FE8; // type:function size:0x4 scope:global align:4 +exec__15NaviIroIroStateFP4Navi = .text:0x80109FEC; // type:function size:0x1C scope:global align:4 +cleanup__15NaviIroIroStateFP4Navi = .text:0x8010A008; // type:function size:0x4 scope:global align:4 +__ct__13NaviDeadStateFv = .text:0x8010A00C; // type:function size:0x44 scope:global align:4 +restart__13NaviDeadStateFP4Navi = .text:0x8010A050; // type:function size:0x4 scope:global align:4 +init__13NaviDeadStateFP4Navi = .text:0x8010A054; // type:function size:0x154 scope:global align:4 +exec__13NaviDeadStateFP4Navi = .text:0x8010A1A8; // type:function size:0x1C scope:global align:4 +cleanup__13NaviDeadStateFP4Navi = .text:0x8010A1C4; // type:function size:0x4 scope:global align:4 +procAnimMsg__13NaviDeadStateFP4NaviP7MsgAnim = .text:0x8010A1C8; // type:function size:0x54 scope:global align:4 +__ct__17NaviPikiZeroStateFv = .text:0x8010A21C; // type:function size:0x44 scope:global align:4 +init__17NaviPikiZeroStateFP4Navi = .text:0x8010A260; // type:function size:0x98 scope:global align:4 +exec__17NaviPikiZeroStateFP4Navi = .text:0x8010A2F8; // type:function size:0x54 scope:global align:4 +cleanup__17NaviPikiZeroStateFP4Navi = .text:0x8010A34C; // type:function size:0x4 scope:global align:4 +procAnimMsg__17NaviPikiZeroStateFP4NaviP7MsgAnim = .text:0x8010A350; // type:function size:0x4 scope:global align:4 +__ct__17NaviStartingStateFv = .text:0x8010A354; // type:function size:0x6C scope:global align:4 +init__17NaviStartingStateFP4Navi = .text:0x8010A3C0; // type:function size:0x274 scope:global align:4 +procCollideMsg__17NaviStartingStateFP4NaviP10MsgCollide = .text:0x8010A634; // type:function size:0xDC scope:global align:4 +exec__17NaviStartingStateFP4Navi = .text:0x8010A710; // type:function size:0x2A4 scope:global align:4 +procAnimMsg__17NaviStartingStateFP4NaviP7MsgAnim = .text:0x8010A9B4; // type:function size:0x34 scope:global align:4 +cleanup__17NaviStartingStateFP4Navi = .text:0x8010A9E8; // type:function size:0x84 scope:global align:4 +__ct__20NaviPartsAccessStateFv = .text:0x8010AA6C; // type:function size:0x44 scope:global align:4 +init__20NaviPartsAccessStateFP4Navi = .text:0x8010AAB0; // type:function size:0x104 scope:global align:4 +exec__20NaviPartsAccessStateFP4Navi = .text:0x8010ABB4; // type:function size:0x50 scope:global align:4 +cleanup__20NaviPartsAccessStateFP4Navi = .text:0x8010AC04; // type:function size:0x4C scope:global align:4 +procAnimMsg__20NaviPartsAccessStateFP4NaviP7MsgAnim = .text:0x8010AC50; // type:function size:0xA8 scope:global align:4 +__ct__18NaviUfoAccessStateFv = .text:0x8010ACF8; // type:function size:0x44 scope:global align:4 +init__18NaviUfoAccessStateFP4Navi = .text:0x8010AD3C; // type:function size:0xD0 scope:global align:4 +exec__18NaviUfoAccessStateFP4Navi = .text:0x8010AE0C; // type:function size:0x50 scope:global align:4 +cleanup__18NaviUfoAccessStateFP4Navi = .text:0x8010AE5C; // type:function size:0x28 scope:global align:4 +procAnimMsg__18NaviUfoAccessStateFP4NaviP7MsgAnim = .text:0x8010AE84; // type:function size:0x78 scope:global align:4 +invincible__18NaviUfoAccessStateFP4Navi = .text:0x8010AEFC; // type:function size:0x8 scope:weak align:4 +invincible__20NaviPartsAccessStateFP4Navi = .text:0x8010AF04; // type:function size:0x8 scope:weak align:4 +invincible__17NaviPikiZeroStateFP4Navi = .text:0x8010AF0C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviDeadStateFP4Navi = .text:0x8010AF14; // type:function size:0x8 scope:weak align:4 +invincible__16NaviPressedStateFP4Navi = .text:0x8010AF1C; // type:function size:0x8 scope:weak align:4 +invincible__13NaviNukuStateFP4Navi = .text:0x8010AF24; // type:function size:0x8 scope:weak align:4 +invincible__15NaviGeyzerStateFP4Navi = .text:0x8010AF2C; // type:function size:0x8 scope:weak align:4 +invincible__14NaviFlickStateFP4Navi = .text:0x8010AF34; // type:function size:0x8 scope:weak align:4 +invincible__18NaviContainerStateFP4Navi = .text:0x8010AF3C; // type:function size:0x8 scope:weak align:4 +onCloseWindow__Q25GmWin13CloseListenerFv = .text:0x8010AF44; // type:function size:0x4 scope:weak align:4 +invincible__12NaviUfoStateFP4Navi = .text:0x8010AF48; // type:function size:0x8 scope:weak align:4 +invincible__13NaviBuryStateFP4Navi = .text:0x8010AF50; // type:function size:0x8 scope:weak align:4 +invincible__16NaviDemoInfStateFP4Navi = .text:0x8010AF58; // type:function size:0x8 scope:weak align:4 +invincible__17NaviDemoWaitStateFP4Navi = .text:0x8010AF60; // type:function size:0x8 scope:weak align:4 +invincible__15NaviPelletStateFP4Navi = .text:0x8010AF68; // type:function size:0x8 scope:weak align:4 +@32@4@informWin__18NaviContainerStateFi = .text:0x8010AF70; // type:function size:0x14 scope:weak align:4 +@40@4@onCloseWindow__18NaviContainerStateFv = .text:0x8010AF84; // type:function size:0x14 scope:weak align:4 +init__Q219NaviDemoSunsetState16DemoStateMachineFP19NaviDemoSunsetState = .text:0x8010AF98; // type:function size:0x478 scope:global align:4 +init__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B410; // type:function size:0x90 scope:global align:4 +exec__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010B4A0; // type:function size:0x34C scope:global align:4 +transit__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B7EC; // type:function size:0x30 scope:weak align:4 +transit__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStatei = .text:0x8010B81C; // type:function size:0xB0 scope:weak align:4 +init__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010B8CC; // type:function size:0x4 scope:weak align:4 +cleanup__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010B8D0; // type:function size:0x4 scope:weak align:4 +procAnimMsg__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010B8D4; // type:function size:0x12C scope:global align:4 +cleanup__Q219NaviDemoSunsetState7GoStateFP19NaviDemoSunsetState = .text:0x8010BA00; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BA04; // type:function size:0x84 scope:global align:4 +exec__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BA88; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetState = .text:0x8010BA8C; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState9LookStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BA90; // type:function size:0x7C scope:global align:4 +init__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BB0C; // type:function size:0x9C scope:global align:4 +exec__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BBA8; // type:function size:0x4 scope:global align:4 +procAnimMsg__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010BBAC; // type:function size:0xC0 scope:global align:4 +enterAllPikis__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BC6C; // type:function size:0x2C8 scope:global align:4 +cleanup__Q219NaviDemoSunsetState12WhistleStateFP19NaviDemoSunsetState = .text:0x8010BF34; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010BF38; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010BFB0; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState9WaitStateFP19NaviDemoSunsetState = .text:0x8010BFB4; // type:function size:0x4 scope:global align:4 +init__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010BFB8; // type:function size:0x78 scope:global align:4 +exec__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C030; // type:function size:0x4 scope:global align:4 +cleanup__Q219NaviDemoSunsetState8SitStateFP19NaviDemoSunsetState = .text:0x8010C034; // type:function size:0x4 scope:global align:4 +__ct__19NaviDemoSunsetStateFv = .text:0x8010C038; // type:function size:0xD4 scope:global align:4 +init__19NaviDemoSunsetStateFP4Navi = .text:0x8010C10C; // type:function size:0x200 scope:global align:4 +setActors__19NaviDemoSunsetStateFP4Navi = .text:0x8010C30C; // type:function size:0x4A0 scope:global align:4 +exec__19NaviDemoSunsetStateFP4Navi = .text:0x8010C7AC; // type:function size:0x160 scope:global align:4 +exec__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010C90C; // type:function size:0x3C scope:weak align:4 +exec__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010C948; // type:function size:0x4 scope:weak align:4 +cleanup__19NaviDemoSunsetStateFP4Navi = .text:0x8010C94C; // type:function size:0x218 scope:global align:4 +procAnimMsg__19NaviDemoSunsetStateFP4NaviP7MsgAnim = .text:0x8010CB64; // type:function size:0x34 scope:global align:4 +procMsg__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CB98; // type:function size:0x3C scope:weak align:4 +procMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP3Msg = .text:0x8010CBD4; // type:function size:0x118 scope:weak align:4 +procGroundMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgGround = .text:0x8010CCEC; // type:function size:0x4 scope:weak align:4 +procUserMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgUser = .text:0x8010CCF0; // type:function size:0x4 scope:weak align:4 +procOffWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgOffWall = .text:0x8010CCF4; // type:function size:0x4 scope:weak align:4 +procWallMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgWall = .text:0x8010CCF8; // type:function size:0x4 scope:weak align:4 +procDamageMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgDamage = .text:0x8010CCFC; // type:function size:0x4 scope:weak align:4 +procAnimMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgAnim = .text:0x8010CD00; // type:function size:0x4 scope:weak align:4 +procCollideMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP10MsgCollide = .text:0x8010CD04; // type:function size:0x4 scope:weak align:4 +procTargetMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgTarget = .text:0x8010CD08; // type:function size:0x4 scope:weak align:4 +procHangMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP7MsgHang = .text:0x8010CD0C; // type:function size:0x4 scope:weak align:4 +procStickMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP8MsgStick = .text:0x8010CD10; // type:function size:0x4 scope:weak align:4 +procBounceMsg__31Receiver<19NaviDemoSunsetState>FP19NaviDemoSunsetStateP9MsgBounce = .text:0x8010CD14; // type:function size:0x4 scope:weak align:4 +resume__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CD18; // type:function size:0x4 scope:weak align:4 +restart__29AState<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CD1C; // type:function size:0x4 scope:weak align:4 +init__35StateMachine<19NaviDemoSunsetState>FP19NaviDemoSunsetState = .text:0x8010CD20; // type:function size:0x4 scope:weak align:4 +startTextDemo__15GameCoreSectionFP8Creaturei = .text:0x8010CD24; // type:function size:0x40 scope:global align:4 +updateTextDemo__15GameCoreSectionFv = .text:0x8010CD64; // type:function size:0xEC scope:global align:4 +startMovie__15GameCoreSectionFUlb = .text:0x8010CE50; // type:function size:0x464 scope:global align:4 +endMovie__15GameCoreSectionFi = .text:0x8010D2B4; // type:function size:0x254 scope:global align:4 +exitDayEnd__15GameCoreSectionFv = .text:0x8010D508; // type:function size:0x150 scope:global align:4 +forceDayEnd__15GameCoreSectionFv = .text:0x8010D658; // type:function size:0x188 scope:global align:4 +clearDeadlyPikmins__15GameCoreSectionFv = .text:0x8010D7E0; // type:function size:0x17C scope:global align:4 +enterFreePikmins__15GameCoreSectionFv = .text:0x8010D95C; // type:function size:0x320 scope:global align:4 +cleanupDayEnd__15GameCoreSectionFv = .text:0x8010DC7C; // type:function size:0xD94 scope:global align:4 +prepareBadEnd__15GameCoreSectionFv = .text:0x8010EA10; // type:function size:0x130 scope:global align:4 +exitStage__15GameCoreSectionFv = .text:0x8010EB40; // type:function size:0x90 scope:global align:4 +initStage__15GameCoreSectionFv = .text:0x8010EBD0; // type:function size:0xCD4 scope:global align:4 +finalSetup__15GameCoreSectionFv = .text:0x8010F8A4; // type:function size:0x460 scope:global align:4 +__ct__15GameCoreSectionFP10ControllerP6MapMgrR6Camera = .text:0x8010FD04; // type:function size:0x9A4 scope:global align:4 +update__15GameCoreSectionFv = .text:0x801106A8; // type:function size:0x2B0 scope:global align:4 +startContainerDemo__15GameCoreSectionFv = .text:0x80110958; // type:function size:0xC scope:global align:4 +startSundownWarn__15GameCoreSectionFv = .text:0x80110964; // type:function size:0x38 scope:global align:4 +updateAI__15GameCoreSectionFv = .text:0x8011099C; // type:function size:0x568 scope:global align:4 +draw__15GameCoreSectionFR8Graphics = .text:0x80110F04; // type:function size:0x5A4 scope:global align:4 +draw1D__15GameCoreSectionFR8Graphics = .text:0x801114A8; // type:function size:0x260 scope:global align:4 +draw2D__15GameCoreSectionFR8Graphics = .text:0x80111708; // type:function size:0x5C4 scope:global align:4 +open__5GmWinFv = .text:0x80111CCC; // type:function size:0xC scope:global align:4 +close__5GmWinFv = .text:0x80111CD8; // type:function size:0x4C scope:global align:4 +render__5GmWinFR8Graphics = .text:0x80111D24; // type:function size:0x19C scope:global align:4 +placeCentre__5GmWinFv = .text:0x80111EC0; // type:function size:0x24 scope:global align:4 +print__5GmWinFR8GraphicsiiPc = .text:0x80111EE4; // type:function size:0x50 scope:global align:4 +printcentre__5GmWinFR8GraphicsiPc = .text:0x80111F34; // type:function size:0x80 scope:global align:4 +printright__5GmWinFR8GraphicsiPc = .text:0x80111FB4; // type:function size:0x80 scope:global align:4 +printleft__5GmWinFR8GraphicsiPc = .text:0x80112034; // type:function size:0x58 scope:global align:4 +printStart__5GmWinFR8Graphics = .text:0x8011208C; // type:function size:0x68 scope:global align:4 +texture__5GmWinFR8GraphicsP7Textureiiii8RectArea = .text:0x801120F4; // type:function size:0x98 scope:global align:4 +texturecentre__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x8011218C; // type:function size:0xA8 scope:global align:4 +textureleft__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x80112234; // type:function size:0x98 scope:global align:4 +textureright__5GmWinFR8GraphicsP7Textureiii8RectArea = .text:0x801122CC; // type:function size:0xA4 scope:global align:4 +init__8GameStatFv = .text:0x80112370; // type:function size:0xA8 scope:global align:4 +update__8GameStatFv = .text:0x80112418; // type:function size:0xC4 scope:global align:4 +dump__8GameStatFv = .text:0x801124DC; // type:function size:0x4 scope:global align:4 +__sinit_gameStat_cpp = .text:0x801124E0; // type:function size:0x9C scope:local align:4 +isNan__Ff = .text:0x8011257C; // type:function size:0x5C scope:global align:4 +makePostureMatrix__FR8Vector3fR8Vector3fR8Vector3fR8Matrix4f = .text:0x801125D8; // type:function size:0x9C scope:global align:4 +calcImpulse__FR8Vector3ffR8Vector3fR8Matrix4fR8Vector3fR8Vector3f = .text:0x80112674; // type:function size:0x1B0 scope:global align:4 +CRSpline__FfP8Vector3f = .text:0x80112824; // type:function size:0x1C0 scope:global align:4 +CRSplineTangent__FfP8Vector3f = .text:0x801129E4; // type:function size:0x1B8 scope:global align:4 +getThrowVelocity__FR8Vector3ffR8Vector3fR8Vector3f = .text:0x80112B9C; // type:function size:0x22C scope:global align:4 +getCameraSafeAngle__FR8Vector3fff = .text:0x80112DC8; // type:function size:0x254 scope:global align:4 +__ct__11SlimeEffectFv = .text:0x8011301C; // type:function size:0x68 scope:global align:4 +stop__11SlimeEffectFv = .text:0x80113084; // type:function size:0x1C scope:global align:4 +restart__11SlimeEffectFv = .text:0x801130A0; // type:function size:0x1C scope:global align:4 +emit__11SlimeEffectFR10EffectParm = .text:0x801130BC; // type:function size:0x90 scope:global align:4 +invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x8011314C; // type:function size:0x9C scope:global align:4 +kill__11SlimeEffectFv = .text:0x801131E8; // type:function size:0x4C scope:global align:4 +__ct__11UtEffectMgrFv = .text:0x80113234; // type:function size:0xF54 scope:global align:4 +registerEffect__11UtEffectMgrFiP7KEffect = .text:0x80114188; // type:function size:0x10 scope:global align:4 +cast__11UtEffectMgrFiR10EffectParm = .text:0x80114198; // type:function size:0x44 scope:global align:4 +kill__11UtEffectMgrFi = .text:0x801141DC; // type:function size:0x44 scope:global align:4 +__ct__15PermanentEffectFv = .text:0x80114220; // type:function size:0x34 scope:global align:4 +init__15PermanentEffectFR8Vector3fi = .text:0x80114254; // type:function size:0x8C scope:global align:4 +updatePos__15PermanentEffectFR8Vector3f = .text:0x801142E0; // type:function size:0x34 scope:global align:4 +changeEffect__15PermanentEffectFi = .text:0x80114314; // type:function size:0x80 scope:global align:4 +stop__15PermanentEffectFv = .text:0x80114394; // type:function size:0x1C scope:global align:4 +restart__15PermanentEffectFv = .text:0x801143B0; // type:function size:0x1C scope:global align:4 +kill__15PermanentEffectFv = .text:0x801143CC; // type:function size:0x4C scope:global align:4 +emit__15FreeLightEffectFR10EffectParm = .text:0x80114418; // type:function size:0x80 scope:global align:4 +stop__15FreeLightEffectFv = .text:0x80114498; // type:function size:0x1C scope:global align:4 +restart__15FreeLightEffectFv = .text:0x801144B4; // type:function size:0x1C scope:global align:4 +setScale__15FreeLightEffectFf = .text:0x801144D0; // type:function size:0x1C scope:global align:4 +kill__15FreeLightEffectFv = .text:0x801144EC; // type:function size:0x4C scope:global align:4 +emit__12RippleEffectFR10EffectParm = .text:0x80114538; // type:function size:0x134 scope:global align:4 +kill__12RippleEffectFv = .text:0x8011466C; // type:function size:0x94 scope:global align:4 +stop__12RippleEffectFv = .text:0x80114700; // type:function size:0x34 scope:global align:4 +restart__12RippleEffectFv = .text:0x80114734; // type:function size:0x34 scope:global align:4 +stop__10BurnEffectFv = .text:0x80114768; // type:function size:0x1C scope:global align:4 +restart__10BurnEffectFv = .text:0x80114784; // type:function size:0x1C scope:global align:4 +emit__10BurnEffectFR10EffectParm = .text:0x801147A0; // type:function size:0x14C scope:global align:4 +kill__10BurnEffectFv = .text:0x801148EC; // type:function size:0x70 scope:global align:4 +invoke__10BurnEffectFPQ23zen17particleGenerator = .text:0x8011495C; // type:function size:0x8 scope:global align:4 +emit__16UfoSuikomiEffectFR10EffectParm = .text:0x80114964; // type:function size:0x1C4 scope:weak align:4 +getGPos__Q23zen17particleGeneratorFv = .text:0x80114B28; // type:function size:0x1C scope:weak align:4 +kill__16UfoSuikomiEffectFv = .text:0x80114B44; // type:function size:0x4C scope:weak align:4 +emit__15WhistleTemplateFR10EffectParm = .text:0x80114B90; // type:function size:0xE0 scope:weak align:4 +kill__15WhistleTemplateFv = .text:0x80114C70; // type:function size:0x70 scope:weak align:4 +invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80114CE0; // type:function size:0x34C scope:weak align:4 +emit__15BombEffectLightFR10EffectParm = .text:0x8011502C; // type:function size:0xD8 scope:weak align:4 +kill__15BombEffectLightFv = .text:0x80115104; // type:function size:0x4 scope:weak align:4 +emit__10BombEffectFR10EffectParm = .text:0x80115108; // type:function size:0xF0 scope:weak align:4 +kill__10BombEffectFv = .text:0x801151F8; // type:function size:0x4 scope:weak align:4 +emit__12SimpleEffectFR10EffectParm = .text:0x801151FC; // type:function size:0x44 scope:weak align:4 +kill__12SimpleEffectFv = .text:0x80115240; // type:function size:0x38 scope:weak align:4 +invoke__7NaviFueFPQ23zen17particleGenerator = .text:0x80115278; // type:function size:0x8 scope:weak align:4 +emit__7NaviFueFR10EffectParm = .text:0x80115280; // type:function size:0xC0 scope:weak align:4 +kill__7NaviFueFv = .text:0x80115340; // type:function size:0xB4 scope:weak align:4 +emit__15SmokeTreeEffectFR10EffectParm = .text:0x801153F4; // type:function size:0x34 scope:weak align:4 +emit__15SmokeRockEffectFR10EffectParm = .text:0x80115428; // type:function size:0x34 scope:weak align:4 +emit__16SmokeGrassEffectFR10EffectParm = .text:0x8011545C; // type:function size:0x34 scope:weak align:4 +emit__15SmokeSoilEffectFR10EffectParm = .text:0x80115490; // type:function size:0x34 scope:weak align:4 +emit__11NaviWhistleFR10EffectParm = .text:0x801154C4; // type:function size:0xFC scope:weak align:4 +kill__11NaviWhistleFv = .text:0x801155C0; // type:function size:0x94 scope:weak align:4 +invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115654; // type:function size:0x364 scope:weak align:4 +invoke__10GoalEffectFPQ23zen17particleGenerator = .text:0x801159B8; // type:function size:0x38 scope:weak align:4 +emit__10GoalEffectFR10EffectParm = .text:0x801159F0; // type:function size:0x3C scope:weak align:4 +@4@invoke__11SlimeEffectFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115A2C; // type:function size:0x8 scope:weak align:4 +@4@invoke__11NaviWhistleFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115A34; // type:function size:0x8 scope:weak align:4 +@4@invoke__15WhistleTemplateFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80115A3C; // type:function size:0x8 scope:weak align:4 +__ct__10KontrollerFi = .text:0x80115A44; // type:function size:0xCC scope:global align:4 +save__10KontrollerFP9RamStreami = .text:0x80115B10; // type:function size:0x50 scope:global align:4 +load__10KontrollerFP9RamStreami = .text:0x80115B60; // type:function size:0x50 scope:global align:4 +update__10KontrollerFv = .text:0x80115BB0; // type:function size:0x168 scope:global align:4 +getSaveSize__10KontrollerFi = .text:0x80115D18; // type:function size:0x8 scope:global align:4 +write__10KontrollerFR18RandomAccessStream = .text:0x80115D20; // type:function size:0x10C scope:global align:4 +read__10KontrollerFR18RandomAccessStream = .text:0x80115E2C; // type:function size:0x10C scope:global align:4 +getAttribute__7MapCodeFP11CollTriInfo = .text:0x80115F38; // type:function size:0xC scope:global align:4 +getSlipCode__7MapCodeFP11CollTriInfo = .text:0x80115F44; // type:function size:0x1C scope:global align:4 +isBald__7MapCodeFP11CollTriInfo = .text:0x80115F60; // type:function size:0x68 scope:global align:4 +selectRandomly__FP6Choicei = .text:0x80115FC8; // type:function size:0xB0 scope:global align:4 +__ct__8BitFlagsFv = .text:0x80116078; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x80116088; // type:function size:0x58 scope:global align:4 +loadCard__8BitFlagsFR18RandomAccessStream = .text:0x801160E0; // type:function size:0x70 scope:global align:4 +saveCard__8BitFlagsFR18RandomAccessStream = .text:0x80116150; // type:function size:0x70 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x801161C0; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x80116214; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x8011623C; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x8011626C; // type:function size:0x38 scope:global align:4 +__ct__11LoopCheckerFPcf = .text:0x801162A4; // type:function size:0xC scope:global align:4 +update__11LoopCheckerFv = .text:0x801162B0; // type:function size:0x28 scope:global align:4 +drawBatten__FR8GraphicsR8Vector3ff = .text:0x801162D8; // type:function size:0x16C scope:global align:4 +drawBattenPole__FR8GraphicsR8Vector3ffPc = .text:0x80116444; // type:function size:0x424 scope:global align:4 +drawArrow__FR8GraphicsR8Vector3fR8Vector3ff = .text:0x80116868; // type:function size:0x26C scope:global align:4 +CRSplineDraw__FR8GraphicsiP8Vector3f = .text:0x80116AD4; // type:function size:0x1E8 scope:global align:4 +drawCube__FR8GraphicsR8Vector3ff = .text:0x80116CBC; // type:function size:0x3C0 scope:global align:4 +__ct__7NaviMgrFv = .text:0x8011707C; // type:function size:0x180 scope:global align:4 +createObject__7NaviMgrFv = .text:0x801171FC; // type:function size:0x60 scope:global align:4 +update__7NaviMgrFv = .text:0x8011725C; // type:function size:0x20 scope:global align:4 +getNavi__7NaviMgrFv = .text:0x8011727C; // type:function size:0x74 scope:global align:4 +getNavi__7NaviMgrFi = .text:0x801172F0; // type:function size:0x18 scope:global align:4 +refresh2d__7NaviMgrFR8Graphics = .text:0x80117308; // type:function size:0x11C scope:global align:4 +renderCircle__7NaviMgrFR8Graphics = .text:0x80117424; // type:function size:0x110 scope:global align:4 +drawShadow__7NaviMgrFR8Graphics = .text:0x80117534; // type:function size:0x11C scope:global align:4 +read__7NaviMgrFR18RandomAccessStream = .text:0x80117650; // type:function size:0x30 scope:global align:4 +__dt__7NaviMgrFv = .text:0x80117680; // type:function size:0x84 scope:weak align:4 +@8@read__7NaviMgrFR18RandomAccessStream = .text:0x80117704; // type:function size:0x8 scope:weak align:4 +@8@update__7NaviMgrFv = .text:0x8011770C; // type:function size:0x8 scope:weak align:4 +makeObjectMapParts__Fv = .text:0x80117714; // type:function size:0x1C0 scope:local align:4 +initialise__17GenObjectMapPartsFP6MapMgr = .text:0x801178D4; // type:function size:0x90 scope:global align:4 +doRead__17GenObjectMapPartsFR18RandomAccessStream = .text:0x80117964; // type:function size:0x118 scope:global align:4 +render__17GenObjectMapPartsFR8GraphicsP9Generator = .text:0x80117A7C; // type:function size:0x664 scope:global align:4 +birth__17GenObjectMapPartsFR9BirthInfo = .text:0x801180E0; // type:function size:0x27C scope:global align:4 +init__8MapPartsFv = .text:0x8011835C; // type:function size:0x4 scope:weak align:4 +getShapeFile__8MapPartsFi = .text:0x80118360; // type:function size:0x18 scope:global align:4 +applyVelocity__8MapPartsFR5PlaneR8Vector3fR8Vector3f = .text:0x80118378; // type:function size:0x5C scope:global align:4 +__ct__9MapEntityFP5Shape = .text:0x801183D4; // type:function size:0x78 scope:global align:4 +update__9MapEntityFv = .text:0x8011844C; // type:function size:0x100 scope:global align:4 +__ct__9MapSliderFP5Shapeiifffi = .text:0x8011854C; // type:function size:0xD0 scope:global align:4 +init__9MapSliderFv = .text:0x8011861C; // type:function size:0x40 scope:global align:4 +update__9MapSliderFv = .text:0x8011865C; // type:function size:0x36C scope:global align:4 +refresh__9MapSliderFR8Graphics = .text:0x801189C8; // type:function size:0x1EC scope:global align:4 +read__8MapPartsFR18RandomAccessStream = .text:0x80118BB4; // type:function size:0x4 scope:weak align:4 +update__8MapPartsFv = .text:0x80118BB8; // type:function size:0x4 scope:weak align:4 +createMotionTable__16PaniPikiAnimatorFv = .text:0x80118BBC; // type:function size:0xCD0 scope:global align:4 +__ct__16PaniPikiAnimatorFv = .text:0x8011988C; // type:function size:0x3C scope:global align:4 +setType__5ActorFiP15PikiShapeObjectP12CreaturePropP8SimpleAI = .text:0x801198C8; // type:function size:0xA4 scope:global align:4 +newActor__8ActorMgrFi = .text:0x8011996C; // type:function size:0x7C scope:global align:4 +makeObjectActor__Fv = .text:0x801199E8; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectActorFv = .text:0x80119A60; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectActorFR18RandomAccessStream = .text:0x80119AEC; // type:function size:0x40 scope:global align:4 +birth__14GenObjectActorFR9BirthInfo = .text:0x80119B2C; // type:function size:0x70 scope:global align:4 +__ct__8PikiInfoFv = .text:0x80119B9C; // type:function size:0x24 scope:global align:4 +addFormationPiki__8PikiInfoFv = .text:0x80119BC0; // type:function size:0x24 scope:global align:4 +subFormationPiki__8PikiInfoFv = .text:0x80119BE4; // type:function size:0x10 scope:global align:4 +__ct__5PlantFv = .text:0x80119BF4; // type:function size:0xC8 scope:global align:4 +startMotion__5PlantFi = .text:0x80119CBC; // type:function size:0x48 scope:global align:4 +startAI__5PlantFi = .text:0x80119D04; // type:function size:0xB8 scope:global align:4 +doAnimation__5PlantFv = .text:0x80119DBC; // type:function size:0x38 scope:global align:4 +update__5PlantFv = .text:0x80119DF4; // type:function size:0xA4 scope:global align:4 +refresh__5PlantFR8Graphics = .text:0x80119E98; // type:function size:0x3C0 scope:global align:4 +doKill__5PlantFv = .text:0x8011A258; // type:function size:0x4 scope:global align:4 +satisfy__Q27PlantAI12OpponentMoveFP10AICreature = .text:0x8011A25C; // type:function size:0xAC scope:global align:4 +act__Q27PlantAI8WaitInitFP10AICreature = .text:0x8011A308; // type:function size:0x94 scope:global align:4 +act__Q27PlantAI9TouchInitFP10AICreature = .text:0x8011A39C; // type:function size:0x64 scope:global align:4 +__ct__8PlantMgrFP6MapMgr = .text:0x8011A400; // type:function size:0x478 scope:global align:4 +initialise__8PlantMgrFv = .text:0x8011A878; // type:function size:0xEC scope:global align:4 +createObject__8PlantMgrFv = .text:0x8011A964; // type:function size:0xD8 scope:global align:4 +usePlantType__8PlantMgrFi = .text:0x8011AA3C; // type:function size:0x30 scope:global align:4 +__ct__16PlantShapeObjectFP5ShapePcPc = .text:0x8011AA6C; // type:function size:0x118 scope:global align:4 +makeObjectPlant__Fv = .text:0x8011AB84; // type:function size:0x78 scope:local align:4 +initialise__14GenObjectPlantFv = .text:0x8011ABFC; // type:function size:0x8C scope:global align:4 +doRead__14GenObjectPlantFR18RandomAccessStream = .text:0x8011AC88; // type:function size:0x40 scope:global align:4 +updateUseList__14GenObjectPlantFP9Generatori = .text:0x8011ACC8; // type:function size:0xCC scope:global align:4 +birth__14GenObjectPlantFR9BirthInfo = .text:0x8011AD94; // type:function size:0x190 scope:global align:4 +render__14GenObjectPlantFR8GraphicsP9Generator = .text:0x8011AF24; // type:function size:0x2C scope:global align:4 +__dt__8PlantMgrFv = .text:0x8011AF50; // type:function size:0x84 scope:weak align:4 +getiMass__5PlantFv = .text:0x8011AFD4; // type:function size:0x8 scope:weak align:4 +isAlive__5PlantFv = .text:0x8011AFDC; // type:function size:0x10 scope:weak align:4 +setMotionSpeed__5PlantFf = .text:0x8011AFEC; // type:function size:0x8 scope:weak align:4 +stopMotion__5PlantFv = .text:0x8011AFF4; // type:function size:0xC scope:weak align:4 +createMotionTable__17PaniPlantAnimatorFv = .text:0x8011B000; // type:function size:0x148 scope:global align:4 +__ct__17PaniPlantAnimatorFv = .text:0x8011B148; // type:function size:0x3C scope:global align:4 +makeObjectTeki__Fv = .text:0x8011B184; // type:function size:0x40 scope:local align:4 +initialise__13GenObjectTekiFv = .text:0x8011B1C4; // type:function size:0x88 scope:global align:4 +__ct__13GenObjectTekiFv = .text:0x8011B24C; // type:function size:0x8C scope:global align:4 +doRead__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B2D8; // type:function size:0x94 scope:global align:4 +doWrite__13GenObjectTekiFR18RandomAccessStream = .text:0x8011B36C; // type:function size:0x68 scope:global align:4 +updateUseList__13GenObjectTekiFP9Generatori = .text:0x8011B3D4; // type:function size:0x70 scope:global align:4 +birth__13GenObjectTekiFR9BirthInfo = .text:0x8011B444; // type:function size:0x120 scope:global align:4 +init__21NakataCodeInitializerFv = .text:0x8011B564; // type:function size:0x38 scope:global align:4 +construct__19NPolynomialFunctionFPfi = .text:0x8011B59C; // type:function size:0x28 scope:global align:4 +getValue__19NPolynomialFunctionFf = .text:0x8011B5C4; // type:function size:0x114 scope:global align:4 +println__19NPolynomialFunctionFv = .text:0x8011B6D8; // type:function size:0x58 scope:global align:4 +__ct__20NClampLinearFunctionFPf = .text:0x8011B730; // type:function size:0x7C scope:global align:4 +construct__20NClampLinearFunctionFPf = .text:0x8011B7AC; // type:function size:0x28 scope:global align:4 +makeClampLinearFunction__20NClampLinearFunctionFffff = .text:0x8011B7D4; // type:function size:0x90 scope:global align:4 +getValue__20NClampLinearFunctionFf = .text:0x8011B864; // type:function size:0x134 scope:global align:4 +println__20NClampLinearFunctionFv = .text:0x8011B998; // type:function size:0x58 scope:global align:4 +__ct__18NVibrationFunctionFv = .text:0x8011B9F0; // type:function size:0x3C scope:global align:4 +makeVibrationFunction__18NVibrationFunctionFfff = .text:0x8011BA2C; // type:function size:0x20 scope:global align:4 +getValue__18NVibrationFunctionFf = .text:0x8011BA4C; // type:function size:0x44 scope:global align:4 +outputPosition__11NFunction3DFfR9NVector3f = .text:0x8011BA90; // type:function size:0xA8 scope:global align:4 +__ct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BB38; // type:function size:0x58 scope:global align:4 +construct__12NAxisAngle4fFR9NVector3ff = .text:0x8011BB90; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFv = .text:0x8011BBB0; // type:function size:0x80 scope:global align:4 +construct__9NMatrix4fFR8Matrix4f = .text:0x8011BC30; // type:function size:0x20 scope:global align:4 +__ct__9NMatrix4fFffffffffffffffff = .text:0x8011BC50; // type:function size:0x70 scope:global align:4 +input__9NMatrix4fFR8Matrix4f = .text:0x8011BCC0; // type:function size:0x90 scope:global align:4 +set__9NMatrix4fFffffffffffffffff = .text:0x8011BD50; // type:function size:0x6C scope:global align:4 +outputCol__9NMatrix4fFiR8Vector3f = .text:0x8011BDBC; // type:function size:0x24 scope:global align:4 +makeIdentRow__9NMatrix4fFi = .text:0x8011BDE0; // type:function size:0x24 scope:global align:4 +__ct__12NOrientationFR8Vector3f = .text:0x8011BE04; // type:function size:0x50 scope:global align:4 +construct__12NOrientationFR8Vector3f = .text:0x8011BE54; // type:function size:0x78 scope:global align:4 +normalize__12NOrientationFv = .text:0x8011BECC; // type:function size:0xD4 scope:global align:4 +outputLeft__12NOrientationFR9NVector3f = .text:0x8011BFA0; // type:function size:0x4C scope:global align:4 +makeUp__12NOrientationFv = .text:0x8011BFEC; // type:function size:0x254 scope:global align:4 +input__8Vector3fFR8Vector3f = .text:0x8011C240; // type:function size:0x1C scope:weak align:4 +__ct__8NPolar3fFv = .text:0x8011C25C; // type:function size:0x3C scope:global align:4 +__ct__8NPolar3fFR8Vector3f = .text:0x8011C298; // type:function size:0x30 scope:global align:4 +construct__8NPolar3fFR8Vector3f = .text:0x8011C2C8; // type:function size:0x20 scope:global align:4 +set__8NPolar3fFfff = .text:0x8011C2E8; // type:function size:0x10 scope:global align:4 +input__8NPolar3fFR8Vector3f = .text:0x8011C2F8; // type:function size:0xA8 scope:global align:4 +output__8NPolar3fFR8Vector3f = .text:0x8011C3A0; // type:function size:0xA4 scope:global align:4 +readData__10NPosture2DFR6Stream = .text:0x8011C444; // type:function size:0x94 scope:global align:4 +__ct__10NPosture3DFv = .text:0x8011C4D8; // type:function size:0xA0 scope:global align:4 +__ct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C578; // type:function size:0x70 scope:global align:4 +construct__10NPosture3DFR8Vector3fR8Vector3f = .text:0x8011C5E8; // type:function size:0x34 scope:global align:4 +normalize__10NPosture3DFv = .text:0x8011C61C; // type:function size:0xD4 scope:global align:4 +outputRelative__10NPosture3DFR9NVector3f = .text:0x8011C6F0; // type:function size:0x34 scope:global align:4 +translate__10NPosture3DFR8Vector3f = .text:0x8011C724; // type:function size:0x64 scope:global align:4 +readData__10NPosture3DFR6Stream = .text:0x8011C788; // type:function size:0xC4 scope:global align:4 +setDimension__8LUMatrixFi = .text:0x8011C84C; // type:function size:0x64 scope:global align:4 +setDimension__14NSpecialMatrixFi = .text:0x8011C8B0; // type:function size:0x8 scope:weak align:4 +__ct__12NTransform3DFv = .text:0x8011C8B8; // type:function size:0x80 scope:global align:4 +copyArray44__8NMathFPA4_fPA4_f = .text:0x8011C938; // type:function size:0x88 scope:weak align:4 +rotate__12NTransform3DFR8Vector3f = .text:0x8011C9C0; // type:function size:0x19C scope:global align:4 +transform__12NTransform3DFR8Vector3f = .text:0x8011CB5C; // type:function size:0x2C scope:global align:4 +inputAxisAngle__12NTransform3DFR12NAxisAngle4f = .text:0x8011CB88; // type:function size:0x24 scope:global align:4 +outputRotation__12NTransform3DFR8Matrix4f = .text:0x8011CBAC; // type:function size:0xCC scope:global align:4 +__ct__7NVectorFv = .text:0x8011CC78; // type:function size:0x10 scope:global align:4 +construct__7NVectorFPfi = .text:0x8011CC88; // type:function size:0x28 scope:global align:4 +makeZero__7NVectorFv = .text:0x8011CCB0; // type:function size:0x30 scope:global align:4 +printlnVector3f__9NVector3fFR8Vector3f = .text:0x8011CCE0; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFv = .text:0x8011CD0C; // type:function size:0x2C scope:global align:4 +__ct__9NVector3fFR8Vector3f = .text:0x8011CD38; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3f = .text:0x8011CD78; // type:function size:0x1C scope:global align:4 +__ct__9NVector3fFfff = .text:0x8011CD94; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFfff = .text:0x8011CDD4; // type:function size:0x10 scope:global align:4 +__ct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CDE4; // type:function size:0x40 scope:global align:4 +construct__9NVector3fFR8Vector3fR8Vector3f = .text:0x8011CE24; // type:function size:0x34 scope:global align:4 +isParallel__9NVector3fFR8Vector3f = .text:0x8011CE58; // type:function size:0x74 scope:global align:4 +println__9NVector3fFv = .text:0x8011CECC; // type:function size:0x4 scope:global align:4 +normalizeCheck__9NVector3fFv = .text:0x8011CED0; // type:function size:0xE8 scope:global align:4 +normalize__9NVector3fFv = .text:0x8011CFB8; // type:function size:0xDC scope:global align:4 +reset__6NAlphaFv = .text:0x8011D094; // type:function size:0xC scope:global align:4 +getValue__6NAlphaFf = .text:0x8011D0A0; // type:function size:0x198 scope:global align:4 +readData__6NAlphaFR6Stream = .text:0x8011D238; // type:function size:0x7C scope:global align:4 +__ct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D2B4; // type:function size:0x70 scope:global align:4 +construct__5NLineFR9NVector3fR9NVector3f = .text:0x8011D324; // type:function size:0x34 scope:global align:4 +calcDistance__5NLineFR9NVector3fPf = .text:0x8011D358; // type:function size:0xC0 scope:global align:4 +calcVerticalProjection__5NLineFR9NVector3f = .text:0x8011D418; // type:function size:0x64 scope:global align:4 +outputPosition__5NLineFfR9NVector3f = .text:0x8011D47C; // type:function size:0x9C scope:global align:4 +transform__5NLineFR12NTransform3D = .text:0x8011D518; // type:function size:0x4C scope:global align:4 +println__5NLineFv = .text:0x8011D564; // type:function size:0x38 scope:global align:4 +__ct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D59C; // type:function size:0x68 scope:global align:4 +construct__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D604; // type:function size:0x50 scope:global align:4 +outputVerticalPosition__6NPlaneFR9NVector3fR9NVector3f = .text:0x8011D654; // type:function size:0xDC scope:global align:4 +transform__6NPlaneFR12NTransform3D = .text:0x8011D730; // type:function size:0xC0 scope:global align:4 +println__6NPlaneFv = .text:0x8011D7F0; // type:function size:0x24 scope:global align:4 +__ct__7NCameraFP6Camera = .text:0x8011D814; // type:function size:0x84 scope:global align:4 +makeMatrix__7NCameraFv = .text:0x8011D898; // type:function size:0xD0 scope:global align:4 +makeCamera__7NCameraFv = .text:0x8011D968; // type:function size:0x98 scope:global align:4 +atan__Fff = .text:0x8011DA00; // type:function size:0x2C0 scope:global align:4 +atan2__6NMathFFff = .text:0x8011DCC0; // type:function size:0x58 scope:global align:4 +reset__18SplineInterpolatorFv = .text:0x8011DD18; // type:function size:0xC scope:global align:4 +interpolateNext__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DD24; // type:function size:0xE0 scope:global align:4 +outputPosture__18SplineInterpolatorFfR10NPosture3D = .text:0x8011DE04; // type:function size:0xF0 scope:global align:4 +searchSegmentIndex__18SplineInterpolatorFfi = .text:0x8011DEF4; // type:function size:0xBC scope:global align:4 +__ct__5NNodeFi = .text:0x8011DFB0; // type:function size:0xCC scope:global align:4 +setChild__5NNodeFiP5NNode = .text:0x8011E07C; // type:function size:0x38 scope:global align:4 +set__14NArray<5NNode>FiP5NNode = .text:0x8011E0B4; // type:function size:0x3C scope:weak align:4 +addChild__5NNodeFP5NNode = .text:0x8011E0F0; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FP5NNode = .text:0x8011E128; // type:function size:0x38 scope:weak align:4 +addChild__5NNodeFiP5NNode = .text:0x8011E160; // type:function size:0x38 scope:global align:4 +add__14NArray<5NNode>FiP5NNode = .text:0x8011E198; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NNode>FiP5NNode = .text:0x8011E1E8; // type:function size:0x114 scope:weak align:4 +getChild__5NNodeFi = .text:0x8011E2FC; // type:function size:0x40 scope:global align:4 +get__14NArray<5NNode>Fi = .text:0x8011E33C; // type:function size:0x30 scope:weak align:4 +removeChild__5NNodeFP5NNode = .text:0x8011E36C; // type:function size:0x38 scope:global align:4 +remove__14NArray<5NNode>FP5NNode = .text:0x8011E3A4; // type:function size:0x50 scope:weak align:4 +remove__14NArray<5NNode>Fi = .text:0x8011E3F4; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNode = .text:0x8011E444; // type:function size:0x30 scope:weak align:4 +indexOf__14NArray<5NNode>FP5NNodei = .text:0x8011E474; // type:function size:0x54 scope:weak align:4 +removeChild__5NNodeFi = .text:0x8011E4C8; // type:function size:0x38 scope:global align:4 +removeAllChildren__5NNodeFv = .text:0x8011E500; // type:function size:0x38 scope:global align:4 +removeAll__14NArray<5NNode>Fv = .text:0x8011E538; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NNode>Fii = .text:0x8011E56C; // type:function size:0x13C scope:weak align:4 +release__5NHeapFv = .text:0x8011E6A8; // type:function size:0x7C scope:global align:4 +get__14NArray<5NHeap>Fi = .text:0x8011E724; // type:function size:0x30 scope:weak align:4 +initSystem__7NSystemFP6System = .text:0x8011E754; // type:function size:0x8 scope:global align:4 +randomInt__7NSystemFi = .text:0x8011E75C; // type:function size:0x94 scope:global align:4 +getFreeHeap__7NSystemFv = .text:0x8011E7F0; // type:function size:0x34 scope:global align:4 +addHeap__5NHeapFP5NHeap = .text:0x8011E824; // type:function size:0x30 scope:weak align:4 +add__14NArray<5NHeap>FP5NHeap = .text:0x8011E854; // type:function size:0x38 scope:weak align:4 +contains__14NArray<5NNode>FP5NNode = .text:0x8011E88C; // type:function size:0x44 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeapi = .text:0x8011E8D0; // type:function size:0x54 scope:weak align:4 +set__14NArray<5NHeap>FiP5NHeap = .text:0x8011E924; // type:function size:0x3C scope:weak align:4 +remove__14NArray<5NHeap>Fii = .text:0x8011E960; // type:function size:0x13C scope:weak align:4 +remove__14NArray<5NHeap>Fi = .text:0x8011EA9C; // type:function size:0x50 scope:weak align:4 +insert__14NArray<5NHeap>FiP5NHeap = .text:0x8011EAEC; // type:function size:0x114 scope:weak align:4 +firstElement__14NArray<5NHeap>Fv = .text:0x8011EC00; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NHeap>Fv = .text:0x8011EC30; // type:function size:0x34 scope:weak align:4 +firstElement__14NArray<5NNode>Fv = .text:0x8011EC64; // type:function size:0x30 scope:weak align:4 +lastElement__14NArray<5NNode>Fv = .text:0x8011EC94; // type:function size:0x34 scope:weak align:4 +remove__14NArray<5NHeap>FP5NHeap = .text:0x8011ECC8; // type:function size:0x50 scope:weak align:4 +removeAll__14NArray<5NHeap>Fv = .text:0x8011ED18; // type:function size:0x34 scope:weak align:4 +add__14NArray<5NHeap>FiP5NHeap = .text:0x8011ED4C; // type:function size:0x50 scope:weak align:4 +indexOf__14NArray<5NHeap>FP5NHeap = .text:0x8011ED9C; // type:function size:0x30 scope:weak align:4 +contains__14NArray<5NHeap>FP5NHeap = .text:0x8011EDCC; // type:function size:0x44 scope:weak align:4 +__ct__14PaniMotionInfoFi = .text:0x8011EE10; // type:function size:0x34 scope:global align:4 +__ct__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EE44; // type:function size:0x30 scope:global align:4 +init__14PaniMotionInfoFiP19PaniAnimKeyListener = .text:0x8011EE74; // type:function size:0xC scope:global align:4 +__ct__10PaniMotionFi = .text:0x8011EE80; // type:function size:0x34 scope:global align:4 +init__10PaniMotionFii = .text:0x8011EEB4; // type:function size:0xC scope:global align:4 +__ct__15PaniMotionTableFi = .text:0x8011EEC0; // type:function size:0x6C scope:global align:4 +__ct__14PaniSoundTableFi = .text:0x8011EF2C; // type:function size:0x6C scope:global align:4 +__ct__12PaniAnimatorFv = .text:0x8011EF98; // type:function size:0x44 scope:global align:4 +init__12PaniAnimatorFP11AnimContextP7AnimMgrP15PaniMotionTable = .text:0x8011EFDC; // type:function size:0x6C scope:global align:4 +changeContext__12PaniAnimatorFP11AnimContext = .text:0x8011F048; // type:function size:0x8 scope:global align:4 +updateContext__12PaniAnimatorFv = .text:0x8011F050; // type:function size:0x28 scope:global align:4 +startMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F078; // type:function size:0x70 scope:global align:4 +finishMotion__12PaniAnimatorFR14PaniMotionInfo = .text:0x8011F0E8; // type:function size:0xB0 scope:global align:4 +animate__12PaniAnimatorFf = .text:0x8011F198; // type:function size:0x10C scope:global align:4 +checkConstantKeys__12PaniAnimatorFv = .text:0x8011F2A4; // type:function size:0xD0 scope:global align:4 +checkConstantKey__12PaniAnimatorFi = .text:0x8011F374; // type:function size:0x1C0 scope:global align:4 +checkEventKeys__12PaniAnimatorFff = .text:0x8011F534; // type:function size:0x124 scope:global align:4 +finishAnimation__12PaniAnimatorFv = .text:0x8011F658; // type:function size:0x54 scope:global align:4 +getKeyValueByKeyType__12PaniAnimatorFi = .text:0x8011F6AC; // type:function size:0xAC scope:global align:4 +__ct__15PaniPikiAnimMgrFv = .text:0x8011F758; // type:function size:0x3C scope:global align:4 +init__15PaniPikiAnimMgrFP7AnimMgrP11AnimContextP11AnimContextP15PaniMotionTable = .text:0x8011F794; // type:function size:0x7C scope:global align:4 +changeContext__15PaniPikiAnimMgrFP11AnimContextP11AnimContext = .text:0x8011F810; // type:function size:0x60 scope:global align:4 +startMotion__15PaniPikiAnimMgrFR14PaniMotionInfoR14PaniMotionInfo = .text:0x8011F870; // type:function size:0x58 scope:global align:4 +finishMotion__15PaniPikiAnimMgrFP19PaniAnimKeyListener = .text:0x8011F8C8; // type:function size:0x84 scope:global align:4 +updateAnimation__15PaniPikiAnimMgrFf = .text:0x8011F94C; // type:function size:0xC0 scope:global align:4 +updateContext__15PaniPikiAnimMgrFv = .text:0x8011FA0C; // type:function size:0x50 scope:global align:4 +createMotionTable__16PaniTekiAnimatorFv = .text:0x8011FA5C; // type:function size:0x268 scope:global align:4 +__ct__16PaniTekiAnimatorFv = .text:0x8011FCC4; // type:function size:0x3C scope:global align:4 +read__15ParaParametersIFR6Stream = .text:0x8011FD00; // type:function size:0x80 scope:global align:4 +write__15ParaParametersIFR6Stream = .text:0x8011FD80; // type:function size:0x80 scope:global align:4 +print__15ParaParametersIFv = .text:0x8011FE00; // type:function size:0x58 scope:global align:4 +read__15ParaParametersFFR6Stream = .text:0x8011FE58; // type:function size:0x80 scope:global align:4 +write__15ParaParametersFFR6Stream = .text:0x8011FED8; // type:function size:0x80 scope:global align:4 +print__15ParaParametersFFv = .text:0x8011FF58; // type:function size:0x58 scope:global align:4 +__ct__19ParaMultiParametersFiP18ParaParameterInfoIiP18ParaParameterInfoF = .text:0x8011FFB0; // type:function size:0xA8 scope:global align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x80120058; // type:function size:0x90 scope:weak align:4 +__ct__17ParaParametersFiP20ParaParameterInfo = .text:0x801200E8; // type:function size:0x90 scope:weak align:4 +input__19ParaMultiParametersFR19ParaMultiParameters = .text:0x80120178; // type:function size:0x74 scope:global align:4 +read__19ParaMultiParametersFR6Stream = .text:0x801201EC; // type:function size:0x60 scope:global align:4 +write__19ParaMultiParametersFR6Stream = .text:0x8012024C; // type:function size:0x60 scope:global align:4 +print__19ParaMultiParametersFv = .text:0x801202AC; // type:function size:0x50 scope:global align:4 +read__17ParaParametersFR6Stream = .text:0x801202FC; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x80120300; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80120304; // type:function size:0x4 scope:weak align:4 +read__17ParaParametersFR6Stream = .text:0x80120308; // type:function size:0x4 scope:weak align:4 +write__17ParaParametersFR6Stream = .text:0x8012030C; // type:function size:0x4 scope:weak align:4 +print__17ParaParametersFv = .text:0x80120310; // type:function size:0x4 scope:weak align:4 +__ct__14PcamMotionInfoFv = .text:0x80120314; // type:function size:0x4 scope:global align:4 +__ct__10PcamCameraFP6Camera = .text:0x80120318; // type:function size:0x134 scope:global align:4 +startCamera__10PcamCameraFP8Creature = .text:0x8012044C; // type:function size:0x28 scope:global align:4 +startCamera__10PcamCameraFP8Creatureii = .text:0x80120474; // type:function size:0x18C scope:global align:4 +add__17NArray<8Creature>FP8Creature = .text:0x80120600; // type:function size:0x38 scope:weak align:4 +makeCurrentPosition__10PcamCameraFf = .text:0x80120638; // type:function size:0xDC scope:global align:4 +parameterUpdated__10PcamCameraFv = .text:0x80120714; // type:function size:0x4CC scope:global align:4 +get__17ParaParametersFi = .text:0x80120BE0; // type:function size:0x10 scope:weak align:4 +control__10PcamCameraFR10Controller = .text:0x80120BF0; // type:function size:0x154 scope:global align:4 +control__10PcamCameraFR15PcamControlInfo = .text:0x80120D44; // type:function size:0x17C scope:global align:4 +startAttention__10PcamCameraFv = .text:0x80120EC0; // type:function size:0x2C scope:global align:4 +update__10PcamCameraFv = .text:0x80120EEC; // type:function size:0x110 scope:global align:4 +makePosture__10PcamCameraFv = .text:0x80120FFC; // type:function size:0x3A0 scope:global align:4 +makePolarRadius__10PcamCameraFv = .text:0x8012139C; // type:function size:0x48 scope:global align:4 +makeWatchObjectViewpoint__10PcamCameraFR9NVector3fR9NVector3f = .text:0x801213E4; // type:function size:0x228 scope:global align:4 +get__17NArray<8Creature>Fi = .text:0x8012160C; // type:function size:0x30 scope:weak align:4 +updateTimers__10PcamCameraFv = .text:0x8012163C; // type:function size:0x84 scope:global align:4 +startMotion__10PcamCameraFii = .text:0x801216C0; // type:function size:0x44 scope:global align:4 +startMotion__10PcamCameraFR14PcamMotionInfo = .text:0x80121704; // type:function size:0x7C scope:global align:4 +finishMotion__10PcamCameraFv = .text:0x80121780; // type:function size:0xD0 scope:global align:4 +getGoalDistance__10PcamCameraFv = .text:0x80121850; // type:function size:0x6C scope:global align:4 +getCurrentAngle__10PcamCameraFv = .text:0x801218BC; // type:function size:0x60 scope:global align:4 +getF__19ParaMultiParametersFi = .text:0x8012191C; // type:function size:0x14 scope:weak align:4 +getCurrentFov__10PcamCameraFv = .text:0x80121930; // type:function size:0x64 scope:global align:4 +getCurrentHomingSpeed__10PcamCameraFv = .text:0x80121994; // type:function size:0x18 scope:global align:4 +getCurrentBlur__10PcamCameraFv = .text:0x801219AC; // type:function size:0x60 scope:global align:4 +calcCurrentDistance__10PcamCameraFv = .text:0x80121A0C; // type:function size:0x5C scope:global align:4 +getCursorDirection__10PcamCameraFv = .text:0x80121A68; // type:function size:0x94 scope:global align:4 +outputTargetPosition__10PcamCameraFR9NVector3f = .text:0x80121AFC; // type:function size:0x20 scope:global align:4 +outputCursorPosition__10PcamCameraFR9NVector3f = .text:0x80121B1C; // type:function size:0x48 scope:global align:4 +outputFormationWatchpoint__10PcamCameraFP4NaviR9NVector3f = .text:0x80121B64; // type:function size:0x26C scope:global align:4 +outputTargetWatchpoint__10PcamCameraFR9NVector3f = .text:0x80121DD0; // type:function size:0xB4 scope:global align:4 +indexOf__17NArray<8Creature>FP8Creaturei = .text:0x80121E84; // type:function size:0x54 scope:weak align:4 +set__17NArray<8Creature>FiP8Creature = .text:0x80121ED8; // type:function size:0x3C scope:weak align:4 +remove__17NArray<8Creature>Fii = .text:0x80121F14; // type:function size:0x13C scope:weak align:4 +remove__17NArray<8Creature>Fi = .text:0x80122050; // type:function size:0x50 scope:weak align:4 +insert__17NArray<8Creature>FiP8Creature = .text:0x801220A0; // type:function size:0x114 scope:weak align:4 +firstElement__17NArray<8Creature>Fv = .text:0x801221B4; // type:function size:0x30 scope:weak align:4 +lastElement__17NArray<8Creature>Fv = .text:0x801221E4; // type:function size:0x34 scope:weak align:4 +remove__17NArray<8Creature>FP8Creature = .text:0x80122218; // type:function size:0x50 scope:weak align:4 +removeAll__17NArray<8Creature>Fv = .text:0x80122268; // type:function size:0x34 scope:weak align:4 +add__17NArray<8Creature>FiP8Creature = .text:0x8012229C; // type:function size:0x50 scope:weak align:4 +indexOf__17NArray<8Creature>FP8Creature = .text:0x801222EC; // type:function size:0x30 scope:weak align:4 +contains__17NArray<8Creature>FP8Creature = .text:0x8012231C; // type:function size:0x44 scope:weak align:4 +__ct__17PcamCameraManagerFP6CameraP10Controller = .text:0x80122360; // type:function size:0x1F8 scope:global align:4 +startCamera__17PcamCameraManagerFP8Creature = .text:0x80122558; // type:function size:0x24 scope:global align:4 +update__17PcamCameraManagerFv = .text:0x8012257C; // type:function size:0x50 scope:global align:4 +updateVibrationEvent__17PcamCameraManagerFv = .text:0x801225CC; // type:function size:0x98 scope:global align:4 +update__9PeveEventFv = .text:0x80122664; // type:function size:0x38 scope:weak align:4 +update__13PeveConditionFv = .text:0x8012269C; // type:function size:0x4 scope:weak align:4 +finish__9PeveEventFv = .text:0x801226A0; // type:function size:0x4 scope:weak align:4 +isFinished__9PeveEventFv = .text:0x801226A4; // type:function size:0x40 scope:weak align:4 +startVibrationEvent__17PcamCameraManagerFiR8Vector3f = .text:0x801226E4; // type:function size:0x148 scope:global align:4 +reset__9PeveEventFv = .text:0x8012282C; // type:function size:0x38 scope:weak align:4 +reset__13PeveConditionFv = .text:0x80122864; // type:function size:0x4 scope:weak align:4 +outputNaviPosition__17PcamCameraManagerFR8Vector3f = .text:0x80122868; // type:function size:0x4C scope:global align:4 +__ct__22PcamLongVibrationEventFP10PcamCamera = .text:0x801228B4; // type:function size:0xCC scope:global align:4 +makePcamLongVibrationEvent__22PcamLongVibrationEventFffff = .text:0x80122980; // type:function size:0xD8 scope:global align:4 +__ct__18PcamVibrationEventFP10PcamCamera = .text:0x80122A58; // type:function size:0x78 scope:global align:4 +makePcamVibrationEvent__18PcamVibrationEventFv = .text:0x80122AD0; // type:function size:0x84 scope:global align:4 +__ct__15PcamDamageEventFP10PcamCamera = .text:0x80122B54; // type:function size:0x78 scope:global align:4 +makePcamDamageEvent__15PcamDamageEventFv = .text:0x80122BCC; // type:function size:0x70 scope:global align:4 +update__19PcamRandomMoveEventFv = .text:0x80122C3C; // type:function size:0x290 scope:global align:4 +__ct__22PcamSideVibrationEventFP10PcamCamera = .text:0x80122ECC; // type:function size:0xC4 scope:global align:4 +makePcamSideVibrationEvent__22PcamSideVibrationEventFv = .text:0x80122F90; // type:function size:0x70 scope:global align:4 +update__22PcamSideVibrationEventFv = .text:0x80123000; // type:function size:0x98 scope:global align:4 +finish__22PcamSideVibrationEventFv = .text:0x80123098; // type:function size:0x10 scope:global align:4 +setEventOption__9PeveEventFi = .text:0x801230A8; // type:function size:0x10 scope:weak align:4 +clearEventOption__9PeveEventFi = .text:0x801230B8; // type:function size:0x10 scope:weak align:4 +setEventOptions__9PeveEventFi = .text:0x801230C8; // type:function size:0x8 scope:weak align:4 +__ct__20PcamCameraParametersFv = .text:0x801230D0; // type:function size:0xA78 scope:global align:4 +__ct__18ParaParameterInfoFFv = .text:0x80123B48; // type:function size:0x18 scope:weak align:4 +__ct__18ParaParameterInfoIFv = .text:0x80123B60; // type:function size:0x14 scope:weak align:4 +read__20PcamCameraParametersFR18RandomAccessStream = .text:0x80123B74; // type:function size:0xD8 scope:global align:4 +__ct__13PeveConditionFv = .text:0x80123C4C; // type:function size:0x10 scope:global align:4 +__ct__9PeveEventFi = .text:0x80123C5C; // type:function size:0x48 scope:global align:4 +reset__17PeveParallelEventFv = .text:0x80123CA4; // type:function size:0x84 scope:global align:4 +update__17PeveParallelEventFv = .text:0x80123D28; // type:function size:0x84 scope:global align:4 +isFinished__17PeveParallelEventFv = .text:0x80123DAC; // type:function size:0x7C scope:global align:4 +__ct__15PeveSerialEventFi = .text:0x80123E28; // type:function size:0x54 scope:global align:4 +reset__15PeveSerialEventFv = .text:0x80123E7C; // type:function size:0x68 scope:global align:4 +update__15PeveSerialEventFv = .text:0x80123EE4; // type:function size:0xCC scope:global align:4 +isFinished__15PeveSerialEventFv = .text:0x80123FB0; // type:function size:0x74 scope:global align:4 +__ct__19PeveCameraPostureIOFv = .text:0x80124024; // type:function size:0x50 scope:global align:4 +construct__19PeveCameraPostureIOFP10PcamCamera = .text:0x80124074; // type:function size:0x8 scope:global align:4 +__ct__19PeveClampVector3fIOFv = .text:0x8012407C; // type:function size:0x60 scope:global align:4 +construct__19PeveClampVector3fIOFv = .text:0x801240DC; // type:function size:0xC scope:global align:4 +input__19PeveClampVector3fIOFR9NVector3f = .text:0x801240E8; // type:function size:0xDC scope:global align:4 +output__16NVector3fIOClassFR9NVector3f = .text:0x801241C4; // type:function size:0x1C scope:weak align:4 +input__16NVector3fIOClassFR9NVector3f = .text:0x801241E0; // type:function size:0x1C scope:weak align:4 +input__22PeveCreaturePositionIOFR9NVector3f = .text:0x801241FC; // type:function size:0x20 scope:weak align:4 +output__22PeveCreaturePositionIOFR9NVector3f = .text:0x8012421C; // type:function size:0x20 scope:weak align:4 +input__19PeveCameraPostureIOFR10NPosture3D = .text:0x8012423C; // type:function size:0x5C scope:weak align:4 +output__19PeveCameraPostureIOFR10NPosture3D = .text:0x80124298; // type:function size:0x5C scope:weak align:4 +input__22PeveCameraWatchpointIOFR9NVector3f = .text:0x801242F4; // type:function size:0x20 scope:weak align:4 +output__22PeveCameraWatchpointIOFR9NVector3f = .text:0x80124314; // type:function size:0x20 scope:weak align:4 +input__21PeveCameraViewpointIOFR9NVector3f = .text:0x80124334; // type:function size:0x20 scope:weak align:4 +output__21PeveCameraViewpointIOFR9NVector3f = .text:0x80124354; // type:function size:0x20 scope:weak align:4 +__ct__17PeveTimeConditionFv = .text:0x80124374; // type:function size:0x48 scope:global align:4 +construct__17PeveTimeConditionFf = .text:0x801243BC; // type:function size:0x10 scope:global align:4 +update__21PeveDistanceConditionFv = .text:0x801243CC; // type:function size:0x10C scope:global align:4 +update__24PeveComparisonYConditionFv = .text:0x801244D8; // type:function size:0xA0 scope:global align:4 +reset__24PeveComparisonYConditionFv = .text:0x80124578; // type:function size:0xC scope:weak align:4 +isMet__20PeveBooleanConditionFv = .text:0x80124584; // type:function size:0x8 scope:weak align:4 +reset__21PeveDistanceConditionFv = .text:0x8012458C; // type:function size:0xC scope:weak align:4 +isMet__17PeveTimeConditionFv = .text:0x80124598; // type:function size:0x1C scope:weak align:4 +reset__17PeveTimeConditionFv = .text:0x801245B4; // type:function size:0xC scope:weak align:4 +update__17PeveTimeConditionFv = .text:0x801245C0; // type:function size:0x18 scope:weak align:4 +isMet__23PeveDependenceConditionFv = .text:0x801245D8; // type:function size:0x30 scope:weak align:4 +reset__23PeveDependenceConditionFv = .text:0x80124608; // type:function size:0x4 scope:weak align:4 +update__23PeveDependenceConditionFv = .text:0x8012460C; // type:function size:0x4 scope:weak align:4 +__ct__21PeveAccelerationEventFv = .text:0x80124610; // type:function size:0x40 scope:global align:4 +makeAccelerationEvent__21PeveAccelerationEventFP13PeveConditionP11NVector3fIOP11NVector3fIOP11NVector3fIO = .text:0x80124650; // type:function size:0x14 scope:global align:4 +update__21PeveAccelerationEventFv = .text:0x80124664; // type:function size:0x17C scope:global align:4 +__ct__17PeveParabolaEventFv = .text:0x801247E0; // type:function size:0x74 scope:global align:4 +makeParabolaEvent__17PeveParabolaEventFP13PeveConditionP11NVector3fIOR9NVector3fff = .text:0x80124854; // type:function size:0xB0 scope:global align:4 +makeHorizontalSinWaveEvent__26PeveHorizontalSinWaveEventFP13PeveConditionP11NVector3fIO9NVector3fffff = .text:0x80124904; // type:function size:0x34 scope:global align:4 +reset__26PeveHorizontalSinWaveEventFv = .text:0x80124938; // type:function size:0x4C scope:global align:4 +update__26PeveHorizontalSinWaveEventFv = .text:0x80124984; // type:function size:0x118 scope:global align:4 +__ct__19PeveCircleMoveEventFv = .text:0x80124A9C; // type:function size:0x5C scope:global align:4 +makeCircleMoveEvent__19PeveCircleMoveEventFfP11NVector3fIOP11NVector3fIOffff = .text:0x80124AF8; // type:function size:0x28 scope:global align:4 +reset__19PeveCircleMoveEventFv = .text:0x80124B20; // type:function size:0x50 scope:global align:4 +update__19PeveCircleMoveEventFv = .text:0x80124B70; // type:function size:0x134 scope:global align:4 +outputPosition__19PeveCircleMoveEventFR8Vector3f = .text:0x80124CA4; // type:function size:0xAC scope:global align:4 +calcAngle__19PeveCircleMoveEventFv = .text:0x80124D50; // type:function size:0x84 scope:global align:4 +reset__22PeveFunctionCurveEventFv = .text:0x80124DD4; // type:function size:0xC scope:global align:4 +update__22PeveFunctionCurveEventFv = .text:0x80124DE0; // type:function size:0xC0 scope:global align:4 +update__23PeveHomingPositionEventFv = .text:0x80124EA0; // type:function size:0x124 scope:global align:4 +reset__22PeveInterpolationEventFv = .text:0x80124FC4; // type:function size:0xEC scope:global align:4 +update__22PeveInterpolationEventFv = .text:0x801250B0; // type:function size:0x17C scope:global align:4 +reset__13PeveMoveEventFv = .text:0x8012522C; // type:function size:0x5C scope:global align:4 +__ct__18PeveVibrationEventFv = .text:0x80125288; // type:function size:0x9C scope:global align:4 +makeVibrationEvent__18PeveVibrationEventFfP12NPosture3DIOR9NVector3ffff = .text:0x80125324; // type:function size:0x88 scope:global align:4 +update__18PeveVibrationEventFv = .text:0x801253AC; // type:function size:0x100 scope:global align:4 +isFinished__22PeveInterpolationEventFv = .text:0x801254AC; // type:function size:0x24 scope:weak align:4 +setStartTime__22PeveInterpolationEventFf = .text:0x801254D0; // type:function size:0x8 scope:weak align:4 +getStartTime__22PeveInterpolationEventFv = .text:0x801254D8; // type:function size:0x8 scope:weak align:4 +setPeriod__22PeveInterpolationEventFf = .text:0x801254E0; // type:function size:0x8 scope:weak align:4 +getPeriod__22PeveInterpolationEventFv = .text:0x801254E8; // type:function size:0x8 scope:weak align:4 +setTime__22PeveInterpolationEventFf = .text:0x801254F0; // type:function size:0x8 scope:weak align:4 +getTime__22PeveInterpolationEventFv = .text:0x801254F8; // type:function size:0x8 scope:weak align:4 +getEndTime__22PeveInterpolationEventFv = .text:0x80125500; // type:function size:0x10 scope:weak align:4 +__ct__15TaiSerialActionFii = .text:0x80125510; // type:function size:0x5C scope:global align:4 +start__15TaiSerialActionFR4Teki = .text:0x8012556C; // type:function size:0x44 scope:global align:4 +start__9TaiActionFR4Teki = .text:0x801255B0; // type:function size:0x4 scope:weak align:4 +finish__15TaiSerialActionFR4Teki = .text:0x801255B4; // type:function size:0x80 scope:global align:4 +finish__9TaiActionFR4Teki = .text:0x80125634; // type:function size:0x4 scope:weak align:4 +act__15TaiSerialActionFR4Teki = .text:0x80125638; // type:function size:0xA8 scope:global align:4 +act__9TaiActionFR4Teki = .text:0x801256E0; // type:function size:0x8 scope:weak align:4 +actByEvent__15TaiSerialActionFR9TekiEvent = .text:0x801256E8; // type:function size:0xB4 scope:global align:4 +actByEvent__9TaiActionFR9TekiEvent = .text:0x8012579C; // type:function size:0x8 scope:weak align:4 +__ct__8TaiStateFi = .text:0x801257A4; // type:function size:0x4C scope:global align:4 +start__8TaiStateFR4Teki = .text:0x801257F0; // type:function size:0x80 scope:global align:4 +finish__8TaiStateFR4Teki = .text:0x80125870; // type:function size:0x80 scope:global align:4 +act__8TaiStateFR4Teki = .text:0x801258F0; // type:function size:0xEC scope:global align:4 +hasNextState__9TaiActionFv = .text:0x801259DC; // type:function size:0x20 scope:weak align:4 +eventPerformed__8TaiStateFR9TekiEvent = .text:0x801259FC; // type:function size:0xF4 scope:global align:4 +__ct__11TaiStrategyFii = .text:0x80125AF0; // type:function size:0x64 scope:global align:4 +init__11TaiStrategyFii = .text:0x80125B54; // type:function size:0x4C scope:global align:4 +start__11TaiStrategyFR4Teki = .text:0x80125BA0; // type:function size:0x14 scope:global align:4 +act__11TaiStrategyFR4Teki = .text:0x80125BB4; // type:function size:0xCC scope:global align:4 +eventPerformed__11TaiStrategyFR9TekiEvent = .text:0x80125C80; // type:function size:0x90 scope:global align:4 +act__27TaiAttackableNaviPikiActionFR4Teki = .text:0x80125D10; // type:function size:0xAC scope:global align:4 +act__23TaiAttackableNaviActionFR4Teki = .text:0x80125DBC; // type:function size:0x8C scope:global align:4 +act__23TaiAttackablePikiActionFR4Teki = .text:0x80125E48; // type:function size:0xB8 scope:global align:4 +start__28TaiAnimationSwallowingActionFR4Teki = .text:0x80125F00; // type:function size:0x40 scope:global align:4 +setTekiOption__5BTekiFi = .text:0x80125F40; // type:function size:0x10 scope:weak align:4 +act__28TaiAnimationSwallowingActionFR4Teki = .text:0x80125F50; // type:function size:0x660 scope:global align:4 +clearTekiOption__5BTekiFi = .text:0x801265B0; // type:function size:0x10 scope:weak align:4 +getF__15TekiPersonalityFi = .text:0x801265C0; // type:function size:0x18 scope:weak align:4 +getF__14TekiParametersFi = .text:0x801265D8; // type:function size:0x18 scope:weak align:4 +finish__28TaiAnimationSwallowingActionFR4Teki = .text:0x801265F0; // type:function size:0x12C scope:global align:4 +actByEvent__16TaiBangingActionFR9TekiEvent = .text:0x8012671C; // type:function size:0x88 scope:global align:4 +act__14TaiFlickActionFR4Teki = .text:0x801267A4; // type:function size:0xD4 scope:global align:4 +act__20TaiTargetStickActionFR4Teki = .text:0x80126878; // type:function size:0x28 scope:global align:4 +start__17TaiFlickingActionFR4Teki = .text:0x801268A0; // type:function size:0x44 scope:global align:4 +finish__17TaiFlickingActionFR4Teki = .text:0x801268E4; // type:function size:0x34 scope:global align:4 +act__17TaiFlickingActionFR4Teki = .text:0x80126918; // type:function size:0x7C scope:global align:4 +act__22TaiFlickingUpperActionFR4Teki = .text:0x80126994; // type:function size:0x58 scope:global align:4 +satisfy__16TekiAndConditionFP8Creature = .text:0x801269EC; // type:function size:0x84 scope:weak align:4 +satisfy__16TekiNotConditionFP8Creature = .text:0x80126A70; // type:function size:0x3C scope:weak align:4 +satisfy__13TekiConditionFP8Creature = .text:0x80126AAC; // type:function size:0x8 scope:weak align:4 +start__20TaiActionStateActionFR4Teki = .text:0x80126AB4; // type:function size:0xC scope:global align:4 +act__20TaiActionStateActionFR4Teki = .text:0x80126AC0; // type:function size:0x20 scope:global align:4 +start__18TaiSetOptionActionFR4Teki = .text:0x80126AE0; // type:function size:0x60 scope:global align:4 +start__18TaiPlaySoundActionFR4Teki = .text:0x80126B40; // type:function size:0x38 scope:global align:4 +start__18TaiStopSoundActionFR4Teki = .text:0x80126B78; // type:function size:0x38 scope:global align:4 +start__30TaiTypeNaviWatchResultOnActionFR4Teki = .text:0x80126BB0; // type:function size:0x44 scope:global align:4 +start__26TaiNaviWatchResultOnActionFR4Teki = .text:0x80126BF4; // type:function size:0x38 scope:global align:4 +__ct__19TaiChappySoundTableFv = .text:0x80126C2C; // type:function size:0x84 scope:global align:4 +__ct__19TaiChappyParametersFv = .text:0x80126CB0; // type:function size:0x3A4 scope:global align:4 +__ct__24TaiBlackChappyParametersFv = .text:0x80127054; // type:function size:0x3A0 scope:global align:4 +__ct__20TaiCatfishSoundTableFv = .text:0x801273F4; // type:function size:0x84 scope:global align:4 +__ct__20TaiCatfishParametersFv = .text:0x80127478; // type:function size:0x39C scope:global align:4 +__ct__17TaiChappyStrategyFP14TekiParameters = .text:0x80127814; // type:function size:0x156C scope:global align:4 +act__18TaiChappyCryActionFR4Teki = .text:0x80128D80; // type:function size:0x148 scope:global align:4 +actByEvent__22TaiChappySmashedActionFR9TekiEvent = .text:0x80128EC8; // type:function size:0x48 scope:global align:4 +__ct__24TaiChappyLegEffectActionFf = .text:0x80128F10; // type:function size:0x58 scope:global align:4 +setType__24TaiChappyLegEffectActionFR8Vector3fii = .text:0x80128F68; // type:function size:0x90 scope:global align:4 +satisfy__15TekiOrConditionFP8Creature = .text:0x80128FF8; // type:function size:0x84 scope:weak align:4 +act__13TaiOnceActionFR4Teki = .text:0x8012907C; // type:function size:0x8 scope:weak align:4 +start__12TaiAndActionFR4Teki = .text:0x80129084; // type:function size:0x60 scope:weak align:4 +finish__12TaiAndActionFR4Teki = .text:0x801290E4; // type:function size:0x60 scope:weak align:4 +act__12TaiAndActionFR4Teki = .text:0x80129144; // type:function size:0x88 scope:weak align:4 +__ct__19TaiCollecSoundTableFv = .text:0x801291CC; // type:function size:0x84 scope:global align:4 +__ct__19TaiCollecParametersFv = .text:0x80129250; // type:function size:0x484 scope:global align:4 +__ct__17TaiCollecStrategyFP14TekiParameters = .text:0x801296D4; // type:function size:0x179C scope:global align:4 +start__17TaiCollecStrategyFR4Teki = .text:0x8012AE70; // type:function size:0x168 scope:global align:4 +draw__17TaiCollecStrategyFR4TekiR8Graphics = .text:0x8012AFD8; // type:function size:0x110 scope:global align:4 +satisfy__31TekiCollecTargetPelletConditionFP8Creature = .text:0x8012B0E8; // type:function size:0x1F0 scope:global align:4 +start__25TaiCollecImpassableActionFR4Teki = .text:0x8012B2D8; // type:function size:0x40 scope:global align:4 +act__25TaiCollecImpassableActionFR4Teki = .text:0x8012B318; // type:function size:0xAC scope:global align:4 +resetPosition__25TaiCollecImpassableActionFR4Teki = .text:0x8012B3C4; // type:function size:0x30 scope:global align:4 +act__28TaiCollecLetGoOfPelletActionFR4Teki = .text:0x8012B3F4; // type:function size:0x70 scope:global align:4 +actByEvent__28TaiCollecLetGoOfPelletActionFR9TekiEvent = .text:0x8012B464; // type:function size:0x74 scope:global align:4 +act__27TaiCollecTargetPelletActionFR4Teki = .text:0x8012B4D8; // type:function size:0x158 scope:global align:4 +act__38TaiCollecVisibleHeightPelletLostActionFR4Teki = .text:0x8012B630; // type:function size:0xE0 scope:global align:4 +act__43TaiCollecVisibleHeightPelletLostTimerActionFR4Teki = .text:0x8012B710; // type:function size:0x64 scope:global align:4 +act__25TaiCollecPelletLostActionFR4Teki = .text:0x8012B774; // type:function size:0xFC scope:global align:4 +act__32TaiCollecPelletDisappearedActionFR4Teki = .text:0x8012B870; // type:function size:0xBC scope:global align:4 +act__25TaiCollecHoldPelletActionFR4Teki = .text:0x8012B92C; // type:function size:0x110 scope:global align:4 +start__23TaiCollecCatchingActionFR4Teki = .text:0x8012BA3C; // type:function size:0x50 scope:global align:4 +finish__23TaiCollecCatchingActionFR4Teki = .text:0x8012BA8C; // type:function size:0x34 scope:global align:4 +start__23TaiCollecCarryingActionFR4Teki = .text:0x8012BAC0; // type:function size:0x34 scope:global align:4 +finish__23TaiCollecCarryingActionFR4Teki = .text:0x8012BAF4; // type:function size:0x34 scope:global align:4 +act__23TaiCollecCarryingActionFR4Teki = .text:0x8012BB28; // type:function size:0xB8 scope:global align:4 +start__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012BBE0; // type:function size:0x28 scope:global align:4 +finish__27TaiCollecBeingDraggedActionFR4Teki = .text:0x8012BC08; // type:function size:0x28 scope:global align:4 +act__26TaiCollecWinCarryingActionFR4Teki = .text:0x8012BC30; // type:function size:0xA0 scope:global align:4 +act__29TaiCollecDefeatCarryingActionFR4Teki = .text:0x8012BCD0; // type:function size:0xA0 scope:global align:4 +act__18TaiCollecPutActionFR4Teki = .text:0x8012BD70; // type:function size:0x15C scope:global align:4 +start__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012BECC; // type:function size:0xE0 scope:global align:4 +finish__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012BFAC; // type:function size:0x40 scope:global align:4 +act__28TaiCollecPuttingPelletActionFR4Teki = .text:0x8012BFEC; // type:function size:0xBC scope:global align:4 +start__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012C0A8; // type:function size:0x44 scope:global align:4 +act__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012C0EC; // type:function size:0x214 scope:global align:4 +makePositionRoute__29TaiCollecCarryingToNestActionFR4Teki = .text:0x8012C300; // type:function size:0x54 scope:global align:4 +act__30TaiCollecRouteImpassableActionFR4Teki = .text:0x8012C354; // type:function size:0xA0 scope:global align:4 +start__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012C3F4; // type:function size:0x14 scope:global align:4 +act__25TaiCollecRoundCarryActionFR4Teki = .text:0x8012C408; // type:function size:0xE8 scope:global align:4 +act__39TaiCollecPelletStartContainerizedActionFR4Teki = .text:0x8012C4F0; // type:function size:0x64 scope:global align:4 +act__40TaiCollecPelletFinishContainerizedActionFR4Teki = .text:0x8012C554; // type:function size:0x58 scope:global align:4 +act__26TaiCollecDeadFallingActionFR4Teki = .text:0x8012C5AC; // type:function size:0x78 scope:global align:4 +act__22TaiCollecFallingActionFR4Teki = .text:0x8012C624; // type:function size:0x50 scope:global align:4 +act__21TaiCollecGetOutActionFR4Teki = .text:0x8012C674; // type:function size:0x6C scope:global align:4 +__ct__24TaiCollecLegEffectActionFf = .text:0x8012C6E0; // type:function size:0x58 scope:global align:4 +setType__24TaiCollecLegEffectActionFR8Vector3fii = .text:0x8012C738; // type:function size:0x90 scope:global align:4 +__ct__19TaiHollecParametersFv = .text:0x8012C7C8; // type:function size:0x88 scope:global align:4 +__ct__17TaiHollecStrategyFP14TekiParameters = .text:0x8012C850; // type:function size:0xC4 scope:global align:4 +draw__17TaiHollecStrategyFR4TekiR8Graphics = .text:0x8012C914; // type:function size:0x58 scope:global align:4 +start__17TaiHollecStrategyFR4Teki = .text:0x8012C96C; // type:function size:0x8C scope:global align:4 +start__19TaiDependenceActionFR4Teki = .text:0x8012C9F8; // type:function size:0x60 scope:weak align:4 +finish__19TaiDependenceActionFR4Teki = .text:0x8012CA58; // type:function size:0x60 scope:weak align:4 +act__19TaiDependenceActionFR4Teki = .text:0x8012CAB8; // type:function size:0x70 scope:weak align:4 +actByEvent__19TaiDependenceActionFR9TekiEvent = .text:0x8012CB28; // type:function size:0x70 scope:weak align:4 +actByEvent__15TaiBounceActionFR9TekiEvent = .text:0x8012CB98; // type:function size:0x14 scope:global align:4 +actByEvent__24TaiGroundCollisionActionFR9TekiEvent = .text:0x8012CBAC; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiWallCollisionActionFR9TekiEvent = .text:0x8012CBC0; // type:function size:0x14 scope:global align:4 +actByEvent__26TaiCreatureCollisionActionFR9TekiEvent = .text:0x8012CBD4; // type:function size:0x14 scope:global align:4 +actByEvent__22TaiPikiCollisionActionFR9TekiEvent = .text:0x8012CBE8; // type:function size:0x3C scope:global align:4 +actByEvent__22TaiNaviCollisionActionFR9TekiEvent = .text:0x8012CC24; // type:function size:0x3C scope:global align:4 +actByEvent__26TaiTekiTypeCollisionActionFR9TekiEvent = .text:0x8012CC60; // type:function size:0x54 scope:global align:4 +start__15TaiEffectActionFR4Teki = .text:0x8012CCB4; // type:function size:0x38 scope:global align:4 +start__34TaiStartGenParticleGeneratorActionFR4Teki = .text:0x8012CCEC; // type:function size:0x2C scope:global align:4 +start__33TaiStopGenParticleGeneratorActionFR4Teki = .text:0x8012CD18; // type:function size:0x2C scope:global align:4 +__ct__20TaiJointEffectActionFfiiiii = .text:0x8012CD44; // type:function size:0x8C scope:global align:4 +setType__20TaiJointEffectActionFR8Vector3fii = .text:0x8012CDD0; // type:function size:0x4 scope:global align:4 +__ct__19TaiIwagonParametersFv = .text:0x8012CDD4; // type:function size:0x108 scope:global align:4 +__ct__19TaiIwagonSoundTableFv = .text:0x8012CEDC; // type:function size:0x84 scope:global align:4 +__ct__17TaiIwagonStrategyFP14TekiParameters = .text:0x8012CF60; // type:function size:0x4C0 scope:global align:4 +start__17TaiIwagonStrategyFR4Teki = .text:0x8012D420; // type:function size:0x114 scope:global align:4 +act__25TaiIwagonDustEffectActionFR4Teki = .text:0x8012D534; // type:function size:0x70 scope:global align:4 +start__22TaiIwagonRollingActionFR4Teki = .text:0x8012D5A4; // type:function size:0x1C scope:global align:4 +act__22TaiIwagonRollingActionFR4Teki = .text:0x8012D5C0; // type:function size:0x20 scope:global align:4 +__ct__19TaiIwagenParametersFv = .text:0x8012D5E0; // type:function size:0x118 scope:global align:4 +__ct__17TaiIwagenStrategyFP14TekiParameters = .text:0x8012D6F8; // type:function size:0x210 scope:global align:4 +draw__17TaiIwagenStrategyFR4TekiR8Graphics = .text:0x8012D908; // type:function size:0x7C scope:global align:4 +start__17TaiIwagenStrategyFR4Teki = .text:0x8012D984; // type:function size:0x44 scope:global align:4 +start__23TaiIwagenShootingActionFR4Teki = .text:0x8012D9C8; // type:function size:0x78 scope:global align:4 +act__23TaiIwagenShootingActionFR4Teki = .text:0x8012DA40; // type:function size:0x198 scope:global align:4 +act__22TaiVisibleTargetActionFR4Teki = .text:0x8012DBD8; // type:function size:0x50 scope:global align:4 +act__22TaiContactTargetActionFR4Teki = .text:0x8012DC28; // type:function size:0x50 scope:global align:4 +act__23TaiSeparateTargetActionFR4Teki = .text:0x8012DC78; // type:function size:0x50 scope:global align:4 +act__19TaiTargetLostActionFR4Teki = .text:0x8012DCC8; // type:function size:0x74 scope:global align:4 +act__25TaiOutsideTerritoryActionFR4Teki = .text:0x8012DD3C; // type:function size:0xBC scope:global align:4 +act__24TaiInsideTerritoryActionFR4Teki = .text:0x8012DDF8; // type:function size:0xC0 scope:global align:4 +act__30TaiTargetVisibleNaviPikiActionFR4Teki = .text:0x8012DEB8; // type:function size:0xAC scope:global align:4 +act__26TaiTargetVisibleNaviActionFR4Teki = .text:0x8012DF64; // type:function size:0xF0 scope:global align:4 +act__27TaiHasStickersInMouthActionFR4Teki = .text:0x8012E054; // type:function size:0x128 scope:global align:4 +act__26TaiHasStickersOnBodyActionFR4Teki = .text:0x8012E17C; // type:function size:0x128 scope:global align:4 +__ct__19TaiKinokoSoundTableFv = .text:0x8012E2A4; // type:function size:0x84 scope:global align:4 +__ct__19TaiKinokoParametersFv = .text:0x8012E328; // type:function size:0x518 scope:global align:4 +__ct__17TaiKinokoStrategyFP14TekiParameters = .text:0x8012E840; // type:function size:0x1298 scope:global align:4 +start__17TaiKinokoStrategyFR4Teki = .text:0x8012FAD8; // type:function size:0xB0 scope:global align:4 +draw__17TaiKinokoStrategyFR4TekiR8Graphics = .text:0x8012FB88; // type:function size:0x1B4 scope:global align:4 +createEffect__17TaiKinokoStrategyFR4Tekii = .text:0x8012FD3C; // type:function size:0x124 scope:global align:4 +start__26TaiKinokoTurningOverActionFR4Teki = .text:0x8012FE60; // type:function size:0x78 scope:global align:4 +act__29TaiKinokoChargingSporesActionFR4Teki = .text:0x8012FED8; // type:function size:0x54 scope:global align:4 +start__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x8012FF2C; // type:function size:0x4 scope:global align:4 +act__32TaiKinokoDischargingSporesActionFR4Teki = .text:0x8012FF30; // type:function size:0x160 scope:global align:4 +act__35TaiKinokoTerritoryRunningAwayActionFR4Teki = .text:0x80130090; // type:function size:0x3D0 scope:global align:4 +__ct__24TaiKinokoLegEffectActionFf = .text:0x80130460; // type:function size:0x58 scope:global align:4 +setType__24TaiKinokoLegEffectActionFR8Vector3fii = .text:0x801304B8; // type:function size:0xB0 scope:global align:4 +start__12TaiNotActionFR4Teki = .text:0x80130568; // type:function size:0x30 scope:weak align:4 +finish__12TaiNotActionFR4Teki = .text:0x80130598; // type:function size:0x30 scope:weak align:4 +act__12TaiNotActionFR4Teki = .text:0x801305C8; // type:function size:0x3C scope:weak align:4 +start__20TaiSendMessageActionFR4Teki = .text:0x80130604; // type:function size:0x2C scope:global align:4 +act__23TaiKeySendMessageActionFR4Teki = .text:0x80130630; // type:function size:0x40 scope:global align:4 +__ct__20TaiMizigenParametersFv = .text:0x80130670; // type:function size:0xB0 scope:global align:4 +__ct__18TaiMizigenStrategyFP14TekiParameters = .text:0x80130720; // type:function size:0x17C scope:global align:4 +start__18TaiMizigenStrategyFR4Teki = .text:0x8013089C; // type:function size:0x8C scope:global align:4 +start__26TaiMizigenGeneratingActionFR4Teki = .text:0x80130928; // type:function size:0x164 scope:global align:4 +act__26TaiMizigenGeneratingActionFR4Teki = .text:0x80130A8C; // type:function size:0x8 scope:global align:4 +act__28TaiMizigenNaviApprouchActionFR4Teki = .text:0x80130A94; // type:function size:0xB8 scope:global align:4 +__ct__20TaiMizinkoParametersFv = .text:0x80130B4C; // type:function size:0x380 scope:global align:4 +__ct__20TaiMizinkoSoundTableFv = .text:0x80130ECC; // type:function size:0x84 scope:global align:4 +__ct__18TaiMizinkoStrategyFP14TekiParameters = .text:0x80130F50; // type:function size:0x8B4 scope:global align:4 +start__18TaiMizinkoStrategyFR4Teki = .text:0x80131804; // type:function size:0xA8 scope:global align:4 +draw__18TaiMizinkoStrategyFR4TekiR8Graphics = .text:0x801318AC; // type:function size:0x10C scope:global align:4 +hasWater__18TaiMizinkoStrategyFR4Teki = .text:0x801319B8; // type:function size:0x14 scope:global align:4 +act__24TaiMizinkoCryTimerActionFR4Teki = .text:0x801319CC; // type:function size:0x7C scope:global align:4 +start__27TaiMizinkoMovingTimerActionFR4Teki = .text:0x80131A48; // type:function size:0x50 scope:global align:4 +act__22TaiMizinkoFadingActionFR4Teki = .text:0x80131A98; // type:function size:0x88 scope:global align:4 +start__21TaiMizinkoGoingActionFR4Teki = .text:0x80131B20; // type:function size:0x3C4 scope:global align:4 +start__22TaiMizinkoComingActionFR4Teki = .text:0x80131EE4; // type:function size:0x51C scope:global align:4 +act__25TaiMizinkoDropWaterActionFR4Teki = .text:0x80132400; // type:function size:0x104 scope:global align:4 +start__23TaiMizinkoWaitingActionFR4Teki = .text:0x80132504; // type:function size:0xA8 scope:global align:4 +start__26TaiMizinkoFlyingAwayActionFR4Teki = .text:0x801325AC; // type:function size:0x178 scope:global align:4 +start__15TaiMotionActionFR4Teki = .text:0x80132724; // type:function size:0x38 scope:global align:4 +act__15TaiMotionActionFR4Teki = .text:0x8013275C; // type:function size:0x20 scope:global align:4 +start__25TaiContinuousMotionActionFR4Teki = .text:0x8013277C; // type:function size:0xFC scope:global align:4 +act__25TaiContinuousMotionActionFR4Teki = .text:0x80132878; // type:function size:0x74 scope:global align:4 +motionStarted__25TaiContinuousMotionActionFR4Teki = .text:0x801328EC; // type:function size:0x24 scope:global align:4 +start__21TaiFinishMotionActionFR4Teki = .text:0x80132910; // type:function size:0x4C scope:global align:4 +act__21TaiAnimationKeyActionFR4Teki = .text:0x8013295C; // type:function size:0x20 scope:global align:4 +start__18TaiCountLoopActionFR4Teki = .text:0x8013297C; // type:function size:0xC scope:global align:4 +act__18TaiCountLoopActionFR4Teki = .text:0x80132988; // type:function size:0x3C scope:global align:4 +start__21TaiSwitchMotionActionFR4Teki = .text:0x801329C4; // type:function size:0x5C scope:global align:4 +act__27TaiOutsideKeyStopMoveActionFR4Teki = .text:0x80132A20; // type:function size:0xD4 scope:global align:4 +start__21TaiStoppingMoveActionFR4Teki = .text:0x80132AF4; // type:function size:0x4 scope:global align:4 +act__21TaiStoppingMoveActionFR4Teki = .text:0x80132AF8; // type:function size:0x64 scope:global align:4 +finish__21TaiStoppingMoveActionFR4Teki = .text:0x80132B5C; // type:function size:0x4 scope:global align:4 +start__27TaiFinishStoppingMoveActionFR4Teki = .text:0x80132B60; // type:function size:0x24 scope:global align:4 +start__23TaiSetFrameMotionActionFR4Teki = .text:0x80132B84; // type:function size:0x3C scope:global align:4 +start__34TaiRandomSetAnimationCounterActionFR4Teki = .text:0x80132BC0; // type:function size:0xAC scope:global align:4 +act__25TaiMoveNestPositionActionFR4Teki = .text:0x80132C6C; // type:function size:0x28 scope:global align:4 +start__17TaiStopMoveActionFR4Teki = .text:0x80132C94; // type:function size:0x78 scope:global align:4 +start__20TaiStartFlyingActionFR4Teki = .text:0x80132D0C; // type:function size:0x1C scope:global align:4 +start__21TaiFinishFlyingActionFR4Teki = .text:0x80132D28; // type:function size:0x1C scope:global align:4 +act__30TaiMakeVelocityDirectionActionFR4Teki = .text:0x80132D44; // type:function size:0x80 scope:global align:4 +act__34TaiMakeAccelerationDirectionActionFR4Teki = .text:0x80132DC4; // type:function size:0x80 scope:global align:4 +act__27TaiMakingNextVelocityActionFR4Teki = .text:0x80132E44; // type:function size:0xD0 scope:global align:4 +act__24TaiMakingNextDriveActionFR4Teki = .text:0x80132F14; // type:function size:0xD0 scope:global align:4 +act__21TaiAccelerationActionFR4Teki = .text:0x80132FE4; // type:function size:0x34 scope:global align:4 +act__17TaiParabolaActionFR4Teki = .text:0x80133018; // type:function size:0x34 scope:global align:4 +act__19TaiCircleMoveActionFR4Teki = .text:0x8013304C; // type:function size:0x34 scope:global align:4 +act__26TaiHorizontalSinWaveActionFR4Teki = .text:0x80133080; // type:function size:0x34 scope:global align:4 +act__23TaiClampMaxHeightActionFR4Teki = .text:0x801330B4; // type:function size:0xA8 scope:global align:4 +act__23TaiClampMinHeightActionFR4Teki = .text:0x8013315C; // type:function size:0xA8 scope:global align:4 +act__26TaiClampMinVelocityYActionFR4Teki = .text:0x80133204; // type:function size:0x8C scope:global align:4 +start__19TaiImpassableActionFR4Teki = .text:0x80133290; // type:function size:0x20 scope:global align:4 +act__19TaiImpassableActionFR4Teki = .text:0x801332B0; // type:function size:0xAC scope:global align:4 +resetPosition__19TaiImpassableActionFR4Teki = .text:0x8013335C; // type:function size:0x30 scope:global align:4 +start__29TaiRandomWanderingRouteActionFR4Teki = .text:0x8013338C; // type:function size:0x44 scope:global align:4 +finish__29TaiRandomWanderingRouteActionFR4Teki = .text:0x801333D0; // type:function size:0x4 scope:global align:4 +act__29TaiRandomWanderingRouteActionFR4Teki = .text:0x801333D4; // type:function size:0x13C scope:global align:4 +makeTargetPosition__29TaiRandomWanderingRouteActionFR4Teki = .text:0x80133510; // type:function size:0x70 scope:global align:4 +act__16TaiTracingActionFR4Teki = .text:0x80133580; // type:function size:0x88 scope:global align:4 +finish__18TaiGoingHomeActionFR4Teki = .text:0x80133608; // type:function size:0x4 scope:global align:4 +act__18TaiGoingHomeActionFR4Teki = .text:0x8013360C; // type:function size:0x78 scope:global align:4 +act__19TaiDirectTurnActionFR4Teki = .text:0x80133684; // type:function size:0x44 scope:global align:4 +act__16TaiTurningActionFR4Teki = .text:0x801336C8; // type:function size:0x14C scope:global align:4 +act__20TaiTurningAwayActionFR4Teki = .text:0x80133814; // type:function size:0x15C scope:global align:4 +act__21TaiTraceTurningActionFR4Teki = .text:0x80133970; // type:function size:0x194 scope:global align:4 +act__24TaiOutOfTraceAngleActionFR4Teki = .text:0x80133B04; // type:function size:0xD0 scope:global align:4 +act__32TaiTurningToTargetPositionActionFR4Teki = .text:0x80133BD4; // type:function size:0x130 scope:global align:4 +act__17TaiRotatingActionFR4Teki = .text:0x80133D04; // type:function size:0x2C scope:global align:4 +act__37TaiRunningAwayToTargetDirectionActionFR4Teki = .text:0x80133D30; // type:function size:0xAC scope:global align:4 +act__20TaiRunningAwayActionFR4Teki = .text:0x80133DDC; // type:function size:0x36C scope:global align:4 +act__32TaiWatchOffTerritoryCenterActionFR4Teki = .text:0x80134148; // type:function size:0x44 scope:global align:4 +start__19TaiTargetNestActionFR4Teki = .text:0x8013418C; // type:function size:0x20 scope:global align:4 +actByEvent__33TaiHeadOnCollisionAvoidanceActionFR9TekiEvent = .text:0x801341AC; // type:function size:0x180 scope:global align:4 +__ct__19TaiNapkidSoundTableFv = .text:0x8013432C; // type:function size:0x84 scope:global align:4 +__ct__19TaiNapkidParametersFv = .text:0x801343B0; // type:function size:0x564 scope:global align:4 +__ct__17TaiNapkidStrategyFP14TekiParameters = .text:0x80134914; // type:function size:0x22C4 scope:global align:4 +start__17TaiNapkidStrategyFR4Teki = .text:0x80136BD8; // type:function size:0x84 scope:global align:4 +draw__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x80136C5C; // type:function size:0xBC scope:global align:4 +drawDebugInfo__17TaiNapkidStrategyFR4TekiR8Graphics = .text:0x80136D18; // type:function size:0x250 scope:global align:4 +satisfy__29TekiNapkidTargetPikiConditionFP8Creature = .text:0x80136F68; // type:function size:0xBC scope:global align:4 +satisfy__29TekiNapkidShortRangeConditionFP8Creature = .text:0x80137024; // type:function size:0xA0 scope:global align:4 +start__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x801370C4; // type:function size:0x54 scope:global align:4 +act__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x80137118; // type:function size:0xAC scope:global align:4 +makeTargetPosition__29TaiNapkidWanderingRouteActionFR4Teki = .text:0x801371C4; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidTargetPikiActionFR4Teki = .text:0x8013726C; // type:function size:0xB8 scope:global align:4 +act__23TaiNapkidPikiLostActionFR4Teki = .text:0x80137324; // type:function size:0xA8 scope:global align:4 +act__25TaiNapkidShortRangeActionFR4Teki = .text:0x801373CC; // type:function size:0x88 scope:global align:4 +start__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x80137454; // type:function size:0xA8 scope:global align:4 +act__29TaiNapkidStraightFlyingActionFR4Teki = .text:0x801374FC; // type:function size:0x98 scope:global align:4 +start__23TaiNapkidCirclingActionFR4Teki = .text:0x80137594; // type:function size:0x29C scope:global align:4 +finish__23TaiNapkidCirclingActionFR4Teki = .text:0x80137830; // type:function size:0x18 scope:global align:4 +act__23TaiNapkidCirclingActionFR4Teki = .text:0x80137848; // type:function size:0x124 scope:global align:4 +act__21TaiNapkidFlyingActionFR4Teki = .text:0x8013796C; // type:function size:0x60 scope:global align:4 +act__24TaiNapkidAscendingActionFR4Teki = .text:0x801379CC; // type:function size:0x24 scope:global align:4 +act__27TaiNapkidApproachPikiActionFR4Teki = .text:0x801379F0; // type:function size:0x6C scope:global align:4 +act__23TaiNapkidCatchingActionFR4Teki = .text:0x80137A5C; // type:function size:0x364 scope:global align:4 +start__30TaiNapkidCatchDescendingActionFR4Teki = .text:0x80137DC0; // type:function size:0x17C scope:global align:4 +act__27TaiNapkidCatchTracingActionFR4Teki = .text:0x80137F3C; // type:function size:0x2CC scope:global align:4 +start__26TaiNapkidCatchFlyingActionFR4Teki = .text:0x80138208; // type:function size:0xE4 scope:global align:4 +start__29TaiNapkidCatchAscendingActionFR4Teki = .text:0x801382EC; // type:function size:0xE4 scope:global align:4 +start__33TaiNapkidTakingOffAscendingActionFR4Teki = .text:0x801383D0; // type:function size:0x198 scope:global align:4 +start__30TaiNapkidRisingAscendingActionFR4Teki = .text:0x80138568; // type:function size:0x12C scope:global align:4 +act__27TaiNapkidThrowingPikiActionFR4Teki = .text:0x80138694; // type:function size:0x1D4 scope:global align:4 +act__20TaiNapkidFlickActionFR4Teki = .text:0x80138868; // type:function size:0xC4 scope:global align:4 +start__22TaiNapkidFallingActionFR4Teki = .text:0x8013892C; // type:function size:0x1A8 scope:global align:4 +act__22TaiNapkidFallingActionFR4Teki = .text:0x80138AD4; // type:function size:0x8 scope:global align:4 +start__27TaiNapkidShockFallingActionFR4Teki = .text:0x80138ADC; // type:function size:0x14 scope:global align:4 +start__33TaiNapkidFallingWaterEffectActionFR4Teki = .text:0x80138AF0; // type:function size:0xD8 scope:global align:4 +start__33TaiNapkidStartDroppingWaterActionFR4Teki = .text:0x80138BC8; // type:function size:0x44 scope:global align:4 +__ct__20TaiOtimotiSoundTableFv = .text:0x80138C0C; // type:function size:0x84 scope:global align:4 +__ct__20TaiOtimotiParametersFv = .text:0x80138C90; // type:function size:0x540 scope:global align:4 +__ct__22TaiBlackFrogSoundTableFv = .text:0x801391D0; // type:function size:0x84 scope:global align:4 +__ct__22TaiBlackFrogParametersFv = .text:0x80139254; // type:function size:0x53C scope:global align:4 +__ct__18TaiOtimotiStrategyFP14TekiParameters = .text:0x80139790; // type:function size:0x161C scope:global align:4 +start__18TaiOtimotiStrategyFR4Teki = .text:0x8013ADAC; // type:function size:0xC8 scope:global align:4 +draw__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013AE74; // type:function size:0x11C scope:global align:4 +drawDebugInfo__18TaiOtimotiStrategyFR4TekiR8Graphics = .text:0x8013AF90; // type:function size:0x1C4 scope:global align:4 +start__34TaiOtimotiStartDroppingWaterActionFR4Teki = .text:0x8013B154; // type:function size:0x54 scope:global align:4 +act__21TaiOtimotiFlickActionFR4Teki = .text:0x8013B1A8; // type:function size:0x128 scope:global align:4 +act__26TaiOtimotiFailToJumpActionFR4Teki = .text:0x8013B2D0; // type:function size:0x148 scope:global align:4 +start__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013B418; // type:function size:0x418 scope:global align:4 +act__23TaiOtimotiJumpingActionFR4Teki = .text:0x8013B830; // type:function size:0x84 scope:global align:4 +start__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013B8B4; // type:function size:0x12C scope:global align:4 +act__26TaiOtimotiAirWaitingActionFR4Teki = .text:0x8013B9E0; // type:function size:0x164 scope:global align:4 +start__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013BB44; // type:function size:0x84 scope:global align:4 +act__24TaiOtimotiDroppingActionFR4Teki = .text:0x8013BBC8; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiDroppingActionFR9TekiEvent = .text:0x8013BC24; // type:function size:0x60 scope:global align:4 +start__24TaiOtimotiPressingActionFR4Teki = .text:0x8013BC84; // type:function size:0x34 scope:global align:4 +act__24TaiOtimotiPressingActionFR4Teki = .text:0x8013BCB8; // type:function size:0x5C scope:global align:4 +actByEvent__24TaiOtimotiPressingActionFR9TekiEvent = .text:0x8013BD14; // type:function size:0x21C scope:global align:4 +act__24TaiOtimotiBouncingActionFR4Teki = .text:0x8013BF30; // type:function size:0x8 scope:global align:4 +actByEvent__24TaiOtimotiBouncingActionFR9TekiEvent = .text:0x8013BF38; // type:function size:0x8 scope:global align:4 +start__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013BF40; // type:function size:0x4 scope:global align:4 +act__25TaiOtimotiAttackingActionFR4Teki = .text:0x8013BF44; // type:function size:0xB0 scope:global align:4 +actByEvent__25TaiOtimotiAttackingActionFR9TekiEvent = .text:0x8013BFF4; // type:function size:0x8 scope:global align:4 +start__31TaiOtimotiAttackingEffectActionFR4Teki = .text:0x8013BFFC; // type:function size:0xF0 scope:global align:4 +__ct__25TaiOtimotiLegEffectActionFf = .text:0x8013C0EC; // type:function size:0x58 scope:global align:4 +setType__25TaiOtimotiLegEffectActionFR8Vector3fii = .text:0x8013C144; // type:function size:0x7C scope:global align:4 +__ct__17TaiPalmSoundTableFv = .text:0x8013C1C0; // type:function size:0x84 scope:global align:4 +__ct__17TaiPalmParametersFv = .text:0x8013C244; // type:function size:0x1F4 scope:global align:4 +__ct__15TaiPalmStrategyFP14TekiParameters = .text:0x8013C438; // type:function size:0x4F0 scope:global align:4 +start__15TaiPalmStrategyFR4Teki = .text:0x8013C928; // type:function size:0x2B4 scope:global align:4 +draw__15TaiPalmStrategyFR4TekiR8Graphics = .text:0x8013CBDC; // type:function size:0x38 scope:global align:4 +createEffect__15TaiPalmStrategyFR4Tekii = .text:0x8013CC14; // type:function size:0x148 scope:global align:4 +translateMotionIndex__15TaiPalmStrategyFR4Tekii = .text:0x8013CD5C; // type:function size:0x100 scope:global align:4 +start__19TaiPalmMotionActionFR4Teki = .text:0x8013CE5C; // type:function size:0x64 scope:global align:4 +start__18TaiPalmDyingActionFR4Teki = .text:0x8013CEC0; // type:function size:0x84 scope:global align:4 +act__18TaiPalmDyingActionFR4Teki = .text:0x8013CF44; // type:function size:0x60 scope:global align:4 +start__21TaiPalmDamagingActionFR4Teki = .text:0x8013CFA4; // type:function size:0x78 scope:global align:4 +start__20TaiPalmGrowingActionFR4Teki = .text:0x8013D01C; // type:function size:0x54 scope:global align:4 +act__17TaiPalmGrowActionFR4Teki = .text:0x8013D070; // type:function size:0x68 scope:global align:4 +act__25TaiPalmFlowerDamageActionFR4Teki = .text:0x8013D0D8; // type:function size:0x38 scope:global align:4 +act__22TaiPalmSunflowerActionFR4Teki = .text:0x8013D110; // type:function size:0x34 scope:global align:4 +start__26TaiPalmSettingPelletActionFR4Teki = .text:0x8013D144; // type:function size:0x64 scope:global align:4 +start__26TaiPalmChangingColorActionFR4Teki = .text:0x8013D1A8; // type:function size:0x4 scope:global align:4 +act__26TaiPalmChangingColorActionFR4Teki = .text:0x8013D1AC; // type:function size:0x90 scope:global align:4 +resetTimer__26TaiPalmChangingColorActionFR4Teki = .text:0x8013D23C; // type:function size:0xA8 scope:global align:4 +act__13TaiDeadActionFR4Teki = .text:0x8013D2E4; // type:function size:0x1C scope:global align:4 +start__17TaiLifeZeroActionFR4Teki = .text:0x8013D300; // type:function size:0xC scope:global align:4 +start__19TaiLifeDamageActionFR4Teki = .text:0x8013D30C; // type:function size:0x14 scope:global align:4 +start__12TaiDyeActionFR4Teki = .text:0x8013D320; // type:function size:0x30 scope:global align:4 +start__19TaiStartDyingActionFR4Teki = .text:0x8013D350; // type:function size:0x58 scope:global align:4 +start__19TaiSpawnItemsActionFR4Teki = .text:0x8013D3A8; // type:function size:0x24 scope:global align:4 +start__25TaiCreateDeadEffectActionFR4Teki = .text:0x8013D3CC; // type:function size:0x24 scope:global align:4 +start__14TaiDyingActionFR4Teki = .text:0x8013D3F0; // type:function size:0x4C scope:global align:4 +act__14TaiDyingActionFR4Teki = .text:0x8013D43C; // type:function size:0x4C scope:global align:4 +start__25TaiDamageCountResetActionFR4Teki = .text:0x8013D488; // type:function size:0xC scope:global align:4 +act__20TaiDamageCountActionFR4Teki = .text:0x8013D494; // type:function size:0x40 scope:global align:4 +act__20TaiDamageScaleActionFR4Teki = .text:0x8013D4D4; // type:function size:0x18 scope:global align:4 +act__15TaiDamageActionFR4Teki = .text:0x8013D4EC; // type:function size:0x24 scope:global align:4 +act__27TaiSimultaneousDamageActionFR4Teki = .text:0x8013D510; // type:function size:0x88 scope:global align:4 +act__40TaiCounterattackSimultaneousDamageActionFR4Teki = .text:0x8013D598; // type:function size:0xD8 scope:global align:4 +start__17TaiDamagingActionFR4Teki = .text:0x8013D670; // type:function size:0x40 scope:global align:4 +act__17TaiDamagingActionFR4Teki = .text:0x8013D6B0; // type:function size:0x20 scope:global align:4 +act__31TaiTargetNearestAssailantActionFR4Teki = .text:0x8013D6D0; // type:function size:0x98 scope:global align:4 +actByEvent__31TaiTargetNearestCollisionActionFR9TekiEvent = .text:0x8013D768; // type:function size:0x13C scope:global align:4 +act__16TaiStickedActionFR4Teki = .text:0x8013D8A4; // type:function size:0x40 scope:global align:4 +actByEvent__16TaiSmashedActionFR9TekiEvent = .text:0x8013D8E4; // type:function size:0x50 scope:global align:4 +start__21TaiBeingPressedActionFR4Teki = .text:0x8013D934; // type:function size:0x70 scope:global align:4 +actByEvent__16TaiPressedActionFR9TekiEvent = .text:0x8013D9A4; // type:function size:0x1C scope:global align:4 +start__13TaiWarnActionFR4Teki = .text:0x8013D9C0; // type:function size:0x1C scope:global align:4 +act__19TaiDangerLifeActionFR4Teki = .text:0x8013D9DC; // type:function size:0x34 scope:global align:4 +__ct__20TaiSwallowSoundTableFv = .text:0x8013DA10; // type:function size:0x84 scope:global align:4 +__ct__20TaiSwallowParametersFv = .text:0x8013DA94; // type:function size:0x448 scope:global align:4 +__ct__25TaiBlackSwallowParametersFv = .text:0x8013DEDC; // type:function size:0x43C scope:global align:4 +__ct__18TaiSwallowStrategyFP14TekiParameters = .text:0x8013E318; // type:function size:0x16EC scope:global align:4 +start__18TaiSwallowStrategyFR4Teki = .text:0x8013FA04; // type:function size:0x84 scope:global align:4 +draw__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x8013FA88; // type:function size:0xFC scope:global align:4 +interact__18TaiSwallowStrategyFR4TekiR18TekiInteractionKey = .text:0x8013FB84; // type:function size:0x128 scope:global align:4 +isSleeping__18TaiSwallowStrategyFR4Teki = .text:0x8013FCAC; // type:function size:0x24 scope:global align:4 +drawDebugInfo__18TaiSwallowStrategyFR4TekiR8Graphics = .text:0x8013FCD0; // type:function size:0x34 scope:global align:4 +actByEvent__30TaiSwallowReceiveMessageActionFR9TekiEvent = .text:0x8013FD04; // type:function size:0x1C scope:global align:4 +act__23TaiSwallowTurningActionFR4Teki = .text:0x8013FD20; // type:function size:0x1DC scope:global align:4 +start__24TaiSwallowFlickingActionFR4Teki = .text:0x8013FEFC; // type:function size:0x44 scope:global align:4 +finish__24TaiSwallowFlickingActionFR4Teki = .text:0x8013FF40; // type:function size:0x34 scope:global align:4 +act__24TaiSwallowFlickingActionFR4Teki = .text:0x8013FF74; // type:function size:0x7C scope:global align:4 +flick__24TaiSwallowFlickingActionFR4Teki = .text:0x8013FFF0; // type:function size:0x1DC scope:global align:4 +act__31TaiSwallowSwallowingFlickActionFR4Teki = .text:0x801401CC; // type:function size:0x1F0 scope:global align:4 +start__21TaiSwallowSnoreActionFR4Teki = .text:0x801403BC; // type:function size:0x28 scope:global align:4 +finish__21TaiSwallowSnoreActionFR4Teki = .text:0x801403E4; // type:function size:0x28 scope:global align:4 +act__22TaiSwallowNoticeActionFR4Teki = .text:0x8014040C; // type:function size:0xC4 scope:global align:4 +__ct__25TaiSwallowLegEffectActionFf = .text:0x801404D0; // type:function size:0x58 scope:global align:4 +setType__25TaiSwallowLegEffectActionFR8Vector3fii = .text:0x80140528; // type:function size:0xC4 scope:global align:4 +__ct__35TaiSwallowMissAttackingEffectActionFf = .text:0x801405EC; // type:function size:0x54 scope:global align:4 +setType__35TaiSwallowMissAttackingEffectActionFR8Vector3fii = .text:0x80140640; // type:function size:0x9C scope:global align:4 +__ct__18TaiShellSoundTableFv = .text:0x801406DC; // type:function size:0x84 scope:global align:4 +__ct__18TaiShellParametersFv = .text:0x80140760; // type:function size:0x18C scope:global align:4 +__ct__16TaiShellStrategyFP14TekiParameters = .text:0x801408EC; // type:function size:0x4F4 scope:global align:4 +createEffect__16TaiShellStrategyFR4Tekii = .text:0x80140DE0; // type:function size:0x8C scope:global align:4 +start__16TaiShellStrategyFR4Teki = .text:0x80140E6C; // type:function size:0x1F4 scope:global align:4 +draw__16TaiShellStrategyFR4TekiR8Graphics = .text:0x80141060; // type:function size:0xD0 scope:global align:4 +act__25TaiShellSetPositionActionFR4Teki = .text:0x80141130; // type:function size:0x38 scope:global align:4 +setPosition__25TaiShellSetPositionActionFR4TekiP8Creature = .text:0x80141168; // type:function size:0x78 scope:global align:4 +act__30TaiShellSaveItemPositionActionFR4Teki = .text:0x801411E0; // type:function size:0x1A8 scope:global align:4 +setPosition__30TaiShellSaveItemPositionActionFR4TekiP8Creature = .text:0x80141388; // type:function size:0x78 scope:global align:4 +act__28TaiShellNaviPikiInsideActionFR4Teki = .text:0x80141400; // type:function size:0x104 scope:global align:4 +act__17TaiShellEatActionFR4Teki = .text:0x80141504; // type:function size:0x1D0 scope:global align:4 +__ct__18TaiPearlSoundTableFv = .text:0x801416D4; // type:function size:0x84 scope:global align:4 +__ct__18TaiPearlParametersFv = .text:0x80141758; // type:function size:0x148 scope:global align:4 +__ct__21TaiRocpearlParametersFv = .text:0x801418A0; // type:function size:0x14C scope:global align:4 +__ct__16TaiPearlStrategyFP14TekiParameters = .text:0x801419EC; // type:function size:0x36C scope:global align:4 +start__16TaiPearlStrategyFR4Teki = .text:0x80141D58; // type:function size:0x20 scope:global align:4 +start__26TaiPearlTresureSoundActionFR4Teki = .text:0x80141D78; // type:function size:0x64 scope:global align:4 +start__14TaiTimerActionFR4Teki = .text:0x80141DDC; // type:function size:0x20 scope:global align:4 +act__14TaiTimerActionFR4Teki = .text:0x80141DFC; // type:function size:0x28 scope:global align:4 +resetTimer__14TaiTimerActionFR4Teki = .text:0x80141E24; // type:function size:0xA8 scope:global align:4 +start__19TaiResetTimerActionFR4Teki = .text:0x80141ECC; // type:function size:0x20 scope:global align:4 +resetTimer__19TaiResetTimerActionFR4Teki = .text:0x80141EEC; // type:function size:0xA8 scope:global align:4 +act__21TaiTimerElapsedActionFR4Teki = .text:0x80141F94; // type:function size:0x28 scope:global align:4 +start__22TaiStartingTimerActionFR4Teki = .text:0x80141FBC; // type:function size:0x84 scope:global align:4 +getRand__9StdSystemFf = .text:0x80142040; // type:function size:0x54 scope:weak align:4 +act__22TaiStartingTimerActionFR4Teki = .text:0x80142094; // type:function size:0x114 scope:global align:4 +start__20TaiWaitTurningActionFR4Teki = .text:0x801421A8; // type:function size:0x70 scope:global align:4 +act__20TaiWaitTurningActionFR4Teki = .text:0x80142218; // type:function size:0xE4 scope:global align:4 +__ct__4TekiFv = .text:0x801422FC; // type:function size:0x84 scope:global align:4 +init__5YTekiFi = .text:0x80142380; // type:function size:0x8C scope:weak align:4 +setTekiOptions__5BTekiFi = .text:0x8014240C; // type:function size:0x8 scope:weak align:4 +clearTekiOptions__5BTekiFv = .text:0x80142414; // type:function size:0xC scope:weak align:4 +setAnimationKeyOption__5BTekiFi = .text:0x80142420; // type:function size:0x10 scope:weak align:4 +clearAnimationKeyOption__5BTekiFi = .text:0x80142430; // type:function size:0x10 scope:weak align:4 +setAnimationKeyOptions__5BTekiFi = .text:0x80142440; // type:function size:0x8 scope:weak align:4 +clearAnimationKeyOptions__5BTekiFv = .text:0x80142448; // type:function size:0xC scope:weak align:4 +getShadowSize__5BTekiFv = .text:0x80142454; // type:function size:0x18 scope:weak align:4 +isVisible__5BTekiFv = .text:0x8014246C; // type:function size:0x1C scope:weak align:4 +isOrganic__5BTekiFv = .text:0x80142488; // type:function size:0x1C scope:weak align:4 +isAtari__5BTekiFv = .text:0x801424A4; // type:function size:0x1C scope:weak align:4 +isAlive__5BTekiFv = .text:0x801424C0; // type:function size:0x1C scope:weak align:4 +needShadow__5BTekiFv = .text:0x801424DC; // type:function size:0x1C scope:weak align:4 +@1336@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x801424F8; // type:function size:0x14 scope:weak align:4 +@696@viewGetScale__5BTekiFv = .text:0x8014250C; // type:function size:0x8 scope:weak align:4 +@696@viewGetHeight__5BTekiFv = .text:0x80142514; // type:function size:0x8 scope:weak align:4 +@696@viewGetBottomRadius__5BTekiFv = .text:0x8014251C; // type:function size:0x8 scope:weak align:4 +@696@viewDoAnimation__5BTekiFv = .text:0x80142524; // type:function size:0x8 scope:weak align:4 +@696@viewFinishMotion__5BTekiFv = .text:0x8014252C; // type:function size:0x8 scope:weak align:4 +@696@viewSetMotionSpeed__5BTekiFf = .text:0x80142534; // type:function size:0x8 scope:weak align:4 +@696@viewStartTrembleMotion__5BTekiFf = .text:0x8014253C; // type:function size:0x8 scope:weak align:4 +@696@viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80142544; // type:function size:0x8 scope:weak align:4 +@696@viewKill__5BTekiFv = .text:0x8014254C; // type:function size:0x8 scope:weak align:4 +__ct__20TekiAnimationManagerFP7TekiMgr = .text:0x80142554; // type:function size:0x94 scope:global align:4 +read__20TekiAnimationManagerFR18RandomAccessStream = .text:0x801425E8; // type:function size:0x80 scope:global align:4 +viewStartTrembleMotion__5BTekiFf = .text:0x80142668; // type:function size:0x64 scope:global align:4 +viewSetMotionSpeed__5BTekiFf = .text:0x801426CC; // type:function size:0x8 scope:global align:4 +viewDoAnimation__5BTekiFv = .text:0x801426D4; // type:function size:0x2C scope:global align:4 +viewFinishMotion__5BTekiFv = .text:0x80142700; // type:function size:0x4C scope:global align:4 +viewGetScale__5BTekiFv = .text:0x8014274C; // type:function size:0x1C scope:global align:4 +viewGetBottomRadius__5BTekiFv = .text:0x80142768; // type:function size:0x18 scope:global align:4 +viewGetHeight__5BTekiFv = .text:0x80142780; // type:function size:0x18 scope:global align:4 +viewDraw__5BTekiFR8GraphicsR8Matrix4f = .text:0x80142798; // type:function size:0xA4 scope:global align:4 +viewKill__5BTekiFv = .text:0x8014283C; // type:function size:0x24 scope:global align:4 +doStore__5BTekiFP11CreatureInf = .text:0x80142860; // type:function size:0xC scope:global align:4 +doRestore__5BTekiFP11CreatureInf = .text:0x8014286C; // type:function size:0xC scope:global align:4 +__ct__15TekiShapeObjectFP5Shape = .text:0x80142878; // type:function size:0xB0 scope:global align:4 +isPellet__5BTekiFi = .text:0x80142928; // type:function size:0x10 scope:global align:4 +calcCircleDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x80142938; // type:function size:0x50 scope:global align:4 +alwaysUpdatePlatform__5BTekiFv = .text:0x80142988; // type:function size:0x14 scope:global align:4 +calcSphereDistanceStatic__5BTekiFR8Vector3ffR8Vector3ff = .text:0x8014299C; // type:function size:0xA8 scope:global align:4 +moveTowardStatic__5BTekiFR8Vector3fR8Vector3ffR8Vector3f = .text:0x80142A44; // type:function size:0x238 scope:global align:4 +arrivedAt__5BTekiFff = .text:0x80142C7C; // type:function size:0x28 scope:global align:4 +__ct__5BTekiFv = .text:0x80142CA4; // type:function size:0x398 scope:global align:4 +init__5BTekiFi = .text:0x8014303C; // type:function size:0x64 scope:global align:4 +reset__5BTekiFv = .text:0x801430A0; // type:function size:0x378 scope:global align:4 +prepareEffects__5BTekiFv = .text:0x80143418; // type:function size:0x11C scope:global align:4 +startAI__5BTekiFi = .text:0x80143534; // type:function size:0x80 scope:global align:4 +update__5BTekiFv = .text:0x801435B4; // type:function size:0xA0 scope:global align:4 +doAnimation__5BTekiFv = .text:0x80143654; // type:function size:0xC8 scope:global align:4 +startMotion__5BTekiFi = .text:0x8014371C; // type:function size:0x64 scope:global align:4 +startStoppingMove__5BTekiFv = .text:0x80143780; // type:function size:0x98 scope:global align:4 +finishStoppingMove__5BTekiFv = .text:0x80143818; // type:function size:0x30 scope:global align:4 +getVelocityAnimationSpeed__5BTekiFf = .text:0x80143848; // type:function size:0xA4 scope:global align:4 +animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x801438EC; // type:function size:0x80 scope:global align:4 +doAI__5BTekiFv = .text:0x8014396C; // type:function size:0x1E0 scope:global align:4 +die__5BTekiFv = .text:0x80143B4C; // type:function size:0xC scope:global align:4 +dieSoon__5BTekiFv = .text:0x80143B58; // type:function size:0x258 scope:global align:4 +becomeCorpse__5BTekiFv = .text:0x80143DB0; // type:function size:0x94 scope:global align:4 +doKill__5BTekiFv = .text:0x80143E44; // type:function size:0x150 scope:global align:4 +exitCourse__5BTekiFv = .text:0x80143F94; // type:function size:0x80 scope:global align:4 +gravitate__5BTekiFf = .text:0x80144014; // type:function size:0xAC scope:global align:4 +updateTimers__5BTekiFv = .text:0x801440C0; // type:function size:0xD4 scope:global align:4 +stimulate__5BTekiFR11Interaction = .text:0x80144194; // type:function size:0x74 scope:global align:4 +getiMass__5BTekiFv = .text:0x80144208; // type:function size:0x9C scope:global align:4 +getTekiCollisionSize__5BTekiFv = .text:0x801442A4; // type:function size:0x2C scope:global align:4 +makeDamaged__5BTekiFv = .text:0x801442D0; // type:function size:0x30 scope:global align:4 +startDamageMotion__5BTekiFff = .text:0x80144300; // type:function size:0x4C scope:global align:4 +releasePlatCollisions__5BTekiFv = .text:0x8014434C; // type:function size:0x24 scope:global align:4 +createDeadEffect__5BTekiFv = .text:0x80144370; // type:function size:0x150 scope:global align:4 +createSoulEffect__5BTekiFv = .text:0x801444C0; // type:function size:0xB4 scope:global align:4 +spawnItems__5BTekiFv = .text:0x80144574; // type:function size:0x19C scope:global align:4 +spawnPellets__5BTekiFiii = .text:0x80144710; // type:function size:0x2A8 scope:global align:4 +spawnWaters__5BTekiFi = .text:0x801449B8; // type:function size:0x1EC scope:global align:4 +spawnCorpseParts__5BTekiFv = .text:0x80144BA4; // type:function size:0x40 scope:global align:4 +generateTeki__5BTekiFi = .text:0x80144BE4; // type:function size:0xD8 scope:global align:4 +outputSpawnPosition__5BTekiFR8Vector3f = .text:0x80144CBC; // type:function size:0x190 scope:global align:4 +spawnTeki__5BTekiFi = .text:0x80144E4C; // type:function size:0x250 scope:global align:4 +getPersonalityF__5BTekiFi = .text:0x8014509C; // type:function size:0x1C scope:weak align:4 +getParameterF__5BTekiFi = .text:0x801450B8; // type:function size:0x1C scope:weak align:4 +cos__6NMathFFf = .text:0x801450D4; // type:function size:0x20 scope:weak align:4 +sin__6NMathFFf = .text:0x801450F4; // type:function size:0x20 scope:weak align:4 +getDirection__5BTekiFv = .text:0x80145114; // type:function size:0x8 scope:weak align:4 +shootBall__5BTekiFR8Creature = .text:0x8014511C; // type:function size:0x4 scope:global align:4 +dump__5BTekiFv = .text:0x80145120; // type:function size:0xB4 scope:global align:4 +nearestAngleTarget__5BTekiFP8Creature = .text:0x801451D4; // type:function size:0xE8 scope:global align:4 +cullableCenter__5BTekiFR8Creaturef = .text:0x801452BC; // type:function size:0x20 scope:global align:4 +cullableSphere__5BTekiFR8Creaturef = .text:0x801452DC; // type:function size:0x88 scope:global align:4 +inSectorPosition__5BTekiFR8Vector3fff = .text:0x80145364; // type:function size:0xBC scope:global align:4 +visibleCreature__5BTekiFR8Creature = .text:0x80145420; // type:function size:0x190 scope:global align:4 +separateCreature__5BTekiFR8Creature = .text:0x801455B0; // type:function size:0x154 scope:global align:4 +contactCreature__5BTekiFR8Creature = .text:0x80145704; // type:function size:0x154 scope:global align:4 +attackableCreature__5BTekiFR8Creature = .text:0x80145858; // type:function size:0x1B4 scope:global align:4 +calcTargetAngle__5BTekiFR8Vector3f = .text:0x80145A0C; // type:function size:0xF0 scope:global align:4 +moveToward__5BTekiFR8Vector3ff = .text:0x80145AFC; // type:function size:0x1DC scope:global align:4 +turnToward__5BTekiFff = .text:0x80145CD8; // type:function size:0xC8 scope:global align:4 +rotateTeki__5BTekiFf = .text:0x80145DA0; // type:function size:0x4C scope:global align:4 +getClosestNaviPiki__5BTekiFR9ConditionPf = .text:0x80145DEC; // type:function size:0x254 scope:global align:4 +attackTarget__5BTekiFR8CreatureffR9Condition = .text:0x80146040; // type:function size:0xDC scope:global align:4 +outputHitCenter__5BTekiFR8Vector3f = .text:0x8014611C; // type:function size:0x108 scope:global align:4 +interactNaviPiki__5BTekiFR11InteractionR9Condition = .text:0x80146224; // type:function size:0x7C scope:global align:4 +interactNavi__5BTekiFR11InteractionR9Condition = .text:0x801462A0; // type:function size:0x90 scope:global align:4 +interactPiki__5BTekiFR11InteractionR9Condition = .text:0x80146330; // type:function size:0x150 scope:global align:4 +flick__5BTekiFv = .text:0x80146480; // type:function size:0x34 scope:global align:4 +flick__5BTekiFR13InteractFlickR13InteractFlick = .text:0x801464B4; // type:function size:0x44 scope:global align:4 +flickUpper__5BTekiFv = .text:0x801464F8; // type:function size:0x68 scope:global align:4 +flickUpper__5BTekiFR13InteractFlick = .text:0x80146560; // type:function size:0x1AC scope:global align:4 +flickLower__5BTekiFv = .text:0x8014670C; // type:function size:0x68 scope:global align:4 +flickLower__5BTekiFR13InteractFlick = .text:0x80146774; // type:function size:0x284 scope:global align:4 +checkNaviPiki__5BTekiFR9Condition = .text:0x801469F8; // type:function size:0x174 scope:global align:4 +countPikis__5BTekiFR9Condition = .text:0x80146B6C; // type:function size:0x148 scope:global align:4 +getFlickDamageCount__5BTekiFi = .text:0x80146CB4; // type:function size:0x54 scope:global align:4 +eventPerformed__5BTekiFR9TekiEvent = .text:0x80146D08; // type:function size:0x40 scope:global align:4 +collisionCallback__5BTekiFR9CollEvent = .text:0x80146D48; // type:function size:0x98 scope:global align:4 +ignoreAtari__5BTekiFP8Creature = .text:0x80146DE0; // type:function size:0x1C scope:global align:4 +bounceCallback__5BTekiFv = .text:0x80146DFC; // type:function size:0x50 scope:global align:4 +wallCallback__5BTekiFR5PlaneP13DynCollObject = .text:0x80146E4C; // type:function size:0x50 scope:global align:4 +interact__5BTekiFR18TekiInteractionKey = .text:0x80146E9C; // type:function size:0x50 scope:global align:4 +interactDefault__5BTekiFR18TekiInteractionKey = .text:0x80146EEC; // type:function size:0x148 scope:global align:4 +getGravity__5BTekiFv = .text:0x80147034; // type:function size:0xC scope:global align:4 +getStrategy__5BTekiFv = .text:0x80147040; // type:function size:0x2C scope:global align:4 +getSeaLevel__5BTekiFv = .text:0x8014706C; // type:function size:0x34 scope:global align:4 +getYFromSeaLevel__5BTekiFv = .text:0x801470A0; // type:function size:0x44 scope:global align:4 +makePositionRoute__5BTekiFR8Vector3fR8Vector3fb = .text:0x801470E4; // type:function size:0x74 scope:global align:4 +makeWayPointRoute__5BTekiFiib = .text:0x80147158; // type:function size:0x98 scope:global align:4 +getTargetNearestWayPoint__5BTekiFR8Vector3f = .text:0x801471F0; // type:function size:0x34 scope:global align:4 +getNearestWayPoint__5BTekiFv = .text:0x80147224; // type:function size:0x34 scope:global align:4 +getWayPoint__5BTekiFi = .text:0x80147258; // type:function size:0x30 scope:global align:4 +getRouteWayPoint__5BTekiFi = .text:0x80147288; // type:function size:0x2C scope:global align:4 +updateLifeGauge__5BTekiFv = .text:0x801472B4; // type:function size:0x40 scope:global align:4 +refresh__5BTekiFR8Graphics = .text:0x801472F4; // type:function size:0x6C scope:global align:4 +drawDefault__5BTekiFR8Graphics = .text:0x80147360; // type:function size:0x174 scope:global align:4 +drawTekiShape__5BTekiFR8Graphics = .text:0x801474D4; // type:function size:0x23C scope:global align:4 +drawTekiDebugInfo__5BTekiFR8Graphics = .text:0x80147710; // type:function size:0xB0 scope:global align:4 +drawTekiDebugInfoDefault__5BTekiFR8Graphics = .text:0x801477C0; // type:function size:0x2C0 scope:global align:4 +drawRange__5BTekiFR8GraphicsR8Vector3ffR6Colour = .text:0x80147A80; // type:function size:0xF8 scope:global align:4 +refresh2d__5BTekiFR8Graphics = .text:0x80147B78; // type:function size:0xF4 scope:global align:4 +getFreeSlot__5BTekiFv = .text:0x80147C6C; // type:function size:0x88 scope:global align:4 +isFreeCollPart__5BTekiFP8CollPart = .text:0x80147CF4; // type:function size:0x140 scope:global align:4 +playTableSound__5BTekiFi = .text:0x80147E34; // type:function size:0x80 scope:global align:4 +playSound__5BTekiFi = .text:0x80147EB4; // type:function size:0x24 scope:global align:4 +stopSound__5BTekiFi = .text:0x80147ED8; // type:function size:0x24 scope:global align:4 +createTekiEffect__5BTekiFi = .text:0x80147EFC; // type:function size:0x58 scope:global align:4 +outputWorldAnimationPosition__5BTekiFR8Vector3fiR8Matrix4f = .text:0x80147F54; // type:function size:0xA8 scope:global align:4 +getPositionMapCode__5BTekiFR8Vector3f = .text:0x80147FFC; // type:function size:0x44 scope:global align:4 +getPositionMapCode__5BTekiFv = .text:0x80148040; // type:function size:0x48 scope:global align:4 +inWaterTeki__5BTekiFv = .text:0x80148088; // type:function size:0x5C scope:global align:4 +moveNestPosition__5BTekiFv = .text:0x801480E4; // type:function size:0x20 scope:global align:4 +startParticleGenerator__5BTekiFi = .text:0x80148104; // type:function size:0x24 scope:global align:4 +stopParticleGenerator__5BTekiFi = .text:0x80148128; // type:function size:0x24 scope:global align:4 +setParticleGeneratorPosition__5BTekiFiR8Vector3f = .text:0x8014814C; // type:function size:0x30 scope:global align:4 +setParticleGeneratorDirection__5BTekiFiR8Vector3f = .text:0x8014817C; // type:function size:0x30 scope:global align:4 +calcCollisionDistance__5BTekiFR8Creature = .text:0x801481AC; // type:function size:0xE0 scope:global align:4 +getCollisionSize__5BTekiFv = .text:0x8014828C; // type:function size:0x2C scope:global align:4 +@1108@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x801482B8; // type:function size:0x14 scope:weak align:4 +satisfy__22TekiPikiStateConditionFP8Creature = .text:0x801482CC; // type:function size:0x54 scope:global align:4 +satisfy__18TekiStateConditionFP8Creature = .text:0x80148320; // type:function size:0x2C scope:global align:4 +satisfy__17TekiTypeConditionFP8Creature = .text:0x8014834C; // type:function size:0x2C scope:global align:4 +satisfy__17TekiFreeConditionFP8Creature = .text:0x80148378; // type:function size:0x30 scope:global align:4 +satisfy__17TekiNaviConditionFP8Creature = .text:0x801483A8; // type:function size:0x14 scope:global align:4 +satisfy__21TekiNaviPikiConditionFP8Creature = .text:0x801483BC; // type:function size:0x20 scope:global align:4 +satisfy__19TekiPelletConditionFP8Creature = .text:0x801483DC; // type:function size:0x24 scope:global align:4 +satisfy__29TekiPositionDistanceConditionFP8Creature = .text:0x80148400; // type:function size:0xA8 scope:global align:4 +satisfy__35TekiPositionCircleDistanceConditionFP8Creature = .text:0x801484A8; // type:function size:0x70 scope:global align:4 +satisfy__35TekiPositionSphereDistanceConditionFP8Creature = .text:0x80148518; // type:function size:0x70 scope:global align:4 +satisfy__21TekiStickingConditionFP8Creature = .text:0x80148588; // type:function size:0x14 scope:global align:4 +satisfy__24TekiRecognitionConditionFP8Creature = .text:0x8014859C; // type:function size:0xA8 scope:global align:4 +satisfy__28TekiCreaturePointerConditionFP8Creature = .text:0x80148644; // type:function size:0x14 scope:global align:4 +satisfy__21TekiDistanceConditionFP8Creature = .text:0x80148658; // type:function size:0xE4 scope:global align:4 +satisfy__27TekiSphereDistanceConditionFP8Creature = .text:0x8014873C; // type:function size:0x70 scope:global align:4 +satisfy__20TekiStickerConditionFP8Creature = .text:0x801487AC; // type:function size:0x18 scope:global align:4 +satisfy__23TekiLowerRangeConditionFP8Creature = .text:0x801487C4; // type:function size:0x144 scope:global align:4 +satisfy__23TekiAttackableConditionFP8Creature = .text:0x80148908; // type:function size:0x24 scope:global align:4 +satisfy__20TekiVisibleConditionFP8Creature = .text:0x8014892C; // type:function size:0x24 scope:global align:4 +satisfy__26TekiVisibleHeightConditionFP8Creature = .text:0x80148950; // type:function size:0x3C scope:global align:4 +satisfy__18TekiLowerConditionFP8Creature = .text:0x8014898C; // type:function size:0xBC scope:global align:4 +satisfy__18TekiAngleConditionFP8Creature = .text:0x80148A48; // type:function size:0x5C scope:global align:4 +__ct__9TekiEventFiP4Teki = .text:0x80148AA4; // type:function size:0x34 scope:global align:4 +__ct__9TekiEventFiP4TekiP8Creature = .text:0x80148AD8; // type:function size:0x30 scope:global align:4 +init__9TekiEventFiP4TekiP8Creature = .text:0x80148B08; // type:function size:0x10 scope:global align:4 +actTeki__14InteractAttackFP4Teki = .text:0x80148B18; // type:function size:0x44 scope:global align:4 +actTeki__12InteractBombFP4Teki = .text:0x80148B5C; // type:function size:0x90 scope:global align:4 +actTeki__17InteractHitEffectFP4Teki = .text:0x80148BEC; // type:function size:0x44 scope:global align:4 +actTeki__15InteractSwallowFP4Teki = .text:0x80148C30; // type:function size:0x8 scope:global align:4 +actTeki__13InteractPressFP4Teki = .text:0x80148C38; // type:function size:0x58 scope:global align:4 +actTeki__13InteractFlickFP4Teki = .text:0x80148C90; // type:function size:0x8 scope:global align:4 +initTekiMgr__7TekiMgrFv = .text:0x80148C98; // type:function size:0xC scope:global align:4 +__ct__7TekiMgrFv = .text:0x80148CA4; // type:function size:0x300 scope:global align:4 +startStage__7TekiMgrFv = .text:0x80148FA4; // type:function size:0x1F0 scope:global align:4 +update__7TekiMgrFv = .text:0x80149194; // type:function size:0x20 scope:global align:4 +refresh__7TekiMgrFR8Graphics = .text:0x801491B4; // type:function size:0xA4 scope:global align:4 +newTeki__7TekiMgrFi = .text:0x80149258; // type:function size:0x7C scope:global align:4 +reset__7TekiMgrFv = .text:0x801492D4; // type:function size:0x10C scope:global align:4 +createObject__7TekiMgrFv = .text:0x801493E0; // type:function size:0x44 scope:global align:4 +getStrategy__7TekiMgrFi = .text:0x80149424; // type:function size:0x14 scope:global align:4 +getTekiParameters__7TekiMgrFi = .text:0x80149438; // type:function size:0x10 scope:global align:4 +getTekiShapeObject__7TekiMgrFi = .text:0x80149448; // type:function size:0x10 scope:global align:4 +getSoundTable__7TekiMgrFi = .text:0x80149458; // type:function size:0x10 scope:global align:4 +refresh2d__7TekiMgrFR8Graphics = .text:0x80149468; // type:function size:0x11C scope:global align:4 +setUsingTypeTable__7TekiMgrFb = .text:0x80149584; // type:function size:0xA8 scope:global align:4 +setVisibleTypeTable__7TekiMgrFb = .text:0x8014962C; // type:function size:0xA8 scope:global align:4 +setVisibleType__7TekiMgrFib = .text:0x801496D4; // type:function size:0xC scope:global align:4 +hasModel__7TekiMgrFi = .text:0x801496E0; // type:function size:0x70 scope:global align:4 +getResultFlag__7TekiMgrFi = .text:0x80149750; // type:function size:0x54 scope:global align:4 +__dt__7TekiMgrFv = .text:0x801497A4; // type:function size:0x84 scope:weak align:4 +@8@update__7TekiMgrFv = .text:0x80149828; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__10TekiNakataFP7TekiMgr = .text:0x80149830; // type:function size:0x244 scope:global align:4 +makeTekis__10TekiNakataFP7TekiMgr = .text:0x80149A74; // type:function size:0x690 scope:global align:4 +__ct__5NTekiFv = .text:0x8014A104; // type:function size:0x114 scope:global align:4 +sendMessage__5NTekiFi = .text:0x8014A218; // type:function size:0x1D4 scope:global align:4 +receiveMessage__5NTekiFR11TekiMessage = .text:0x8014A3EC; // type:function size:0x54 scope:global align:4 +@1132@4@animationKeyUpdated__5BTekiFR16PaniAnimKeyEvent = .text:0x8014A440; // type:function size:0x14 scope:weak align:4 +__ct__14TekiParametersFii = .text:0x8014A454; // type:function size:0x954 scope:global align:4 +read__14TekiParametersFR18RandomAccessStream = .text:0x8014ADA8; // type:function size:0x3C4 scope:global align:4 +__ct__15TekiPersonalityFv = .text:0x8014B16C; // type:function size:0x1F8 scope:global align:4 +reset__15TekiPersonalityFv = .text:0x8014B364; // type:function size:0x12C scope:global align:4 +input__15TekiPersonalityFR15TekiPersonality = .text:0x8014B490; // type:function size:0xA0 scope:global align:4 +read__15TekiPersonalityFR18RandomAccessStreami = .text:0x8014B530; // type:function size:0x2F0 scope:global align:4 +write__15TekiPersonalityFR18RandomAccessStream = .text:0x8014B820; // type:function size:0x90 scope:global align:4 +__ct__12TekiStrategyFv = .text:0x8014B8B0; // type:function size:0x10 scope:global align:4 +start__12TekiStrategyFR4Teki = .text:0x8014B8C0; // type:function size:0x4 scope:global align:4 +act__12TekiStrategyFR4Teki = .text:0x8014B8C4; // type:function size:0x4 scope:global align:4 +eventPerformed__12TekiStrategyFR9TekiEvent = .text:0x8014B8C8; // type:function size:0x4 scope:global align:4 +createEffect__12TekiStrategyFR4Tekii = .text:0x8014B8CC; // type:function size:0x4 scope:global align:4 +draw__12TekiStrategyFR4TekiR8Graphics = .text:0x8014B8D0; // type:function size:0x34 scope:global align:4 +drawDebugInfo__12TekiStrategyFR4TekiR8Graphics = .text:0x8014B904; // type:function size:0x34 scope:global align:4 +interact__12TekiStrategyFR4TekiR18TekiInteractionKey = .text:0x8014B938; // type:function size:0x34 scope:global align:4 +spawnCorpseParts__12TekiStrategyFR4Teki = .text:0x8014B96C; // type:function size:0x4 scope:global align:4 +__ct__17TekiStrategyTableFi = .text:0x8014B970; // type:function size:0x6C scope:global align:4 +makeObjectBoss__Fv = .text:0x8014B9DC; // type:function size:0x8C scope:local align:4 +initialise__13GenObjectBossFv = .text:0x8014BA68; // type:function size:0x88 scope:global align:4 +doRead__13GenObjectBossFR18RandomAccessStream = .text:0x8014BAF0; // type:function size:0xEC scope:global align:4 +doWrite__13GenObjectBossFR18RandomAccessStream = .text:0x8014BBDC; // type:function size:0x20 scope:global align:4 +ramLoadParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014BBFC; // type:function size:0x20 scope:global align:4 +ramSaveParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014BC1C; // type:function size:0x20 scope:global align:4 +readParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014BC3C; // type:function size:0x80 scope:global align:4 +writeParameters__13GenObjectBossFR18RandomAccessStream = .text:0x8014BCBC; // type:function size:0x90 scope:global align:4 +updateUseList__13GenObjectBossFP9Generatori = .text:0x8014BD4C; // type:function size:0x150 scope:global align:4 +birth__13GenObjectBossFR9BirthInfo = .text:0x8014BE9C; // type:function size:0x13C scope:global align:4 +__ct__8BossPropFv = .text:0x8014BFD8; // type:function size:0x5AC scope:global align:4 +__ct__4BossFP12CreatureProp = .text:0x8014C584; // type:function size:0xEC scope:global align:4 +initBoss__4BossFR9BirthInfoi = .text:0x8014C670; // type:function size:0x114 scope:global align:4 +calcFlickPiki__4BossFv = .text:0x8014C784; // type:function size:0x98 scope:global align:4 +createPellet__4BossFR8Vector3ffb = .text:0x8014C81C; // type:function size:0x2A0 scope:global align:4 +changeDirection__4BossFf = .text:0x8014CABC; // type:function size:0x164 scope:global align:4 +stopMovement__4BossFv = .text:0x8014CC20; // type:function size:0x34 scope:global align:4 +calcBossDamage__4BossFv = .text:0x8014CC54; // type:function size:0x50 scope:global align:4 +makeTargetCreature__4BossFv = .text:0x8014CCA4; // type:function size:0x30 scope:global align:4 +makeTargetRandom__4BossFf = .text:0x8014CCD4; // type:function size:0x144 scope:global align:4 +chaseNaviTransit__4BossFv = .text:0x8014CE18; // type:function size:0x2D0 scope:global align:4 +chasePikiTransit__4BossFv = .text:0x8014D0E8; // type:function size:0x2DC scope:global align:4 +targetLostTransit__4BossFv = .text:0x8014D3C4; // type:function size:0x158 scope:global align:4 +inSideWaitRangeTransit__4BossFv = .text:0x8014D51C; // type:function size:0x60 scope:global align:4 +outSideChaseRangeTransit__4BossFv = .text:0x8014D57C; // type:function size:0x60 scope:global align:4 +inSearchAngle__4BossFP8Creature = .text:0x8014D5DC; // type:function size:0xC4 scope:global align:4 +flickPikiTransit__4BossFv = .text:0x8014D6A0; // type:function size:0xB8 scope:global align:4 +getStickPikiCount__4BossFv = .text:0x8014D758; // type:function size:0x2C scope:global align:4 +getStickMouthPikiCount__4BossFv = .text:0x8014D784; // type:function size:0x158 scope:global align:4 +getStickNoMouthPikiCount__4BossFv = .text:0x8014D8DC; // type:function size:0x158 scope:global align:4 +killStickToMouthPiki__4BossFv = .text:0x8014DA34; // type:function size:0x48 scope:global align:4 +getMapAttribute__4BossFR8Vector3f = .text:0x8014DA7C; // type:function size:0x50 scope:global align:4 +insideAndInSearch__4BossFv = .text:0x8014DACC; // type:function size:0x6C scope:global align:4 +updateBoss__4BossFv = .text:0x8014DB38; // type:function size:0x100 scope:global align:4 +refreshViewCulling__4BossFR8Graphics = .text:0x8014DC38; // type:function size:0x8C scope:global align:4 +drawShape__4BossFR8Graphics = .text:0x8014DCC4; // type:function size:0x4 scope:global align:4 +refresh2d__4BossFR8Graphics = .text:0x8014DCC8; // type:function size:0x6C scope:global align:4 +wallCallback__4BossFR5PlaneP13DynCollObject = .text:0x8014DD34; // type:function size:0x30 scope:global align:4 +actBoss__14InteractAttackFP4Boss = .text:0x8014DD64; // type:function size:0x114 scope:global align:4 +attackDefaultPortion__4BossFv = .text:0x8014DE78; // type:function size:0x8 scope:weak align:4 +actBoss__13InteractFlickFP4Boss = .text:0x8014DE80; // type:function size:0x3C scope:global align:4 +actBoss__12InteractBombFP4Boss = .text:0x8014DEBC; // type:function size:0x84 scope:global align:4 +bombDamageCounter__4BossFP8CollPart = .text:0x8014DF40; // type:function size:0x4 scope:weak align:4 +actBoss__17InteractHitEffectFP4Boss = .text:0x8014DF44; // type:function size:0x110 scope:global align:4 +stimulate__4BossFR11Interaction = .text:0x8014E054; // type:function size:0x6C scope:global align:4 +isAlive__4BossFv = .text:0x8014E0C0; // type:function size:0x8 scope:weak align:4 +isAtari__4BossFv = .text:0x8014E0C8; // type:function size:0x8 scope:weak align:4 +isVisible__4BossFv = .text:0x8014E0D0; // type:function size:0x8 scope:weak align:4 +isOrganic__4BossFv = .text:0x8014E0D8; // type:function size:0x8 scope:weak align:4 +isFixed__4BossFv = .text:0x8014E0E0; // type:function size:0x8 scope:weak align:4 +ignoreAtari__4BossFP8Creature = .text:0x8014E0E8; // type:function size:0x8 scope:weak align:4 +getCentre__4BossFv = .text:0x8014E0F0; // type:function size:0x1C scope:weak align:4 +needShadow__4BossFv = .text:0x8014E10C; // type:function size:0x8 scope:weak align:4 +getShadowSize__4BossFv = .text:0x8014E114; // type:function size:0x8 scope:weak align:4 +update__4BossFv = .text:0x8014E11C; // type:function size:0x4 scope:weak align:4 +refresh__4BossFR8Graphics = .text:0x8014E120; // type:function size:0x4 scope:weak align:4 +doKill__4BossFv = .text:0x8014E124; // type:function size:0x4 scope:weak align:4 +exitCourse__4BossFv = .text:0x8014E128; // type:function size:0x4 scope:weak align:4 +collisionCallback__4BossFR9CollEvent = .text:0x8014E12C; // type:function size:0x4 scope:weak align:4 +read__8BossPropFR18RandomAccessStream = .text:0x8014E130; // type:function size:0x44 scope:weak align:4 +__ct__20BossAnimationManagerFP7BossMgr = .text:0x8014E174; // type:function size:0x94 scope:global align:4 +satisfy__10CndIsAliveFP8Creature = .text:0x8014E208; // type:function size:0x40 scope:global align:4 +satisfy__12CndBossFlickFP8Creature = .text:0x8014E248; // type:function size:0xC8 scope:global align:4 +satisfy__16CndStickBossKillFP8Creature = .text:0x8014E310; // type:function size:0x70 scope:global align:4 +satisfy__17CndStickMouthKillFP8Creature = .text:0x8014E380; // type:function size:0x7C scope:global align:4 +satisfy__15CndBossCollKillFP8Creature = .text:0x8014E3FC; // type:function size:0x98 scope:global align:4 +getCreature__7BossMgrFi = .text:0x8014E494; // type:function size:0x16C scope:global align:4 +getFirst__7BossMgrFv = .text:0x8014E600; // type:function size:0x8 scope:global align:4 +getNext__7BossMgrFi = .text:0x8014E608; // type:function size:0x8 scope:global align:4 +isDone__7BossMgrFi = .text:0x8014E610; // type:function size:0x4C scope:global align:4 +getSize__7BossMgrFv = .text:0x8014E65C; // type:function size:0x80 scope:global align:4 +getMax__7BossMgrFv = .text:0x8014E6DC; // type:function size:0x80 scope:global align:4 +__ct__7BossMgrFv = .text:0x8014E75C; // type:function size:0x2F4 scope:global align:4 +__ct__8BossNodeFv = .text:0x8014EA50; // type:function size:0x44 scope:weak align:4 +addUseCount__7BossMgrFii = .text:0x8014EA94; // type:function size:0x18 scope:global align:4 +constructBoss__7BossMgrFv = .text:0x8014EAAC; // type:function size:0x9CC scope:global align:4 +initSlime__7BossMgrFi = .text:0x8014F478; // type:function size:0x1B8 scope:global align:4 +init__7BossMgrFii = .text:0x8014F630; // type:function size:0x4C0 scope:global align:4 +create__7BossMgrFiR9BirthInfoP13GenObjectBoss = .text:0x8014FAF0; // type:function size:0xDB4 scope:global align:4 +kill__7BossMgrFP8Creature = .text:0x801508A4; // type:function size:0xC0 scope:global align:4 +killAll__7BossMgrFv = .text:0x80150964; // type:function size:0xB0 scope:global align:4 +update__7BossMgrFv = .text:0x80150A14; // type:function size:0x110 scope:global align:4 +refresh__7BossMgrFR8Graphics = .text:0x80150B24; // type:function size:0x158 scope:global align:4 +refresh2d__7BossMgrFR8Graphics = .text:0x80150C7C; // type:function size:0x84 scope:global align:4 +finalSetup__7BossMgrFv = .text:0x80150D00; // type:function size:0xC scope:global align:4 +getBossShapeObject__7BossMgrFi = .text:0x80150D0C; // type:function size:0x10 scope:global align:4 +__dt__7BossMgrFv = .text:0x80150D1C; // type:function size:0x6C scope:weak align:4 +@8@update__7BossMgrFv = .text:0x80150D88; // type:function size:0x8 scope:weak align:4 +__ct__15BossShapeObjectFP5ShapePc = .text:0x80150D90; // type:function size:0x110 scope:global align:4 +__ct__10SpiderPropFv = .text:0x80150EA0; // type:function size:0x9C8 scope:global align:4 +__ct__6SpiderFP12CreatureProp = .text:0x80151868; // type:function size:0x140 scope:global align:4 +getiMass__6SpiderFv = .text:0x801519A8; // type:function size:0x8 scope:global align:4 +init__6SpiderFR8Vector3f = .text:0x801519B0; // type:function size:0xC4 scope:global align:4 +doKill__6SpiderFv = .text:0x80151A74; // type:function size:0x58 scope:global align:4 +exitCourse__6SpiderFv = .text:0x80151ACC; // type:function size:0x28 scope:global align:4 +update__6SpiderFv = .text:0x80151AF4; // type:function size:0x6C scope:global align:4 +refresh__6SpiderFR8Graphics = .text:0x80151B60; // type:function size:0x14C scope:global align:4 +drawShape__6SpiderFR8Graphics = .text:0x80151CAC; // type:function size:0x78 scope:global align:4 +doAI__6SpiderFv = .text:0x80151D24; // type:function size:0x24 scope:global align:4 +doAnimation__6SpiderFv = .text:0x80151D48; // type:function size:0x44 scope:global align:4 +draw__12SpiderDrawerFR8Graphics = .text:0x80151D8C; // type:function size:0x160 scope:global align:4 +isBossBgm__6SpiderFv = .text:0x80151EEC; // type:function size:0x8 scope:weak align:4 +read__10SpiderPropFR18RandomAccessStream = .text:0x80151EF4; // type:function size:0x50 scope:weak align:4 +@492@read__10SpiderPropFR18RandomAccessStream = .text:0x80151F44; // type:function size:0x8 scope:weak align:4 +__ct__8SpiderAiFP6Spider = .text:0x80151F4C; // type:function size:0x20 scope:global align:4 +initAI__8SpiderAiFP6Spider = .text:0x80151F6C; // type:function size:0xA8 scope:global align:4 +animationKeyUpdated__8SpiderAiFR16PaniAnimKeyEvent = .text:0x80152014; // type:function size:0x7C scope:global align:4 +keyAction0__8SpiderAiFv = .text:0x80152090; // type:function size:0xA8 scope:global align:4 +keyAction1__8SpiderAiFv = .text:0x80152138; // type:function size:0x20 scope:global align:4 +keyLoopEnd__8SpiderAiFv = .text:0x80152158; // type:function size:0x14 scope:global align:4 +keyFinished__8SpiderAiFv = .text:0x8015216C; // type:function size:0x10 scope:global align:4 +playSound__8SpiderAiFi = .text:0x8015217C; // type:function size:0x44 scope:global align:4 +appearTransit__8SpiderAiFv = .text:0x801521C0; // type:function size:0x2FC scope:global align:4 +dieState__8SpiderAiFv = .text:0x801524BC; // type:function size:0x260 scope:global align:4 +update__8SpiderAiFv = .text:0x8015271C; // type:function size:0x19F8 scope:global align:4 +setHalfDeadFallEffect__9SpiderLegFUl = .text:0x80154114; // type:function size:0x184 scope:global align:4 +setDeadBombEffect__9SpiderLegFUl = .text:0x80154298; // type:function size:0x1DC scope:global align:4 +createHalfDeadEffect__9SpiderLegFv = .text:0x80154474; // type:function size:0x228 scope:global align:4 +createDeadBombEffect__9SpiderLegFv = .text:0x8015469C; // type:function size:0xC0 scope:global align:4 +createSmallSparkEffect__9SpiderLegFi = .text:0x8015475C; // type:function size:0x384 scope:global align:4 +createPerishEffect__9SpiderLegFv = .text:0x80154AE0; // type:function size:0x2B8 scope:global align:4 +createRippleEffect__9SpiderLegFi = .text:0x80154D98; // type:function size:0x14C scope:global align:4 +killCallBackEffect__9SpiderLegFb = .text:0x80154EE4; // type:function size:0xE0 scope:global align:4 +setLegScaleParam__9SpiderLegFi = .text:0x80154FC4; // type:function size:0x238 scope:global align:4 +__ct__9SpiderLegFP6Spider = .text:0x801551FC; // type:function size:0x154 scope:global align:4 +__ct__23SpiderGenRippleCallBackFv = .text:0x80155350; // type:function size:0x1C scope:weak align:4 +__ct__23SpiderGenPerishCallBackFv = .text:0x8015536C; // type:function size:0x1C scope:weak align:4 +__ct__30SpiderGenHalfDeadCallBackJointFv = .text:0x80155388; // type:function size:0x1C scope:weak align:4 +init__9SpiderLegFP6Spider = .text:0x801553A4; // type:function size:0x190 scope:global align:4 +initParm__9SpiderLegFi = .text:0x80155534; // type:function size:0x90 scope:global align:4 +setLegParameter__9SpiderLegFv = .text:0x801555C4; // type:function size:0x168 scope:global align:4 +setWalkNewParameter__9SpiderLegFv = .text:0x8015572C; // type:function size:0x54 scope:global align:4 +setShakeOffNewParameter__9SpiderLegFv = .text:0x80155780; // type:function size:0x138 scope:global align:4 +setBodyShakeNewParameter__9SpiderLegFv = .text:0x801558B8; // type:function size:0x1B4 scope:global align:4 +setNextDirAndCent__9SpiderLegFv = .text:0x80155A6C; // type:function size:0x3A4 scope:global align:4 +setWalkNewPosition__9SpiderLegFv = .text:0x80155E10; // type:function size:0x2E8 scope:global align:4 +checkMotionRatio__9SpiderLegFv = .text:0x801560F8; // type:function size:0x168 scope:global align:4 +makeNewPosition__9SpiderLegFv = .text:0x80156260; // type:function size:0x168 scope:global align:4 +calcStickersPiki__9SpiderLegFv = .text:0x801563C8; // type:function size:0x1D0 scope:global align:4 +setIdealCentre__9SpiderLegFR8Vector3f = .text:0x80156598; // type:function size:0x2C0 scope:global align:4 +setRealCentre__9SpiderLegFR8Vector3f = .text:0x80156858; // type:function size:0x20C scope:global align:4 +updateAnimation__9SpiderLegFPC15BossShapeObjectR8GraphicsR8Matrix4f = .text:0x80156A64; // type:function size:0x174 scope:global align:4 +getHeight__9SpiderLegFv = .text:0x80156BD8; // type:function size:0x130 scope:global align:4 +stepDamageNavi__9SpiderLegFi = .text:0x80156D08; // type:function size:0x248 scope:global align:4 +stepDamagePiki__9SpiderLegFi = .text:0x80156F50; // type:function size:0x230 scope:global align:4 +stepShakeOffPiki__9SpiderLegFi = .text:0x80157180; // type:function size:0x2C4 scope:global align:4 +emitOnGroundEffect__9SpiderLegFi = .text:0x80157444; // type:function size:0x140 scope:global align:4 +setKneeDirection__9SpiderLegFv = .text:0x80157584; // type:function size:0x270 scope:global align:4 +create3Joint__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x801577F4; // type:function size:0x684 scope:global align:4 +update__9SpiderLegFv = .text:0x80157E78; // type:function size:0x2EC scope:global align:4 +refresh__9SpiderLegFP15BossShapeObjectR8Graphics = .text:0x80158164; // type:function size:0x6A4 scope:global align:4 +invoke__30SpiderGenHalfDeadCallBackJointFPQ23zen17particleGenerator = .text:0x80158808; // type:function size:0x3C scope:weak align:4 +invoke__23SpiderGenPerishCallBackFPQ23zen17particleGenerator = .text:0x80158844; // type:function size:0x168 scope:weak align:4 +invoke__23SpiderGenRippleCallBackFPQ23zen17particleGenerator = .text:0x801589AC; // type:function size:0x24 scope:weak align:4 +__ct__9SnakePropFv = .text:0x801589D0; // type:function size:0x8F0 scope:global align:4 +__ct__5SnakeFP12CreatureProp = .text:0x801592C0; // type:function size:0x104 scope:global align:4 +setBossType__5SnakeFb = .text:0x801593C4; // type:function size:0x8 scope:global align:4 +getCentreSize__5SnakeFv = .text:0x801593CC; // type:function size:0xC scope:global align:4 +getiMass__5SnakeFv = .text:0x801593D8; // type:function size:0x8 scope:global align:4 +init__5SnakeFR8Vector3f = .text:0x801593E0; // type:function size:0xB8 scope:global align:4 +doKill__5SnakeFv = .text:0x80159498; // type:function size:0x4C scope:global align:4 +exitCourse__5SnakeFv = .text:0x801594E4; // type:function size:0x28 scope:global align:4 +update__5SnakeFv = .text:0x8015950C; // type:function size:0x64 scope:global align:4 +refresh__5SnakeFR8Graphics = .text:0x80159570; // type:function size:0xA8 scope:global align:4 +drawShape__5SnakeFR8Graphics = .text:0x80159618; // type:function size:0x78 scope:global align:4 +refresh2d__5SnakeFR8Graphics = .text:0x80159690; // type:function size:0x74 scope:global align:4 +doAI__5SnakeFv = .text:0x80159704; // type:function size:0x24 scope:global align:4 +doAnimation__5SnakeFv = .text:0x80159728; // type:function size:0x54 scope:global align:4 +getPos__Q25Snake18BoundSphereUpdaterFv = .text:0x8015977C; // type:function size:0x74 scope:weak align:4 +getSize__Q25Snake18BoundSphereUpdaterFv = .text:0x801597F0; // type:function size:0xB4 scope:weak align:4 +read__9SnakePropFR18RandomAccessStream = .text:0x801598A4; // type:function size:0x50 scope:weak align:4 +@492@read__9SnakePropFR18RandomAccessStream = .text:0x801598F4; // type:function size:0x8 scope:weak align:4 +__ct__7SnakeAiFP5Snake = .text:0x801598FC; // type:function size:0xD0 scope:global align:4 +initAI__7SnakeAiFP5Snake = .text:0x801599CC; // type:function size:0x9C scope:global align:4 +animationKeyUpdated__7SnakeAiFR16PaniAnimKeyEvent = .text:0x80159A68; // type:function size:0x7C scope:global align:4 +keyAction0__7SnakeAiFv = .text:0x80159AE4; // type:function size:0x108 scope:global align:4 +keyAction1__7SnakeAiFv = .text:0x80159BEC; // type:function size:0x78 scope:global align:4 +keyLoopEnd__7SnakeAiFv = .text:0x80159C64; // type:function size:0xAC scope:global align:4 +keyFinished__7SnakeAiFv = .text:0x80159D10; // type:function size:0x10 scope:global align:4 +playSound__7SnakeAiFi = .text:0x80159D20; // type:function size:0x44 scope:global align:4 +traceTargetPosition__7SnakeAiFv = .text:0x80159D64; // type:function size:0x104 scope:global align:4 +setAttackPosition__7SnakeAiFv = .text:0x80159E68; // type:function size:0x888 scope:global align:4 +checkAttackTarget__7SnakeAiFv = .text:0x8015A6F0; // type:function size:0x130 scope:global align:4 +naviNudge__7SnakeAiFv = .text:0x8015A820; // type:function size:0x70 scope:global align:4 +pikiStickMouth__7SnakeAiFv = .text:0x8015A890; // type:function size:0x164 scope:global align:4 +eatStickToMouthPiki__7SnakeAiFv = .text:0x8015A9F4; // type:function size:0x30 scope:global align:4 +nearNaviInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015AA24; // type:function size:0x298 scope:global align:4 +nearPikiInAttackArea__7SnakeAiFPP8CreaturePfi = .text:0x8015ACBC; // type:function size:0x298 scope:global align:4 +naviInAttackArea__7SnakeAiFi = .text:0x8015AF54; // type:function size:0x25C scope:global align:4 +pikiInAttackArea__7SnakeAiFi = .text:0x8015B1B0; // type:function size:0x25C scope:global align:4 +appearType01__7SnakeAiFv = .text:0x8015B40C; // type:function size:0x414 scope:global align:4 +appearType02__7SnakeAiFv = .text:0x8015B820; // type:function size:0x4D8 scope:global align:4 +chaseNaviTransit__7SnakeAiFv = .text:0x8015BCF8; // type:function size:0x378 scope:global align:4 +chasePikiTransit__7SnakeAiFv = .text:0x8015C070; // type:function size:0x388 scope:global align:4 +targetLostTransit__7SnakeAiFv = .text:0x8015C3F8; // type:function size:0x208 scope:global align:4 +attackTransit__7SnakeAiFi = .text:0x8015C600; // type:function size:0x4C scope:global align:4 +collPartMaxTransit__7SnakeAiFv = .text:0x8015C64C; // type:function size:0x20 scope:global align:4 +initAttack__7SnakeAiFif = .text:0x8015C66C; // type:function size:0x18C scope:global align:4 +initAppear__7SnakeAiFi = .text:0x8015C7F8; // type:function size:0x5C8 scope:global align:4 +__cl__7ParmFv = .text:0x8015CDC0; // type:function size:0x8 scope:weak align:4 +struggleState__7SnakeAiFv = .text:0x8015CDC8; // type:function size:0x1B0 scope:global align:4 +update__7SnakeAiFv = .text:0x8015CF78; // type:function size:0x143C scope:global align:4 +setBodyOnGroundEffect__9SnakeBodyFv = .text:0x8015E3B4; // type:function size:0x220 scope:global align:4 +killCallBackEffect__9SnakeBodyFb = .text:0x8015E5D4; // type:function size:0x68 scope:global align:4 +__ct__9SnakeBodyFP5Snake = .text:0x8015E63C; // type:function size:0x158 scope:global align:4 +init__9SnakeBodyFR8Vector3fP5Snake = .text:0x8015E794; // type:function size:0x9C scope:global align:4 +initBlending__9SnakeBodyFf = .text:0x8015E830; // type:function size:0x28 scope:global align:4 +makeTurnVelocity__9SnakeBodyFv = .text:0x8015E858; // type:function size:0x318 scope:global align:4 +makeResultPosition__9SnakeBodyFv = .text:0x8015EB70; // type:function size:0x2F4 scope:global align:4 +makeVectorMatrix__9SnakeBodyFv = .text:0x8015EE64; // type:function size:0x368 scope:global align:4 +createDeadHeadEffect__9SnakeBodyFv = .text:0x8015F1CC; // type:function size:0x254 scope:global align:4 +createDeadBodyEffect__9SnakeBodyFv = .text:0x8015F420; // type:function size:0x244 scope:global align:4 +makeDeadPattern01__9SnakeBodyFv = .text:0x8015F664; // type:function size:0x190 scope:global align:4 +update__9SnakeBodyFv = .text:0x8015F7F4; // type:function size:0x450 scope:global align:4 +makeBodySize__9SnakeBodyFv = .text:0x8015FC44; // type:function size:0x1F8 scope:global align:4 +makeHeadPosition__9SnakeBodyFv = .text:0x8015FE3C; // type:function size:0x198 scope:global align:4 +makeBodyMatrix__9SnakeBodyFv = .text:0x8015FFD4; // type:function size:0x2F4 scope:global align:4 +makeAnimMatrix__9SnakeBodyFv = .text:0x801602C8; // type:function size:0x3B8 scope:global align:4 +caseOfMatrix__9SnakeBodyFP8Matrix4f = .text:0x80160680; // type:function size:0x524 scope:global align:4 +makeBlending__9SnakeBodyFP8Matrix4f = .text:0x80160BA4; // type:function size:0x540 scope:global align:4 +setDeadPattern01__9SnakeBodyFP8Matrix4f = .text:0x801610E4; // type:function size:0x10C scope:global align:4 +returnJoint__9SnakeBodyFP15BossShapeObjectR8GraphicsP8Matrix4f = .text:0x801611F0; // type:function size:0x1E0 scope:global align:4 +refresh__9SnakeBodyFP15BossShapeObjectR8Graphics = .text:0x801613D0; // type:function size:0x9B8 scope:global align:4 +invoke__26SnakeGenBodyRotateCallBackFPQ23zen17particleGenerator = .text:0x80161D88; // type:function size:0x64 scope:weak align:4 +invoke__28SnakeGenBodyOnGroundCallBackFPQ23zen17particleGenerator = .text:0x80161DEC; // type:function size:0x34 scope:weak align:4 +__ct__9SlimePropFv = .text:0x80161E20; // type:function size:0x578 scope:global align:4 +__ct__5SlimeFP12CreaturePropP15BossShapeObject = .text:0x80162398; // type:function size:0x1D4 scope:global align:4 +__ct__Q25Slime17TubeSphereUpdaterFv = .text:0x8016256C; // type:function size:0x54 scope:weak align:4 +__ct__Q25Slime20CollideSphereUpdaterFv = .text:0x801625C0; // type:function size:0x54 scope:weak align:4 +getCentreSize__5SlimeFv = .text:0x80162614; // type:function size:0xC scope:global align:4 +getiMass__5SlimeFv = .text:0x80162620; // type:function size:0x8 scope:global align:4 +init__5SlimeFR8Vector3f = .text:0x80162628; // type:function size:0x27C scope:global align:4 +doKill__5SlimeFv = .text:0x801628A4; // type:function size:0x34 scope:global align:4 +exitCourse__5SlimeFv = .text:0x801628D8; // type:function size:0x4 scope:global align:4 +update__5SlimeFv = .text:0x801628DC; // type:function size:0xA4 scope:global align:4 +refresh__5SlimeFR8Graphics = .text:0x80162980; // type:function size:0xA8 scope:global align:4 +drawShape__5SlimeFR8Graphics = .text:0x80162A28; // type:function size:0xA0 scope:global align:4 +doAI__5SlimeFv = .text:0x80162AC8; // type:function size:0x24 scope:global align:4 +doAnimation__5SlimeFv = .text:0x80162AEC; // type:function size:0x24 scope:global align:4 +collisionCallback__5SlimeFR9CollEvent = .text:0x80162B10; // type:function size:0x168 scope:global align:4 +getPos__Q25Slime20CollideSphereUpdaterFv = .text:0x80162C78; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime20CollideSphereUpdaterFv = .text:0x80162C98; // type:function size:0x440 scope:weak align:4 +getPos__Q25Slime17TubeSphereUpdaterFv = .text:0x801630D8; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime17TubeSphereUpdaterFv = .text:0x801630F8; // type:function size:0xC scope:weak align:4 +getPos__Q25Slime18BoundSphereUpdaterFv = .text:0x80163104; // type:function size:0x20 scope:weak align:4 +getSize__Q25Slime18BoundSphereUpdaterFv = .text:0x80163124; // type:function size:0x110 scope:weak align:4 +read__9SlimePropFR18RandomAccessStream = .text:0x80163234; // type:function size:0x50 scope:weak align:4 +@492@read__9SlimePropFR18RandomAccessStream = .text:0x80163284; // type:function size:0x8 scope:weak align:4 +__ct__7SlimeAiFP5Slime = .text:0x8016328C; // type:function size:0x8 scope:global align:4 +init__7SlimeAiFP5Slime = .text:0x80163294; // type:function size:0xA8 scope:global align:4 +addDamagePoint__7SlimeAiFf = .text:0x8016333C; // type:function size:0x14 scope:global align:4 +calcBubblePiki__7SlimeAiFv = .text:0x80163350; // type:function size:0x310 scope:global align:4 +calcStickersRatio__7SlimeAiFv = .text:0x80163660; // type:function size:0xC4 scope:global align:4 +playExpandingSound__7SlimeAiFv = .text:0x80163724; // type:function size:0x164 scope:global align:4 +calcCollisionCheck__7SlimeAiFv = .text:0x80163888; // type:function size:0x33C scope:global align:4 +setLeaderNearerTarget__7SlimeAiFv = .text:0x80163BC4; // type:function size:0xE8 scope:global align:4 +moveFlagCheck__7SlimeAiFv = .text:0x80163CAC; // type:function size:0x118 scope:global align:4 +makeFollowerVelocity__7SlimeAiFv = .text:0x80163DC4; // type:function size:0x144 scope:global align:4 +makeLeaderVelocity__7SlimeAiFv = .text:0x80163F08; // type:function size:0x124 scope:global align:4 +setMidPointVelocity__7SlimeAiFv = .text:0x8016402C; // type:function size:0xE8 scope:global align:4 +calcContractDamage__7SlimeAiFv = .text:0x80164114; // type:function size:0x104 scope:global align:4 +contractCoreFlickPiki__7SlimeAiFv = .text:0x80164218; // type:function size:0x280 scope:global align:4 +contractSubFlickPiki__7SlimeAiFv = .text:0x80164498; // type:function size:0x280 scope:global align:4 +inCaseOfContract__7SlimeAiFv = .text:0x80164718; // type:function size:0x29C scope:global align:4 +makeTargetRandom__7SlimeAiFv = .text:0x801649B4; // type:function size:0x16C scope:global align:4 +chaseNaviTransit__7SlimeAiFv = .text:0x80164B20; // type:function size:0x308 scope:global align:4 +chasePikiTransit__7SlimeAiFv = .text:0x80164E28; // type:function size:0x30C scope:global align:4 +targetLostTransit__7SlimeAiFv = .text:0x80165134; // type:function size:0x198 scope:global align:4 +appearTransit__7SlimeAiFv = .text:0x801652CC; // type:function size:0x2E4 scope:global align:4 +initDie__7SlimeAiFi = .text:0x801655B0; // type:function size:0x53C scope:global align:4 +appearState__7SlimeAiFv = .text:0x80165AEC; // type:function size:0x494 scope:global align:4 +update__7SlimeAiFv = .text:0x80165F80; // type:function size:0x2D88 scope:global align:4 +__pl__FRC8Vector3fRC8Vector3f = .text:0x80168D08; // type:function size:0x34 scope:weak align:4 +__ct__9SlimeBodyFP5Slime = .text:0x80168D3C; // type:function size:0x13C scope:global align:4 +init__9SlimeBodyFP5Slime = .text:0x80168E78; // type:function size:0x2A4 scope:global align:4 +sortPosition__9SlimeBodyFP8Vector3fP8Vector3fP8Vector3f = .text:0x8016911C; // type:function size:0x2EC scope:global align:4 +update__9SlimeBodyFv = .text:0x80169408; // type:function size:0x464 scope:global align:4 +refresh__9SlimeBodyFP15BossShapeObjectR8Graphics = .text:0x8016986C; // type:function size:0x118 scope:global align:4 +__ct__13SlimeCreatureFP12CreatureProp = .text:0x80169984; // type:function size:0x78 scope:global align:4 +init__13SlimeCreatureFR8Vector3fP5Slime = .text:0x801699FC; // type:function size:0x80 scope:global align:4 +getSize__13SlimeCreatureFv = .text:0x80169A7C; // type:function size:0x8 scope:global align:4 +getiMass__13SlimeCreatureFv = .text:0x80169A84; // type:function size:0x8 scope:global align:4 +getCentre__13SlimeCreatureFv = .text:0x80169A8C; // type:function size:0x1C scope:global align:4 +doKill__13SlimeCreatureFv = .text:0x80169AA8; // type:function size:0x24 scope:global align:4 +isAlive__13SlimeCreatureFv = .text:0x80169ACC; // type:function size:0x30 scope:global align:4 +isAtari__13SlimeCreatureFv = .text:0x80169AFC; // type:function size:0x30 scope:global align:4 +ignoreAtari__13SlimeCreatureFP8Creature = .text:0x80169B2C; // type:function size:0x20 scope:global align:4 +doAI__13SlimeCreatureFv = .text:0x80169B4C; // type:function size:0x4 scope:global align:4 +doAnimation__13SlimeCreatureFv = .text:0x80169B50; // type:function size:0x4 scope:global align:4 +update__13SlimeCreatureFv = .text:0x80169B54; // type:function size:0x4C scope:global align:4 +refresh__13SlimeCreatureFR8Graphics = .text:0x80169BA0; // type:function size:0x4 scope:global align:4 +setCentre__13SlimeCreatureFR8Vector3f = .text:0x80169BA4; // type:function size:0x4 scope:weak align:4 +isFixed__13SlimeCreatureFv = .text:0x80169BA8; // type:function size:0x8 scope:weak align:4 +__ct__8KingPropFv = .text:0x80169BB0; // type:function size:0x7BC scope:global align:4 +__ct__4KingFP12CreatureProp = .text:0x8016A36C; // type:function size:0x148 scope:global align:4 +getiMass__4KingFv = .text:0x8016A4B4; // type:function size:0x8 scope:global align:4 +bombDamageCounter__4KingFP8CollPart = .text:0x8016A4BC; // type:function size:0x20 scope:global align:4 +init__4KingFR8Vector3f = .text:0x8016A4DC; // type:function size:0x84 scope:global align:4 +doKill__4KingFv = .text:0x8016A560; // type:function size:0x60 scope:global align:4 +exitCourse__4KingFv = .text:0x8016A5C0; // type:function size:0x28 scope:global align:4 +update__4KingFv = .text:0x8016A5E8; // type:function size:0x64 scope:global align:4 +draw__4KingFR8Graphics = .text:0x8016A64C; // type:function size:0x178 scope:global align:4 +refresh__4KingFR8Graphics = .text:0x8016A7C4; // type:function size:0x54 scope:global align:4 +drawShape__4KingFR8Graphics = .text:0x8016A818; // type:function size:0x78 scope:global align:4 +doAI__4KingFv = .text:0x8016A890; // type:function size:0x24 scope:global align:4 +doAnimation__4KingFv = .text:0x8016A8B4; // type:function size:0x54 scope:global align:4 +draw__10KingDrawerFR8Graphics = .text:0x8016A908; // type:function size:0x54 scope:global align:4 +isBossBgm__4KingFv = .text:0x8016A95C; // type:function size:0x8 scope:weak align:4 +read__8KingPropFR18RandomAccessStream = .text:0x8016A964; // type:function size:0x50 scope:weak align:4 +@492@read__8KingPropFR18RandomAccessStream = .text:0x8016A9B4; // type:function size:0x8 scope:weak align:4 +__ct__6KingAiFP4King = .text:0x8016A9BC; // type:function size:0x48 scope:global align:4 +initAI__6KingAiFP4King = .text:0x8016AA04; // type:function size:0x10C scope:global align:4 +animationKeyUpdated__6KingAiFR16PaniAnimKeyEvent = .text:0x8016AB10; // type:function size:0x7C scope:global align:4 +keyAction0__6KingAiFv = .text:0x8016AB8C; // type:function size:0x1D0 scope:global align:4 +keyAction1__6KingAiFv = .text:0x8016AD5C; // type:function size:0xE4 scope:global align:4 +keyAction2__6KingAiFv = .text:0x8016AE40; // type:function size:0x50 scope:global align:4 +keyLoopEnd__6KingAiFv = .text:0x8016AE90; // type:function size:0x14 scope:global align:4 +keyFinished__6KingAiFv = .text:0x8016AEA4; // type:function size:0x90 scope:global align:4 +playSound__6KingAiFi = .text:0x8016AF34; // type:function size:0x44 scope:global align:4 +createEffect__6KingAiFi = .text:0x8016AF78; // type:function size:0x40 scope:global align:4 +calcDamageScale__6KingAiFv = .text:0x8016AFB8; // type:function size:0x154 scope:global align:4 +startSpreadSaliva__6KingAiFv = .text:0x8016B10C; // type:function size:0x14 scope:global align:4 +endSpreadSaliva__6KingAiFv = .text:0x8016B120; // type:function size:0x14 scope:global align:4 +fallBackSide__6KingAiFv = .text:0x8016B134; // type:function size:0x480 scope:global align:4 +pikiStickToKingMouth__6KingAiFv = .text:0x8016B5B4; // type:function size:0x460 scope:global align:4 +tongueBombExplosion__6KingAiFv = .text:0x8016BA14; // type:function size:0x2A8 scope:global align:4 +killStickToMouthPiki__6KingAiFv = .text:0x8016BCBC; // type:function size:0x2C scope:global align:4 +tongueAttackNavi__6KingAiFv = .text:0x8016BCE8; // type:function size:0x290 scope:global align:4 +dispelNaviPiki__6KingAiFv = .text:0x8016BF78; // type:function size:0x4B8 scope:global align:4 +setDamageLoopCounter__6KingAiFiiiiii = .text:0x8016C430; // type:function size:0x120 scope:global align:4 +setEatDamageLoopCounter__6KingAiFv = .text:0x8016C550; // type:function size:0x284 scope:global align:4 +setAttackPriority__6KingAiFv = .text:0x8016C7D4; // type:function size:0x118 scope:global align:4 +inJumpAngle__6KingAiFP8Creature = .text:0x8016C8EC; // type:function size:0xCC scope:global align:4 +calcNearerDirection__7NsMathFFff = .text:0x8016C9B8; // type:function size:0x48 scope:weak align:4 +inTurnAngleTransit__6KingAiFv = .text:0x8016CA00; // type:function size:0xCC scope:global align:4 +chaseNaviTransit__6KingAiFv = .text:0x8016CACC; // type:function size:0x300 scope:global align:4 +chasePikiTransit__6KingAiFv = .text:0x8016CDCC; // type:function size:0x30C scope:global align:4 +attackTransit__6KingAiFv = .text:0x8016D0D8; // type:function size:0x3E0 scope:global align:4 +jumpAttackTransit__6KingAiFv = .text:0x8016D4B8; // type:function size:0x448 scope:global align:4 +eatThrowPikiTransit__6KingAiFv = .text:0x8016D900; // type:function size:0x2B8 scope:global align:4 +targetLostTransit__6KingAiFv = .text:0x8016DBB8; // type:function size:0x190 scope:global align:4 +appearTransit__6KingAiFv = .text:0x8016DD48; // type:function size:0x40C scope:global align:4 +initDie__6KingAiFi = .text:0x8016E154; // type:function size:0x14C scope:global align:4 +initAppear__6KingAiFi = .text:0x8016E2A0; // type:function size:0x16C scope:global align:4 +update__6KingAiFv = .text:0x8016E40C; // type:function size:0x3084 scope:global align:4 +setSeedFlashEffect__8KingBodyFv = .text:0x80171490; // type:function size:0xDC scope:global align:4 +setEatBombEffect__8KingBodyFv = .text:0x8017156C; // type:function size:0x24C scope:global align:4 +createWaterEffect__8KingBodyFi = .text:0x801717B8; // type:function size:0x210 scope:global align:4 +createUfoParts__8KingBodyFv = .text:0x801719C8; // type:function size:0x250 scope:global align:4 +killCallBackEffect__8KingBodyFb = .text:0x80171C18; // type:function size:0xDC scope:global align:4 +__ct__8KingBodyFP4King = .text:0x80171CF4; // type:function size:0x23C scope:global align:4 +__ct__21KingGenRippleCallBackFv = .text:0x80171F30; // type:function size:0x1C scope:weak align:4 +__ct__21KingGenSalivaCallBackFv = .text:0x80171F4C; // type:function size:0x1C scope:weak align:4 +init__8KingBodyFP4King = .text:0x80171F68; // type:function size:0x23C scope:global align:4 +initBlending__8KingBodyFf = .text:0x801721A4; // type:function size:0x28 scope:global align:4 +setVelocityFromPosition__8KingBodyFv = .text:0x801721CC; // type:function size:0x1E0 scope:global align:4 +emitOnGroundEffect__8KingBodyFv = .text:0x801723AC; // type:function size:0x140 scope:global align:4 +update__8KingBodyFv = .text:0x801724EC; // type:function size:0x198 scope:global align:4 +makeBlending__8KingBodyFP8Matrix4f = .text:0x80172684; // type:function size:0x578 scope:global align:4 +copyJointPosition__8KingBodyFP8Matrix4f = .text:0x80172BFC; // type:function size:0x230 scope:global align:4 +refresh__8KingBodyFP15BossShapeObjectR8Graphics = .text:0x80172E2C; // type:function size:0xC6C scope:global align:4 +invoke__21KingGenSalivaCallBackFPQ23zen17particleGenerator = .text:0x80173A98; // type:function size:0x19C scope:weak align:4 +invoke__21KingGenRippleCallBackFPQ23zen17particleGenerator = .text:0x80173C34; // type:function size:0x80 scope:weak align:4 +invoke__32KingGenSpitPartsParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80173CB4; // type:function size:0x1AC scope:weak align:4 +insertAfter__Q23zen7zenListFPQ23zen7zenList = .text:0x80173E60; // type:function size:0x1C scope:weak align:4 +remove__Q23zen7zenListFv = .text:0x80173E7C; // type:function size:0x1C scope:weak align:4 +invoke__25KingGenDamageStarCallBackFPQ23zen17particleGenerator = .text:0x80173E98; // type:function size:0x2C scope:weak align:4 +invoke__29KingGenSalivaParticleCallBackFPQ23zen17particleGeneratorPQ23zen11particleMdl = .text:0x80173EC4; // type:function size:0x200 scope:weak align:4 +invoke__27KingGenSpreadSalivaCallBackFPQ23zen17particleGenerator = .text:0x801740C4; // type:function size:0x78 scope:weak align:4 +__ct__10KoganePropFv = .text:0x8017413C; // type:function size:0x330 scope:global align:4 +__ct__6KoganeFP12CreatureProp = .text:0x8017446C; // type:function size:0x84 scope:global align:4 +getiMass__6KoganeFv = .text:0x801744F0; // type:function size:0x8 scope:global align:4 +init__6KoganeFR8Vector3f = .text:0x801744F8; // type:function size:0x54 scope:global align:4 +doKill__6KoganeFv = .text:0x8017454C; // type:function size:0x4C scope:global align:4 +exitCourse__6KoganeFv = .text:0x80174598; // type:function size:0x28 scope:global align:4 +update__6KoganeFv = .text:0x801745C0; // type:function size:0x20 scope:global align:4 +refresh__6KoganeFR8Graphics = .text:0x801745E0; // type:function size:0x98 scope:global align:4 +drawShape__6KoganeFR8Graphics = .text:0x80174678; // type:function size:0x6C scope:global align:4 +doAI__6KoganeFv = .text:0x801746E4; // type:function size:0x38 scope:global align:4 +doAnimation__6KoganeFv = .text:0x8017471C; // type:function size:0x44 scope:global align:4 +collisionCallback__6KoganeFR9CollEvent = .text:0x80174760; // type:function size:0x58 scope:global align:4 +read__10KoganePropFR18RandomAccessStream = .text:0x801747B8; // type:function size:0x50 scope:weak align:4 +@492@read__10KoganePropFR18RandomAccessStream = .text:0x80174808; // type:function size:0x8 scope:weak align:4 +createWaterEffect__8KoganeAiFv = .text:0x80174810; // type:function size:0x1AC scope:global align:4 +killCallBackEffect__8KoganeAiFb = .text:0x801749BC; // type:function size:0x38 scope:global align:4 +__ct__8KoganeAiFP6Kogane = .text:0x801749F4; // type:function size:0x74 scope:global align:4 +initAI__8KoganeAiFP6Kogane = .text:0x80174A68; // type:function size:0x110 scope:global align:4 +animationKeyUpdated__8KoganeAiFR16PaniAnimKeyEvent = .text:0x80174B78; // type:function size:0x7C scope:global align:4 +keyAction0__8KoganeAiFv = .text:0x80174BF4; // type:function size:0x5C scope:global align:4 +keyAction1__8KoganeAiFv = .text:0x80174C50; // type:function size:0xA8 scope:global align:4 +keyLoopEnd__8KoganeAiFv = .text:0x80174CF8; // type:function size:0x14 scope:global align:4 +keyFinished__8KoganeAiFv = .text:0x80174D0C; // type:function size:0x28 scope:global align:4 +playSound__8KoganeAiFi = .text:0x80174D34; // type:function size:0x3C scope:global align:4 +setMapAttribute__8KoganeAiFv = .text:0x80174D70; // type:function size:0xDC scope:global align:4 +setNewTargetPosition__8KoganeAiFv = .text:0x80174E4C; // type:function size:0x1E8 scope:global align:4 +setRouteTargetPosition__8KoganeAiFv = .text:0x80175034; // type:function size:0x22C scope:global align:4 +birthItemPellet__8KoganeAiFi = .text:0x80175260; // type:function size:0x1A8 scope:global align:4 +birthItemWater__8KoganeAiFif = .text:0x80175408; // type:function size:0x1E0 scope:global align:4 +createPellet__8KoganeAiFv = .text:0x801755E8; // type:function size:0xC4 scope:global align:4 +appearTransit__8KoganeAiFv = .text:0x801756AC; // type:function size:0x3A0 scope:global align:4 +initCreate__8KoganeAiFi = .text:0x80175A4C; // type:function size:0x1D4 scope:global align:4 +update__8KoganeAiFv = .text:0x80175C20; // type:function size:0x8A4 scope:global align:4 +invoke__23KoganeGenRippleCallBackFPQ23zen17particleGenerator = .text:0x801764C4; // type:function size:0x28 scope:weak align:4 +__ct__7PomPropFv = .text:0x801764EC; // type:function size:0x2B4 scope:global align:4 +__ct__3PomFP12CreatureProp = .text:0x801767A0; // type:function size:0x98 scope:global align:4 +getiMass__3PomFv = .text:0x80176838; // type:function size:0x8 scope:global align:4 +init__3PomFR8Vector3f = .text:0x80176840; // type:function size:0x50 scope:global align:4 +setColor__3PomFi = .text:0x80176890; // type:function size:0x9C scope:global align:4 +doKill__3PomFv = .text:0x8017692C; // type:function size:0x4C scope:global align:4 +exitCourse__3PomFv = .text:0x80176978; // type:function size:0x28 scope:global align:4 +update__3PomFv = .text:0x801769A0; // type:function size:0x4C scope:global align:4 +refresh__3PomFR8Graphics = .text:0x801769EC; // type:function size:0xE0 scope:global align:4 +drawShape__3PomFR8Graphics = .text:0x80176ACC; // type:function size:0x84 scope:global align:4 +doAI__3PomFv = .text:0x80176B50; // type:function size:0x24 scope:global align:4 +doAnimation__3PomFv = .text:0x80176B74; // type:function size:0x44 scope:global align:4 +collisionCallback__3PomFR9CollEvent = .text:0x80176BB8; // type:function size:0x54 scope:global align:4 +read__7PomPropFR18RandomAccessStream = .text:0x80176C0C; // type:function size:0x50 scope:weak align:4 +@492@read__7PomPropFR18RandomAccessStream = .text:0x80176C5C; // type:function size:0x8 scope:weak align:4 +__ct__5PomAiFP3Pom = .text:0x80176C64; // type:function size:0x74 scope:global align:4 +initAI__5PomAiFP3Pom = .text:0x80176CD8; // type:function size:0x194 scope:global align:4 +animationKeyUpdated__5PomAiFR16PaniAnimKeyEvent = .text:0x80176E6C; // type:function size:0x7C scope:global align:4 +keyAction0__5PomAiFv = .text:0x80176EE8; // type:function size:0x44 scope:global align:4 +keyAction1__5PomAiFv = .text:0x80176F2C; // type:function size:0x1C scope:global align:4 +keyLoopEnd__5PomAiFv = .text:0x80176F48; // type:function size:0x14 scope:global align:4 +keyFinished__5PomAiFv = .text:0x80176F5C; // type:function size:0xC8 scope:global align:4 +playSound__5PomAiFi = .text:0x80177024; // type:function size:0x44 scope:global align:4 +killCallBackEffect__5PomAiFb = .text:0x80177068; // type:function size:0x38 scope:global align:4 +collidePetal__5PomAiFP8Creature = .text:0x801770A0; // type:function size:0x1B4 scope:global align:4 +setCollideSound__5PomAiFP8Creature = .text:0x80177254; // type:function size:0x60 scope:global align:4 +killStickPiki__5PomAiFv = .text:0x801772B4; // type:function size:0x1D4 scope:global align:4 +createPikiHead__5PomAiFv = .text:0x80177488; // type:function size:0x228 scope:global align:4 +calcPetalStickers__5PomAiFv = .text:0x801776B0; // type:function size:0x1DC scope:global align:4 +initWait__5PomAiFi = .text:0x8017788C; // type:function size:0x200 scope:global align:4 +initDischarge__5PomAiFi = .text:0x80177A8C; // type:function size:0x1CC scope:global align:4 +update__5PomAiFv = .text:0x80177C58; // type:function size:0x898 scope:global align:4 +invoke__22PomGenOpenStarCallBackFPQ23zen17particleGenerator = .text:0x801784F0; // type:function size:0x24 scope:weak align:4 +__ct__12KingBackPropFv = .text:0x80178514; // type:function size:0x90 scope:global align:4 +__ct__8KingBackFP12CreatureProp = .text:0x801785A4; // type:function size:0x6C scope:global align:4 +getiMass__8KingBackFv = .text:0x80178610; // type:function size:0x8 scope:global align:4 +init__8KingBackFR8Vector3f = .text:0x80178618; // type:function size:0x4C scope:global align:4 +doKill__8KingBackFv = .text:0x80178664; // type:function size:0x3C scope:global align:4 +exitCourse__8KingBackFv = .text:0x801786A0; // type:function size:0x4 scope:global align:4 +update__8KingBackFv = .text:0x801786A4; // type:function size:0x4C scope:global align:4 +refresh__8KingBackFR8Graphics = .text:0x801786F0; // type:function size:0xA4 scope:global align:4 +drawShape__8KingBackFR8Graphics = .text:0x80178794; // type:function size:0x6C scope:global align:4 +doAI__8KingBackFv = .text:0x80178800; // type:function size:0x1C scope:global align:4 +doAnimation__8KingBackFv = .text:0x8017881C; // type:function size:0x44 scope:global align:4 +read__12KingBackPropFR18RandomAccessStream = .text:0x80178860; // type:function size:0x50 scope:weak align:4 +@492@read__12KingBackPropFR18RandomAccessStream = .text:0x801788B0; // type:function size:0x8 scope:weak align:4 +__ct__11NucleusPropFv = .text:0x801788B8; // type:function size:0x90 scope:global align:4 +__ct__7NucleusFP12CreatureProp = .text:0x80178948; // type:function size:0x84 scope:global align:4 +getiMass__7NucleusFv = .text:0x801789CC; // type:function size:0x8 scope:global align:4 +init__7NucleusFR8Vector3f = .text:0x801789D4; // type:function size:0x60 scope:global align:4 +doKill__7NucleusFv = .text:0x80178A34; // type:function size:0x34 scope:global align:4 +exitCourse__7NucleusFv = .text:0x80178A68; // type:function size:0x4 scope:global align:4 +update__7NucleusFv = .text:0x80178A6C; // type:function size:0x20 scope:global align:4 +refresh__7NucleusFR8Graphics = .text:0x80178A8C; // type:function size:0x98 scope:global align:4 +drawShape__7NucleusFR8Graphics = .text:0x80178B24; // type:function size:0x6C scope:global align:4 +doAI__7NucleusFv = .text:0x80178B90; // type:function size:0x24 scope:global align:4 +doAnimation__7NucleusFv = .text:0x80178BB4; // type:function size:0x44 scope:global align:4 +read__11NucleusPropFR18RandomAccessStream = .text:0x80178BF8; // type:function size:0x50 scope:weak align:4 +@492@read__11NucleusPropFR18RandomAccessStream = .text:0x80178C48; // type:function size:0x8 scope:weak align:4 +__ct__9NucleusAiFP7Nucleus = .text:0x80178C50; // type:function size:0x20 scope:global align:4 +initAI__9NucleusAiFP7Nucleus = .text:0x80178C70; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__9NucleusAiFR16PaniAnimKeyEvent = .text:0x80178CE4; // type:function size:0x7C scope:global align:4 +keyAction0__9NucleusAiFv = .text:0x80178D60; // type:function size:0x4 scope:global align:4 +keyAction1__9NucleusAiFv = .text:0x80178D64; // type:function size:0x4 scope:global align:4 +keyLoopEnd__9NucleusAiFv = .text:0x80178D68; // type:function size:0x14 scope:global align:4 +keyFinished__9NucleusAiFv = .text:0x80178D7C; // type:function size:0x10 scope:global align:4 +playSound__9NucleusAiFi = .text:0x80178D8C; // type:function size:0x4 scope:global align:4 +update__9NucleusAiFv = .text:0x80178D90; // type:function size:0x2D0 scope:global align:4 +__ct__15CoreNucleusPropFv = .text:0x80179060; // type:function size:0x90 scope:global align:4 +__ct__11CoreNucleusFP12CreatureProp = .text:0x801790F0; // type:function size:0x84 scope:global align:4 +getiMass__11CoreNucleusFv = .text:0x80179174; // type:function size:0x8 scope:global align:4 +init__11CoreNucleusFR8Vector3f = .text:0x8017917C; // type:function size:0x64 scope:global align:4 +doKill__11CoreNucleusFv = .text:0x801791E0; // type:function size:0x34 scope:global align:4 +exitCourse__11CoreNucleusFv = .text:0x80179214; // type:function size:0x4 scope:global align:4 +update__11CoreNucleusFv = .text:0x80179218; // type:function size:0x20 scope:global align:4 +refresh__11CoreNucleusFR8Graphics = .text:0x80179238; // type:function size:0x98 scope:global align:4 +drawShape__11CoreNucleusFR8Graphics = .text:0x801792D0; // type:function size:0x6C scope:global align:4 +doAI__11CoreNucleusFv = .text:0x8017933C; // type:function size:0x24 scope:global align:4 +doAnimation__11CoreNucleusFv = .text:0x80179360; // type:function size:0x44 scope:global align:4 +collisionCallback__11CoreNucleusFR9CollEvent = .text:0x801793A4; // type:function size:0x54 scope:global align:4 +read__15CoreNucleusPropFR18RandomAccessStream = .text:0x801793F8; // type:function size:0x50 scope:weak align:4 +@492@read__15CoreNucleusPropFR18RandomAccessStream = .text:0x80179448; // type:function size:0x8 scope:weak align:4 +__ct__13CoreNucleusAiFP11CoreNucleus = .text:0x80179450; // type:function size:0x20 scope:global align:4 +initAI__13CoreNucleusAiFP11CoreNucleus = .text:0x80179470; // type:function size:0x74 scope:global align:4 +animationKeyUpdated__13CoreNucleusAiFR16PaniAnimKeyEvent = .text:0x801794E4; // type:function size:0x7C scope:global align:4 +keyAction0__13CoreNucleusAiFv = .text:0x80179560; // type:function size:0x4 scope:global align:4 +keyAction1__13CoreNucleusAiFv = .text:0x80179564; // type:function size:0x4 scope:global align:4 +keyLoopEnd__13CoreNucleusAiFv = .text:0x80179568; // type:function size:0x14 scope:global align:4 +keyFinished__13CoreNucleusAiFv = .text:0x8017957C; // type:function size:0x10 scope:global align:4 +playSound__13CoreNucleusAiFi = .text:0x8017958C; // type:function size:0x4 scope:global align:4 +setHitMotionStart__13CoreNucleusAiFv = .text:0x80179590; // type:function size:0xC scope:global align:4 +update__13CoreNucleusAiFv = .text:0x8017959C; // type:function size:0x544 scope:global align:4 +__ct__8MizuPropFv = .text:0x80179AE0; // type:function size:0x90 scope:global align:4 +__ct__4MizuFP12CreatureProp = .text:0x80179B70; // type:function size:0x84 scope:global align:4 +attackDefaultPortion__4MizuFv = .text:0x80179BF4; // type:function size:0x5C scope:global align:4 +getiMass__4MizuFv = .text:0x80179C50; // type:function size:0x8 scope:global align:4 +initMizu__4MizuFR8Vector3f = .text:0x80179C58; // type:function size:0x40 scope:global align:4 +initGeyzer__4MizuFR8Vector3f = .text:0x80179C98; // type:function size:0x40 scope:global align:4 +doKill__4MizuFv = .text:0x80179CD8; // type:function size:0x4C scope:global align:4 +exitCourse__4MizuFv = .text:0x80179D24; // type:function size:0x28 scope:global align:4 +update__4MizuFv = .text:0x80179D4C; // type:function size:0x4C scope:global align:4 +refresh__4MizuFR8Graphics = .text:0x80179D98; // type:function size:0x98 scope:global align:4 +drawShape__4MizuFR8Graphics = .text:0x80179E30; // type:function size:0x6C scope:global align:4 +doAI__4MizuFv = .text:0x80179E9C; // type:function size:0x24 scope:global align:4 +doAnimation__4MizuFv = .text:0x80179EC0; // type:function size:0x44 scope:global align:4 +isVisible__4MizuFv = .text:0x80179F04; // type:function size:0x8 scope:weak align:4 +read__8MizuPropFR18RandomAccessStream = .text:0x80179F0C; // type:function size:0x50 scope:weak align:4 +@492@read__8MizuPropFR18RandomAccessStream = .text:0x80179F5C; // type:function size:0x8 scope:weak align:4 +__ct__6MizuAiFP4Mizu = .text:0x80179F64; // type:function size:0x80 scope:global align:4 +initMizu__6MizuAiFP4Mizu = .text:0x80179FE4; // type:function size:0xB8 scope:global align:4 +initGeyzer__6MizuAiFP4Mizu = .text:0x8017A09C; // type:function size:0xB8 scope:global align:4 +animationKeyUpdated__6MizuAiFR16PaniAnimKeyEvent = .text:0x8017A154; // type:function size:0x4 scope:global align:4 +killCallBackEffect__6MizuAiFb = .text:0x8017A158; // type:function size:0x7C scope:global align:4 +initWait__6MizuAiFi = .text:0x8017A1D4; // type:function size:0xBC scope:global align:4 +initReady__6MizuAiFi = .text:0x8017A290; // type:function size:0xD0 scope:global align:4 +initJet__6MizuAiFi = .text:0x8017A360; // type:function size:0x26C scope:global align:4 +update__6MizuAiFv = .text:0x8017A5CC; // type:function size:0x358 scope:global align:4 +invoke__25MizuGenSpringPuffCallBackFPQ23zen17particleGenerator = .text:0x8017A924; // type:function size:0xB0 scope:weak align:4 +calcLagrange__13NsCalculationFfPC8Vector3fR8Vector3f = .text:0x8017A9D4; // type:function size:0xC0 scope:global align:4 +calcMatrix__13NsCalculationFRC8Vector3fRC8Vector3fRC8Vector3fRC8Vector3fR8Matrix4f = .text:0x8017AA94; // type:function size:0x19C scope:global align:4 +calcJointPos__13NsCalculationFRC8Vector3fRC8Vector3fffR8Vector3fR8Vector3f = .text:0x8017AC30; // type:function size:0x2F8 scope:global align:4 +calcMat4toMat3__13NsCalculationFRC8Matrix4fR8Matrix3f = .text:0x8017AF28; // type:function size:0x4C scope:global align:4 +__ct__10ChannelMgrFv = .text:0x8017AF74; // type:function size:0x28 scope:global align:4 +start__10ChannelMgrFiPf = .text:0x8017AF9C; // type:function size:0x60 scope:global align:4 +update__10ChannelMgrFv = .text:0x8017AFFC; // type:function size:0xFC scope:global align:4 +start__12ControlerMgrFiPf = .text:0x8017B0F8; // type:function size:0x9C scope:global align:4 +__ct__9RumbleMgrFbbbb = .text:0x8017B194; // type:function size:0x120 scope:global align:4 +reset__9RumbleMgrFv = .text:0x8017B2B4; // type:function size:0x1A0 scope:global align:4 +start__9RumbleMgrFiiPf = .text:0x8017B454; // type:function size:0x8C scope:global align:4 +start__9RumbleMgrFiiR8Vector3f = .text:0x8017B4E0; // type:function size:0x120 scope:global align:4 +stop__9RumbleMgrFv = .text:0x8017B600; // type:function size:0x1C4 scope:global align:4 +stop__9RumbleMgrFii = .text:0x8017B7C4; // type:function size:0x140 scope:global align:4 +update__9RumbleMgrFv = .text:0x8017B904; // type:function size:0x16C scope:global align:4 +rumbleOption__9RumbleMgrFb = .text:0x8017BA70; // type:function size:0x31C scope:global align:4 +__ct__12RumbleSampleFi = .text:0x8017BD8C; // type:function size:0x14 scope:global align:4 +simpleStop__12RumbleSampleFv = .text:0x8017BDA0; // type:function size:0x28 scope:global align:4 +simpleStart__12RumbleSampleFf = .text:0x8017BDC8; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12OgTestScreenFv = .text:0x8017BE50; // type:function size:0x2EC scope:global align:4 +modeSelectSub__Q23zen12OgTestScreenFv = .text:0x8017C13C; // type:function size:0x4DC scope:global align:4 +update__Q23zen12OgTestScreenFv = .text:0x8017C618; // type:function size:0x188 scope:global align:4 +draw__Q23zen12OgTestScreenFR8Graphics = .text:0x8017C7A0; // type:function size:0x6A8 scope:global align:4 +__ct__Q23zen13OgTestSectionFv = .text:0x8017CE48; // type:function size:0x94 scope:global align:4 +init__Q23zen13OgTestSectionFv = .text:0x8017CEDC; // type:function size:0x80 scope:global align:4 +ogCheckInsCard__3zenFv = .text:0x8017CF5C; // type:function size:0x2C scope:global align:4 +calcPuruPuruScale__3zenFf = .text:0x8017CF88; // type:function size:0x68 scope:global align:4 +setNumberTag__3zenFP9P2DScreenUlPii = .text:0x8017CFF0; // type:function size:0x174 scope:global align:4 +getNumber__Q23zen12FigureTexFv = .text:0x8017D164; // type:function size:0x3C scope:weak align:4 +setTextColor__3zenFP10P2DTextBoxP10P2DPicture = .text:0x8017D1A0; // type:function size:0x64 scope:global align:4 +getStringCVS__3zenFPcPcs = .text:0x8017D204; // type:function size:0x88 scope:global align:4 +__ct__Q23zen12PikaAlphaMgrFP9P2DScreen = .text:0x8017D28C; // type:function size:0x328 scope:global align:4 +start__Q23zen12PikaAlphaMgrFv = .text:0x8017D5B4; // type:function size:0x6C scope:global align:4 +startFadeIn__Q23zen12PikaAlphaMgrFf = .text:0x8017D620; // type:function size:0x84 scope:global align:4 +startFadeOut__Q23zen12PikaAlphaMgrFf = .text:0x8017D6A4; // type:function size:0x84 scope:global align:4 +update__Q23zen12PikaAlphaMgrFv = .text:0x8017D728; // type:function size:0x118 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPictureffUcUc = .text:0x8017D840; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen15setTenmetuAlphaFP10P2DPicturef = .text:0x8017D930; // type:function size:0xF0 scope:global align:4 +updateColor__Q23zen15setTenmetuAlphaFv = .text:0x8017DA20; // type:function size:0x368 scope:global align:4 +start__Q23zen15setTenmetuAlphaFv = .text:0x8017DD88; // type:function size:0x24 scope:global align:4 +startFadeIn__Q23zen15setTenmetuAlphaFfff = .text:0x8017DDAC; // type:function size:0x60 scope:global align:4 +startFadeOut__Q23zen15setTenmetuAlphaFfff = .text:0x8017DE0C; // type:function size:0x48 scope:global align:4 +update__Q23zen15setTenmetuAlphaFv = .text:0x8017DE54; // type:function size:0x358 scope:global align:4 +__ct__Q23zen9ogFadeMgrFP7P2DPaneUc = .text:0x8017E1AC; // type:function size:0x80 scope:global align:4 +start__Q23zen9ogFadeMgrFQ33zen9ogFadeMgr16ogFadeStatusFlagf = .text:0x8017E22C; // type:function size:0x68 scope:global align:4 +setAlpha__Q23zen9ogFadeMgrFv = .text:0x8017E294; // type:function size:0x78 scope:global align:4 +update__Q23zen9ogFadeMgrFv = .text:0x8017E30C; // type:function size:0x140 scope:global align:4 +move__7P2DPaneFii = .text:0x8017E44C; // type:function size:0x24 scope:weak align:4 +__ct__Q23zen15ogTexAnimSubMgrFP9P2DScreenP10P2DPictureP10P2DTextBox = .text:0x8017E470; // type:function size:0x178 scope:global align:4 +__ct__Q23zen12ogTexAnimMgrFP9P2DScreen = .text:0x8017E5E8; // type:function size:0xF4 scope:global align:4 +update__Q23zen12ogTexAnimMgrFv = .text:0x8017E6DC; // type:function size:0x14C scope:global align:4 +getSpecialNumber__3zenFi = .text:0x8017E828; // type:function size:0x30 scope:global align:4 +setSpecialNumber__3zenFii = .text:0x8017E858; // type:function size:0x2C scope:global align:4 +cnvSpecialNumber__3zenFPc = .text:0x8017E884; // type:function size:0x218 scope:global align:4 +__ct__Q23zen13TypingTextMgrFP10P2DTextBox = .text:0x8017EA9C; // type:function size:0x90 scope:global align:4 +start__Q23zen13TypingTextMgrFv = .text:0x8017EB2C; // type:function size:0x74 scope:global align:4 +__ct__Q23zen15ogMsgCtrlTagMgrFv = .text:0x8017EBA0; // type:function size:0x160 scope:global align:4 +CheckCtrlTag__Q23zen15ogMsgCtrlTagMgrFPcPsPf = .text:0x8017ED00; // type:function size:0x3A8 scope:global align:4 +update__Q23zen13TypingTextMgrFv = .text:0x8017F0A8; // type:function size:0x104 scope:global align:4 +cnvSpecialNumberHyphen__3zenFPc = .text:0x8017F1AC; // type:function size:0x3B4 scope:global align:4 +draw__15P2DPaneCallBackFP7P2DPane = .text:0x8017F560; // type:function size:0x8 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x8017F568; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRi = .text:0x8017F760; // type:function size:0x3C scope:weak align:4 +__ct__Q23zen13ogScrTitleMgrFv = .text:0x8017F79C; // type:function size:0x48C scope:global align:4 +start__Q23zen13ogScrTitleMgrFb = .text:0x8017FC28; // type:function size:0xE4 scope:global align:4 +update__Q23zen13ogScrTitleMgrFP10Controller = .text:0x8017FD0C; // type:function size:0x9BC scope:global align:4 +draw__Q23zen13ogScrTitleMgrFR8Graphics = .text:0x801806C8; // type:function size:0x98 scope:global align:4 +StereoOnOff__Q23zen13ogScrTitleMgrFb = .text:0x80180760; // type:function size:0xC4 scope:global align:4 +DispBarBGM__Q23zen13ogScrTitleMgrFb = .text:0x80180824; // type:function size:0xD4 scope:global align:4 +DispBarSE__Q23zen13ogScrTitleMgrFb = .text:0x801808F8; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen13ogScrPauseMgrFv = .text:0x801809CC; // type:function size:0x324 scope:global align:4 +start__Q23zen13ogScrPauseMgrFb = .text:0x80180CF0; // type:function size:0x8C scope:global align:4 +update__Q23zen13ogScrPauseMgrFP10Controller = .text:0x80180D7C; // type:function size:0x3C0 scope:global align:4 +draw__Q23zen13ogScrPauseMgrFR8Graphics = .text:0x8018113C; // type:function size:0xB0 scope:global align:4 +__dt__13P2DPerspGraphFv = .text:0x801811EC; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16ogScrTutorialMgrFv = .text:0x80181248; // type:function size:0x80 scope:global align:4 +update__Q23zen16ogScrTutorialMgrFP10Controller = .text:0x801812C8; // type:function size:0xBC scope:global align:4 +draw__Q23zen16ogScrTutorialMgrFR8Graphics = .text:0x80181384; // type:function size:0x30 scope:global align:4 +start__Q23zen16ogScrTutorialMgrFQ33zen16ogScrTutorialMgr12EnumTutorial = .text:0x801813B4; // type:function size:0xE0 scope:global align:4 +start__Q23zen11ogScrMapMgrFs = .text:0x80181494; // type:function size:0xD4 scope:global align:4 +__ct__Q23zen11ogScrMapMgrFv = .text:0x80181568; // type:function size:0x1CC scope:global align:4 +update__Q23zen11ogScrMapMgrFP10Controller = .text:0x80181734; // type:function size:0x29C scope:global align:4 +fmodf__3stdFff = .text:0x801819D0; // type:function size:0x60 scope:weak align:4 +draw__Q23zen11ogScrMapMgrFR8Graphics = .text:0x80181A30; // type:function size:0x8C scope:global align:4 +ogScrResultMgrSub__Q23zen14ogScrResultMgrFv = .text:0x80181ABC; // type:function size:0xDE0 scope:global align:4 +__ct__Q23zen14ogScrResultMgrFv = .text:0x8018289C; // type:function size:0x17C scope:global align:4 +__ct__Q23zen14ogScrResultMgrFPQ23zen10EnumResult = .text:0x80182A18; // type:function size:0x170 scope:global align:4 +start__Q23zen14ogScrResultMgrFv = .text:0x80182B88; // type:function size:0x744 scope:global align:4 +update__Q23zen14ogScrResultMgrFP10Controller = .text:0x801832CC; // type:function size:0x384 scope:global align:4 +draw__Q23zen14ogScrResultMgrFR8Graphics = .text:0x80183650; // type:function size:0x104 scope:global align:4 +__ct__Q23zen10ogRaderMgrFv = .text:0x80183754; // type:function size:0x970 scope:global align:4 +setRaderAngle__Q23zen10ogRaderMgrFf = .text:0x801840C4; // type:function size:0x8C scope:global align:4 +setRaderScroll__Q23zen10ogRaderMgrFii = .text:0x80184150; // type:function size:0x98 scope:global align:4 +getPartsPos__Q23zen10ogRaderMgrFv = .text:0x801841E8; // type:function size:0x220 scope:global align:4 +getAllPikiPos__Q23zen10ogRaderMgrFv = .text:0x80184408; // type:function size:0x4E4 scope:global align:4 +startSub__Q23zen10ogRaderMgrFv = .text:0x801848EC; // type:function size:0x5D4 scope:global align:4 +rotate__7P2DPaneF13P2DRotateAxisf = .text:0x80184EC0; // type:function size:0x48 scope:weak align:4 +startMenu__Q23zen10ogRaderMgrFP7P2DPane = .text:0x80184F08; // type:function size:0x128 scope:global align:4 +MapOn__Q23zen10ogRaderMgrFv = .text:0x80185030; // type:function size:0x24 scope:global align:4 +updateGame__Q23zen10ogRaderMgrFP10Controller = .text:0x80185054; // type:function size:0x168 scope:global align:4 +AreaScroll__Q23zen10ogRaderMgrFPfPfff = .text:0x801851BC; // type:function size:0x100 scope:global align:4 +updateMenu__Q23zen10ogRaderMgrFP10Controller = .text:0x801852BC; // type:function size:0x330 scope:global align:4 +update__Q23zen10ogRaderMgrFP10Controller = .text:0x801855EC; // type:function size:0x748 scope:global align:4 +end__Q23zen10ogRaderMgrFv = .text:0x80185D34; // type:function size:0x3C scope:global align:4 +draw__Q23zen10ogRaderMgrFR8Graphics = .text:0x80185D70; // type:function size:0x16C scope:global align:4 +copyCardInfosSub__Q23zen18ogScrFileSelectMgrFv = .text:0x80185EDC; // type:function size:0x140 scope:global align:4 +getCardFileInfos__Q23zen18ogScrFileSelectMgrFv = .text:0x8018601C; // type:function size:0x1F0 scope:global align:4 +paneOnOffXY__Q23zen18ogScrFileSelectMgrFb = .text:0x8018620C; // type:function size:0x20 scope:global align:4 +MovePaneXY__Q23zen18ogScrFileSelectMgrFv = .text:0x8018622C; // type:function size:0xE0 scope:global align:4 +OpenYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x8018630C; // type:function size:0xB4 scope:global align:4 +CloseYesNoWindow__Q23zen18ogScrFileSelectMgrFv = .text:0x801863C0; // type:function size:0x14 scope:global align:4 +setOperateMode__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr15FileOperateMode = .text:0x801863D4; // type:function size:0xF0 scope:global align:4 +getPane_FileTop1__Q23zen18ogScrFileSelectMgrFv = .text:0x801864C4; // type:function size:0x4E0 scope:global align:4 +getPane_FileTop2__Q23zen18ogScrFileSelectMgrFv = .text:0x801869A4; // type:function size:0x32C scope:global align:4 +setFileData__Q23zen18ogScrFileSelectMgrFi = .text:0x80186CD0; // type:function size:0x164 scope:global align:4 +getPane_FileIcon__Q23zen18ogScrFileSelectMgrFv = .text:0x80186E34; // type:function size:0x520 scope:global align:4 +OnOffKetaNissuu__Q23zen18ogScrFileSelectMgrFi = .text:0x80187354; // type:function size:0x1B8 scope:global align:4 +getPane_CpyCurScreen__Q23zen18ogScrFileSelectMgrFv = .text:0x8018750C; // type:function size:0x2F0 scope:global align:4 +SetTitleMsg__Q23zen18ogScrFileSelectMgrFQ33zen18ogScrFileSelectMgr16titleMessageFlag = .text:0x801877FC; // type:function size:0x340 scope:global align:4 +setDataNumber__Q23zen18ogScrFileSelectMgrFi = .text:0x80187B3C; // type:function size:0x2C8 scope:global align:4 +__ct__Q23zen18ogScrFileSelectMgrFv = .text:0x80187E04; // type:function size:0x8F8 scope:global align:4 +__ct__13CardQuickInfoFv = .text:0x801886FC; // type:function size:0xC scope:weak align:4 +chaseDataScale__Q23zen18ogScrFileSelectMgrFv = .text:0x80188708; // type:function size:0x1B8 scope:global align:4 +OnOffNewPane__Q23zen18ogScrFileSelectMgrFi = .text:0x801888C0; // type:function size:0x1B8 scope:global align:4 +ChkOnyonOnOff__Q23zen18ogScrFileSelectMgrFv = .text:0x80188A78; // type:function size:0xB8 scope:global align:4 +ChkNewData__Q23zen18ogScrFileSelectMgrFv = .text:0x80188B30; // type:function size:0x88 scope:global align:4 +start__Q23zen18ogScrFileSelectMgrFbi = .text:0x80188BB8; // type:function size:0x404 scope:global align:4 +OperateSelect__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80188FBC; // type:function size:0x36C scope:global align:4 +KetteiEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x80189328; // type:function size:0x1FC scope:global align:4 +TailEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x80189524; // type:function size:0x1D4 scope:global align:4 +update__Q23zen18ogScrFileSelectMgrFP10ControllerR13CardQuickInfo = .text:0x801896F8; // type:function size:0xA34 scope:global align:4 +__ct__6ColourFRC6Colour = .text:0x8018A12C; // type:function size:0x24 scope:weak align:4 +draw__Q23zen18ogScrFileSelectMgrFR8Graphics = .text:0x8018A150; // type:function size:0x15C scope:global align:4 +SearchTopPage__Q23zen15ogScrMessageMgrFi = .text:0x8018A2AC; // type:function size:0x48 scope:global align:4 +resetPage__Q23zen15ogScrMessageMgrFv = .text:0x8018A2F4; // type:function size:0x11C scope:global align:4 +start__Q23zen15ogScrMessageMgrFi = .text:0x8018A410; // type:function size:0x80 scope:global align:4 +setPage__Q23zen15ogScrMessageMgrFi = .text:0x8018A490; // type:function size:0x5C scope:global align:4 +nextPage__Q23zen15ogScrMessageMgrFv = .text:0x8018A4EC; // type:function size:0x58 scope:global align:4 +backPage__Q23zen15ogScrMessageMgrFv = .text:0x8018A544; // type:function size:0x54 scope:global align:4 +makePageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018A598; // type:function size:0x1DC scope:global align:4 +cnvSingleMulti__Q23zen15ogScrMessageMgrFPc = .text:0x8018A774; // type:function size:0x18C scope:global align:4 +cnvButtonIcon__Q23zen15ogScrMessageMgrFPc = .text:0x8018A900; // type:function size:0x170 scope:global align:4 +setPageInfoSub__Q23zen15ogScrMessageMgrFv = .text:0x8018AA70; // type:function size:0x234 scope:global align:4 +MakeAndSetPageInfo__Q23zen15ogScrMessageMgrFPPPc = .text:0x8018ACA4; // type:function size:0x48 scope:global align:4 +__ct__Q23zen15ogScrMessageMgrFPc = .text:0x8018ACEC; // type:function size:0x2A4 scope:global align:4 +dispAll__Q23zen15ogScrMessageMgrFv = .text:0x8018AF90; // type:function size:0x170 scope:global align:4 +fadeOut__Q23zen15ogScrMessageMgrFv = .text:0x8018B100; // type:function size:0x14 scope:global align:4 +update__Q23zen15ogScrMessageMgrFP10Controller = .text:0x8018B114; // type:function size:0x57C scope:global align:4 +draw__Q23zen15ogScrMessageMgrFR8Graphics = .text:0x8018B690; // type:function size:0x104 scope:global align:4 +__ct__Q23zen14ogScrMemChkMgrFv = .text:0x8018B794; // type:function size:0x9D0 scope:global align:4 +StatusCheck__Q23zen14ogScrMemChkMgrFv = .text:0x8018C164; // type:function size:0x258 scope:global align:4 +setPCtex__Q23zen14ogScrMemChkMgrFPQ23zen13TypingTextMgr = .text:0x8018C3BC; // type:function size:0x44 scope:global align:4 +DispYesNo__Q23zen14ogScrMemChkMgrFb = .text:0x8018C400; // type:function size:0x38 scope:global align:4 +DispAcup__Q23zen14ogScrMemChkMgrFb = .text:0x8018C438; // type:function size:0x38 scope:global align:4 +start__Q23zen14ogScrMemChkMgrFv = .text:0x8018C470; // type:function size:0x224 scope:global align:4 +DebugStart__Q23zen14ogScrMemChkMgrFi = .text:0x8018C694; // type:function size:0x190 scope:global align:4 +update__Q23zen14ogScrMemChkMgrFP10Controller = .text:0x8018C824; // type:function size:0xEC4 scope:global align:4 +draw__Q23zen14ogScrMemChkMgrFR8Graphics = .text:0x8018D6E8; // type:function size:0x110 scope:global align:4 +setErrorMessage__Q23zen14ogScrMemChkMgrFv = .text:0x8018D7F8; // type:function size:0x144 scope:global align:4 +__ct__Q23zen13ogScrDiaryMgrFv = .text:0x8018D93C; // type:function size:0x150 scope:global align:4 +update__Q23zen13ogScrDiaryMgrFP10Controller = .text:0x8018DA8C; // type:function size:0xFC scope:global align:4 +draw__Q23zen13ogScrDiaryMgrFR8Graphics = .text:0x8018DB88; // type:function size:0x178 scope:global align:4 +start__Q23zen13ogScrDiaryMgrFss = .text:0x8018DD00; // type:function size:0x294 scope:global align:4 +typePage__Q23zen13ogScrDiaryMgrFv = .text:0x8018DF94; // type:function size:0x9C scope:global align:4 +nextPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018E030; // type:function size:0xC8 scope:global align:4 +backPage__Q23zen13ogScrDiaryMgrFv = .text:0x8018E0F8; // type:function size:0xA0 scope:global align:4 +exit__Q23zen13ogScrDiaryMgrFv = .text:0x8018E198; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11ogDrawDiaryFv = .text:0x8018E1BC; // type:function size:0x158 scope:global align:4 +open__Q23zen11ogDrawDiaryFffs = .text:0x8018E314; // type:function size:0x298 scope:global align:4 +update__Q23zen11ogDrawDiaryFP10Controller = .text:0x8018E5AC; // type:function size:0x2B8 scope:global align:4 +__ct__Q23zen17ogDrawSelectDiaryFv = .text:0x8018E864; // type:function size:0x430 scope:global align:4 +start__Q23zen17ogDrawSelectDiaryFv = .text:0x8018EC94; // type:function size:0x1C8 scope:global align:4 +setCursorAlpha__Q23zen17ogDrawSelectDiaryFv = .text:0x8018EE5C; // type:function size:0x10C scope:global align:4 +MoveCursor__Q23zen17ogDrawSelectDiaryFv = .text:0x8018EF68; // type:function size:0x104 scope:global align:4 +update__Q23zen17ogDrawSelectDiaryFP10Controller = .text:0x8018F06C; // type:function size:0x880 scope:global align:4 +draw__Q23zen17ogDrawSelectDiaryFR8Graphics = .text:0x8018F8EC; // type:function size:0xF0 scope:global align:4 +__ct__Q23zen13ogDrawScrMenuFv = .text:0x8018F9DC; // type:function size:0xC0 scope:global align:4 +update__Q23zen13ogDrawScrMenuFP10Controllerbb = .text:0x8018FA9C; // type:function size:0x350 scope:global align:4 +move__7P2DPaneFiif = .text:0x8018FDEC; // type:function size:0x40 scope:weak align:4 +__ct__Q23zen19ogDrawScrControllerFv = .text:0x8018FE2C; // type:function size:0x278 scope:global align:4 +update__Q23zen19ogDrawScrControllerFv = .text:0x801900A4; // type:function size:0x41C scope:global align:4 +__ct__Q23zen13ogDrawScrInfoFv = .text:0x801904C0; // type:function size:0x554 scope:global align:4 +start__Q23zen13ogDrawScrInfoFv = .text:0x80190A14; // type:function size:0x300 scope:global align:4 +__ct__Q23zen12ogScrMenuMgrFv = .text:0x80190D14; // type:function size:0x3FC scope:global align:4 +start__Q23zen12ogScrMenuMgrFv = .text:0x80191110; // type:function size:0x26C scope:global align:4 +update__Q23zen12ogScrMenuMgrFP10Controller = .text:0x8019137C; // type:function size:0x598 scope:global align:4 +draw__Q23zen12ogScrMenuMgrFR8Graphics = .text:0x80191914; // type:function size:0x3C8 scope:global align:4 +__ct__Q23zen18ogScrFileChkSelMgrFv = .text:0x80191CDC; // type:function size:0x110 scope:global align:4 +start__Q23zen18ogScrFileChkSelMgrFb = .text:0x80191DEC; // type:function size:0x50 scope:global align:4 +startSave__Q23zen18ogScrFileChkSelMgrFv = .text:0x80191E3C; // type:function size:0x54 scope:global align:4 +update__Q23zen18ogScrFileChkSelMgrFP10ControllerR13CardQuickInfo = .text:0x80191E90; // type:function size:0x198 scope:global align:4 +draw__Q23zen18ogScrFileChkSelMgrFR8Graphics = .text:0x80192028; // type:function size:0xBC scope:global align:4 +__ct__Q23zen19ogScrMakeDefaultMgrFv = .text:0x801920E4; // type:function size:0x360 scope:global align:4 +start__Q23zen19ogScrMakeDefaultMgrFv = .text:0x80192444; // type:function size:0xEC scope:global align:4 +update__Q23zen19ogScrMakeDefaultMgrFP10Controller = .text:0x80192530; // type:function size:0x354 scope:global align:4 +draw__Q23zen19ogScrMakeDefaultMgrFR8Graphics = .text:0x80192884; // type:function size:0xA8 scope:global align:4 +checkTypingAll__Q23zen19ogScrMakeDefaultMgrFv = .text:0x8019292C; // type:function size:0x20 scope:global align:4 +__ct__Q23zen18ogScrTotalScoreMgrFPQ23zen14TotalScoreType = .text:0x8019294C; // type:function size:0xA0C scope:global align:4 +start__Q23zen18ogScrTotalScoreMgrFv = .text:0x80193358; // type:function size:0x3C scope:global align:4 +update__Q23zen18ogScrTotalScoreMgrFP10Controller = .text:0x80193394; // type:function size:0x190 scope:global align:4 +draw__Q23zen18ogScrTotalScoreMgrFR8Graphics = .text:0x80193524; // type:function size:0xA4 scope:global align:4 +setRankInEffect__Q23zen18ogScrTotalScoreMgrFv = .text:0x801935C8; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen18ogScrTotalScoreMgrFv = .text:0x80193CB4; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen9ogSaveMgrFv = .text:0x80193E88; // type:function size:0x73C scope:global align:4 +start__Q23zen9ogSaveMgrFv = .text:0x801945C4; // type:function size:0xC0 scope:global align:4 +update__Q23zen9ogSaveMgrFP10Controller = .text:0x80194684; // type:function size:0x834 scope:global align:4 +draw__Q23zen9ogSaveMgrFR8Graphics = .text:0x80194EB8; // type:function size:0xF4 scope:global align:4 +__ct__Q23zen11ogNitakuMgrFP9P2DScreenP10P2DTextBoxP10P2DTextBoxP10P2DTextBoxbb = .text:0x80194FAC; // type:function size:0x3E4 scope:global align:4 +start__Q23zen11ogNitakuMgrFv = .text:0x80195390; // type:function size:0x168 scope:global align:4 +cursorEnable__Q23zen11ogNitakuMgrFf = .text:0x801954F8; // type:function size:0x54 scope:global align:4 +cursorDisable__Q23zen11ogNitakuMgrFf = .text:0x8019554C; // type:function size:0x54 scope:global align:4 +update__Q23zen11ogNitakuMgrFP10Controller = .text:0x801955A0; // type:function size:0x344 scope:global align:4 +setOperateMode_Copy__Q23zen18ogScrFileSelectMgrFv = .text:0x801958E4; // type:function size:0x10C scope:global align:4 +CopyEffectStart__Q23zen18ogScrFileSelectMgrFv = .text:0x801959F0; // type:function size:0x3A8 scope:global align:4 +OperateCopy__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80195D98; // type:function size:0x488 scope:global align:4 +setOperateMode_Delete__Q23zen18ogScrFileSelectMgrFv = .text:0x80196220; // type:function size:0x64 scope:global align:4 +OperateDelete__Q23zen18ogScrFileSelectMgrFP10Controller = .text:0x80196284; // type:function size:0x3EC scope:global align:4 +__ct__Q23zen10ogGraphMgrFP9P2DScreen = .text:0x80196670; // type:function size:0xC4 scope:global align:4 +SetDummyLineData__Q23zen10ogGraphMgrFv = .text:0x80196734; // type:function size:0x304 scope:global align:4 +MakeData__Q23zen10ogGraphMgrFv = .text:0x80196A38; // type:function size:0x320 scope:global align:4 +setGraphGX__3zenFPviUc = .text:0x80196D58; // type:function size:0x29C scope:local align:4 +draw__Q23zen10ogGraphMgrFUc = .text:0x80196FF4; // type:function size:0xDC scope:global align:4 +__ct__Q23zen13ogScrStartMgrFv = .text:0x801970D0; // type:function size:0xF8 scope:global align:4 +start__Q23zen13ogScrStartMgrFv = .text:0x801971C8; // type:function size:0x38 scope:global align:4 +stop__Q23zen13ogScrStartMgrFv = .text:0x80197200; // type:function size:0x28 scope:global align:4 +update__Q23zen13ogScrStartMgrFP10Controller = .text:0x80197228; // type:function size:0x1C0 scope:global align:4 +draw__Q23zen13ogScrStartMgrFR8Graphics = .text:0x801973E8; // type:function size:0x8C scope:global align:4 +__ct__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80197474; // type:function size:0xEC scope:global align:4 +setTargetColor__Q23zen17TextColorCallBackFR6ColourR6Colourf = .text:0x80197560; // type:function size:0xC4 scope:global align:4 +invoke__Q23zen17TextColorCallBackFP7P2DPane = .text:0x80197624; // type:function size:0x538 scope:global align:4 +menuQuitGame__21GameCourseClearScreenFR4Menu = .text:0x80197B5C; // type:function size:0x60 scope:weak align:4 +__ct__22GameCourseClearSectionFv = .text:0x80197BBC; // type:function size:0xD38 scope:global align:4 +__ct__12CMresultModeFv = .text:0x801988F4; // type:function size:0xAC scope:weak align:4 +__ct__11GameModeMgrFi = .text:0x801989A0; // type:function size:0x78 scope:weak align:4 +__ct__Q23zen17particleGeneratorFv = .text:0x80198A18; // type:function size:0x188 scope:weak align:4 +__ct__Q23zen14zenListManagerFv = .text:0x80198BA0; // type:function size:0x30 scope:weak align:4 +remove__Q23zen17particleGeneratorFv = .text:0x80198BD0; // type:function size:0x40 scope:weak align:4 +update__12CMresultModeFP10Controller = .text:0x80198C10; // type:function size:0x84 scope:weak align:4 +draw__12CMresultModeFR8Graphics = .text:0x80198C94; // type:function size:0x24 scope:weak align:4 +update__11HurryUpModeFP10Controller = .text:0x80198CB8; // type:function size:0x80 scope:weak align:4 +draw__11HurryUpModeFR8Graphics = .text:0x80198D38; // type:function size:0x24 scope:weak align:4 +update__12GameInfoModeFP10Controller = .text:0x80198D5C; // type:function size:0xC0 scope:weak align:4 +draw__12GameInfoModeFR8Graphics = .text:0x80198E1C; // type:function size:0x24 scope:weak align:4 +update__15ProgressiveModeFP10Controller = .text:0x80198E40; // type:function size:0x80 scope:weak align:4 +draw__15ProgressiveModeFR8Graphics = .text:0x80198EC0; // type:function size:0x24 scope:weak align:4 +update__13CountDownModeFP10Controller = .text:0x80198EE4; // type:function size:0xE4 scope:weak align:4 +draw__13CountDownModeFR8Graphics = .text:0x80198FC8; // type:function size:0x24 scope:weak align:4 +update__12GameOverModeFP10Controller = .text:0x80198FEC; // type:function size:0xD4 scope:weak align:4 +draw__12GameOverModeFR8Graphics = .text:0x801990C0; // type:function size:0x24 scope:weak align:4 +update__13ContainerModeFP10Controller = .text:0x801990E4; // type:function size:0x130 scope:weak align:4 +draw__13ContainerModeFR8Graphics = .text:0x80199214; // type:function size:0x24 scope:weak align:4 +update__11WMPauseModeFP10Controller = .text:0x80199238; // type:function size:0x80 scope:weak align:4 +draw__11WMPauseModeFR8Graphics = .text:0x801992B8; // type:function size:0x24 scope:weak align:4 +update__12WorldMapModeFP10Controller = .text:0x801992DC; // type:function size:0x88 scope:weak align:4 +draw__12WorldMapModeFR8Graphics = .text:0x80199364; // type:function size:0x24 scope:weak align:4 +update__18CMcourseSelectModeFP10Controller = .text:0x80199388; // type:function size:0x90 scope:weak align:4 +draw__18CMcourseSelectModeFR8Graphics = .text:0x80199418; // type:function size:0x24 scope:weak align:4 +update__11HiScoreModeFP10Controller = .text:0x8019943C; // type:function size:0x80 scope:weak align:4 +draw__11HiScoreModeFR8Graphics = .text:0x801994BC; // type:function size:0x24 scope:weak align:4 +update__12UfoPartsModeFP10Controller = .text:0x801994E0; // type:function size:0x80 scope:weak align:4 +draw__12UfoPartsModeFR8Graphics = .text:0x80199560; // type:function size:0x24 scope:weak align:4 +update__11SaveMesModeFP10Controller = .text:0x80199584; // type:function size:0xB0 scope:weak align:4 +draw__11SaveMesModeFR8Graphics = .text:0x80199634; // type:function size:0x24 scope:weak align:4 +update__15SaveFailureModeFP10Controller = .text:0x80199658; // type:function size:0x80 scope:weak align:4 +draw__15SaveFailureModeFR8Graphics = .text:0x801996D8; // type:function size:0x24 scope:weak align:4 +update__15FinalResultModeFP10Controller = .text:0x801996FC; // type:function size:0x80 scope:weak align:4 +draw__15FinalResultModeFR8Graphics = .text:0x8019977C; // type:function size:0x24 scope:weak align:4 +update__12GameModeBaseFP10Controller = .text:0x801997A0; // type:function size:0x40 scope:weak align:4 +draw__12GameModeBaseFR8Graphics = .text:0x801997E0; // type:function size:0x4 scope:weak align:4 +update__21GameCourseClearScreenFv = .text:0x801997E4; // type:function size:0x154 scope:weak align:4 +updateSelect__11GameModeMgrFP10Controller = .text:0x80199938; // type:function size:0xA8 scope:weak align:4 +draw__21GameCourseClearScreenFR8Graphics = .text:0x801999E0; // type:function size:0x358 scope:weak align:4 +drawSelect__11GameModeMgrFR8GraphicsP4Font = .text:0x80199D38; // type:function size:0x1BC scope:weak align:4 +read__21GameCourseClearScreenFR18RandomAccessStream = .text:0x80199EF4; // type:function size:0x24 scope:weak align:4 +init__22GameCourseClearSectionFv = .text:0x80199F18; // type:function size:0x4 scope:weak align:4 +invoke__41Delegate1<21GameCourseClearScreen,R4Menu>FR4Menu = .text:0x80199F1C; // type:function size:0x30 scope:weak align:4 +__ct__21GameStageClearSectionFv = .text:0x80199F4C; // type:function size:0x80 scope:global align:4 +init__21GameStageClearSectionFv = .text:0x80199FCC; // type:function size:0x4 scope:weak align:4 +__ct__18GameCreditsSectionFv = .text:0x80199FD0; // type:function size:0x94 scope:global align:4 +init__18GameCreditsSectionFv = .text:0x8019A064; // type:function size:0x4 scope:weak align:4 +getDistPointAndLine__3zenF8Vector3f8Vector3f8Vector3fRf = .text:0x8019A068; // type:function size:0x1C0 scope:global align:4 +makeRotMatrix__3zenFR8Vector3fR8Matrix3f = .text:0x8019A228; // type:function size:0x180 scope:global align:4 +draw__12SmokeEmitterFR8Graphics = .text:0x8019A3A8; // type:function size:0x31C scope:global align:4 +update__10EffShpInstFv = .text:0x8019A6C4; // type:function size:0x134 scope:global align:4 +create__26EffectGeometryRegistrationFR8Vector3fR8Vector3fR8Vector3f = .text:0x8019A7F8; // type:function size:0xFC scope:global align:4 +__ct__9EffectMgrFv = .text:0x8019A8F4; // type:function size:0x64C scope:global align:4 +initEffectGeometry__9EffectMgrFi = .text:0x8019AF40; // type:function size:0x140 scope:global align:4 +update__9EffectMgrFv = .text:0x8019B080; // type:function size:0x7C scope:global align:4 +draw__9EffectMgrFR8Graphics = .text:0x8019B0FC; // type:function size:0x3C scope:global align:4 +drawshapes__9EffectMgrFR8Graphics = .text:0x8019B138; // type:function size:0x118 scope:global align:4 +exit__9EffectMgrFv = .text:0x8019B250; // type:function size:0x30 scope:global align:4 +create__9EffectMgrFQ29EffectMgr12effTypeTableR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019B280; // type:function size:0x44 scope:global align:4 +create__26EffectParticleRegistrationFR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019B2C4; // type:function size:0x40 scope:weak align:4 +create__9EffectMgrFQ29EffectMgr14modelTypeTableR8Vector3fR8Vector3fR8Vector3f = .text:0x8019B304; // type:function size:0x44 scope:global align:4 +getShapeInst__9EffectMgrFv = .text:0x8019B348; // type:function size:0xA8 scope:global align:4 +killAllShapes__9EffectMgrFv = .text:0x8019B3F0; // type:function size:0x64 scope:global align:4 +init__Q23zen17particleGeneratorFPUcP7TextureP7TextureR8Vector3fPQ23zen18particleMdlManagerPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019B454; // type:function size:0x24C scope:global align:4 +update__Q23zen17particleGeneratorFf = .text:0x8019B6A0; // type:function size:0x154 scope:global align:4 +draw__Q23zen17particleGeneratorFR8Graphics = .text:0x8019B7F4; // type:function size:0x178 scope:global align:4 +pmSetDDF__Q23zen17particleGeneratorFPUc = .text:0x8019B96C; // type:function size:0xB58 scope:global align:4 +SetPtclsLife__Q23zen17particleGeneratorFv = .text:0x8019C4C4; // type:function size:0x2F8 scope:global align:4 +PtclsGen__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019C7BC; // type:function size:0xF00 scope:global align:4 +pmCalcAccel__Q23zen17particleGeneratorFPQ23zen11particleMdl = .text:0x8019D6BC; // type:function size:0x754 scope:global align:4 +UpdatePtclsStatus__Q23zen17particleGeneratorFf = .text:0x8019DE10; // type:function size:0x648 scope:global align:4 +ClearPtclsStatus__Q23zen17particleGeneratorFP7TextureP7Texture = .text:0x8019E458; // type:function size:0x1C4 scope:global align:4 +drawPtclBillboard__Q23zen17particleGeneratorFR8Graphics = .text:0x8019E61C; // type:function size:0x1DC scope:global align:4 +drawPtclOriented__Q23zen17particleGeneratorFR8Graphics = .text:0x8019E7F8; // type:function size:0x6A8 scope:global align:4 +RotAxisX__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019EEA0; // type:function size:0x3C scope:global align:4 +RotAxisY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019EEDC; // type:function size:0x3C scope:global align:4 +RotAxisZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019EF18; // type:function size:0x3C scope:global align:4 +RotAxisXY__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019EF54; // type:function size:0x54 scope:global align:4 +RotAxisXZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019EFA8; // type:function size:0x5C scope:global align:4 +RotAxisYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019F004; // type:function size:0x5C scope:global align:4 +RotAxisXYZ__Q23zen17particleGeneratorFRA3_A4_fRfRf = .text:0x8019F060; // type:function size:0x8C scope:global align:4 +updatePtclChildren__Q23zen17particleGeneratorFf = .text:0x8019F0EC; // type:function size:0x110 scope:global align:4 +drawPtclChildren__Q23zen17particleGeneratorFR8Graphics = .text:0x8019F1FC; // type:function size:0x148 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFv = .text:0x8019F344; // type:function size:0xCC scope:global align:4 +finish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019F410; // type:function size:0x34 scope:global align:4 +forceFinish__Q23zen17particleGeneratorFPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019F444; // type:function size:0xF0 scope:global align:4 +pmGetParticle__Q23zen17particleGeneratorFv = .text:0x8019F534; // type:function size:0x70 scope:global align:4 +get__Q23zen14zenListManagerFv = .text:0x8019F5A4; // type:function size:0x54 scope:weak align:4 +pmGetParticleChild__Q23zen17particleGeneratorFv = .text:0x8019F5F8; // type:function size:0x74 scope:global align:4 +load__Q23zen14particleLoaderFPcb = .text:0x8019F66C; // type:function size:0x158 scope:global align:4 +pmFind__Q23zen14particleLoaderFPc = .text:0x8019F7C4; // type:function size:0x84 scope:global align:4 +init__Q23zen15particleManagerFUlUlUlf = .text:0x8019F848; // type:function size:0x13C scope:global align:4 +__dt__Q23zen17particleGeneratorFv = .text:0x8019F984; // type:function size:0x4C scope:weak align:4 +createGenerator__Q23zen15particleManagerFPUcP7TextureP7TextureR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x8019F9D0; // type:function size:0x74 scope:global align:4 +update__Q23zen15particleManagerFv = .text:0x8019FA44; // type:function size:0x110 scope:global align:4 +draw__Q23zen15particleManagerFR8Graphics = .text:0x8019FB54; // type:function size:0x74 scope:global align:4 +cullingDraw__Q23zen15particleManagerFR8Graphics = .text:0x8019FBC8; // type:function size:0xA8 scope:global align:4 +killAllGenarator__Q23zen15particleManagerFb = .text:0x8019FC70; // type:function size:0x9C scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen17particleGeneratorb = .text:0x8019FD0C; // type:function size:0x98 scope:global align:4 +killGenerator__Q23zen15particleManagerFPQ23zen37CallBack1PQ23zen58CallBack2b = .text:0x8019FDA4; // type:function size:0xB4 scope:global align:4 +pmCheckList__Q23zen15particleManagerFPQ23zen17particleGenerator = .text:0x8019FE58; // type:function size:0x30 scope:global align:4 +pmGetPtclGen__Q23zen15particleManagerFv = .text:0x8019FE88; // type:function size:0x94 scope:global align:4 +init__Q23zen18particleMdlManagerFUlUl = .text:0x8019FF1C; // type:function size:0x130 scope:global align:4 +__dt__Q23zen16particleChildMdlFv = .text:0x801A004C; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen16particleChildMdlFv = .text:0x801A00A8; // type:function size:0xA8 scope:weak align:4 +__dt__Q23zen11particleMdlFv = .text:0x801A0150; // type:function size:0x5C scope:weak align:4 +__ct__Q23zen11particleMdlFv = .text:0x801A01AC; // type:function size:0x180 scope:weak align:4 +init__Q23zen16bBoardColourAnimFPQ23zen20bBoardColourAnimDatas = .text:0x801A032C; // type:function size:0x48 scope:weak align:4 +remove__Q23zen11particleMdlFv = .text:0x801A0374; // type:function size:0x114 scope:weak align:4 +remove__Q23zen15particleMdlBaseFv = .text:0x801A0488; // type:function size:0x68 scope:weak align:4 +remove__Q23zen16particleChildMdlFv = .text:0x801A04F0; // type:function size:0x68 scope:weak align:4 +set__Q23zen20bBoardColourAnimDataFPUc = .text:0x801A0558; // type:function size:0x9C scope:global align:4 +update__Q23zen16bBoardColourAnimFfP6ColourP6Colour = .text:0x801A05F4; // type:function size:0x3C0 scope:global align:4 +update__Q23zen17simplePtclManagerFf = .text:0x801A09B4; // type:function size:0x1E0 scope:global align:4 +draw__Q23zen17simplePtclManagerFR8Graphics = .text:0x801A0B94; // type:function size:0x28C scope:global align:4 +forceFinish__Q23zen17simplePtclManagerFv = .text:0x801A0E20; // type:function size:0x7C scope:global align:4 +__ct__5YTekiFv = .text:0x801A0E9C; // type:function size:0xF8 scope:global align:4 +init__20TAIeffectAttackParamFv = .text:0x801A0F94; // type:function size:0x84 scope:weak align:4 +doKill__5YTekiFv = .text:0x801A1018; // type:function size:0x120 scope:global align:4 +exitCourse__5YTekiFv = .text:0x801A1138; // type:function size:0x58 scope:global align:4 +isNaviWatch__5YTekiFv = .text:0x801A1190; // type:function size:0x80 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3ff = .text:0x801A1210; // type:function size:0x34 scope:global align:4 +moveTowardPriorityFaceDir__5YTekiFR8Vector3fff = .text:0x801A1244; // type:function size:0x150 scope:global align:4 +turnToTarget__5YTekiFv = .text:0x801A1394; // type:function size:0xFC scope:global align:4 +flyingStay__5YTekiFf = .text:0x801A1490; // type:function size:0x114 scope:global align:4 +killStickToMouthPiki__5YTekiFv = .text:0x801A15A4; // type:function size:0x1A4 scope:global align:4 +startNewMotion__5YTekiFi = .text:0x801A1748; // type:function size:0xC8 scope:global align:4 +hitCreature__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A1810; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A1818; // type:function size:0x8 scope:weak align:4 +hitCreature__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParamP8Creature = .text:0x801A1820; // type:function size:0x8 scope:weak align:4 +hitMap__28TAIeffectAttackEventCallBackFP20TAIeffectAttackParam = .text:0x801A1828; // type:function size:0x8 scope:weak align:4 +playEventSound__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A1830; // type:function size:0x4 scope:weak align:4 +ptclHitMap__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A1834; // type:function size:0x4 scope:weak align:4 +hitCheckCulling__28TAIeffectAttackEventCallBackFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801A1838; // type:function size:0x8 scope:weak align:4 +makeTekiParameters__13TekiYamashitaFP7TekiMgr = .text:0x801A1840; // type:function size:0x180 scope:global align:4 +makeTekis__13TekiYamashitaFP7TekiMgr = .text:0x801A19C0; // type:function size:0x31C scope:global align:4 +addAnimation__12TAIanimationFPc = .text:0x801A1CDC; // type:function size:0x3C scope:global align:4 +__ct__17TAItankSoundTableFv = .text:0x801A1D18; // type:function size:0x84 scope:global align:4 +__ct__17TAItankParametersFv = .text:0x801A1D9C; // type:function size:0x364 scope:global align:4 +__ct__15TAItankStrategyFv = .text:0x801A2100; // type:function size:0xC14 scope:global align:4 +act__15TAItankStrategyFR4Teki = .text:0x801A2D14; // type:function size:0x120 scope:global align:4 +interact__15TAItankStrategyFR4TekiR18TekiInteractionKey = .text:0x801A2E34; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__16TAItankAnimationFv = .text:0x801A2EF8; // type:function size:0x6FC scope:global align:4 +act__14TAIAnoReactionFR4Teki = .text:0x801A35F4; // type:function size:0x8 scope:weak align:4 +start__12TAIAinitTankFR4Teki = .text:0x801A35FC; // type:function size:0xC scope:weak align:4 +act__12TAIAinitTankFR4Teki = .text:0x801A3608; // type:function size:0x8 scope:weak align:4 +act__20TAIAoutsideTerritoryFR4Teki = .text:0x801A3610; // type:function size:0xC8 scope:weak align:4 +getFlickDirection__16TAIAflickingTankFR4Teki = .text:0x801A36D8; // type:function size:0x10 scope:weak align:4 +start__18TAIAfireBreathTankFR4Teki = .text:0x801A36E8; // type:function size:0x4C scope:weak align:4 +getPreviousAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A3734; // type:function size:0x18 scope:weak align:4 +getAttackAnimSpeed__18TAIAfireBreathTankFR4Teki = .text:0x801A374C; // type:function size:0x18 scope:weak align:4 +invoke__10FireEffectFR4Teki = .text:0x801A3764; // type:function size:0x288 scope:weak align:4 +act__16TAIAstepBackTankFR4Teki = .text:0x801A39EC; // type:function size:0x20 scope:weak align:4 +getVelocity__16TAIAstepBackTankFR4Teki = .text:0x801A3A0C; // type:function size:0x18 scope:weak align:4 +setTargetPosition__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A3A24; // type:function size:0x20 scope:weak align:4 +getOptionalRange__28TAIAoutsideOptionalRangeTankFR4Teki = .text:0x801A3A44; // type:function size:0x18 scope:weak align:4 +judge__25TAIAattackableAngleTargetFR4Teki = .text:0x801A3A5C; // type:function size:0x20 scope:weak align:4 +act__14TAIApatrolTankFR4Teki = .text:0x801A3A7C; // type:function size:0x20 scope:weak align:4 +getTimeout__14TAIApatrolTankFR4Teki = .text:0x801A3A9C; // type:function size:0x18 scope:weak align:4 +getTurnVelocity__16TAIAturnToTargetFR4Teki = .text:0x801A3AB4; // type:function size:0x18 scope:weak align:4 +__sinit_TAItank_cpp = .text:0x801A3ACC; // type:function size:0x10 scope:local align:4 +hitCreature__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParamP8Creature = .text:0x801A3ADC; // type:function size:0x6C scope:weak align:4 +hitMap__32TAIeffectAttackEventCallBackTankFP20TAIeffectAttackParam = .text:0x801A3B48; // type:function size:0x154 scope:weak align:4 +playEventSound__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A3C9C; // type:function size:0x48 scope:weak align:4 +ptclHitMap__32TAIeffectAttackEventCallBackTankFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A3CE4; // type:function size:0x1D8 scope:weak align:4 +__ct__16TAImarSoundTableFv = .text:0x801A3EBC; // type:function size:0x84 scope:global align:4 +__ct__16TAImarParametersFv = .text:0x801A3F40; // type:function size:0x440 scope:global align:4 +__ct__14TAImarStrategyFv = .text:0x801A4380; // type:function size:0xDE8 scope:global align:4 +act__14TAImarStrategyFR4Teki = .text:0x801A5168; // type:function size:0x1CC scope:global align:4 +interact__14TAImarStrategyFR4TekiR18TekiInteractionKey = .text:0x801A5334; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__15TAImarAnimationFv = .text:0x801A53F8; // type:function size:0x32C scope:global align:4 +start__11TAIAinitMarFR4Teki = .text:0x801A5724; // type:function size:0xC scope:weak align:4 +act__11TAIAinitMarFR4Teki = .text:0x801A5730; // type:function size:0x8 scope:weak align:4 +start__13TAIAwatchNaviFR4Teki = .text:0x801A5738; // type:function size:0x70 scope:weak align:4 +act__13TAIAwatchNaviFR4Teki = .text:0x801A57A8; // type:function size:0x8 scope:weak align:4 +getVelocity__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A57B0; // type:function size:0x18 scope:weak align:4 +getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A57C8; // type:function size:0x18 scope:weak align:4 +start__17TAIAfireBreathMarFR4Teki = .text:0x801A57E0; // type:function size:0x4C scope:weak align:4 +act__17TAIAfireBreathMarFR4Teki = .text:0x801A582C; // type:function size:0x20 scope:weak align:4 +getPreviousAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A584C; // type:function size:0x8 scope:weak align:4 +getAttackAnimSpeed__17TAIAfireBreathMarFR4Teki = .text:0x801A5854; // type:function size:0x18 scope:weak align:4 +invoke__12BreathEffectFR4Teki = .text:0x801A586C; // type:function size:0x274 scope:weak align:4 +act__21TAIAflyingDistanceMarFR4Teki = .text:0x801A5AE0; // type:function size:0x238 scope:weak align:4 +getGoalAreaRange__21TAIAflyingDistanceMarFR4Teki = .text:0x801A5D18; // type:function size:0x8 scope:weak align:4 +getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A5D20; // type:function size:0x18 scope:weak align:4 +getOffset__14FlyingDistanceFR4Teki = .text:0x801A5D38; // type:function size:0x8 scope:weak align:4 +getFrameMax__19TAIAtimerTakeOffMarFR4Teki = .text:0x801A5D40; // type:function size:0x18 scope:weak align:4 +start__17TAIAtimerReactionFR4Teki = .text:0x801A5D58; // type:function size:0xC scope:weak align:4 +act__17TAIAtimerReactionFR4Teki = .text:0x801A5D64; // type:function size:0x5C scope:weak align:4 +getFrameMax__17TAIAtimerReactionFR4Teki = .text:0x801A5DC0; // type:function size:0x8 scope:weak align:4 +startFlying__14TAIAtakeOffMarFR4Teki = .text:0x801A5DC8; // type:function size:0xCC scope:weak align:4 +getPikiNum__19TAIAstickingPikiMarFR4Teki = .text:0x801A5E94; // type:function size:0x18 scope:weak align:4 +start__16TAIAstickingPikiFR4Teki = .text:0x801A5EAC; // type:function size:0x4 scope:weak align:4 +getDamageCountLimit__17TAIAflickCheckMarFR4Teki = .text:0x801A5EB0; // type:function size:0x18 scope:weak align:4 +landingEffect__14TAIAlandingMarFR4Teki = .text:0x801A5EC8; // type:function size:0x134 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMarFlyFR4Teki = .text:0x801A5FFC; // type:function size:0x18 scope:weak align:4 +start__15TAIAflickingMarFR4Teki = .text:0x801A6014; // type:function size:0x3C scope:weak align:4 +flick__15TAIAflickingMarFR4Teki = .text:0x801A6050; // type:function size:0x94 scope:weak align:4 +getFlickDirection__12TAIAflickingFR4Teki = .text:0x801A60E4; // type:function size:0x8 scope:weak align:4 +start__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A60EC; // type:function size:0xC scope:weak align:4 +act__22TAIAflickCheckTimerMarFR4Teki = .text:0x801A60F8; // type:function size:0xF0 scope:weak align:4 +getFlyingStayVelocity__17TAIAflyingBaseMarFR4Teki = .text:0x801A61E8; // type:function size:0x18 scope:weak align:4 +start__12TAIAdyingMarFR4Teki = .text:0x801A6200; // type:function size:0x48 scope:weak align:4 +act__12TAIAdyingMarFR4Teki = .text:0x801A6248; // type:function size:0x2D0 scope:weak align:4 +__sinit_TAImar_cpp = .text:0x801A6518; // type:function size:0x10 scope:local align:4 +hitCreature__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature8Vector3f = .text:0x801A6528; // type:function size:0x208 scope:weak align:4 +playEventSound__31TAIeffectAttackEventCallBackMarFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801A6730; // type:function size:0x40 scope:weak align:4 +hitMap__31TAIeffectAttackEventCallBackMarFP20TAIeffectAttackParam = .text:0x801A6770; // type:function size:0x458 scope:weak align:4 +@8@getOffset__21TAIAflyingDistanceMarFR4Teki = .text:0x801A6BC8; // type:function size:0x8 scope:weak align:4 +@12@getOffset__32TAIAflyingDistanceInTerritoryMarFR4Teki = .text:0x801A6BD0; // type:function size:0x8 scope:weak align:4 +actByEvent__22TAIAhitCheckFlyingPikiFR9TekiEvent = .text:0x801A6BD8; // type:function size:0x50 scope:global align:4 +act__13TAIAdeadCheckFR4Teki = .text:0x801A6C28; // type:function size:0x1C scope:global align:4 +start__7TAIAdieFR4Teki = .text:0x801A6C44; // type:function size:0x30 scope:global align:4 +start__9TAIAdyingFR4Teki = .text:0x801A6C74; // type:function size:0xF8 scope:global align:4 +act__9TAIAdyingFR4Teki = .text:0x801A6D6C; // type:function size:0xAC scope:global align:4 +start__16TAIAdyingKabekuiFR4Teki = .text:0x801A6E18; // type:function size:0x44 scope:global align:4 +act__16TAIAdyingKabekuiFR4Teki = .text:0x801A6E5C; // type:function size:0x144 scope:global align:4 +start__21TAIAdyingCrushKabekuiFR4Teki = .text:0x801A6FA0; // type:function size:0x44 scope:global align:4 +act__10TAIAdamageFR4Teki = .text:0x801A6FE4; // type:function size:0xE0 scope:global align:4 +judgeDamage__10TAIAdamageFR4Teki = .text:0x801A70C4; // type:function size:0x8 scope:weak align:4 +act__11TAIAinWaterFR4Teki = .text:0x801A70CC; // type:function size:0x48 scope:global align:4 +actByEvent__11TAIAinWaterFR9TekiEvent = .text:0x801A7114; // type:function size:0x68 scope:global align:4 +act__17TAIAinWaterDamageFR4Teki = .text:0x801A717C; // type:function size:0x100 scope:global align:4 +actByEvent__17TAIAinWaterDamageFR9TekiEvent = .text:0x801A727C; // type:function size:0xA8 scope:global align:4 +createEffect__17TAIAinWaterDamageFR4Teki = .text:0x801A7324; // type:function size:0x50 scope:global align:4 +start__17TAIAappearKabekuiFR4Teki = .text:0x801A7374; // type:function size:0x94 scope:global align:4 +act__17TAIAappearKabekuiFR4Teki = .text:0x801A7408; // type:function size:0x1A4 scope:global align:4 +start__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A75AC; // type:function size:0x140 scope:global align:4 +act__28TAIAsetTargetPointWorkObjectFR4Teki = .text:0x801A76EC; // type:function size:0x8 scope:global align:4 +makePath__14TAIAgoGoalPathFR4Teki = .text:0x801A76F4; // type:function size:0x1B0 scope:global align:4 +start__14TAIAgoGoalPathFR4Teki = .text:0x801A78A4; // type:function size:0x4C scope:global align:4 +act__14TAIAgoGoalPathFR4Teki = .text:0x801A78F0; // type:function size:0x118 scope:global align:4 +checkArrival__14TAIAgoGoalPathFR4Teki = .text:0x801A7A08; // type:function size:0xEC scope:global align:4 +start__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A7AF4; // type:function size:0x100 scope:global align:4 +act__30TAIAsetTargetPointCircleRandomFR4Teki = .text:0x801A7BF4; // type:function size:0x8 scope:global align:4 +start__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A7BFC; // type:function size:0x20 scope:global align:4 +act__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A7C1C; // type:function size:0x24 scope:global align:4 +setTargetPoint__24TAIAsetTargetPointCircleFR4Teki = .text:0x801A7C40; // type:function size:0x110 scope:global align:4 +start__12TAIAgoTargetFR4Teki = .text:0x801A7D50; // type:function size:0x38 scope:global align:4 +act__12TAIAgoTargetFR4Teki = .text:0x801A7D88; // type:function size:0x108 scope:global align:4 +getVelocity__12TAIAgoTargetFR4Teki = .text:0x801A7E90; // type:function size:0x18 scope:weak align:4 +start__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A7EA8; // type:function size:0x38 scope:global align:4 +act__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A7EE0; // type:function size:0x9C scope:global align:4 +checkArrival__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A7F7C; // type:function size:0xB8 scope:global align:4 +getWalkVelocity__27TAIAgoTargetPriorityFaceDirFR4Teki = .text:0x801A8034; // type:function size:0x18 scope:global align:4 +start__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A804C; // type:function size:0x38 scope:global align:4 +act__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A8084; // type:function size:0x88 scope:global align:4 +getVelocity__33TAIAapproachTargetPriorityFaceDirFR4Teki = .text:0x801A810C; // type:function size:0x18 scope:weak align:4 +start__14TAIAlookAroundFR4Teki = .text:0x801A8124; // type:function size:0xDC scope:global align:4 +act__14TAIAlookAroundFR4Teki = .text:0x801A8200; // type:function size:0x31C scope:global align:4 +start__16TAIAturnToTargetFR4Teki = .text:0x801A851C; // type:function size:0xCC scope:global align:4 +act__16TAIAturnToTargetFR4Teki = .text:0x801A85E8; // type:function size:0x1E8 scope:global align:4 +start__8TAIAstopFR4Teki = .text:0x801A87D0; // type:function size:0x78 scope:global align:4 +start__14TAIArandomWalkFR4Teki = .text:0x801A8848; // type:function size:0x5C scope:global align:4 +act__14TAIArandomWalkFR4Teki = .text:0x801A88A4; // type:function size:0xE8 scope:global align:4 +makeTargetPosition__14TAIArandomWalkFR4Teki = .text:0x801A898C; // type:function size:0x100 scope:global align:4 +start__16TAIAturnOccasionFR4Teki = .text:0x801A8A8C; // type:function size:0x20 scope:global align:4 +act__16TAIAturnOccasionFR4Teki = .text:0x801A8AAC; // type:function size:0xB4 scope:global align:4 +start__21TAIAturnFocusCreatureFR4Teki = .text:0x801A8B60; // type:function size:0x118 scope:global align:4 +act__21TAIAturnFocusCreatureFR4Teki = .text:0x801A8C78; // type:function size:0x78 scope:global align:4 +start__8TAIAwaitFR4Teki = .text:0x801A8CF0; // type:function size:0x84 scope:global align:4 +act__8TAIAwaitFR4Teki = .text:0x801A8D74; // type:function size:0x98 scope:global align:4 +getWaitCounterMax__8TAIAwaitFR4Teki = .text:0x801A8E0C; // type:function size:0x8 scope:weak align:4 +__ct__10TAIApatrolFiiiiP8Vector3fib = .text:0x801A8E14; // type:function size:0x7C scope:global align:4 +start__10TAIApatrolFR4Teki = .text:0x801A8E90; // type:function size:0x2B0 scope:global align:4 +act__10TAIApatrolFR4Teki = .text:0x801A9140; // type:function size:0x354 scope:global align:4 +getTimeout__10TAIApatrolFR4Teki = .text:0x801A9494; // type:function size:0x8 scope:weak align:4 +start__12TAIAstepBackFR4Teki = .text:0x801A949C; // type:function size:0x38 scope:global align:4 +act__12TAIAstepBackFR4Teki = .text:0x801A94D4; // type:function size:0x164 scope:global align:4 +getVelocity__12TAIAstepBackFR4Teki = .text:0x801A9638; // type:function size:0x18 scope:weak align:4 +start__12TAIAturnHomeFR4Teki = .text:0x801A9650; // type:function size:0x110 scope:global align:4 +act__12TAIAturnHomeFR4Teki = .text:0x801A9760; // type:function size:0xC4 scope:global align:4 +start__13TAIAgoingHomeFR4Teki = .text:0x801A9824; // type:function size:0x38 scope:global align:4 +act__13TAIAgoingHomeFR4Teki = .text:0x801A985C; // type:function size:0xF0 scope:global align:4 +start__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801A994C; // type:function size:0x38 scope:global align:4 +act__28TAIAgoingHomePriorityFaceDirFR4Teki = .text:0x801A9984; // type:function size:0xF0 scope:global align:4 +start__14TAIAflyingBaseFR4Teki = .text:0x801A9A74; // type:function size:0x2C scope:global align:4 +act__14TAIAflyingBaseFR4Teki = .text:0x801A9AA0; // type:function size:0x78 scope:global align:4 +getFlyingStayVelocity__14TAIAflyingBaseFR4Teki = .text:0x801A9B18; // type:function size:0x3C scope:weak align:4 +start__21TAIAflyingInTerritoryFR4Teki = .text:0x801A9B54; // type:function size:0x1B0 scope:global align:4 +act__21TAIAflyingInTerritoryFR4Teki = .text:0x801A9D04; // type:function size:0x430 scope:global align:4 +start__16TAIAflyingToGoalFR4Teki = .text:0x801AA134; // type:function size:0x50 scope:global align:4 +act__16TAIAflyingToGoalFR4Teki = .text:0x801AA184; // type:function size:0x330 scope:global align:4 +goal__16TAIAflyingToGoalFR4Teki = .text:0x801AA4B4; // type:function size:0x8 scope:weak align:4 +getVelocity__16TAIAflyingToGoalFR4Teki = .text:0x801AA4BC; // type:function size:0x18 scope:weak align:4 +start__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AA4D4; // type:function size:0x80 scope:global align:4 +act__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AA554; // type:function size:0x48 scope:global align:4 +goal__29TAIAflyingDistanceInTerritoryFR4Teki = .text:0x801AA59C; // type:function size:0x348 scope:global align:4 +start__18TAIAflyingDistanceFR4Teki = .text:0x801AA8E4; // type:function size:0x3C scope:global align:4 +act__18TAIAflyingDistanceFR4Teki = .text:0x801AA920; // type:function size:0x3A0 scope:global align:4 +getGoalAreaRange__18TAIAflyingDistanceFR4Teki = .text:0x801AACC0; // type:function size:0x20 scope:weak align:4 +start__11TAIAdescentFR4Teki = .text:0x801AACE0; // type:function size:0x80 scope:global align:4 +act__11TAIAdescentFR4Teki = .text:0x801AAD60; // type:function size:0x2BC scope:global align:4 +getFlyingVelocity__11TAIAdescentFR4Teki = .text:0x801AB01C; // type:function size:0x18 scope:weak align:4 +getForceDescentFrame__11TAIAdescentFR4Teki = .text:0x801AB034; // type:function size:0x8 scope:weak align:4 +start__11TAIAlandingFR4Teki = .text:0x801AB03C; // type:function size:0x90 scope:global align:4 +act__11TAIAlandingFR4Teki = .text:0x801AB0CC; // type:function size:0x110 scope:global align:4 +landingEffect__11TAIAlandingFR4Teki = .text:0x801AB1DC; // type:function size:0x4 scope:weak align:4 +start__11TAIAtakeOffFR4Teki = .text:0x801AB1E0; // type:function size:0x90 scope:global align:4 +act__11TAIAtakeOffFR4Teki = .text:0x801AB270; // type:function size:0x118 scope:global align:4 +startFlying__11TAIAtakeOffFR4Teki = .text:0x801AB388; // type:function size:0x14 scope:global align:4 +__ct__10TAIAmotionFii = .text:0x801AB39C; // type:function size:0x24 scope:global align:4 +start__10TAIAmotionFR4Teki = .text:0x801AB3C0; // type:function size:0x4C scope:global align:4 +act__10TAIAmotionFR4Teki = .text:0x801AB40C; // type:function size:0x1C scope:global align:4 +__ct__17TAIAreserveMotionFii = .text:0x801AB428; // type:function size:0x24 scope:global align:4 +start__17TAIAreserveMotionFR4Teki = .text:0x801AB44C; // type:function size:0x1B4 scope:global align:4 +act__17TAIAreserveMotionFR4Teki = .text:0x801AB600; // type:function size:0x88 scope:global align:4 +start__14TAIAmotionLoopFR4Teki = .text:0x801AB688; // type:function size:0x34 scope:global align:4 +act__14TAIAmotionLoopFR4Teki = .text:0x801AB6BC; // type:function size:0x118 scope:global align:4 +getFrameMax__14TAIAmotionLoopFR4Teki = .text:0x801AB7D4; // type:function size:0x8 scope:weak align:4 +start__20TAIAsearchWorkObjectFR4Teki = .text:0x801AB7DC; // type:function size:0x4 scope:global align:4 +act__20TAIAsearchWorkObjectFR4Teki = .text:0x801AB7E0; // type:function size:0x200 scope:global align:4 +act__12TAIAlessLifeFR4Teki = .text:0x801AB9E0; // type:function size:0x84 scope:global align:4 +act__12TAIAmoreLifeFR4Teki = .text:0x801ABA64; // type:function size:0x84 scope:global align:4 +act__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801ABAE8; // type:function size:0x6C scope:global align:4 +setTargetPositionCreature__22TAIAjudgeOptionalRangeFR4Teki = .text:0x801ABB54; // type:function size:0x68 scope:global align:4 +judgement__23TAIAinsideOptionalRangeFR4Teki = .text:0x801ABBBC; // type:function size:0xD0 scope:global align:4 +judgement__24TAIAoutsideOptionalRangeFR4Teki = .text:0x801ABC8C; // type:function size:0xD0 scope:global align:4 +act__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801ABD5C; // type:function size:0x1D8 scope:global align:4 +getPikiMax__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801ABF34; // type:function size:0x8 scope:weak align:4 +getRange__24TAIAcheckInsideRangePikiFR4Teki = .text:0x801ABF3C; // type:function size:0x8 scope:weak align:4 +act__28TAIAinsideTerritoryRangeNaviFR4Teki = .text:0x801ABF44; // type:function size:0x134 scope:global align:4 +act__29TAIAoutsideTerritoryRangeNaviFR4Teki = .text:0x801AC078; // type:function size:0xFC scope:global align:4 +act__15TAIAvisibleNaviFR4Teki = .text:0x801AC174; // type:function size:0x8C scope:global align:4 +act__15TAIAvisiblePikiFR4Teki = .text:0x801AC200; // type:function size:0x164 scope:global align:4 +checkAngle__20TAIAattackableTargetFR4Teki = .text:0x801AC364; // type:function size:0x80 scope:global align:4 +judge__20TAIAattackableTargetFR4Teki = .text:0x801AC3E4; // type:function size:0x14C scope:global align:4 +act__20TAIAattackableTargetFR4Teki = .text:0x801AC530; // type:function size:0x98 scope:global align:4 +act__19TAIAunvisibleTargetFR4Teki = .text:0x801AC5C8; // type:function size:0x4C scope:global align:4 +act__16TAIAstickingPikiFR4Teki = .text:0x801AC614; // type:function size:0xA0 scope:global align:4 +getPikiNum__16TAIAstickingPikiFR4Teki = .text:0x801AC6B4; // type:function size:0x8 scope:weak align:4 +start__18TAIAdistanceTargetFR4Teki = .text:0x801AC6BC; // type:function size:0x58 scope:global align:4 +act__18TAIAdistanceTargetFR4Teki = .text:0x801AC714; // type:function size:0xE8 scope:global align:4 +start__18TAIAcheckTurnAngleFR4Teki = .text:0x801AC7FC; // type:function size:0x14 scope:global align:4 +act__18TAIAcheckTurnAngleFR4Teki = .text:0x801AC810; // type:function size:0xD4 scope:global align:4 +start__20TAIAattackWorkObjectFR4Teki = .text:0x801AC8E4; // type:function size:0x3C scope:global align:4 +act__20TAIAattackWorkObjectFR4Teki = .text:0x801AC920; // type:function size:0x254 scope:global align:4 +getAttackPointRadius__20TAIAattackWorkObjectFR4Teki = .text:0x801ACB74; // type:function size:0x8 scope:weak align:4 +attackWorkObject__20TAIAattackWorkObjectFR4Teki = .text:0x801ACB7C; // type:function size:0x124 scope:global align:4 +attackEffect__20TAIAattackWorkObjectFR4Teki = .text:0x801ACCA0; // type:function size:0x4 scope:weak align:4 +getDamage__20TAIAattackWorkObjectFR4Teki = .text:0x801ACCA4; // type:function size:0x8 scope:weak align:4 +setTargetPosition__20TAIAattackWorkObjectFR4Teki = .text:0x801ACCAC; // type:function size:0x218 scope:global align:4 +getLastFinishedStageBridge__20TAIAattackWorkObjectFP6Bridge = .text:0x801ACEC4; // type:function size:0x68 scope:global align:4 +start__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801ACF2C; // type:function size:0x44 scope:global align:4 +permitFlick__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801ACF70; // type:function size:0x1C scope:global align:4 +act__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801ACF8C; // type:function size:0xA0 scope:global align:4 +act__14TAIAtargetNaviFR4Teki = .text:0x801AD02C; // type:function size:0x8C scope:global align:4 +act__14TAIAtargetPikiFR4Teki = .text:0x801AD0B8; // type:function size:0x158 scope:global align:4 +start__14TAIAfireBreathFR4Teki = .text:0x801AD210; // type:function size:0x78 scope:global align:4 +getPreviousAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AD288; // type:function size:0x8 scope:weak align:4 +act__14TAIAfireBreathFR4Teki = .text:0x801AD290; // type:function size:0xD8 scope:global align:4 +getAttackAnimSpeed__14TAIAfireBreathFR4Teki = .text:0x801AD368; // type:function size:0x8 scope:weak align:4 +act__14TAIAflickCheckFR4Teki = .text:0x801AD370; // type:function size:0x128 scope:global align:4 +getDamageCountLimit__14TAIAflickCheckFR4Teki = .text:0x801AD498; // type:function size:0x8 scope:weak align:4 +start__12TAIAflickingFR4Teki = .text:0x801AD4A0; // type:function size:0x94 scope:global align:4 +act__12TAIAflickingFR4Teki = .text:0x801AD534; // type:function size:0x80 scope:global align:4 +flick__12TAIAflickingFR4Teki = .text:0x801AD5B4; // type:function size:0x98 scope:global align:4 +start__25TAIAflickingReserveMotionFR4Teki = .text:0x801AD64C; // type:function size:0x94 scope:global align:4 +act__25TAIAflickingReserveMotionFR4Teki = .text:0x801AD6E0; // type:function size:0x9C scope:global align:4 +flick__25TAIAflickingReserveMotionFR4Teki = .text:0x801AD77C; // type:function size:0x98 scope:global align:4 +getFlickDirection__25TAIAflickingReserveMotionFR4Teki = .text:0x801AD814; // type:function size:0x8 scope:weak align:4 +start__18TAIAbiteForKabekuiFR4Teki = .text:0x801AD81C; // type:function size:0x74 scope:global align:4 +act__18TAIAbiteForKabekuiFR4Teki = .text:0x801AD890; // type:function size:0xD0 scope:global align:4 +hitCheck__18TAIAbiteForKabekuiFR4Teki = .text:0x801AD960; // type:function size:0x4B4 scope:global align:4 +getNaviAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801ADE14; // type:function size:0x8 scope:weak align:4 +getPikiAttackSize__18TAIAbiteForKabekuiFR4Teki = .text:0x801ADE1C; // type:function size:0x8 scope:weak align:4 +start__11TAIAeatPikiFR4Teki = .text:0x801ADE24; // type:function size:0x20 scope:global align:4 +act__11TAIAeatPikiFR4Teki = .text:0x801ADE44; // type:function size:0x80 scope:global align:4 +eatEffect__11TAIAeatPikiFR4Teki = .text:0x801ADEC4; // type:function size:0x28 scope:global align:4 +getFrameMax__27TAIAflickingAfterMotionLoopFR4Teki = .text:0x801ADEEC; // type:function size:0x8 scope:weak align:4 +__ct__14P2DGrafContextFiiii = .text:0x801ADEF4; // type:function size:0xB4 scope:global align:4 +setPort__14P2DGrafContextFv = .text:0x801ADFA8; // type:function size:0xCC scope:global align:4 +setup2D__14P2DGrafContextFv = .text:0x801AE074; // type:function size:0x174 scope:global align:4 +setScissor__14P2DGrafContextFv = .text:0x801AE1E8; // type:function size:0xA0 scope:global align:4 +scissor__14P2DGrafContextFRC7PUTRect = .text:0x801AE288; // type:function size:0x14 scope:global align:4 +place__14P2DGrafContextFRC7PUTRect = .text:0x801AE29C; // type:function size:0x24 scope:global align:4 +setColor__14P2DGrafContextFR6ColourR6ColourR6ColourR6Colour = .text:0x801AE2C0; // type:function size:0xAC scope:global align:4 +setLineWidth__14P2DGrafContextFUc = .text:0x801AE36C; // type:function size:0x2C scope:global align:4 +__dt__14P2DGrafContextFv = .text:0x801AE398; // type:function size:0x4C scope:weak align:4 +place__14P2DGrafContextFiiii = .text:0x801AE3E4; // type:function size:0x50 scope:weak align:4 +setLookat__14P2DGrafContextFv = .text:0x801AE434; // type:function size:0x4 scope:weak align:4 +__ct__13P2DOrthoGraphFiiii = .text:0x801AE438; // type:function size:0xC4 scope:global align:4 +setPort__13P2DOrthoGraphFv = .text:0x801AE4FC; // type:function size:0xD8 scope:global align:4 +setLookat__13P2DOrthoGraphFv = .text:0x801AE5D4; // type:function size:0x3C scope:global align:4 +scissorBounds__13P2DOrthoGraphFP7PUTRectP7PUTRect = .text:0x801AE610; // type:function size:0x26C scope:global align:4 +__dt__13P2DOrthoGraphFv = .text:0x801AE87C; // type:function size:0x5C scope:weak align:4 +__ct__13P2DPerspGraphFiiiifff = .text:0x801AE8D8; // type:function size:0x84 scope:global align:4 +set__13P2DPerspGraphFfff = .text:0x801AE95C; // type:function size:0x60 scope:global align:4 +setFovy__13P2DPerspGraphFf = .text:0x801AE9BC; // type:function size:0x2C scope:global align:4 +setPort__13P2DPerspGraphFv = .text:0x801AE9E8; // type:function size:0x16C scope:global align:4 +setLookat__13P2DPerspGraphFv = .text:0x801AEB54; // type:function size:0x94 scope:global align:4 +makeLookat__13P2DPerspGraphFv = .text:0x801AEBE8; // type:function size:0x1FC scope:global align:4 +setCallBack__7P2DPaneFP15P2DPaneCallBack = .text:0x801AEDE4; // type:function size:0x8 scope:global align:4 +printTagName__7P2DPaneFb = .text:0x801AEDEC; // type:function size:0x14 scope:global align:4 +drawSelf__7P2DPaneFiiP8Matrix4f = .text:0x801AEE00; // type:function size:0x48 scope:global align:4 +__ct__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801AEE48; // type:function size:0x30 scope:global align:4 +checkPaneType__19P2DPaneCallBackBaseFP7P2DPane11P2DPaneType = .text:0x801AEE78; // type:function size:0x14 scope:global align:4 +update__7P2DPaneFv = .text:0x801AEE8C; // type:function size:0x134 scope:global align:4 +getFirstLink__10PSUPtrListCFv = .text:0x801AEFC0; // type:function size:0x8 scope:weak align:4 +__ct__7P2DPaneFv = .text:0x801AEFC8; // type:function size:0x14C scope:global align:4 +__ct__7P2DPaneFP7P2DPaneUsbUlRC7PUTRect = .text:0x801AF114; // type:function size:0x168 scope:global align:4 +__ct__7P2DPaneFP7P2DPaneP18RandomAccessStreamUs = .text:0x801AF27C; // type:function size:0x290 scope:global align:4 +__dt__7P2DPaneFv = .text:0x801AF50C; // type:function size:0xE0 scope:global align:4 +draw__7P2DPaneFiiPC14P2DGrafContextb = .text:0x801AF5EC; // type:function size:0x4A4 scope:global align:4 +clip__7P2DPaneFRC7PUTRect = .text:0x801AFA90; // type:function size:0x4C scope:global align:4 +search__7P2DPaneFUlb = .text:0x801AFADC; // type:function size:0xA4 scope:global align:4 +makeMatrix__7P2DPaneFii = .text:0x801AFB80; // type:function size:0x25C scope:global align:4 +loadChildResource__7P2DPaneFv = .text:0x801AFDDC; // type:function size:0x10C scope:global align:4 +loadResource__7P2DPaneFv = .text:0x801AFEE8; // type:function size:0x4 scope:weak align:4 +makeResident__7P2DPaneFv = .text:0x801AFEEC; // type:function size:0x4 scope:weak align:4 +move__7P2DPaneFR8Vector3f = .text:0x801AFEF0; // type:function size:0x64 scope:weak align:4 +moveZ__7P2DPaneFf = .text:0x801AFF54; // type:function size:0x8 scope:weak align:4 +add__7P2DPaneFii = .text:0x801AFF5C; // type:function size:0x24 scope:weak align:4 +resize__7P2DPaneFii = .text:0x801AFF80; // type:function size:0x24 scope:weak align:4 +drawSelf__7P2DPaneFii = .text:0x801AFFA4; // type:function size:0x68 scope:weak align:4 +makeResident__10P2DPictureFv = .text:0x801B000C; // type:function size:0x74 scope:global align:4 +loadResource__10P2DPictureFv = .text:0x801B0080; // type:function size:0x58 scope:global align:4 +__dt__10P2DPictureFv = .text:0x801B00D8; // type:function size:0xB4 scope:global align:4 +__ct__10P2DPictureFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B018C; // type:function size:0x134 scope:global align:4 +__ct__10P2DPictureFP7Texture = .text:0x801B02C0; // type:function size:0xAC scope:global align:4 +insert__10P2DPictureFP7TextureUcf = .text:0x801B036C; // type:function size:0x9C scope:global align:4 +initinfo__10P2DPictureFv = .text:0x801B0408; // type:function size:0x54 scope:global align:4 +drawSelf__10P2DPictureFii = .text:0x801B045C; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DPictureFiiP8Matrix4f = .text:0x801B04C4; // type:function size:0x78 scope:global align:4 +drawFullSet__10P2DPictureFiiii10P2DBinding9P2DMirrorb11P2DWrapmode11P2DWrapmodeP8Matrix4f = .text:0x801B053C; // type:function size:0x664 scope:global align:4 +drawTexCoord__10P2DPictureFiiiiffffffffP8Matrix4f = .text:0x801B0BA0; // type:function size:0x234 scope:global align:4 +setTevMode__10P2DPictureFv = .text:0x801B0DD4; // type:function size:0x4B0 scope:global align:4 +swap__10P2DPictureFRfRf = .text:0x801B1284; // type:function size:0x14 scope:global align:4 +update__9P2DScreenFv = .text:0x801B1298; // type:function size:0x4C scope:global align:4 +__dt__9P2DScreenFv = .text:0x801B12E4; // type:function size:0x64 scope:global align:4 +set__9P2DScreenFPCcbbb = .text:0x801B1348; // type:function size:0x12C scope:global align:4 +makeHiearachyPanes__9P2DScreenFP7P2DPaneP18RandomAccessStreambb = .text:0x801B1474; // type:function size:0x1A0 scope:global align:4 +makeUserPane__9P2DScreenFUsP7P2DPaneP18RandomAccessStream = .text:0x801B1614; // type:function size:0x8 scope:global align:4 +draw__9P2DScreenFiiPC14P2DGrafContext = .text:0x801B161C; // type:function size:0x328 scope:global align:4 +search__9P2DScreenFUlb = .text:0x801B1944; // type:function size:0x30 scope:global align:4 +loadResource__9P2DScreenFv = .text:0x801B1974; // type:function size:0x20 scope:global align:4 +makeResName__9P2DScreenFPCcPc = .text:0x801B1994; // type:function size:0x28 scope:global align:4 +getResource__9P2DStreamFi = .text:0x801B19BC; // type:function size:0xC4 scope:global align:4 +align__9P2DStreamFi = .text:0x801B1A80; // type:function size:0x90 scope:global align:4 +__ct__10PSUPtrLinkFPv = .text:0x801B1B10; // type:function size:0x18 scope:global align:4 +__dt__10PSUPtrLinkFv = .text:0x801B1B28; // type:function size:0x60 scope:global align:4 +__dt__10PSUPtrListFv = .text:0x801B1B88; // type:function size:0x68 scope:global align:4 +initiate__10PSUPtrListFv = .text:0x801B1BF0; // type:function size:0x14 scope:global align:4 +append__10PSUPtrListFP10PSUPtrLink = .text:0x801B1C04; // type:function size:0xBC scope:global align:4 +remove__10PSUPtrListFP10PSUPtrLink = .text:0x801B1CC0; // type:function size:0xB0 scope:global align:4 +set__7PUTRectFiiii = .text:0x801B1D70; // type:function size:0x24 scope:global align:4 +copy__7PUTRectFRC7PUTRect = .text:0x801B1D94; // type:function size:0x24 scope:global align:4 +add__7PUTRectFii = .text:0x801B1DB8; // type:function size:0x34 scope:global align:4 +intersect__7PUTRectFRC7PUTRect = .text:0x801B1DEC; // type:function size:0x80 scope:global align:4 +move__7PUTRectFii = .text:0x801B1E6C; // type:function size:0x44 scope:global align:4 +resize__7PUTRectFii = .text:0x801B1EB0; // type:function size:0x1C scope:global align:4 +normalize__7PUTRectFv = .text:0x801B1ECC; // type:function size:0x3C scope:global align:4 +isEmpty__7PUTRectCFv = .text:0x801B1F08; // type:function size:0x30 scope:global align:4 +makeResident__9P2DWindowFv = .text:0x801B1F38; // type:function size:0x88 scope:global align:4 +loadResource__9P2DWindowFv = .text:0x801B1FC0; // type:function size:0x160 scope:global align:4 +__ct__9P2DWindowFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B2120; // type:function size:0x258 scope:global align:4 +drawSelf__9P2DWindowFii = .text:0x801B2378; // type:function size:0x68 scope:global align:4 +drawSelf__9P2DWindowFiiP8Matrix4f = .text:0x801B23E0; // type:function size:0x98 scope:global align:4 +draw_private__9P2DWindowFRC7PUTRectRC7PUTRectP8Matrix4f = .text:0x801B2478; // type:function size:0x394 scope:global align:4 +drawContents__9P2DWindowFRC7PUTRect = .text:0x801B280C; // type:function size:0x18C scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiiiiUsUsUsUs = .text:0x801B2998; // type:function size:0x100 scope:global align:4 +draw__Q29P2DWindow16P2DWindowTextureFiibb = .text:0x801B2A98; // type:function size:0xA0 scope:global align:4 +setTevMode__Q29P2DWindow16P2DWindowTextureFv = .text:0x801B2B38; // type:function size:0x58 scope:global align:4 +__dt__9P2DWindowFv = .text:0x801B2B90; // type:function size:0x64 scope:weak align:4 +makeResident__10P2DTextBoxFv = .text:0x801B2BF4; // type:function size:0x38 scope:global align:4 +loadResource__10P2DTextBoxFv = .text:0x801B2C2C; // type:function size:0x50 scope:global align:4 +__ct__10P2DTextBoxFP7P2DPaneP18RandomAccessStreamUs = .text:0x801B2C7C; // type:function size:0x20C scope:global align:4 +drawSelf__10P2DTextBoxFii = .text:0x801B2E88; // type:function size:0x68 scope:global align:4 +drawSelf__10P2DTextBoxFiiP8Matrix4f = .text:0x801B2EF0; // type:function size:0x198 scope:global align:4 +__dt__10P2DTextBoxFv = .text:0x801B3088; // type:function size:0x64 scope:weak align:4 +__ct__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B30EC; // type:function size:0x48 scope:global align:4 +private_initiate__8P2DPrintFP7P2DFontii6Colour6Colour = .text:0x801B3134; // type:function size:0x100 scope:global align:4 +locate__8P2DPrintFii = .text:0x801B3234; // type:function size:0x54 scope:global align:4 +setFontSize__8P2DPrintFv = .text:0x801B3288; // type:function size:0x28 scope:global align:4 +initchar__8P2DPrintFv = .text:0x801B32B0; // type:function size:0x44 scope:global align:4 +printReturn__8P2DPrintFPCcii18P2DTextBoxHBinding18P2DTextBoxVBindingii = .text:0x801B32F4; // type:function size:0x250 scope:global align:4 +parse__8P2DPrintFPCUciiPUsRQ28P2DPrint5TSizeb = .text:0x801B3544; // type:function size:0x5D0 scope:global align:4 +doEscapeCode__8P2DPrintFPPCUc = .text:0x801B3B14; // type:function size:0x624 scope:global align:4 +doCtrlCode__8P2DPrintFi = .text:0x801B4138; // type:function size:0x174 scope:global align:4 +getNumber__8P2DPrintFPPCUclli = .text:0x801B42AC; // type:function size:0x108 scope:global align:4 +loadFont__7P2DFontFPcRiRi = .text:0x801B43B4; // type:function size:0x150 scope:global align:4 +__ct__7P2DFontFPc = .text:0x801B4504; // type:function size:0xBC scope:global align:4 +setGX__7P2DFontFv = .text:0x801B45C0; // type:function size:0xD8 scope:global align:4 +setGradColor__7P2DFontFRC6ColourRC6Colour = .text:0x801B4698; // type:function size:0x24 scope:global align:4 +getWidth__7P2DFontFii = .text:0x801B46BC; // type:function size:0xC4 scope:global align:4 +drawChar__7P2DFontFffiii = .text:0x801B4780; // type:function size:0x308 scope:global align:4 +__ct__Q23zen12DrawGameInfoFQ33zen12DrawGameInfo12playModeFlag = .text:0x801B4A88; // type:function size:0x1FCC scope:global align:4 +setTex__Q29@unnamed@12DateCallBackFv = .text:0x801B6A54; // type:function size:0x220 scope:weak align:4 +getWidth__7PUTRectCFv = .text:0x801B6C74; // type:function size:0x10 scope:weak align:4 +getHeight__7PUTRectCFv = .text:0x801B6C84; // type:function size:0x10 scope:weak align:4 +getNumber__Q23zen12FigureTexFv = .text:0x801B6C94; // type:function size:0x3C scope:weak align:4 +update__Q23zen12DrawGameInfoFv = .text:0x801B6CD0; // type:function size:0x454 scope:global align:4 +draw__Q23zen12DrawGameInfoFR8Graphics = .text:0x801B7124; // type:function size:0xF0 scope:global align:4 +upperFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B7214; // type:function size:0x7C scope:global align:4 +upperFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B7290; // type:function size:0x80 scope:global align:4 +lowerFrameIn__Q23zen12DrawGameInfoFfb = .text:0x801B7310; // type:function size:0xB0 scope:global align:4 +lowerFrameOut__Q23zen12DrawGameInfoFfb = .text:0x801B73C0; // type:function size:0xB4 scope:global align:4 +invoke__Q29@unnamed@12DateCallBackFP7P2DPane = .text:0x801B7474; // type:function size:0x224 scope:weak align:4 +invoke__Q29@unnamed@17LifePinchCallBackFP7P2DPane = .text:0x801B7698; // type:function size:0x234 scope:weak align:4 +invoke__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B78CC; // type:function size:0x8 scope:weak align:4 +draw__Q29@unnamed@16LifeIconCallBackFP7P2DPane = .text:0x801B78D4; // type:function size:0x28 scope:weak align:4 +invoke__Q29@unnamed@15NaviTexCallBackFP7P2DPane = .text:0x801B78FC; // type:function size:0x6C scope:weak align:4 +invoke__Q29@unnamed@16NaviIconCallBackFP7P2DPane = .text:0x801B7968; // type:function size:0x108 scope:weak align:4 +invoke__Q29@unnamed@16MoonIconCallBackFP7P2DPane = .text:0x801B7A70; // type:function size:0x2D4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon2CallBackFP7P2DPane = .text:0x801B7D44; // type:function size:0x2E4 scope:weak align:4 +invoke__Q29@unnamed@16SunIcon1CallBackFP7P2DPane = .text:0x801B8028; // type:function size:0x1B8 scope:weak align:4 +invoke__Q29@unnamed@18SunCapsuleCallBackFP7P2DPane = .text:0x801B81E0; // type:function size:0x78 scope:weak align:4 +invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801B8258; // type:function size:0x14C scope:weak align:4 +invoke__Q29@unnamed@23MapPikminWindowCallBackFP7P2DPane = .text:0x801B83A4; // type:function size:0x194 scope:weak align:4 +invoke__Q29@unnamed@16PikiIconCallBackFP7P2DPane = .text:0x801B8538; // type:function size:0x118 scope:weak align:4 +invoke__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801B8650; // type:function size:0x1F8 scope:weak align:4 +getNumber__Q23zen12FigureTexFRs = .text:0x801B8848; // type:function size:0x3C scope:weak align:4 +@16@invoke__Q29@unnamed@15SunBaseCallBackFP7P2DPane = .text:0x801B8884; // type:function size:0x8 scope:weak align:4 +drawLifeCircle__Q23zen14DrawLifeCircleFf = .text:0x801B888C; // type:function size:0x458 scope:global align:4 +drawLifeCircle__Q23zen18DrawNaviLifeCircleFv = .text:0x801B8CE4; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13DrawContainerFv = .text:0x801B8D50; // type:function size:0x2CAC scope:global align:4 +__ct__Q33zen7TexAnim8AnimDataFv = .text:0x801BB9FC; // type:function size:0x14 scope:weak align:4 +setTexture__Q23zen19ArrowCenterCallBackFP10P2DPicture = .text:0x801BBA10; // type:function size:0xC8 scope:weak align:4 +judgeArrowType__Q23zen18ArrowBasicCallBackFv = .text:0x801BBAD8; // type:function size:0x68 scope:weak align:4 +init__Q23zen10MessageMgrFQ33zen13DrawContainer13containerType = .text:0x801BBB40; // type:function size:0x94 scope:weak align:4 +setTextBox__Q23zen10MessageMgrFQ33zen13DrawContainer13containerTypeR9P2DScreeniii = .text:0x801BBBD4; // type:function size:0x150 scope:weak align:4 +start__Q23zen13DrawContainerFQ33zen13DrawContainer13containerTypeiiiiii = .text:0x801BBD24; // type:function size:0x4B8 scope:global align:4 +setMessage__Q23zen10MessageMgrFQ33zen10MessageMgr11messageFlagf = .text:0x801BC1DC; // type:function size:0x164 scope:weak align:4 +setDispParam__Q23zen13DrawContainerFv = .text:0x801BC340; // type:function size:0x38 scope:global align:4 +operationStatus__Q23zen13DrawContainerFv = .text:0x801BC378; // type:function size:0xC20 scope:global align:4 +update__Q23zen13DrawContainerFRi = .text:0x801BCF98; // type:function size:0x52C scope:global align:4 +update__Q23zen13WindowPaneMgrFQ33zen13WindowPaneMgr8modeFlagff = .text:0x801BD4C4; // type:function size:0x3C4 scope:weak align:4 +draw__Q23zen13DrawContainerFR8Graphics = .text:0x801BD888; // type:function size:0x5C scope:global align:4 +invoke__Q23zen13StickCallBackFP7P2DPane = .text:0x801BD8E4; // type:function size:0x108 scope:weak align:4 +invoke__Q23zen15ArrowLRCallBackFP7P2DPane = .text:0x801BD9EC; // type:function size:0x178 scope:weak align:4 +invoke__Q23zen19ArrowCenterCallBackFP7P2DPane = .text:0x801BDB64; // type:function size:0x160 scope:weak align:4 +__ct__Q23zen10DrawScreenFPcP14P2DGrafContextbb = .text:0x801BDCC4; // type:function size:0x108 scope:global align:4 +update__Q23zen10DrawScreenFv = .text:0x801BDDCC; // type:function size:0x24 scope:global align:4 +draw__Q23zen10DrawScreenFv = .text:0x801BDDF0; // type:function size:0x50 scope:global align:4 +__ct__Q23zen9NumberTexFv = .text:0x801BDE40; // type:function size:0xB4 scope:global align:4 +makeResident__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BDEF4; // type:function size:0x118 scope:global align:4 +getEndChild__17PSUTree<7P2DPane>CFv = .text:0x801BE00C; // type:function size:0x8 scope:weak align:4 +getFirstChild__17PSUTree<7P2DPane>CFv = .text:0x801BE014; // type:function size:0x14 scope:weak align:4 +setFamilyAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BE028; // type:function size:0xEC scope:global align:4 +setAlpha__Q23zen14P2DPaneLibraryFP7P2DPaneUc = .text:0x801BE114; // type:function size:0x30 scope:global align:4 +setFamilyMirror__Q23zen14P2DPaneLibraryFP7P2DPane9P2DMirror = .text:0x801BE144; // type:function size:0x120 scope:global align:4 +getParentPane__Q23zen14P2DPaneLibraryFP7P2DPane = .text:0x801BE264; // type:function size:0x1C scope:global align:4 +getWorldPos__Q23zen14P2DPaneLibraryFP7P2DPanePiPi = .text:0x801BE280; // type:function size:0x70 scope:global align:4 +changeParent__Q23zen14P2DPaneLibraryFP7P2DPaneP7P2DPane = .text:0x801BE2F0; // type:function size:0x124 scope:global align:4 +__ct__Q23zen11BalloonPaneFP7P2DPanef = .text:0x801BE414; // type:function size:0x168 scope:global align:4 +invoke__Q23zen11BalloonPaneFP7P2DPane = .text:0x801BE57C; // type:function size:0x39C scope:global align:4 +setGoalPos__Q23zen11BalloonPaneFv = .text:0x801BE918; // type:function size:0xDC scope:global align:4 +setGoalRotate__Q23zen11BalloonPaneFv = .text:0x801BE9F4; // type:function size:0x6C scope:global align:4 +__ct__Q23zen13ZenControllerFP10Controller = .text:0x801BEA60; // type:function size:0x94 scope:global align:4 +update__Q23zen13ZenControllerFv = .text:0x801BEAF4; // type:function size:0xF8 scope:global align:4 +__ct__Q23zen11DrawHurryUpFv = .text:0x801BEBEC; // type:function size:0x308 scope:global align:4 +initPanes__Q23zen11DrawHurryUpFv = .text:0x801BEEF4; // type:function size:0x110 scope:global align:4 +start__Q23zen11DrawHurryUpFQ33zen11DrawHurryUp15messageTypeFlag = .text:0x801BF004; // type:function size:0x12C scope:global align:4 +startStatus__Q23zen11DrawHurryUpFv = .text:0x801BF130; // type:function size:0x1AC scope:global align:4 +endStatus__Q23zen11DrawHurryUpFv = .text:0x801BF2DC; // type:function size:0x1F8 scope:global align:4 +update__Q23zen11DrawHurryUpFv = .text:0x801BF4D4; // type:function size:0x2C0 scope:global align:4 +draw__Q23zen11DrawHurryUpFR8Graphics = .text:0x801BF794; // type:function size:0x5C scope:global align:4 +setData__Q23zen7TexAnimFUlP7Texturef = .text:0x801BF7F0; // type:function size:0x24 scope:global align:4 +update__Q23zen7TexAnimFv = .text:0x801BF814; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawAccountFv = .text:0x801BF890; // type:function size:0x1474 scope:global align:4 +update__Q23zen11DrawAccountFv = .text:0x801C0D04; // type:function size:0x124 scope:global align:4 +draw__Q23zen11DrawAccountFR8Graphics = .text:0x801C0E28; // type:function size:0x2C scope:global align:4 +start__Q23zen11DrawAccountFRQ23zen11AccountData = .text:0x801C0E54; // type:function size:0x78 scope:global align:4 +init__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C0ECC; // type:function size:0xAC scope:global align:4 +setPane__Q23zen12DrawMenuTextFP7P2DPaneP7P2DPane = .text:0x801C0F78; // type:function size:0xF4 scope:global align:4 +update__Q23zen12DrawMenuTextFbR6ColourR6Colour = .text:0x801C106C; // type:function size:0x5C4 scope:global align:4 +setPane__Q23zen13DrawMenuTitleFP9P2DScreenP7P2DPaneUl = .text:0x801C1630; // type:function size:0x88 scope:global align:4 +start__Q23zen13DrawMenuTitleFv = .text:0x801C16B8; // type:function size:0xC scope:global align:4 +wait__Q23zen13DrawMenuTitleFv = .text:0x801C16C4; // type:function size:0xC scope:global align:4 +end__Q23zen13DrawMenuTitleFv = .text:0x801C16D0; // type:function size:0xC scope:global align:4 +update__Q23zen13DrawMenuTitleFf = .text:0x801C16DC; // type:function size:0x170 scope:global align:4 +__ct__Q23zen8DrawMenuFPcbb = .text:0x801C184C; // type:function size:0xAFC scope:global align:4 +__dt__Q23zen12DrawMenuItemFv = .text:0x801C2348; // type:function size:0x54 scope:weak align:4 +__ct__Q23zen12DrawMenuItemFv = .text:0x801C239C; // type:function size:0x6C scope:weak align:4 +start__Q23zen8DrawMenuFi = .text:0x801C2408; // type:function size:0x39C scope:global align:4 +updateMenuPanes__Q23zen8DrawMenuFv = .text:0x801C27A4; // type:function size:0x38C scope:global align:4 +updateSelectMenuNo__Q23zen8DrawMenuFP10Controller = .text:0x801C2B30; // type:function size:0xF4 scope:global align:4 +update__Q23zen8DrawMenuFP10Controller = .text:0x801C2C24; // type:function size:0x40C scope:global align:4 +draw__Q23zen8DrawMenuFR8Graphics = .text:0x801C3030; // type:function size:0x2C scope:global align:4 +setMenuItemActiveSw__Q23zen8DrawMenuFib = .text:0x801C305C; // type:function size:0x2C scope:global align:4 +setCancelSelectMenuNo__Q23zen8DrawMenuFi = .text:0x801C3088; // type:function size:0x28 scope:global align:4 +invoke__17EventTypeCallBackFPQ23zen17particleGenerator = .text:0x801C30B0; // type:function size:0x38 scope:global align:4 +init__20CylinderTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C30E8; // type:function size:0x1E0 scope:global align:4 +hitCheckCommon__20CylinderTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C32C8; // type:function size:0x19C scope:global align:4 +invoke__20CylinderTypeCallBackFPQ23zen17particleGenerator = .text:0x801C3464; // type:function size:0x384 scope:global align:4 +init__16ConeTypeCallBackFP20TAIeffectAttackParamP4TekiR8Vector3f8Vector3fffffP28TAIeffectAttackEventCallBack = .text:0x801C37E8; // type:function size:0x1E8 scope:global align:4 +hitCheckCommon__16ConeTypeCallBackFPQ23zen17particleGeneratorP8Creature = .text:0x801C39D0; // type:function size:0x320 scope:global align:4 +invoke__16ConeTypeCallBackFPQ23zen17particleGenerator = .text:0x801C3CF0; // type:function size:0x434 scope:global align:4 +__ct__19TAIbeatleSoundTableFv = .text:0x801C4124; // type:function size:0x84 scope:global align:4 +__ct__19TAIbeatleParametersFv = .text:0x801C41A8; // type:function size:0x418 scope:global align:4 +__ct__17TAIbeatleStrategyFv = .text:0x801C45C0; // type:function size:0xEF4 scope:global align:4 +interact__17TAIbeatleStrategyFR4TekiR18TekiInteractionKey = .text:0x801C54B4; // type:function size:0x140 scope:global align:4 +act__17TAIbeatleStrategyFR4Teki = .text:0x801C55F4; // type:function size:0x41C scope:global align:4 +makeDefaultAnimations__18TAIbeatleAnimationFv = .text:0x801C5A10; // type:function size:0x24 scope:global align:4 +getRange__30TAIAcheckInsideRangePikiBeatleFR4Teki = .text:0x801C5A34; // type:function size:0x18 scope:weak align:4 +start__16TAIAdisableStickFR4Teki = .text:0x801C5A4C; // type:function size:0x24 scope:weak align:4 +flick__18TAIAflickingBeatleFR4Teki = .text:0x801C5A70; // type:function size:0x11C scope:weak align:4 +start__17TAIAinvincibleOffFR4Teki = .text:0x801C5B8C; // type:function size:0x34 scope:weak align:4 +start__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C5BC0; // type:function size:0x94 scope:weak align:4 +act__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C5C54; // type:function size:0x8D8 scope:weak align:4 +permitFlick__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C652C; // type:function size:0x1C scope:weak align:4 +getFrameMax__33TAIAflickingAfterMotionLoopBeatleFR4Teki = .text:0x801C6548; // type:function size:0x18 scope:weak align:4 +start__14TAIArockAttackFR4Teki = .text:0x801C6560; // type:function size:0xA0 scope:weak align:4 +act__14TAIArockAttackFR4Teki = .text:0x801C6600; // type:function size:0x10B0 scope:weak align:4 +setTargetPosition__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C76B0; // type:function size:0x20 scope:weak align:4 +getOptionalRange__29TAIAinsideOptionalRangeBeatleFR4Teki = .text:0x801C76D0; // type:function size:0x18 scope:weak align:4 +act__21TAIAvisiblePikiBeatleFR4Teki = .text:0x801C76E8; // type:function size:0x1F0 scope:weak align:4 +judgeDamage__16TAIAdamageBeatleFR4Teki = .text:0x801C78D8; // type:function size:0x24 scope:weak align:4 +start__15TAIAdyingBeatleFR4Teki = .text:0x801C78FC; // type:function size:0x160 scope:weak align:4 +act__15TAIAdyingBeatleFR4Teki = .text:0x801C7A5C; // type:function size:0x5C scope:weak align:4 +start__14TAIAinitBeatleFR4Teki = .text:0x801C7AB8; // type:function size:0x160 scope:weak align:4 +act__14TAIAinitBeatleFR4Teki = .text:0x801C7C18; // type:function size:0x8 scope:weak align:4 +setCallBack__Q23zen12MenuPanelMgrFP9P2DScreenP7P2DPane = .text:0x801C7C20; // type:function size:0x5AC scope:global align:4 +update__Q23zen9MenuPanelFP7P2DPane = .text:0x801C81CC; // type:function size:0x3B4 scope:weak align:4 +update__Q23zen12MenuPanelMgrFv = .text:0x801C8580; // type:function size:0x74 scope:global align:4 +checkFinish__Q23zen12MenuPanelMgrFv = .text:0x801C85F4; // type:function size:0x50 scope:global align:4 +invoke__Q23zen9MenuPanelFP7P2DPane = .text:0x801C8644; // type:function size:0x3B8 scope:weak align:4 +__ct__21TAIkabekuiASoundTableFv = .text:0x801C89FC; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiAParametersFv = .text:0x801C8A80; // type:function size:0x36C scope:global align:4 +__ct__19TAIkabekuiAStrategyFv = .text:0x801C8DEC; // type:function size:0xA84 scope:global align:4 +makeDefaultAnimations__20TAIkabekuiAAnimationFv = .text:0x801C9870; // type:function size:0x6FC scope:global align:4 +start__13TAIAshadowOffFR4Teki = .text:0x801C9F6C; // type:function size:0x58 scope:weak align:4 +start__12TAIAshadowOnFR4Teki = .text:0x801C9FC4; // type:function size:0x58 scope:weak align:4 +getFrameMax__17TAIAsleepKabekuiAFR4Teki = .text:0x801CA01C; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiAFR4Teki = .text:0x801CA034; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CA04C; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CA06C; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CA08C; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CA0A4; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiAFR4Teki = .text:0x801CA0BC; // type:function size:0x16C scope:weak align:4 +start__16TAIAinvincibleOnFR4Teki = .text:0x801CA228; // type:function size:0x34 scope:weak align:4 +start__18TAIAsetMotionSpeedFR4Teki = .text:0x801CA25C; // type:function size:0x60 scope:weak align:4 +__ct__21TAIkabekuiBSoundTableFv = .text:0x801CA2BC; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiBParametersFv = .text:0x801CA340; // type:function size:0x3C0 scope:global align:4 +__ct__19TAIkabekuiBStrategyFv = .text:0x801CA700; // type:function size:0xE3C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiBAnimationFv = .text:0x801CB53C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiBFR4Teki = .text:0x801CBC38; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiBFR4Teki = .text:0x801CBC50; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CBC68; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CBC88; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CBCA8; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CBCC0; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiBFR4Teki = .text:0x801CBCD8; // type:function size:0x16C scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CBE44; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiBFR4Teki = .text:0x801CBE5C; // type:function size:0x18 scope:weak align:4 +__ct__21TAIkabekuiCSoundTableFv = .text:0x801CBE74; // type:function size:0x84 scope:global align:4 +__ct__21TAIkabekuiCParametersFv = .text:0x801CBEF8; // type:function size:0x478 scope:global align:4 +__ct__19TAIkabekuiCStrategyFv = .text:0x801CC370; // type:function size:0x129C scope:global align:4 +makeDefaultAnimations__20TAIkabekuiCAnimationFv = .text:0x801CD60C; // type:function size:0x6FC scope:global align:4 +getFrameMax__17TAIAsleepKabekuiCFR4Teki = .text:0x801CDD08; // type:function size:0x18 scope:weak align:4 +getFrameMax__16TAIAdiveKabekuiCFR4Teki = .text:0x801CDD20; // type:function size:0x18 scope:weak align:4 +start__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CDD38; // type:function size:0x20 scope:weak align:4 +act__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CDD58; // type:function size:0x20 scope:weak align:4 +getDamage__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CDD78; // type:function size:0x18 scope:weak align:4 +getAttackPointRadius__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CDD90; // type:function size:0x18 scope:weak align:4 +attackEffect__28TAIAattackWorkObjectKabekuiCFR4Teki = .text:0x801CDDA8; // type:function size:0x16C scope:weak align:4 +start__19TAIAlandingKabekuiCFR4Teki = .text:0x801CDF14; // type:function size:0x68 scope:weak align:4 +act__19TAIAlandingKabekuiCFR4Teki = .text:0x801CDF7C; // type:function size:0x1E4 scope:weak align:4 +getLifePercentThreshold__20TAIAmoreLifeKabekuiCFR4Teki = .text:0x801CE160; // type:function size:0x18 scope:weak align:4 +act__24TAIAcheckPikiFlyKabekuiCFR4Teki = .text:0x801CE178; // type:function size:0x8 scope:weak align:4 +start__24TAIAflyingMotionKabekuiCFR4Teki = .text:0x801CE180; // type:function size:0x3C scope:weak align:4 +getFlyingStayVelocity__22TAIAflyingBaseKabekuiCFR4Teki = .text:0x801CE1BC; // type:function size:0x3C scope:weak align:4 +invoke__Q29@unnamed@12rippleEffectFPQ23zen17particleGenerator = .text:0x801CE1F8; // type:function size:0x28 scope:weak align:4 +start__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CE220; // type:function size:0xC8 scope:weak align:4 +act__19TAIAtakeOffKabekuiCFR4Teki = .text:0x801CE2E8; // type:function size:0x230 scope:weak align:4 +getLifePercentThreshold__20TAIAlessLifeKabekuiCFR4Teki = .text:0x801CE518; // type:function size:0x18 scope:weak align:4 +getPikiAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CE530; // type:function size:0x18 scope:weak align:4 +getNaviAttackSize__19TAIAbiteForKabekuiCFR4Teki = .text:0x801CE548; // type:function size:0x18 scope:weak align:4 +__ct__19TAItamagoSoundTableFv = .text:0x801CE560; // type:function size:0x84 scope:global align:4 +__ct__19TAItamagoParametersFv = .text:0x801CE5E4; // type:function size:0x2F4 scope:global align:4 +__ct__17TAItamagoStrategyFv = .text:0x801CE8D8; // type:function size:0x2DC scope:global align:4 +makeDefaultAnimations__18TAItamagoAnimationFv = .text:0x801CEBB4; // type:function size:0x6FC scope:global align:4 +act__20TAIAcountStartTamagoFR4Teki = .text:0x801CF2B0; // type:function size:0x24 scope:weak align:4 +start__9TAIAhatchFR4Teki = .text:0x801CF2D4; // type:function size:0x4C scope:weak align:4 +act__9TAIAhatchFR4Teki = .text:0x801CF320; // type:function size:0x174 scope:weak align:4 +get__17ParaParametersFi = .text:0x801CF494; // type:function size:0x10 scope:weak align:4 +start__23TAIAtimerReactionTamagoFR4Teki = .text:0x801CF4A4; // type:function size:0xBC scope:weak align:4 +act__23TAIAtimerReactionTamagoFR4Teki = .text:0x801CF560; // type:function size:0x5C scope:weak align:4 +getFrameMax__23TAIAtimerReactionTamagoFR4Teki = .text:0x801CF5BC; // type:function size:0x8 scope:weak align:4 +start__15TAIAdyingTamagoFR4Teki = .text:0x801CF5C4; // type:function size:0x64 scope:weak align:4 +act__15TAIAdyingTamagoFR4Teki = .text:0x801CF628; // type:function size:0xE8 scope:weak align:4 +setDororoEffect__9@unnamed@FR4Teki = .text:0x801CF710; // type:function size:0x1E4 scope:local align:4 +__ct__19TAIdororoSoundTableFv = .text:0x801CF8F4; // type:function size:0x84 scope:global align:4 +__ct__19TAIdororoParametersFv = .text:0x801CF978; // type:function size:0x3C0 scope:global align:4 +__ct__17TAIdororoStrategyFv = .text:0x801CFD38; // type:function size:0xAD0 scope:global align:4 +act__17TAIdororoStrategyFR4Teki = .text:0x801D0808; // type:function size:0x3C8 scope:global align:4 +draw__17TAIdororoStrategyFR4TekiR8Graphics = .text:0x801D0BD0; // type:function size:0x20 scope:global align:4 +createEffect__17TAIdororoStrategyFR4Tekii = .text:0x801D0BF0; // type:function size:0xB0 scope:global align:4 +createCloudOfDust__17TAIdororoStrategyFR4TekiP8CollPart = .text:0x801D0CA0; // type:function size:0x148 scope:global align:4 +start__17TAIdororoStrategyFR4Teki = .text:0x801D0DE8; // type:function size:0x8C scope:global align:4 +makeDefaultAnimations__18TAIdororoAnimationFv = .text:0x801D0E74; // type:function size:0x6FC scope:global align:4 +start__17TAIAgravityDororoFR4Teki = .text:0x801D1570; // type:function size:0x18 scope:weak align:4 +act__17TAIAgravityDororoFR4Teki = .text:0x801D1588; // type:function size:0x60 scope:weak align:4 +act__19TAIAcheckBarkDororoFR4Teki = .text:0x801D15E8; // type:function size:0x1D4 scope:weak align:4 +start__14TAIAbarkDororoFR4Teki = .text:0x801D17BC; // type:function size:0x20 scope:weak align:4 +act__14TAIAbarkDororoFR4Teki = .text:0x801D17DC; // type:function size:0x390 scope:weak align:4 +start__24TAIAtransformationDororoFR4Teki = .text:0x801D1B6C; // type:function size:0x6C scope:weak align:4 +act__24TAIAtransformationDororoFR4Teki = .text:0x801D1BD8; // type:function size:0x298 scope:weak align:4 +start__15TAIAbirthDororoFR4Teki = .text:0x801D1E70; // type:function size:0x4C scope:weak align:4 +act__15TAIAbirthDororoFR4Teki = .text:0x801D1EBC; // type:function size:0xD0 scope:weak align:4 +act__16TAIAgoTargetPikiFR4Teki = .text:0x801D1F8C; // type:function size:0x128 scope:weak align:4 +checkArrival__16TAIAgoTargetPikiFR4Teki = .text:0x801D20B4; // type:function size:0x8 scope:weak align:4 +start__14TAIAwaitDororoFR4Teki = .text:0x801D20BC; // type:function size:0x94 scope:weak align:4 +getWaitCounterMax__14TAIAwaitDororoFR4Teki = .text:0x801D2150; // type:function size:0x8 scope:weak align:4 +start__18TAIAflickingDororoFR4Teki = .text:0x801D2158; // type:function size:0x4C scope:weak align:4 +act__18TAIAflickingDororoFR4Teki = .text:0x801D21A4; // type:function size:0x5C scope:weak align:4 +getWalkVelocity__20TAIAgoGoalPathDororoFR4Teki = .text:0x801D2200; // type:function size:0xB8 scope:weak align:4 +act__17TAIAkillTouchPikiFR4Teki = .text:0x801D22B8; // type:function size:0x87C scope:weak align:4 +start__15TAIAdyingDororoFR4Teki = .text:0x801D2B34; // type:function size:0x190 scope:weak align:4 +act__15TAIAdyingDororoFR4Teki = .text:0x801D2CC4; // type:function size:0x22C scope:weak align:4 +start__14TAIAinitDororoFR4Teki = .text:0x801D2EF0; // type:function size:0x5C scope:weak align:4 +act__14TAIAinitDororoFR4Teki = .text:0x801D2F4C; // type:function size:0x8 scope:weak align:4 +__ct__18TAIhibaASoundTableFv = .text:0x801D2F54; // type:function size:0x84 scope:global align:4 +__ct__18TAIhibaAParametersFv = .text:0x801D2FD8; // type:function size:0x2F8 scope:global align:4 +__ct__16TAIhibaAStrategyFv = .text:0x801D32D0; // type:function size:0x1E8 scope:global align:4 +act__16TAIhibaAStrategyFR4Teki = .text:0x801D34B8; // type:function size:0x188 scope:global align:4 +draw__16TAIhibaAStrategyFR4TekiR8Graphics = .text:0x801D3640; // type:function size:0x3C scope:global align:4 +makeDefaultAnimations__17TAIhibaAAnimationFv = .text:0x801D367C; // type:function size:0x6FC scope:global align:4 +start__19TAIAfireAttackHibaAFR4Teki = .text:0x801D3D78; // type:function size:0x3C scope:weak align:4 +act__19TAIAfireAttackHibaAFR4Teki = .text:0x801D3DB4; // type:function size:0x2E4 scope:weak align:4 +getFrameMax__22TAIAtimerReactionHibaAFR4Teki = .text:0x801D4098; // type:function size:0x18 scope:weak align:4 +start__13TAIAinitHibaAFR4Teki = .text:0x801D40B0; // type:function size:0x64 scope:weak align:4 +act__13TAIAinitHibaAFR4Teki = .text:0x801D4114; // type:function size:0x8 scope:weak align:4 +__sinit_TAIhibaA_cpp = .text:0x801D411C; // type:function size:0x10 scope:local align:4 +hitCreature__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParamP8Creature = .text:0x801D412C; // type:function size:0x68 scope:weak align:4 +hitMap__33TAIeffectAttackEventCallBackHibaAFP20TAIeffectAttackParam = .text:0x801D4194; // type:function size:0x154 scope:weak align:4 +ptclHitMap__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParam = .text:0x801D42E8; // type:function size:0x1DC scope:weak align:4 +hitCheckCulling__33TAIeffectAttackEventCallBackHibaAFPQ23zen17particleGeneratorP20TAIeffectAttackParamP8Creature = .text:0x801D44C4; // type:function size:0xE0 scope:weak align:4 +init__18TAIAeffCloudOfDustFQ29EffectMgr12effTypeTablebiifiiiii = .text:0x801D45A4; // type:function size:0xB8 scope:global align:4 +start__18TAIAeffCloudOfDustFR4Teki = .text:0x801D465C; // type:function size:0xA0 scope:global align:4 +act__18TAIAeffCloudOfDustFR4Teki = .text:0x801D46FC; // type:function size:0x68 scope:global align:4 +setType__18TAIAeffCloudOfDustFR8Vector3fii = .text:0x801D4764; // type:function size:0x40 scope:global align:4 +createCloudOfDust__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D47A4; // type:function size:0x1AC scope:global align:4 +getCollPart__18TAIAeffCloudOfDustFR4Tekii = .text:0x801D4950; // type:function size:0x50 scope:global align:4 +__ct__19TAImiurinSoundTableFv = .text:0x801D49A0; // type:function size:0x84 scope:global align:4 +__ct__19TAImiurinParametersFv = .text:0x801D4A24; // type:function size:0x404 scope:global align:4 +__ct__17TAImiurinStrategyFv = .text:0x801D4E28; // type:function size:0x19CC scope:global align:4 +interact__17TAImiurinStrategyFR4TekiR18TekiInteractionKey = .text:0x801D67F4; // type:function size:0xC4 scope:global align:4 +makeDefaultAnimations__18TAImiurinAnimationFv = .text:0x801D68B8; // type:function size:0x6FC scope:global align:4 +start__16TAIAgroggyMiurinFR4Teki = .text:0x801D6FB4; // type:function size:0x38 scope:weak align:4 +act__16TAIAgroggyMiurinFR4Teki = .text:0x801D6FEC; // type:function size:0xAC scope:weak align:4 +start__24TAIAresetAnimSpeedMiurinFR4Teki = .text:0x801D7098; // type:function size:0x34 scope:weak align:4 +start__15TAIAangryMiurinFR4Teki = .text:0x801D70CC; // type:function size:0xB8 scope:weak align:4 +act__15TAIAangryMiurinFR4Teki = .text:0x801D7184; // type:function size:0x150 scope:weak align:4 +getFlickDirection__15TAIAangryMiurinFR4Teki = .text:0x801D72D4; // type:function size:0x10 scope:weak align:4 +act__19TAIAcheckNaviMiurinFR4Teki = .text:0x801D72E4; // type:function size:0xA8 scope:weak align:4 +act__21TAIAcheckFlowerPikminFR4Teki = .text:0x801D738C; // type:function size:0x1D4 scope:weak align:4 +start__17TAIAsatisfyMiurinFR4Teki = .text:0x801D7560; // type:function size:0x38 scope:weak align:4 +act__17TAIAsatisfyMiurinFR4Teki = .text:0x801D7598; // type:function size:0x128 scope:weak align:4 +act__19TAIAwatchNaviMiurinFR4Teki = .text:0x801D76C0; // type:function size:0xE8 scope:weak align:4 +set__19SmartPtr<8Creature>FP8Creature = .text:0x801D77A8; // type:function size:0x64 scope:weak align:4 +actByEvent__19TAIAwatchNaviMiurinFR9TekiEvent = .text:0x801D780C; // type:function size:0xC4 scope:weak align:4 +act__26TAIAoutsideTerritoryMiurinFR4Teki = .text:0x801D78D0; // type:function size:0x174 scope:weak align:4 +getFlickDirection__18TAIAflickingMiurinFR4Teki = .text:0x801D7A44; // type:function size:0x10 scope:weak align:4 +act__20TAIAflickCheckMiurinFR4Teki = .text:0x801D7A54; // type:function size:0x20 scope:weak align:4 +getDamageCountLimit__20TAIAflickCheckMiurinFR4Teki = .text:0x801D7A74; // type:function size:0x18 scope:weak align:4 +getPikiNum__22TAIAstickingPikiMiurinFR4Teki = .text:0x801D7A8C; // type:function size:0x18 scope:weak align:4 +act__22TAIAcheckSatisfyMiurinFR4Teki = .text:0x801D7AA4; // type:function size:0x50 scope:weak align:4 +start__16TAIAattackMiurinFR4Teki = .text:0x801D7AF4; // type:function size:0x128 scope:weak align:4 +act__16TAIAattackMiurinFR4Teki = .text:0x801D7C1C; // type:function size:0x900 scope:weak align:4 +act__17TAIAattackPostureFR4Teki = .text:0x801D851C; // type:function size:0x5C scope:weak align:4 +act__26TAIAattackableTargetMiurinFR4Teki = .text:0x801D8578; // type:function size:0x5C scope:weak align:4 +start__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D85D4; // type:function size:0x4C scope:weak align:4 +getVelocity__39TAIAapproachTargetPriorityFaceDirMiurinFR4Teki = .text:0x801D8620; // type:function size:0x18 scope:weak align:4 +start__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D8638; // type:function size:0x4C scope:weak align:4 +getTurnVelocity__27TAIAturnFocusCreatureMiurinFR4Teki = .text:0x801D8684; // type:function size:0x18 scope:weak align:4 +start__15TAIAdyingMiurinFR4Teki = .text:0x801D869C; // type:function size:0x34 scope:weak align:4 +act__15TAIAdyingMiurinFR4Teki = .text:0x801D86D0; // type:function size:0xF0 scope:weak align:4 +start__14TAIAinitMiurinFR4Teki = .text:0x801D87C0; // type:function size:0x14 scope:weak align:4 +act__14TAIAinitMiurinFR4Teki = .text:0x801D87D4; // type:function size:0x8 scope:weak align:4 +setPtclGenPtr__Q23zen11PtclGenPackFUlPQ23zen17particleGenerator = .text:0x801D87DC; // type:function size:0x1C scope:global align:4 +setEmitPosPtr__Q23zen11PtclGenPackFP8Vector3f = .text:0x801D87F8; // type:function size:0x34 scope:global align:4 +startGen__Q23zen11PtclGenPackFv = .text:0x801D882C; // type:function size:0x3C scope:global align:4 +stopGen__Q23zen11PtclGenPackFv = .text:0x801D8868; // type:function size:0x3C scope:global align:4 +finish__Q23zen11PtclGenPackFv = .text:0x801D88A4; // type:function size:0x44 scope:global align:4 +forceFinish__Q23zen11PtclGenPackFv = .text:0x801D88E8; // type:function size:0x78 scope:global align:4 +checkStopGen__Q23zen11PtclGenPackFv = .text:0x801D8960; // type:function size:0x44 scope:global align:4 +__ct__Q23zen10DrawProgreFv = .text:0x801D89A4; // type:function size:0x1B4 scope:global align:4 +setMode__Q23zen13DrawProgreMesFQ33zen13DrawProgreMes8modeFlag = .text:0x801D8B58; // type:function size:0xD8 scope:weak align:4 +start__Q23zen10DrawProgreFv = .text:0x801D8C30; // type:function size:0x50 scope:global align:4 +update__Q23zen10DrawProgreFP10Controller = .text:0x801D8C80; // type:function size:0x2A0 scope:global align:4 +draw__Q23zen10DrawProgreFR8Graphics = .text:0x801D8F20; // type:function size:0x48 scope:global align:4 +update__Q23zen17SpectrumCursorMgrFv = .text:0x801D8F68; // type:function size:0x394 scope:global align:4 +move__Q23zen17SpectrumCursorMgrFfff = .text:0x801D92FC; // type:function size:0x70 scope:global align:4 +scale__Q23zen17SpectrumCursorMgrFff = .text:0x801D936C; // type:function size:0x24 scope:global align:4 +init__Q23zen17SpectrumCursorMgrFP9P2DScreenP7P2DPaneUlff = .text:0x801D9390; // type:function size:0x374 scope:global align:4 +initPos__Q23zen17SpectrumCursorMgrFff = .text:0x801D9704; // type:function size:0x108 scope:global align:4 +initScale__Q23zen17SpectrumCursorMgrFf = .text:0x801D980C; // type:function size:0x4C scope:global align:4 +makeTag__Q23zen17SpectrumCursorMgrFUli = .text:0x801D9858; // type:function size:0x48 scope:global align:4 +__ct__Q23zen12DrawWorldMapFv = .text:0x801D98A0; // type:function size:0x246C scope:global align:4 +init__Q23zen18WorldMapConfirmMgrFQ33zen18WorldMapConfirmMgr10statusFlag = .text:0x801DBD0C; // type:function size:0x174 scope:weak align:4 +hide__7P2DPaneFv = .text:0x801DBE80; // type:function size:0x14 scope:weak align:4 +__ct__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DBE94; // type:function size:0x2C scope:weak align:4 +init__Q23zen17WorldMapCursorMgrFv = .text:0x801DBEC0; // type:function size:0x67C scope:weak align:4 +setLandingFlag__Q23zen17WorldMapCursorMgrFb = .text:0x801DC53C; // type:function size:0xAC scope:weak align:4 +init__Q23zen19WorldMapCursorOnyonFv = .text:0x801DC5E8; // type:function size:0x11C scope:weak align:4 +initParams__Q23zen17WorldMapCursorMgrFv = .text:0x801DC704; // type:function size:0x104 scope:weak align:4 +__ct__Q23zen19WorldMapCursorOnyonFv = .text:0x801DC808; // type:function size:0xEC scope:weak align:4 +setTex__Q29@unnamed@24DrawWorldMapDateCallBackFv = .text:0x801DC8F4; // type:function size:0x164 scope:weak align:4 +init__Q23zen19WorldMapMapImageMgrFv = .text:0x801DCA58; // type:function size:0xB8 scope:weak align:4 +init__Q23zen12WorldMapWipeFP9P2DScreenUl = .text:0x801DCB10; // type:function size:0x164 scope:weak align:4 +__ct__Q23zen12WorldMapWipeFv = .text:0x801DCC74; // type:function size:0x34 scope:weak align:4 +setPane__Q29@unnamed@19WorldMapCoursePointFP9P2DScreenUlUlUlP9P2DScreenUl = .text:0x801DCCA8; // type:function size:0x188 scope:weak align:4 +__ct__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801DCE30; // type:function size:0x38 scope:weak align:4 +update__Q23zen12DrawWorldMapFP10Controller = .text:0x801DCE68; // type:function size:0xC14 scope:global align:4 +update__Q29@unnamed@16WorldMapTitleObjFv = .text:0x801DDA7C; // type:function size:0x25C scope:weak align:4 +modeOpen__Q23zen19WorldMapMapImageMgrFv = .text:0x801DDCD8; // type:function size:0xEC scope:weak align:4 +modeClose__Q23zen19WorldMapMapImageMgrFv = .text:0x801DDDC4; // type:function size:0xE0 scope:weak align:4 +effect__Q23zen17WorldMapCursorMgrFv = .text:0x801DDEA4; // type:function size:0x358 scope:weak align:4 +update__Q23zen19WorldMapCursorOnyonFR8Vector3f = .text:0x801DE1FC; // type:function size:0x628 scope:weak align:4 +moveOnyon__Q23zen17WorldMapCursorMgrFv = .text:0x801DE824; // type:function size:0x350 scope:weak align:4 +forceMove__Q23zen17WorldMapCursorMgrFv = .text:0x801DEB74; // type:function size:0xD0 scope:weak align:4 +moveUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801DEC44; // type:function size:0x494 scope:weak align:4 +stayUfo__Q23zen17WorldMapCursorMgrFv = .text:0x801DF0D8; // type:function size:0x3B4 scope:weak align:4 +draw__Q23zen12DrawWorldMapFR8Graphics = .text:0x801DF48C; // type:function size:0x134 scope:global align:4 +start__Q23zen12DrawWorldMapFQ33zen12DrawWorldMap13startModeFlagQ33zen12DrawWorldMap14startPlaceFlag = .text:0x801DF5C0; // type:function size:0x1B78 scope:global align:4 +setDisplayParts__Q23zen20WorldMapPartsInfoMgrFii = .text:0x801E1138; // type:function size:0xC8 scope:weak align:4 +updateOnyonPos__Q23zen17WorldMapCursorMgrFP8Vector3fP8Vector3fP8Vector3f = .text:0x801E1200; // type:function size:0x318 scope:weak align:4 +select__Q29@unnamed@19WorldMapCoursePointFv = .text:0x801E1518; // type:function size:0x48 scope:weak align:4 +modeStart__Q23zen12DrawWorldMapFP10Controller = .text:0x801E1560; // type:function size:0x47C scope:global align:4 +modeAppear__Q23zen12DrawWorldMapFP10Controller = .text:0x801E19DC; // type:function size:0x2744 scope:global align:4 +modeAppear__Q23zen22WorldMapCoursePointMgrFv = .text:0x801E4120; // type:function size:0x214 scope:weak align:4 +modeOperation__Q23zen22WorldMapCoursePointMgrFP10Controllerb = .text:0x801E4334; // type:function size:0x5A4 scope:weak align:4 +modeOperation__Q23zen12DrawWorldMapFP10Controller = .text:0x801E48D8; // type:function size:0x868 scope:global align:4 +modeConfirm__Q23zen12DrawWorldMapFP10Controller = .text:0x801E5140; // type:function size:0x614 scope:global align:4 +modeOperation__Q23zen18WorldMapConfirmMgrFP10Controller = .text:0x801E5754; // type:function size:0x1C8 scope:weak align:4 +modeEnd__Q23zen12DrawWorldMapFP10Controller = .text:0x801E591C; // type:function size:0x154 scope:global align:4 +updateScreens__Q23zen12DrawWorldMapFv = .text:0x801E5A70; // type:function size:0xDC scope:global align:4 +closeMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E5B4C; // type:function size:0x124 scope:global align:4 +setActiveMapNo__Q23zen20WorldMapPartsInfoMgrFQ29@unnamed@12WorldMapName = .text:0x801E5C70; // type:function size:0x20C scope:weak align:4 +openMapInfo__Q23zen12DrawWorldMapFv = .text:0x801E5E7C; // type:function size:0x220 scope:global align:4 +invoke__Q29@unnamed@24DrawWorldMapDateCallBackFP7P2DPane = .text:0x801E609C; // type:function size:0x168 scope:weak align:4 +__ct__Q23zen13DrawCountDownFv = .text:0x801E6204; // type:function size:0x1F8 scope:global align:4 +setRate__Q23zen13DrawCountDownFfff = .text:0x801E63FC; // type:function size:0x10 scope:global align:4 +init__Q23zen13DrawCountDownFffPf = .text:0x801E640C; // type:function size:0x1A8 scope:global align:4 +update__Q23zen13DrawCountDownFv = .text:0x801E65B4; // type:function size:0xA70 scope:global align:4 +draw__Q23zen13DrawCountDownFR8Graphics = .text:0x801E7024; // type:function size:0x30 scope:global align:4 +__ct__Q23zen12DrawGameOverFv = .text:0x801E7054; // type:function size:0x334 scope:global align:4 +init__Q23zen18DrawGameOverLetterFP7P2DPane = .text:0x801E7388; // type:function size:0x15C scope:weak align:4 +__ct__Q23zen18DrawGameOverLetterFv = .text:0x801E74E4; // type:function size:0x3C scope:weak align:4 +start__Q23zen12DrawGameOverFQ33zen12DrawGameOver8modeFlagf = .text:0x801E7520; // type:function size:0xE8 scope:global align:4 +initParams__Q23zen18DrawGameOverLetterFv = .text:0x801E7608; // type:function size:0x134 scope:weak align:4 +update__Q23zen12DrawGameOverFP10Controller = .text:0x801E773C; // type:function size:0x118 scope:global align:4 +update__Q23zen18DrawGameOverLetterFv = .text:0x801E7854; // type:function size:0x514 scope:weak align:4 +draw__Q23zen12DrawGameOverFR8Graphics = .text:0x801E7D68; // type:function size:0x40 scope:global align:4 +__ct__11YaiStrategyFii = .text:0x801E7DA8; // type:function size:0x64 scope:global align:4 +init__11YaiStrategyFii = .text:0x801E7E0C; // type:function size:0x4C scope:global align:4 +start__11YaiStrategyFR4Teki = .text:0x801E7E58; // type:function size:0x44 scope:global align:4 +act__11YaiStrategyFR4Teki = .text:0x801E7E9C; // type:function size:0xAC scope:global align:4 +eventPerformed__11YaiStrategyFR9TekiEvent = .text:0x801E7F48; // type:function size:0xAC scope:global align:4 +draw__11YaiStrategyFR4TekiR8Graphics = .text:0x801E7FF4; // type:function size:0x20 scope:global align:4 +__ct__Q23zen11EffectMgr2DFiii = .text:0x801E8014; // type:function size:0x27C scope:global align:4 +create__Q23zen11EffectMgr2DFUlR8Vector3fPQ23zen37CallBack1PQ23zen58CallBack2 = .text:0x801E8290; // type:function size:0x4C scope:global align:4 +update__Q23zen11EffectMgr2DFv = .text:0x801E82DC; // type:function size:0x24 scope:global align:4 +draw__Q23zen11EffectMgr2DFR8Graphics = .text:0x801E8300; // type:function size:0x128 scope:global align:4 +killAll__Q23zen11EffectMgr2DFb = .text:0x801E8428; // type:function size:0x24 scope:global align:4 +__ct__Q23zen11DrawWMPauseFv = .text:0x801E844C; // type:function size:0xA8 scope:global align:4 +start__Q23zen11DrawWMPauseFv = .text:0x801E84F4; // type:function size:0x60 scope:global align:4 +update__Q23zen11DrawWMPauseFP10Controller = .text:0x801E8554; // type:function size:0x17C scope:global align:4 +draw__Q23zen11DrawWMPauseFR8Graphics = .text:0x801E86D0; // type:function size:0x24 scope:global align:4 +__ct__18TAIusubaParametersFv = .text:0x801E86F4; // type:function size:0x294 scope:global align:4 +makeDefaultAnimations__17TAIusubaAnimationFv = .text:0x801E8988; // type:function size:0x6FC scope:global align:4 +start__12TAIAflyUsubaFR4Teki = .text:0x801E9084; // type:function size:0x90 scope:weak align:4 +act__12TAIAflyUsubaFR4Teki = .text:0x801E9114; // type:function size:0xB0 scope:weak align:4 +__ct__18TAIotamaSoundTableFv = .text:0x801E91C4; // type:function size:0x84 scope:global align:4 +__ct__18TAIotamaParametersFv = .text:0x801E9248; // type:function size:0x33C scope:global align:4 +__ct__16TAIotamaStrategyFv = .text:0x801E9584; // type:function size:0x530 scope:global align:4 +makeDefaultAnimations__17TAIotamaAnimationFv = .text:0x801E9AB4; // type:function size:0x6FC scope:global align:4 +start__16TAIArunAwayOtamaFR4Teki = .text:0x801EA1B0; // type:function size:0x384 scope:weak align:4 +act__16TAIArunAwayOtamaFR4Teki = .text:0x801EA534; // type:function size:0x3D4 scope:weak align:4 +flick__15TAIAappealOtamaFR4Teki = .text:0x801EA908; // type:function size:0x90 scope:weak align:4 +act__18TAIAsetTargetOtamaFR4Teki = .text:0x801EA998; // type:function size:0x94 scope:weak align:4 +start__13TAIAwaitOtamaFR4Teki = .text:0x801EAA2C; // type:function size:0xC0 scope:weak align:4 +act__13TAIAwaitOtamaFR4Teki = .text:0x801EAAEC; // type:function size:0xE0 scope:weak align:4 +modeAppear__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801EABCC; // type:function size:0x1B8 scope:weak align:4 +setModeFunc__Q23zen12DrawCMCSmenuFi = .text:0x801EAD84; // type:function size:0x2A8 scope:weak align:4 +__ct__Q23zen18DrawCMcourseSelectFv = .text:0x801EB02C; // type:function size:0x3A4 scope:global align:4 +__ct__Q33zen12DrawCMCSmenu13MenuExpansionFv = .text:0x801EB3D0; // type:function size:0x88 scope:weak align:4 +start__Q23zen18DrawCMcourseSelectFv = .text:0x801EB458; // type:function size:0x294 scope:global align:4 +setBestScore__Q23zen18DrawCMcourseSelectFv = .text:0x801EB6EC; // type:function size:0x80 scope:global align:4 +update__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801EB76C; // type:function size:0x11C scope:global align:4 +start__Q23zen12DrawCMCSmenuFv = .text:0x801EB888; // type:function size:0x44 scope:weak align:4 +draw__Q23zen18DrawCMcourseSelectFR8Graphics = .text:0x801EB8CC; // type:function size:0x90 scope:global align:4 +getReturnStatusFlag__Q23zen18DrawCMcourseSelectFv = .text:0x801EB95C; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen18DrawCMcourseSelectFP10Controller = .text:0x801EB964; // type:function size:0x100 scope:global align:4 +update__Q23zen12DrawCMCSmenuFP10Controller = .text:0x801EBA64; // type:function size:0x168 scope:weak align:4 +modeDefault__Q23zen12DrawMenuBaseFP10Controller = .text:0x801EBBCC; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMtitleObjFP9P2DScreen = .text:0x801EBBD4; // type:function size:0x158 scope:global align:4 +update__Q23zen14DrawCMtitleObjFv = .text:0x801EBD2C; // type:function size:0x30 scope:global align:4 +wait__Q23zen14DrawCMtitleObjFf = .text:0x801EBD5C; // type:function size:0x4C scope:global align:4 +appear__Q23zen14DrawCMtitleObjFf = .text:0x801EBDA8; // type:function size:0x4C scope:global align:4 +modeSleep__Q23zen14DrawCMtitleObjFv = .text:0x801EBDF4; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMtitleObjFv = .text:0x801EBDFC; // type:function size:0x120 scope:global align:4 +modeWait__Q23zen14DrawCMtitleObjFv = .text:0x801EBF1C; // type:function size:0xE4 scope:global align:4 +modeMove__Q23zen14DrawCMscoreObjFv = .text:0x801EC000; // type:function size:0x150 scope:weak align:4 +modeWait__Q23zen14DrawCMscoreObjFv = .text:0x801EC150; // type:function size:0x8 scope:weak align:4 +init__Q23zen14DrawCMscoreMgrFP9P2DScreen = .text:0x801EC158; // type:function size:0x4E4 scope:global align:4 +setTexture__Q23zen20NumberPicCallBackFP7P2DPane = .text:0x801EC63C; // type:function size:0x9C scope:weak align:4 +__ct__Q23zen14DrawCMscoreObjFv = .text:0x801EC6D8; // type:function size:0x74 scope:weak align:4 +update__Q23zen14DrawCMscoreMgrFv = .text:0x801EC74C; // type:function size:0x7C scope:global align:4 +hide__Q23zen14DrawCMscoreMgrFv = .text:0x801EC7C8; // type:function size:0x3C scope:global align:4 +sleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EC804; // type:function size:0x64 scope:global align:4 +appear__Q23zen14DrawCMscoreMgrFf = .text:0x801EC868; // type:function size:0x114 scope:global align:4 +modeSleep__Q23zen14DrawCMscoreMgrFv = .text:0x801EC97C; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen14DrawCMscoreMgrFv = .text:0x801EC984; // type:function size:0x7C scope:global align:4 +modeWait__Q23zen14DrawCMscoreMgrFv = .text:0x801ECA00; // type:function size:0x14 scope:global align:4 +setScore__Q23zen14DrawCMscoreMgrFii = .text:0x801ECA14; // type:function size:0x28 scope:global align:4 +modeWait__Q23zen13DrawCMBpicObjFv = .text:0x801ECA3C; // type:function size:0x130 scope:weak align:4 +modeAppear__Q23zen13DrawCMBpicObjFv = .text:0x801ECB6C; // type:function size:0xF4 scope:weak align:4 +modeSleep__Q23zen13DrawCMBpicObjFv = .text:0x801ECC60; // type:function size:0x8 scope:weak align:4 +init__Q23zen10DrawCMbestFP9P2DScreen = .text:0x801ECC68; // type:function size:0x224 scope:global align:4 +__ct__Q23zen13DrawCMBpicObjFv = .text:0x801ECE8C; // type:function size:0x40 scope:weak align:4 +sleep__Q23zen10DrawCMbestFv = .text:0x801ECECC; // type:function size:0x24 scope:global align:4 +update__Q23zen10DrawCMbestFv = .text:0x801ECEF0; // type:function size:0x7C scope:global align:4 +appear__Q23zen10DrawCMbestFv = .text:0x801ECF6C; // type:function size:0x24 scope:global align:4 +wait__Q23zen10DrawCMbestFv = .text:0x801ECF90; // type:function size:0x24 scope:global align:4 +modeSleep__Q23zen10DrawCMbestFv = .text:0x801ECFB4; // type:function size:0x8 scope:global align:4 +modeWait__Q23zen10DrawCMbestFv = .text:0x801ECFBC; // type:function size:0x8 scope:global align:4 +modeAppear__Q23zen10DrawCMbestFv = .text:0x801ECFC4; // type:function size:0x5C scope:global align:4 +setMode__Q23zen10DrawCMbestFQ33zen10DrawCMbest8modeFlag = .text:0x801ED020; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen13DrawCMBpicObjFQ33zen13DrawCMBpicObj8modeFlag = .text:0x801ED1F4; // type:function size:0xC8 scope:weak align:4 +__ct__Q23zen12DrawCMresultFv = .text:0x801ED2BC; // type:function size:0xA54 scope:global align:4 +update__Q23zen12DrawCMresultFP10Controller = .text:0x801EDD10; // type:function size:0xCC scope:global align:4 +update__Q23zen17DrawCMresultAlphaFv = .text:0x801EDDDC; // type:function size:0x50 scope:weak align:4 +draw__Q23zen12DrawCMresultFR8Graphics = .text:0x801EDE2C; // type:function size:0x98 scope:global align:4 +start__Q23zen12DrawCMresultFRC17GameChalQuickInfo = .text:0x801EDEC4; // type:function size:0x170 scope:global align:4 +makeResident__Q23zen12DrawCMresultFv = .text:0x801EE034; // type:function size:0xBC scope:global align:4 +setMode__Q23zen12DrawCMresultFQ33zen12DrawCMresult8modeFlag = .text:0x801EE0F0; // type:function size:0x16C scope:global align:4 +modeSleep__Q23zen12DrawCMresultFP10Controller = .text:0x801EE25C; // type:function size:0x8 scope:global align:4 +modeWaitAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EE264; // type:function size:0x4C scope:global align:4 +modeAppear__Q23zen12DrawCMresultFP10Controller = .text:0x801EE2B0; // type:function size:0xD8 scope:global align:4 +modeOperation__Q23zen12DrawCMresultFP10Controller = .text:0x801EE388; // type:function size:0xFC scope:global align:4 +modeSave__Q23zen12DrawCMresultFP10Controller = .text:0x801EE484; // type:function size:0xA4 scope:global align:4 +createRankInEffect__Q23zen12DrawCMresultFv = .text:0x801EE528; // type:function size:0x378 scope:global align:4 +__ct__Q23zen12DrawMenuBaseFPcbb = .text:0x801EE8A0; // type:function size:0x438 scope:global align:4 +update__Q23zen12DrawMenuBaseFP10Controller = .text:0x801EECD8; // type:function size:0x70 scope:global align:4 +draw__Q23zen12DrawMenuBaseFR8Graphics = .text:0x801EED48; // type:function size:0x20 scope:global align:4 +init__Q23zen12DrawMenuBaseFi = .text:0x801EED68; // type:function size:0x1A0 scope:global align:4 +start__Q23zen12DrawMenuBaseFv = .text:0x801EEF08; // type:function size:0x34 scope:global align:4 +modeSleep__Q23zen12DrawMenuBaseFP10Controller = .text:0x801EEF3C; // type:function size:0x8 scope:global align:4 +modeOperation__Q23zen12DrawMenuBaseFP10Controller = .text:0x801EEF44; // type:function size:0x214 scope:global align:4 +setModeFunc__Q23zen12DrawMenuBaseFi = .text:0x801EF158; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawHiScoreFv = .text:0x801EF1D4; // type:function size:0x3D8 scope:global align:4 +update__Q23zen11DrawHiScoreFP10Controller = .text:0x801EF5AC; // type:function size:0x12C scope:global align:4 +draw__Q23zen11DrawHiScoreFR8Graphics = .text:0x801EF6D8; // type:function size:0x1B0 scope:global align:4 +start__Q23zen11DrawHiScoreFv = .text:0x801EF888; // type:function size:0x84 scope:global align:4 +rewriteNumber__Q23zen11DrawHiScoreFP9P2DScreenUliib = .text:0x801EF90C; // type:function size:0x33C scope:global align:4 +__ct__Q23zen12DamageEffectFv = .text:0x801EFC48; // type:function size:0xC scope:global align:4 +update__Q23zen12DamageEffectFv = .text:0x801EFC54; // type:function size:0xA8 scope:global align:4 +draw__Q23zen12DamageEffectFR8Graphics = .text:0x801EFCFC; // type:function size:0x430 scope:global align:4 +__ct__Q23zen9AlphaWipeFv = .text:0x801F012C; // type:function size:0x48 scope:global align:4 +update__Q23zen9AlphaWipeFv = .text:0x801F0174; // type:function size:0x20C scope:global align:4 +draw__Q23zen9AlphaWipeFR8Graphics = .text:0x801F0380; // type:function size:0xE4 scope:global align:4 +start__Q23zen9AlphaWipeFffQ33zen9AlphaWipe8typeFlag = .text:0x801F0464; // type:function size:0x50 scope:global align:4 +__ct__Q23zen12DrawUfoPartsFv = .text:0x801F04B4; // type:function size:0xEC scope:global align:4 +update__Q23zen12DrawUfoPartsFP10Controller = .text:0x801F05A0; // type:function size:0x130 scope:global align:4 +draw__Q23zen12DrawUfoPartsFR8Graphics = .text:0x801F06D0; // type:function size:0x1B4 scope:global align:4 +sleep__Q23zen12DrawUfoPartsFv = .text:0x801F0884; // type:function size:0x34 scope:global align:4 +start__Q23zen12DrawUfoPartsFv = .text:0x801F08B8; // type:function size:0x68 scope:global align:4 +operation__Q23zen12DrawUfoPartsFv = .text:0x801F0920; // type:function size:0x4C scope:global align:4 +dataSet__Q23zen12DrawUfoPartsFv = .text:0x801F096C; // type:function size:0x20C scope:global align:4 +makePathName__3zenFPCcPCcPc = .text:0x801F0B78; // type:function size:0x1BC scope:global align:4 +loadTexExp__3zenFPCcbb = .text:0x801F0D34; // type:function size:0x7C scope:global align:4 +__ct__Q23zen11DrawSaveMesFv = .text:0x801F0DB0; // type:function size:0x348 scope:global align:4 +sleep__Q23zen11DrawSaveMesFv = .text:0x801F10F8; // type:function size:0x24 scope:global align:4 +mesAppear__Q23zen11DrawSaveMesFv = .text:0x801F111C; // type:function size:0x50 scope:global align:4 +saveFinish__Q23zen11DrawSaveMesFv = .text:0x801F116C; // type:function size:0x48 scope:global align:4 +saveError__Q23zen11DrawSaveMesFv = .text:0x801F11B4; // type:function size:0x24 scope:global align:4 +update__Q23zen11DrawSaveMesFP10Controller = .text:0x801F11D8; // type:function size:0x8A4 scope:global align:4 +draw__Q23zen11DrawSaveMesFR8Graphics = .text:0x801F1A7C; // type:function size:0x68 scope:global align:4 +setMode__Q23zen11DrawSaveMesFQ33zen11DrawSaveMes8modeFlag = .text:0x801F1AE4; // type:function size:0x1D0 scope:global align:4 +__ct__Q23zen15DrawSaveFailureFv = .text:0x801F1CB4; // type:function size:0xF4 scope:global align:4 +update__Q23zen15DrawSaveFailureFP10Controller = .text:0x801F1DA8; // type:function size:0x1F0 scope:global align:4 +draw__Q23zen15DrawSaveFailureFR8Graphics = .text:0x801F1F98; // type:function size:0x3C scope:global align:4 +open__Q23zen15DrawSaveFailureFf = .text:0x801F1FD4; // type:function size:0x54 scope:global align:4 +setMode__Q23zen15DrawSaveFailureFQ33zen15DrawSaveFailure8modeFlag = .text:0x801F2028; // type:function size:0x98 scope:global align:4 +calcFrame__Q23zen15DrawSaveFailureFf = .text:0x801F20C0; // type:function size:0x34 scope:global align:4 +init__Q23zen15DrawSaveFailureFv = .text:0x801F20F4; // type:function size:0x98 scope:global align:4 +__ct__Q23zen14DrawTotalScoreFPQ23zen16TotalScoreRecord = .text:0x801F218C; // type:function size:0xAC0 scope:global align:4 +update__Q23zen14DrawTotalScoreFP10Controller = .text:0x801F2C4C; // type:function size:0x1D4 scope:global align:4 +setMode__Q23zen14DrawTotalScoreFQ33zen14DrawTotalScore8modeFlag = .text:0x801F2E20; // type:function size:0x138 scope:global align:4 +playRankInFanfare__Q23zen14DrawTotalScoreFv = .text:0x801F2F58; // type:function size:0x4 scope:global align:4 +setRankInEffect__Q23zen14DrawTotalScoreFv = .text:0x801F2F5C; // type:function size:0x6EC scope:global align:4 +setRankInColor__Q23zen14DrawTotalScoreFv = .text:0x801F3648; // type:function size:0x1D4 scope:global align:4 +__ct__Q23zen15DrawFinalResultFPQ23zen16TotalScoreRecord = .text:0x801F381C; // type:function size:0x70 scope:global align:4 +update__Q23zen15DrawFinalResultFP10Controller = .text:0x801F388C; // type:function size:0x1A4 scope:global align:4 +draw__Q23zen15DrawFinalResultFR8Graphics = .text:0x801F3A30; // type:function size:0x138 scope:global align:4 +start__Q23zen15DrawFinalResultFv = .text:0x801F3B68; // type:function size:0x24 scope:global align:4 +setMode__Q23zen15DrawFinalResultFQ33zen15DrawFinalResult8modeFlag = .text:0x801F3B8C; // type:function size:0xC8 scope:global align:4 +__ct__Q23zen14DrawOptionSaveFv = .text:0x801F3C54; // type:function size:0x4C scope:global align:4 +update__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F3CA0; // type:function size:0x188 scope:global align:4 +draw__Q23zen14DrawOptionSaveFR8Graphics = .text:0x801F3E28; // type:function size:0x6C scope:global align:4 +modeCardCheck__Q23zen14DrawOptionSaveFP10Controller = .text:0x801F3E94; // type:function size:0x94 scope:global align:4 +init__Q23zen14DrawOptionSaveFv = .text:0x801F3F28; // type:function size:0x28 scope:global align:4 +start__Q23zen14DrawOptionSaveFv = .text:0x801F3F50; // type:function size:0x28 scope:global align:4 +setMode__Q23zen14DrawOptionSaveFUlP10Controller = .text:0x801F3F78; // type:function size:0x120 scope:global align:4 +PPCMfmsr = .text:0x801F4098; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x801F40A0; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x801F40A8; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x801F40B0; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x801F40B8; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x801F40C0; // type:function size:0x8 scope:weak align:4 +PPCSync = .text:0x801F40C8; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x801F40D0; // type:function size:0x14 scope:weak align:4 +PPCMfhid2 = .text:0x801F40E4; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x801F40EC; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x801F40F4; // type:function size:0x8 scope:global align:4 +OSGetConsoleType = .text:0x801F40FC; // type:function size:0x28 scope:global align:4 +ClearArena = .text:0x801F4124; // type:function size:0x10C scope:local align:4 +OSInit = .text:0x801F4230; // type:function size:0x350 scope:global align:4 +OSExceptionInit = .text:0x801F4580; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x801F4800; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x801F4800; // type:label scope:global +__OSDBJump = .text:0x801F4824; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x801F4824; // type:label scope:global +__OSDBJUMPEND = .text:0x801F4828; // type:label scope:global +__OSSetExceptionHandler = .text:0x801F4828; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x801F4844; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x801F4858; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x801F4858; // type:label scope:global +__DBVECTOR = .text:0x801F48B0; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x801F48C0; // type:label scope:global data:4byte +__OSEVEnd = .text:0x801F48F0; // type:label scope:global +OSDefaultExceptionHandler = .text:0x801F48F4; // type:function size:0x54 scope:global align:4 +__OSPSInit = .text:0x801F4948; // type:function size:0x38 scope:global align:4 +__OSGetDIConfig = .text:0x801F4980; // type:function size:0x14 scope:global align:4 +OSInitAlarm = .text:0x801F4994; // type:function size:0x4C scope:global align:4 +OSCreateAlarm = .text:0x801F49E0; // type:function size:0xC scope:global align:4 +InsertAlarm = .text:0x801F49EC; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x801F4C3C; // type:function size:0x68 scope:global align:4 +OSCancelAlarm = .text:0x801F4CA4; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x801F4DC0; // type:function size:0x230 scope:local align:4 +DecrementerExceptionHandler = .text:0x801F4FF0; // type:function size:0x4C scope:local align:4 +OSAllocFromHeap = .text:0x801F503C; // type:function size:0xFC scope:global align:4 +OSInitAlloc = .text:0x801F5138; // type:function size:0x70 scope:global align:4 +OSGetArenaHi = .text:0x801F51A8; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x801F51B0; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x801F51B8; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x801F51C0; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x801F51C8; // type:function size:0x1BC scope:global align:4 +__OSStopAudioSystem = .text:0x801F5384; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x801F545C; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x801F5470; // type:function size:0x30 scope:global align:4 +DCFlushRange = .text:0x801F54A0; // type:function size:0x34 scope:global align:4 +DCStoreRange = .text:0x801F54D4; // type:function size:0x34 scope:global align:4 +DCFlushRangeNoSync = .text:0x801F5508; // type:function size:0x30 scope:global align:4 +DCStoreRangeNoSync = .text:0x801F5538; // type:function size:0x30 scope:global align:4 +DCZeroRange = .text:0x801F5568; // type:function size:0x30 scope:global align:4 +ICInvalidateRange = .text:0x801F5598; // type:function size:0x38 scope:global align:4 +ICFlashInvalidate = .text:0x801F55D0; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x801F55E0; // type:function size:0x14 scope:global align:4 +LCDisable = .text:0x801F55F4; // type:function size:0x28 scope:global align:4 +L2GlobalInvalidate = .text:0x801F561C; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x801F56B4; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x801F5814; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x801F5908; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x801F5A2C; // type:function size:0x128 scope:local align:4 +OSSetCurrentContext = .text:0x801F5B54; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x801F5BB0; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x801F5BBC; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x801F5C3C; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x801F5D14; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x801F5D1C; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x801F5D40; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x801F5DFC; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x801F60A4; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x801F6128; // type:function size:0x48 scope:global align:4 +OSReport = .text:0x801F6170; // type:function size:0x80 scope:global align:4 +OSPanic = .text:0x801F61F0; // type:function size:0x12C scope:global align:4 +OSSetErrorHandler = .text:0x801F631C; // type:function size:0x1C scope:global align:4 +__OSUnhandledException = .text:0x801F6338; // type:function size:0x200 scope:global align:4 +OSGetFontEncode = .text:0x801F6538; // type:function size:0x58 scope:global align:4 +OSDisableInterrupts = .text:0x801F6590; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x801F6590; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x801F65A0; // type:label scope:global +OSEnableInterrupts = .text:0x801F65A4; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x801F65B8; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x801F65DC; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x801F65F8; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x801F660C; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x801F6680; // type:function size:0x2D8 scope:local align:4 +__OSMaskInterrupts = .text:0x801F6958; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x801F69E0; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x801F6A68; // type:function size:0x344 scope:global align:4 +ExternalInterruptHandler = .text:0x801F6DAC; // type:function size:0x4C scope:local align:4 +__OSModuleInit = .text:0x801F6DF8; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x801F6E10; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x801F6E70; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x801F6F38; // type:function size:0xDC scope:global align:4 +OnReset = .text:0x801F7014; // type:function size:0x3C scope:local align:4 +MEMIntrruptHandler = .text:0x801F7050; // type:function size:0x6C scope:local align:4 +Config24MB = .text:0x801F70BC; // type:function size:0x80 scope:local align:4 +Config48MB = .text:0x801F713C; // type:function size:0x80 scope:local align:4 +RealMode = .text:0x801F71BC; // type:function size:0x18 scope:local align:4 +__OSInitMemoryProtection = .text:0x801F71D4; // type:function size:0x120 scope:global align:4 +OSInitMutex = .text:0x801F72F4; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x801F732C; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x801F7408; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x801F74D0; // type:function size:0x70 scope:global align:4 +OSInitCond = .text:0x801F7540; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x801F7560; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x801F7634; // type:function size:0x20 scope:global align:4 +__OSCheckMutex = .text:0x801F7654; // type:function size:0x100 scope:global align:4 +__OSCheckDeadLock = .text:0x801F7754; // type:function size:0x38 scope:global align:4 +__OSCheckMutexes = .text:0x801F778C; // type:function size:0x74 scope:global align:4 +Run = .text:0x801F7800; // type:function size:0x40 scope:local align:4 +Callback = .text:0x801F7840; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x801F784C; // type:function size:0x1CC scope:global align:4 +OSRegisterResetFunction = .text:0x801F7A18; // type:function size:0x84 scope:global align:4 +Reset = .text:0x801F7A9C; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x801F7B0C; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x801F7B54; // type:function size:0x268 scope:global align:4 +OSGetResetCode = .text:0x801F7DBC; // type:function size:0x30 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x801F7DEC; // type:function size:0xF4 scope:global align:4 +OSGetResetButtonState = .text:0x801F7EE0; // type:function size:0x298 scope:global align:4 +OSGetResetSwitchState = .text:0x801F8178; // type:function size:0x20 scope:global align:4 +WriteSramCallback = .text:0x801F8198; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x801F81F8; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x801F8310; // type:function size:0x134 scope:global align:4 +__OSLockSram = .text:0x801F8444; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x801F84A0; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x801F84FC; // type:function size:0x308 scope:local align:4 +__OSUnlockSram = .text:0x801F8804; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x801F8828; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x801F884C; // type:function size:0x10 scope:global align:4 +OSGetSoundMode = .text:0x801F885C; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x801F88DC; // type:function size:0xA4 scope:global align:4 +OSSetProgressiveMode = .text:0x801F8980; // type:function size:0xA4 scope:global align:4 +OSGetLanguage = .text:0x801F8A24; // type:function size:0x6C scope:global align:4 +OSGetWirelessID = .text:0x801F8A90; // type:function size:0x84 scope:global align:4 +OSSetWirelessID = .text:0x801F8B14; // type:function size:0xAC scope:global align:4 +SystemCallVector = .text:0x801F8BC0; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x801F8BC0; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x801F8BDC; // type:label scope:global +__OSInitSystemCall = .text:0x801F8BE0; // type:function size:0x64 scope:global align:4 +__OSThreadInit = .text:0x801F8C44; // type:function size:0x128 scope:global align:4 +OSInitThreadQueue = .text:0x801F8D6C; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x801F8D7C; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x801F8D88; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x801F8DBC; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x801F8DFC; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x801F8E3C; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x801F8EA4; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x801F8EE0; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x801F90A0; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x801F90F0; // type:function size:0x200 scope:local align:4 +__OSReschedule = .text:0x801F92F0; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x801F9320; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x801F935C; // type:function size:0x120 scope:global align:4 +OSExitThread = .text:0x801F947C; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x801F9560; // type:function size:0x1BC scope:global align:4 +OSJoinThread = .text:0x801F971C; // type:function size:0x140 scope:global align:4 +OSResumeThread = .text:0x801F985C; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x801F9AE4; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x801F9C54; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x801F9D40; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x801F9E44; // type:function size:0x8 scope:global align:4 +CheckThreadQueue = .text:0x801F9E4C; // type:function size:0x9C scope:local align:4 +OSCheckActiveThreads = .text:0x801F9EE8; // type:function size:0x750 scope:global align:4 +OSGetTime = .text:0x801FA638; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x801FA650; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x801FA658; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x801FA6BC; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x801FA858; // type:function size:0x204 scope:global align:4 +__init_user = .text:0x801FAA5C; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x801FAA7C; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x801FAAD0; // type:function size:0x20 scope:global align:4 +DBInit = .text:0x801FAAF0; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x801FAB18; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x801FAB60; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x801FAB70; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x801FAB8C; // type:function size:0x50 scope:global align:4 +PSMTXIdentity = .text:0x801FABDC; // type:function size:0x2C scope:global align:4 +PSMTXConcat = .text:0x801FAC08; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x801FACD4; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x801FAD24; // type:function size:0xF8 scope:global align:4 +PSMTXTrans = .text:0x801FAE1C; // type:function size:0x34 scope:global align:4 +PSMTXScale = .text:0x801FAE50; // type:function size:0x28 scope:global align:4 +C_MTXLightPerspective = .text:0x801FAE78; // type:function size:0xCC scope:global align:4 +C_MTXPerspective = .text:0x801FAF44; // type:function size:0xD0 scope:global align:4 +C_MTXOrtho = .text:0x801FB014; // type:function size:0x98 scope:global align:4 +PSVECMag = .text:0x801FB0AC; // type:function size:0x3C scope:global align:4 +__DVDInitWA = .text:0x801FB0E8; // type:function size:0x40 scope:global align:4 +__DVDInterruptHandler = .text:0x801FB128; // type:function size:0x2F4 scope:global align:4 +AlarmHandler = .text:0x801FB41C; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x801FB4A0; // type:function size:0x70 scope:local align:4 +Read = .text:0x801FB510; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x801FB620; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x801FB6A0; // type:function size:0x298 scope:global align:4 +DVDLowSeek = .text:0x801FB938; // type:function size:0x94 scope:global align:4 +DVDLowWaitCoverClose = .text:0x801FB9CC; // type:function size:0x2C scope:global align:4 +DVDLowReadDiskID = .text:0x801FB9F8; // type:function size:0xA4 scope:global align:4 +DVDLowStopMotor = .text:0x801FBA9C; // type:function size:0x8C scope:global align:4 +DVDLowRequestError = .text:0x801FBB28; // type:function size:0x8C scope:global align:4 +DVDLowInquiry = .text:0x801FBBB4; // type:function size:0x9C scope:global align:4 +DVDLowAudioStream = .text:0x801FBC50; // type:function size:0x98 scope:global align:4 +DVDLowRequestAudioStatus = .text:0x801FBCE8; // type:function size:0x8C scope:global align:4 +DVDLowAudioBufferConfig = .text:0x801FBD74; // type:function size:0x9C scope:global align:4 +DVDLowReset = .text:0x801FBE10; // type:function size:0xBC scope:global align:4 +DVDLowBreak = .text:0x801FBECC; // type:function size:0x14 scope:global align:4 +DVDLowClearCallback = .text:0x801FBEE0; // type:function size:0x18 scope:global align:4 +__DVDLowSetWAType = .text:0x801FBEF8; // type:function size:0x44 scope:global align:4 +__DVDFSInit = .text:0x801FBF3C; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x801FBF74; // type:function size:0x2F4 scope:global align:4 +DVDFastOpen = .text:0x801FC268; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x801FC2DC; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x801FC3A4; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x801FC3C8; // type:function size:0x160 scope:local align:4 +DVDGetCurrentDir = .text:0x801FC528; // type:function size:0xC4 scope:global align:4 +DVDReadAsyncPrio = .text:0x801FC5EC; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x801FC6AC; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x801FC6DC; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x801FC7F4; // type:function size:0x24 scope:local align:4 +DVDPrepareStreamAsync = .text:0x801FC818; // type:function size:0xEC scope:global align:4 +cbForPrepareStreamAsync = .text:0x801FC904; // type:function size:0x30 scope:local align:4 +DVDInit = .text:0x801FC934; // type:function size:0xFC scope:global align:4 +stateReadingFST = .text:0x801FCA30; // type:function size:0x54 scope:local align:4 +cbForStateReadingFST = .text:0x801FCA84; // type:function size:0x80 scope:local align:4 +cbForStateError = .text:0x801FCB04; // type:function size:0xA8 scope:local align:4 +stateTimeout = .text:0x801FCBAC; // type:function size:0x9C scope:local align:4 +stateGettingError = .text:0x801FCC48; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x801FCC70; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x801FCD24; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x801FCFB8; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x801FD020; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x801FD0B8; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x801FD0E0; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x801FD238; // type:function size:0xE4 scope:local align:4 +stateCheckID3 = .text:0x801FD31C; // type:function size:0x34 scope:local align:4 +stateCheckID2 = .text:0x801FD350; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x801FD388; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x801FD49C; // type:function size:0xA4 scope:local align:4 +cbForStateCheckID3 = .text:0x801FD540; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x801FD63C; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x801FD680; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x801FD74C; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x801FD77C; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x801FD7EC; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x801FD814; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x801FD8F8; // type:function size:0x248 scope:local align:4 +stateBusy = .text:0x801FDB40; // type:function size:0x2C0 scope:local align:4 +cbForStateBusy = .text:0x801FDE00; // type:function size:0x5D4 scope:local align:4 +issueCommand = .text:0x801FE3D4; // type:function size:0xBC scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x801FE490; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x801FE56C; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x801FE63C; // type:function size:0xD4 scope:global align:4 +DVDPrepareStreamAbsAsync = .text:0x801FE710; // type:function size:0xC4 scope:global align:4 +DVDCancelStream = .text:0x801FE7D4; // type:function size:0xA0 scope:global align:4 +cbForCancelStreamSync = .text:0x801FE874; // type:function size:0x28 scope:local align:4 +DVDReset = .text:0x801FE89C; // type:function size:0x44 scope:global align:4 +DVDGetDriveStatus = .text:0x801FE8E0; // type:function size:0xAC scope:global align:4 +DVDSetAutoInvalidation = .text:0x801FE98C; // type:function size:0x10 scope:global align:4 +DVDCancelAsync = .text:0x801FE99C; // type:function size:0x270 scope:global align:4 +DVDCancel = .text:0x801FEC0C; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x801FECB8; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x801FECDC; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x801FECE4; // type:function size:0xE4 scope:global align:4 +__DVDPrepareResetAsync = .text:0x801FEDC8; // type:function size:0x11C scope:global align:4 +__DVDClearWaitingQueue = .text:0x801FEEE4; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x801FEF1C; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x801FEF84; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x801FF024; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x801FF07C; // type:function size:0x60 scope:global align:4 +ErrorCode2Num = .text:0x801FF0DC; // type:function size:0x11C scope:local align:4 +__DVDStoreErrorCode = .text:0x801FF1F8; // type:function size:0x7C scope:global align:4 +cb = .text:0x801FF274; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x801FF34C; // type:function size:0x168 scope:global align:4 +__VIRetraceHandler = .text:0x801FF4B4; // type:function size:0x228 scope:local align:4 +VISetPostRetraceCallback = .text:0x801FF6DC; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x801FF720; // type:function size:0x90 scope:local align:4 +__VIInit = .text:0x801FF7B0; // type:function size:0x1F8 scope:global align:4 +VIInit = .text:0x801FF9A8; // type:function size:0x478 scope:global align:4 +VIWaitForRetrace = .text:0x801FFE20; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x801FFE74; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x80200148; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x802002E8; // type:function size:0x79C scope:global align:4 +VIFlush = .text:0x80200A84; // type:function size:0x11C scope:global align:4 +VISetNextFrameBuffer = .text:0x80200BA0; // type:function size:0x6C scope:global align:4 +VISetBlack = .text:0x80200C0C; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x80200C88; // type:function size:0x8 scope:global align:4 +getCurrentFieldEvenOdd = .text:0x80200C90; // type:function size:0x68 scope:local align:4 +VIGetCurrentLine = .text:0x80200CF8; // type:function size:0x98 scope:global align:4 +VIGetTvFormat = .text:0x80200D90; // type:function size:0x7C scope:global align:4 +ClampStick = .text:0x80200E0C; // type:function size:0x130 scope:local align:4 +PADClamp = .text:0x80200F3C; // type:function size:0x108 scope:global align:4 +UpdateOrigin = .text:0x80201044; // type:function size:0x1A4 scope:local align:4 +PADOriginCallback = .text:0x802011E8; // type:function size:0xC4 scope:local align:4 +PADOriginUpdateCallback = .text:0x802012AC; // type:function size:0xC0 scope:local align:4 +PADProbeCallback = .text:0x8020136C; // type:function size:0xD8 scope:local align:4 +PADTypeAndStatusCallback = .text:0x80201444; // type:function size:0x32C scope:local align:4 +PADReceiveCheckCallback = .text:0x80201770; // type:function size:0x134 scope:local align:4 +PADReset = .text:0x802018A4; // type:function size:0x100 scope:global align:4 +PADRecalibrate = .text:0x802019A4; // type:function size:0x104 scope:global align:4 +PADInit = .text:0x80201AA8; // type:function size:0x210 scope:global align:4 +PADRead = .text:0x80201CB8; // type:function size:0x3AC scope:global align:4 +PADControlMotor = .text:0x80202064; // type:function size:0xA4 scope:global align:4 +PADSetSpec = .text:0x80202108; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x80202168; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x802022DC; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x80202450; // type:function size:0x3F8 scope:local align:4 +OnReset = .text:0x80202848; // type:function size:0x194 scope:local align:4 +SamplingHandler = .text:0x802029DC; // type:function size:0x60 scope:local align:4 +PADSetSamplingCallback = .text:0x80202A3C; // type:function size:0x54 scope:global align:4 +__PADDisableRecalibration = .text:0x80202A90; // type:function size:0x7C scope:global align:4 +AIRegisterDMACallback = .text:0x80202B0C; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x80202B50; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x80202BD8; // type:function size:0x18 scope:global align:4 +AIGetStreamSampleCount = .text:0x80202BF0; // type:function size:0x10 scope:global align:4 +AIResetStreamSampleCount = .text:0x80202C00; // type:function size:0x18 scope:global align:4 +AIGetStreamTrigger = .text:0x80202C18; // type:function size:0x10 scope:global align:4 +AISetStreamPlayState = .text:0x80202C28; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x80202D00; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x80202D10; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x80202DF0; // type:function size:0x14 scope:global align:4 +AISetStreamSampleRate = .text:0x80202E04; // type:function size:0x28 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x80202E2C; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x80202F00; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x80202F10; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x80202F2C; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x80202F3C; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x80202F58; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x80202F68; // type:function size:0x164 scope:global align:4 +__AISHandler = .text:0x802030CC; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x80203148; // type:function size:0x90 scope:local align:4 +__AICallbackStackSwitch = .text:0x802031D8; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x80203230; // type:function size:0x1E4 scope:local align:4 +ARRegisterDMACallback = .text:0x80203414; // type:function size:0x44 scope:global align:4 +ARStartDMA = .text:0x80203458; // type:function size:0xF0 scope:global align:4 +ARInit = .text:0x80203548; // type:function size:0xBC scope:global align:4 +ARGetBaseAddress = .text:0x80203604; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x8020360C; // type:function size:0x78 scope:local align:4 +__ARChecksize = .text:0x80203684; // type:function size:0x914 scope:local align:4 +__ARQServiceQueueLo = .text:0x80203F98; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x80204098; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x8020409C; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x80204168; // type:function size:0x68 scope:global align:4 +ARQPostRequest = .text:0x802041D0; // type:function size:0x15C scope:global align:4 +DSPCheckMailToDSP = .text:0x8020432C; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x8020433C; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x8020434C; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x80204364; // type:function size:0x14 scope:global align:4 +DSPAssertInt = .text:0x80204378; // type:function size:0x40 scope:global align:4 +DSPInit = .text:0x802043B8; // type:function size:0xB8 scope:global align:4 +__DSP_debug_printf = .text:0x80204470; // type:function size:0x50 scope:global align:4 +__DSP_exec_task = .text:0x802044C0; // type:function size:0x1A0 scope:global align:4 +__DSP_boot_task = .text:0x80204660; // type:function size:0x18C scope:global align:4 +__DSP_insert_task = .text:0x802047EC; // type:function size:0xA0 scope:global align:4 +__DSP_remove_task = .text:0x8020488C; // type:function size:0x94 scope:global align:4 +__CARDDefaultApiCallback = .text:0x80204920; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x80204924; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x80204958; // type:function size:0xD8 scope:global align:4 +__CARDExiHandler = .text:0x80204A30; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x80204B48; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x80204BF0; // type:function size:0x84 scope:global align:4 +__CARDEnableInterrupt = .text:0x80204C74; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x80204D34; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x80204E24; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x80204ED0; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x80204F74; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x802051A0; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x802052B0; // type:function size:0x1B4 scope:local align:4 +__CARDReadSegment = .text:0x80205464; // type:function size:0x134 scope:global align:4 +__CARDWritePage = .text:0x80205598; // type:function size:0x11C scope:global align:4 +__CARDEraseSector = .text:0x802056B4; // type:function size:0xE0 scope:global align:4 +CARDInit = .text:0x80205794; // type:function size:0x9C scope:global align:4 +__CARDSetDiskID = .text:0x80205830; // type:function size:0x38 scope:global align:4 +__CARDGetControlBlock = .text:0x80205868; // type:function size:0xB8 scope:global align:4 +__CARDPutControlBlock = .text:0x80205920; // type:function size:0x64 scope:global align:4 +CARDGetResultCode = .text:0x80205984; // type:function size:0x30 scope:global align:4 +CARDFreeBlocks = .text:0x802059B4; // type:function size:0x150 scope:global align:4 +CARDGetSectorSize = .text:0x80205B04; // type:function size:0x84 scope:global align:4 +__CARDSync = .text:0x80205B88; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x80205C20; // type:function size:0x50 scope:local align:4 +bitrev = .text:0x80205C70; // type:function size:0x16C scope:local align:4 +ReadArrayUnlock = .text:0x80205DDC; // type:function size:0x144 scope:local align:4 +DummyLen = .text:0x80205F20; // type:function size:0x94 scope:local align:4 +__CARDUnlock = .text:0x80205FB4; // type:function size:0xB3C scope:global align:4 +InitCallback = .text:0x80206AF0; // type:function size:0x70 scope:local align:4 +DoneCallback = .text:0x80206B60; // type:function size:0x324 scope:local align:4 +BlockReadCallback = .text:0x80206E84; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x80206F60; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x80206FC4; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x802070A0; // type:function size:0x64 scope:global align:4 +CARDGetXferredBytes = .text:0x80207104; // type:function size:0x18 scope:global align:4 +__CARDGetFatBlock = .text:0x8020711C; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80207124; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x802071F8; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x802072C0; // type:function size:0x118 scope:global align:4 +__CARDFreeBlock = .text:0x802073D8; // type:function size:0x9C scope:global align:4 +__CARDUpdateFatBlock = .text:0x80207474; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x80207520; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x80207528; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x802075F8; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x802076C0; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x80207784; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x80207934; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x80207BB8; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x80207DF8; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x8020807C; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x80208108; // type:function size:0x590 scope:global align:4 +CARDCheckAsync = .text:0x80208698; // type:function size:0x28 scope:global align:4 +CARDCheck = .text:0x802086C0; // type:function size:0x54 scope:global align:4 +CARDProbe = .text:0x80208714; // type:function size:0x38 scope:global align:4 +DoMount = .text:0x8020874C; // type:function size:0x4A4 scope:local align:4 +__CARDMountCallback = .text:0x80208BF0; // type:function size:0x108 scope:global align:4 +CARDMountAsync = .text:0x80208CF8; // type:function size:0x1A0 scope:global align:4 +CARDMount = .text:0x80208E98; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x80208EE0; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x80208F7C; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x80209028; // type:function size:0x144 scope:local align:4 +__CARDFormatRegionAsync = .text:0x8020916C; // type:function size:0x658 scope:global align:4 +CARDFormatAsync = .text:0x802097C4; // type:function size:0x48 scope:global align:4 +CARDFormat = .text:0x8020980C; // type:function size:0x54 scope:global align:4 +__CARDCompareFileName = .text:0x80209860; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x802098C8; // type:function size:0x98 scope:global align:4 +__CARDIsPublic = .text:0x80209960; // type:function size:0x30 scope:global align:4 +CARDFastOpen = .text:0x80209990; // type:function size:0x160 scope:global align:4 +CARDOpen = .text:0x80209AF0; // type:function size:0x178 scope:global align:4 +CARDClose = .text:0x80209C68; // type:function size:0x54 scope:global align:4 +__CARDIsOpened = .text:0x80209CBC; // type:function size:0x8 scope:global align:4 +CreateCallbackFat = .text:0x80209CC4; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x80209DF4; // type:function size:0x220 scope:global align:4 +CARDCreate = .text:0x8020A014; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x8020A05C; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x8020A214; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x8020A344; // type:function size:0x148 scope:global align:4 +CARDRead = .text:0x8020A48C; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x8020A4D4; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x8020A644; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x8020A6F4; // type:function size:0x114 scope:global align:4 +CARDWrite = .text:0x8020A808; // type:function size:0x48 scope:global align:4 +DeleteCallback = .text:0x8020A850; // type:function size:0xA4 scope:local align:4 +CARDFastDeleteAsync = .text:0x8020A8F4; // type:function size:0x12C scope:global align:4 +CARDFastDelete = .text:0x8020AA20; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x8020AA68; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x8020AC60; // type:function size:0x12C scope:global align:4 +CARDSetStatusAsync = .text:0x8020AD8C; // type:function size:0x174 scope:global align:4 +CARDSetStatus = .text:0x8020AF00; // type:function size:0x48 scope:global align:4 +CARDRenameAsync = .text:0x8020AF48; // type:function size:0x1FC scope:global align:4 +CARDRename = .text:0x8020B144; // type:function size:0x48 scope:global align:4 +SIBusy = .text:0x8020B18C; // type:function size:0x20 scope:global align:4 +SIIsChanBusy = .text:0x8020B1AC; // type:function size:0x3C scope:global align:4 +CompleteTransfer = .text:0x8020B1E8; // type:function size:0x2FC scope:local align:4 +SIInterruptHandler = .text:0x8020B4E4; // type:function size:0x344 scope:local align:4 +SIEnablePollingInterrupt = .text:0x8020B828; // type:function size:0x98 scope:local align:4 +SIRegisterPollingHandler = .text:0x8020B8C0; // type:function size:0xCC scope:global align:4 +SIUnregisterPollingHandler = .text:0x8020B98C; // type:function size:0xF4 scope:global align:4 +SIInit = .text:0x8020BA80; // type:function size:0xA4 scope:global align:4 +__SITransfer = .text:0x8020BB24; // type:function size:0x20C scope:local align:4 +SIGetStatus = .text:0x8020BD30; // type:function size:0x7C scope:global align:4 +SISetCommand = .text:0x8020BDAC; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x8020BDC0; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x8020BDD0; // type:function size:0x6C scope:global align:4 +SIEnablePolling = .text:0x8020BE3C; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x8020BED8; // type:function size:0x6C scope:global align:4 +SIGetResponseRaw = .text:0x8020BF44; // type:function size:0xD4 scope:local align:4 +SIGetResponse = .text:0x8020C018; // type:function size:0xC4 scope:global align:4 +AlarmHandler = .text:0x8020C0DC; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x8020C168; // type:function size:0x16C scope:global align:4 +GetTypeCallback = .text:0x8020C2D4; // type:function size:0x298 scope:local align:4 +SIGetType = .text:0x8020C56C; // type:function size:0x1C4 scope:global align:4 +SIGetTypeAsync = .text:0x8020C730; // type:function size:0x13C scope:global align:4 +SISetSamplingRate = .text:0x8020C86C; // type:function size:0xE4 scope:global align:4 +SIRefreshSamplingRate = .text:0x8020C950; // type:function size:0x24 scope:global align:4 +SetExiInterruptMask = .text:0x8020C974; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x8020CA68; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x8020CCC4; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x8020CD64; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x8020CE50; // type:function size:0x208 scope:global align:4 +EXIClearInterrupts = .text:0x8020D058; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x8020D0A0; // type:function size:0x7C scope:global align:4 +__EXIProbe = .text:0x8020D11C; // type:function size:0x174 scope:local align:4 +EXIProbe = .text:0x8020D290; // type:function size:0x80 scope:global align:4 +EXIProbeEx = .text:0x8020D310; // type:function size:0xB4 scope:global align:4 +EXIAttach = .text:0x8020D3C4; // type:function size:0x10C scope:global align:4 +EXIDetach = .text:0x8020D4D0; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x8020D58C; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x8020D6B8; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x8020D7C8; // type:function size:0xC8 scope:local align:4 +TCIntrruptHandler = .text:0x8020D890; // type:function size:0x218 scope:local align:4 +EXTIntrruptHandler = .text:0x8020DAA8; // type:function size:0xC8 scope:local align:4 +EXIInit = .text:0x8020DB70; // type:function size:0x114 scope:global align:4 +EXILock = .text:0x8020DC84; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x8020DD78; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x8020DE54; // type:function size:0x18 scope:global align:4 +UnlockedHandler = .text:0x8020DE6C; // type:function size:0x28 scope:local align:4 +EXIGetID = .text:0x8020DE94; // type:function size:0x37C scope:global align:4 +InitializeUART = .text:0x8020E210; // type:function size:0x70 scope:global align:4 +ReadUARTN = .text:0x8020E280; // type:function size:0x8 scope:global align:4 +WriteUARTN = .text:0x8020E288; // type:function size:0x200 scope:global align:4 +ExtHandler = .text:0x8020E488; // type:function size:0x3C scope:local align:4 +ExiHandler = .text:0x8020E4C4; // type:function size:0x30 scope:local align:4 +DbgHandler = .text:0x8020E4F4; // type:function size:0x6C scope:local align:4 +HIOEnumDevices = .text:0x8020E560; // type:function size:0xC8 scope:global align:4 +HIOInit = .text:0x8020E628; // type:function size:0x294 scope:global align:4 +HIOReadMailbox = .text:0x8020E8BC; // type:function size:0x130 scope:global align:4 +HIOWriteMailbox = .text:0x8020E9EC; // type:function size:0xF4 scope:global align:4 +HIOWrite = .text:0x8020EAE0; // type:function size:0x144 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x8020EC24; // type:function size:0x7C scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x8020ECA0; // type:function size:0x24 scope:local align:4 +GXInit = .text:0x8020ECC4; // type:function size:0x7C8 scope:global align:4 +__GXInitGX = .text:0x8020F48C; // type:function size:0x884 scope:global align:4 +GXCPInterruptHandler = .text:0x8020FD10; // type:function size:0x13C scope:local align:4 +GXInitFifoBase = .text:0x8020FE4C; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x8020FEB8; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x8020FF28; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x8020FF34; // type:function size:0x110 scope:global align:4 +GXSetGPFifo = .text:0x80210044; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x802101BC; // type:function size:0x20 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x802101DC; // type:function size:0xDC scope:global align:4 +__GXFifoInit = .text:0x802102B8; // type:function size:0x4C scope:global align:4 +__GXFifoReadEnable = .text:0x80210304; // type:function size:0x28 scope:local align:4 +__GXFifoReadDisable = .text:0x8021032C; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x80210350; // type:function size:0x44 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x80210394; // type:function size:0x4C scope:local align:4 +__GXWriteFifoIntReset = .text:0x802103E0; // type:function size:0x4C scope:local align:4 +GXSetCurrentGXThread = .text:0x8021042C; // type:function size:0x4C scope:global align:4 +GXGetCPUFifo = .text:0x80210478; // type:function size:0x8 scope:global align:4 +__GXXfVtxSpecs = .text:0x80210480; // type:function size:0x158 scope:local align:4 +GXSetVtxDesc = .text:0x802105D8; // type:function size:0x360 scope:global align:4 +GXSetVtxDescv = .text:0x80210938; // type:function size:0x384 scope:global align:4 +__GXSetVCD = .text:0x80210CBC; // type:function size:0x168 scope:global align:4 +GXClearVtxDesc = .text:0x80210E24; // type:function size:0x4C scope:global align:4 +GXSetVtxAttrFmt = .text:0x80210E70; // type:function size:0x35C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x802111CC; // type:function size:0x37C scope:global align:4 +__GXSetVAT = .text:0x80211548; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x802115E4; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x80211670; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x80211680; // type:function size:0x2D0 scope:global align:4 +GXSetNumTexGens = .text:0x80211950; // type:function size:0x48 scope:global align:4 +GXFlush = .text:0x80211998; // type:function size:0x5C scope:global align:4 +GXDrawDone = .text:0x802119F4; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x80211A74; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x80211A98; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x80211AAC; // type:function size:0x14 scope:global align:4 +GXPokeAlphaUpdate = .text:0x80211AC0; // type:function size:0x1C scope:global align:4 +GXPokeBlendMode = .text:0x80211ADC; // type:function size:0x88 scope:global align:4 +GXPokeColorUpdate = .text:0x80211B64; // type:function size:0x1C scope:global align:4 +GXPokeDstAlpha = .text:0x80211B80; // type:function size:0x14 scope:global align:4 +GXPokeDither = .text:0x80211B94; // type:function size:0x1C scope:global align:4 +GXPokeZMode = .text:0x80211BB0; // type:function size:0x28 scope:global align:4 +GXTokenInterruptHandler = .text:0x80211BD8; // type:function size:0x88 scope:local align:4 +GXFinishInterruptHandler = .text:0x80211C60; // type:function size:0x84 scope:local align:4 +__GXPEInit = .text:0x80211CE4; // type:function size:0x80 scope:global align:4 +__GXSetDirtyState = .text:0x80211D64; // type:function size:0x8C scope:global align:4 +GXBegin = .text:0x80211DF0; // type:function size:0xDC scope:global align:4 +__GXSendFlushPrim = .text:0x80211ECC; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x80211F54; // type:function size:0x58 scope:global align:4 +GXSetPointSize = .text:0x80211FAC; // type:function size:0x54 scope:global align:4 +GXEnableTexOffsets = .text:0x80212000; // type:function size:0x64 scope:global align:4 +GXSetCullMode = .text:0x80212064; // type:function size:0x50 scope:global align:4 +GXSetCoPlanar = .text:0x802120B4; // type:function size:0x44 scope:global align:4 +__GXSetGenMode = .text:0x802120F8; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x8021211C; // type:function size:0xC0 scope:global align:4 +GXSetTexCopySrc = .text:0x802121DC; // type:function size:0xC0 scope:global align:4 +GXSetDispCopyDst = .text:0x8021229C; // type:function size:0x44 scope:global align:4 +GXSetTexCopyDst = .text:0x802122E0; // type:function size:0x170 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x80212450; // type:function size:0x2C scope:global align:4 +GXSetCopyClamp = .text:0x8021247C; // type:function size:0x7C scope:global align:4 +GXSetDispCopyYScale = .text:0x802124F8; // type:function size:0xD4 scope:global align:4 +GXSetCopyClear = .text:0x802125CC; // type:function size:0x68 scope:global align:4 +GXSetCopyFilter = .text:0x80212634; // type:function size:0x228 scope:global align:4 +GXSetDispCopyGamma = .text:0x8021285C; // type:function size:0x1C scope:global align:4 +GXCopyDisp = .text:0x80212878; // type:function size:0x170 scope:global align:4 +GXCopyTex = .text:0x802129E8; // type:function size:0x190 scope:global align:4 +GXClearBoundingBox = .text:0x80212B78; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x80212BB0; // type:function size:0x1C scope:global align:4 +GXInitLightPos = .text:0x80212BCC; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x80212BDC; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x80212BF8; // type:function size:0xD4 scope:global align:4 +GXInitLightColor = .text:0x80212CCC; // type:function size:0x28 scope:global align:4 +GXLoadLightObjImm = .text:0x80212CF4; // type:function size:0x148 scope:global align:4 +GXSetChanAmbColor = .text:0x80212E3C; // type:function size:0x168 scope:global align:4 +GXSetChanMatColor = .text:0x80212FA4; // type:function size:0x168 scope:global align:4 +GXSetNumChans = .text:0x8021310C; // type:function size:0x4C scope:global align:4 +GXSetChanCtrl = .text:0x80213158; // type:function size:0x1E4 scope:global align:4 +__GetImageTileCount = .text:0x8021333C; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x80213404; // type:function size:0x274 scope:global align:4 +GXInitTexObjLOD = .text:0x80213678; // type:function size:0x194 scope:global align:4 +GXGetTexObjFmt = .text:0x8021380C; // type:function size:0x8 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x80213814; // type:function size:0x1A8 scope:global align:4 +GXLoadTexObj = .text:0x802139BC; // type:function size:0x54 scope:global align:4 +GXInitTexCacheRegion = .text:0x80213A10; // type:function size:0x120 scope:global align:4 +GXInitTlutRegion = .text:0x80213B30; // type:function size:0x48 scope:global align:4 +GXInvalidateTexAll = .text:0x80213B78; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x80213BC0; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x80213BD4; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x80213BE8; // type:function size:0xCC scope:local align:4 +__GXSetSUTexRegs = .text:0x80213CB4; // type:function size:0x17C scope:global align:4 +__GXSetTmemConfig = .text:0x80213E30; // type:function size:0x240 scope:global align:4 +GXSetTevIndirect = .text:0x80214070; // type:function size:0x9C scope:global align:4 +GXSetIndTexCoordScale = .text:0x8021410C; // type:function size:0x1D4 scope:global align:4 +GXSetNumIndStages = .text:0x802142E0; // type:function size:0x2C scope:global align:4 +GXSetTevDirect = .text:0x8021430C; // type:function size:0x48 scope:global align:4 +__GXUpdateBPMask = .text:0x80214354; // type:function size:0xCC scope:global align:4 +__GXFlushTextureState = .text:0x80214420; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x80214444; // type:function size:0x1A4 scope:global align:4 +GXSetTevColorIn = .text:0x802145E8; // type:function size:0x80 scope:global align:4 +GXSetTevAlphaIn = .text:0x80214668; // type:function size:0x84 scope:global align:4 +GXSetTevColorOp = .text:0x802146EC; // type:function size:0xC0 scope:global align:4 +GXSetTevAlphaOp = .text:0x802147AC; // type:function size:0xC0 scope:global align:4 +GXSetTevColor = .text:0x8021486C; // type:function size:0x74 scope:global align:4 +GXSetTevColorS10 = .text:0x802148E0; // type:function size:0x74 scope:global align:4 +GXSetTevKColor = .text:0x80214954; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x802149C8; // type:function size:0x6C scope:global align:4 +GXSetTevKAlphaSel = .text:0x80214A34; // type:function size:0x6C scope:global align:4 +GXSetTevSwapMode = .text:0x80214AA0; // type:function size:0x58 scope:global align:4 +GXSetTevSwapModeTable = .text:0x80214AF8; // type:function size:0xA0 scope:global align:4 +GXSetAlphaCompare = .text:0x80214B98; // type:function size:0x50 scope:global align:4 +GXSetZTexture = .text:0x80214BE8; // type:function size:0x84 scope:global align:4 +GXSetTevOrder = .text:0x80214C6C; // type:function size:0x1DC scope:global align:4 +GXSetNumTevStages = .text:0x80214E48; // type:function size:0x34 scope:global align:4 +GXSetFog = .text:0x80214E7C; // type:function size:0x1B0 scope:global align:4 +GXSetFogRangeAdj = .text:0x8021502C; // type:function size:0x100 scope:global align:4 +GXSetBlendMode = .text:0x8021512C; // type:function size:0x104 scope:global align:4 +GXSetColorUpdate = .text:0x80215230; // type:function size:0x40 scope:global align:4 +GXSetAlphaUpdate = .text:0x80215270; // type:function size:0x40 scope:global align:4 +GXSetZMode = .text:0x802152B0; // type:function size:0x78 scope:global align:4 +GXSetZCompLoc = .text:0x80215328; // type:function size:0x40 scope:global align:4 +GXSetPixelFmt = .text:0x80215368; // type:function size:0x110 scope:global align:4 +GXSetDither = .text:0x80215478; // type:function size:0x40 scope:global align:4 +GXSetDstAlpha = .text:0x802154B8; // type:function size:0x54 scope:global align:4 +GXSetFieldMask = .text:0x8021550C; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x80215544; // type:function size:0x80 scope:global align:4 +__GXSetRange = .text:0x802155C4; // type:function size:0x4 scope:global align:4 +GXBeginDisplayList = .text:0x802155C8; // type:function size:0xC8 scope:global align:4 +GXEndDisplayList = .text:0x80215690; // type:function size:0xD4 scope:global align:4 +GXCallDisplayList = .text:0x80215764; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x802157D4; // type:function size:0xD4 scope:global align:4 +WriteMTXPS4x3 = .text:0x802158A8; // type:function size:0x34 scope:local align:4 +WriteMTXPS3x3from3x4 = .text:0x802158DC; // type:function size:0x34 scope:local align:4 +WriteMTXPS4x2 = .text:0x80215910; // type:function size:0x24 scope:local align:4 +GXLoadPosMtxImm = .text:0x80215934; // type:function size:0x3C scope:global align:4 +GXLoadNrmMtxImm = .text:0x80215970; // type:function size:0x40 scope:global align:4 +GXSetCurrentMtx = .text:0x802159B0; // type:function size:0x3C scope:global align:4 +GXLoadTexMtxImm = .text:0x802159EC; // type:function size:0x84 scope:global align:4 +GXSetViewportJitter = .text:0x80215A70; // type:function size:0x11C scope:global align:4 +GXSetViewport = .text:0x80215B8C; // type:function size:0x24 scope:global align:4 +GXSetScissor = .text:0x80215BB0; // type:function size:0xB0 scope:global align:4 +GXSetScissorBoxOffset = .text:0x80215C60; // type:function size:0x44 scope:global align:4 +GXSetClipMode = .text:0x80215CA4; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x80215CCC; // type:function size:0x84 scope:global align:4 +GXSetGPMetric = .text:0x80215D50; // type:function size:0x898 scope:global align:4 +GXClearGPMetric = .text:0x802165E8; // type:function size:0x10 scope:global align:4 +__va_arg = .text:0x802165F8; // type:function size:0xF4 scope:global align:4 +__destroy_global_chain = .text:0x802166EC; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x80216734; // type:function size:0x18 scope:global align:4 +__copy = .text:0x8021674C; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x8021677C; // type:function size:0x7C scope:global align:4 +__construct_array = .text:0x802167F8; // type:function size:0x100 scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x802168F8; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x802169B0; // type:function size:0x108 scope:global align:4 +__ptmf_scall = .text:0x80216AB8; // type:function size:0x28 scope:global align:4 +__unregister_fragment = .text:0x80216AE0; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x80216B14; // type:function size:0x3C scope:global align:4 +__cvt_fp2unsigned = .text:0x80216B50; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x80216BAC; // type:function size:0x4C scope:global align:4 +_savefpr_14 = .text:0x80216BAC; // type:label scope:global +_savefpr_15 = .text:0x80216BB0; // type:label scope:global +_savefpr_16 = .text:0x80216BB4; // type:label scope:global +_savefpr_17 = .text:0x80216BB8; // type:label scope:global +_savefpr_18 = .text:0x80216BBC; // type:label scope:global +_savefpr_19 = .text:0x80216BC0; // type:label scope:global +_savefpr_20 = .text:0x80216BC4; // type:label scope:global +_savefpr_21 = .text:0x80216BC8; // type:label scope:global +_savefpr_22 = .text:0x80216BCC; // type:label scope:global +_savefpr_23 = .text:0x80216BD0; // type:label scope:global +_savefpr_24 = .text:0x80216BD4; // type:label scope:global +_savefpr_25 = .text:0x80216BD8; // type:label scope:global +_savefpr_26 = .text:0x80216BDC; // type:label scope:global +_savefpr_27 = .text:0x80216BE0; // type:label scope:global +_savefpr_28 = .text:0x80216BE4; // type:label scope:global +_savefpr_29 = .text:0x80216BE8; // type:label scope:global +_savefpr_30 = .text:0x80216BEC; // type:label scope:global +_savefpr_31 = .text:0x80216BF0; // type:label scope:global +__restore_fpr = .text:0x80216BF8; // type:function size:0x4C scope:global align:4 +_restfpr_14 = .text:0x80216BF8; // type:label scope:global +_restfpr_15 = .text:0x80216BFC; // type:label scope:global +_restfpr_16 = .text:0x80216C00; // type:label scope:global +_restfpr_17 = .text:0x80216C04; // type:label scope:global +_restfpr_18 = .text:0x80216C08; // type:label scope:global +_restfpr_19 = .text:0x80216C0C; // type:label scope:global +_restfpr_20 = .text:0x80216C10; // type:label scope:global +_restfpr_21 = .text:0x80216C14; // type:label scope:global +_restfpr_22 = .text:0x80216C18; // type:label scope:global +_restfpr_23 = .text:0x80216C1C; // type:label scope:global +_restfpr_24 = .text:0x80216C20; // type:label scope:global +_restfpr_25 = .text:0x80216C24; // type:label scope:global +_restfpr_26 = .text:0x80216C28; // type:label scope:global +_restfpr_27 = .text:0x80216C2C; // type:label scope:global +_restfpr_28 = .text:0x80216C30; // type:label scope:global +_restfpr_29 = .text:0x80216C34; // type:label scope:global +_restfpr_30 = .text:0x80216C38; // type:label scope:global +_restfpr_31 = .text:0x80216C3C; // type:label scope:global +__div2u = .text:0x80216C44; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x80216D30; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x80216E68; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x80216F4C; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x80217058; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x8021707C; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x802170A0; // type:function size:0x28 scope:global align:4 +__cvt_sll_flt = .text:0x802170C8; // type:function size:0xB4 scope:global align:4 +__cvt_dbl_usll = .text:0x8021717C; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x80217248; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x80217250; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x80217284; // type:function size:0x40 scope:global align:4 +exit = .text:0x802172C4; // type:function size:0x10C scope:global align:4 +__dec2num = .text:0x802173D0; // type:function size:0x2A4 scope:global align:4 +__num2dec = .text:0x80217674; // type:function size:0x3B4 scope:global align:4 +abs = .text:0x80217A28; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x80217A38; // type:function size:0xCC scope:global align:4 +__prep_buffer = .text:0x80217B04; // type:function size:0x34 scope:global align:4 +__kill_critical_regions = .text:0x80217B38; // type:function size:0x4 scope:global align:4 +toupper = .text:0x80217B3C; // type:function size:0x28 scope:global align:4 +tolower = .text:0x80217B64; // type:function size:0x28 scope:global align:4 +fwrite = .text:0x80217B8C; // type:function size:0x2DC scope:global align:4 +wcstombs = .text:0x80217E68; // type:function size:0x3C scope:global align:4 +mbtowc = .text:0x80217EA4; // type:function size:0x50 scope:global align:4 +memcmp = .text:0x80217EF4; // type:function size:0x44 scope:global align:4 +memchr = .text:0x80217F38; // type:function size:0x2C scope:global align:4 +memmove = .text:0x80217F64; // type:function size:0xDC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x80218040; // type:function size:0xB0 scope:global align:4 +__copy_longs_unaligned = .text:0x802180F0; // type:function size:0xC4 scope:global align:4 +__copy_longs_rev_aligned = .text:0x802181B4; // type:function size:0xAC scope:global align:4 +__copy_longs_aligned = .text:0x80218260; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x8021831C; // type:function size:0x4 scope:global align:4 +sprintf = .text:0x80218320; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x802183F4; // type:function size:0x78 scope:global align:4 +vprintf = .text:0x8021846C; // type:function size:0x7C scope:global align:4 +printf = .text:0x802184E8; // type:function size:0xCC scope:global align:4 +__StringWrite = .text:0x802185B4; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x80218620; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x80218678; // type:function size:0x630 scope:local align:4 +float2str = .text:0x80218CA8; // type:function size:0x638 scope:local align:4 +round_decimal = .text:0x802192E0; // type:function size:0x134 scope:local align:4 +longlong2str = .text:0x80219414; // type:function size:0x2E0 scope:local align:4 +long2str = .text:0x802196F4; // type:function size:0x224 scope:local align:4 +parse_format = .text:0x80219918; // type:function size:0x4D8 scope:local align:4 +srand = .text:0x80219DF0; // type:function size:0x8 scope:global align:4 +rand = .text:0x80219DF8; // type:function size:0x24 scope:global align:4 +sscanf = .text:0x80219E1C; // type:function size:0xBC scope:global align:4 +__StringRead = .text:0x80219ED8; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x80219F68; // type:function size:0x9A4 scope:local align:4 +parse_format = .text:0x8021A90C; // type:function size:0x564 scope:local align:4 +strstr = .text:0x8021AE70; // type:function size:0x6C scope:global align:4 +strchr = .text:0x8021AEDC; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x8021AF0C; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x8021AF4C; // type:function size:0x124 scope:global align:4 +strcat = .text:0x8021B070; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x8021B09C; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x8021B0E0; // type:function size:0xB4 scope:global align:4 +strlen = .text:0x8021B194; // type:function size:0x20 scope:global align:4 +atof = .text:0x8021B1B4; // type:function size:0x8C scope:global align:4 +__strtold = .text:0x8021B240; // type:function size:0x6E4 scope:global align:4 +atoi = .text:0x8021B924; // type:function size:0xC4 scope:global align:4 +strtol = .text:0x8021B9E8; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x8021BAD8; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x8021BB84; // type:function size:0x3CC scope:global align:4 +__strtoul = .text:0x8021BF50; // type:function size:0x348 scope:global align:4 +__close_console = .text:0x8021C298; // type:function size:0x8 scope:global align:4 +__write_console = .text:0x8021C2A0; // type:function size:0x98 scope:global align:4 +__read_console = .text:0x8021C338; // type:function size:0xE0 scope:global align:4 +fwide = .text:0x8021C418; // type:function size:0x80 scope:global align:4 +fabs__Fd = .text:0x8021C498; // type:function size:0x8 scope:weak align:4 +__ieee754_atan2 = .text:0x8021C4A0; // type:function size:0x298 scope:global align:4 +__ieee754_pow = .text:0x8021C738; // type:function size:0x818 scope:global align:4 +scalbn = .text:0x8021CF50; // type:function size:0x20 scope:weak align:4 +__fpclassifyd__Fd = .text:0x8021CF70; // type:function size:0x80 scope:weak align:4 +atan = .text:0x8021CFF0; // type:function size:0x240 scope:global align:4 +copysign = .text:0x8021D230; // type:function size:0x2C scope:global align:4 +frexp = .text:0x8021D25C; // type:function size:0x9C scope:global align:4 +ldexp = .text:0x8021D2F8; // type:function size:0x178 scope:global align:4 +atan2 = .text:0x8021D470; // type:function size:0x20 scope:global align:4 +pow = .text:0x8021D490; // type:function size:0x20 scope:global align:4 +fabsf__Ff = .text:0x8021D4B0; // type:function size:0x8 scope:weak align:4 +atanf = .text:0x8021D4B8; // type:function size:0x1F4 scope:global align:4 +atan__Ff = .text:0x8021D6AC; // type:function size:0x20 scope:weak align:4 +_inv_sqrtf = .text:0x8021D6CC; // type:function size:0x70 scope:weak align:4 +acosf = .text:0x8021D73C; // type:function size:0x44 scope:global align:4 +atan2f = .text:0x8021D780; // type:function size:0xD8 scope:global align:4 +tanf = .text:0x8021D858; // type:function size:0x44 scope:global align:4 +cos__Ff = .text:0x8021D89C; // type:function size:0x20 scope:weak align:4 +sin__Ff = .text:0x8021D8BC; // type:function size:0x20 scope:weak align:4 +cosf = .text:0x8021D8DC; // type:function size:0x194 scope:global align:4 +sinf = .text:0x8021DA70; // type:function size:0x1A4 scope:global align:4 +__sinit_trigf_c = .text:0x8021DC14; // type:function size:0x30 scope:local align:4 +sqrt = .text:0x8021DC44; // type:function size:0x90 scope:global align:4 +TRKHandleRequestEvent = .text:0x8021DCD4; // type:function size:0x28 scope:global align:4 +TRKHandleSupportEvent = .text:0x8021DCFC; // type:function size:0x20 scope:global align:4 +TRKIdle = .text:0x8021DD1C; // type:function size:0x2C scope:global align:4 +TRKNubMainLoop = .text:0x8021DD48; // type:function size:0xF4 scope:global align:4 +TRKInitializeEventQueue = .text:0x8021DE3C; // type:function size:0x5C scope:global align:4 +TRKCopyEvent = .text:0x8021DE98; // type:function size:0x24 scope:global align:4 +TRKGetNextEvent = .text:0x8021DEBC; // type:function size:0xC0 scope:global align:4 +TRKPostEvent = .text:0x8021DF7C; // type:function size:0xE0 scope:global align:4 +TRKConstructEvent = .text:0x8021E05C; // type:function size:0x18 scope:global align:4 +TRKDestructEvent = .text:0x8021E074; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x8021E098; // type:function size:0xD4 scope:global align:4 +TRKTerminateNub = .text:0x8021E16C; // type:function size:0x24 scope:global align:4 +TRKNubWelcome = .text:0x8021E190; // type:function size:0x28 scope:global align:4 +TRKInitializeEndian = .text:0x8021E1B8; // type:function size:0x74 scope:global align:4 +TRKMessageSend = .text:0x8021E22C; // type:function size:0x28 scope:global align:4 +TRKSetBufferUsed = .text:0x8021E254; // type:function size:0x8 scope:local align:4 +TRKInitializeMessageBuffers = .text:0x8021E25C; // type:function size:0x78 scope:global align:4 +TRKGetFreeBuffer = .text:0x8021E2D4; // type:function size:0x9C scope:global align:4 +TRKGetBuffer = .text:0x8021E370; // type:function size:0x2C scope:global align:4 +TRKReleaseBuffer = .text:0x8021E39C; // type:function size:0x68 scope:global align:4 +TRKResetBuffer = .text:0x8021E404; // type:function size:0x40 scope:global align:4 +TRKSetBufferPosition = .text:0x8021E444; // type:function size:0x30 scope:global align:4 +TRKAppendBuffer = .text:0x8021E474; // type:function size:0xA4 scope:global align:4 +TRKReadBuffer = .text:0x8021E518; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer1_ui16 = .text:0x8021E5A4; // type:function size:0x54 scope:global align:4 +TRKAppendBuffer1_ui32 = .text:0x8021E5F8; // type:function size:0x64 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x8021E65C; // type:function size:0x88 scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x8021E6E4; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x8021E74C; // type:function size:0x7C scope:global align:4 +TRKReadBuffer1_ui8 = .text:0x8021E7C8; // type:function size:0x24 scope:global align:4 +TRKReadBuffer1_ui16 = .text:0x8021E7EC; // type:function size:0x80 scope:global align:4 +TRKReadBuffer1_ui32 = .text:0x8021E86C; // type:function size:0x90 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x8021E8FC; // type:function size:0xB0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x8021E9AC; // type:function size:0x74 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x8021EA20; // type:function size:0x7C scope:global align:4 +TRKTestForPacket = .text:0x8021EA9C; // type:function size:0xD0 scope:global align:4 +TRKGetInput = .text:0x8021EB6C; // type:function size:0x7C scope:global align:4 +TRKProcessInput = .text:0x8021EBE8; // type:function size:0x50 scope:global align:4 +TRKInitializeSerialHandler = .text:0x8021EC38; // type:function size:0x24 scope:global align:4 +TRKTerminateSerialHandler = .text:0x8021EC5C; // type:function size:0x8 scope:global align:4 +usr_put_initialize = .text:0x8021EC64; // type:function size:0x4 scope:global align:4 +TRKInitializeDispatcher = .text:0x8021EC68; // type:function size:0x14 scope:global align:4 +TRKDispatchMessage = .text:0x8021EC7C; // type:function size:0x84 scope:global align:4 +TRKMessageIntoReply = .text:0x8021ED00; // type:function size:0x98 scope:global align:4 +TRKSendACK = .text:0x8021ED98; // type:function size:0x50 scope:global align:4 +TRKStandardACK = .text:0x8021EDE8; // type:function size:0x34 scope:global align:4 +TRKDoUnsupported = .text:0x8021EE1C; // type:function size:0x28 scope:global align:4 +TRKDoConnect = .text:0x8021EE44; // type:function size:0x28 scope:global align:4 +TRKDoDisconnect = .text:0x8021EE6C; // type:function size:0x50 scope:global align:4 +TRKDoReset = .text:0x8021EEBC; // type:function size:0x30 scope:global align:4 +TRKDoVersions = .text:0x8021EEEC; // type:function size:0x184 scope:global align:4 +TRKDoSupportMask = .text:0x8021F070; // type:function size:0xDC scope:global align:4 +TRKDoCPUType = .text:0x8021F14C; // type:function size:0x244 scope:global align:4 +TRKDoReadMemory = .text:0x8021F390; // type:function size:0x1E8 scope:global align:4 +TRKDoWriteMemory = .text:0x8021F578; // type:function size:0x1FC scope:global align:4 +TRKDoReadRegisters = .text:0x8021F774; // type:function size:0x204 scope:global align:4 +TRKDoWriteRegisters = .text:0x8021F978; // type:function size:0x208 scope:global align:4 +TRKDoFlushCache = .text:0x8021FB80; // type:function size:0x138 scope:global align:4 +TRKDoContinue = .text:0x8021FCB8; // type:function size:0x64 scope:global align:4 +TRKDoStep = .text:0x8021FD1C; // type:function size:0x204 scope:global align:4 +TRKDoStop = .text:0x8021FF20; // type:function size:0x84 scope:global align:4 +TRKSuppAccessFile = .text:0x8021FFA4; // type:function size:0x2D8 scope:global align:4 +TRKRequestSend = .text:0x8022027C; // type:function size:0x1A4 scope:global align:4 +TRKInitializeMutex = .text:0x80220420; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x80220428; // type:function size:0x8 scope:global align:4 +TRKReleaseMutex = .text:0x80220430; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x80220438; // type:function size:0xD8 scope:global align:4 +TRK_flush_cache = .text:0x80220510; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x80220548; // type:function size:0xC4 scope:local align:4 +__TRK_get_MSR = .text:0x8022060C; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x80220614; // type:function size:0x8 scope:global align:4 +TRKValidMemory32 = .text:0x8022061C; // type:function size:0x138 scope:global align:4 +TRK_ppc_memcpy = .text:0x80220754; // type:function size:0x3C scope:local align:4 +TRKTargetAccessMemory = .text:0x80220790; // type:function size:0x164 scope:global align:4 +TRKTargetReadInstruction = .text:0x802208F4; // type:function size:0x4C scope:global align:4 +TRKTargetAccessDefault = .text:0x80220940; // type:function size:0xFC scope:global align:4 +TRKTargetAccessFP = .text:0x80220A3C; // type:function size:0x148 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x80220B84; // type:function size:0x178 scope:global align:4 +TRKTargetAccessExtended2 = .text:0x80220CFC; // type:function size:0x17C scope:global align:4 +TRKTargetVersions = .text:0x80220E78; // type:function size:0x28 scope:global align:4 +TRKTargetSupportMask = .text:0x80220EA0; // type:function size:0xA4 scope:global align:4 +TRKTargetCPUType = .text:0x80220F44; // type:function size:0x68 scope:global align:4 +TRKInterruptHandler = .text:0x80220FAC; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x80221140; // type:function size:0x9C scope:global align:4 +TRKPostInterruptEvent = .text:0x802211DC; // type:function size:0xB0 scope:global align:4 +TRKSwapAndGo = .text:0x8022128C; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x80221350; // type:function size:0x54 scope:global align:4 +TRKTargetInterrupt = .text:0x802213A4; // type:function size:0x64 scope:global align:4 +TRKTargetAddStopInfo = .text:0x80221408; // type:function size:0x90 scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x80221498; // type:function size:0x88 scope:global align:4 +TRKTargetEnableTrace = .text:0x80221520; // type:function size:0x3C scope:local align:4 +TRKTargetStepDone = .text:0x8022155C; // type:function size:0x84 scope:local align:4 +TRKTargetDoStep = .text:0x802215E0; // type:function size:0x70 scope:local align:4 +TRKTargetCheckStep = .text:0x80221650; // type:function size:0x68 scope:local align:4 +TRKTargetSingleStep = .text:0x802216B8; // type:function size:0x44 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x802216FC; // type:function size:0x48 scope:global align:4 +TRKTargetGetPC = .text:0x80221744; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x80221754; // type:function size:0xF0 scope:global align:4 +TRKTargetFlushCache = .text:0x80221844; // type:function size:0x3C scope:global align:4 +TRKTargetStopped = .text:0x80221880; // type:function size:0x10 scope:global align:4 +TRKTargetSetStopped = .text:0x80221890; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x802218A0; // type:function size:0x28 scope:global align:4 +TRKPPCAccessSPR = .text:0x802218C8; // type:function size:0xB0 scope:global align:4 +TRKPPCAccessPairedSingleRegister = .text:0x80221978; // type:function size:0x78 scope:global align:4 +TRKPPCAccessFPRegister = .text:0x802219F0; // type:function size:0x180 scope:global align:4 +TRKPPCAccessSpecialReg = .text:0x80221B70; // type:function size:0x68 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x80221BD8; // type:function size:0x10 scope:global align:4 +InitMetroTRK = .text:0x80221BE8; // type:function size:0x94 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x80221C7C; // type:function size:0x20 scope:global align:4 +TRKTargetTranslate = .text:0x80221C9C; // type:function size:0x48 scope:global align:4 +TRK_copy_vector = .text:0x80221CE4; // type:function size:0x60 scope:global align:4 +__TRK_copy_vectors = .text:0x80221D44; // type:function size:0x94 scope:global align:4 +TRKInitializeTarget = .text:0x80221DD8; // type:function size:0x50 scope:global align:4 +TRKSaveExtended1Block = .text:0x80221E28; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x80221FE0; // type:function size:0x1B8 scope:global align:4 +TRKTargetCPUMinorType = .text:0x80222198; // type:function size:0x8 scope:global align:4 +TRK_main = .text:0x802221A0; // type:function size:0x48 scope:global align:4 +TRKLoadContext = .text:0x802221E8; // type:function size:0x88 scope:global align:4 +TRKEXICallBack = .text:0x80222270; // type:function size:0x38 scope:global align:4 +InitMetroTRKCommTable = .text:0x802222A8; // type:function size:0xE8 scope:global align:4 +TRKUARTInterruptHandler = .text:0x80222390; // type:function size:0x4 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x80222394; // type:function size:0x40 scope:global align:4 +EnableEXI2Interrupts = .text:0x802223D4; // type:function size:0x30 scope:global align:4 +TRKPollUART = .text:0x80222404; // type:function size:0x30 scope:global align:4 +TRKReadUARTN = .text:0x80222434; // type:function size:0x44 scope:global align:4 +TRKWriteUARTN = .text:0x80222478; // type:function size:0x44 scope:global align:4 +ReserveEXI2Port = .text:0x802224BC; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x802224EC; // type:function size:0x30 scope:global align:4 +TRK_board_display = .text:0x8022251C; // type:function size:0x24 scope:global align:4 +TRKTargetContinue = .text:0x80222540; // type:function size:0x34 scope:global align:4 +AmcEXIImm = .text:0x80222574; // type:function size:0x244 scope:global align:4 +AmcEXISync = .text:0x802227B8; // type:function size:0x198 scope:global align:4 +AmcEXIClearInterrupts = .text:0x80222950; // type:function size:0x40 scope:global align:4 +AmcEXISetExiCallback = .text:0x80222990; // type:function size:0x6C scope:global align:4 +AmcEXISelect = .text:0x802229FC; // type:function size:0x80 scope:global align:4 +AmcEXIDeselect = .text:0x80222A7C; // type:function size:0x68 scope:global align:4 +AmcDebugIntHandler = .text:0x80222AE4; // type:function size:0x50 scope:local align:4 +AmcEXIEnableInterrupts = .text:0x80222B34; // type:function size:0x40 scope:global align:4 +AmcEXIInit = .text:0x80222B74; // type:function size:0x40 scope:global align:4 +EXI2_CallBack = .text:0x80222BB4; // type:function size:0x40 scope:local align:4 +EXI2_Init = .text:0x80222BF4; // type:function size:0xBC scope:global align:4 +EXI2_EnableInterrupts = .text:0x80222CB0; // type:function size:0x2C scope:global align:4 +EXI2_Poll = .text:0x80222CDC; // type:function size:0x108 scope:global align:4 +EXI2_ReadN = .text:0x80222DE4; // type:function size:0x2BC scope:global align:4 +EXI2_WriteN = .text:0x802230A0; // type:function size:0x1B0 scope:global align:4 +EXI2_Reserve = .text:0x80223250; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x80223254; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x80223258; // type:function size:0x8 scope:weak align:4 +DBGEXIImm = .text:0x80223260; // type:function size:0x298 scope:local align:4 +DBGReadMailbox = .text:0x802234F8; // type:function size:0xAC scope:local align:4 +DBGRead = .text:0x802235A4; // type:function size:0xDC scope:local align:4 +DBGWrite = .text:0x80223680; // type:function size:0xDC scope:local align:4 +DBGReadStatus = .text:0x8022375C; // type:function size:0xAC scope:local align:4 +MWCallback = .text:0x80223808; // type:function size:0x3C scope:local align:4 +DBGHandler = .text:0x80223844; // type:function size:0x40 scope:local align:4 +DBInitComm = .text:0x80223884; // type:function size:0x78 scope:global align:4 +DBInitInterrupts = .text:0x802238FC; // type:function size:0x54 scope:global align:4 +DBQueryData = .text:0x80223950; // type:function size:0x9C scope:global align:4 +DBRead = .text:0x802239EC; // type:function size:0x8C scope:global align:4 +DBWrite = .text:0x80223A78; // type:function size:0x260 scope:global align:4 +DBOpen = .text:0x80223CD8; // type:function size:0x4 scope:global align:4 +DBClose = .text:0x80223CDC; // type:function size:0x4 scope:global align:4 +Hu_IsStub = .text:0x80223CE0; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80223D00; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80223D00; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x80223D60; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x80223D60; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x80223D64; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x80223D68; // type:object size:0x4 scope:local align:4 +@189 = .rodata:0x80223D80; // type:object size:0x9 scope:local align:4 data:string +@206 = .rodata:0x80223D8C; // type:object size:0xC scope:local align:4 data:string +@95 = .rodata:0x80223D98; // type:object size:0xB scope:local align:4 data:string +@189 = .rodata:0x80223DA8; // type:object size:0x9 scope:local align:4 data:string +@191 = .rodata:0x80223DB4; // type:object size:0xB scope:local align:4 data:string +@347 = .rodata:0x80223DC0; // type:object size:0x1A scope:local align:4 data:string +@351 = .rodata:0x80223DDC; // type:object size:0x1F scope:local align:4 data:string +...rodata.0 = .rodata:0x80223E00; // type:label scope:local +@440 = .rodata:0x80223E00; // type:object size:0xF scope:local align:4 data:string +@441 = .rodata:0x80223E10; // type:object size:0xF scope:local align:4 data:string +@442 = .rodata:0x80223E20; // type:object size:0x14 scope:local align:4 data:string +@443 = .rodata:0x80223E34; // type:object size:0x13 scope:local align:4 data:string +@444 = .rodata:0x80223E48; // type:object size:0x14 scope:local align:4 data:string +@445 = .rodata:0x80223E5C; // type:object size:0xD scope:local align:4 data:string +@446 = .rodata:0x80223E6C; // type:object size:0x41 scope:local align:4 data:string +@451 = .rodata:0x80223EB0; // type:object size:0xD scope:local align:4 +@252 = .rodata:0x80223EC0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80223ED0; // type:label scope:local +@161 = .rodata:0x80223ED0; // type:object size:0x12 scope:local align:4 data:string +@162 = .rodata:0x80223EE4; // type:object size:0x12 scope:local align:4 data:string +@197 = .rodata:0x80223EF8; // type:object size:0x12 scope:local align:4 data:string +@198 = .rodata:0x80223F0C; // type:object size:0x13 scope:local align:4 data:string +@199 = .rodata:0x80223F20; // type:object size:0x13 scope:local align:4 data:string +@200 = .rodata:0x80223F34; // type:object size:0x11 scope:local align:4 data:string +@201 = .rodata:0x80223F48; // type:object size:0x11 scope:local align:4 data:string +@202 = .rodata:0x80223F5C; // type:object size:0x11 scope:local align:4 data:string +@203 = .rodata:0x80223F70; // type:object size:0x11 scope:local align:4 data:string +@204 = .rodata:0x80223F84; // type:object size:0x11 scope:local align:4 data:string +@205 = .rodata:0x80223F98; // type:object size:0x11 scope:local align:4 data:string +@206 = .rodata:0x80223FAC; // type:object size:0x11 scope:local align:4 data:string +@207 = .rodata:0x80223FC0; // type:object size:0x11 scope:local align:4 data:string +@208 = .rodata:0x80223FD4; // type:object size:0x11 scope:local align:4 data:string +@209 = .rodata:0x80223FE8; // type:object size:0xC scope:local align:4 data:string +@210 = .rodata:0x80223FF4; // type:object size:0xC scope:local align:4 data:string +@211 = .rodata:0x80224000; // type:object size:0xB scope:local align:4 data:string +@212 = .rodata:0x8022400C; // type:object size:0xD scope:local align:4 data:string +@213 = .rodata:0x8022401C; // type:object size:0xD scope:local align:4 data:string +@79 = .rodata:0x80224030; // type:object size:0x14 scope:local align:4 data:4byte +@80 = .rodata:0x80224044; // type:object size:0x14 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80224058; // type:label scope:local +@409 = .rodata:0x80224058; // type:object size:0xB scope:local align:4 data:string +@410 = .rodata:0x80224064; // type:object size:0xB scope:local align:4 data:string +@411 = .rodata:0x80224070; // type:object size:0xB scope:local align:4 data:string +mcbtypetrans$1481 = .rodata:0x80224080; // type:object size:0x18 scope:local align:4 +@3833 = .rodata:0x80224098; // type:object size:0x60 scope:local align:4 data:4byte +@826 = .rodata:0x802240F8; // type:object size:0x60 scope:local align:4 data:4byte +@701 = .rodata:0x80224158; // type:object size:0x18 scope:local align:4 data:4byte +@2583 = .rodata:0x80224170; // type:object size:0xC scope:local align:4 data:4byte +@2599 = .rodata:0x8022417C; // type:object size:0xC scope:local align:4 data:4byte +@2679 = .rodata:0x80224188; // type:object size:0xC scope:local align:4 data:4byte +@2515 = .rodata:0x80224198; // type:object size:0x14 scope:local align:4 data:4byte +@2562 = .rodata:0x802241AC; // type:object size:0x18 scope:local align:4 data:4byte +@1088 = .rodata:0x802241C8; // type:object size:0xC scope:local align:4 data:4byte +@1587 = .rodata:0x802241D8; // type:object size:0xC scope:local align:4 data:4byte +@1824 = .rodata:0x802241E4; // type:object size:0xC scope:local align:4 data:4byte +@2255 = .rodata:0x802241F0; // type:object size:0x10 scope:local align:4 data:4byte +@2256 = .rodata:0x80224200; // type:object size:0x10 scope:local align:4 data:4byte +@2058 = .rodata:0x80224210; // type:object size:0x24 scope:local align:4 data:4byte +@1736 = .rodata:0x80224238; // type:object size:0x20 scope:local align:4 data:4byte +@1893 = .rodata:0x80224258; // type:object size:0x20 scope:local align:4 data:4byte +@2123 = .rodata:0x80224278; // type:object size:0x20 scope:local align:4 data:4byte +@1834 = .rodata:0x80224298; // type:object size:0x10 scope:local align:4 data:4byte +@4066 = .rodata:0x802242A8; // type:object size:0x1C scope:local align:4 data:4byte +@4070 = .rodata:0x802242C4; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x802242D0; // type:label scope:local +@5139 = .rodata:0x802242D0; // type:object size:0x18 scope:local align:4 data:4byte +@5210 = .rodata:0x802242E8; // type:object size:0x10 scope:local align:4 +@5215 = .rodata:0x802242F8; // type:object size:0x18 scope:local align:4 +@5216 = .rodata:0x80224310; // type:object size:0xC scope:local align:4 +@5220 = .rodata:0x8022431C; // type:object size:0x10 scope:local align:4 +@5224 = .rodata:0x8022432C; // type:object size:0x10 scope:local align:4 +@5240 = .rodata:0x8022433C; // type:object size:0x28 scope:local align:4 +@5241 = .rodata:0x80224364; // type:object size:0x14 scope:local align:4 +@1996 = .rodata:0x80224378; // type:object size:0x18 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80224390; // type:label scope:local +@1620 = .rodata:0x80224390; // type:object size:0xC scope:local align:4 +@1675 = .rodata:0x8022439C; // type:object size:0x18 scope:local align:4 data:4byte +@1781 = .rodata:0x802243B4; // type:object size:0x18 scope:local align:4 data:4byte +@1782 = .rodata:0x802243CC; // type:object size:0x10 scope:local align:4 data:4byte +@1940 = .rodata:0x802243DC; // type:object size:0x18 scope:local align:4 data:4byte +@1943 = .rodata:0x802243F4; // type:object size:0x18 scope:local align:4 data:4byte +@1997 = .rodata:0x8022440C; // type:object size:0x18 scope:local align:4 data:4byte +@2065 = .rodata:0x80224424; // type:object size:0x14 scope:local align:4 data:4byte +@1596 = .rodata:0x80224438; // type:object size:0xC scope:local align:4 data:4byte +@1692 = .rodata:0x80224444; // type:object size:0xC scope:local align:4 data:4byte +@1702 = .rodata:0x80224450; // type:object size:0xC scope:local align:4 data:4byte +@2104 = .rodata:0x80224460; // type:object size:0xC scope:local align:4 data:4byte +@2105 = .rodata:0x8022446C; // type:object size:0xC scope:local align:4 data:4byte +@3938 = .rodata:0x80224478; // type:object size:0x20 scope:local align:4 data:4byte +@1971 = .rodata:0x80224498; // type:object size:0x30 scope:local align:4 data:4byte +@2606 = .rodata:0x802244C8; // type:object size:0x10 scope:local align:4 data:4byte +@3559 = .rodata:0x802244D8; // type:object size:0x10 scope:local align:4 data:4byte +@1846 = .rodata:0x802244E8; // type:object size:0x14 scope:local align:4 data:4byte +@2113 = .rodata:0x80224500; // type:object size:0x3C scope:local align:4 data:4byte +@2068 = .rodata:0x80224540; // type:object size:0x10 scope:local align:4 data:4byte +__ptmf_null = .rodata:0x80224550; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80224560; // type:object size:0x18 scope:local align:4 data:double +bit_values = .rodata:0x80224578; // type:object size:0x48 scope:local align:8 data:double +digit_values = .rodata:0x802245C0; // type:object size:0x40 scope:local align:8 +__ctype_map = .rodata:0x80224600; // type:object size:0x100 scope:global align:4 +__lower_map = .rodata:0x80224700; // type:object size:0x100 scope:global align:4 +__upper_map = .rodata:0x80224800; // type:object size:0x100 scope:global align:4 +@stringBase0 = .rodata:0x80224900; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x80224908; // type:object size:0xE scope:local align:4 data:string_table +@93 = .rodata:0x80224918; // type:object size:0x28 scope:local align:4 data:4byte +@93 = .rodata:0x80224940; // type:object size:0x2A scope:local align:4 data:2byte +...rodata.0 = .rodata:0x80224970; // type:label scope:local +bp = .rodata:0x80224970; // type:object size:0x10 scope:local align:8 data:double +dp_h = .rodata:0x80224980; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x80224990; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x802249A0; // type:label scope:local +atanhi = .rodata:0x802249A0; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x802249C0; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x802249E0; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x80224A38; // type:label scope:local +atan_coeff$96 = .rodata:0x80224A38; // type:object size:0x1C scope:local align:4 +onep_one_over_xisqr_hi$97 = .rodata:0x80224A54; // type:object size:0x18 scope:local align:4 +onep_one_over_xisqr_lo$98 = .rodata:0x80224A6C; // type:object size:0x18 scope:local align:4 +atan_xi_hi$99 = .rodata:0x80224A84; // type:object size:0x1C scope:local align:4 +atan_xi_lo$100 = .rodata:0x80224AA0; // type:object size:0x1C scope:local align:4 +one_over_xi_hi$101 = .rodata:0x80224ABC; // type:object size:0x18 scope:local align:4 +one_over_xi_lo$102 = .rodata:0x80224AD4; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x80224AF0; // type:label scope:local +tmp_float = .rodata:0x80224AF0; // type:object size:0x10 scope:local align:4 data:float +__sincos_on_quadrant = .rodata:0x80224B00; // type:object size:0x20 scope:global align:4 +__sincos_poly = .rodata:0x80224B20; // type:object size:0x28 scope:global align:4 data:float +@40 = .rodata:0x80224B48; // type:object size:0x1A scope:local align:4 data:string +gTRKMemMap = .rodata:0x80224B68; // type:object size:0x10 scope:global align:4 data:4byte +@233 = .rodata:0x80224B78; // type:object size:0x14 scope:local align:4 data:4byte +@238 = .rodata:0x80224B8C; // type:object size:0x14 scope:local align:4 data:4byte +@243 = .rodata:0x80224BA0; // type:object size:0x14 scope:local align:4 data:4byte +@388 = .data:0x80224BC0; // type:object size:0xE scope:local align:4 data:string +@406 = .data:0x80224BD0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x80224BE0; // type:label scope:local +J_STREAMNAME = .data:0x80224BE0; // type:object size:0x80 scope:global align:4 +J_STREAM = .data:0x80224C60; // type:object size:0x2C scope:global align:4 +@100 = .data:0x80224C8C; // type:object size:0x20 scope:local align:4 +audio_root_path = .data:0x80224CB0; // type:object size:0x20 scope:local align:4 data:byte +jdsp = .data:0x80224CE0; // type:object size:0x1A60 scope:global align:32 +calc_sw_table = .data:0x80226740; // type:object size:0x51 scope:local align:4 +@343 = .data:0x80226794; // type:object size:0x20 scope:local align:4 +@342 = .data:0x802267B4; // type:object size:0x20 scope:local align:4 +history = .data:0x802267D8; // type:object size:0x28 scope:local align:4 data:4byte +connect_table$92 = .data:0x80226800; // type:object size:0x18 scope:local align:4 +DSPADPCM_FILTER = .data:0x80226820; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER = .data:0x80226860; // type:object size:0x400 scope:local align:32 +SEND_TABLE = .data:0x80226C60; // type:object size:0x18 scope:local align:4 +C5BASE_PITCHTABLE = .data:0x80226C78; // type:object size:0x200 scope:global align:4 +FORCE_RELEASE_TABLE = .data:0x80226E78; // type:object size:0xC scope:local align:4 +extdir = .data:0x80226E88; // type:object size:0x40 scope:local align:4 +@147 = .data:0x80226EC8; // type:object size:0x34 scope:local align:4 +@237 = .data:0x80226EFC; // type:object size:0x44 scope:local align:4 +@274 = .data:0x80226F40; // type:object size:0x44 scope:local align:4 +Arglist = .data:0x80226F84; // type:object size:0x100 scope:local align:4 +CMDP_LIST = .data:0x80227084; // type:object size:0x100 scope:local align:4 +CUTOFF_TO_IIR_TABLE = .data:0x80227188; // type:object size:0x400 scope:global align:4 +KEY_TABLE = .data:0x80227588; // type:object size:0x100 scope:local align:4 +...data.0 = .data:0x80227688; // type:label scope:local +VIB_TABLE = .data:0x80227688; // type:object size:0x24 scope:local align:4 +TRE_TABLE = .data:0x802276AC; // type:object size:0x24 scope:local align:4 +REL_TABLE = .data:0x802276D0; // type:object size:0xC scope:local align:4 data:2byte +VIBRATO_DEF = .data:0x802276DC; // type:object size:0x18 scope:local align:4 data:4byte +TREMOLO_DEF = .data:0x802276F4; // type:object size:0x18 scope:local align:4 data:4byte +ENVELOPE_DEF = .data:0x8022770C; // type:object size:0x18 scope:local align:4 data:4byte +ADS_TABLE = .data:0x80227724; // type:object size:0x18 scope:local align:4 +ADSR_DEF = .data:0x8022773C; // type:object size:0x18 scope:local align:4 +OSC_DEF = .data:0x80227754; // type:object size:0x18 scope:local align:4 +PERC_ENV = .data:0x80227770; // type:object size:0x18 scope:local align:4 +OSC_ENV = .data:0x80227788; // type:object size:0x18 scope:local align:4 +polys_table = .data:0x802277A0; // type:object size:0x10 scope:local align:4 +@151 = .data:0x802277B0; // type:object size:0x98 scope:local align:4 +fx_config$180 = .data:0x80227848; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802278C8; // type:label scope:local +EVENT_OFFSET = .data:0x802278C8; // type:object size:0x20 scope:local align:4 +ACTION_STATUS = .data:0x802278E8; // type:object size:0x684 scope:local align:4 +EVENT_DIST_SCALE = .data:0x80227F6C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x80227F90; // type:label scope:local +bgm_mute_set = .data:0x80227F90; // type:object size:0x50 scope:local align:4 +bgm_volume_set = .data:0x80227FE0; // type:object size:0x50 scope:local align:4 +GAMEBGM_VOL_TABLE = .data:0x80228030; // type:object size:0x2C scope:local align:4 +GAMEDEMO_VOL_TABLE = .data:0x8022805C; // type:object size:0x16 scope:local align:4 +GAMESE_VOL_TABLE = .data:0x80228074; // type:object size:0x16 scope:local align:4 +GAMESTREAM_VOL_TABLE = .data:0x8022808C; // type:object size:0x16 scope:local align:4 +...data.0 = .data:0x802280A8; // type:label scope:local +tbl_scene_to_bgm = .data:0x802280A8; // type:object size:0x38 scope:local align:4 +tbl_scene_to_fadetime = .data:0x802280E0; // type:object size:0x38 scope:local align:4 +tbl_stage_to_bgm = .data:0x80228118; // type:object size:0x14 scope:local align:4 +filelist = .data:0x8022812C; // type:object size:0x1C0 scope:global align:4 +header = .data:0x802282EC; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x80228310; // type:label scope:local +parts_bright_table = .data:0x80228310; // type:object size:0x20 scope:local align:4 +demo4 = .data:0x80228330; // type:object size:0x2C scope:local align:4 +demo5 = .data:0x8022835C; // type:object size:0x28 scope:local align:4 +demo9 = .data:0x80228384; // type:object size:0xC scope:local align:4 +demo16 = .data:0x80228390; // type:object size:0x24 scope:local align:4 +demo17 = .data:0x802283B4; // type:object size:0x54 scope:local align:4 +demo18 = .data:0x80228408; // type:object size:0x10 scope:local align:4 +demo19 = .data:0x80228418; // type:object size:0x2C scope:local align:4 +demo20 = .data:0x80228444; // type:object size:0x28 scope:local align:4 +demo21 = .data:0x8022846C; // type:object size:0x28 scope:local align:4 +demo24 = .data:0x80228494; // type:object size:0x28 scope:local align:4 +demo25 = .data:0x802284BC; // type:object size:0x20 scope:local align:4 +demo26 = .data:0x802284DC; // type:object size:0x34 scope:local align:4 +demo28 = .data:0x80228510; // type:object size:0x7C scope:local align:4 +demo29 = .data:0x8022858C; // type:object size:0x7C scope:local align:4 +demo32 = .data:0x80228608; // type:object size:0xC scope:local align:4 +demo40 = .data:0x80228614; // type:object size:0x14 scope:local align:4 +demo47 = .data:0x80228628; // type:object size:0x2C scope:local align:4 +demo52 = .data:0x80228654; // type:object size:0x34 scope:local align:4 +demo56 = .data:0x80228688; // type:object size:0x40 scope:local align:4 +demo69 = .data:0x802286C8; // type:object size:0x14 scope:local align:4 +demo73 = .data:0x802286DC; // type:object size:0x34 scope:local align:4 +demo74 = .data:0x80228710; // type:object size:0x38 scope:local align:4 +demo75 = .data:0x80228748; // type:object size:0x28 scope:local align:4 +demo76 = .data:0x80228770; // type:object size:0x14 scope:local align:4 +demo100 = .data:0x80228784; // type:object size:0x18 scope:local align:4 +demo101 = .data:0x8022879C; // type:object size:0x20 scope:local align:4 +demo113 = .data:0x802287BC; // type:object size:0x48 scope:local align:4 +demo114 = .data:0x80228804; // type:object size:0xC scope:local align:4 +DEMO_STATUS = .data:0x80228810; // type:object size:0x564 scope:local align:4 +@368 = .data:0x80228D74; // type:object size:0x2C scope:local align:4 +@476 = .data:0x80228DA0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x80228DD0; // type:label scope:local +filter_table = .data:0x80228DD0; // type:object size:0x40 scope:local align:4 +table4 = .data:0x80228E10; // type:object size:0x20 scope:global align:4 +HEAD_pikiseq = .data:0x80228E40; // type:object size:0x2E0 scope:global align:32 +func$793 = .data:0x80229120; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x80229130; // type:label scope:local +@388 = .data:0x80229130; // type:object size:0xC scope:local align:4 data:string +@420 = .data:0x8022913C; // type:object size:0xA scope:local align:4 data:string +@432 = .data:0x80229148; // type:object size:0x9 scope:local align:4 data:string +@433 = .data:0x80229154; // type:object size:0xC scope:local align:4 +@435 = .data:0x80229160; // type:object size:0x14 scope:local align:4 +@430 = .data:0x80229174; // type:object size:0x1C scope:local align:4 +__vt__7BaseApp = .data:0x80229190; // type:object size:0x4C scope:global align:4 +__vt__8CoreNode = .data:0x802291DC; // type:object size:0x10 scope:weak align:4 +__vt__5ANode = .data:0x802291EC; // type:object size:0xC scope:weak align:4 +__vt__6Stream = .data:0x802291F8; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x80229250; // type:label scope:local +@388 = .data:0x80229250; // type:object size:0x18 scope:local align:4 data:string +@398 = .data:0x80229268; // type:object size:0x14 scope:local align:4 data:string +@430 = .data:0x8022927C; // type:object size:0x14 scope:local align:4 data:string +@433 = .data:0x80229290; // type:object size:0x13 scope:local align:4 data:string +@434 = .data:0x802292A4; // type:object size:0xC scope:local align:4 +@431 = .data:0x802292B0; // type:object size:0x14 scope:local align:4 +__vt__19BufferedInputStream = .data:0x802292C4; // type:object size:0x64 scope:global align:4 +__vt__18RandomAccessStream = .data:0x80229328; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802293A0; // type:label scope:local +@577 = .data:0x802293A0; // type:object size:0xD scope:local align:4 data:string +@587 = .data:0x802293B0; // type:object size:0x9 scope:local align:4 data:string +@1233 = .data:0x802293BC; // type:object size:0xB scope:local align:4 data:string +mappingTypes$1231 = .data:0x802293C8; // type:object size:0xC scope:local align:4 +sjis_convert_table = .data:0x802293D4; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x802298A0; // type:object size:0x499 scope:local align:32 data:byte +convFmts = .data:0x80229D3C; // type:object size:0x3C scope:local align:4 +@1724 = .data:0x80229D78; // type:object size:0xF scope:local align:4 data:string +@1725 = .data:0x80229D88; // type:object size:0xD scope:local align:4 data:string +@1726 = .data:0x80229D98; // type:object size:0xF scope:local align:4 data:string +@1727 = .data:0x80229DA8; // type:object size:0xB scope:local align:4 data:string +@1728 = .data:0x80229DB4; // type:object size:0xB scope:local align:4 data:string +@1729 = .data:0x80229DC0; // type:object size:0xC scope:local align:4 data:string +@1730 = .data:0x80229DCC; // type:object size:0xC scope:local align:4 data:string +@1731 = .data:0x80229DD8; // type:object size:0xE scope:local align:4 data:string +fmtNames = .data:0x80229DE8; // type:object size:0x20 scope:local align:4 +@1746 = .data:0x80229E08; // type:object size:0x28 scope:local align:4 +@1776 = .data:0x80229E30; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x80229E3C; // type:object size:0x9 scope:local align:4 data:string +@1778 = .data:0x80229E48; // type:object size:0xA scope:local align:4 data:string +@1779 = .data:0x80229E54; // type:object size:0xA scope:local align:4 data:string +@1780 = .data:0x80229E60; // type:object size:0xD scope:local align:4 data:string +@1781 = .data:0x80229E70; // type:object size:0xD scope:local align:4 data:string +@1782 = .data:0x80229E80; // type:object size:0xC scope:local align:4 data:string +@1784 = .data:0x80229E8C; // type:object size:0xB scope:local align:4 data:string +btitexFmts = .data:0x80229E98; // type:object size:0x3C scope:local align:4 +@1785 = .data:0x80229ED4; // type:object size:0x9 scope:local align:4 data:string +@1786 = .data:0x80229EE0; // type:object size:0x9 scope:local align:4 data:string +@1787 = .data:0x80229EEC; // type:object size:0xC scope:local align:4 data:string +btipalFmts = .data:0x80229EF8; // type:object size:0xC scope:local align:4 +@2169 = .data:0x80229F04; // type:object size:0xD scope:local align:4 data:string +@2171 = .data:0x80229F14; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x80229F20; // type:object size:0xC scope:local align:4 +@2170 = .data:0x80229F2C; // type:object size:0x14 scope:local align:4 +__vt__12CacheTexture = .data:0x80229F40; // type:object size:0x14 scope:global align:4 +@2177 = .data:0x80229F54; // type:object size:0x9 scope:local align:4 data:string +@2178 = .data:0x80229F60; // type:object size:0xC scope:local align:4 +@2175 = .data:0x80229F6C; // type:object size:0x14 scope:local align:4 +__vt__7TexAttr = .data:0x80229F80; // type:object size:0x10 scope:global align:4 +@2181 = .data:0x80229F90; // type:object size:0x14 scope:local align:4 +__vt__6TexImg = .data:0x80229FA4; // type:object size:0x10 scope:global align:4 +__vt__8Graphics = .data:0x80229FB4; // type:object size:0xF4 scope:global align:4 +@2197 = .data:0x8022A0A8; // type:object size:0x10 scope:local align:4 data:string +__vt__15MaterialHandler = .data:0x8022A0B8; // type:object size:0x10 scope:global align:4 +@2198 = .data:0x8022A0C8; // type:object size:0x9 scope:local align:4 data:string +@2199 = .data:0x8022A0D4; // type:object size:0x14 scope:local align:4 +__vt__8Material = .data:0x8022A0E8; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x8022A100; // type:label scope:local +@570 = .data:0x8022A100; // type:object size:0xC scope:local align:4 data:string +@669 = .data:0x8022A10C; // type:object size:0x1C scope:local align:4 +@733 = .data:0x8022A128; // type:object size:0x9 scope:local align:4 data:string +@734 = .data:0x8022A134; // type:object size:0xC scope:local align:4 +@731 = .data:0x8022A140; // type:object size:0x14 scope:local align:4 +__vt__5Light = .data:0x8022A154; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022A180; // type:label scope:local +@577 = .data:0x8022A180; // type:object size:0xE scope:local align:4 data:string +@587 = .data:0x8022A190; // type:object size:0xA scope:local align:4 data:string +modes = .data:0x8022A19C; // type:object size:0x14 scope:local align:4 +@653 = .data:0x8022A1B0; // type:object size:0x9 scope:local align:4 data:string +@1192 = .data:0x8022A1BC; // type:object size:0x15 scope:local align:4 data:string +@1193 = .data:0x8022A1D4; // type:object size:0x11 scope:local align:4 data:string +@1197 = .data:0x8022A1E8; // type:object size:0x13 scope:local align:4 data:string +@1200 = .data:0x8022A1FC; // type:object size:0xA scope:local align:4 data:string +@1201 = .data:0x8022A208; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x8022A214; // type:object size:0xA scope:local align:4 data:string +@1203 = .data:0x8022A220; // type:object size:0xA scope:local align:4 data:string +@1204 = .data:0x8022A22C; // type:object size:0xA scope:local align:4 data:string +@1205 = .data:0x8022A238; // type:object size:0xA scope:local align:4 data:string +@1206 = .data:0x8022A244; // type:object size:0xA scope:local align:4 data:string +@1207 = .data:0x8022A250; // type:object size:0x9 scope:local align:4 data:string +@1208 = .data:0x8022A25C; // type:object size:0x9 scope:local align:4 data:string +@1210 = .data:0x8022A268; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x8022A280; // type:object size:0x1A scope:local align:4 data:string +@1212 = .data:0x8022A29C; // type:object size:0xC scope:local align:4 data:string +@1213 = .data:0x8022A2A8; // type:object size:0xC scope:local align:4 data:string +@1214 = .data:0x8022A2B4; // type:object size:0xC scope:local align:4 data:string +@1215 = .data:0x8022A2C0; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x8022A2D0; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x8022A2E0; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x8022A2F0; // type:object size:0xE scope:local align:4 data:string +@1268 = .data:0x8022A300; // type:object size:0xB scope:local align:4 data:string +@1269 = .data:0x8022A30C; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x8022A31C; // type:object size:0xA scope:local align:4 data:string +@1677 = .data:0x8022A328; // type:object size:0xB scope:local align:4 data:string +@1678 = .data:0x8022A334; // type:object size:0xA scope:local align:4 data:string +@1679 = .data:0x8022A340; // type:object size:0xB scope:local align:4 data:string +@1682 = .data:0x8022A34C; // type:object size:0xE scope:local align:4 data:string +@1687 = .data:0x8022A35C; // type:object size:0xD scope:local align:4 data:string +@1688 = .data:0x8022A36C; // type:object size:0xD scope:local align:4 data:string +@1689 = .data:0x8022A37C; // type:object size:0x9 scope:local align:4 data:string +@1690 = .data:0x8022A388; // type:object size:0x9 scope:local align:4 data:string +@1691 = .data:0x8022A394; // type:object size:0x9 scope:local align:4 data:string +@1692 = .data:0x8022A3A0; // type:object size:0x9 scope:local align:4 data:string +@1693 = .data:0x8022A3AC; // type:object size:0x9 scope:local align:4 data:string +@1694 = .data:0x8022A3B8; // type:object size:0x9 scope:local align:4 data:string +@1695 = .data:0x8022A3C4; // type:object size:0x9 scope:local align:4 data:string +@1696 = .data:0x8022A3D0; // type:object size:0x9 scope:local align:4 data:string +@1697 = .data:0x8022A3DC; // type:object size:0x9 scope:local align:4 data:string +@1724 = .data:0x8022A3E8; // type:object size:0xA scope:local align:4 data:string +@2045 = .data:0x8022A3F4; // type:object size:0xF scope:local align:4 data:string +@2046 = .data:0x8022A404; // type:object size:0xE scope:local align:4 data:string +@2047 = .data:0x8022A414; // type:object size:0xF scope:local align:4 data:string +@2048 = .data:0x8022A424; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x8022A438; // type:object size:0x1A scope:local align:4 data:string +@2164 = .data:0x8022A454; // type:object size:0x20 scope:local align:4 data:string +@2165 = .data:0x8022A474; // type:object size:0x1E scope:local align:4 data:string +@2215 = .data:0x8022A494; // type:object size:0x9 scope:local align:4 data:string +@2217 = .data:0x8022A4A0; // type:object size:0xB scope:local align:4 data:string +@2406 = .data:0x8022A4AC; // type:object size:0xC scope:local align:4 data:4byte +@2476 = .data:0x8022A4B8; // type:object size:0x9 scope:local align:4 data:string +@4189 = .data:0x8022A4C4; // type:object size:0xA scope:local align:4 data:string +@4564 = .data:0x8022A4D0; // type:object size:0xB scope:local align:4 data:string +@4566 = .data:0x8022A4DC; // type:object size:0xB scope:local align:4 data:string +@4565 = .data:0x8022A4E8; // type:object size:0xC scope:local align:4 +__vt__10MatobjInfo = .data:0x8022A4F4; // type:object size:0x10 scope:weak align:4 +__vt__10GfxobjInfo = .data:0x8022A504; // type:object size:0x10 scope:weak align:4 +@4571 = .data:0x8022A514; // type:object size:0xA scope:local align:4 data:string +@4574 = .data:0x8022A520; // type:object size:0xC scope:local align:4 +@4572 = .data:0x8022A52C; // type:object size:0x14 scope:local align:4 +__vt__9BaseShape = .data:0x8022A540; // type:object size:0x24 scope:global align:4 +@4580 = .data:0x8022A564; // type:object size:0x2D scope:local align:4 data:string +@4582 = .data:0x8022A594; // type:object size:0x23 scope:local align:4 data:string +@4581 = .data:0x8022A5B8; // type:object size:0xC scope:local align:4 +__vt__32Delegate2<9BaseShape,P5Joint,Ul> = .data:0x8022A5C4; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate2 = .data:0x8022A5D0; // type:object size:0xC scope:weak align:4 +@4583 = .data:0x8022A5DC; // type:object size:0xB scope:local align:4 data:string +@4584 = .data:0x8022A5E8; // type:object size:0x14 scope:local align:4 +__vt__10LightFlare = .data:0x8022A5FC; // type:object size:0x10 scope:weak align:4 +@4586 = .data:0x8022A60C; // type:object size:0xB scope:local align:4 data:string +@4587 = .data:0x8022A618; // type:object size:0x14 scope:local align:4 +__vt__10LightGroup = .data:0x8022A62C; // type:object size:0x10 scope:weak align:4 +@4588 = .data:0x8022A63C; // type:object size:0xC scope:local align:4 data:string +@4589 = .data:0x8022A648; // type:object size:0x14 scope:local align:4 +__vt__11ObjCollInfo = .data:0x8022A65C; // type:object size:0x10 scope:weak align:4 +@4592 = .data:0x8022A66C; // type:object size:0x9 scope:local align:4 data:string +@4593 = .data:0x8022A678; // type:object size:0x14 scope:local align:4 +@4591 = .data:0x8022A68C; // type:object size:0x1C scope:local align:4 +__vt__7AnimDck = .data:0x8022A6A8; // type:object size:0x20 scope:global align:4 +@4596 = .data:0x8022A6C8; // type:object size:0x1C scope:local align:4 +__vt__7AnimDca = .data:0x8022A6E4; // type:object size:0x20 scope:global align:4 +__vt__8AnimData = .data:0x8022A704; // type:object size:0x20 scope:global align:4 +@4597 = .data:0x8022A724; // type:object size:0xC scope:local align:4 data:string +__vt__11AnimContext = .data:0x8022A730; // type:object size:0xC scope:global align:4 +@4598 = .data:0x8022A73C; // type:object size:0xF scope:local align:4 data:string +@4599 = .data:0x8022A74C; // type:object size:0x14 scope:local align:4 +__vt__Q25Joint7MatPoly = .data:0x8022A760; // type:object size:0x10 scope:weak align:4 +@4601 = .data:0x8022A770; // type:object size:0x14 scope:local align:4 +__vt__5Joint = .data:0x8022A784; // type:object size:0x10 scope:global align:4 +@4603 = .data:0x8022A794; // type:object size:0x14 scope:local align:4 +__vt__4Mesh = .data:0x8022A7A8; // type:object size:0x10 scope:global align:4 +@4604 = .data:0x8022A7B8; // type:object size:0x9 scope:local align:4 data:string +@4605 = .data:0x8022A7C4; // type:object size:0x14 scope:local align:4 +__vt__8FaceNode = .data:0x8022A7D8; // type:object size:0x10 scope:weak align:4 +@4606 = .data:0x8022A804; // type:object size:0x9 scope:local align:4 data:string +@4607 = .data:0x8022A810; // type:object size:0x14 scope:local align:4 +__vt__8DispList = .data:0x8022A824; // type:object size:0x10 scope:global align:4 +@690 = .data:0x8022A838; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x8022A844; // type:object size:0xB scope:local align:4 data:string +@684 = .data:0x8022A850; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x8022A860; // type:label scope:local +@571 = .data:0x8022A860; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x8022A870; // type:object size:0xA scope:local align:4 data:string +@674 = .data:0x8022A87C; // type:object size:0xD scope:local align:4 data:string +@988 = .data:0x8022A88C; // type:object size:0xD scope:local align:4 data:string +@1091 = .data:0x8022A89C; // type:object size:0xC scope:local align:4 data:string +@1092 = .data:0x8022A8A8; // type:object size:0xB scope:local align:4 data:string +@1093 = .data:0x8022A8B4; // type:object size:0xE scope:local align:4 data:string +@1094 = .data:0x8022A8C4; // type:object size:0x17 scope:local align:4 data:string +@1095 = .data:0x8022A8DC; // type:object size:0xD scope:local align:4 data:string +@1096 = .data:0x8022A8EC; // type:object size:0xE scope:local align:4 data:string +@1097 = .data:0x8022A8FC; // type:object size:0xE scope:local align:4 data:string +@1098 = .data:0x8022A90C; // type:object size:0x12 scope:local align:4 data:string +@1099 = .data:0x8022A920; // type:object size:0xE scope:local align:4 data:string +@1102 = .data:0x8022A930; // type:object size:0x13 scope:local align:4 data:string +@1104 = .data:0x8022A944; // type:object size:0xB scope:local align:4 data:string +@1107 = .data:0x8022A950; // type:object size:0x9 scope:local align:4 data:string +@1108 = .data:0x8022A95C; // type:object size:0xC scope:local align:4 +@1109 = .data:0x8022A968; // type:object size:0x9 scope:local align:4 data:string +@1110 = .data:0x8022A974; // type:object size:0x14 scope:local align:4 +@1105 = .data:0x8022A988; // type:object size:0x1C scope:local align:4 +__vt__10RouteGroup = .data:0x8022A9A4; // type:object size:0x18 scope:global align:4 +__vt__8EditNode = .data:0x8022A9BC; // type:object size:0x18 scope:weak align:4 +@1115 = .data:0x8022A9D4; // type:object size:0xA scope:local align:4 data:string +@1116 = .data:0x8022A9E0; // type:object size:0x14 scope:local align:4 +__vt__9RouteLink = .data:0x8022A9F4; // type:object size:0x10 scope:weak align:4 +@1117 = .data:0x8022AA04; // type:object size:0xB scope:local align:4 data:string +@1118 = .data:0x8022AA10; // type:object size:0x14 scope:local align:4 +__vt__10RoutePoint = .data:0x8022AA24; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022AA50; // type:label scope:local +@570 = .data:0x8022AA50; // type:object size:0xE scope:local align:4 data:string +@580 = .data:0x8022AA60; // type:object size:0xA scope:local align:4 data:string +@596 = .data:0x8022AA6C; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x8022AA78; // type:object size:0x9 scope:local align:4 data:string +@615 = .data:0x8022AA84; // type:object size:0xE scope:local align:4 data:string +@999 = .data:0x8022AA94; // type:object size:0xB scope:local align:4 data:string +@1001 = .data:0x8022AAA0; // type:object size:0xB scope:local align:4 data:string +@1000 = .data:0x8022AAAC; // type:object size:0xC scope:local align:4 +__vt__10BinobjInfo = .data:0x8022AAB8; // type:object size:0x10 scope:weak align:4 +@1002 = .data:0x8022AAC8; // type:object size:0xC scope:local align:4 data:string +@1005 = .data:0x8022AAD4; // type:object size:0xC scope:local align:4 +@1003 = .data:0x8022AAE0; // type:object size:0x14 scope:local align:4 +__vt__11LFlareGroup = .data:0x8022AAF4; // type:object size:0x10 scope:weak align:4 +__vt__9StdSystem = .data:0x8022AB04; // type:object size:0x34 scope:global align:4 +@1014 = .data:0x8022AB38; // type:object size:0xB scope:local align:4 data:string +@1015 = .data:0x8022AB44; // type:object size:0xC scope:local align:4 +__vt__10TexobjInfo = .data:0x8022AB50; // type:object size:0x10 scope:weak align:4 +@1020 = .data:0x8022AB60; // type:object size:0xB scope:local align:4 data:string +@1021 = .data:0x8022AB6C; // type:object size:0xC scope:local align:4 +__vt__10ShpobjInfo = .data:0x8022AB78; // type:object size:0x10 scope:weak align:4 +@1022 = .data:0x8022ABB4; // type:object size:0xB scope:local align:4 data:string +@1023 = .data:0x8022ABC0; // type:object size:0xC scope:local align:4 +__vt__10AnmobjInfo = .data:0x8022ABCC; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x8022ABE0; // type:label scope:local +@570 = .data:0x8022ABE0; // type:object size:0x9 scope:local align:4 data:string +@747 = .data:0x8022ABEC; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x8022ABF8; // type:object size:0xC scope:local align:4 +@755 = .data:0x8022AC04; // type:object size:0x14 scope:local align:4 +@752 = .data:0x8022AC18; // type:object size:0x1C scope:local align:4 +__vt__7SRTNode = .data:0x8022AC34; // type:object size:0x30 scope:global align:4 +__vt__4Node = .data:0x8022AC80; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x8022ACB0; // type:label scope:local +@388 = .data:0x8022ACB0; // type:object size:0xF scope:local align:4 data:string +@398 = .data:0x8022ACC0; // type:object size:0xB scope:local align:4 data:string +@425 = .data:0x8022ACCC; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x8022ACD8; // type:object size:0xC scope:local align:4 +@428 = .data:0x8022ACE4; // type:object size:0x14 scope:local align:4 +@423 = .data:0x8022ACF8; // type:object size:0x1C scope:local align:4 +__vt__10Controller = .data:0x8022AD14; // type:object size:0x30 scope:global align:4 +@1239 = .data:0x8022AD48; // type:object size:0x11 scope:local align:4 data:string +...data.0 = .data:0x8022AD60; // type:label scope:local +@466 = .data:0x8022AD60; // type:object size:0xE scope:local align:4 data:string +@469 = .data:0x8022AD70; // type:object size:0x13 scope:local align:4 data:string +@470 = .data:0x8022AD84; // type:object size:0xC scope:local align:4 +@467 = .data:0x8022AD90; // type:object size:0x14 scope:local align:4 +__vt__13AtxFileStream = .data:0x8022ADA4; // type:object size:0x68 scope:global align:4 +@476 = .data:0x8022AE0C; // type:object size:0xA scope:local align:4 data:string +@477 = .data:0x8022AE18; // type:object size:0xC scope:local align:4 +__vt__9AtxStream = .data:0x8022AE24; // type:object size:0x58 scope:global align:4 +...data.0 = .data:0x8022AE80; // type:label scope:local +@570 = .data:0x8022AE80; // type:object size:0xC scope:local align:4 data:string +gxTexFmts = .data:0x8022AE8C; // type:object size:0x24 scope:local align:4 +@710 = .data:0x8022AEB0; // type:object size:0xA scope:local align:4 data:string +@709 = .data:0x8022AEBC; // type:object size:0xC scope:local align:4 +__vt__7Texture = .data:0x8022AEC8; // type:object size:0x14 scope:global align:4 +@712 = .data:0x8022AEDC; // type:object size:0x9 scope:local align:4 data:string +@713 = .data:0x8022AEE8; // type:object size:0xC scope:local align:4 +__vt__9GfxObject = .data:0x8022AF10; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8022AF20; // type:label scope:local +bigFont_data = .data:0x8022AF20; // type:object size:0x7C080 noreloc scope:local align:32 +@577 = .data:0x802A6FA0; // type:object size:0xB scope:local align:4 data:string +@907 = .data:0x802A6FAC; // type:object size:0xA scope:local align:4 data:string +@951 = .data:0x802A6FB8; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802A6FC4; // type:object size:0xC scope:local align:4 data:string +@985 = .data:0x802A6FD0; // type:object size:0x15 scope:local align:4 data:string +@986 = .data:0x802A6FE8; // type:object size:0x17 scope:local align:4 data:string +@987 = .data:0x802A7000; // type:object size:0x17 scope:local align:4 data:string +@988 = .data:0x802A7018; // type:object size:0x1C scope:local align:4 data:string +@989 = .data:0x802A7034; // type:object size:0x18 scope:local align:4 data:string +@990 = .data:0x802A704C; // type:object size:0xE scope:local align:4 data:string +@991 = .data:0x802A705C; // type:object size:0x21 scope:local align:4 data:string +@992 = .data:0x802A7080; // type:object size:0x10 scope:local align:4 data:string +@993 = .data:0x802A7090; // type:object size:0x12 scope:local align:4 data:string +@994 = .data:0x802A70A4; // type:object size:0x14 scope:local align:4 data:string +@995 = .data:0x802A70B8; // type:object size:0x16 scope:local align:4 data:string +@996 = .data:0x802A70D0; // type:object size:0x10 scope:local align:4 data:string +@997 = .data:0x802A70E0; // type:object size:0x12 scope:local align:4 data:string +@998 = .data:0x802A70F4; // type:object size:0x11 scope:local align:4 data:string +@999 = .data:0x802A7108; // type:object size:0xC scope:local align:4 data:string +@1000 = .data:0x802A7114; // type:object size:0xE scope:local align:4 data:string +e_errorMessages = .data:0x802A7124; // type:object size:0x64 scope:local align:4 +f_errMess01 = .data:0x802A7188; // type:object size:0x1B scope:local align:4 +f_errMess02 = .data:0x802A71A4; // type:object size:0x14 scope:local align:4 +@1001 = .data:0x802A71B8; // type:object size:0x15 scope:local align:4 data:string +@1002 = .data:0x802A71D0; // type:object size:0x19 scope:local align:4 data:string +@1003 = .data:0x802A71EC; // type:object size:0x17 scope:local align:4 data:string +@1004 = .data:0x802A7204; // type:object size:0x18 scope:local align:4 data:string +@1005 = .data:0x802A721C; // type:object size:0x18 scope:local align:4 data:string +@1006 = .data:0x802A7234; // type:object size:0x12 scope:local align:4 data:string +@1007 = .data:0x802A7248; // type:object size:0x18 scope:local align:4 data:string +@1008 = .data:0x802A7260; // type:object size:0x1A scope:local align:4 data:string +@1009 = .data:0x802A727C; // type:object size:0xF scope:local align:4 data:string +@1010 = .data:0x802A728C; // type:object size:0x15 scope:local align:4 data:string +@1011 = .data:0x802A72A4; // type:object size:0xB scope:local align:4 data:string +@1012 = .data:0x802A72B0; // type:object size:0x10 scope:local align:4 data:string +f_errorMessages = .data:0x802A72C0; // type:object size:0x64 scope:local align:4 +g_errMess01 = .data:0x802A7324; // type:object size:0x18 scope:local align:4 +g_errMess02 = .data:0x802A733C; // type:object size:0x18 scope:local align:4 +@1013 = .data:0x802A7354; // type:object size:0x15 scope:local align:4 data:string +@1014 = .data:0x802A736C; // type:object size:0x1C scope:local align:4 data:string +@1015 = .data:0x802A7388; // type:object size:0x17 scope:local align:4 data:string +@1016 = .data:0x802A73A0; // type:object size:0x1A scope:local align:4 data:string +@1017 = .data:0x802A73BC; // type:object size:0x12 scope:local align:4 data:string +@1018 = .data:0x802A73D0; // type:object size:0x17 scope:local align:4 data:string +@1019 = .data:0x802A73E8; // type:object size:0x1E scope:local align:4 data:string +@1020 = .data:0x802A7408; // type:object size:0x1C scope:local align:4 data:string +@1021 = .data:0x802A7424; // type:object size:0x20 scope:local align:4 data:string +@1022 = .data:0x802A7444; // type:object size:0x1B scope:local align:4 data:string +@1023 = .data:0x802A7460; // type:object size:0x15 scope:local align:4 data:string +@1024 = .data:0x802A7478; // type:object size:0x16 scope:local align:4 data:string +@1025 = .data:0x802A7490; // type:object size:0xD scope:local align:4 data:string +@1026 = .data:0x802A74A0; // type:object size:0x16 scope:local align:4 data:string +@1027 = .data:0x802A74B8; // type:object size:0xE scope:local align:4 data:string +g_errorMessages = .data:0x802A74C8; // type:object size:0x64 scope:local align:4 +s_errMess01 = .data:0x802A752C; // type:object size:0x1E scope:local align:4 +s_errMess02 = .data:0x802A754C; // type:object size:0xE scope:local align:4 +@1028 = .data:0x802A755C; // type:object size:0x14 scope:local align:4 data:string +@1029 = .data:0x802A7570; // type:object size:0x1A scope:local align:4 data:string +@1030 = .data:0x802A758C; // type:object size:0x1C scope:local align:4 data:string +@1031 = .data:0x802A75A8; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802A75C4; // type:object size:0x15 scope:local align:4 data:string +@1033 = .data:0x802A75DC; // type:object size:0x1B scope:local align:4 data:string +@1034 = .data:0x802A75F8; // type:object size:0x16 scope:local align:4 data:string +@1035 = .data:0x802A7610; // type:object size:0x11 scope:local align:4 data:string +@1036 = .data:0x802A7624; // type:object size:0x10 scope:local align:4 data:string +@1037 = .data:0x802A7634; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802A7640; // type:object size:0xF scope:local align:4 data:string +@1039 = .data:0x802A7650; // type:object size:0xF scope:local align:4 data:string +@1040 = .data:0x802A7660; // type:object size:0x11 scope:local align:4 data:string +@1041 = .data:0x802A7674; // type:object size:0xB scope:local align:4 data:string +s_errorMessages = .data:0x802A7680; // type:object size:0x64 scope:local align:4 +i_errMess01 = .data:0x802A76E4; // type:object size:0x1B scope:local align:4 +i_errMess02 = .data:0x802A7700; // type:object size:0x10 scope:local align:4 +@1042 = .data:0x802A7710; // type:object size:0x15 scope:local align:4 data:string +@1043 = .data:0x802A7728; // type:object size:0xC scope:local align:4 data:string +@1044 = .data:0x802A7734; // type:object size:0x10 scope:local align:4 data:string +@1045 = .data:0x802A7744; // type:object size:0x1F scope:local align:4 data:string +@1046 = .data:0x802A7764; // type:object size:0x1E scope:local align:4 data:string +@1047 = .data:0x802A7784; // type:object size:0xE scope:local align:4 data:string +@1048 = .data:0x802A7794; // type:object size:0x15 scope:local align:4 data:string +@1049 = .data:0x802A77AC; // type:object size:0x17 scope:local align:4 data:string +@1050 = .data:0x802A77C4; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802A77D0; // type:object size:0x11 scope:local align:4 data:string +@1052 = .data:0x802A77E4; // type:object size:0x16 scope:local align:4 data:string +@1053 = .data:0x802A77FC; // type:object size:0xB scope:local align:4 data:string +@1054 = .data:0x802A7808; // type:object size:0xC scope:local align:4 data:string +i_errorMessages = .data:0x802A7814; // type:object size:0x64 scope:local align:4 +errorList = .data:0x802A7878; // type:object size:0x78 scope:local align:4 +@1089 = .data:0x802A78F0; // type:object size:0xC scope:local align:4 +@1143 = .data:0x802A78FC; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802A7910; // type:object size:0xD scope:local align:4 data:string +@1324 = .data:0x802A7920; // type:object size:0x1E scope:local align:4 data:string +@1326 = .data:0x802A7940; // type:object size:0x17 scope:local align:4 data:string +@1325 = .data:0x802A7958; // type:object size:0xC scope:local align:4 +__vt__29Delegate1<6System,R8Graphics> = .data:0x802A7964; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x802A7970; // type:object size:0xC scope:weak align:4 +@1327 = .data:0x802A797C; // type:object size:0xA scope:local align:4 data:string +@1328 = .data:0x802A7988; // type:object size:0xC scope:local align:4 +__vt__9LogStream = .data:0x802A7994; // type:object size:0x58 scope:weak align:4 +@1349 = .data:0x802A79EC; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802A79F8; // type:object size:0x9 scope:local align:4 data:string +@1353 = .data:0x802A7A04; // type:object size:0xC scope:local align:4 +@1350 = .data:0x802A7A10; // type:object size:0x14 scope:local align:4 +__vt__11AddressNode = .data:0x802A7A24; // type:object size:0x10 scope:weak align:4 +@1356 = .data:0x802A7A34; // type:object size:0x9 scope:local align:4 data:string +@1357 = .data:0x802A7A40; // type:object size:0x14 scope:local align:4 +__vt__8DirEntry = .data:0x802A7A54; // type:object size:0x10 scope:weak align:4 +@1358 = .data:0x802A7A80; // type:object size:0xA scope:local align:4 data:string +@1360 = .data:0x802A7A8C; // type:object size:0x13 scope:local align:4 data:string +@1361 = .data:0x802A7AA0; // type:object size:0xC scope:local align:4 +@1359 = .data:0x802A7AAC; // type:object size:0x14 scope:local align:4 +__vt__9DVDStream = .data:0x802A7AC0; // type:object size:0x64 scope:weak align:4 +@1370 = .data:0x802A7B88; // type:object size:0xA scope:local align:4 data:string +@1369 = .data:0x802A7B94; // type:object size:0xC scope:local align:4 +__vt__6System = .data:0x802A7BA0; // type:object size:0x34 scope:global align:4 +@1386 = .data:0x802A7BD4; // type:object size:0xB scope:local align:4 data:string +@1387 = .data:0x802A7BE0; // type:object size:0x14 scope:local align:4 +__vt__10AramStream = .data:0x802A7BF4; // type:object size:0x64 scope:weak align:4 +...data.0 = .data:0x802A7C58; // type:label scope:local +@388 = .data:0x802A7C58; // type:object size:0x12 scope:local align:4 data:string +@398 = .data:0x802A7C6C; // type:object size:0xE scope:local align:4 data:string +padChannels = .data:0x802A7C7C; // type:object size:0x10 scope:local align:4 data:4byte +__vt__13ControllerMgr = .data:0x802A7C8C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802A7C98; // type:label scope:local +@577 = .data:0x802A7C98; // type:object size:0x10 scope:local align:4 data:string +@587 = .data:0x802A7CA8; // type:object size:0xC scope:local align:4 data:string +progressiveRenderMode = .data:0x802A7CB4; // type:object size:0x3C scope:global align:4 +localGXPal528IntDf = .data:0x802A7CF0; // type:object size:0x3C scope:global align:4 +oldTexs = .data:0x802A7D2C; // type:object size:0x20 scope:local align:4 +@953 = .data:0x802A7D4C; // type:object size:0xB scope:local align:4 data:string +@954 = .data:0x802A7D58; // type:object size:0xB scope:local align:4 data:string +@955 = .data:0x802A7D64; // type:object size:0xB scope:local align:4 data:string +@956 = .data:0x802A7D70; // type:object size:0xB scope:local align:4 data:string +@957 = .data:0x802A7D7C; // type:object size:0xB scope:local align:4 data:string +@958 = .data:0x802A7D88; // type:object size:0xB scope:local align:4 data:string +@959 = .data:0x802A7D94; // type:object size:0xB scope:local align:4 data:string +@960 = .data:0x802A7DA0; // type:object size:0xB scope:local align:4 data:string +@961 = .data:0x802A7DAC; // type:object size:0xB scope:local align:4 data:string +@962 = .data:0x802A7DB8; // type:object size:0xB scope:local align:4 data:string +@963 = .data:0x802A7DC4; // type:object size:0xC scope:local align:4 data:string +mtxTypes = .data:0x802A7DD0; // type:object size:0x2C scope:local align:4 +@964 = .data:0x802A7DFC; // type:object size:0xA scope:local align:4 data:string +@965 = .data:0x802A7E08; // type:object size:0xA scope:local align:4 data:string +@966 = .data:0x802A7E14; // type:object size:0xC scope:local align:4 data:string +@967 = .data:0x802A7E20; // type:object size:0xE scope:local align:4 data:string +@968 = .data:0x802A7E30; // type:object size:0xB scope:local align:4 data:string +@969 = .data:0x802A7E3C; // type:object size:0xB scope:local align:4 data:string +@970 = .data:0x802A7E48; // type:object size:0xB scope:local align:4 data:string +@971 = .data:0x802A7E54; // type:object size:0xB scope:local align:4 data:string +@972 = .data:0x802A7E60; // type:object size:0xB scope:local align:4 data:string +@973 = .data:0x802A7E6C; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802A7E78; // type:object size:0xB scope:local align:4 data:string +@975 = .data:0x802A7E84; // type:object size:0xB scope:local align:4 data:string +@976 = .data:0x802A7E90; // type:object size:0x10 scope:local align:4 data:string +@977 = .data:0x802A7EA0; // type:object size:0x10 scope:local align:4 data:string +@978 = .data:0x802A7EB0; // type:object size:0x10 scope:local align:4 data:string +@979 = .data:0x802A7EC0; // type:object size:0x10 scope:local align:4 data:string +@980 = .data:0x802A7ED0; // type:object size:0x10 scope:local align:4 data:string +@981 = .data:0x802A7EE0; // type:object size:0x10 scope:local align:4 data:string +@982 = .data:0x802A7EF0; // type:object size:0x10 scope:local align:4 data:string +@983 = .data:0x802A7F00; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802A7F10; // type:object size:0xD scope:local align:4 data:string +genSrcs = .data:0x802A7F20; // type:object size:0x54 scope:local align:4 +meshVCD = .data:0x802A7F74; // type:object size:0xB8 scope:local align:4 +meshVAT = .data:0x802A802C; // type:object size:0xB0 scope:local align:4 +@1320 = .data:0x802A80DC; // type:object size:0x28 scope:local align:4 data:string +@1340 = .data:0x802A8104; // type:object size:0x1C scope:local align:4 +@1955 = .data:0x802A8120; // type:object size:0x10 scope:local align:4 data:string +@1976 = .data:0x802A8130; // type:object size:0xA scope:local align:4 data:string +@1977 = .data:0x802A813C; // type:object size:0x18 scope:local align:4 data:string +sAsciiTable = .data:0x802A8154; // type:object size:0x80 scope:local align:4 +sFontData = .data:0x802A81D4; // type:object size:0x100 scope:local align:4 +@2093 = .data:0x802A82D4; // type:object size:0x9 scope:local align:4 data:string +@2094 = .data:0x802A82E0; // type:object size:0xC scope:local align:4 +@2095 = .data:0x802A82EC; // type:object size:0xA scope:local align:4 data:string +@2096 = .data:0x802A82F8; // type:object size:0x14 scope:local align:4 +@2091 = .data:0x802A830C; // type:object size:0x1C scope:local align:4 +__vt__5Shape = .data:0x802A8328; // type:object size:0x24 scope:global align:4 +@2105 = .data:0x802A834C; // type:object size:0x9 scope:local align:4 data:string +@2104 = .data:0x802A8358; // type:object size:0xC scope:local align:4 +__vt__11DGXGraphics = .data:0x802A8364; // type:object size:0xFC scope:global align:4 +@1024 = .data:0x802A8460; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802A8488; // type:label scope:local +@713 = .data:0x802A8488; // type:object size:0x11 scope:local align:4 data:string +@723 = .data:0x802A849C; // type:object size:0xD scope:local align:4 data:string +@1792 = .data:0x802A84AC; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802A84B8; // type:object size:0x9 scope:local align:4 data:string +@1796 = .data:0x802A84C4; // type:object size:0xC scope:local align:4 +@1798 = .data:0x802A84D0; // type:object size:0x14 scope:local align:4 +@1793 = .data:0x802A84E4; // type:object size:0x1C scope:local align:4 +__vt__9RigidBody = .data:0x802A8500; // type:object size:0x70 scope:global align:4 +...data.0 = .data:0x802A8570; // type:label scope:local +@697 = .data:0x802A8570; // type:object size:0xC scope:local align:4 data:string +@968 = .data:0x802A857C; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802A8588; // type:object size:0x9 scope:local align:4 data:string +@1030 = .data:0x802A8594; // type:object size:0xA scope:local align:4 data:string +@1262 = .data:0x802A85A0; // type:object size:0x9 scope:local align:4 data:string +__vt__8Animator = .data:0x802A85AC; // type:object size:0x18 scope:global align:4 +@1266 = .data:0x802A85C4; // type:object size:0xC scope:local align:4 +@1264 = .data:0x802A85D0; // type:object size:0x14 scope:local align:4 +__vt__7AnimMgr = .data:0x802A85E4; // type:object size:0x10 scope:global align:4 +@1268 = .data:0x802A85F4; // type:object size:0xD scope:local align:4 data:string +@1270 = .data:0x802A8604; // type:object size:0x9 scope:local align:4 data:string +@1269 = .data:0x802A8610; // type:object size:0xC scope:local align:4 +__vt__13Parm<6String> = .data:0x802A861C; // type:object size:0x14 scope:weak align:4 +@1271 = .data:0x802A8630; // type:object size:0xC scope:local align:4 data:string +@1272 = .data:0x802A863C; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A8648; // type:object size:0x14 scope:weak align:4 +@1273 = .data:0x802A865C; // type:object size:0xA scope:local align:4 data:string +@1274 = .data:0x802A8668; // type:object size:0xC scope:local align:4 +__vt__7Parm = .data:0x802A8674; // type:object size:0x14 scope:weak align:4 +@1275 = .data:0x802A8688; // type:object size:0x9 scope:local align:4 data:string +@1276 = .data:0x802A8694; // type:object size:0x14 scope:local align:4 +__vt__8AnimInfo = .data:0x802A86A8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A86D8; // type:label scope:local +@1799 = .data:0x802A86D8; // type:object size:0xD scope:local align:4 data:string +@1809 = .data:0x802A86E8; // type:object size:0x9 scope:local align:4 data:string +timopts = .data:0x802A86F4; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802A8700; // type:object size:0x11 scope:local align:4 data:string +@1914 = .data:0x802A8714; // type:object size:0x10 scope:local align:4 data:string +@1919 = .data:0x802A8724; // type:object size:0x10 scope:local align:4 data:string +@1924 = .data:0x802A8734; // type:object size:0x11 scope:local align:4 data:string +@1929 = .data:0x802A8748; // type:object size:0xF scope:local align:4 data:string +@1934 = .data:0x802A8758; // type:object size:0x13 scope:local align:4 data:string +@1939 = .data:0x802A876C; // type:object size:0x10 scope:local align:4 data:string +@1942 = .data:0x802A877C; // type:object size:0xC scope:local align:4 +@1946 = .data:0x802A8788; // type:object size:0xC scope:local align:4 +@1950 = .data:0x802A8794; // type:object size:0xC scope:local align:4 +@1954 = .data:0x802A87A0; // type:object size:0xC scope:local align:4 +@1958 = .data:0x802A87AC; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802A87B8; // type:object size:0xC scope:local align:4 +@1966 = .data:0x802A87C4; // type:object size:0xC scope:local align:4 +@2039 = .data:0x802A87D0; // type:object size:0xA scope:local align:4 data:string +@2049 = .data:0x802A87DC; // type:object size:0x12 scope:local align:4 data:string +@2059 = .data:0x802A87F0; // type:object size:0xC scope:local align:4 +@2067 = .data:0x802A87FC; // type:object size:0xC scope:local align:4 +@2071 = .data:0x802A8808; // type:object size:0xC scope:local align:4 +@2265 = .data:0x802A8814; // type:object size:0x16 scope:local align:4 data:string +@2266 = .data:0x802A882C; // type:object size:0x1E scope:local align:4 data:string +@2267 = .data:0x802A884C; // type:object size:0x1A scope:local align:4 data:string +@2268 = .data:0x802A8868; // type:object size:0x10 scope:local align:4 data:string +@2269 = .data:0x802A8878; // type:object size:0x10 scope:local align:4 data:string +@2270 = .data:0x802A8888; // type:object size:0x16 scope:local align:4 data:string +@2271 = .data:0x802A88A0; // type:object size:0x1E scope:local align:4 data:string +@2272 = .data:0x802A88C0; // type:object size:0x1A scope:local align:4 data:string +@2273 = .data:0x802A88DC; // type:object size:0x10 scope:local align:4 data:string +@2274 = .data:0x802A88EC; // type:object size:0x10 scope:local align:4 data:string +@2275 = .data:0x802A88FC; // type:object size:0x16 scope:local align:4 data:string +@2276 = .data:0x802A8914; // type:object size:0x1E scope:local align:4 data:string +@2277 = .data:0x802A8934; // type:object size:0x1A scope:local align:4 data:string +@2278 = .data:0x802A8950; // type:object size:0x10 scope:local align:4 data:string +@2279 = .data:0x802A8960; // type:object size:0x10 scope:local align:4 data:string +@2280 = .data:0x802A8970; // type:object size:0x16 scope:local align:4 data:string +@2281 = .data:0x802A8988; // type:object size:0x1E scope:local align:4 data:string +@2282 = .data:0x802A89A8; // type:object size:0x1A scope:local align:4 data:string +@2283 = .data:0x802A89C4; // type:object size:0x10 scope:local align:4 data:string +@2284 = .data:0x802A89D4; // type:object size:0x10 scope:local align:4 data:string +@2285 = .data:0x802A89E4; // type:object size:0x16 scope:local align:4 data:string +@2286 = .data:0x802A89FC; // type:object size:0x1E scope:local align:4 data:string +@2287 = .data:0x802A8A1C; // type:object size:0x1A scope:local align:4 data:string +@2288 = .data:0x802A8A38; // type:object size:0x10 scope:local align:4 data:string +@2289 = .data:0x802A8A48; // type:object size:0x10 scope:local align:4 data:string +@2290 = .data:0x802A8A58; // type:object size:0x10 scope:local align:4 data:string +@2315 = .data:0x802A8A68; // type:object size:0x13 scope:local align:4 data:string +@2317 = .data:0x802A8A7C; // type:object size:0xD scope:local align:4 data:string +@2318 = .data:0x802A8A8C; // type:object size:0xC scope:local align:4 data:string +@2319 = .data:0x802A8A98; // type:object size:0x18 scope:local align:4 data:string +@2320 = .data:0x802A8AB0; // type:object size:0x18 scope:local align:4 data:string +@2499 = .data:0x802A8AC8; // type:object size:0xC scope:local align:4 data:string +@2502 = .data:0x802A8AD4; // type:object size:0x9 scope:local align:4 data:string +@2503 = .data:0x802A8AE0; // type:object size:0xC scope:local align:4 +@2505 = .data:0x802A8AEC; // type:object size:0x14 scope:local align:4 +@2500 = .data:0x802A8B00; // type:object size:0x1C scope:local align:4 +__vt__11GameGenNode = .data:0x802A8B1C; // type:object size:0x30 scope:weak align:4 +@2513 = .data:0x802A8B4C; // type:object size:0xC scope:local align:4 data:string +@2514 = .data:0x802A8B58; // type:object size:0x14 scope:local align:4 +@2516 = .data:0x802A8B7C; // type:object size:0x1C scope:local align:4 +__vt__7Section = .data:0x802A8B98; // type:object size:0x34 scope:weak align:4 +@2517 = .data:0x802A8BCC; // type:object size:0x1C scope:local align:4 +__vt__11GameGenFlow = .data:0x802A8BE8; // type:object size:0x30 scope:weak align:4 +@2525 = .data:0x802A8C34; // type:object size:0xD scope:local align:4 data:string +@2527 = .data:0x802A8C44; // type:object size:0x9 scope:local align:4 data:string +@2526 = .data:0x802A8C50; // type:object size:0xC scope:local align:4 +@2528 = .data:0x802A8C70; // type:object size:0xA scope:local align:4 data:string +@2529 = .data:0x802A8C7C; // type:object size:0xC scope:local align:4 +@2530 = .data:0x802A8C9C; // type:object size:0xC scope:local align:4 data:string +@2531 = .data:0x802A8CA8; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802A8CC8; // type:object size:0x1C scope:local align:4 +__vt__8GameFlow = .data:0x802A8CE4; // type:object size:0x30 scope:global align:4 +@2533 = .data:0x802A8D14; // type:object size:0x1C scope:local align:4 data:string +@2535 = .data:0x802A8D30; // type:object size:0x13 scope:local align:4 data:string +@2534 = .data:0x802A8D44; // type:object size:0xC scope:local align:4 +__vt__27Delegate1<8GameFlow,R4Menu> = .data:0x802A8D50; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x802A8D5C; // type:object size:0xC scope:weak align:4 +@2536 = .data:0x802A8D68; // type:object size:0xE scope:local align:4 data:string +@2538 = .data:0x802A8D78; // type:object size:0xA scope:local align:4 data:string +@2539 = .data:0x802A8D84; // type:object size:0x14 scope:local align:4 +@2537 = .data:0x802A8D98; // type:object size:0x1C scope:local align:4 +__vt__13GameLoadIdler = .data:0x802A8DB4; // type:object size:0x18 scope:global align:4 +@2568 = .data:0x802A8DCC; // type:object size:0xB scope:local align:4 data:string +@2569 = .data:0x802A8DD8; // type:object size:0xA scope:local align:4 data:string +@2570 = .data:0x802A8DE4; // type:object size:0xA scope:local align:4 data:string +__vt__9LoadIdler = .data:0x802A8DF0; // type:object size:0x18 scope:weak align:4 +@2593 = .data:0x802A8E08; // type:object size:0xB scope:local align:4 data:string +@2594 = .data:0x802A8E14; // type:object size:0x14 scope:local align:4 +__vt__10MemoryCard = .data:0x802A8E28; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802A8E38; // type:label scope:local +@681 = .data:0x802A8E38; // type:object size:0x9 scope:local align:4 data:string +@691 = .data:0x802A8E44; // type:object size:0xE scope:local align:4 data:string +@785 = .data:0x802A8E54; // type:object size:0xA scope:local align:4 data:string +@791 = .data:0x802A8E60; // type:object size:0xA scope:local align:4 data:string +@793 = .data:0x802A8E6C; // type:object size:0x9 scope:local align:4 data:string +@794 = .data:0x802A8E78; // type:object size:0x9 scope:local align:4 data:string +@795 = .data:0x802A8E84; // type:object size:0x9 scope:local align:4 data:string +@796 = .data:0x802A8E90; // type:object size:0x9 scope:local align:4 data:string +@797 = .data:0x802A8E9C; // type:object size:0x9 scope:local align:4 data:string +levNames = .data:0x802A8EA8; // type:object size:0x14 scope:local align:4 +@798 = .data:0x802A8EBC; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802A8ECC; // type:object size:0xE scope:local align:4 data:string +@800 = .data:0x802A8EDC; // type:object size:0xE scope:local align:4 data:string +@801 = .data:0x802A8EEC; // type:object size:0xE scope:local align:4 data:string +@802 = .data:0x802A8EFC; // type:object size:0xE scope:local align:4 data:string +dirNames = .data:0x802A8F0C; // type:object size:0x14 scope:local align:4 +@950 = .data:0x802A8F20; // type:object size:0x13 scope:local align:4 data:string +@953 = .data:0x802A8F34; // type:object size:0x14 scope:local align:4 data:string +@954 = .data:0x802A8F48; // type:object size:0x12 scope:local align:4 data:string +@955 = .data:0x802A8F5C; // type:object size:0x12 scope:local align:4 data:string +@956 = .data:0x802A8F70; // type:object size:0x30 scope:local align:4 +@957 = .data:0x802A8FA0; // type:object size:0x11 scope:local align:4 data:string +@960 = .data:0x802A8FB4; // type:object size:0x9 scope:local align:4 data:string +@961 = .data:0x802A8FC0; // type:object size:0xC scope:local align:4 +@963 = .data:0x802A8FCC; // type:object size:0x14 scope:local align:4 +@965 = .data:0x802A8FE0; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802A8FFC; // type:object size:0x24 scope:local align:4 +__vt__16OnePlayerSection = .data:0x802A9020; // type:object size:0x34 scope:global align:4 +@973 = .data:0x802A9054; // type:object size:0xC scope:local align:4 data:string +@974 = .data:0x802A9060; // type:object size:0x14 scope:local align:4 +__vt__11GenFileInfo = .data:0x802A9074; // type:object size:0x10 scope:weak align:4 +@975 = .data:0x802A90A0; // type:object size:0xA scope:local align:4 data:string +@976 = .data:0x802A90AC; // type:object size:0x14 scope:local align:4 +__vt__9StageInfo = .data:0x802A90C0; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802A90D0; // type:label scope:local +@683 = .data:0x802A90D0; // type:object size:0xE scope:local align:4 data:string +@693 = .data:0x802A90E0; // type:object size:0xA scope:local align:4 data:string +@774 = .data:0x802A90EC; // type:object size:0x2C scope:local align:4 data:string +@1013 = .data:0x802A9118; // type:object size:0xA scope:local align:4 data:string +@1016 = .data:0x802A9124; // type:object size:0x9 scope:local align:4 data:string +@1017 = .data:0x802A9130; // type:object size:0xC scope:local align:4 +@1014 = .data:0x802A913C; // type:object size:0x14 scope:local align:4 +__vt__9PlayState = .data:0x802A9150; // type:object size:0x14 scope:global align:4 +@1019 = .data:0x802A9164; // type:object size:0x14 scope:local align:4 +__vt__9GamePrefs = .data:0x802A9178; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x802A9190; // type:label scope:local +@1013 = .data:0x802A9190; // type:object size:0xE scope:local align:4 data:string +@1023 = .data:0x802A91A0; // type:object size:0xA scope:local align:4 data:string +@1024 = .data:0x802A91AC; // type:object size:0x1B scope:local align:4 data:string +@1025 = .data:0x802A91C8; // type:object size:0x1B scope:local align:4 data:string +@1026 = .data:0x802A91E4; // type:object size:0x1B scope:local align:4 data:string +@1027 = .data:0x802A9200; // type:object size:0x1B scope:local align:4 data:string +@1028 = .data:0x802A921C; // type:object size:0x1B scope:local align:4 data:string +@1029 = .data:0x802A9238; // type:object size:0x1B scope:local align:4 data:string +@1030 = .data:0x802A9254; // type:object size:0x1B scope:local align:4 data:string +@1031 = .data:0x802A9270; // type:object size:0x1B scope:local align:4 data:string +@1032 = .data:0x802A928C; // type:object size:0x13 scope:local align:4 data:string +@1033 = .data:0x802A92A0; // type:object size:0x13 scope:local align:4 data:string +@1034 = .data:0x802A92B4; // type:object size:0x13 scope:local align:4 data:string +@1035 = .data:0x802A92C8; // type:object size:0x13 scope:local align:4 data:string +@1036 = .data:0x802A92DC; // type:object size:0x13 scope:local align:4 data:string +@1037 = .data:0x802A92F0; // type:object size:0x13 scope:local align:4 data:string +shapeList = .data:0x802A9304; // type:object size:0x50 scope:local align:4 +@1038 = .data:0x802A9354; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802A936C; // type:object size:0x18 scope:local align:4 data:string +@1040 = .data:0x802A9384; // type:object size:0x1B scope:local align:4 data:string +@1041 = .data:0x802A93A0; // type:object size:0x1B scope:local align:4 data:string +@1042 = .data:0x802A93BC; // type:object size:0x1B scope:local align:4 data:string +@1043 = .data:0x802A93D8; // type:object size:0x1B scope:local align:4 data:string +@1044 = .data:0x802A93F4; // type:object size:0x1B scope:local align:4 data:string +@1045 = .data:0x802A9410; // type:object size:0x1B scope:local align:4 data:string +@1046 = .data:0x802A942C; // type:object size:0x1B scope:local align:4 data:string +@1047 = .data:0x802A9448; // type:object size:0x1B scope:local align:4 data:string +@1048 = .data:0x802A9464; // type:object size:0x1B scope:local align:4 data:string +@1049 = .data:0x802A9480; // type:object size:0x1B scope:local align:4 data:string +@1050 = .data:0x802A949C; // type:object size:0x1D scope:local align:4 data:string +@1051 = .data:0x802A94BC; // type:object size:0x1D scope:local align:4 data:string +@1052 = .data:0x802A94DC; // type:object size:0x1D scope:local align:4 data:string +@1053 = .data:0x802A94FC; // type:object size:0x1D scope:local align:4 data:string +@1054 = .data:0x802A951C; // type:object size:0x1D scope:local align:4 data:string +@1055 = .data:0x802A953C; // type:object size:0x1D scope:local align:4 data:string +@1056 = .data:0x802A955C; // type:object size:0x1D scope:local align:4 data:string +@1057 = .data:0x802A957C; // type:object size:0x1D scope:local align:4 data:string +@1058 = .data:0x802A959C; // type:object size:0x1D scope:local align:4 data:string +@1059 = .data:0x802A95BC; // type:object size:0x1D scope:local align:4 data:string +@1060 = .data:0x802A95DC; // type:object size:0x1D scope:local align:4 data:string +@1061 = .data:0x802A95FC; // type:object size:0x1D scope:local align:4 data:string +@1062 = .data:0x802A961C; // type:object size:0x1D scope:local align:4 data:string +@1063 = .data:0x802A963C; // type:object size:0x1D scope:local align:4 data:string +@1064 = .data:0x802A965C; // type:object size:0x1D scope:local align:4 data:string +@1065 = .data:0x802A967C; // type:object size:0x1D scope:local align:4 data:string +@1066 = .data:0x802A969C; // type:object size:0x1D scope:local align:4 data:string +@1067 = .data:0x802A96BC; // type:object size:0x1D scope:local align:4 data:string +@1068 = .data:0x802A96DC; // type:object size:0x1E scope:local align:4 data:string +@1069 = .data:0x802A96FC; // type:object size:0x1E scope:local align:4 data:string +@1070 = .data:0x802A971C; // type:object size:0x1E scope:local align:4 data:string +@1071 = .data:0x802A973C; // type:object size:0x1E scope:local align:4 data:string +shapeList2 = .data:0x802A975C; // type:object size:0x90 scope:local align:4 +@1072 = .data:0x802A97EC; // type:object size:0x13 scope:local align:4 data:string +@1073 = .data:0x802A9800; // type:object size:0x1B scope:local align:4 data:string +@1074 = .data:0x802A981C; // type:object size:0x14 scope:local align:4 data:string +@1075 = .data:0x802A9830; // type:object size:0x1C scope:local align:4 data:string +@1076 = .data:0x802A984C; // type:object size:0x16 scope:local align:4 data:string +@1077 = .data:0x802A9864; // type:object size:0x1E scope:local align:4 data:string +@1078 = .data:0x802A9884; // type:object size:0x15 scope:local align:4 data:string +@1079 = .data:0x802A989C; // type:object size:0x1D scope:local align:4 data:string +@1080 = .data:0x802A98BC; // type:object size:0x19 scope:local align:4 data:string +@1081 = .data:0x802A98D8; // type:object size:0x21 scope:local align:4 data:string +@1082 = .data:0x802A98FC; // type:object size:0x15 scope:local align:4 data:string +@1083 = .data:0x802A9914; // type:object size:0x1D scope:local align:4 data:string +@1084 = .data:0x802A9934; // type:object size:0x13 scope:local align:4 data:string +@1085 = .data:0x802A9948; // type:object size:0x1B scope:local align:4 data:string +@1086 = .data:0x802A9964; // type:object size:0x12 scope:local align:4 data:string +@1087 = .data:0x802A9978; // type:object size:0x1A scope:local align:4 data:string +@1088 = .data:0x802A9994; // type:object size:0x12 scope:local align:4 data:string +@1089 = .data:0x802A99A8; // type:object size:0x1A scope:local align:4 data:string +@1090 = .data:0x802A99C4; // type:object size:0x13 scope:local align:4 data:string +@1091 = .data:0x802A99D8; // type:object size:0x1B scope:local align:4 data:string +@1092 = .data:0x802A99F4; // type:object size:0x16 scope:local align:4 data:string +@1093 = .data:0x802A9A0C; // type:object size:0x1E scope:local align:4 data:string +@1094 = .data:0x802A9A2C; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802A9A44; // type:object size:0x20 scope:local align:4 data:string +@1096 = .data:0x802A9A64; // type:object size:0x16 scope:local align:4 data:string +@1097 = .data:0x802A9A7C; // type:object size:0x1E scope:local align:4 data:string +@1098 = .data:0x802A9A9C; // type:object size:0x17 scope:local align:4 data:string +@1099 = .data:0x802A9AB4; // type:object size:0x1F scope:local align:4 data:string +@1100 = .data:0x802A9AD4; // type:object size:0x13 scope:local align:4 data:string +@1101 = .data:0x802A9AE8; // type:object size:0x1B scope:local align:4 data:string +@1102 = .data:0x802A9B04; // type:object size:0x12 scope:local align:4 data:string +@1103 = .data:0x802A9B18; // type:object size:0x1A scope:local align:4 data:string +arambundleList = .data:0x802A9B34; // type:object size:0x88 scope:local align:4 +@1187 = .data:0x802A9BBC; // type:object size:0x13 scope:local align:4 data:string +@1189 = .data:0x802A9BD0; // type:object size:0x12 scope:local align:4 data:string +@1190 = .data:0x802A9BE4; // type:object size:0x9 scope:local align:4 data:string +@1191 = .data:0x802A9BF0; // type:object size:0xB scope:local align:4 data:string +@1199 = .data:0x802A9BFC; // type:object size:0x11 scope:local align:4 data:string +@1202 = .data:0x802A9C10; // type:object size:0x9 scope:local align:4 data:string +@1203 = .data:0x802A9C1C; // type:object size:0xC scope:local align:4 +@1205 = .data:0x802A9C28; // type:object size:0x14 scope:local align:4 +@1207 = .data:0x802A9C3C; // type:object size:0x1C scope:local align:4 +@1200 = .data:0x802A9C58; // type:object size:0x24 scope:local align:4 +__vt__16GameSetupSection = .data:0x802A9C7C; // type:object size:0x34 scope:global align:4 +@1216 = .data:0x802A9CCC; // type:object size:0xA scope:local align:4 data:string +@1219 = .data:0x802A9CD8; // type:object size:0x13 scope:local align:4 data:string +@1220 = .data:0x802A9CEC; // type:object size:0xC scope:local align:4 +@1217 = .data:0x802A9CF8; // type:object size:0x14 scope:local align:4 +__vt__9RamStream = .data:0x802A9D0C; // type:object size:0x68 scope:weak align:4 +...data.0 = .data:0x802A9E10; // type:label scope:local +@1108 = .data:0x802A9E10; // type:object size:0xF scope:local align:4 data:string +@1118 = .data:0x802A9E20; // type:object size:0xB scope:local align:4 data:string +@1213 = .data:0x802A9E2C; // type:object size:0x14 scope:local align:4 data:string +@1214 = .data:0x802A9E40; // type:object size:0x13 scope:local align:4 data:string +@1215 = .data:0x802A9E54; // type:object size:0xD scope:local align:4 data:string +@1222 = .data:0x802A9E64; // type:object size:0x9 scope:local align:4 data:string +@1223 = .data:0x802A9E70; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802A9E98; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802A9EB0; // type:object size:0x14 scope:local align:4 +@1228 = .data:0x802A9EC4; // type:object size:0x1C scope:local align:4 +__vt__22CardSelectSetupSection = .data:0x802A9EE0; // type:object size:0x30 scope:weak align:4 +@1299 = .data:0x802A9F10; // type:object size:0x12 scope:local align:4 data:string +@1302 = .data:0x802A9F24; // type:object size:0x1C scope:local align:4 +@1300 = .data:0x802A9F40; // type:object size:0x24 scope:local align:4 +__vt__17CardSelectSection = .data:0x802A9F64; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802A9FD0; // type:label scope:local +@1109 = .data:0x802A9FD0; // type:object size:0xE scope:local align:4 data:string +@1119 = .data:0x802A9FE0; // type:object size:0xA scope:local align:4 data:string +@1181 = .data:0x802A9FEC; // type:object size:0xC scope:local align:4 +@1185 = .data:0x802A9FF8; // type:object size:0xC scope:local align:4 +@1202 = .data:0x802AA004; // type:object size:0xC scope:local align:4 data:4byte +@1206 = .data:0x802AA010; // type:object size:0xC scope:local align:4 data:4byte +@1422 = .data:0x802AA01C; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802AA030; // type:object size:0x12 scope:local align:4 data:string +@1425 = .data:0x802AA044; // type:object size:0xD scope:local align:4 data:string +@1426 = .data:0x802AA054; // type:object size:0xD scope:local align:4 data:string +@1427 = .data:0x802AA064; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802AA070; // type:object size:0xE scope:local align:4 data:string +@1431 = .data:0x802AA080; // type:object size:0xF scope:local align:4 data:string +@1463 = .data:0x802AA090; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802AA09C; // type:object size:0xC scope:local align:4 +@1468 = .data:0x802AA0C4; // type:object size:0x16 scope:local align:4 data:string +@1471 = .data:0x802AA0DC; // type:object size:0x14 scope:local align:4 +@1469 = .data:0x802AA0F0; // type:object size:0x1C scope:local align:4 +__vt__21MapSelectSetupSection = .data:0x802AA10C; // type:object size:0x30 scope:weak align:4 +@1569 = .data:0x802AA13C; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802AA150; // type:object size:0x1C scope:local align:4 +@1570 = .data:0x802AA16C; // type:object size:0x24 scope:local align:4 +__vt__16MapSelectSection = .data:0x802AA190; // type:object size:0x34 scope:weak align:4 +@1574 = .data:0x802AA1F8; // type:object size:0x18 scope:local align:4 data:string +@1576 = .data:0x802AA210; // type:object size:0x13 scope:local align:4 data:string +@1575 = .data:0x802AA224; // type:object size:0xC scope:local align:4 +__vt__23Delegate1<4Menu,R4Menu> = .data:0x802AA230; // type:object size:0xC scope:weak align:4 +@1577 = .data:0x802AA23C; // type:object size:0x29 scope:local align:4 data:string +@1578 = .data:0x802AA268; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21MapSelectSetupSection,R4Menu> = .data:0x802AA274; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AA290; // type:label scope:local +@1892 = .data:0x802AA290; // type:object size:0x10 scope:local align:4 data:string +@1902 = .data:0x802AA2A0; // type:object size:0xC scope:local align:4 data:string +@2034 = .data:0x802AA2AC; // type:object size:0xD scope:local align:4 data:string +@2282 = .data:0x802AA2BC; // type:object size:0x22 scope:local align:4 data:string +@2545 = .data:0x802AA2E0; // type:object size:0x1E scope:local align:4 data:string +@2546 = .data:0x802AA300; // type:object size:0x29 scope:local align:4 data:string +@2547 = .data:0x802AA32C; // type:object size:0x29 scope:local align:4 data:string +@2548 = .data:0x802AA358; // type:object size:0x2B scope:local align:4 data:string +@2549 = .data:0x802AA384; // type:object size:0x2A scope:local align:4 data:string +@3005 = .data:0x802AA3B0; // type:object size:0x21 scope:local align:4 data:string +@3008 = .data:0x802AA3D4; // type:object size:0x48 scope:local align:4 +@3104 = .data:0x802AA41C; // type:object size:0x15 scope:local align:4 data:string +@3108 = .data:0x802AA434; // type:object size:0xB scope:local align:4 data:string +@3112 = .data:0x802AA440; // type:object size:0xC scope:local align:4 data:string +@3134 = .data:0x802AA44C; // type:object size:0xC scope:local align:4 data:string +@3137 = .data:0x802AA458; // type:object size:0x9 scope:local align:4 data:string +@3138 = .data:0x802AA464; // type:object size:0xA scope:local align:4 data:string +@3161 = .data:0x802AA470; // type:object size:0x9 scope:local align:4 data:string +@3163 = .data:0x802AA47C; // type:object size:0xD scope:local align:4 data:string +@3182 = .data:0x802AA48C; // type:object size:0x9 scope:local align:4 data:string +@3189 = .data:0x802AA498; // type:object size:0xE scope:local align:4 data:string +__vt__13GameInterface = .data:0x802AA4A8; // type:object size:0x18 scope:weak align:4 +@3193 = .data:0x802AA4C0; // type:object size:0xA scope:local align:4 data:string +@3196 = .data:0x802AA4CC; // type:object size:0x9 scope:local align:4 data:string +@3197 = .data:0x802AA4D8; // type:object size:0xC scope:local align:4 +@3194 = .data:0x802AA4E4; // type:object size:0x14 scope:local align:4 +__vt__9GaugeInfo = .data:0x802AA4F8; // type:object size:0x10 scope:weak align:4 +@3200 = .data:0x802AA508; // type:object size:0x18 scope:local align:4 data:string +@3203 = .data:0x802AA520; // type:object size:0x14 scope:local align:4 +@3204 = .data:0x802AA534; // type:object size:0x10 scope:local align:4 data:string +@3205 = .data:0x802AA544; // type:object size:0x1C scope:local align:4 +@3201 = .data:0x802AA560; // type:object size:0x24 scope:local align:4 +__vt__23NewPikiGameSetupSection = .data:0x802AA584; // type:object size:0x34 scope:weak align:4 +@3378 = .data:0x802AA5B8; // type:object size:0x13 scope:local align:4 data:string +@3381 = .data:0x802AA5CC; // type:object size:0x1C scope:local align:4 +@3379 = .data:0x802AA5E8; // type:object size:0x24 scope:local align:4 +__vt__18NewPikiGameSection = .data:0x802AA60C; // type:object size:0x34 scope:weak align:4 +@3383 = .data:0x802AA674; // type:object size:0x13 scope:local align:4 data:string +@3384 = .data:0x802AA688; // type:object size:0xC scope:local align:4 +__vt__18GameMovieInterface = .data:0x802AA694; // type:object size:0x20 scope:global align:4 +@3399 = .data:0x802AA6B4; // type:object size:0x11 scope:local align:4 data:string +@3401 = .data:0x802AA6C8; // type:object size:0xA scope:local align:4 data:string +@3400 = .data:0x802AA6D4; // type:object size:0xC scope:local align:4 +__vt__16DayOverModeState = .data:0x802AA6E0; // type:object size:0x14 scope:global align:4 +@3412 = .data:0x802AA6F4; // type:object size:0x11 scope:local align:4 data:string +@3413 = .data:0x802AA708; // type:object size:0xC scope:local align:4 +__vt__16MessageModeState = .data:0x802AA714; // type:object size:0x14 scope:global align:4 +@3420 = .data:0x802AA728; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802AA73C; // type:object size:0xC scope:local align:4 +__vt__16RunningModeState = .data:0x802AA748; // type:object size:0x14 scope:global align:4 +@3422 = .data:0x802AA75C; // type:object size:0x16 scope:local align:4 data:string +@3423 = .data:0x802AA774; // type:object size:0xC scope:local align:4 +__vt__21QuittingGameModeState = .data:0x802AA780; // type:object size:0x14 scope:weak align:4 +__vt__9ModeState = .data:0x802AA794; // type:object size:0x14 scope:weak align:4 +@3429 = .data:0x802AA7A8; // type:object size:0x13 scope:local align:4 data:string +@3430 = .data:0x802AA7BC; // type:object size:0xC scope:local align:4 +__vt__18IntroGameModeState = .data:0x802AA7C8; // type:object size:0x14 scope:global align:4 +__vt__15BaseGameSection = .data:0x802AA7DC; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AA830; // type:label scope:local +@1181 = .data:0x802AA830; // type:object size:0xE scope:local align:4 data:string +@1191 = .data:0x802AA840; // type:object size:0xA scope:local align:4 data:string +@1301 = .data:0x802AA84C; // type:object size:0x13 scope:local align:4 data:string +@1310 = .data:0x802AA860; // type:object size:0x9 scope:local align:4 data:string +@1311 = .data:0x802AA86C; // type:object size:0xC scope:local align:4 +@1315 = .data:0x802AA894; // type:object size:0xF scope:local align:4 data:string +@1317 = .data:0x802AA8A4; // type:object size:0xA scope:local align:4 data:string +@1316 = .data:0x802AA8B0; // type:object size:0xC scope:local align:4 +__vt__14IntroModeState = .data:0x802AA8BC; // type:object size:0x14 scope:weak align:4 +@1327 = .data:0x802AA8D0; // type:object size:0x12 scope:local align:4 data:string +@1328 = .data:0x802AA8E4; // type:object size:0xC scope:local align:4 +__vt__17QuittingModeState = .data:0x802AA8F0; // type:object size:0x14 scope:weak align:4 +@1336 = .data:0x802AA918; // type:object size:0x16 scope:local align:4 data:string +@1339 = .data:0x802AA930; // type:object size:0x14 scope:local align:4 +@1340 = .data:0x802AA944; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802AA954; // type:object size:0x1C scope:local align:4 +@1337 = .data:0x802AA970; // type:object size:0x24 scope:local align:4 +__vt__21IntroGameSetupSection = .data:0x802AA994; // type:object size:0x34 scope:weak align:4 +@1419 = .data:0x802AA9C8; // type:object size:0x11 scope:local align:4 data:string +@1422 = .data:0x802AA9DC; // type:object size:0x1C scope:local align:4 +@1420 = .data:0x802AA9F8; // type:object size:0x24 scope:local align:4 +__vt__16IntroGameSection = .data:0x802AAA1C; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802AAA88; // type:label scope:local +@684 = .data:0x802AAA88; // type:object size:0xD scope:local align:4 data:string +@694 = .data:0x802AAA98; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802AAAA4; // type:object size:0x10 scope:local align:4 data:string +@718 = .data:0x802AAAB4; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802AAAC0; // type:object size:0xC scope:local align:4 +@721 = .data:0x802AAACC; // type:object size:0x14 scope:local align:4 +@723 = .data:0x802AAAE0; // type:object size:0x1C scope:local align:4 +@716 = .data:0x802AAAFC; // type:object size:0x24 scope:local align:4 +__vt__15GameExitSection = .data:0x802AAB20; // type:object size:0x34 scope:global align:4 +@831 = .data:0x802AABA8; // type:object size:0x13 scope:local align:4 data:string +...data.0 = .data:0x802AABC0; // type:label scope:local +@810 = .data:0x802AABC0; // type:object size:0x11 scope:local align:4 data:string +@820 = .data:0x802AABD4; // type:object size:0xD scope:local align:4 data:string +@827 = .data:0x802AABE4; // type:object size:0xC scope:local align:4 data:string +@828 = .data:0x802AABF0; // type:object size:0x12 scope:local align:4 data:string +@1050 = .data:0x802AAC04; // type:object size:0xA scope:local align:4 data:string +@1130 = .data:0x802AAC10; // type:object size:0x9 scope:local align:4 data:string +@1131 = .data:0x802AAC1C; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802AAC44; // type:object size:0xD scope:local align:4 data:string +@1138 = .data:0x802AAC54; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802AAC68; // type:object size:0xA scope:local align:4 data:string +@1140 = .data:0x802AAC74; // type:object size:0x1C scope:local align:4 +@1141 = .data:0x802AAC90; // type:object size:0xB scope:local align:4 data:string +@1142 = .data:0x802AAC9C; // type:object size:0x24 scope:local align:4 +@1136 = .data:0x802AACC0; // type:object size:0x2C scope:local align:4 +__vt__12DynObjBridge = .data:0x802AACEC; // type:object size:0x78 scope:weak align:4 +@1235 = .data:0x802AAD64; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802AAD78; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802AAD84; // type:object size:0xC scope:local align:4 +@1240 = .data:0x802AAD90; // type:object size:0xA scope:local align:4 data:string +@1241 = .data:0x802AAD9C; // type:object size:0x14 scope:local align:4 +@1236 = .data:0x802AADB0; // type:object size:0x1C scope:local align:4 +__vt__18GenObjectMapObject = .data:0x802AADCC; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802AAE08; // type:label scope:local +@841 = .data:0x802AAE08; // type:object size:0x84 scope:local align:4 +@953 = .data:0x802AAE8C; // type:object size:0x9 scope:local align:4 data:string +@954 = .data:0x802AAE98; // type:object size:0xC scope:local align:4 +@956 = .data:0x802AAEA4; // type:object size:0x14 scope:local align:4 +@951 = .data:0x802AAEB8; // type:object size:0x1C scope:local align:4 +__vt__4Menu = .data:0x802AAED4; // type:object size:0x54 scope:global align:4 +...data.0 = .data:0x802AAF48; // type:label scope:local +@570 = .data:0x802AAF48; // type:object size:0xF scope:local align:4 data:string +@654 = .data:0x802AAF58; // type:object size:0x9 scope:local align:4 data:string +__vt__8BaseParm = .data:0x802AAF64; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802AAF78; // type:label scope:local +@677 = .data:0x802AAF78; // type:object size:0xD scope:local align:4 data:string +@687 = .data:0x802AAF88; // type:object size:0x9 scope:local align:4 data:string +@800 = .data:0x802AAF94; // type:object size:0x12 scope:local align:4 data:string +@801 = .data:0x802AAFA8; // type:object size:0x9 scope:local align:4 data:string +@803 = .data:0x802AAFB4; // type:object size:0x9 scope:local align:4 data:string +@805 = .data:0x802AAFC0; // type:object size:0x1E scope:local align:4 data:string +@806 = .data:0x802AAFE0; // type:object size:0xE scope:local align:4 data:string +@809 = .data:0x802AAFF0; // type:object size:0x14 scope:local align:4 data:string +@860 = .data:0x802AB004; // type:object size:0xE scope:local align:4 data:string +@866 = .data:0x802AB014; // type:object size:0x11 scope:local align:4 data:string +@869 = .data:0x802AB028; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802AB034; // type:object size:0xC scope:local align:4 +@867 = .data:0x802AB040; // type:object size:0x14 scope:local align:4 +__vt__16AtxCommandStream = .data:0x802AB054; // type:object size:0x58 scope:weak align:4 +@875 = .data:0x802AB0AC; // type:object size:0x9 scope:local align:4 data:string +@876 = .data:0x802AB0B8; // type:object size:0xC scope:local align:4 +@878 = .data:0x802AB0C4; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802AB0D8; // type:object size:0x1C scope:local align:4 +@873 = .data:0x802AB0F4; // type:object size:0x24 scope:local align:4 +__vt__7GameApp = .data:0x802AB118; // type:object size:0x4C scope:weak align:4 +@892 = .data:0x802AB164; // type:object size:0xC scope:local align:4 data:string +@893 = .data:0x802AB170; // type:object size:0x2C scope:local align:4 +__vt__11PlugPikiApp = .data:0x802AB19C; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802AB1E8; // type:label scope:local +@982 = .data:0x802AB1E8; // type:object size:0xB scope:local align:4 data:string +@1307 = .data:0x802AB1F4; // type:object size:0xC scope:local align:4 +@1311 = .data:0x802AB200; // type:object size:0xC scope:local align:4 +@1475 = .data:0x802AB20C; // type:object size:0x10 scope:local align:4 data:string +@1476 = .data:0x802AB21C; // type:object size:0x9 scope:local align:4 data:string +@1479 = .data:0x802AB228; // type:object size:0xF scope:local align:4 data:string +@1481 = .data:0x802AB238; // type:object size:0xD scope:local align:4 data:string +@1482 = .data:0x802AB248; // type:object size:0x14 scope:local align:4 data:string +@1483 = .data:0x802AB25C; // type:object size:0x14 scope:local align:4 data:string +@1486 = .data:0x802AB270; // type:object size:0xB scope:local align:4 data:string +@1487 = .data:0x802AB27C; // type:object size:0x15 scope:local align:4 data:string +@1493 = .data:0x802AB294; // type:object size:0xA scope:local align:4 data:string +@1507 = .data:0x802AB2A0; // type:object size:0x9 scope:local align:4 data:string +@1508 = .data:0x802AB2AC; // type:object size:0xC scope:local align:4 +@1512 = .data:0x802AB2D4; // type:object size:0x18 scope:local align:4 data:string +@1514 = .data:0x802AB2EC; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802AB300; // type:object size:0xC scope:local align:4 +@1515 = .data:0x802AB318; // type:object size:0x25 scope:local align:4 data:string +@1516 = .data:0x802AB340; // type:object size:0xC scope:local align:4 +__vt__37Delegate1<17TitleSetupSection,R4Menu> = .data:0x802AB34C; // type:object size:0xC scope:weak align:4 +@1517 = .data:0x802AB364; // type:object size:0xE scope:local align:4 data:string +@1522 = .data:0x802AB38C; // type:object size:0x12 scope:local align:4 data:string +@1525 = .data:0x802AB3A0; // type:object size:0x14 scope:local align:4 +@1523 = .data:0x802AB3B4; // type:object size:0x1C scope:local align:4 +__vt__17TitleSetupSection = .data:0x802AB3D0; // type:object size:0x30 scope:weak align:4 +@1795 = .data:0x802AB400; // type:object size:0xE scope:local align:4 data:string +@1798 = .data:0x802AB410; // type:object size:0x1C scope:local align:4 +@1796 = .data:0x802AB42C; // type:object size:0x24 scope:local align:4 +__vt__13TitlesSection = .data:0x802AB450; // type:object size:0x34 scope:global align:4 +@1799 = .data:0x802AB484; // type:object size:0x15 scope:local align:4 data:string +@1800 = .data:0x802AB49C; // type:object size:0xC scope:local align:4 +__vt__20TitlesMovieInterface = .data:0x802AB4A8; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802AB4C0; // type:label scope:local +@853 = .data:0x802AB4C0; // type:object size:0xC scope:local align:4 data:string +@927 = .data:0x802AB4CC; // type:object size:0x11 scope:local align:4 data:string +@929 = .data:0x802AB4E0; // type:object size:0x10 scope:local align:4 data:string +@930 = .data:0x802AB4F0; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802AB500; // type:object size:0x9 scope:local align:4 data:string +@938 = .data:0x802AB50C; // type:object size:0xC scope:local align:4 +@942 = .data:0x802AB534; // type:object size:0x14 scope:local align:4 data:string +@945 = .data:0x802AB548; // type:object size:0x14 scope:local align:4 +@943 = .data:0x802AB55C; // type:object size:0x1C scope:local align:4 +__vt__19NinLogoSetupSection = .data:0x802AB578; // type:object size:0x30 scope:weak align:4 +@1009 = .data:0x802AB5A8; // type:object size:0xF scope:local align:4 data:string +@1012 = .data:0x802AB5B8; // type:object size:0x1C scope:local align:4 +@1010 = .data:0x802AB5D4; // type:object size:0x24 scope:local align:4 +__vt__14NinLogoSection = .data:0x802AB5F8; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AB630; // type:label scope:local +@1269 = .data:0x802AB630; // type:object size:0xB scope:local align:4 data:string +@2553 = .data:0x802AB63C; // type:object size:0xB scope:local align:4 data:string +@2554 = .data:0x802AB648; // type:object size:0x9 scope:local align:4 data:string +@2556 = .data:0x802AB654; // type:object size:0xB scope:local align:4 data:string +@2558 = .data:0x802AB660; // type:object size:0xA scope:local align:4 data:string +@2559 = .data:0x802AB66C; // type:object size:0x9 scope:local align:4 data:string +@2560 = .data:0x802AB678; // type:object size:0x9 scope:local align:4 data:string +@2885 = .data:0x802AB684; // type:object size:0xB scope:local align:4 data:string +@2886 = .data:0x802AB690; // type:object size:0xA scope:local align:4 data:string +@2888 = .data:0x802AB69C; // type:object size:0xC scope:local align:4 data:string +@2889 = .data:0x802AB6A8; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802AB6B4; // type:object size:0xD scope:local align:4 data:string +@2893 = .data:0x802AB6C4; // type:object size:0x11 scope:local align:4 data:string +@2907 = .data:0x802AB6D8; // type:object size:0x9 scope:local align:4 data:string +@2998 = .data:0x802AB6E4; // type:object size:0xA scope:local align:4 data:string +@3002 = .data:0x802AB6F0; // type:object size:0x14 scope:local align:4 data:string +@3038 = .data:0x802AB704; // type:object size:0xA scope:local align:4 data:string +@4595 = .data:0x802AB710; // type:object size:0xD scope:local align:4 data:string +@4598 = .data:0x802AB720; // type:object size:0x9 scope:local align:4 data:string +@4599 = .data:0x802AB72C; // type:object size:0xC scope:local align:4 +@4596 = .data:0x802AB738; // type:object size:0x14 scope:local align:4 +__vt__12ShadowCaster = .data:0x802AB74C; // type:object size:0x10 scope:weak align:4 +@4602 = .data:0x802AB75C; // type:object size:0xD scope:local align:4 data:string +@4605 = .data:0x802AB76C; // type:object size:0x14 scope:local align:4 +@4603 = .data:0x802AB780; // type:object size:0x1C scope:local align:4 +__vt__12DynSimulator = .data:0x802AB79C; // type:object size:0x30 scope:weak align:4 +@4611 = .data:0x802AB7CC; // type:object size:0x12 scope:local align:4 data:string +@4613 = .data:0x802AB7E0; // type:object size:0x10 scope:local align:4 data:string +@4612 = .data:0x802AB7F0; // type:object size:0xC scope:local align:4 +__vt__17MapProjMatHandler = .data:0x802AB7FC; // type:object size:0x10 scope:weak align:4 +@4616 = .data:0x802AB80C; // type:object size:0x12 scope:local align:4 data:string +@4617 = .data:0x802AB820; // type:object size:0xC scope:local align:4 +__vt__17MapShadMatHandler = .data:0x802AB82C; // type:object size:0x10 scope:weak align:4 +@4619 = .data:0x802AB83C; // type:object size:0xF scope:local align:4 data:string +@4621 = .data:0x802AB84C; // type:object size:0xA scope:local align:4 data:string +@4622 = .data:0x802AB858; // type:object size:0x1C scope:local align:4 +@4623 = .data:0x802AB874; // type:object size:0xB scope:local align:4 data:string +@4624 = .data:0x802AB880; // type:object size:0x24 scope:local align:4 +@4620 = .data:0x802AB8A4; // type:object size:0x2C scope:local align:4 +__vt__14DynObjPushable = .data:0x802AB8D0; // type:object size:0x78 scope:global align:4 +__vt__10DynObjBody = .data:0x802AB948; // type:object size:0x78 scope:global align:4 +@4695 = .data:0x802AB9C0; // type:object size:0xD scope:local align:4 data:string +@4696 = .data:0x802AB9D0; // type:object size:0x2C scope:local align:4 +__vt__12DynObjSeeSaw = .data:0x802AB9FC; // type:object size:0x78 scope:global align:4 +@4697 = .data:0x802ABA74; // type:object size:0xF scope:local align:4 data:string +@4699 = .data:0x802ABA84; // type:object size:0xE scope:local align:4 data:string +@4700 = .data:0x802ABA94; // type:object size:0x1C scope:local align:4 +@4701 = .data:0x802ABAB0; // type:object size:0xD scope:local align:4 data:string +@4702 = .data:0x802ABAC0; // type:object size:0x24 scope:local align:4 +@4698 = .data:0x802ABAE4; // type:object size:0x2C scope:local align:4 +__vt__14DynCollObjBody = .data:0x802ABB10; // type:object size:0x48 scope:global align:4 +@4706 = .data:0x802ABB58; // type:object size:0xD scope:local align:4 data:string +@4707 = .data:0x802ABB68; // type:object size:0x2C scope:local align:4 +__vt__12DynMapObject = .data:0x802ABB94; // type:object size:0x48 scope:global align:4 +@4709 = .data:0x802ABBF8; // type:object size:0xE scope:local align:4 data:string +@4710 = .data:0x802ABC08; // type:object size:0x2C scope:local align:4 +__vt__13MapObjectPart = .data:0x802ABC34; // type:object size:0x48 scope:weak align:4 +__vt__13DynCollObject = .data:0x802ABC7C; // type:object size:0x40 scope:weak align:4 +@4718 = .data:0x802ABCBC; // type:object size:0xF scope:local align:4 data:string +@4720 = .data:0x802ABCCC; // type:object size:0x9 scope:local align:4 data:string +@4719 = .data:0x802ABCD8; // type:object size:0xC scope:local align:4 +__vt__14MapObjAnimator = .data:0x802ABCE4; // type:object size:0x18 scope:global align:4 +__vt__12DynCollShape = .data:0x802ABCFC; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802ABD48; // type:label scope:local +@1229 = .data:0x802ABD48; // type:object size:0xB scope:local align:4 data:string +@1239 = .data:0x802ABD54; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802ABD60; // type:object size:0xC scope:local align:4 +@1247 = .data:0x802ABD6C; // type:object size:0xC scope:local align:4 +@1251 = .data:0x802ABD78; // type:object size:0xC scope:local align:4 +@1255 = .data:0x802ABD84; // type:object size:0xC scope:local align:4 +@1259 = .data:0x802ABD90; // type:object size:0xC scope:local align:4 +@1263 = .data:0x802ABD9C; // type:object size:0xC scope:local align:4 +@1267 = .data:0x802ABDA8; // type:object size:0xC scope:local align:4 +@1271 = .data:0x802ABDB4; // type:object size:0xC scope:local align:4 +@1275 = .data:0x802ABDC0; // type:object size:0xC scope:local align:4 +@1308 = .data:0x802ABDCC; // type:object size:0xA scope:local align:4 data:string +@1341 = .data:0x802ABDD8; // type:object size:0xC scope:local align:4 +@1345 = .data:0x802ABDE4; // type:object size:0xC scope:local align:4 +@1349 = .data:0x802ABDF0; // type:object size:0xC scope:local align:4 +@1353 = .data:0x802ABDFC; // type:object size:0xC scope:local align:4 +@1357 = .data:0x802ABE08; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802ABE14; // type:object size:0xC scope:local align:4 +@1365 = .data:0x802ABE20; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802ABE2C; // type:object size:0xC scope:local align:4 +@1373 = .data:0x802ABE38; // type:object size:0xC scope:local align:4 +@1377 = .data:0x802ABE44; // type:object size:0xC scope:local align:4 +@1381 = .data:0x802ABE50; // type:object size:0xC scope:local align:4 +@1385 = .data:0x802ABE5C; // type:object size:0xC scope:local align:4 +@1389 = .data:0x802ABE68; // type:object size:0xC scope:local align:4 +@1456 = .data:0x802ABE74; // type:object size:0xC scope:local align:4 +@1461 = .data:0x802ABE80; // type:object size:0xC scope:local align:4 +@1465 = .data:0x802ABE8C; // type:object size:0xC scope:local align:4 +@1469 = .data:0x802ABE98; // type:object size:0xC scope:local align:4 +@1473 = .data:0x802ABEA4; // type:object size:0xC scope:local align:4 +@1477 = .data:0x802ABEB0; // type:object size:0xC scope:local align:4 +@1481 = .data:0x802ABEBC; // type:object size:0xC scope:local align:4 +@1517 = .data:0x802ABEC8; // type:object size:0x9 scope:local align:4 data:string +lightTypeNames = .data:0x802ABED4; // type:object size:0x10 scope:local align:4 +lightConv = .data:0x802ABEE4; // type:object size:0x10 scope:local align:4 +@1521 = .data:0x802ABEF4; // type:object size:0xF scope:local align:4 data:string +@1524 = .data:0x802ABF04; // type:object size:0xC scope:local align:4 +@1530 = .data:0x802ABF10; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802ABF1C; // type:object size:0xC scope:local align:4 +@1538 = .data:0x802ABF28; // type:object size:0xC scope:local align:4 +@1542 = .data:0x802ABF34; // type:object size:0xC scope:local align:4 +@1616 = .data:0x802ABF40; // type:object size:0xB scope:local align:4 data:string +@1617 = .data:0x802ABF4C; // type:object size:0x9 scope:local align:4 data:string +@1618 = .data:0x802ABF58; // type:object size:0xA scope:local align:4 data:string +@1675 = .data:0x802ABF64; // type:object size:0xC scope:local align:4 +@1802 = .data:0x802ABF70; // type:object size:0x9 scope:local align:4 data:string +@1803 = .data:0x802ABF7C; // type:object size:0x9 scope:local align:4 data:string +@1804 = .data:0x802ABF88; // type:object size:0x9 scope:local align:4 data:string +@1807 = .data:0x802ABF94; // type:object size:0xC scope:local align:4 +@1847 = .data:0x802ABFA0; // type:object size:0xC scope:local align:4 +@1851 = .data:0x802ABFAC; // type:object size:0xC scope:local align:4 +@1855 = .data:0x802ABFB8; // type:object size:0xC scope:local align:4 +@1859 = .data:0x802ABFC4; // type:object size:0xC scope:local align:4 +@1863 = .data:0x802ABFD0; // type:object size:0xC scope:local align:4 +@1867 = .data:0x802ABFDC; // type:object size:0xC scope:local align:4 +@1878 = .data:0x802ABFE8; // type:object size:0xC scope:local align:4 +@1882 = .data:0x802ABFF4; // type:object size:0xC scope:local align:4 +@2256 = .data:0x802AC000; // type:object size:0xF scope:local align:4 data:string +@2257 = .data:0x802AC010; // type:object size:0xE scope:local align:4 data:string +@2258 = .data:0x802AC020; // type:object size:0xE scope:local align:4 data:string +@2259 = .data:0x802AC030; // type:object size:0x11 scope:local align:4 data:string +@2260 = .data:0x802AC044; // type:object size:0xF scope:local align:4 data:string +@2262 = .data:0x802AC054; // type:object size:0xB scope:local align:4 data:string +@2263 = .data:0x802AC060; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802AC06C; // type:object size:0x9 scope:local align:4 data:string +@2265 = .data:0x802AC078; // type:object size:0x9 scope:local align:4 data:string +@2266 = .data:0x802AC084; // type:object size:0x9 scope:local align:4 data:string +@2267 = .data:0x802AC090; // type:object size:0x9 scope:local align:4 data:string +@2268 = .data:0x802AC09C; // type:object size:0x9 scope:local align:4 data:string +@2269 = .data:0x802AC0A8; // type:object size:0x1B scope:local align:4 data:string +@2270 = .data:0x802AC0C4; // type:object size:0x11 scope:local align:4 data:string +@2271 = .data:0x802AC0D8; // type:object size:0x1B scope:local align:4 data:string +@2272 = .data:0x802AC0F4; // type:object size:0x1B scope:local align:4 data:string +@2274 = .data:0x802AC110; // type:object size:0xA scope:local align:4 data:string +@2473 = .data:0x802AC11C; // type:object size:0xB scope:local align:4 data:string +@2474 = .data:0x802AC128; // type:object size:0xC scope:local align:4 data:string +@2475 = .data:0x802AC134; // type:object size:0xB scope:local align:4 data:string +settingnames$2810 = .data:0x802AC140; // type:object size:0x14 scope:local align:4 +lightnames$2816 = .data:0x802AC154; // type:object size:0x1C scope:local align:4 +@2963 = .data:0x802AC170; // type:object size:0xC scope:local align:4 data:string +@2964 = .data:0x802AC17C; // type:object size:0xC scope:local align:4 data:string +@2972 = .data:0x802AC188; // type:object size:0x9 scope:local align:4 data:string +@2974 = .data:0x802AC194; // type:object size:0x1B scope:local align:4 data:string +@2976 = .data:0x802AC1B0; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802AC1C4; // type:object size:0xC scope:local align:4 +__vt__26Delegate1<7FogMenu,R4Menu> = .data:0x802AC1D0; // type:object size:0xC scope:weak align:4 +@2980 = .data:0x802AC1DC; // type:object size:0x9 scope:local align:4 data:string +@2981 = .data:0x802AC1E8; // type:object size:0xC scope:local align:4 +@2983 = .data:0x802AC1F4; // type:object size:0x14 scope:local align:4 +@2985 = .data:0x802AC208; // type:object size:0x1C scope:local align:4 +@2978 = .data:0x802AC224; // type:object size:0x24 scope:local align:4 +__vt__7FogMenu = .data:0x802AC248; // type:object size:0x54 scope:weak align:4 +@2993 = .data:0x802AC29C; // type:object size:0xA scope:local align:4 data:string +@2994 = .data:0x802AC2A8; // type:object size:0x24 scope:local align:4 +__vt__9LightMenu = .data:0x802AC2CC; // type:object size:0x54 scope:weak align:4 +@2995 = .data:0x802AC320; // type:object size:0xB scope:local align:4 data:string +@2996 = .data:0x802AC32C; // type:object size:0x24 scope:local align:4 +__vt__10DaySetMenu = .data:0x802AC350; // type:object size:0x54 scope:weak align:4 +@2997 = .data:0x802AC3A4; // type:object size:0x1A scope:local align:4 data:string +@2998 = .data:0x802AC3C0; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6DayMgr,R4Menu> = .data:0x802AC3CC; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802AC3D8; // type:object size:0x20 scope:local align:4 data:string +@3000 = .data:0x802AC3F8; // type:object size:0xC scope:local align:4 +__vt__32Delegate1<12PositionMenu,R4Menu> = .data:0x802AC404; // type:object size:0xC scope:weak align:4 +@3001 = .data:0x802AC410; // type:object size:0xD scope:local align:4 data:string +@3002 = .data:0x802AC420; // type:object size:0x24 scope:local align:4 +__vt__12PositionMenu = .data:0x802AC444; // type:object size:0x54 scope:weak align:4 +@3003 = .data:0x802AC498; // type:object size:0x1E scope:local align:4 data:string +@3004 = .data:0x802AC4B8; // type:object size:0xC scope:local align:4 +__vt__30Delegate1<10ColourMenu,R4Menu> = .data:0x802AC4C4; // type:object size:0xC scope:weak align:4 +@3005 = .data:0x802AC4D0; // type:object size:0x18 scope:local align:4 data:string +@3006 = .data:0x802AC4E8; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802AC500; // type:object size:0xB scope:local align:4 data:string +@3008 = .data:0x802AC50C; // type:object size:0x24 scope:local align:4 +__vt__10ColourMenu = .data:0x802AC530; // type:object size:0x54 scope:weak align:4 +@3009 = .data:0x802AC584; // type:object size:0x1D scope:local align:4 data:string +@3010 = .data:0x802AC5A4; // type:object size:0xC scope:local align:4 +__vt__28Delegate1<9LightMenu,R4Menu> = .data:0x802AC5B0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802AC5C8; // type:label scope:local +@1343 = .data:0x802AC5C8; // type:object size:0xF scope:local align:4 data:string +@1353 = .data:0x802AC5D8; // type:object size:0xB scope:local align:4 data:string +@1553 = .data:0x802AC5E4; // type:object size:0x9 scope:local align:4 data:string +@1555 = .data:0x802AC5F0; // type:object size:0x9 scope:local align:4 data:string +@1810 = .data:0x802AC5FC; // type:object size:0x16 scope:local align:4 data:string +onionColours$1858 = .data:0x802AC614; // type:object size:0x38 scope:local align:4 +@2163 = .data:0x802AC64C; // type:object size:0x80 scope:local align:4 +@2515 = .data:0x802AC6CC; // type:object size:0x13 scope:local align:4 data:string +@2516 = .data:0x802AC6E0; // type:object size:0x13 scope:local align:4 data:string +@2517 = .data:0x802AC6F4; // type:object size:0x13 scope:local align:4 data:string +@2518 = .data:0x802AC708; // type:object size:0x1E scope:local align:4 data:string +@2531 = .data:0x802AC728; // type:object size:0xE scope:local align:4 data:string +@2534 = .data:0x802AC738; // type:object size:0x9 scope:local align:4 data:string +@2535 = .data:0x802AC744; // type:object size:0xC scope:local align:4 +@2532 = .data:0x802AC750; // type:object size:0x14 scope:local align:4 +__vt__13ActorInstance = .data:0x802AC764; // type:object size:0x10 scope:weak align:4 +@2538 = .data:0x802AC774; // type:object size:0x9 scope:local align:4 data:string +@2539 = .data:0x802AC780; // type:object size:0x14 scope:local align:4 +__vt__8SceneCut = .data:0x802AC794; // type:object size:0x10 scope:weak align:4 +@2540 = .data:0x802AC7A4; // type:object size:0x10 scope:local align:4 data:string +@2541 = .data:0x802AC7B4; // type:object size:0x14 scope:local align:4 +__vt__15CineShapeObject = .data:0x802AC7C8; // type:object size:0x10 scope:weak align:4 +@2542 = .data:0x802AC7D8; // type:object size:0xA scope:local align:4 data:string +@2543 = .data:0x802AC7E4; // type:object size:0x14 scope:local align:4 +__vt__9SceneData = .data:0x802AC7F8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AC828; // type:label scope:local +@571 = .data:0x802AC828; // type:object size:0xE scope:local align:4 data:string +@581 = .data:0x802AC838; // type:object size:0xA scope:local align:4 data:string +@816 = .data:0x802AC844; // type:object size:0x9 scope:local align:4 data:string +@817 = .data:0x802AC850; // type:object size:0xC scope:local align:4 +@819 = .data:0x802AC85C; // type:object size:0x14 scope:local align:4 +@814 = .data:0x802AC870; // type:object size:0x1C scope:local align:4 +__vt__9LightPool = .data:0x802AC88C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802AC8E0; // type:label scope:local +@1027 = .data:0x802AC8E0; // type:object size:0xF scope:local align:4 data:string +@1037 = .data:0x802AC8F0; // type:object size:0xB scope:local align:4 data:string +basecardname = .data:0x802AC8FC; // type:object size:0x10 scope:local align:4 data:string +p_icon_palette = .data:0x802AC920; // type:object size:0x200 scope:local align:32 +p_icon_data = .data:0x802ACB20; // type:object size:0x400 scope:local align:32 +o_icon_palette = .data:0x802ACF20; // type:object size:0x200 scope:local align:32 +o_icon_data = .data:0x802AD120; // type:object size:0x400 scope:local align:32 +p_card_v_palette = .data:0x802AD520; // type:object size:0x200 scope:local align:32 +p_card_v_data = .data:0x802AD720; // type:object size:0xC00 scope:local align:32 +icon_datas = .data:0x802AE320; // type:object size:0x20 scope:local align:4 +@1210 = .data:0x802AE340; // type:object size:0x9 scope:local align:4 data:string +@1211 = .data:0x802AE34C; // type:object size:0xD scope:local align:4 data:string +@1212 = .data:0x802AE35C; // type:object size:0x10 scope:local align:4 data:string +@1213 = .data:0x802AE36C; // type:object size:0x11 scope:local align:4 data:string +@1214 = .data:0x802AE380; // type:object size:0x11 scope:local align:4 data:string +@1215 = .data:0x802AE394; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802AE3AC; // type:object size:0xE scope:local align:4 data:string +@1217 = .data:0x802AE3BC; // type:object size:0xD scope:local align:4 data:string +@1218 = .data:0x802AE3CC; // type:object size:0x13 scope:local align:4 data:string +errCodes = .data:0x802AE3E0; // type:object size:0x24 scope:local align:4 +@1580 = .data:0x802AE404; // type:object size:0xA scope:local align:4 data:string +@1701 = .data:0x802AE410; // type:object size:0x14 scope:local align:4 data:string +@2024 = .data:0x802AE424; // type:object size:0xA scope:local align:4 data:string +@2025 = .data:0x802AE430; // type:object size:0xA scope:local align:4 data:string +@2026 = .data:0x802AE43C; // type:object size:0xB scope:local align:4 data:string +@2027 = .data:0x802AE448; // type:object size:0xB scope:local align:4 data:string +@2028 = .data:0x802AE454; // type:object size:0xB scope:local align:4 data:string +@2029 = .data:0x802AE460; // type:object size:0xB scope:local align:4 data:string +sectionNames$2022 = .data:0x802AE46C; // type:object size:0x1C scope:local align:4 +@2256 = .data:0x802AE488; // type:object size:0x9 scope:local align:4 data:string +@2257 = .data:0x802AE494; // type:object size:0xC scope:local align:4 +@2261 = .data:0x802AE4BC; // type:object size:0xA scope:local align:4 data:string +@2264 = .data:0x802AE4C8; // type:object size:0x13 scope:local align:4 data:string +@2265 = .data:0x802AE4DC; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802AE4E8; // type:object size:0x14 scope:local align:4 +...data.0 = .data:0x802AE5C8; // type:label scope:local +@1345 = .data:0x802AE5C8; // type:object size:0x10 scope:local align:4 data:string +@1355 = .data:0x802AE5D8; // type:object size:0xC scope:local align:4 data:string +@1367 = .data:0x802AE5E4; // type:object size:0x13 scope:local align:4 data:string +@1368 = .data:0x802AE5F8; // type:object size:0x13 scope:local align:4 data:string +@1369 = .data:0x802AE60C; // type:object size:0x13 scope:local align:4 data:string +@1370 = .data:0x802AE620; // type:object size:0x13 scope:local align:4 data:string +@1371 = .data:0x802AE634; // type:object size:0x13 scope:local align:4 data:string +@1372 = .data:0x802AE648; // type:object size:0x13 scope:local align:4 data:string +@1373 = .data:0x802AE65C; // type:object size:0x13 scope:local align:4 data:string +@1374 = .data:0x802AE670; // type:object size:0x13 scope:local align:4 data:string +@1375 = .data:0x802AE684; // type:object size:0x13 scope:local align:4 data:string +@1376 = .data:0x802AE698; // type:object size:0x13 scope:local align:4 data:string +@1377 = .data:0x802AE6AC; // type:object size:0x13 scope:local align:4 data:string +@1378 = .data:0x802AE6C0; // type:object size:0x13 scope:local align:4 data:string +@1379 = .data:0x802AE6D4; // type:object size:0x13 scope:local align:4 data:string +@1380 = .data:0x802AE6E8; // type:object size:0x13 scope:local align:4 data:string +@1381 = .data:0x802AE6FC; // type:object size:0x13 scope:local align:4 data:string +@1382 = .data:0x802AE710; // type:object size:0x13 scope:local align:4 data:string +@1383 = .data:0x802AE724; // type:object size:0x13 scope:local align:4 data:string +@1384 = .data:0x802AE738; // type:object size:0x13 scope:local align:4 data:string +@1385 = .data:0x802AE74C; // type:object size:0x13 scope:local align:4 data:string +@1386 = .data:0x802AE760; // type:object size:0x13 scope:local align:4 data:string +@1387 = .data:0x802AE774; // type:object size:0x13 scope:local align:4 data:string +@1388 = .data:0x802AE788; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802AE79C; // type:object size:0x13 scope:local align:4 data:string +@1390 = .data:0x802AE7B0; // type:object size:0x13 scope:local align:4 data:string +@1391 = .data:0x802AE7C4; // type:object size:0x13 scope:local align:4 data:string +@1392 = .data:0x802AE7D8; // type:object size:0x13 scope:local align:4 data:string +@1393 = .data:0x802AE7EC; // type:object size:0x13 scope:local align:4 data:string +@1394 = .data:0x802AE800; // type:object size:0x13 scope:local align:4 data:string +@1395 = .data:0x802AE814; // type:object size:0x13 scope:local align:4 data:string +@1396 = .data:0x802AE828; // type:object size:0x13 scope:local align:4 data:string +@1397 = .data:0x802AE83C; // type:object size:0x13 scope:local align:4 data:string +@1398 = .data:0x802AE850; // type:object size:0x13 scope:local align:4 data:string +@1399 = .data:0x802AE864; // type:object size:0x13 scope:local align:4 data:string +@1400 = .data:0x802AE878; // type:object size:0x13 scope:local align:4 data:string +@1401 = .data:0x802AE88C; // type:object size:0x13 scope:local align:4 data:string +@1402 = .data:0x802AE8A0; // type:object size:0x13 scope:local align:4 data:string +@1403 = .data:0x802AE8B4; // type:object size:0x13 scope:local align:4 data:string +@1404 = .data:0x802AE8C8; // type:object size:0x13 scope:local align:4 data:string +@1405 = .data:0x802AE8DC; // type:object size:0x13 scope:local align:4 data:string +@1406 = .data:0x802AE8F0; // type:object size:0x13 scope:local align:4 data:string +@1407 = .data:0x802AE904; // type:object size:0x13 scope:local align:4 data:string +@1408 = .data:0x802AE918; // type:object size:0x13 scope:local align:4 data:string +@1409 = .data:0x802AE92C; // type:object size:0x13 scope:local align:4 data:string +@1410 = .data:0x802AE940; // type:object size:0x13 scope:local align:4 data:string +@1411 = .data:0x802AE954; // type:object size:0x13 scope:local align:4 data:string +@1412 = .data:0x802AE968; // type:object size:0x13 scope:local align:4 data:string +@1413 = .data:0x802AE97C; // type:object size:0x13 scope:local align:4 data:string +@1414 = .data:0x802AE990; // type:object size:0x13 scope:local align:4 data:string +@1415 = .data:0x802AE9A4; // type:object size:0x13 scope:local align:4 data:string +@1416 = .data:0x802AE9B8; // type:object size:0x13 scope:local align:4 data:string +@1417 = .data:0x802AE9CC; // type:object size:0x13 scope:local align:4 data:string +@1418 = .data:0x802AE9E0; // type:object size:0x13 scope:local align:4 data:string +@1419 = .data:0x802AE9F4; // type:object size:0x13 scope:local align:4 data:string +@1420 = .data:0x802AEA08; // type:object size:0x13 scope:local align:4 data:string +@1421 = .data:0x802AEA1C; // type:object size:0x13 scope:local align:4 data:string +@1422 = .data:0x802AEA30; // type:object size:0x13 scope:local align:4 data:string +@1423 = .data:0x802AEA44; // type:object size:0x13 scope:local align:4 data:string +@1424 = .data:0x802AEA58; // type:object size:0x13 scope:local align:4 data:string +@1425 = .data:0x802AEA6C; // type:object size:0x13 scope:local align:4 data:string +@1426 = .data:0x802AEA80; // type:object size:0x13 scope:local align:4 data:string +@1427 = .data:0x802AEA94; // type:object size:0x13 scope:local align:4 data:string +@1428 = .data:0x802AEAA8; // type:object size:0x14 scope:local align:4 data:string +@1429 = .data:0x802AEABC; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802AEAD0; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802AEAE4; // type:object size:0x13 scope:local align:4 data:string +@1432 = .data:0x802AEAF8; // type:object size:0x13 scope:local align:4 data:string +@1433 = .data:0x802AEB0C; // type:object size:0x13 scope:local align:4 data:string +@1434 = .data:0x802AEB20; // type:object size:0x13 scope:local align:4 data:string +@1435 = .data:0x802AEB34; // type:object size:0x13 scope:local align:4 data:string +@1436 = .data:0x802AEB48; // type:object size:0x13 scope:local align:4 data:string +@1437 = .data:0x802AEB5C; // type:object size:0x13 scope:local align:4 data:string +@1438 = .data:0x802AEB70; // type:object size:0x13 scope:local align:4 data:string +@1439 = .data:0x802AEB84; // type:object size:0x13 scope:local align:4 data:string +@1440 = .data:0x802AEB98; // type:object size:0x13 scope:local align:4 data:string +@1441 = .data:0x802AEBAC; // type:object size:0x13 scope:local align:4 data:string +@1442 = .data:0x802AEBC0; // type:object size:0x13 scope:local align:4 data:string +@1443 = .data:0x802AEBD4; // type:object size:0x13 scope:local align:4 data:string +@1444 = .data:0x802AEBE8; // type:object size:0x13 scope:local align:4 data:string +@1445 = .data:0x802AEBFC; // type:object size:0x13 scope:local align:4 data:string +@1446 = .data:0x802AEC10; // type:object size:0x14 scope:local align:4 data:string +@1447 = .data:0x802AEC24; // type:object size:0x14 scope:local align:4 data:string +@1448 = .data:0x802AEC38; // type:object size:0x13 scope:local align:4 data:string +@1449 = .data:0x802AEC4C; // type:object size:0x13 scope:local align:4 data:string +@1450 = .data:0x802AEC60; // type:object size:0x13 scope:local align:4 data:string +@1451 = .data:0x802AEC74; // type:object size:0x13 scope:local align:4 data:string +@1452 = .data:0x802AEC88; // type:object size:0x13 scope:local align:4 data:string +movieTitles = .data:0x802AEC9C; // type:object size:0x2B8 scope:local align:4 data:4byte +@1499 = .data:0x802AEF54; // type:object size:0x9 scope:local align:4 data:string +@1500 = .data:0x802AEF60; // type:object size:0xA scope:local align:4 data:string +@1501 = .data:0x802AEF6C; // type:object size:0xA scope:local align:4 data:string +movie04table = .data:0x802AEF78; // type:object size:0x14 scope:local align:4 +movie09table = .data:0x802AEF8C; // type:object size:0x14 scope:local align:4 +movie17table = .data:0x802AEFA0; // type:object size:0x14 scope:local align:4 +movie20table = .data:0x802AEFB4; // type:object size:0x14 scope:local align:4 +movie18table = .data:0x802AEFC8; // type:object size:0x14 scope:local align:4 +movie28table = .data:0x802AEFDC; // type:object size:0x14 scope:local align:4 +movie32table = .data:0x802AEFF0; // type:object size:0x14 scope:local align:4 +movie40table = .data:0x802AF004; // type:object size:0x14 scope:local align:4 +movie44table = .data:0x802AF018; // type:object size:0x14 scope:local align:4 +movie47table = .data:0x802AF02C; // type:object size:0x14 scope:local align:4 +movie52table = .data:0x802AF040; // type:object size:0x14 scope:local align:4 +movie56table = .data:0x802AF054; // type:object size:0x14 scope:local align:4 +movie60table = .data:0x802AF068; // type:object size:0x14 scope:local align:4 +movie64table = .data:0x802AF07C; // type:object size:0x14 scope:local align:4 +movie69table = .data:0x802AF090; // type:object size:0x14 scope:local align:4 +transTable = .data:0x802AF0A4; // type:object size:0x90 scope:local align:4 data:4byte +@1836 = .data:0x802AF134; // type:object size:0xA scope:local align:4 data:string +@1839 = .data:0x802AF140; // type:object size:0x9 scope:local align:4 data:string +@1840 = .data:0x802AF14C; // type:object size:0xC scope:local align:4 +@1837 = .data:0x802AF158; // type:object size:0x14 scope:local align:4 +__vt__9MovieInfo = .data:0x802AF16C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AF198; // type:label scope:local +@685 = .data:0x802AF198; // type:object size:0xE scope:local align:4 data:string +@695 = .data:0x802AF1A8; // type:object size:0xA scope:local align:4 data:string +@811 = .data:0x802AF1B4; // type:object size:0x18 scope:local align:4 data:string +@812 = .data:0x802AF1CC; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802AF1E4; // type:object size:0x18 scope:local align:4 data:string +@814 = .data:0x802AF1FC; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802AF214; // type:object size:0x16 scope:local align:4 data:string +@816 = .data:0x802AF22C; // type:object size:0x18 scope:local align:4 data:string +movieNames$localstatic0$__ct__21MovSampleSetupSectionFv = .data:0x802AF244; // type:object size:0x18 scope:weak align:4 +@857 = .data:0x802AF25C; // type:object size:0x13 scope:local align:4 data:string +@859 = .data:0x802AF270; // type:object size:0x12 scope:local align:4 data:string +@860 = .data:0x802AF284; // type:object size:0xD scope:local align:4 data:string +@867 = .data:0x802AF294; // type:object size:0x9 scope:local align:4 data:string +@868 = .data:0x802AF2A0; // type:object size:0xC scope:local align:4 +@872 = .data:0x802AF2C8; // type:object size:0x16 scope:local align:4 data:string +@875 = .data:0x802AF2E0; // type:object size:0x14 scope:local align:4 +@873 = .data:0x802AF2F4; // type:object size:0x1C scope:local align:4 +__vt__21MovSampleSetupSection = .data:0x802AF310; // type:object size:0x30 scope:weak align:4 +@948 = .data:0x802AF340; // type:object size:0x11 scope:local align:4 data:string +@951 = .data:0x802AF354; // type:object size:0x1C scope:local align:4 +@949 = .data:0x802AF370; // type:object size:0x24 scope:local align:4 +__vt__16MovSampleSection = .data:0x802AF394; // type:object size:0x34 scope:global align:4 +...data.0 = .data:0x802AF3C8; // type:label scope:local +@1227 = .data:0x802AF3C8; // type:object size:0xA scope:local align:4 data:string +@1237 = .data:0x802AF3D4; // type:object size:0x10 scope:local align:4 data:string +@1623 = .data:0x802AF3E4; // type:object size:0xB scope:local align:4 data:string +@1625 = .data:0x802AF3F0; // type:object size:0x17 scope:local align:4 data:string +@1624 = .data:0x802AF408; // type:object size:0xC scope:local align:4 +__vt__10ClothFader = .data:0x802AF414; // type:object size:0x20 scope:weak align:4 +@2245 = .data:0x802AF434; // type:object size:0xC scope:local align:4 data:string +@2246 = .data:0x802AF440; // type:object size:0xC scope:local align:4 +__vt__11SimpleFader = .data:0x802AF44C; // type:object size:0x20 scope:weak align:4 +@2273 = .data:0x802AF46C; // type:object size:0xD scope:local align:4 data:string +@2274 = .data:0x802AF47C; // type:object size:0xC scope:local align:4 +__vt__12DefaultFader = .data:0x802AF488; // type:object size:0x20 scope:weak align:4 +__vt__Q215AttentionCamera5Fader = .data:0x802AF4A8; // type:object size:0x20 scope:weak align:4 +...data.0 = .data:0x802AF4C8; // type:label scope:local +@625 = .data:0x802AF4C8; // type:object size:0xE scope:local align:4 data:string +@635 = .data:0x802AF4D8; // type:object size:0xA scope:local align:4 data:string +@651 = .data:0x802AF4E4; // type:object size:0x9 scope:local align:4 data:string +@699 = .data:0x802AF4F0; // type:object size:0x15 scope:local align:4 data:string +@702 = .data:0x802AF508; // type:object size:0xC scope:local align:4 +@700 = .data:0x802AF514; // type:object size:0x14 scope:local align:4 +__vt__Q29RadarInfo9PartsInfo = .data:0x802AF528; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802AF558; // type:label scope:local +@1578 = .data:0x802AF558; // type:object size:0x13 scope:local align:4 data:string +@1588 = .data:0x802AF56C; // type:object size:0xF scope:local align:4 data:string +@2077 = .data:0x802AF57C; // type:object size:0xE scope:local align:4 data:string +@2079 = .data:0x802AF58C; // type:object size:0xC scope:local align:4 data:string +@2078 = .data:0x802AF598; // type:object size:0xC scope:local align:4 +__vt__13InteractFlute = .data:0x802AF5A4; // type:object size:0x2C scope:global align:4 +@2088 = .data:0x802AF5D0; // type:object size:0xE scope:local align:4 data:string +@2089 = .data:0x802AF5E0; // type:object size:0xC scope:local align:4 +__vt__13InteractPress = .data:0x802AF5EC; // type:object size:0x2C scope:global align:4 +@2090 = .data:0x802AF618; // type:object size:0xD scope:local align:4 data:string +@2091 = .data:0x802AF628; // type:object size:0xC scope:local align:4 +__vt__12InteractKill = .data:0x802AF634; // type:object size:0x2C scope:global align:4 +@2093 = .data:0x802AF660; // type:object size:0x10 scope:local align:4 data:string +@2094 = .data:0x802AF670; // type:object size:0xC scope:local align:4 +__vt__15InteractSwallow = .data:0x802AF67C; // type:object size:0x2C scope:global align:4 +@2095 = .data:0x802AF6A8; // type:object size:0xF scope:local align:4 data:string +@2096 = .data:0x802AF6B8; // type:object size:0xC scope:local align:4 +__vt__14InteractAttack = .data:0x802AF6C4; // type:object size:0x2C scope:global align:4 +@2097 = .data:0x802AF6F0; // type:object size:0x14 scope:local align:4 data:string +@2098 = .data:0x802AF704; // type:object size:0xC scope:local align:4 +__vt__19InteractSlimeAttack = .data:0x802AF710; // type:object size:0x2C scope:global align:4 +@2099 = .data:0x802AF73C; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802AF74C; // type:object size:0xC scope:local align:4 +__vt__13InteractFlick = .data:0x802AF758; // type:object size:0x2C scope:global align:4 +@2101 = .data:0x802AF784; // type:object size:0xD scope:local align:4 data:string +@2102 = .data:0x802AF794; // type:object size:0xC scope:local align:4 +__vt__12InteractWind = .data:0x802AF7A0; // type:object size:0x2C scope:global align:4 +@2103 = .data:0x802AF7CC; // type:object size:0xD scope:local align:4 data:string +@2104 = .data:0x802AF7DC; // type:object size:0xC scope:local align:4 +__vt__12InteractFire = .data:0x802AF7E8; // type:object size:0x2C scope:global align:4 +@2105 = .data:0x802AF814; // type:object size:0xF scope:local align:4 data:string +@2106 = .data:0x802AF824; // type:object size:0xC scope:local align:4 +__vt__14InteractBubble = .data:0x802AF830; // type:object size:0x2C scope:global align:4 +__vt__11Interaction = .data:0x802AF85C; // type:object size:0x2C scope:weak align:4 +@2107 = .data:0x802AF888; // type:object size:0xE scope:local align:4 data:string +@2108 = .data:0x802AF898; // type:object size:0xC scope:local align:4 +__vt__13InteractSpore = .data:0x802AF8A4; // type:object size:0x2C scope:global align:4 +@2109 = .data:0x802AF8D0; // type:object size:0x14 scope:local align:4 data:string +@2110 = .data:0x802AF8E4; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeHappa = .data:0x802AF8F0; // type:object size:0x2C scope:global align:4 +@2111 = .data:0x802AF91C; // type:object size:0x14 scope:local align:4 data:string +@2112 = .data:0x802AF930; // type:object size:0xC scope:local align:4 +__vt__19InteractChangeColor = .data:0x802AF93C; // type:object size:0x2C scope:global align:4 +@2113 = .data:0x802AF968; // type:object size:0x12 scope:local align:4 data:string +@2114 = .data:0x802AF97C; // type:object size:0xC scope:local align:4 +__vt__17InteractThrowAway = .data:0x802AF988; // type:object size:0x2C scope:global align:4 +@2115 = .data:0x802AF9B4; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802AF9C4; // type:object size:0xC scope:local align:4 +__vt__12InteractBury = .data:0x802AF9D0; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AFA00; // type:label scope:local +@625 = .data:0x802AFA00; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802AFA14; // type:object size:0xD scope:local align:4 data:string +@676 = .data:0x802AFA24; // type:object size:0x10 scope:local align:4 data:string +@678 = .data:0x802AFA34; // type:object size:0xC scope:local align:4 data:string +@677 = .data:0x802AFA40; // type:object size:0xC scope:local align:4 +__vt__15InteractRelease = .data:0x802AFA4C; // type:object size:0x2C scope:global align:4 +@687 = .data:0x802AFA78; // type:object size:0xD scope:local align:4 data:string +@688 = .data:0x802AFA88; // type:object size:0xC scope:local align:4 +__vt__12InteractGrab = .data:0x802AFA94; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AFAC0; // type:label scope:local +@1133 = .data:0x802AFAC0; // type:object size:0x10 scope:local align:4 data:string +@1143 = .data:0x802AFAD0; // type:object size:0xC scope:local align:4 data:string +@1164 = .data:0x802AFADC; // type:object size:0xD scope:local align:4 data:string +@1166 = .data:0x802AFAEC; // type:object size:0xC scope:local align:4 data:string +@1165 = .data:0x802AFAF8; // type:object size:0xC scope:local align:4 +__vt__12InteractWarn = .data:0x802AFB04; // type:object size:0x2C scope:global align:4 +@1175 = .data:0x802AFB30; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802AFB40; // type:object size:0xC scope:local align:4 +__vt__12InteractTalk = .data:0x802AFB4C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AFB78; // type:label scope:local +@1358 = .data:0x802AFB78; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802AFB8C; // type:object size:0x10 scope:local align:4 data:string +@1470 = .data:0x802AFB9C; // type:object size:0x10 scope:local align:4 data:string +@1472 = .data:0x802AFBAC; // type:object size:0xC scope:local align:4 data:string +@1471 = .data:0x802AFBB8; // type:object size:0xC scope:local align:4 +__vt__15InteractPullout = .data:0x802AFBC4; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802AFBF0; // type:label scope:local +@716 = .data:0x802AFBF0; // type:object size:0xE scope:local align:4 data:string +@726 = .data:0x802AFC00; // type:object size:0x9 scope:local align:4 data:string +@789 = .data:0x802AFC0C; // type:object size:0xD scope:local align:4 data:string +@791 = .data:0x802AFC1C; // type:object size:0x15 scope:local align:4 data:string +@792 = .data:0x802AFC34; // type:object size:0x9 scope:local align:4 data:string +@793 = .data:0x802AFC40; // type:object size:0xC scope:local align:4 +@790 = .data:0x802AFC4C; // type:object size:0x14 scope:local align:4 +__vt__12SAIUserEvent = .data:0x802AFC60; // type:object size:0x38 scope:global align:4 +@794 = .data:0x802AFC98; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802AFCA8; // type:object size:0x14 scope:local align:4 +__vt__14SAIGroundEvent = .data:0x802AFCBC; // type:object size:0x38 scope:global align:4 +@796 = .data:0x802AFCF4; // type:object size:0x10 scope:local align:4 data:string +@797 = .data:0x802AFD04; // type:object size:0x14 scope:local align:4 +__vt__15SAICollideEvent = .data:0x802AFD18; // type:object size:0x38 scope:global align:4 +@798 = .data:0x802AFD50; // type:object size:0xF scope:local align:4 data:string +@799 = .data:0x802AFD60; // type:object size:0x14 scope:local align:4 +__vt__14SAIBounceEvent = .data:0x802AFD74; // type:object size:0x38 scope:global align:4 +@800 = .data:0x802AFDAC; // type:object size:0x16 scope:local align:4 data:string +@801 = .data:0x802AFDC4; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionLoopEndEvent = .data:0x802AFDD8; // type:object size:0x38 scope:global align:4 +@802 = .data:0x802AFE10; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802AFE28; // type:object size:0x14 scope:local align:4 +__vt__23SAIMotionLoopStartEvent = .data:0x802AFE3C; // type:object size:0x38 scope:global align:4 +@804 = .data:0x802AFE74; // type:object size:0x16 scope:local align:4 data:string +@805 = .data:0x802AFE8C; // type:object size:0x14 scope:local align:4 +__vt__21SAIMotionAction0Event = .data:0x802AFEA0; // type:object size:0x38 scope:global align:4 +@806 = .data:0x802AFED8; // type:object size:0x13 scope:local align:4 data:string +@807 = .data:0x802AFEEC; // type:object size:0x14 scope:local align:4 +__vt__18SAIMotionDoneEvent = .data:0x802AFF00; // type:object size:0x38 scope:global align:4 +__vt__8SAIEvent = .data:0x802AFF38; // type:object size:0x38 scope:weak align:4 +__vt__22Receiver<10AICreature> = .data:0x802AFF70; // type:object size:0x38 scope:weak align:4 +@844 = .data:0x802AFFA8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802AFFD8; // type:label scope:local +@868 = .data:0x802AFFD8; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802AFFE8; // type:object size:0x9 scope:local align:4 data:string +@988 = .data:0x802AFFF4; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802B0000; // type:object size:0x9 scope:local align:4 data:string +@1066 = .data:0x802B000C; // type:object size:0xD scope:local align:4 data:string +@1067 = .data:0x802B001C; // type:object size:0xD scope:local align:4 data:string +@1068 = .data:0x802B002C; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802B0038; // type:object size:0x2C scope:local align:4 +@1148 = .data:0x802B0064; // type:object size:0x9 scope:local align:4 data:string +@1150 = .data:0x802B0070; // type:object size:0x15 scope:local align:4 data:string +@1151 = .data:0x802B0088; // type:object size:0x13 scope:local align:4 data:string +@1152 = .data:0x802B009C; // type:object size:0xC scope:local align:4 +@1149 = .data:0x802B00A8; // type:object size:0x14 scope:local align:4 +__vt__8SAIState = .data:0x802B00BC; // type:object size:0x50 scope:global align:4 +__vt__20AState<10AICreature> = .data:0x802B010C; // type:object size:0x50 scope:weak align:4 +@1153 = .data:0x802B0194; // type:object size:0xD scope:local align:4 data:string +@1156 = .data:0x802B01A4; // type:object size:0xC scope:local align:4 +@1154 = .data:0x802B01B0; // type:object size:0x14 scope:local align:4 +__vt__12SAICondition = .data:0x802B01C4; // type:object size:0x14 scope:weak align:4 +@1159 = .data:0x802B01D8; // type:object size:0x14 scope:local align:4 +__vt__8SAIArrow = .data:0x802B01EC; // type:object size:0x10 scope:weak align:4 +@1160 = .data:0x802B0218; // type:object size:0x9 scope:local align:4 data:string +@1162 = .data:0x802B0224; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802B0240; // type:object size:0xC scope:local align:4 +__vt__8SimpleAI = .data:0x802B024C; // type:object size:0x18 scope:global align:4 +__vt__26StateMachine<10AICreature> = .data:0x802B0264; // type:object size:0x18 scope:weak align:4 +@1163 = .data:0x802B027C; // type:object size:0xB scope:local align:4 data:string +@1165 = .data:0x802B0288; // type:object size:0x14 scope:local align:4 data:string +@1166 = .data:0x802B029C; // type:object size:0xC scope:local align:4 data:string +@1167 = .data:0x802B02A8; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802B02B8; // type:object size:0x9 scope:local align:4 data:string +@1169 = .data:0x802B02C4; // type:object size:0x14 scope:local align:4 +@1164 = .data:0x802B02D8; // type:object size:0x24 scope:local align:4 +__vt__10AICreature = .data:0x802B02FC; // type:object size:0x158 scope:global align:4 +__vt__19PaniAnimKeyListener = .data:0x802B0454; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802B0460; // type:label scope:local +@1064 = .data:0x802B0460; // type:object size:0x11 scope:local align:4 data:string +@1074 = .data:0x802B0474; // type:object size:0xA scope:local align:4 data:string +@2864 = .data:0x802B0480; // type:object size:0xD scope:local align:4 data:string +@2866 = .data:0x802B0490; // type:object size:0xD scope:local align:4 data:string +@2865 = .data:0x802B04A0; // type:object size:0xC scope:local align:4 +__vt__12WingArranger = .data:0x802B04AC; // type:object size:0x10 scope:global align:4 +@2867 = .data:0x802B04BC; // type:object size:0xD scope:local align:4 data:string +@2868 = .data:0x802B04CC; // type:object size:0xC scope:local align:4 +__vt__12LineArranger = .data:0x802B04D8; // type:object size:0x10 scope:global align:4 +@2869 = .data:0x802B04E8; // type:object size:0x10 scope:local align:4 data:string +@2870 = .data:0x802B04F8; // type:object size:0xC scope:local align:4 +__vt__15PyramidArranger = .data:0x802B0504; // type:object size:0x10 scope:global align:4 +@2871 = .data:0x802B0514; // type:object size:0xF scope:local align:4 data:string +@2872 = .data:0x802B0524; // type:object size:0xC scope:local align:4 +__vt__14CircleArranger = .data:0x802B0530; // type:object size:0x10 scope:global align:4 +@2873 = .data:0x802B0540; // type:object size:0xC scope:local align:4 data:string +__vt__11Traversable = .data:0x802B054C; // type:object size:0x18 scope:weak align:4 +@2874 = .data:0x802B0564; // type:object size:0xD scope:local align:4 data:string +@2875 = .data:0x802B0574; // type:object size:0xC scope:local align:4 +__vt__12FormationMgr = .data:0x802B0580; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802B0598; // type:label scope:local +@676 = .data:0x802B0598; // type:object size:0x11 scope:local align:4 data:string +@686 = .data:0x802B05AC; // type:object size:0xC scope:local align:4 data:string +@689 = .data:0x802B05B8; // type:object size:0x19 scope:local align:4 data:string +@690 = .data:0x802B05D4; // type:object size:0x19 scope:local align:4 data:string +@691 = .data:0x802B05F0; // type:object size:0x16 scope:local align:4 data:string +@692 = .data:0x802B0608; // type:object size:0x15 scope:local align:4 data:string +@693 = .data:0x802B0620; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802B0638; // type:label scope:local +@1581 = .data:0x802B0638; // type:object size:0x10 scope:local align:4 data:string +@1591 = .data:0x802B0648; // type:object size:0xC scope:local align:4 data:string +partsInfo = .data:0x802B0654; // type:object size:0x28 scope:global align:4 +@2020 = .data:0x802B067C; // type:object size:0x13 scope:local align:4 +@2602 = .data:0x802B0690; // type:object size:0x16 scope:local align:4 data:string +@2604 = .data:0x802B06A8; // type:object size:0x14 scope:local align:4 data:string +@2603 = .data:0x802B06BC; // type:object size:0xC scope:local align:4 +__vt__Q211PlayerState8UfoParts = .data:0x802B06C8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802B06E0; // type:label scope:local +@1085 = .data:0x802B06E0; // type:object size:0xD scope:local align:4 data:string +@1095 = .data:0x802B06F0; // type:object size:0x9 scope:local align:4 data:string +@1104 = .data:0x802B06FC; // type:object size:0x9 scope:local align:4 data:string +@1216 = .data:0x802B0708; // type:object size:0x17 scope:local align:4 +@1217 = .data:0x802B0720; // type:object size:0x17 scope:local align:4 +@1218 = .data:0x802B0738; // type:object size:0x17 scope:local align:4 +@1219 = .data:0x802B0750; // type:object size:0x13 scope:local align:4 +@1220 = .data:0x802B0764; // type:object size:0xD scope:local align:4 +@1221 = .data:0x802B0774; // type:object size:0xD scope:local align:4 +@1222 = .data:0x802B0784; // type:object size:0xD scope:local align:4 +@1223 = .data:0x802B0794; // type:object size:0x17 scope:local align:4 +@1224 = .data:0x802B07AC; // type:object size:0xB scope:local align:4 +@1225 = .data:0x802B07B8; // type:object size:0x1D scope:local align:4 +@1226 = .data:0x802B07D8; // type:object size:0x13 scope:local align:4 +@1227 = .data:0x802B07EC; // type:object size:0x13 scope:local align:4 +@1228 = .data:0x802B0800; // type:object size:0x15 scope:local align:4 +@1229 = .data:0x802B0818; // type:object size:0x13 scope:local align:4 +@1230 = .data:0x802B082C; // type:object size:0xF scope:local align:4 +@1231 = .data:0x802B083C; // type:object size:0xF scope:local align:4 +@1232 = .data:0x802B084C; // type:object size:0x15 scope:local align:4 +@1233 = .data:0x802B0864; // type:object size:0x17 scope:local align:4 +@1234 = .data:0x802B087C; // type:object size:0xD scope:local align:4 +@1235 = .data:0x802B088C; // type:object size:0xE scope:local align:4 data:string +@1236 = .data:0x802B089C; // type:object size:0x13 scope:local align:4 data:string +@1237 = .data:0x802B08B0; // type:object size:0x1A scope:local align:4 data:string +@1238 = .data:0x802B08CC; // type:object size:0x18 scope:local align:4 data:string +@1239 = .data:0x802B08E4; // type:object size:0x16 scope:local align:4 data:string +@1240 = .data:0x802B08FC; // type:object size:0x1B scope:local align:4 data:string +@1241 = .data:0x802B0918; // type:object size:0x16 scope:local align:4 data:string +@1242 = .data:0x802B0930; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802B0940; // type:object size:0x10 scope:local align:4 data:string +@1244 = .data:0x802B0950; // type:object size:0xA scope:local align:4 data:string +@1245 = .data:0x802B095C; // type:object size:0xE scope:local align:4 data:string +@1247 = .data:0x802B096C; // type:object size:0xB scope:local align:4 data:string +@1248 = .data:0x802B0978; // type:object size:0xA scope:local align:4 data:string +@1355 = .data:0x802B0984; // type:object size:0xC scope:local align:4 data:string +@1357 = .data:0x802B0990; // type:object size:0x9 scope:local align:4 data:string +@1356 = .data:0x802B099C; // type:object size:0xC scope:local align:4 +@1358 = .data:0x802B09BC; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802B09C8; // type:object size:0x9 scope:local align:4 data:string +@1362 = .data:0x802B09D4; // type:object size:0xC scope:local align:4 +@1364 = .data:0x802B09E0; // type:object size:0x14 scope:local align:4 +@1359 = .data:0x802B09F4; // type:object size:0x1C scope:local align:4 +__vt__9DemoParms = .data:0x802B0A10; // type:object size:0x30 scope:weak align:4 +@1711 = .data:0x802B0A60; // type:object size:0x1C scope:local align:4 +@1710 = .data:0x802B0A7C; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802B0AA0; // type:label scope:local +@903 = .data:0x802B0AA0; // type:object size:0xF scope:local align:4 data:string +@913 = .data:0x802B0AB0; // type:object size:0xB scope:local align:4 data:string +flagTable__11ResultFlags = .data:0x802B0ABC; // type:object size:0x4C0 scope:global align:4 data:4byte +...data.0 = .data:0x802B0F80; // type:label scope:local +@461 = .data:0x802B0F80; // type:object size:0x10 scope:local align:4 data:string +@653 = .data:0x802B0F90; // type:object size:0xC scope:local align:4 data:string +@655 = .data:0x802B0F9C; // type:object size:0xA scope:local align:4 data:string +@657 = .data:0x802B0FA8; // type:object size:0x9 scope:local align:4 data:string +@656 = .data:0x802B0FB4; // type:object size:0xC scope:local align:4 +@658 = .data:0x802B0FD4; // type:object size:0xC scope:local align:4 data:string +@659 = .data:0x802B0FE0; // type:object size:0xC scope:local align:4 +@660 = .data:0x802B1000; // type:object size:0xB scope:local align:4 data:string +@663 = .data:0x802B100C; // type:object size:0x9 scope:local align:4 data:string +@664 = .data:0x802B1018; // type:object size:0xC scope:local align:4 +@666 = .data:0x802B1024; // type:object size:0x14 scope:local align:4 +@661 = .data:0x802B1038; // type:object size:0x1C scope:local align:4 +__vt__10AIConstant = .data:0x802B1054; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B10A0; // type:label scope:local +@388 = .data:0x802B10A0; // type:object size:0xE scope:local align:4 data:string +@398 = .data:0x802B10B0; // type:object size:0xA scope:local align:4 data:string +@443 = .data:0x802B10BC; // type:object size:0xD scope:local align:4 +@445 = .data:0x802B10CC; // type:object size:0x9 scope:local align:4 +@447 = .data:0x802B10D8; // type:object size:0x9 scope:local align:4 +@457 = .data:0x802B10E4; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802B10F4; // type:object size:0x9 scope:local align:4 data:string +@461 = .data:0x802B1100; // type:object size:0xC scope:local align:4 +@463 = .data:0x802B110C; // type:object size:0x14 scope:local align:4 +@458 = .data:0x802B1120; // type:object size:0x1C scope:local align:4 +__vt__Q29KeyConfig3Key = .data:0x802B113C; // type:object size:0x30 scope:global align:4 +@470 = .data:0x802B116C; // type:object size:0xA scope:local align:4 data:string +@471 = .data:0x802B1178; // type:object size:0x1C scope:local align:4 +__vt__9KeyConfig = .data:0x802B1194; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B11E0; // type:label scope:local +@1533 = .data:0x802B11E0; // type:object size:0xB scope:local align:4 data:string +@1545 = .data:0x802B11EC; // type:object size:0xB scope:local align:4 data:string +@1546 = .data:0x802B11F8; // type:object size:0xB scope:local align:4 data:string +@1547 = .data:0x802B1204; // type:object size:0xA scope:local align:4 data:string +gridStrings = .data:0x802B1210; // type:object size:0xC scope:global align:4 +@1550 = .data:0x802B121C; // type:object size:0xC scope:local align:4 +@1554 = .data:0x802B1228; // type:object size:0xC scope:local align:4 +@1558 = .data:0x802B1234; // type:object size:0xC scope:local align:4 +@1562 = .data:0x802B1240; // type:object size:0xC scope:local align:4 +@1566 = .data:0x802B124C; // type:object size:0xC scope:local align:4 +@1570 = .data:0x802B1258; // type:object size:0xC scope:local align:4 +@1574 = .data:0x802B1264; // type:object size:0xC scope:local align:4 +@1578 = .data:0x802B1270; // type:object size:0xC scope:local align:4 +@1582 = .data:0x802B127C; // type:object size:0xC scope:local align:4 +@1590 = .data:0x802B1288; // type:object size:0xC scope:local align:4 +@1594 = .data:0x802B1294; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802B12A0; // type:object size:0xC scope:local align:4 +@1602 = .data:0x802B12AC; // type:object size:0xC scope:local align:4 +@1606 = .data:0x802B12B8; // type:object size:0xC scope:local align:4 +@1610 = .data:0x802B12C4; // type:object size:0xC scope:local align:4 +@1614 = .data:0x802B12D0; // type:object size:0xC scope:local align:4 +@1618 = .data:0x802B12DC; // type:object size:0xC scope:local align:4 +@1622 = .data:0x802B12E8; // type:object size:0xC scope:local align:4 +@1626 = .data:0x802B12F4; // type:object size:0xC scope:local align:4 +@1630 = .data:0x802B1300; // type:object size:0xC scope:local align:4 +@1797 = .data:0x802B130C; // type:object size:0x10 scope:local align:4 data:string +@1798 = .data:0x802B131C; // type:object size:0x11 scope:local align:4 data:string +@1800 = .data:0x802B1330; // type:object size:0x11 scope:local align:4 data:string +@1801 = .data:0x802B1344; // type:object size:0x12 scope:local align:4 data:string +@1802 = .data:0x802B1358; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B1368; // type:object size:0x10 scope:local align:4 data:string +@1804 = .data:0x802B1378; // type:object size:0x13 scope:local align:4 data:string +@1805 = .data:0x802B138C; // type:object size:0x11 scope:local align:4 data:string +@1806 = .data:0x802B13A0; // type:object size:0x12 scope:local align:4 data:string +@1807 = .data:0x802B13B4; // type:object size:0x11 scope:local align:4 data:string +@1808 = .data:0x802B13C8; // type:object size:0x12 scope:local align:4 data:string +@1809 = .data:0x802B13DC; // type:object size:0xF scope:local align:4 data:string +@1810 = .data:0x802B13EC; // type:object size:0xA scope:local align:4 data:string +@1811 = .data:0x802B13F8; // type:object size:0x9 scope:local align:4 data:string +@1812 = .data:0x802B1404; // type:object size:0xA scope:local align:4 data:string +@1813 = .data:0x802B1410; // type:object size:0xB scope:local align:4 data:string +@1814 = .data:0x802B141C; // type:object size:0xC scope:local align:4 data:string +@1815 = .data:0x802B1428; // type:object size:0xB scope:local align:4 data:string +@1816 = .data:0x802B1434; // type:object size:0xC scope:local align:4 data:string +@1817 = .data:0x802B1440; // type:object size:0xB scope:local align:4 data:string +@1818 = .data:0x802B144C; // type:object size:0xB scope:local align:4 data:string +@1819 = .data:0x802B1458; // type:object size:0xD scope:local align:4 data:string +@1820 = .data:0x802B1468; // type:object size:0xD scope:local align:4 data:string +@1821 = .data:0x802B1478; // type:object size:0xD scope:local align:4 data:string +@1822 = .data:0x802B1488; // type:object size:0xE scope:local align:4 data:string +@1823 = .data:0x802B1498; // type:object size:0xE scope:local align:4 data:string +@1840 = .data:0x802B14A8; // type:object size:0x11 scope:local align:4 data:string +@1855 = .data:0x802B14BC; // type:object size:0xD scope:local align:4 data:string +@1856 = .data:0x802B14CC; // type:object size:0xE scope:local align:4 data:string +@1864 = .data:0x802B14DC; // type:object size:0x11 scope:local align:4 data:string +@1907 = .data:0x802B14F0; // type:object size:0xF scope:local align:4 data:string +@1908 = .data:0x802B1500; // type:object size:0x10 scope:local align:4 data:string +@1916 = .data:0x802B1510; // type:object size:0x10 scope:local align:4 data:string +@1917 = .data:0x802B1520; // type:object size:0x11 scope:local align:4 data:string +@1925 = .data:0x802B1534; // type:object size:0x10 scope:local align:4 data:string +@1926 = .data:0x802B1544; // type:object size:0x11 scope:local align:4 data:string +@1941 = .data:0x802B1558; // type:object size:0xD scope:local align:4 data:string +@1942 = .data:0x802B1568; // type:object size:0xE scope:local align:4 data:string +@1947 = .data:0x802B1578; // type:object size:0xE scope:local align:4 data:string +ufoParts = .data:0x802B1588; // type:object size:0x78 scope:global align:4 data:string +@1982 = .data:0x802B1600; // type:object size:0xD scope:local align:4 data:string +@1991 = .data:0x802B1610; // type:object size:0xF scope:local align:4 data:string +@1992 = .data:0x802B1620; // type:object size:0x15 scope:local align:4 data:string +@2214 = .data:0x802B1638; // type:object size:0xC scope:local align:4 data:string +@2224 = .data:0x802B1670; // type:object size:0x1A scope:local align:4 data:string +@2226 = .data:0x802B168C; // type:object size:0x13 scope:local align:4 data:string +@2225 = .data:0x802B16A0; // type:object size:0xC scope:local align:4 +__vt__25Delegate1<6AIPerf,R4Menu> = .data:0x802B16AC; // type:object size:0xC scope:weak align:4 +@2227 = .data:0x802B16B8; // type:object size:0x18 scope:local align:4 data:string +@2228 = .data:0x802B16D0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B16F8; // type:label scope:local +@731 = .data:0x802B16F8; // type:object size:0x10 scope:local align:4 data:string +@741 = .data:0x802B1708; // type:object size:0xC scope:local align:4 data:string +@772 = .data:0x802B1714; // type:object size:0xC scope:local align:4 data:string +@773 = .data:0x802B1720; // type:object size:0xF scope:local align:4 data:string +@821 = .data:0x802B1730; // type:object size:0xF scope:local align:4 data:string +@823 = .data:0x802B1740; // type:object size:0xB scope:local align:4 data:string +@825 = .data:0x802B174C; // type:object size:0xC scope:local align:4 +@826 = .data:0x802B1758; // type:object size:0xA scope:local align:4 data:string +@827 = .data:0x802B1764; // type:object size:0x14 scope:local align:4 +@822 = .data:0x802B1778; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectDebug = .data:0x802B1794; // type:object size:0x38 scope:global align:4 +@835 = .data:0x802B17CC; // type:object size:0xA scope:local align:4 data:string +@837 = .data:0x802B17D8; // type:object size:0x9 scope:local align:4 data:string +@836 = .data:0x802B17E4; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B1808; // type:label scope:local +@388 = .data:0x802B1808; // type:object size:0xC scope:local align:4 data:string +@410 = .data:0x802B1814; // type:object size:0x9 scope:local align:4 data:string +@552 = .data:0x802B1820; // type:object size:0x9 scope:local align:4 data:string +@553 = .data:0x802B182C; // type:object size:0xC scope:local align:4 +@554 = .data:0x802B1838; // type:object size:0xC scope:local align:4 data:string +@555 = .data:0x802B1844; // type:object size:0x14 scope:local align:4 +@550 = .data:0x802B1858; // type:object size:0x1C scope:local align:4 +__vt__7MemInfo = .data:0x802B1874; // type:object size:0x10 scope:weak align:4 +__vt__11MemInfoNode = .data:0x802B1884; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802B18B0; // type:label scope:local +@625 = .data:0x802B18B0; // type:object size:0xD scope:local align:4 data:string +@635 = .data:0x802B18C0; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802B18CC; // type:object size:0xA scope:local align:4 data:string +@1511 = .data:0x802B18D8; // type:object size:0xC scope:local align:4 data:string +@1512 = .data:0x802B18E4; // type:object size:0xA scope:local align:4 data:string +@1513 = .data:0x802B18F0; // type:object size:0x9 scope:local align:4 data:string +@1514 = .data:0x802B18FC; // type:object size:0x9 scope:local align:4 data:string +@1516 = .data:0x802B1908; // type:object size:0xB scope:local align:4 data:string +_typeStr = .data:0x802B1914; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802B1930; // type:label scope:local +@1470 = .data:0x802B1930; // type:object size:0xD scope:local align:4 data:string +@1480 = .data:0x802B1940; // type:object size:0x9 scope:local align:4 data:string +@3292 = .data:0x802B194C; // type:object size:0xA scope:local align:4 data:string +__vt__9Condition = .data:0x802B1958; // type:object size:0xC scope:weak align:4 +@3294 = .data:0x802B1964; // type:object size:0xC scope:local align:4 data:string +@3295 = .data:0x802B1970; // type:object size:0xD scope:local align:4 data:string +@3293 = .data:0x802B1980; // type:object size:0x14 scope:local align:4 +__vt__8Creature = .data:0x802B1994; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B1AA8; // type:label scope:local +@655 = .data:0x802B1AA8; // type:object size:0x15 scope:local align:4 data:string +@665 = .data:0x802B1AC0; // type:object size:0x11 scope:local align:4 data:string +@747 = .data:0x802B1AD4; // type:object size:0x11 scope:local align:4 data:string +@750 = .data:0x802B1AE8; // type:object size:0x9 scope:local align:4 data:string +@751 = .data:0x802B1AF4; // type:object size:0xC scope:local align:4 +@753 = .data:0x802B1B00; // type:object size:0x14 scope:local align:4 +@754 = .data:0x802B1B14; // type:object size:0xE scope:local align:4 data:string +@755 = .data:0x802B1B24; // type:object size:0x1C scope:local align:4 +@756 = .data:0x802B1B40; // type:object size:0xD scope:local align:4 data:string +@757 = .data:0x802B1B50; // type:object size:0x24 scope:local align:4 +@748 = .data:0x802B1B74; // type:object size:0x2C scope:local align:4 +__vt__16CreatureCollPart = .data:0x802B1BA0; // type:object size:0x48 scope:global align:4 +...data.0 = .data:0x802B1BE8; // type:label scope:local +@1007 = .data:0x802B1BE8; // type:object size:0x12 scope:local align:4 data:string +@1017 = .data:0x802B1BFC; // type:object size:0xE scope:local align:4 data:string +@1782 = .data:0x802B1C0C; // type:object size:0x9 scope:local align:4 data:string +_standType = .data:0x802B1C18; // type:object size:0x10 scope:global align:4 +@2448 = .data:0x802B1C28; // type:object size:0xE scope:local align:4 data:string +@2449 = .data:0x802B1C38; // type:object size:0x9 scope:local align:4 data:string +@2451 = .data:0x802B1C44; // type:object size:0xC scope:local align:4 data:string +@2450 = .data:0x802B1C50; // type:object size:0xC scope:local align:4 +__vt__8Stickers = .data:0x802B1C5C; // type:object size:0x18 scope:global align:4 +@2452 = .data:0x802B1C8C; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802B1CC8; // type:label scope:local +@939 = .data:0x802B1CC8; // type:object size:0x11 scope:local align:4 data:string +@1337 = .data:0x802B1CDC; // type:object size:0xC scope:local align:4 data:string +@1339 = .data:0x802B1CE8; // type:object size:0xC scope:local align:4 data:string +@1340 = .data:0x802B1CF4; // type:object size:0xD scope:local align:4 data:string +@1341 = .data:0x802B1D04; // type:object size:0x9 scope:local align:4 data:string +@1342 = .data:0x802B1D10; // type:object size:0x14 scope:local align:4 +@1343 = .data:0x802B1D24; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B1D30; // type:object size:0x1C scope:local align:4 +@1345 = .data:0x802B1D4C; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802B1D5C; // type:object size:0x24 scope:local align:4 +@1338 = .data:0x802B1D80; // type:object size:0x2C scope:local align:4 +__vt__11PelCreature = .data:0x802B1DAC; // type:object size:0x120 scope:global align:4 +__vt__12DualCreature = .data:0x802B1ECC; // type:object size:0x120 scope:global align:4 +...data.0 = .data:0x802B1FF0; // type:label scope:local +@863 = .data:0x802B1FF0; // type:object size:0x10 scope:local align:4 data:string +@894 = .data:0x802B2000; // type:object size:0x9 scope:local align:4 data:string +@896 = .data:0x802B200C; // type:object size:0x9 scope:local align:4 data:string +@971 = .data:0x802B2018; // type:object size:0xE scope:local align:4 data:string +@972 = .data:0x802B2028; // type:object size:0xD scope:local align:4 data:string +@1900 = .data:0x802B2038; // type:object size:0xC scope:local align:4 data:string +@1902 = .data:0x802B2044; // type:object size:0xC scope:local align:4 data:string +@1903 = .data:0x802B2050; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802B2060; // type:object size:0x9 scope:local align:4 data:string +@1905 = .data:0x802B206C; // type:object size:0x14 scope:local align:4 +@1901 = .data:0x802B2080; // type:object size:0x1C scope:local align:4 +__vt__11DynCreature = .data:0x802B209C; // type:object size:0x114 scope:global align:4 +@1956 = .data:0x802B21B0; // type:object size:0xC scope:local align:4 data:string +@1958 = .data:0x802B21BC; // type:object size:0x9 scope:local align:4 data:string +@1957 = .data:0x802B21C8; // type:object size:0xC scope:local align:4 +@1959 = .data:0x802B21E8; // type:object size:0xD scope:local align:4 data:string +__vt__12CreatureProp = .data:0x802B21F8; // type:object size:0xC scope:weak align:4 +@1961 = .data:0x802B2204; // type:object size:0xC scope:local align:4 data:string +@1964 = .data:0x802B2210; // type:object size:0xC scope:local align:4 +@1962 = .data:0x802B221C; // type:object size:0x14 scope:local align:4 +__vt__11DynParticle = .data:0x802B2230; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802B2270; // type:label scope:local +@389 = .data:0x802B2270; // type:object size:0x12 scope:local align:4 data:string +@399 = .data:0x802B2284; // type:object size:0xE scope:local align:4 data:string +@408 = .data:0x802B2294; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802B22A0; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802B22B0; // type:object size:0xE scope:local align:4 data:string +@423 = .data:0x802B22C0; // type:object size:0xC scope:local align:4 +@421 = .data:0x802B22CC; // type:object size:0x14 scope:local align:4 +__vt__13EventListener = .data:0x802B22E0; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802B2310; // type:label scope:local +@625 = .data:0x802B2310; // type:object size:0x11 scope:local align:4 data:string +@635 = .data:0x802B2324; // type:object size:0xD scope:local align:4 data:string +@732 = .data:0x802B2334; // type:object size:0xD scope:local align:4 data:string +@734 = .data:0x802B2344; // type:object size:0xC scope:local align:4 data:string +@735 = .data:0x802B2350; // type:object size:0xD scope:local align:4 data:string +@736 = .data:0x802B2360; // type:object size:0x9 scope:local align:4 data:string +@737 = .data:0x802B236C; // type:object size:0x14 scope:local align:4 +@733 = .data:0x802B2380; // type:object size:0x1C scope:local align:4 +__vt__12RopeCreature = .data:0x802B239C; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802B24B0; // type:label scope:local +@396 = .data:0x802B24B0; // type:object size:0xB scope:local align:4 data:string +@402 = .data:0x802B24BC; // type:object size:0xF scope:local align:4 data:string +@403 = .data:0x802B24CC; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802B24D8; // type:object size:0x9 scope:local align:4 data:string +@410 = .data:0x802B24E4; // type:object size:0xE scope:local align:4 data:string +@411 = .data:0x802B24F4; // type:object size:0xC scope:local align:4 data:string +@412 = .data:0x802B2500; // type:object size:0xC scope:local align:4 data:string +@413 = .data:0x802B250C; // type:object size:0xC scope:local align:4 data:string +@414 = .data:0x802B2518; // type:object size:0x10 scope:local align:4 data:string +@416 = .data:0x802B2528; // type:object size:0xA scope:local align:4 data:string +@417 = .data:0x802B2534; // type:object size:0x14 scope:local align:4 data:string +@418 = .data:0x802B2548; // type:object size:0x13 scope:local align:4 data:string +@424 = .data:0x802B255C; // type:object size:0x9 scope:local align:4 data:string +@426 = .data:0x802B2568; // type:object size:0xA scope:local align:4 data:string +@428 = .data:0x802B2574; // type:object size:0xB scope:local align:4 data:string +@429 = .data:0x802B2580; // type:object size:0xC scope:local align:4 data:string +@430 = .data:0x802B258C; // type:object size:0xB scope:local align:4 data:string +@431 = .data:0x802B2598; // type:object size:0xB scope:local align:4 data:string +@432 = .data:0x802B25A4; // type:object size:0xD scope:local align:4 data:string +@433 = .data:0x802B25B4; // type:object size:0xA scope:local align:4 data:string +@434 = .data:0x802B25C0; // type:object size:0xB scope:local align:4 data:string +@435 = .data:0x802B25CC; // type:object size:0xC scope:local align:4 data:string +@436 = .data:0x802B25D8; // type:object size:0x9 scope:local align:4 data:string +@437 = .data:0x802B25E4; // type:object size:0xE scope:local align:4 data:string +@438 = .data:0x802B25F4; // type:object size:0xA scope:local align:4 data:string +@439 = .data:0x802B2600; // type:object size:0xA scope:local align:4 data:string +_info = .data:0x802B260C; // type:object size:0x1B8 scope:local align:4 data:4byte +@453 = .data:0x802B27C4; // type:object size:0x10 scope:local align:4 data:string +...data.0 = .data:0x802B27D8; // type:label scope:local +@1331 = .data:0x802B27D8; // type:object size:0xE scope:local align:4 data:string +_ufoIDTable = .data:0x802B27E8; // type:object size:0x7C scope:local align:4 data:4byte +@1488 = .data:0x802B2864; // type:object size:0x9 scope:local align:4 data:string +@1509 = .data:0x802B2870; // type:object size:0xD scope:local align:4 data:string +bounceSounds = .data:0x802B2880; // type:object size:0x30 scope:local align:4 +numberPellets = .data:0x802B28B0; // type:object size:0x9C scope:global align:4 data:4byte +@3085 = .data:0x802B294C; // type:object size:0xB scope:local align:4 data:string +@3122 = .data:0x802B2958; // type:object size:0x9 scope:local align:4 data:string +@3123 = .data:0x802B2964; // type:object size:0xC scope:local align:4 data:string +@3399 = .data:0x802B2970; // type:object size:0xA scope:local align:4 data:string +@3402 = .data:0x802B297C; // type:object size:0xC scope:local align:4 +@3404 = .data:0x802B2988; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802B299C; // type:object size:0xC scope:local align:4 data:string +@3406 = .data:0x802B29A8; // type:object size:0xA scope:local align:4 data:string +@3407 = .data:0x802B29B4; // type:object size:0x24 scope:local align:4 +@3408 = .data:0x802B29D8; // type:object size:0xE scope:local align:4 data:string +@3409 = .data:0x802B29E8; // type:object size:0x2C scope:local align:4 +@3400 = .data:0x802B2A14; // type:object size:0x34 scope:local align:4 +__vt__9PelletMgr = .data:0x802B2A48; // type:object size:0x88 scope:global align:4 +@3425 = .data:0x802B2AD0; // type:object size:0xB scope:local align:4 data:string +@3427 = .data:0x802B2ADC; // type:object size:0xD scope:local align:4 data:string +@3426 = .data:0x802B2AEC; // type:object size:0xC scope:local align:4 +__vt__10PelletProp = .data:0x802B2AF8; // type:object size:0xC scope:weak align:4 +@3429 = .data:0x802B2B10; // type:object size:0x13 scope:local align:4 data:string +@3430 = .data:0x802B2B24; // type:object size:0x14 scope:local align:4 +__vt__Q29PelletMgr7UseNode = .data:0x802B2B38; // type:object size:0x10 scope:weak align:4 +@3432 = .data:0x802B2B48; // type:object size:0xC scope:local align:4 data:string +@3442 = .data:0x802B2B80; // type:object size:0x14 scope:local align:4 data:string +@3443 = .data:0x802B2B94; // type:object size:0xC scope:local align:4 data:string +@3444 = .data:0x802B2BA0; // type:object size:0xD scope:local align:4 data:string +@3445 = .data:0x802B2BB0; // type:object size:0x9 scope:local align:4 data:string +@3446 = .data:0x802B2BBC; // type:object size:0x14 scope:local align:4 +@3447 = .data:0x802B2BD0; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802B2BDC; // type:object size:0x1C scope:local align:4 +@3449 = .data:0x802B2BF8; // type:object size:0xD scope:local align:4 data:string +@3450 = .data:0x802B2C08; // type:object size:0x24 scope:local align:4 +@3441 = .data:0x802B2C2C; // type:object size:0x34 scope:local align:4 +__vt__6Pellet = .data:0x802B2C60; // type:object size:0x130 scope:global align:4 +@3484 = .data:0x802B2D90; // type:object size:0x15 scope:local align:4 data:string +__vt__21StateMachine<6Pellet> = .data:0x802B2DA8; // type:object size:0x18 scope:weak align:4 +@3487 = .data:0x802B2DC0; // type:object size:0x23 scope:local align:4 data:string +@3488 = .data:0x802B2DE4; // type:object size:0x3D scope:local align:4 data:string +@3489 = .data:0x802B2E24; // type:object size:0x29 scope:local align:4 data:string +@3486 = .data:0x802B2E50; // type:object size:0x1C scope:local align:4 +__vt__7KEffect = .data:0x802B2E6C; // type:object size:0x3C scope:weak align:4 +__vt__Q23zen31CallBack1 = .data:0x802B2EA8; // type:object size:0xC scope:weak align:4 +__vt__Q23zen58CallBack2 = .data:0x802B2EB4; // type:object size:0xC scope:weak align:4 +__vt__Q23zen37CallBack1 = .data:0x802B2EC0; // type:object size:0xC scope:weak align:4 +@3496 = .data:0x802B2ED8; // type:object size:0xD scope:local align:4 data:string +@3498 = .data:0x802B2EE8; // type:object size:0xB scope:local align:4 data:string +@3497 = .data:0x802B2EF4; // type:object size:0x1C scope:local align:4 +__vt__12PelletConfig = .data:0x802B2F10; // type:object size:0x1C scope:global align:4 +@3499 = .data:0x802B2F2C; // type:object size:0xC scope:local align:4 data:string +@3501 = .data:0x802B2F38; // type:object size:0x9 scope:local align:4 data:string +@3500 = .data:0x802B2F44; // type:object size:0xC scope:local align:4 +@3502 = .data:0x802B2F64; // type:object size:0xA scope:local align:4 data:string +@3503 = .data:0x802B2F70; // type:object size:0xC scope:local align:4 +@3504 = .data:0x802B2F90; // type:object size:0xD scope:local align:4 data:string +@3505 = .data:0x802B2FA0; // type:object size:0xC scope:local align:4 +@3540 = .data:0x802B2FDC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B3008; // type:label scope:local +@1008 = .data:0x802B3008; // type:object size:0xF scope:local align:4 data:string +@1018 = .data:0x802B3018; // type:object size:0xB scope:local align:4 data:string +@1072 = .data:0x802B3024; // type:object size:0x9 scope:local align:4 data:string +@1077 = .data:0x802B3030; // type:object size:0xF scope:local align:4 data:string +@1094 = .data:0x802B3040; // type:object size:0x12 scope:local align:4 data:string +@1114 = .data:0x802B3054; // type:object size:0xE scope:local align:4 data:string +motionLabels__18PaniPelletAnimator = .data:0x802B3064; // type:object size:0x1C scope:global align:4 +@1185 = .data:0x802B3080; // type:object size:0x13 scope:local align:4 data:string +@1187 = .data:0x802B3094; // type:object size:0x9 scope:local align:4 data:string +@1188 = .data:0x802B30A0; // type:object size:0xD scope:local align:4 data:string +@1189 = .data:0x802B30B0; // type:object size:0xC scope:local align:4 +@1186 = .data:0x802B30BC; // type:object size:0x14 scope:local align:4 +__vt__18PaniPelletAnimator = .data:0x802B30D0; // type:object size:0x1C scope:weak align:4 +@1190 = .data:0x802B30EC; // type:object size:0xF scope:local align:4 data:string +@1193 = .data:0x802B30FC; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802B3108; // type:object size:0xB scope:local align:4 data:string +@1191 = .data:0x802B3114; // type:object size:0x1C scope:local align:4 +__vt__14PelletAnimInfo = .data:0x802B3130; // type:object size:0x1C scope:global align:4 +@1196 = .data:0x802B314C; // type:object size:0xD scope:local align:4 data:string +@1198 = .data:0x802B315C; // type:object size:0x9 scope:local align:4 data:string +@1197 = .data:0x802B3168; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B31A8; // type:label scope:local +@1040 = .data:0x802B31A8; // type:object size:0xE scope:local align:4 data:string +@1050 = .data:0x802B31B8; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802B31C4; // type:object size:0xC scope:local align:4 data:string +@1054 = .data:0x802B31D0; // type:object size:0xF scope:local align:4 +@1125 = .data:0x802B31E0; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802B31F0; // type:object size:0xB scope:local align:4 data:string +@1129 = .data:0x802B31FC; // type:object size:0xC scope:local align:4 +@1130 = .data:0x802B3208; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802B3214; // type:object size:0x14 scope:local align:4 +@1126 = .data:0x802B3228; // type:object size:0x1C scope:local align:4 +__vt__15GenObjectPellet = .data:0x802B3244; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802B3280; // type:label scope:local +@1325 = .data:0x802B3280; // type:object size:0x10 scope:local align:4 data:string +@1335 = .data:0x802B3290; // type:object size:0xC scope:local align:4 data:string +@1532 = .data:0x802B329C; // type:object size:0xA scope:local align:4 data:string +@1815 = .data:0x802B32A8; // type:object size:0x10 scope:local align:4 data:string +@1817 = .data:0x802B32B8; // type:object size:0x11 scope:local align:4 data:string +@1818 = .data:0x802B32CC; // type:object size:0xF scope:local align:4 data:string +@1819 = .data:0x802B32DC; // type:object size:0xC scope:local align:4 +@1820 = .data:0x802B32E8; // type:object size:0xC scope:local align:4 data:string +@1821 = .data:0x802B32F4; // type:object size:0x14 scope:local align:4 +@1816 = .data:0x802B3308; // type:object size:0x1C scope:local align:4 +__vt__15PelletGoalState = .data:0x802B3324; // type:object size:0x50 scope:global align:4 +@1822 = .data:0x802B3374; // type:object size:0x12 scope:local align:4 data:string +@1823 = .data:0x802B3388; // type:object size:0x1C scope:local align:4 +__vt__17PelletAppearState = .data:0x802B33A4; // type:object size:0x50 scope:global align:4 +@1824 = .data:0x802B33F4; // type:object size:0x15 scope:local align:4 data:string +@1825 = .data:0x802B340C; // type:object size:0x1C scope:local align:4 +__vt__20PelletSwallowedState = .data:0x802B3428; // type:object size:0x50 scope:global align:4 +@1826 = .data:0x802B3478; // type:object size:0x12 scope:local align:4 data:string +@1827 = .data:0x802B348C; // type:object size:0x1C scope:local align:4 +__vt__17PelletNormalState = .data:0x802B34A8; // type:object size:0x50 scope:global align:4 +@1828 = .data:0x802B34F8; // type:object size:0x10 scope:local align:4 data:string +@1829 = .data:0x802B3508; // type:object size:0x1C scope:local align:4 +__vt__15PelletDeadState = .data:0x802B3524; // type:object size:0x50 scope:global align:4 +@1830 = .data:0x802B3574; // type:object size:0x13 scope:local align:4 data:string +@1831 = .data:0x802B3588; // type:object size:0x1C scope:local align:4 +__vt__18PelletUfoLoadState = .data:0x802B35A4; // type:object size:0x50 scope:global align:4 +__vt__11PelletState = .data:0x802B35F4; // type:object size:0x50 scope:weak align:4 +__vt__15AState<6Pellet> = .data:0x802B3644; // type:object size:0x50 scope:weak align:4 +__vt__17Receiver<6Pellet> = .data:0x802B3694; // type:object size:0x38 scope:weak align:4 +@1832 = .data:0x802B36CC; // type:object size:0x13 scope:local align:4 data:string +@1834 = .data:0x802B36E0; // type:object size:0x15 scope:local align:4 data:string +@1833 = .data:0x802B36F8; // type:object size:0xC scope:local align:4 +__vt__18PelletStateMachine = .data:0x802B3704; // type:object size:0x18 scope:global align:4 +@1880 = .data:0x802B371C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B3748; // type:label scope:local +@1312 = .data:0x802B3748; // type:object size:0xF scope:local align:4 data:string +@1322 = .data:0x802B3758; // type:object size:0xB scope:local align:4 data:string +bridgeFirstPos = .data:0x802B3764; // type:object size:0x14 scope:local align:4 +bridgeFirstY = .data:0x802B3778; // type:object size:0x14 scope:local align:4 +bridgeGrad = .data:0x802B378C; // type:object size:0x14 scope:local align:4 +@1371 = .data:0x802B37A0; // type:object size:0xC scope:local align:4 data:string +@1372 = .data:0x802B37AC; // type:object size:0xB scope:local align:4 data:string +info = .data:0x802B37B8; // type:object size:0x18 scope:global align:4 data:4byte +@1374 = .data:0x802B37D0; // type:object size:0x9 scope:local align:4 data:string +@1375 = .data:0x802B37DC; // type:object size:0xB scope:local align:4 data:string +@1376 = .data:0x802B37E8; // type:object size:0xD scope:local align:4 data:string +@1377 = .data:0x802B37F8; // type:object size:0x9 scope:local align:4 data:string +@1378 = .data:0x802B3804; // type:object size:0xA scope:local align:4 data:string +shpInfo = .data:0x802B3810; // type:object size:0x30 scope:global align:4 data:4byte +@1449 = .data:0x802B3840; // type:object size:0x1C scope:local align:4 data:string +@1450 = .data:0x802B385C; // type:object size:0x1B scope:local align:4 data:string +@1451 = .data:0x802B3878; // type:object size:0x1B scope:local align:4 data:string +@1452 = .data:0x802B3894; // type:object size:0x1E scope:local align:4 data:string +@1453 = .data:0x802B38B4; // type:object size:0x1C scope:local align:4 data:string +files = .data:0x802B38D0; // type:object size:0x14 scope:local align:4 data:4byte +@1493 = .data:0x802B38E4; // type:object size:0x9 scope:local align:4 data:string +@1557 = .data:0x802B38F0; // type:object size:0xC scope:local align:4 data:string +@1558 = .data:0x802B38FC; // type:object size:0x11 scope:local align:4 +@1614 = .data:0x802B3910; // type:object size:0x17 scope:local align:4 +@2993 = .data:0x802B3928; // type:object size:0xE scope:local align:4 data:string +@2995 = .data:0x802B3938; // type:object size:0xC scope:local align:4 data:string +@2994 = .data:0x802B3944; // type:object size:0xC scope:local align:4 +__vt__13InteractBreak = .data:0x802B3950; // type:object size:0x2C scope:global align:4 +@3002 = .data:0x802B397C; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802B398C; // type:object size:0xC scope:local align:4 +__vt__13InteractBuild = .data:0x802B3998; // type:object size:0x2C scope:global align:4 +@3006 = .data:0x802B39C4; // type:object size:0x14 scope:local align:4 data:string +@3007 = .data:0x802B39D8; // type:object size:0xC scope:local align:4 data:string +@3008 = .data:0x802B39E4; // type:object size:0xD scope:local align:4 data:string +@3009 = .data:0x802B39F4; // type:object size:0x9 scope:local align:4 data:string +@3010 = .data:0x802B3A00; // type:object size:0x14 scope:local align:4 +@3011 = .data:0x802B3A14; // type:object size:0xB scope:local align:4 data:string +@3012 = .data:0x802B3A20; // type:object size:0x24 scope:local align:4 +@3013 = .data:0x802B3A44; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802B3A54; // type:object size:0x2C scope:local align:4 +@3015 = .data:0x802B3A80; // type:object size:0xB scope:local align:4 data:string +@3016 = .data:0x802B3A8C; // type:object size:0x34 scope:local align:4 +@3005 = .data:0x802B3AC0; // type:object size:0x3C scope:local align:4 +__vt__6Bridge = .data:0x802B3AFC; // type:object size:0x16C scope:global align:4 +@3066 = .data:0x802B3C68; // type:object size:0xD scope:local align:4 data:string +@3067 = .data:0x802B3C78; // type:object size:0xC scope:local align:4 +__vt__12InteractPush = .data:0x802B3C84; // type:object size:0x2C scope:global align:4 +@3068 = .data:0x802B3CB0; // type:object size:0xB scope:local align:4 data:string +@3069 = .data:0x802B3CBC; // type:object size:0x3C scope:local align:4 +__vt__10HinderRock = .data:0x802B3CF8; // type:object size:0x16C scope:global align:4 +@3074 = .data:0x802B3E64; // type:object size:0xE scope:local align:4 data:string +@3077 = .data:0x802B3E74; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802B3E80; // type:object size:0x14 scope:local align:4 +@3075 = .data:0x802B3E94; // type:object size:0x1C scope:local align:4 +@3091 = .data:0x802B3EF0; // type:object size:0xE scope:local align:4 data:string +@3093 = .data:0x802B3F00; // type:object size:0xD scope:local align:4 data:string +@3094 = .data:0x802B3F10; // type:object size:0x24 scope:local align:4 +@3092 = .data:0x802B3F34; // type:object size:0x2C scope:local align:4 +__vt__13DynBuildShape = .data:0x802B3F60; // type:object size:0x48 scope:weak align:4 +@3098 = .data:0x802B3FA8; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802B3FBC; // type:object size:0xB scope:local align:4 data:string +@3102 = .data:0x802B3FC8; // type:object size:0xC scope:local align:4 +@3103 = .data:0x802B3FD4; // type:object size:0xA scope:local align:4 data:string +@3104 = .data:0x802B3FE0; // type:object size:0x14 scope:local align:4 +@3099 = .data:0x802B3FF4; // type:object size:0x1C scope:local align:4 +__vt__19GenObjectWorkObject = .data:0x802B4010; // type:object size:0x38 scope:global align:4 +@3110 = .data:0x802B4048; // type:object size:0xC scope:local align:4 data:string +@3112 = .data:0x802B4054; // type:object size:0x9 scope:local align:4 data:string +@3111 = .data:0x802B4060; // type:object size:0xC scope:local align:4 +@3113 = .data:0x802B4080; // type:object size:0xA scope:local align:4 data:string +@3114 = .data:0x802B408C; // type:object size:0xC scope:local align:4 +@3115 = .data:0x802B40AC; // type:object size:0xE scope:local align:4 data:string +@3117 = .data:0x802B40BC; // type:object size:0xC scope:local align:4 data:string +@3118 = .data:0x802B40C8; // type:object size:0xA scope:local align:4 data:string +@3119 = .data:0x802B40D4; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802B40F8; // type:object size:0x2C scope:local align:4 +__vt__13WorkObjectMgr = .data:0x802B4124; // type:object size:0x78 scope:global align:4 +@3126 = .data:0x802B419C; // type:object size:0xF scope:local align:4 data:string +@3127 = .data:0x802B41AC; // type:object size:0x14 scope:local align:4 +__vt__14WorkObjectNode = .data:0x802B41C0; // type:object size:0x10 scope:weak align:4 +__vt__10WorkObject = .data:0x802B4204; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802B4370; // type:label scope:local +@882 = .data:0x802B4370; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802B4380; // type:object size:0x9 scope:local align:4 data:string +@3233 = .data:0x802B438C; // type:object size:0x9 scope:local align:4 data:string +@3234 = .data:0x802B4398; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802B43C0; // type:object size:0x9 scope:local align:4 data:string +@3241 = .data:0x802B43CC; // type:object size:0x14 scope:local align:4 +@3239 = .data:0x802B43E0; // type:object size:0x1C scope:local align:4 +__vt__8RouteMgr = .data:0x802B43FC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B4430; // type:label scope:local +@573 = .data:0x802B4430; // type:object size:0xA scope:local align:4 data:string +@597 = .data:0x802B443C; // type:object size:0x9 scope:local align:4 data:string +@598 = .data:0x802B4448; // type:object size:0x9 scope:local align:4 data:string +@599 = .data:0x802B4454; // type:object size:0xD scope:local align:4 data:string +@600 = .data:0x802B4464; // type:object size:0xC scope:local align:4 data:string +@601 = .data:0x802B4470; // type:object size:0x13 scope:local align:4 data:string +@602 = .data:0x802B4484; // type:object size:0xA scope:local align:4 data:string +@603 = .data:0x802B4490; // type:object size:0xA scope:local align:4 data:string +@604 = .data:0x802B449C; // type:object size:0xE scope:local align:4 data:string +@605 = .data:0x802B44AC; // type:object size:0xC scope:local align:4 data:string +@643 = .data:0x802B44B8; // type:object size:0xA scope:local align:4 +@754 = .data:0x802B44C4; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802B44D0; // type:object size:0xC scope:local align:4 +@757 = .data:0x802B44DC; // type:object size:0x14 scope:local align:4 +@752 = .data:0x802B44F0; // type:object size:0x1C scope:local align:4 +__vt__5SeWin = .data:0x802B450C; // type:object size:0x48 scope:global align:4 +@763 = .data:0x802B4554; // type:object size:0x14 scope:local align:4 +@761 = .data:0x802B4568; // type:object size:0x1C scope:local align:4 +__vt__5SeMgr = .data:0x802B4584; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802B45D0; // type:label scope:local +@399 = .data:0x802B45D0; // type:object size:0x10 scope:local align:4 data:string +@409 = .data:0x802B45E0; // type:object size:0xB scope:local align:4 data:string +@444 = .data:0x802B45EC; // type:object size:0xA scope:local align:4 data:string +@446 = .data:0x802B45F8; // type:object size:0xC scope:local align:4 data:string +@448 = .data:0x802B4604; // type:object size:0x9 scope:local align:4 data:string +@447 = .data:0x802B4610; // type:object size:0xC scope:local align:4 +@449 = .data:0x802B4630; // type:object size:0xB scope:local align:4 data:string +@452 = .data:0x802B463C; // type:object size:0x9 scope:local align:4 data:string +@453 = .data:0x802B4648; // type:object size:0xC scope:local align:4 +@455 = .data:0x802B4654; // type:object size:0x14 scope:local align:4 +@450 = .data:0x802B4668; // type:object size:0x1C scope:local align:4 +__vt__10SeConstant = .data:0x802B4684; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802B46D0; // type:label scope:local +@1321 = .data:0x802B46D0; // type:object size:0xD scope:local align:4 data:string +@1331 = .data:0x802B46E0; // type:object size:0x9 scope:local align:4 data:string +@1332 = .data:0x802B46EC; // type:object size:0x10 scope:local align:4 data:string +@1333 = .data:0x802B46FC; // type:object size:0xF scope:local align:4 data:string +@1334 = .data:0x802B470C; // type:object size:0xE scope:local align:4 data:string +@1335 = .data:0x802B471C; // type:object size:0x10 scope:local align:4 data:string +@1336 = .data:0x802B472C; // type:object size:0x10 scope:local align:4 data:string +@1337 = .data:0x802B473C; // type:object size:0xF scope:local align:4 data:string +@1338 = .data:0x802B474C; // type:object size:0xE scope:local align:4 data:string +@1339 = .data:0x802B475C; // type:object size:0xF scope:local align:4 data:string +@1340 = .data:0x802B476C; // type:object size:0x15 scope:local align:4 data:string +@1341 = .data:0x802B4784; // type:object size:0x10 scope:local align:4 data:string +@1342 = .data:0x802B4794; // type:object size:0xD scope:local align:4 data:string +@1343 = .data:0x802B47A4; // type:object size:0xC scope:local align:4 data:string +@1344 = .data:0x802B47B0; // type:object size:0xD scope:local align:4 data:string +@1345 = .data:0x802B47C0; // type:object size:0xF scope:local align:4 data:string +@1346 = .data:0x802B47D0; // type:object size:0xD scope:local align:4 data:string +@1347 = .data:0x802B47E0; // type:object size:0xD scope:local align:4 data:string +@1348 = .data:0x802B47F0; // type:object size:0xD scope:local align:4 data:string +@1349 = .data:0x802B4800; // type:object size:0xE scope:local align:4 data:string +@1350 = .data:0x802B4810; // type:object size:0xF scope:local align:4 data:string +@1351 = .data:0x802B4820; // type:object size:0xC scope:local align:4 data:string +@1352 = .data:0x802B482C; // type:object size:0x12 scope:local align:4 data:string +@1353 = .data:0x802B4840; // type:object size:0x12 scope:local align:4 data:string +@1354 = .data:0x802B4854; // type:object size:0xE scope:local align:4 data:string +@1355 = .data:0x802B4864; // type:object size:0x15 scope:local align:4 data:string +@1356 = .data:0x802B487C; // type:object size:0xB scope:local align:4 data:string +@1357 = .data:0x802B4888; // type:object size:0x13 scope:local align:4 data:string +@1358 = .data:0x802B489C; // type:object size:0x10 scope:local align:4 data:string +@1359 = .data:0x802B48AC; // type:object size:0x10 scope:local align:4 data:string +@1360 = .data:0x802B48BC; // type:object size:0xC scope:local align:4 data:string +@1361 = .data:0x802B48C8; // type:object size:0x10 scope:local align:4 data:string +@1362 = .data:0x802B48D8; // type:object size:0xD scope:local align:4 data:string +@1364 = .data:0x802B48E8; // type:object size:0xE scope:local align:4 data:string +@1365 = .data:0x802B48F8; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802B490C; // type:object size:0xD scope:local align:4 data:string +@1367 = .data:0x802B491C; // type:object size:0xF scope:local align:4 data:string +@1368 = .data:0x802B492C; // type:object size:0xE scope:local align:4 data:string +@1369 = .data:0x802B493C; // type:object size:0xD scope:local align:4 data:string +@1370 = .data:0x802B494C; // type:object size:0xE scope:local align:4 data:string +@1371 = .data:0x802B495C; // type:object size:0xF scope:local align:4 data:string +@1372 = .data:0x802B496C; // type:object size:0x10 scope:local align:4 data:string +@1373 = .data:0x802B497C; // type:object size:0xF scope:local align:4 data:string +@1374 = .data:0x802B498C; // type:object size:0xF scope:local align:4 data:string +@1375 = .data:0x802B499C; // type:object size:0x10 scope:local align:4 data:string +@1376 = .data:0x802B49AC; // type:object size:0xF scope:local align:4 data:string +@1377 = .data:0x802B49BC; // type:object size:0xF scope:local align:4 data:string +@1378 = .data:0x802B49CC; // type:object size:0xF scope:local align:4 data:string +@1379 = .data:0x802B49DC; // type:object size:0x15 scope:local align:4 data:string +@1380 = .data:0x802B49F4; // type:object size:0x10 scope:local align:4 data:string +@1381 = .data:0x802B4A04; // type:object size:0x10 scope:local align:4 data:string +@1382 = .data:0x802B4A14; // type:object size:0x10 scope:local align:4 data:string +@1383 = .data:0x802B4A24; // type:object size:0xD scope:local align:4 data:string +@1384 = .data:0x802B4A34; // type:object size:0xD scope:local align:4 data:string +@1385 = .data:0x802B4A44; // type:object size:0xF scope:local align:4 data:string +@1386 = .data:0x802B4A54; // type:object size:0xD scope:local align:4 data:string +@1387 = .data:0x802B4A64; // type:object size:0xF scope:local align:4 data:string +@1388 = .data:0x802B4A74; // type:object size:0xE scope:local align:4 data:string +@1389 = .data:0x802B4A84; // type:object size:0x10 scope:local align:4 data:string +@1390 = .data:0x802B4A94; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B4AA4; // type:object size:0xF scope:local align:4 data:string +@1392 = .data:0x802B4AB4; // type:object size:0xD scope:local align:4 data:string +@1393 = .data:0x802B4AC4; // type:object size:0xF scope:local align:4 data:string +@1394 = .data:0x802B4AD4; // type:object size:0xD scope:local align:4 data:string +@1395 = .data:0x802B4AE4; // type:object size:0xE scope:local align:4 data:string +@1396 = .data:0x802B4AF4; // type:object size:0xF scope:local align:4 data:string +@1397 = .data:0x802B4B04; // type:object size:0xE scope:local align:4 data:string +@1398 = .data:0x802B4B14; // type:object size:0xE scope:local align:4 data:string +@1399 = .data:0x802B4B24; // type:object size:0xD scope:local align:4 data:string +@1400 = .data:0x802B4B34; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802B4B44; // type:object size:0xF scope:local align:4 data:string +@1402 = .data:0x802B4B54; // type:object size:0xE scope:local align:4 data:string +@1403 = .data:0x802B4B64; // type:object size:0xD scope:local align:4 data:string +@1404 = .data:0x802B4B74; // type:object size:0xD scope:local align:4 data:string +@1405 = .data:0x802B4B84; // type:object size:0xE scope:local align:4 data:string +@1406 = .data:0x802B4B94; // type:object size:0xF scope:local align:4 data:string +@1407 = .data:0x802B4BA4; // type:object size:0xE scope:local align:4 data:string +@1408 = .data:0x802B4BB4; // type:object size:0xE scope:local align:4 data:string +@1409 = .data:0x802B4BC4; // type:object size:0xD scope:local align:4 data:string +@1410 = .data:0x802B4BD4; // type:object size:0xE scope:local align:4 data:string +@1411 = .data:0x802B4BE4; // type:object size:0xE scope:local align:4 data:string +@1412 = .data:0x802B4BF4; // type:object size:0xE scope:local align:4 data:string +@1413 = .data:0x802B4C04; // type:object size:0xE scope:local align:4 data:string +@1414 = .data:0x802B4C14; // type:object size:0xE scope:local align:4 data:string +@1415 = .data:0x802B4C24; // type:object size:0xC scope:local align:4 data:string +@1416 = .data:0x802B4C30; // type:object size:0xE scope:local align:4 data:string +@1417 = .data:0x802B4C40; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802B4C50; // type:object size:0xC scope:local align:4 data:string +@1419 = .data:0x802B4C5C; // type:object size:0xE scope:local align:4 data:string +@1420 = .data:0x802B4C6C; // type:object size:0xE scope:local align:4 data:string +@1421 = .data:0x802B4C7C; // type:object size:0xF scope:local align:4 data:string +@1422 = .data:0x802B4C8C; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802B4C9C; // type:object size:0x11 scope:local align:4 data:string +@1424 = .data:0x802B4CB0; // type:object size:0x11 scope:local align:4 data:string +@1425 = .data:0x802B4CC4; // type:object size:0xF scope:local align:4 data:string +@1426 = .data:0x802B4CD4; // type:object size:0xF scope:local align:4 data:string +@1427 = .data:0x802B4CE4; // type:object size:0xF scope:local align:4 data:string +@1428 = .data:0x802B4CF4; // type:object size:0xF scope:local align:4 data:string +@1429 = .data:0x802B4D04; // type:object size:0x13 scope:local align:4 data:string +@1430 = .data:0x802B4D18; // type:object size:0x13 scope:local align:4 data:string +@1431 = .data:0x802B4D2C; // type:object size:0xF scope:local align:4 data:string +@1432 = .data:0x802B4D3C; // type:object size:0xD scope:local align:4 data:string +@1433 = .data:0x802B4D4C; // type:object size:0xE scope:local align:4 data:string +@1434 = .data:0x802B4D5C; // type:object size:0x12 scope:local align:4 data:string +@1435 = .data:0x802B4D70; // type:object size:0xF scope:local align:4 data:string +@1436 = .data:0x802B4D80; // type:object size:0xF scope:local align:4 data:string +@1437 = .data:0x802B4D90; // type:object size:0x11 scope:local align:4 data:string +@1438 = .data:0x802B4DA4; // type:object size:0xE scope:local align:4 data:string +@1439 = .data:0x802B4DB4; // type:object size:0xD scope:local align:4 data:string +@1440 = .data:0x802B4DC4; // type:object size:0x14 scope:local align:4 data:string +@1441 = .data:0x802B4DD8; // type:object size:0x14 scope:local align:4 data:string +@1442 = .data:0x802B4DEC; // type:object size:0x11 scope:local align:4 data:string +@1443 = .data:0x802B4E00; // type:object size:0xF scope:local align:4 data:string +@1444 = .data:0x802B4E10; // type:object size:0xF scope:local align:4 data:string +@1445 = .data:0x802B4E20; // type:object size:0x10 scope:local align:4 data:string +@1446 = .data:0x802B4E30; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802B4E40; // type:object size:0xF scope:local align:4 data:string +@1448 = .data:0x802B4E50; // type:object size:0xE scope:local align:4 data:string +@1449 = .data:0x802B4E60; // type:object size:0x11 scope:local align:4 data:string +@1450 = .data:0x802B4E74; // type:object size:0xF scope:local align:4 data:string +@1451 = .data:0x802B4E84; // type:object size:0x11 scope:local align:4 data:string +@1452 = .data:0x802B4E98; // type:object size:0xF scope:local align:4 data:string +@1453 = .data:0x802B4EA8; // type:object size:0x10 scope:local align:4 data:string +@1454 = .data:0x802B4EB8; // type:object size:0x10 scope:local align:4 data:string +@1455 = .data:0x802B4EC8; // type:object size:0xE scope:local align:4 data:string +@1456 = .data:0x802B4ED8; // type:object size:0x10 scope:local align:4 data:string +@1457 = .data:0x802B4EE8; // type:object size:0xF scope:local align:4 data:string +@1458 = .data:0x802B4EF8; // type:object size:0xF scope:local align:4 data:string +@1459 = .data:0x802B4F08; // type:object size:0x12 scope:local align:4 data:string +@1460 = .data:0x802B4F1C; // type:object size:0xB scope:local align:4 data:string +@1461 = .data:0x802B4F28; // type:object size:0xE scope:local align:4 data:string +@1462 = .data:0x802B4F38; // type:object size:0xC scope:local align:4 data:string +@1463 = .data:0x802B4F44; // type:object size:0xC scope:local align:4 data:string +@1464 = .data:0x802B4F50; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802B4F60; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802B4F70; // type:object size:0xF scope:local align:4 data:string +@1467 = .data:0x802B4F80; // type:object size:0x10 scope:local align:4 data:string +@1468 = .data:0x802B4F90; // type:object size:0xF scope:local align:4 data:string +@1469 = .data:0x802B4FA0; // type:object size:0xF scope:local align:4 data:string +@1470 = .data:0x802B4FB0; // type:object size:0x12 scope:local align:4 data:string +@1471 = .data:0x802B4FC4; // type:object size:0x11 scope:local align:4 data:string +@1472 = .data:0x802B4FD8; // type:object size:0x12 scope:local align:4 data:string +@1473 = .data:0x802B4FEC; // type:object size:0xE scope:local align:4 data:string +@1474 = .data:0x802B4FFC; // type:object size:0x13 scope:local align:4 data:string +@1475 = .data:0x802B5010; // type:object size:0x11 scope:local align:4 data:string +@1476 = .data:0x802B5024; // type:object size:0x13 scope:local align:4 data:string +@1477 = .data:0x802B5038; // type:object size:0xE scope:local align:4 data:string +@1478 = .data:0x802B5048; // type:object size:0xE scope:local align:4 data:string +@1479 = .data:0x802B5058; // type:object size:0xE scope:local align:4 data:string +@1480 = .data:0x802B5068; // type:object size:0xE scope:local align:4 data:string +@1481 = .data:0x802B5078; // type:object size:0x13 scope:local align:4 data:string +@1482 = .data:0x802B508C; // type:object size:0xF scope:local align:4 data:string +@1483 = .data:0x802B509C; // type:object size:0xE scope:local align:4 data:string +@1484 = .data:0x802B50AC; // type:object size:0xF scope:local align:4 data:string +@1485 = .data:0x802B50BC; // type:object size:0x10 scope:local align:4 data:string +@1486 = .data:0x802B50CC; // type:object size:0x14 scope:local align:4 data:string +@1487 = .data:0x802B50E0; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802B50F0; // type:object size:0x14 scope:local align:4 data:string +@1489 = .data:0x802B5104; // type:object size:0x12 scope:local align:4 data:string +@1490 = .data:0x802B5118; // type:object size:0x10 scope:local align:4 data:string +@1491 = .data:0x802B5128; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802B513C; // type:object size:0x11 scope:local align:4 data:string +@1493 = .data:0x802B5150; // type:object size:0x12 scope:local align:4 data:string +@1494 = .data:0x802B5164; // type:object size:0xF scope:local align:4 data:string +@1495 = .data:0x802B5174; // type:object size:0xE scope:local align:4 data:string +@1496 = .data:0x802B5184; // type:object size:0xF scope:local align:4 data:string +@1497 = .data:0x802B5194; // type:object size:0xE scope:local align:4 data:string +@1498 = .data:0x802B51A4; // type:object size:0xE scope:local align:4 data:string +@1499 = .data:0x802B51B4; // type:object size:0x13 scope:local align:4 data:string +@1500 = .data:0x802B51C8; // type:object size:0x11 scope:local align:4 data:string +@1501 = .data:0x802B51DC; // type:object size:0x10 scope:local align:4 data:string +@1502 = .data:0x802B51EC; // type:object size:0x11 scope:local align:4 data:string +@1503 = .data:0x802B5200; // type:object size:0xE scope:local align:4 data:string +@1504 = .data:0x802B5210; // type:object size:0x14 scope:local align:4 data:string +@1505 = .data:0x802B5224; // type:object size:0x11 scope:local align:4 data:string +@1506 = .data:0x802B5238; // type:object size:0xC scope:local align:4 data:string +@1507 = .data:0x802B5244; // type:object size:0x11 scope:local align:4 data:string +@1508 = .data:0x802B5258; // type:object size:0xE scope:local align:4 data:string +@1509 = .data:0x802B5268; // type:object size:0x10 scope:local align:4 data:string +@1510 = .data:0x802B5278; // type:object size:0xF scope:local align:4 data:string +@1511 = .data:0x802B5288; // type:object size:0x12 scope:local align:4 data:string +@1512 = .data:0x802B529C; // type:object size:0x13 scope:local align:4 data:string +@1513 = .data:0x802B52B0; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B52C0; // type:object size:0xE scope:local align:4 data:string +@1515 = .data:0x802B52D0; // type:object size:0xE scope:local align:4 data:string +@1516 = .data:0x802B52E0; // type:object size:0xC scope:local align:4 data:string +@1517 = .data:0x802B52EC; // type:object size:0xD scope:local align:4 data:string +@1518 = .data:0x802B52FC; // type:object size:0xD scope:local align:4 data:string +@1519 = .data:0x802B530C; // type:object size:0xF scope:local align:4 data:string +@1520 = .data:0x802B531C; // type:object size:0x10 scope:local align:4 data:string +@1521 = .data:0x802B532C; // type:object size:0x12 scope:local align:4 data:string +@1522 = .data:0x802B5340; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802B5354; // type:object size:0x13 scope:local align:4 data:string +@1524 = .data:0x802B5368; // type:object size:0x11 scope:local align:4 data:string +@1525 = .data:0x802B537C; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802B5390; // type:object size:0x13 scope:local align:4 data:string +@1527 = .data:0x802B53A4; // type:object size:0x14 scope:local align:4 data:string +@1528 = .data:0x802B53B8; // type:object size:0x13 scope:local align:4 data:string +@1529 = .data:0x802B53CC; // type:object size:0x15 scope:local align:4 data:string +@1535 = .data:0x802B53E4; // type:object size:0x16 scope:local align:4 data:string +@1536 = .data:0x802B53FC; // type:object size:0x16 scope:local align:4 data:string +@1537 = .data:0x802B5414; // type:object size:0xE scope:local align:4 data:string +@1538 = .data:0x802B5424; // type:object size:0xE scope:local align:4 data:string +@1539 = .data:0x802B5434; // type:object size:0xE scope:local align:4 data:string +@1540 = .data:0x802B5444; // type:object size:0xE scope:local align:4 data:string +@1541 = .data:0x802B5454; // type:object size:0xE scope:local align:4 data:string +@1542 = .data:0x802B5464; // type:object size:0xF scope:local align:4 data:string +@1543 = .data:0x802B5474; // type:object size:0x10 scope:local align:4 data:string +@1544 = .data:0x802B5484; // type:object size:0xE scope:local align:4 data:string +@1545 = .data:0x802B5494; // type:object size:0x14 scope:local align:4 data:string +@1546 = .data:0x802B54A8; // type:object size:0x17 scope:local align:4 data:string +@1547 = .data:0x802B54C0; // type:object size:0x12 scope:local align:4 data:string +@1548 = .data:0x802B54D4; // type:object size:0x14 scope:local align:4 data:string +@1549 = .data:0x802B54E8; // type:object size:0x13 scope:local align:4 data:string +@1550 = .data:0x802B54FC; // type:object size:0xF scope:local align:4 data:string +@1551 = .data:0x802B550C; // type:object size:0x11 scope:local align:4 data:string +@1552 = .data:0x802B5520; // type:object size:0x11 scope:local align:4 data:string +@1553 = .data:0x802B5534; // type:object size:0x11 scope:local align:4 data:string +@1554 = .data:0x802B5548; // type:object size:0xE scope:local align:4 data:string +@1555 = .data:0x802B5558; // type:object size:0xD scope:local align:4 data:string +@1556 = .data:0x802B5568; // type:object size:0xF scope:local align:4 data:string +@1557 = .data:0x802B5578; // type:object size:0x11 scope:local align:4 data:string +@1558 = .data:0x802B558C; // type:object size:0xD scope:local align:4 data:string +@1559 = .data:0x802B559C; // type:object size:0xF scope:local align:4 data:string +@1560 = .data:0x802B55AC; // type:object size:0xD scope:local align:4 data:string +@1561 = .data:0x802B55BC; // type:object size:0xE scope:local align:4 data:string +@1562 = .data:0x802B55CC; // type:object size:0xE scope:local align:4 data:string +@1563 = .data:0x802B55DC; // type:object size:0x11 scope:local align:4 data:string +@1564 = .data:0x802B55F0; // type:object size:0xF scope:local align:4 data:string +@1565 = .data:0x802B5600; // type:object size:0x12 scope:local align:4 data:string +@1566 = .data:0x802B5614; // type:object size:0xF scope:local align:4 data:string +@1567 = .data:0x802B5624; // type:object size:0xF scope:local align:4 data:string +@1568 = .data:0x802B5634; // type:object size:0xF scope:local align:4 data:string +@1569 = .data:0x802B5644; // type:object size:0xF scope:local align:4 data:string +@1570 = .data:0x802B5654; // type:object size:0xE scope:local align:4 data:string +@1571 = .data:0x802B5664; // type:object size:0x11 scope:local align:4 data:string +@1572 = .data:0x802B5678; // type:object size:0xE scope:local align:4 data:string +@1573 = .data:0x802B5688; // type:object size:0xF scope:local align:4 data:string +@1574 = .data:0x802B5698; // type:object size:0xF scope:local align:4 data:string +@1575 = .data:0x802B56A8; // type:object size:0xF scope:local align:4 data:string +@1576 = .data:0x802B56B8; // type:object size:0x10 scope:local align:4 data:string +@1577 = .data:0x802B56C8; // type:object size:0xF scope:local align:4 data:string +@1578 = .data:0x802B56D8; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802B56E8; // type:object size:0x10 scope:local align:4 data:string +@1580 = .data:0x802B56F8; // type:object size:0x10 scope:local align:4 data:string +@1581 = .data:0x802B5708; // type:object size:0x11 scope:local align:4 data:string +@1582 = .data:0x802B571C; // type:object size:0xE scope:local align:4 data:string +@1583 = .data:0x802B572C; // type:object size:0xF scope:local align:4 data:string +@1584 = .data:0x802B573C; // type:object size:0xF scope:local align:4 data:string +@1585 = .data:0x802B574C; // type:object size:0xE scope:local align:4 data:string +@1586 = .data:0x802B575C; // type:object size:0xF scope:local align:4 data:string +@1587 = .data:0x802B576C; // type:object size:0x11 scope:local align:4 data:string +@1588 = .data:0x802B5780; // type:object size:0x10 scope:local align:4 data:string +@1589 = .data:0x802B5790; // type:object size:0xE scope:local align:4 data:string +@1590 = .data:0x802B57A0; // type:object size:0xF scope:local align:4 data:string +@1591 = .data:0x802B57B0; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802B57C0; // type:object size:0x11 scope:local align:4 data:string +@1593 = .data:0x802B57D4; // type:object size:0x16 scope:local align:4 data:string +@1594 = .data:0x802B57EC; // type:object size:0x11 scope:local align:4 data:string +@1595 = .data:0x802B5800; // type:object size:0x14 scope:local align:4 data:string +@1596 = .data:0x802B5814; // type:object size:0x11 scope:local align:4 data:string +@1597 = .data:0x802B5828; // type:object size:0xF scope:local align:4 data:string +@1598 = .data:0x802B5838; // type:object size:0xF scope:local align:4 data:string +@1599 = .data:0x802B5848; // type:object size:0xF scope:local align:4 data:string +@1600 = .data:0x802B5858; // type:object size:0xF scope:local align:4 data:string +@1601 = .data:0x802B5868; // type:object size:0xF scope:local align:4 data:string +@1602 = .data:0x802B5878; // type:object size:0xF scope:local align:4 data:string +@1603 = .data:0x802B5888; // type:object size:0x15 scope:local align:4 data:string +@1604 = .data:0x802B58A0; // type:object size:0xE scope:local align:4 data:string +@1605 = .data:0x802B58B0; // type:object size:0xE scope:local align:4 data:string +@1606 = .data:0x802B58C0; // type:object size:0xC scope:local align:4 data:string +@1607 = .data:0x802B58CC; // type:object size:0xC scope:local align:4 data:string +@1608 = .data:0x802B58D8; // type:object size:0x14 scope:local align:4 data:string +@1609 = .data:0x802B58EC; // type:object size:0x10 scope:local align:4 data:string +@1610 = .data:0x802B58FC; // type:object size:0xF scope:local align:4 data:string +@1611 = .data:0x802B590C; // type:object size:0x10 scope:local align:4 data:string +@1612 = .data:0x802B591C; // type:object size:0x13 scope:local align:4 data:string +@1613 = .data:0x802B5930; // type:object size:0x12 scope:local align:4 data:string +@1614 = .data:0x802B5944; // type:object size:0x14 scope:local align:4 data:string +@1615 = .data:0x802B5958; // type:object size:0x12 scope:local align:4 data:string +@1616 = .data:0x802B596C; // type:object size:0x12 scope:local align:4 data:string +@1617 = .data:0x802B5980; // type:object size:0xD scope:local align:4 data:string +@1618 = .data:0x802B5990; // type:object size:0x11 scope:local align:4 data:string +@1619 = .data:0x802B59A4; // type:object size:0xE scope:local align:4 data:string +@1620 = .data:0x802B59B4; // type:object size:0x13 scope:local align:4 data:string +@1621 = .data:0x802B59C8; // type:object size:0xD scope:local align:4 data:string +@1622 = .data:0x802B59D8; // type:object size:0x13 scope:local align:4 data:string +@1623 = .data:0x802B59EC; // type:object size:0x12 scope:local align:4 data:string +@1624 = .data:0x802B5A00; // type:object size:0x14 scope:local align:4 data:string +@1625 = .data:0x802B5A14; // type:object size:0x12 scope:local align:4 data:string +@1626 = .data:0x802B5A28; // type:object size:0x18 scope:local align:4 data:string +@1627 = .data:0x802B5A40; // type:object size:0x14 scope:local align:4 data:string +@1628 = .data:0x802B5A54; // type:object size:0x11 scope:local align:4 data:string +@1629 = .data:0x802B5A68; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802B5A78; // type:object size:0x10 scope:local align:4 data:string +@1631 = .data:0x802B5A88; // type:object size:0x17 scope:local align:4 data:string +@1632 = .data:0x802B5AA0; // type:object size:0x12 scope:local align:4 data:string +@1633 = .data:0x802B5AB4; // type:object size:0x9 scope:local align:4 data:string +@1634 = .data:0x802B5AC0; // type:object size:0xA scope:local align:4 data:string +@1635 = .data:0x802B5ACC; // type:object size:0xD scope:local align:4 data:string +@1636 = .data:0x802B5ADC; // type:object size:0x13 scope:local align:4 data:string +@1637 = .data:0x802B5AF0; // type:object size:0x14 scope:local align:4 data:string +@1638 = .data:0x802B5B04; // type:object size:0x13 scope:local align:4 data:string +@1639 = .data:0x802B5B18; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802B5B28; // type:object size:0x15 scope:local align:4 data:string +@1641 = .data:0x802B5B40; // type:object size:0x10 scope:local align:4 data:string +@1642 = .data:0x802B5B50; // type:object size:0x10 scope:local align:4 data:string +@1643 = .data:0x802B5B60; // type:object size:0x10 scope:local align:4 data:string +@1644 = .data:0x802B5B70; // type:object size:0x9 scope:local align:4 data:string +@1645 = .data:0x802B5B7C; // type:object size:0xB scope:local align:4 data:string +@1646 = .data:0x802B5B88; // type:object size:0xA scope:local align:4 data:string +@1647 = .data:0x802B5B94; // type:object size:0xB scope:local align:4 data:string +@1648 = .data:0x802B5BA0; // type:object size:0xB scope:local align:4 data:string +@1649 = .data:0x802B5BAC; // type:object size:0x9 scope:local align:4 data:string +@1650 = .data:0x802B5BB8; // type:object size:0xF scope:local align:4 data:string +@1651 = .data:0x802B5BC8; // type:object size:0x15 scope:local align:4 data:string +@1652 = .data:0x802B5BE0; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B5BEC; // type:object size:0xC scope:local align:4 data:string +@1654 = .data:0x802B5BF8; // type:object size:0x16 scope:local align:4 data:string +@1655 = .data:0x802B5C10; // type:object size:0x11 scope:local align:4 data:string +@1656 = .data:0x802B5C24; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B5C34; // type:object size:0xD scope:local align:4 data:string +@1658 = .data:0x802B5C44; // type:object size:0xF scope:local align:4 data:string +@1659 = .data:0x802B5C54; // type:object size:0x12 scope:local align:4 data:string +@1660 = .data:0x802B5C68; // type:object size:0x14 scope:local align:4 data:string +@1661 = .data:0x802B5C7C; // type:object size:0x15 scope:local align:4 data:string +soundTable = .data:0x802B5C94; // type:object size:0x19DC scope:local align:4 +@1782 = .data:0x802B7670; // type:object size:0xD scope:local align:4 data:string +@2082 = .data:0x802B7680; // type:object size:0x31 scope:local align:4 data:string +@2084 = .data:0x802B76B4; // type:object size:0x15 scope:local align:4 data:string +@2085 = .data:0x802B76CC; // type:object size:0x22 scope:local align:4 data:string +...data.0 = .data:0x802B76F0; // type:label scope:local +@1358 = .data:0x802B76F0; // type:object size:0xB scope:local align:4 data:string +@1427 = .data:0x802B76FC; // type:object size:0xA scope:local align:4 data:string +@2106 = .data:0x802B7708; // type:object size:0x9 scope:local align:4 data:string +@2107 = .data:0x802B7714; // type:object size:0xC scope:local align:4 +@2109 = .data:0x802B7720; // type:object size:0x14 scope:local align:4 +@2110 = .data:0x802B7734; // type:object size:0xC scope:local align:4 data:string +@2104 = .data:0x802B7740; // type:object size:0x24 scope:local align:4 +__vt__6CPlate = .data:0x802B7764; // type:object size:0x54 scope:global align:4 +@2121 = .data:0x802B77B8; // type:object size:0xC scope:local align:4 data:string +@2123 = .data:0x802B77C4; // type:object size:0x9 scope:local align:4 data:string +@2122 = .data:0x802B77D0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802B7828; // type:label scope:local +@1426 = .data:0x802B7828; // type:object size:0xC scope:local align:4 data:string +@1703 = .data:0x802B7834; // type:object size:0x9 scope:local align:4 data:string +@1705 = .data:0x802B7840; // type:object size:0xF scope:local align:4 data:string +@1707 = .data:0x802B7850; // type:object size:0xC scope:local align:4 +@1704 = .data:0x802B785C; // type:object size:0x14 scope:local align:4 +__vt__8ActStone = .data:0x802B7870; // type:object size:0x74 scope:global align:4 +@1719 = .data:0x802B78E4; // type:object size:0x14 scope:local align:4 data:string +@1756 = .data:0x802B7904; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7930; // type:label scope:local +@1167 = .data:0x802B7930; // type:object size:0xE scope:local align:4 data:string +@1177 = .data:0x802B7940; // type:object size:0xA scope:local align:4 data:string +@1350 = .data:0x802B794C; // type:object size:0xA scope:local align:4 data:string +@1352 = .data:0x802B7958; // type:object size:0xF scope:local align:4 data:string +@1354 = .data:0x802B7968; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B7974; // type:object size:0x14 scope:local align:4 +__vt__9ActAdjust = .data:0x802B7988; // type:object size:0x64 scope:global align:4 +@1367 = .data:0x802B79EC; // type:object size:0x17 scope:local align:4 data:string +@1369 = .data:0x802B7A04; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802B7A18; // type:object size:0xC scope:local align:4 +__vt__Q29ActAdjust11Initialiser = .data:0x802B7A24; // type:object size:0xC scope:global align:4 +@1371 = .data:0x802B7A30; // type:object size:0x14 scope:local align:4 +__vt__6ActPut = .data:0x802B7A44; // type:object size:0x64 scope:global align:4 +@1376 = .data:0x802B7AA8; // type:object size:0x14 scope:local align:4 data:string +@1377 = .data:0x802B7ABC; // type:object size:0xC scope:local align:4 +__vt__Q26ActPut11Initialiser = .data:0x802B7AC8; // type:object size:0xC scope:global align:4 +@1378 = .data:0x802B7AD4; // type:object size:0xC scope:local align:4 data:string +@1390 = .data:0x802B7B0C; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B7B20; // type:object size:0x1C scope:local align:4 +__vt__7ActPick = .data:0x802B7B3C; // type:object size:0x74 scope:global align:4 +@1394 = .data:0x802B7BB0; // type:object size:0x15 scope:local align:4 data:string +@1395 = .data:0x802B7BC8; // type:object size:0xC scope:local align:4 +__vt__Q27ActPick11Initialiser = .data:0x802B7BD4; // type:object size:0xC scope:global align:4 +@1432 = .data:0x802B7BEC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7C18; // type:label scope:local +@1794 = .data:0x802B7C18; // type:object size:0xD scope:local align:4 data:string +@1804 = .data:0x802B7C28; // type:object size:0x9 scope:local align:4 data:string +@2597 = .data:0x802B7C34; // type:object size:0x1C scope:local align:4 +@2761 = .data:0x802B7C50; // type:object size:0xC scope:local align:4 data:string +@2771 = .data:0x802B7C88; // type:object size:0xE scope:local align:4 data:string +@2773 = .data:0x802B7C98; // type:object size:0x14 scope:local align:4 data:string +@2774 = .data:0x802B7CAC; // type:object size:0xF scope:local align:4 data:string +@2776 = .data:0x802B7CBC; // type:object size:0xC scope:local align:4 +@2772 = .data:0x802B7CC8; // type:object size:0x1C scope:local align:4 +__vt__13ActJumpAttack = .data:0x802B7CE4; // type:object size:0x74 scope:global align:4 +@2788 = .data:0x802B7D58; // type:object size:0xA scope:local align:4 data:string +@2790 = .data:0x802B7D64; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802B7D70; // type:object size:0x14 scope:local align:4 +@2789 = .data:0x802B7D84; // type:object size:0x24 scope:local align:4 +__vt__9ActAttack = .data:0x802B7DA8; // type:object size:0x74 scope:global align:4 +@2833 = .data:0x802B7E28; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B7E58; // type:label scope:local +@1651 = .data:0x802B7E58; // type:object size:0xB scope:local align:4 data:string +@1676 = .data:0x802B7E64; // type:object size:0x9 scope:local align:4 data:string +@2261 = .data:0x802B7E70; // type:object size:0xC scope:local align:4 data:string +@2263 = .data:0x802B7E7C; // type:object size:0x14 scope:local align:4 data:string +@2264 = .data:0x802B7E90; // type:object size:0xF scope:local align:4 data:string +@2266 = .data:0x802B7EA0; // type:object size:0xC scope:local align:4 +@2262 = .data:0x802B7EAC; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreRest = .data:0x802B7EC8; // type:object size:0x74 scope:global align:4 +@2280 = .data:0x802B7F3C; // type:object size:0xF scope:local align:4 data:string +@2281 = .data:0x802B7F4C; // type:object size:0x1C scope:local align:4 +__vt__14ActBoreOneshot = .data:0x802B7F68; // type:object size:0x74 scope:global align:4 +@2287 = .data:0x802B7FDC; // type:object size:0xE scope:local align:4 data:string +@2288 = .data:0x802B7FEC; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreListen = .data:0x802B8000; // type:object size:0x64 scope:global align:4 +@2292 = .data:0x802B8064; // type:object size:0xC scope:local align:4 data:string +@2302 = .data:0x802B809C; // type:object size:0xC scope:local align:4 data:string +@2303 = .data:0x802B80A8; // type:object size:0x1C scope:local align:4 +__vt__11ActBoreTalk = .data:0x802B80C4; // type:object size:0x74 scope:global align:4 +@2309 = .data:0x802B8144; // type:object size:0xE scope:local align:4 data:string +@2310 = .data:0x802B8154; // type:object size:0x14 scope:local align:4 +__vt__13ActBoreSelect = .data:0x802B8168; // type:object size:0x64 scope:global align:4 +@2314 = .data:0x802B81CC; // type:object size:0xE scope:local align:4 data:string +@2315 = .data:0x802B81DC; // type:object size:0x14 scope:local align:4 +__vt__13ActFreeSelect = .data:0x802B81F0; // type:object size:0x64 scope:global align:4 +@2354 = .data:0x802B8254; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8280; // type:label scope:local +@1418 = .data:0x802B8280; // type:object size:0xD scope:local align:4 data:string +@1428 = .data:0x802B8290; // type:object size:0x9 scope:local align:4 data:string +@1503 = .data:0x802B829C; // type:object size:0xC scope:local align:4 data:string +@1513 = .data:0x802B82D4; // type:object size:0xA scope:local align:4 data:string +@1515 = .data:0x802B82E0; // type:object size:0xF scope:local align:4 data:string +@1517 = .data:0x802B82F0; // type:object size:0xC scope:local align:4 +@1514 = .data:0x802B82FC; // type:object size:0x14 scope:local align:4 +__vt__9ActBoMake = .data:0x802B8310; // type:object size:0x74 scope:global align:4 +@1529 = .data:0x802B8384; // type:object size:0x14 scope:local align:4 data:string +@1566 = .data:0x802B83A4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B83D0; // type:label scope:local +@1372 = .data:0x802B83D0; // type:object size:0xA scope:local align:4 data:string +@1524 = .data:0x802B83DC; // type:object size:0xF scope:local align:4 data:string +@1526 = .data:0x802B83EC; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802B83F8; // type:object size:0x14 scope:local align:4 +__vt__6ActBou = .data:0x802B840C; // type:object size:0x64 scope:global align:4 +@1573 = .data:0x802B8470; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B84A0; // type:label scope:local +@1793 = .data:0x802B84A0; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B84B0; // type:object size:0x9 scope:local align:4 data:string +@1830 = .data:0x802B84BC; // type:object size:0x9 scope:local align:4 data:string +@2687 = .data:0x802B84C8; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802B8500; // type:object size:0xA scope:local align:4 data:string +@2699 = .data:0x802B850C; // type:object size:0x14 scope:local align:4 data:string +@2700 = .data:0x802B8520; // type:object size:0xF scope:local align:4 data:string +@2702 = .data:0x802B8530; // type:object size:0xC scope:local align:4 +@2698 = .data:0x802B853C; // type:object size:0x1C scope:local align:4 +__vt__9ActBridge = .data:0x802B8558; // type:object size:0x74 scope:global align:4 +@2750 = .data:0x802B85D8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8608; // type:label scope:local +@1255 = .data:0x802B8608; // type:object size:0x10 scope:local align:4 data:string +@1265 = .data:0x802B8618; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802B8624; // type:object size:0xA scope:local align:4 data:string +@1499 = .data:0x802B8630; // type:object size:0xC scope:local align:4 data:string +@1509 = .data:0x802B8668; // type:object size:0xD scope:local align:4 data:string +@1511 = .data:0x802B8678; // type:object size:0x14 scope:local align:4 data:string +@1512 = .data:0x802B868C; // type:object size:0xF scope:local align:4 data:string +@1514 = .data:0x802B869C; // type:object size:0xC scope:local align:4 +@1510 = .data:0x802B86A8; // type:object size:0x1C scope:local align:4 +__vt__12ActBreakWall = .data:0x802B86C4; // type:object size:0x74 scope:global align:4 +@1561 = .data:0x802B8744; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8770; // type:label scope:local +@1671 = .data:0x802B8770; // type:object size:0x10 scope:local align:4 data:string +@1681 = .data:0x802B8780; // type:object size:0xA scope:local align:4 data:string +@3058 = .data:0x802B878C; // type:object size:0xF scope:local align:4 data:string +@3060 = .data:0x802B879C; // type:object size:0x20 scope:local align:4 +@4233 = .data:0x802B87BC; // type:object size:0xB scope:local align:4 data:string +@4234 = .data:0x802B87C8; // type:object size:0xD scope:local align:4 data:string +@4235 = .data:0x802B87D8; // type:object size:0xE scope:local align:4 data:string +@4426 = .data:0x802B87E8; // type:object size:0xD scope:local align:4 data:string +@4428 = .data:0x802B87F8; // type:object size:0x14 scope:local align:4 data:string +@4429 = .data:0x802B880C; // type:object size:0xF scope:local align:4 data:string +@4431 = .data:0x802B881C; // type:object size:0xC scope:local align:4 +@4427 = .data:0x802B8828; // type:object size:0x1C scope:local align:4 +__vt__12ActTransport = .data:0x802B8844; // type:object size:0x74 scope:global align:4 +@4480 = .data:0x802B88C4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B88F0; // type:label scope:local +@1793 = .data:0x802B88F0; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802B8900; // type:object size:0x9 scope:local align:4 data:string +@2364 = .data:0x802B890C; // type:object size:0xC scope:local align:4 data:string +@2374 = .data:0x802B8944; // type:object size:0xA scope:local align:4 data:string +@2376 = .data:0x802B8950; // type:object size:0x14 scope:local align:4 data:string +@2377 = .data:0x802B8964; // type:object size:0xF scope:local align:4 data:string +@2379 = .data:0x802B8974; // type:object size:0xC scope:local align:4 +@2375 = .data:0x802B8980; // type:object size:0x1C scope:local align:4 +__vt__9ActKinoko = .data:0x802B899C; // type:object size:0x74 scope:global align:4 +@2429 = .data:0x802B8A1C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8A48; // type:label scope:local +@1050 = .data:0x802B8A48; // type:object size:0xC scope:local align:4 data:string +@1060 = .data:0x802B8A54; // type:object size:0xD scope:local align:4 data:string +@1173 = .data:0x802B8A64; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B8A70; // type:object size:0xF scope:local align:4 data:string +@1177 = .data:0x802B8A80; // type:object size:0xC scope:local align:4 +@1174 = .data:0x802B8A8C; // type:object size:0x14 scope:local align:4 +__vt__8ActChase = .data:0x802B8AA0; // type:object size:0x64 scope:global align:4 +@1189 = .data:0x802B8B04; // type:object size:0x16 scope:local align:4 data:string +@1191 = .data:0x802B8B1C; // type:object size:0x14 scope:local align:4 data:string +@1190 = .data:0x802B8B30; // type:object size:0xC scope:local align:4 +__vt__Q28ActChase11Initialiser = .data:0x802B8B3C; // type:object size:0xC scope:global align:4 +@1228 = .data:0x802B8B48; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8B78; // type:label scope:local +@1507 = .data:0x802B8B78; // type:object size:0xC scope:local align:4 data:string +@2427 = .data:0x802B8B84; // type:object size:0x9 scope:local align:4 data:string +@2429 = .data:0x802B8B90; // type:object size:0x12 scope:local align:4 data:string +@2430 = .data:0x802B8BA4; // type:object size:0xF scope:local align:4 data:string +@2432 = .data:0x802B8BB4; // type:object size:0xC scope:local align:4 +@2428 = .data:0x802B8BC0; // type:object size:0x1C scope:local align:4 +__vt__8ActCrowd = .data:0x802B8BDC; // type:object size:0x74 scope:global align:4 +__vt__17SlotChangeListner = .data:0x802B8C50; // type:object size:0xC scope:weak align:4 +@2479 = .data:0x802B8C5C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8C88; // type:label scope:local +@1475 = .data:0x802B8C88; // type:object size:0xC scope:local align:4 data:string +@1775 = .data:0x802B8C94; // type:object size:0x9 scope:local align:4 data:string +@1777 = .data:0x802B8CA0; // type:object size:0x14 scope:local align:4 data:string +@1778 = .data:0x802B8CB4; // type:object size:0xF scope:local align:4 data:string +@1780 = .data:0x802B8CC4; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802B8CD0; // type:object size:0x1C scope:local align:4 +__vt__8ActDecoy = .data:0x802B8CEC; // type:object size:0x74 scope:global align:4 +@1828 = .data:0x802B8D6C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8D98; // type:label scope:local +@1372 = .data:0x802B8D98; // type:object size:0xC scope:local align:4 data:string +@1617 = .data:0x802B8DA4; // type:object size:0xC scope:local align:4 data:string +@1627 = .data:0x802B8DDC; // type:object size:0x9 scope:local align:4 data:string +@1629 = .data:0x802B8DE8; // type:object size:0xF scope:local align:4 data:string +@1631 = .data:0x802B8DF8; // type:object size:0xC scope:local align:4 +@1628 = .data:0x802B8E04; // type:object size:0x14 scope:local align:4 +__vt__8ActEnter = .data:0x802B8E18; // type:object size:0x64 scope:global align:4 +@1678 = .data:0x802B8E7C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8EA8; // type:label scope:local +@1051 = .data:0x802B8EA8; // type:object size:0xD scope:local align:4 data:string +@1061 = .data:0x802B8EB8; // type:object size:0x9 scope:local align:4 data:string +@1199 = .data:0x802B8EC4; // type:object size:0x14 scope:local align:4 data:string +@1200 = .data:0x802B8ED8; // type:object size:0xA scope:local align:4 data:string +@1202 = .data:0x802B8EE4; // type:object size:0xF scope:local align:4 data:string +@1204 = .data:0x802B8EF4; // type:object size:0xC scope:local align:4 +@1201 = .data:0x802B8F00; // type:object size:0x14 scope:local align:4 +__vt__9ActEscape = .data:0x802B8F14; // type:object size:0x64 scope:global align:4 +@1214 = .data:0x802B8F78; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802B8F90; // type:object size:0x14 scope:local align:4 data:string +@1215 = .data:0x802B8FA4; // type:object size:0xC scope:local align:4 +__vt__Q29ActEscape11Initialiser = .data:0x802B8FB0; // type:object size:0xC scope:global align:4 +@1253 = .data:0x802B8FBC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B8FE8; // type:label scope:local +@1370 = .data:0x802B8FE8; // type:object size:0xB scope:local align:4 data:string +@1535 = .data:0x802B8FF4; // type:object size:0xF scope:local align:4 data:string +@1537 = .data:0x802B9004; // type:object size:0xC scope:local align:4 +@1534 = .data:0x802B9010; // type:object size:0x14 scope:local align:4 +__vt__7ActExit = .data:0x802B9024; // type:object size:0x64 scope:global align:4 +@1584 = .data:0x802B9088; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B90B8; // type:label scope:local +@1169 = .data:0x802B90B8; // type:object size:0xB scope:local align:4 data:string +@1341 = .data:0x802B90C4; // type:object size:0x14 scope:local align:4 data:string +@1342 = .data:0x802B90D8; // type:object size:0xF scope:local align:4 data:string +@1344 = .data:0x802B90E8; // type:object size:0xC scope:local align:4 +@1340 = .data:0x802B90F4; // type:object size:0x1C scope:local align:4 +__vt__7ActMine = .data:0x802B9110; // type:object size:0x74 scope:global align:4 +@1358 = .data:0x802B9184; // type:object size:0xC scope:local align:4 data:string +@1404 = .data:0x802B91C8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B91F8; // type:label scope:local +@1357 = .data:0x802B91F8; // type:object size:0x10 scope:local align:4 data:string +@1367 = .data:0x802B9208; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802B9214; // type:object size:0xD scope:local align:4 data:string +@1776 = .data:0x802B9224; // type:object size:0x14 scope:local align:4 data:string +@1777 = .data:0x802B9238; // type:object size:0xF scope:local align:4 data:string +@1779 = .data:0x802B9248; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802B9254; // type:object size:0x1C scope:local align:4 +__vt__12ActFormation = .data:0x802B9270; // type:object size:0x74 scope:global align:4 +@1827 = .data:0x802B92F0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9320; // type:label scope:local +@1610 = .data:0x802B9320; // type:object size:0xB scope:local align:4 data:string +motions = .data:0x802B932C; // type:object size:0x10 scope:local align:4 +@1899 = .data:0x802B933C; // type:object size:0x14 scope:local align:4 data:string +@1900 = .data:0x802B9350; // type:object size:0xF scope:local align:4 data:string +@1902 = .data:0x802B9360; // type:object size:0xC scope:local align:4 +@1898 = .data:0x802B936C; // type:object size:0x1C scope:local align:4 +__vt__7ActFree = .data:0x802B9388; // type:object size:0x74 scope:global align:4 +@1951 = .data:0x802B9408; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9438; // type:label scope:local +@1050 = .data:0x802B9438; // type:object size:0xB scope:local align:4 data:string +@1293 = .data:0x802B9444; // type:object size:0xF scope:local align:4 data:string +@1295 = .data:0x802B9454; // type:object size:0xC scope:local align:4 +@1292 = .data:0x802B9460; // type:object size:0x14 scope:local align:4 +__vt__7ActGoto = .data:0x802B9474; // type:object size:0x64 scope:global align:4 +@1308 = .data:0x802B94D8; // type:object size:0x15 scope:local align:4 data:string +@1310 = .data:0x802B94F0; // type:object size:0x14 scope:local align:4 data:string +@1309 = .data:0x802B9504; // type:object size:0xC scope:local align:4 +__vt__Q27ActGoto11Initialiser = .data:0x802B9510; // type:object size:0xC scope:global align:4 +@1347 = .data:0x802B951C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9548; // type:label scope:local +@1476 = .data:0x802B9548; // type:object size:0xC scope:local align:4 data:string +@2247 = .data:0x802B9554; // type:object size:0x9 scope:local align:4 data:string +@2249 = .data:0x802B9560; // type:object size:0xF scope:local align:4 data:string +@2251 = .data:0x802B9570; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802B957C; // type:object size:0x14 scope:local align:4 +__vt__8ActGuard = .data:0x802B9590; // type:object size:0x64 scope:global align:4 +@2298 = .data:0x802B95F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9620; // type:label scope:local +@1147 = .data:0x802B9620; // type:object size:0xB scope:local align:4 data:string +@1157 = .data:0x802B962C; // type:object size:0x9 scope:local align:4 data:string +@1175 = .data:0x802B9638; // type:object size:0xA scope:local align:4 data:string +@1376 = .data:0x802B9644; // type:object size:0xC scope:local align:4 data:string +@1386 = .data:0x802B967C; // type:object size:0xA scope:local align:4 data:string +@1388 = .data:0x802B9688; // type:object size:0x14 scope:local align:4 data:string +@1389 = .data:0x802B969C; // type:object size:0xF scope:local align:4 data:string +@1391 = .data:0x802B96AC; // type:object size:0xC scope:local align:4 +@1387 = .data:0x802B96B8; // type:object size:0x1C scope:local align:4 +__vt__9ActFlower = .data:0x802B96D4; // type:object size:0x74 scope:global align:4 +@1405 = .data:0x802B9754; // type:object size:0xC scope:local align:4 data:string +@1407 = .data:0x802B9760; // type:object size:0xA scope:local align:4 data:string +@1408 = .data:0x802B976C; // type:object size:0x14 scope:local align:4 +@1406 = .data:0x802B9780; // type:object size:0x1C scope:local align:4 +__vt__11ActPickItem = .data:0x802B979C; // type:object size:0x64 scope:global align:4 +@1450 = .data:0x802B9800; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9830; // type:label scope:local +@1050 = .data:0x802B9830; // type:object size:0x13 scope:local align:4 data:string +@1060 = .data:0x802B9844; // type:object size:0xE scope:local align:4 data:string +@1138 = .data:0x802B9854; // type:object size:0xB scope:local align:4 data:string +@1140 = .data:0x802B9860; // type:object size:0xF scope:local align:4 data:string +@1142 = .data:0x802B9870; // type:object size:0xC scope:local align:4 +@1143 = .data:0x802B987C; // type:object size:0xA scope:local align:4 data:string +@1144 = .data:0x802B9888; // type:object size:0x14 scope:local align:4 +@1139 = .data:0x802B989C; // type:object size:0x1C scope:local align:4 +__vt__10ActDeliver = .data:0x802B98B8; // type:object size:0x64 scope:global align:4 +@1163 = .data:0x802B991C; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802B9934; // type:object size:0x14 scope:local align:4 data:string +@1164 = .data:0x802B9948; // type:object size:0xC scope:local align:4 +__vt__Q210ActDeliver11Initialiser = .data:0x802B9954; // type:object size:0xC scope:global align:4 +__vt__Q26Action11Initialiser = .data:0x802B9960; // type:object size:0xC scope:weak align:4 +@1167 = .data:0x802B996C; // type:object size:0x10 scope:local align:4 data:string +@1168 = .data:0x802B997C; // type:object size:0x1C scope:local align:4 +__vt__15ActPickCreature = .data:0x802B9998; // type:object size:0x64 scope:global align:4 +@1211 = .data:0x802B99FC; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9A28; // type:label scope:local +@1375 = .data:0x802B9A28; // type:object size:0xE scope:local align:4 data:string +@1385 = .data:0x802B9A38; // type:object size:0xA scope:local align:4 data:string +@1643 = .data:0x802B9A44; // type:object size:0xC scope:local align:4 data:string +@1653 = .data:0x802B9A7C; // type:object size:0x13 scope:local align:4 data:string +@1655 = .data:0x802B9A90; // type:object size:0xF scope:local align:4 data:string +@1657 = .data:0x802B9AA0; // type:object size:0xC scope:local align:4 +@1654 = .data:0x802B9AAC; // type:object size:0x14 scope:local align:4 +__vt__18ActPulloutCreature = .data:0x802B9AC0; // type:object size:0x74 scope:global align:4 +@1669 = .data:0x802B9B34; // type:object size:0x14 scope:local align:4 data:string +@1670 = .data:0x802B9B54; // type:object size:0xB scope:local align:4 data:string +@1672 = .data:0x802B9B60; // type:object size:0xA scope:local align:4 data:string +@1673 = .data:0x802B9B6C; // type:object size:0x14 scope:local align:4 +@1671 = .data:0x802B9B80; // type:object size:0x1C scope:local align:4 +__vt__10ActPullout = .data:0x802B9B9C; // type:object size:0x64 scope:global align:4 +@1715 = .data:0x802B9C00; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9C30; // type:label scope:local +@1795 = .data:0x802B9C30; // type:object size:0xB scope:local align:4 data:string +@1882 = .data:0x802B9C3C; // type:object size:0x34 scope:local align:4 +@2015 = .data:0x802B9C70; // type:object size:0xC scope:local align:4 data:string +@2027 = .data:0x802B9CA8; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802B9CBC; // type:object size:0xF scope:local align:4 data:string +@2030 = .data:0x802B9CCC; // type:object size:0xC scope:local align:4 +@2026 = .data:0x802B9CD8; // type:object size:0x1C scope:local align:4 +__vt__7ActPush = .data:0x802B9CF4; // type:object size:0x74 scope:global align:4 +@2080 = .data:0x802B9D74; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9DA0; // type:label scope:local +@1701 = .data:0x802B9DA0; // type:object size:0xA scope:local align:4 data:string +@1711 = .data:0x802B9DAC; // type:object size:0x9 scope:local align:4 data:string +@2650 = .data:0x802B9DB8; // type:object size:0xB scope:local align:4 data:string +@2652 = .data:0x802B9DC4; // type:object size:0xF scope:local align:4 data:string +@2654 = .data:0x802B9DD4; // type:object size:0xC scope:local align:4 +@2651 = .data:0x802B9DE0; // type:object size:0x14 scope:local align:4 +__vt__10ActPutItem = .data:0x802B9DF4; // type:object size:0x64 scope:global align:4 +@2666 = .data:0x802B9E58; // type:object size:0xB scope:local align:4 data:string +@2668 = .data:0x802B9E64; // type:object size:0x14 scope:local align:4 data:string +@2667 = .data:0x802B9E78; // type:object size:0x1C scope:local align:4 +__vt__10ActPutBomb = .data:0x802B9E94; // type:object size:0x74 scope:global align:4 +@2674 = .data:0x802B9F08; // type:object size:0xC scope:local align:4 data:string +@2720 = .data:0x802B9F4C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802B9F78; // type:label scope:local +@1052 = .data:0x802B9F78; // type:object size:0x11 scope:local align:4 data:string +@1062 = .data:0x802B9F8C; // type:object size:0xD scope:local align:4 data:string +@1346 = .data:0x802B9F9C; // type:object size:0x9 scope:local align:4 +stateName = .data:0x802B9FA8; // type:object size:0xC scope:local align:4 +@1351 = .data:0x802B9FB4; // type:object size:0xE scope:local align:4 data:string +@1353 = .data:0x802B9FC4; // type:object size:0xF scope:local align:4 data:string +@1355 = .data:0x802B9FD4; // type:object size:0xC scope:local align:4 +@1352 = .data:0x802B9FE0; // type:object size:0x14 scope:local align:4 +__vt__13ActRandomBoid = .data:0x802B9FF4; // type:object size:0x64 scope:global align:4 +@1365 = .data:0x802BA058; // type:object size:0x1B scope:local align:4 data:string +@1367 = .data:0x802BA074; // type:object size:0x14 scope:local align:4 data:string +@1366 = .data:0x802BA088; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid11Initialiser = .data:0x802BA094; // type:object size:0xC scope:global align:4 +@1368 = .data:0x802BA0A0; // type:object size:0x14 scope:local align:4 data:string +@1369 = .data:0x802BA0C0; // type:object size:0x1C scope:local align:4 data:string +@1370 = .data:0x802BA0DC; // type:object size:0xC scope:local align:4 +__vt__Q213ActRandomBoid12AnimListener = .data:0x802BA0E8; // type:object size:0xC scope:global align:4 +@1407 = .data:0x802BA0F4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA120; // type:label scope:local +@1793 = .data:0x802BA120; // type:object size:0xD scope:local align:4 data:string +@1803 = .data:0x802BA130; // type:object size:0x9 scope:local align:4 data:string +@2083 = .data:0x802BA13C; // type:object size:0xA scope:local align:4 data:string +@2085 = .data:0x802BA148; // type:object size:0x14 scope:local align:4 data:string +@2086 = .data:0x802BA15C; // type:object size:0xF scope:local align:4 data:string +@2088 = .data:0x802BA16C; // type:object size:0xC scope:local align:4 +@2084 = .data:0x802BA178; // type:object size:0x1C scope:local align:4 +__vt__9ActRescue = .data:0x802BA194; // type:object size:0x74 scope:global align:4 +@2138 = .data:0x802BA214; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA240; // type:label scope:local +@1370 = .data:0x802BA240; // type:object size:0xB scope:local align:4 data:string +@1445 = .data:0x802BA24C; // type:object size:0xF scope:local align:4 data:string +@1447 = .data:0x802BA25C; // type:object size:0xC scope:local align:4 +@1444 = .data:0x802BA268; // type:object size:0x14 scope:local align:4 +__vt__7ActRope = .data:0x802BA27C; // type:object size:0x64 scope:global align:4 +@1495 = .data:0x802BA2E0; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA310; // type:label scope:local +@1477 = .data:0x802BA310; // type:object size:0xC scope:local align:4 data:string +@1837 = .data:0x802BA31C; // type:object size:0x11 scope:local align:4 data:string +@1839 = .data:0x802BA330; // type:object size:0x14 scope:local align:4 data:string +@1840 = .data:0x802BA344; // type:object size:0xF scope:local align:4 data:string +@1842 = .data:0x802BA354; // type:object size:0xC scope:local align:4 +@1838 = .data:0x802BA360; // type:object size:0x1C scope:local align:4 +__vt__16ActShootCreature = .data:0x802BA37C; // type:object size:0x74 scope:global align:4 +@1854 = .data:0x802BA3FC; // type:object size:0x9 scope:local align:4 data:string +@1856 = .data:0x802BA408; // type:object size:0xA scope:local align:4 data:string +@1857 = .data:0x802BA414; // type:object size:0x14 scope:local align:4 +@1855 = .data:0x802BA428; // type:object size:0x1C scope:local align:4 +__vt__8ActShoot = .data:0x802BA444; // type:object size:0x64 scope:global align:4 +@1863 = .data:0x802BA4A8; // type:object size:0x14 scope:local align:4 data:string +@1901 = .data:0x802BA4C8; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA4F8; // type:label scope:local +@1050 = .data:0x802BA4F8; // type:object size:0xC scope:local align:4 data:string +@1110 = .data:0x802BA504; // type:object size:0xA scope:local align:4 data:string +@1168 = .data:0x802BA510; // type:object size:0x9 scope:local align:4 data:string +@1170 = .data:0x802BA51C; // type:object size:0xF scope:local align:4 data:string +@1172 = .data:0x802BA52C; // type:object size:0xC scope:local align:4 +@1169 = .data:0x802BA538; // type:object size:0x14 scope:local align:4 +__vt__8ActWatch = .data:0x802BA54C; // type:object size:0x64 scope:global align:4 +@1182 = .data:0x802BA5B0; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802BA5C8; // type:object size:0x14 scope:local align:4 data:string +@1183 = .data:0x802BA5DC; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch11Initialiser = .data:0x802BA5E8; // type:object size:0xC scope:global align:4 +@1185 = .data:0x802BA5F4; // type:object size:0x14 scope:local align:4 data:string +@1186 = .data:0x802BA614; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802BA62C; // type:object size:0xC scope:local align:4 +__vt__Q28ActWatch12AnimListener = .data:0x802BA638; // type:object size:0xC scope:global align:4 +@1224 = .data:0x802BA644; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA670; // type:label scope:local +@1426 = .data:0x802BA670; // type:object size:0xB scope:local align:4 data:string +@1661 = .data:0x802BA67C; // type:object size:0xF scope:local align:4 data:string +@1663 = .data:0x802BA68C; // type:object size:0xC scope:local align:4 +@1660 = .data:0x802BA698; // type:object size:0x14 scope:local align:4 +__vt__7ActWeed = .data:0x802BA6AC; // type:object size:0x74 scope:global align:4 +@1675 = .data:0x802BA720; // type:object size:0x14 scope:local align:4 data:string +@1712 = .data:0x802BA740; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BA770; // type:label scope:local +@1216 = .data:0x802BA770; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BA780; // type:object size:0x9 scope:local align:4 data:string +@1235 = .data:0x802BA78C; // type:object size:0xA scope:local align:4 data:string +info__8Reaction = .data:0x802BA798; // type:object size:0x24 scope:global align:4 +@1287 = .data:0x802BA7BC; // type:object size:0x2C scope:local align:4 +@1301 = .data:0x802BA7E8; // type:object size:0x2C scope:local align:4 +@1592 = .data:0x802BA814; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802BA820; // type:object size:0xB scope:local align:4 data:string +@1964 = .data:0x802BA82C; // type:object size:0x11 scope:local align:4 data:string +@1967 = .data:0x802BA840; // type:object size:0x16 scope:local align:4 data:string +@1968 = .data:0x802BA858; // type:object size:0xA scope:local align:4 data:string +@1970 = .data:0x802BA864; // type:object size:0xF scope:local align:4 data:string +@1972 = .data:0x802BA874; // type:object size:0xC scope:local align:4 +@1969 = .data:0x802BA880; // type:object size:0x14 scope:local align:4 +__vt__9TopAction = .data:0x802BA894; // type:object size:0x64 scope:global align:4 +@1979 = .data:0x802BA8F8; // type:object size:0x14 scope:local align:4 data:string +@1980 = .data:0x802BA918; // type:object size:0x1A scope:local align:4 data:string +@1981 = .data:0x802BA934; // type:object size:0xC scope:local align:4 +__vt__Q29TopAction14MotionListener = .data:0x802BA940; // type:object size:0xC scope:global align:4 +@1982 = .data:0x802BA94C; // type:object size:0x9 scope:local align:4 data:string +@1983 = .data:0x802BA958; // type:object size:0x14 scope:local align:4 +__vt__8OrAction = .data:0x802BA96C; // type:object size:0x64 scope:global align:4 +@1991 = .data:0x802BA9D0; // type:object size:0xA scope:local align:4 data:string +@1992 = .data:0x802BA9DC; // type:object size:0x14 scope:local align:4 +__vt__9AndAction = .data:0x802BA9F0; // type:object size:0x64 scope:global align:4 +__vt__6Action = .data:0x802BAA54; // type:object size:0x64 scope:global align:4 +__vt__15Receiver<4Piki> = .data:0x802BAAB8; // type:object size:0x38 scope:weak align:4 +...data.0 = .data:0x802BAAF0; // type:label scope:local +@1468 = .data:0x802BAAF0; // type:object size:0xC scope:local align:4 data:string +@1595 = .data:0x802BAAFC; // type:object size:0x9 scope:local align:4 data:string +@1684 = .data:0x802BAB08; // type:object size:0xB scope:local align:4 data:string +@1685 = .data:0x802BAB14; // type:object size:0x9 scope:local align:4 data:string +@1867 = .data:0x802BAB20; // type:object size:0xC scope:local align:4 data:string +@1870 = .data:0x802BAB2C; // type:object size:0xC scope:local align:4 +@1872 = .data:0x802BAB38; // type:object size:0x14 scope:local align:4 +@1868 = .data:0x802BAB4C; // type:object size:0x1C scope:local align:4 +__vt__11CreatureInf = .data:0x802BAB68; // type:object size:0x20 scope:global align:4 +@1875 = .data:0x802BAB88; // type:object size:0xF scope:local align:4 data:string +@1878 = .data:0x802BAB98; // type:object size:0xB scope:local align:4 data:string +@1879 = .data:0x802BABA4; // type:object size:0xC scope:local align:4 +@1876 = .data:0x802BABB0; // type:object size:0x14 scope:local align:4 +__vt__14CreatureInfMgr = .data:0x802BABC4; // type:object size:0x20 scope:global align:4 +@1880 = .data:0x802BABE4; // type:object size:0xC scope:local align:4 data:string +@1881 = .data:0x802BABF0; // type:object size:0x14 scope:local align:4 +__vt__11BPikiInfMgr = .data:0x802BAC04; // type:object size:0x20 scope:global align:4 +__vt__10MonoInfMgr = .data:0x802BAC24; // type:object size:0x20 scope:global align:4 +__vt__6InfMgr = .data:0x802BAC44; // type:object size:0x1C scope:weak align:4 +@1883 = .data:0x802BAC60; // type:object size:0x9 scope:local align:4 data:string +@1884 = .data:0x802BAC6C; // type:object size:0x1C scope:local align:4 +__vt__8BPikiInf = .data:0x802BAC88; // type:object size:0x20 scope:global align:4 +__vt__7BaseInf = .data:0x802BACA8; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802BACE8; // type:label scope:local +@1919 = .data:0x802BACE8; // type:object size:0x9 scope:local align:4 data:string +@2653 = .data:0x802BACF4; // type:object size:0x3C scope:local align:4 +@2666 = .data:0x802BAD30; // type:object size:0x58 scope:local align:4 +@3264 = .data:0x802BAD88; // type:object size:0xB scope:local align:4 data:string +@3412 = .data:0x802BAD94; // type:object size:0x2C scope:local align:4 +@5108 = .data:0x802BADC0; // type:object size:0x4C scope:local align:4 +@5115 = .data:0x802BAE0C; // type:object size:0x9 scope:local align:4 data:string +@5116 = .data:0x802BAE18; // type:object size:0xA scope:local align:4 data:string +states_str = .data:0x802BAE24; // type:object size:0x38 scope:global align:4 +@5121 = .data:0x802BAE5C; // type:object size:0x9 scope:local align:4 data:string +_standStr = .data:0x802BAE68; // type:object size:0x10 scope:global align:4 +@5124 = .data:0x802BAE78; // type:object size:0xA scope:local align:4 data:string +@5125 = .data:0x802BAE84; // type:object size:0xF scope:local align:4 data:string +@5126 = .data:0x802BAE94; // type:object size:0xC scope:local align:4 data:string +@5127 = .data:0x802BAEA0; // type:object size:0xA scope:local align:4 data:string +@5128 = .data:0x802BAEAC; // type:object size:0xB scope:local align:4 data:string +@5129 = .data:0x802BAEB8; // type:object size:0xA scope:local align:4 data:string +@5130 = .data:0x802BAEC4; // type:object size:0xB scope:local align:4 data:string +@5131 = .data:0x802BAED0; // type:object size:0xB scope:local align:4 data:string +@5132 = .data:0x802BAEDC; // type:object size:0xB scope:local align:4 data:string +@5133 = .data:0x802BAEE8; // type:object size:0xF scope:local align:4 data:string +@5134 = .data:0x802BAEF8; // type:object size:0xA scope:local align:4 data:string +@5135 = .data:0x802BAF04; // type:object size:0xB scope:local align:4 data:string +@5136 = .data:0x802BAF10; // type:object size:0xA scope:local align:4 data:string +@5137 = .data:0x802BAF1C; // type:object size:0xF scope:local align:4 data:string +@5138 = .data:0x802BAF2C; // type:object size:0xA scope:local align:4 data:string +@5139 = .data:0x802BAF38; // type:object size:0xC scope:local align:4 data:string +@5140 = .data:0x802BAF44; // type:object size:0xC scope:local align:4 data:string +@5141 = .data:0x802BAF50; // type:object size:0xF scope:local align:4 data:string +@5142 = .data:0x802BAF60; // type:object size:0xD scope:local align:4 data:string +@5143 = .data:0x802BAF70; // type:object size:0xC scope:local align:4 data:string +@5144 = .data:0x802BAF7C; // type:object size:0xA scope:local align:4 data:string +@5145 = .data:0x802BAF88; // type:object size:0xC scope:local align:4 data:string +@5146 = .data:0x802BAF94; // type:object size:0xC scope:local align:4 data:string +@5148 = .data:0x802BAFA0; // type:object size:0xD scope:local align:4 data:string +_modeStr = .data:0x802BAFB0; // type:object size:0x64 scope:global align:4 +_colorNames = .data:0x802BB014; // type:object size:0xC scope:local align:4 +@5392 = .data:0x802BB020; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Piki> = .data:0x802BB034; // type:object size:0x18 scope:weak align:4 +@5395 = .data:0x802BB04C; // type:object size:0x23 scope:local align:4 data:string +@5396 = .data:0x802BB070; // type:object size:0x3D scope:local align:4 data:string +@5397 = .data:0x802BB0B0; // type:object size:0x29 scope:local align:4 data:string +@5394 = .data:0x802BB0DC; // type:object size:0x1C scope:local align:4 +@5404 = .data:0x802BB158; // type:object size:0x14 scope:local align:4 data:string +@5407 = .data:0x802BB178; // type:object size:0xC scope:local align:4 data:string +@5408 = .data:0x802BB184; // type:object size:0xD scope:local align:4 data:string +@5409 = .data:0x802BB194; // type:object size:0x9 scope:local align:4 data:string +@5410 = .data:0x802BB1A0; // type:object size:0x14 scope:local align:4 +@5406 = .data:0x802BB1B4; // type:object size:0x24 scope:local align:4 +__vt__4Piki = .data:0x802BB1D8; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BB310; // type:label scope:local +@1306 = .data:0x802BB310; // type:object size:0xC scope:local align:4 data:string +@1597 = .data:0x802BB31C; // type:object size:0x16 scope:local align:4 data:string +@1598 = .data:0x802BB334; // type:object size:0x15 scope:local align:4 data:string +@1599 = .data:0x802BB34C; // type:object size:0x18 scope:local align:4 data:string +@1601 = .data:0x802BB364; // type:object size:0xC scope:local align:4 data:string +@1602 = .data:0x802BB370; // type:object size:0xC scope:local align:4 data:string +@2142 = .data:0x802BB37C; // type:object size:0x9 scope:local align:4 data:string +@2143 = .data:0x802BB388; // type:object size:0xC scope:local align:4 +@2145 = .data:0x802BB394; // type:object size:0x14 scope:local align:4 +@2146 = .data:0x802BB3A8; // type:object size:0xC scope:local align:4 data:string +@2147 = .data:0x802BB3B4; // type:object size:0xA scope:local align:4 data:string +@2148 = .data:0x802BB3C0; // type:object size:0x24 scope:local align:4 +@2149 = .data:0x802BB3E4; // type:object size:0xE scope:local align:4 data:string +@2150 = .data:0x802BB3F4; // type:object size:0x2C scope:local align:4 +@2140 = .data:0x802BB420; // type:object size:0x34 scope:local align:4 +__vt__7PikiMgr = .data:0x802BB454; // type:object size:0x88 scope:global align:4 +@2166 = .data:0x802BB4DC; // type:object size:0xA scope:local align:4 data:string +@2168 = .data:0x802BB4E8; // type:object size:0x9 scope:local align:4 data:string +@2167 = .data:0x802BB4F4; // type:object size:0xC scope:local align:4 +@2169 = .data:0x802BB514; // type:object size:0xC scope:local align:4 data:string +@2170 = .data:0x802BB520; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802BB540; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BB54C; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802BB55C; // type:object size:0xC scope:local align:4 +__vt__8PikiProp = .data:0x802BB568; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802BB580; // type:label scope:local +@1927 = .data:0x802BB580; // type:object size:0xE scope:local align:4 data:string +@1937 = .data:0x802BB590; // type:object size:0xA scope:local align:4 data:string +@2550 = .data:0x802BB59C; // type:object size:0xA scope:local align:4 data:string +@3477 = .data:0x802BB5A8; // type:object size:0xA scope:local align:4 data:string +@3851 = .data:0x802BB5B4; // type:object size:0x9 scope:local align:4 data:string +@4218 = .data:0x802BB5C0; // type:object size:0xD scope:local align:4 data:string +@4643 = .data:0x802BB5D0; // type:object size:0xE scope:local align:4 data:string +@4827 = .data:0x802BB5E0; // type:object size:0x9 scope:local align:4 data:string +@4923 = .data:0x802BB5EC; // type:object size:0xC scope:local align:4 data:string +@5042 = .data:0x802BB5F8; // type:object size:0x9 scope:local align:4 data:string +@5324 = .data:0x802BB604; // type:object size:0x28 scope:local align:4 +@5369 = .data:0x802BB62C; // type:object size:0x11 scope:local align:4 data:string +@5371 = .data:0x802BB640; // type:object size:0xF scope:local align:4 data:string +@5372 = .data:0x802BB650; // type:object size:0xD scope:local align:4 data:string +@5373 = .data:0x802BB660; // type:object size:0xC scope:local align:4 +@5374 = .data:0x802BB66C; // type:object size:0xA scope:local align:4 data:string +@5375 = .data:0x802BB678; // type:object size:0x14 scope:local align:4 +@5370 = .data:0x802BB68C; // type:object size:0x1C scope:local align:4 +__vt__16PikiEmotionState = .data:0x802BB6A8; // type:object size:0x6C scope:global align:4 +@5381 = .data:0x802BB714; // type:object size:0xE scope:local align:4 data:string +@5382 = .data:0x802BB724; // type:object size:0x1C scope:local align:4 +__vt__13PikiDeadState = .data:0x802BB740; // type:object size:0x6C scope:global align:4 +@5384 = .data:0x802BB7AC; // type:object size:0xF scope:local align:4 data:string +@5385 = .data:0x802BB7BC; // type:object size:0x1C scope:local align:4 +__vt__14PikiDyingState = .data:0x802BB7D8; // type:object size:0x6C scope:global align:4 +@5387 = .data:0x802BB844; // type:object size:0x11 scope:local align:4 data:string +@5388 = .data:0x802BB858; // type:object size:0x1C scope:local align:4 +__vt__16PikiPressedState = .data:0x802BB874; // type:object size:0x6C scope:global align:4 +@5390 = .data:0x802BB8E0; // type:object size:0x12 scope:local align:4 data:string +@5391 = .data:0x802BB8F4; // type:object size:0x1C scope:local align:4 +__vt__17PikiAutoNukiState = .data:0x802BB910; // type:object size:0x6C scope:global align:4 +@5393 = .data:0x802BB97C; // type:object size:0x10 scope:local align:4 data:string +@5394 = .data:0x802BB98C; // type:object size:0x1C scope:local align:4 +__vt__15PikiNukareState = .data:0x802BB9A8; // type:object size:0x6C scope:global align:4 +@5396 = .data:0x802BBA14; // type:object size:0x14 scope:local align:4 data:string +@5397 = .data:0x802BBA28; // type:object size:0x1C scope:local align:4 +__vt__19PikiNukareWaitState = .data:0x802BBA44; // type:object size:0x6C scope:global align:4 +@5399 = .data:0x802BBAB0; // type:object size:0xE scope:local align:4 data:string +@5400 = .data:0x802BBAC0; // type:object size:0x1C scope:local align:4 +__vt__13PikiBuryState = .data:0x802BBADC; // type:object size:0x6C scope:global align:4 +@5401 = .data:0x802BBB48; // type:object size:0x12 scope:local align:4 data:string +@5402 = .data:0x802BBB5C; // type:object size:0x1C scope:local align:4 +__vt__17PikiPushPikiState = .data:0x802BBB78; // type:object size:0x6C scope:global align:4 +@5403 = .data:0x802BBBE4; // type:object size:0xE scope:local align:4 data:string +@5404 = .data:0x802BBBF4; // type:object size:0x1C scope:local align:4 +__vt__13PikiPushState = .data:0x802BBC10; // type:object size:0x6C scope:global align:4 +@5405 = .data:0x802BBC7C; // type:object size:0xE scope:local align:4 data:string +@5406 = .data:0x802BBC8C; // type:object size:0x1C scope:local align:4 +__vt__13PikiWaveState = .data:0x802BBCA8; // type:object size:0x6C scope:global align:4 +@5407 = .data:0x802BBD14; // type:object size:0x10 scope:local align:4 data:string +@5408 = .data:0x802BBD24; // type:object size:0x1C scope:local align:4 +__vt__15PikiGrowupState = .data:0x802BBD40; // type:object size:0x6C scope:global align:4 +@5410 = .data:0x802BBDAC; // type:object size:0x16 scope:local align:4 data:string +@5411 = .data:0x802BBDC4; // type:object size:0x1C scope:local align:4 +__vt__21PikiKinokoChangeState = .data:0x802BBDE0; // type:object size:0x6C scope:global align:4 +@5413 = .data:0x802BBE4C; // type:object size:0xE scope:local align:4 data:string +@5414 = .data:0x802BBE5C; // type:object size:0x1C scope:local align:4 +__vt__13PikiGrowState = .data:0x802BBE78; // type:object size:0x6C scope:global align:4 +@5416 = .data:0x802BBEE4; // type:object size:0x10 scope:local align:4 data:string +@5417 = .data:0x802BBEF4; // type:object size:0x1C scope:local align:4 +__vt__15PikiFlyingState = .data:0x802BBF10; // type:object size:0x6C scope:global align:4 +@5418 = .data:0x802BBF7C; // type:object size:0xE scope:local align:4 data:string +@5419 = .data:0x802BBF8C; // type:object size:0x1C scope:local align:4 +__vt__13PikiEmitState = .data:0x802BBFA8; // type:object size:0x6C scope:global align:4 +@5420 = .data:0x802BC014; // type:object size:0x15 scope:local align:4 data:string +@5421 = .data:0x802BC02C; // type:object size:0x1C scope:local align:4 +__vt__20PikiWaterHangedState = .data:0x802BC048; // type:object size:0x6C scope:global align:4 +@5422 = .data:0x802BC0B4; // type:object size:0x10 scope:local align:4 data:string +@5423 = .data:0x802BC0C4; // type:object size:0x1C scope:local align:4 +__vt__15PikiHangedState = .data:0x802BC0E0; // type:object size:0x6C scope:global align:4 +@5424 = .data:0x802BC14C; // type:object size:0x10 scope:local align:4 data:string +@5425 = .data:0x802BC15C; // type:object size:0x1C scope:local align:4 +__vt__15PikiGoHangState = .data:0x802BC178; // type:object size:0x6C scope:global align:4 +@5426 = .data:0x802BC1E4; // type:object size:0xF scope:local align:4 data:string +@5427 = .data:0x802BC1F4; // type:object size:0x1C scope:local align:4 +__vt__14PikiCliffState = .data:0x802BC210; // type:object size:0x6C scope:global align:4 +@5428 = .data:0x802BC27C; // type:object size:0xE scope:local align:4 data:string +@5429 = .data:0x802BC28C; // type:object size:0x1C scope:local align:4 +__vt__13PikiFallState = .data:0x802BC2A8; // type:object size:0x6C scope:global align:4 +@5430 = .data:0x802BC314; // type:object size:0x12 scope:local align:4 data:string +@5431 = .data:0x802BC328; // type:object size:0x1C scope:local align:4 +__vt__17PikiFallMeckState = .data:0x802BC344; // type:object size:0x6C scope:global align:4 +@5432 = .data:0x802BC3B0; // type:object size:0xF scope:local align:4 data:string +@5433 = .data:0x802BC3C0; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlownState = .data:0x802BC3DC; // type:object size:0x6C scope:global align:4 +@5434 = .data:0x802BC448; // type:object size:0xF scope:local align:4 data:string +@5435 = .data:0x802BC458; // type:object size:0x1C scope:local align:4 +__vt__14PikiFlickState = .data:0x802BC474; // type:object size:0x6C scope:global align:4 +@5436 = .data:0x802BC4E0; // type:object size:0x10 scope:local align:4 data:string +@5437 = .data:0x802BC4F0; // type:object size:0x1C scope:local align:4 +__vt__15PikiBulletState = .data:0x802BC50C; // type:object size:0x6C scope:global align:4 +@5438 = .data:0x802BC578; // type:object size:0x13 scope:local align:4 data:string +@5439 = .data:0x802BC58C; // type:object size:0x1C scope:local align:4 +__vt__18PikiSwallowedState = .data:0x802BC5A8; // type:object size:0x6C scope:global align:4 +@5440 = .data:0x802BC614; // type:object size:0xF scope:local align:4 data:string +@5441 = .data:0x802BC624; // type:object size:0x1C scope:local align:4 +__vt__14PikiFiredState = .data:0x802BC640; // type:object size:0x6C scope:global align:4 +@5442 = .data:0x802BC6AC; // type:object size:0x10 scope:local align:4 data:string +@5443 = .data:0x802BC6BC; // type:object size:0x1C scope:local align:4 +__vt__15PikiBubbleState = .data:0x802BC6D8; // type:object size:0x6C scope:global align:4 +@5444 = .data:0x802BC744; // type:object size:0x10 scope:local align:4 data:string +@5445 = .data:0x802BC754; // type:object size:0x1C scope:local align:4 +__vt__15PikiKinokoState = .data:0x802BC770; // type:object size:0x6C scope:global align:4 +@5446 = .data:0x802BC7DC; // type:object size:0xC scope:local align:4 data:string +@5456 = .data:0x802BC814; // type:object size:0xF scope:local align:4 data:string +@5457 = .data:0x802BC824; // type:object size:0x1C scope:local align:4 +__vt__14PikiDrownState = .data:0x802BC840; // type:object size:0x6C scope:global align:4 +@5458 = .data:0x802BC8AC; // type:object size:0x10 scope:local align:4 data:string +@5459 = .data:0x802BC8BC; // type:object size:0x1C scope:local align:4 +__vt__15PikiAbsorbState = .data:0x802BC8D8; // type:object size:0x6C scope:global align:4 +@5460 = .data:0x802BC944; // type:object size:0x10 scope:local align:4 data:string +@5461 = .data:0x802BC954; // type:object size:0x1C scope:local align:4 +__vt__15PikiNormalState = .data:0x802BC970; // type:object size:0x6C scope:global align:4 +@5464 = .data:0x802BC9DC; // type:object size:0x10 scope:local align:4 data:string +@5465 = .data:0x802BC9EC; // type:object size:0x1C scope:local align:4 +__vt__15PikiLookAtState = .data:0x802BCA08; // type:object size:0x6C scope:global align:4 +__vt__13AState<4Piki> = .data:0x802BCA74; // type:object size:0x50 scope:weak align:4 +__vt__9PikiState = .data:0x802BCAFC; // type:object size:0x6C scope:global align:4 +@5467 = .data:0x802BCB68; // type:object size:0x11 scope:local align:4 data:string +@5469 = .data:0x802BCB7C; // type:object size:0x13 scope:local align:4 data:string +@5468 = .data:0x802BCB90; // type:object size:0xC scope:local align:4 +__vt__16PikiStateMachine = .data:0x802BCB9C; // type:object size:0x18 scope:global align:4 +@5515 = .data:0x802BCBB4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802BCBE0; // type:label scope:local +@1525 = .data:0x802BCBE0; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802BCBF0; // type:object size:0x9 scope:local align:4 data:string +@1544 = .data:0x802BCBFC; // type:object size:0xD scope:local align:4 data:string +@1567 = .data:0x802BCC0C; // type:object size:0x13 scope:local align:4 data:string +@1568 = .data:0x802BCC20; // type:object size:0x12 scope:local align:4 data:string +@1569 = .data:0x802BCC34; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802BCC40; // type:object size:0x13 scope:local align:4 data:string +@1571 = .data:0x802BCC54; // type:object size:0x13 scope:local align:4 data:string +@1572 = .data:0x802BCC68; // type:object size:0x13 scope:local align:4 data:string +@2300 = .data:0x802BCC7C; // type:object size:0x9 scope:local align:4 data:string +@2302 = .data:0x802BCC88; // type:object size:0x14 scope:local align:4 data:string +@2303 = .data:0x802BCC9C; // type:object size:0xC scope:local align:4 data:string +@2304 = .data:0x802BCCA8; // type:object size:0xD scope:local align:4 data:string +@2305 = .data:0x802BCCB8; // type:object size:0x9 scope:local align:4 data:string +@2306 = .data:0x802BCCC4; // type:object size:0x14 scope:local align:4 +@2308 = .data:0x802BCCD8; // type:object size:0x24 scope:local align:4 +@2301 = .data:0x802BCCFC; // type:object size:0x2C scope:local align:4 +__vt__8ViewPiki = .data:0x802BCD28; // type:object size:0x138 scope:global align:4 +...data.0 = .data:0x802BCE60; // type:label scope:local +@634 = .data:0x802BCE60; // type:object size:0xE scope:local align:4 data:string +@636 = .data:0x802BCE70; // type:object size:0xA scope:local align:4 data:string +@635 = .data:0x802BCE7C; // type:object size:0xC scope:local align:4 +__vt__13CndStickMouth = .data:0x802BCE88; // type:object size:0xC scope:global align:4 +@637 = .data:0x802BCE94; // type:object size:0xB scope:local align:4 data:string +@638 = .data:0x802BCEA0; // type:object size:0xC scope:local align:4 +__vt__10CndIsAtari = .data:0x802BCEAC; // type:object size:0xC scope:global align:4 +@639 = .data:0x802BCEB8; // type:object size:0xD scope:local align:4 data:string +@640 = .data:0x802BCEC8; // type:object size:0xC scope:local align:4 +__vt__12CndIsVisible = .data:0x802BCED4; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802BCEE0; // type:label scope:local +@1616 = .data:0x802BCEE0; // type:object size:0xE scope:local align:4 data:string +@1626 = .data:0x802BCEF0; // type:object size:0xA scope:local align:4 data:string +@1698 = .data:0x802BCEFC; // type:object size:0xC scope:local align:4 data:string +@1699 = .data:0x802BCF08; // type:object size:0xC scope:local align:4 data:string +@1789 = .data:0x802BCF14; // type:object size:0xA scope:local align:4 data:string +@1790 = .data:0x802BCF20; // type:object size:0xD scope:local align:4 +@1821 = .data:0x802BCF30; // type:object size:0x11 scope:local align:4 +@1854 = .data:0x802BCF44; // type:object size:0x19 scope:local align:4 +@1899 = .data:0x802BCF60; // type:object size:0x9 scope:local align:4 +@1900 = .data:0x802BCF6C; // type:object size:0xF scope:local align:4 +@1901 = .data:0x802BCF7C; // type:object size:0x13 scope:local align:4 +@1974 = .data:0x802BCF90; // type:object size:0xA scope:local align:4 data:string +@1975 = .data:0x802BCF9C; // type:object size:0xE scope:local align:4 data:string +@1987 = .data:0x802BCFAC; // type:object size:0xB scope:local align:4 data:string +@2039 = .data:0x802BCFB8; // type:object size:0x17 scope:local align:4 data:string +coStrings = .data:0x802BCFD0; // type:object size:0x8 scope:global align:4 +@2550 = .data:0x802BCFD8; // type:object size:0xD scope:local align:4 data:string +@3001 = .data:0x802BCFE8; // type:object size:0xE scope:local align:4 data:string +@3003 = .data:0x802BCFF8; // type:object size:0xB scope:local align:4 data:string +@3005 = .data:0x802BD004; // type:object size:0xC scope:local align:4 +@3007 = .data:0x802BD010; // type:object size:0x14 scope:local align:4 +@3002 = .data:0x802BD024; // type:object size:0x1C scope:local align:4 +__vt__13GenAreaCircle = .data:0x802BD040; // type:object size:0x38 scope:global align:4 +@3013 = .data:0x802BD078; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802BD088; // type:object size:0x1C scope:local align:4 +__vt__12GenAreaPoint = .data:0x802BD0A4; // type:object size:0x38 scope:global align:4 +@3016 = .data:0x802BD0DC; // type:object size:0x10 scope:local align:4 data:string +@3019 = .data:0x802BD0EC; // type:object size:0x14 scope:local align:4 +@3017 = .data:0x802BD100; // type:object size:0x1C scope:local align:4 +__vt__15GenTypeInitRand = .data:0x802BD11C; // type:object size:0x38 scope:global align:4 +@3021 = .data:0x802BD154; // type:object size:0xE scope:local align:4 data:string +@3022 = .data:0x802BD164; // type:object size:0x1C scope:local align:4 +__vt__13GenTypeAtOnce = .data:0x802BD180; // type:object size:0x38 scope:global align:4 +@3023 = .data:0x802BD1B8; // type:object size:0xB scope:local align:4 data:string +@3024 = .data:0x802BD1C4; // type:object size:0x1C scope:local align:4 +__vt__10GenTypeOne = .data:0x802BD1E0; // type:object size:0x38 scope:global align:4 +@3026 = .data:0x802BD218; // type:object size:0xE scope:local align:4 data:string +@3028 = .data:0x802BD228; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802BD234; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802BD248; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectPiki = .data:0x802BD264; // type:object size:0x38 scope:global align:4 +@3033 = .data:0x802BD29C; // type:object size:0x9 scope:local align:4 data:string +@3034 = .data:0x802BD2A8; // type:object size:0xC scope:local align:4 +@3036 = .data:0x802BD2B4; // type:object size:0x14 scope:local align:4 +@3031 = .data:0x802BD2C8; // type:object size:0x1C scope:local align:4 +__vt__12GeneratorMgr = .data:0x802BD2E4; // type:object size:0x30 scope:global align:4 +@3044 = .data:0x802BD314; // type:object size:0xA scope:local align:4 data:string +@3045 = .data:0x802BD320; // type:object size:0x1C scope:local align:4 +__vt__9Generator = .data:0x802BD33C; // type:object size:0x30 scope:global align:4 +__vt__7GenArea = .data:0x802BD388; // type:object size:0x38 scope:global align:4 +@3046 = .data:0x802BD3C0; // type:object size:0xC scope:local align:4 data:string +@3048 = .data:0x802BD3CC; // type:object size:0x9 scope:local align:4 data:string +@3047 = .data:0x802BD3D8; // type:object size:0xC scope:local align:4 +__vt__7GenType = .data:0x802BD3F8; // type:object size:0x38 scope:global align:4 +__vt__9GenObject = .data:0x802BD430; // type:object size:0x38 scope:global align:4 +@3049 = .data:0x802BD468; // type:object size:0xA scope:local align:4 data:string +@3050 = .data:0x802BD474; // type:object size:0xC scope:local align:4 +__vt__7GenBase = .data:0x802BD494; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802BD4B8; // type:label scope:local +@1070 = .data:0x802BD4B8; // type:object size:0x13 scope:local align:4 data:string +@1080 = .data:0x802BD4CC; // type:object size:0xF scope:local align:4 data:string +@1106 = .data:0x802BD4DC; // type:object size:0x9 scope:local align:4 data:string +@1538 = .data:0x802BD4E8; // type:object size:0xA scope:local align:4 data:string +@1541 = .data:0x802BD4F4; // type:object size:0x13 scope:local align:4 data:string +@1542 = .data:0x802BD508; // type:object size:0xC scope:local align:4 +@1539 = .data:0x802BD514; // type:object size:0x14 scope:local align:4 +@1555 = .data:0x802BD5F4; // type:object size:0x16 scope:local align:4 data:string +@1558 = .data:0x802BD60C; // type:object size:0xC scope:local align:4 +@1556 = .data:0x802BD618; // type:object size:0x14 scope:local align:4 +__vt__Q214GeneratorCache5Cache = .data:0x802BD62C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802BD658; // type:label scope:local +@737 = .data:0x802BD658; // type:object size:0xE scope:local align:4 data:string +@747 = .data:0x802BD668; // type:object size:0xA scope:local align:4 data:string +@1985 = .data:0x802BD674; // type:object size:0x10 scope:local align:4 data:string +@1988 = .data:0x802BD684; // type:object size:0x9 scope:local align:4 data:string +@1989 = .data:0x802BD690; // type:object size:0xC scope:local align:4 +@1991 = .data:0x802BD69C; // type:object size:0x14 scope:local align:4 +@1992 = .data:0x802BD6B0; // type:object size:0xC scope:local align:4 data:string +@1993 = .data:0x802BD6BC; // type:object size:0xA scope:local align:4 data:string +@1994 = .data:0x802BD6C8; // type:object size:0x24 scope:local align:4 +@1986 = .data:0x802BD6EC; // type:object size:0x2C scope:local align:4 +__vt__15CreatureNodeMgr = .data:0x802BD718; // type:object size:0x78 scope:global align:4 +@2008 = .data:0x802BD790; // type:object size:0xE scope:local align:4 data:string +@2009 = .data:0x802BD7A0; // type:object size:0x2C scope:local align:4 +__vt__13PolyObjectMgr = .data:0x802BD7CC; // type:object size:0x80 scope:global align:4 +@2017 = .data:0x802BD84C; // type:object size:0xE scope:local align:4 data:string +@2018 = .data:0x802BD85C; // type:object size:0x2C scope:local align:4 +__vt__13MonoObjectMgr = .data:0x802BD888; // type:object size:0x84 scope:global align:4 +__vt__9ObjectMgr = .data:0x802BD940; // type:object size:0x78 scope:global align:4 +...data.0 = .data:0x802BD9B8; // type:label scope:local +@1700 = .data:0x802BD9B8; // type:object size:0x11 scope:local align:4 data:string +@1710 = .data:0x802BD9CC; // type:object size:0xA scope:local align:4 data:string +@2282 = .data:0x802BD9D8; // type:object size:0xD scope:local align:4 data:string +@2284 = .data:0x802BD9E8; // type:object size:0xC scope:local align:4 data:string +@2283 = .data:0x802BD9F4; // type:object size:0xC scope:local align:4 +__vt__12SearchBuffer = .data:0x802BDA00; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802BDA30; // type:label scope:local +@388 = .data:0x802BDA30; // type:object size:0xD scope:local align:4 data:string +@398 = .data:0x802BDA40; // type:object size:0x9 scope:local align:4 data:string +@405 = .data:0x802BDA4C; // type:object size:0xD scope:local align:4 data:string +__vt__12RefCountable = .data:0x802BDA5C; // type:object size:0x10 scope:weak align:4 +table = .data:0x802BDA70; // type:object size:0x8C scope:global align:4 +...data.0 = .data:0x802BDB00; // type:label scope:local +@886 = .data:0x802BDB00; // type:object size:0xE scope:local align:4 data:string +@1380 = .data:0x802BDB10; // type:object size:0x14 scope:local align:4 data:string +@1381 = .data:0x802BDB24; // type:object size:0xC scope:local align:4 data:string +@1382 = .data:0x802BDB30; // type:object size:0xD scope:local align:4 data:string +@1383 = .data:0x802BDB40; // type:object size:0x9 scope:local align:4 data:string +@1384 = .data:0x802BDB4C; // type:object size:0x14 scope:local align:4 +@1385 = .data:0x802BDB60; // type:object size:0xB scope:local align:4 data:string +@1386 = .data:0x802BDB6C; // type:object size:0x24 scope:local align:4 +@1387 = .data:0x802BDB90; // type:object size:0xD scope:local align:4 data:string +@1388 = .data:0x802BDBA0; // type:object size:0x2C scope:local align:4 +@1379 = .data:0x802BDBCC; // type:object size:0x34 scope:local align:4 +__vt__4Weed = .data:0x802BDC00; // type:object size:0x15C scope:global align:4 +@1439 = .data:0x802BDD5C; // type:object size:0x9 scope:local align:4 data:string +@1440 = .data:0x802BDD68; // type:object size:0x34 scope:local align:4 +__vt__8WeedsGen = .data:0x802BDD9C; // type:object size:0x15C scope:global align:4 +@1445 = .data:0x802BDEF8; // type:object size:0x9 scope:local align:4 data:string +@1446 = .data:0x802BDF04; // type:object size:0x34 scope:local align:4 +__vt__8GrassGen = .data:0x802BDF38; // type:object size:0x15C scope:global align:4 +@1451 = .data:0x802BE094; // type:object size:0x34 scope:local align:4 +__vt__7RockGen = .data:0x802BE0C8; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BE228; // type:label scope:local +@908 = .data:0x802BE228; // type:object size:0xD scope:local align:4 data:string +@1030 = .data:0x802BE238; // type:object size:0xB scope:local align:4 data:string +@1032 = .data:0x802BE244; // type:object size:0x14 scope:local align:4 data:string +@1033 = .data:0x802BE258; // type:object size:0xC scope:local align:4 data:string +@1034 = .data:0x802BE264; // type:object size:0xD scope:local align:4 data:string +@1035 = .data:0x802BE274; // type:object size:0x9 scope:local align:4 data:string +@1036 = .data:0x802BE280; // type:object size:0x14 scope:local align:4 +@1037 = .data:0x802BE294; // type:object size:0xB scope:local align:4 data:string +@1038 = .data:0x802BE2A0; // type:object size:0x24 scope:local align:4 +@1039 = .data:0x802BE2C4; // type:object size:0xD scope:local align:4 data:string +@1040 = .data:0x802BE2D4; // type:object size:0x2C scope:local align:4 +@1031 = .data:0x802BE300; // type:object size:0x34 scope:local align:4 +__vt__10BoBaseItem = .data:0x802BE334; // type:object size:0x15C scope:global align:4 +@1087 = .data:0x802BE490; // type:object size:0x9 scope:local align:4 data:string +@1088 = .data:0x802BE49C; // type:object size:0x34 scope:local align:4 +__vt__8KusaItem = .data:0x802BE4D0; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BE630; // type:label scope:local +@868 = .data:0x802BE630; // type:object size:0xD scope:local align:4 data:string +@1216 = .data:0x802BE640; // type:object size:0xE scope:local align:4 data:string +@1218 = .data:0x802BE650; // type:object size:0x14 scope:local align:4 data:string +@1219 = .data:0x802BE664; // type:object size:0xC scope:local align:4 data:string +@1220 = .data:0x802BE670; // type:object size:0xD scope:local align:4 data:string +@1221 = .data:0x802BE680; // type:object size:0x9 scope:local align:4 data:string +@1222 = .data:0x802BE68C; // type:object size:0x14 scope:local align:4 +@1223 = .data:0x802BE6A0; // type:object size:0xB scope:local align:4 data:string +@1224 = .data:0x802BE6AC; // type:object size:0x24 scope:local align:4 +@1225 = .data:0x802BE6D0; // type:object size:0xD scope:local align:4 data:string +@1226 = .data:0x802BE6E0; // type:object size:0x2C scope:local align:4 +@1217 = .data:0x802BE70C; // type:object size:0x34 scope:local align:4 +__vt__13FishGenerator = .data:0x802BE740; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802BE8A0; // type:label scope:local +@1538 = .data:0x802BE8A0; // type:object size:0xC scope:local align:4 data:string +trKeys = .data:0x802BE8AC; // type:object size:0xC scope:global align:4 +leg_ids = .data:0x802BE8B8; // type:object size:0xC scope:local align:4 data:string +effects = .data:0x802BE8C4; // type:object size:0x80 scope:local align:4 +@2314 = .data:0x802BE944; // type:object size:0x9 scope:local align:4 data:string +@2316 = .data:0x802BE950; // type:object size:0x14 scope:local align:4 data:string +@2317 = .data:0x802BE964; // type:object size:0xC scope:local align:4 data:string +@2318 = .data:0x802BE970; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802BE980; // type:object size:0x9 scope:local align:4 data:string +@2320 = .data:0x802BE98C; // type:object size:0x14 scope:local align:4 +@2321 = .data:0x802BE9A0; // type:object size:0xB scope:local align:4 data:string +@2322 = .data:0x802BE9AC; // type:object size:0x24 scope:local align:4 +@2323 = .data:0x802BE9D0; // type:object size:0xD scope:local align:4 data:string +@2324 = .data:0x802BE9E0; // type:object size:0x2C scope:local align:4 +@2315 = .data:0x802BEA0C; // type:object size:0x34 scope:local align:4 +__vt__8Suckable = .data:0x802BEA40; // type:object size:0x174 scope:weak align:4 +@2380 = .data:0x802BEBB4; // type:object size:0x3C scope:local align:4 +__vt__7UfoItem = .data:0x802BEBF0; // type:object size:0x174 scope:global align:4 +...data.0 = .data:0x802BED68; // type:label scope:local +@909 = .data:0x802BED68; // type:object size:0xC scope:local align:4 data:string +@926 = .data:0x802BED74; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802BED8C; // type:object size:0xA scope:local align:4 data:string +@931 = .data:0x802BED98; // type:object size:0x9 scope:local align:4 data:string +@942 = .data:0x802BEDA4; // type:object size:0xA scope:local align:4 data:string +@943 = .data:0x802BEDB0; // type:object size:0xA scope:local align:4 data:string +@944 = .data:0x802BEDBC; // type:object size:0xA scope:local align:4 data:string +@945 = .data:0x802BEDC8; // type:object size:0xA scope:local align:4 data:string +@946 = .data:0x802BEDD4; // type:object size:0xA scope:local align:4 data:string +@947 = .data:0x802BEDE0; // type:object size:0xB scope:local align:4 data:string +motionLabels__15PaniUfoAnimator = .data:0x802BEDEC; // type:object size:0x44 scope:global align:4 +@1125 = .data:0x802BEE30; // type:object size:0x10 scope:local align:4 data:string +@1127 = .data:0x802BEE40; // type:object size:0x9 scope:local align:4 data:string +@1128 = .data:0x802BEE4C; // type:object size:0xD scope:local align:4 data:string +@1129 = .data:0x802BEE5C; // type:object size:0xC scope:local align:4 +@1126 = .data:0x802BEE68; // type:object size:0x14 scope:local align:4 +__vt__15PaniUfoAnimator = .data:0x802BEE7C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802BEE98; // type:label scope:local +@1257 = .data:0x802BEE98; // type:object size:0xD scope:local align:4 data:string +@1267 = .data:0x802BEEA8; // type:object size:0x9 scope:local align:4 data:string +@1413 = .data:0x802BEEB4; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802BEEC0; // type:object size:0x14 scope:local align:4 data:string +@1416 = .data:0x802BEED4; // type:object size:0xC scope:local align:4 data:string +@1417 = .data:0x802BEEE0; // type:object size:0xD scope:local align:4 data:string +@1418 = .data:0x802BEEF0; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802BEEFC; // type:object size:0x14 scope:local align:4 +@1420 = .data:0x802BEF10; // type:object size:0xB scope:local align:4 data:string +@1421 = .data:0x802BEF1C; // type:object size:0x24 scope:local align:4 +@1422 = .data:0x802BEF40; // type:object size:0xD scope:local align:4 data:string +@1423 = .data:0x802BEF50; // type:object size:0x2C scope:local align:4 +@1414 = .data:0x802BEF7C; // type:object size:0x34 scope:local align:4 +__vt__8BombItem = .data:0x802BEFB0; // type:object size:0x164 scope:global align:4 +...data.0 = .data:0x802BF118; // type:label scope:local +@1532 = .data:0x802BF118; // type:object size:0xD scope:local align:4 data:string +@1542 = .data:0x802BF128; // type:object size:0x9 scope:local align:4 data:string +leg_ids = .data:0x802BF134; // type:object size:0xC scope:local align:4 data:4byte +@2107 = .data:0x802BF140; // type:object size:0x3D scope:local align:4 data:string +@2108 = .data:0x802BF18C; // type:object size:0x9 scope:local align:4 data:string +@2110 = .data:0x802BF198; // type:object size:0x14 scope:local align:4 data:string +@2111 = .data:0x802BF1AC; // type:object size:0xC scope:local align:4 data:string +@2112 = .data:0x802BF1B8; // type:object size:0xD scope:local align:4 data:string +@2113 = .data:0x802BF1C8; // type:object size:0x9 scope:local align:4 data:string +@2114 = .data:0x802BF1D4; // type:object size:0x14 scope:local align:4 +@2115 = .data:0x802BF1E8; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802BF1F4; // type:object size:0x24 scope:local align:4 +@2117 = .data:0x802BF218; // type:object size:0xD scope:local align:4 data:string +@2118 = .data:0x802BF228; // type:object size:0x2C scope:local align:4 +@2109 = .data:0x802BF254; // type:object size:0x34 scope:local align:4 +@2172 = .data:0x802BF3FC; // type:object size:0x9 scope:local align:4 data:string +@2173 = .data:0x802BF408; // type:object size:0x44 scope:local align:4 +__vt__8GoalItem = .data:0x802BF44C; // type:object size:0x184 scope:global align:4 +...data.0 = .data:0x802BF5D0; // type:label scope:local +@1376 = .data:0x802BF5D0; // type:object size:0x11 scope:local align:4 data:string +@1386 = .data:0x802BF5E4; // type:object size:0xD scope:local align:4 data:string +@1630 = .data:0x802BF5F4; // type:object size:0xD scope:local align:4 data:string +@1632 = .data:0x802BF604; // type:object size:0x14 scope:local align:4 data:string +@1633 = .data:0x802BF618; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802BF624; // type:object size:0xD scope:local align:4 data:string +@1635 = .data:0x802BF634; // type:object size:0x9 scope:local align:4 data:string +@1636 = .data:0x802BF640; // type:object size:0x14 scope:local align:4 +@1637 = .data:0x802BF654; // type:object size:0xB scope:local align:4 data:string +@1638 = .data:0x802BF660; // type:object size:0x24 scope:local align:4 +@1639 = .data:0x802BF684; // type:object size:0xD scope:local align:4 data:string +@1640 = .data:0x802BF694; // type:object size:0x2C scope:local align:4 +@1631 = .data:0x802BF6C0; // type:object size:0x34 scope:local align:4 +__vt__12PikiHeadItem = .data:0x802BF6F4; // type:object size:0x15C scope:global align:4 +@1685 = .data:0x802BF850; // type:object size:0x23 scope:local align:4 data:string +@1686 = .data:0x802BF874; // type:object size:0x3D scope:local align:4 data:string +@1687 = .data:0x802BF8B4; // type:object size:0x29 scope:local align:4 data:string +@1684 = .data:0x802BF8E0; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802BF960; // type:label scope:local +@870 = .data:0x802BF960; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802BF96C; // type:object size:0x9 scope:local align:4 data:string +@989 = .data:0x802BF978; // type:object size:0x14 scope:local align:4 data:string +@990 = .data:0x802BF98C; // type:object size:0xC scope:local align:4 data:string +@991 = .data:0x802BF998; // type:object size:0xD scope:local align:4 data:string +@992 = .data:0x802BF9A8; // type:object size:0x9 scope:local align:4 data:string +@993 = .data:0x802BF9B4; // type:object size:0x14 scope:local align:4 +@994 = .data:0x802BF9C8; // type:object size:0xB scope:local align:4 data:string +@995 = .data:0x802BF9D4; // type:object size:0x24 scope:local align:4 +@996 = .data:0x802BF9F8; // type:object size:0xD scope:local align:4 data:string +@997 = .data:0x802BFA08; // type:object size:0x2C scope:local align:4 +@988 = .data:0x802BFA34; // type:object size:0x34 scope:local align:4 +__vt__8DoorItem = .data:0x802BFA68; // type:object size:0x15C scope:global align:4 +@1045 = .data:0x802BFBC4; // type:object size:0x1C scope:local align:4 +__vt__7KeyItem = .data:0x802BFBE0; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BFCF8; // type:label scope:local +@868 = .data:0x802BFCF8; // type:object size:0xD scope:local align:4 data:string +@878 = .data:0x802BFD08; // type:object size:0x9 scope:local align:4 data:string +@980 = .data:0x802BFD14; // type:object size:0x9 scope:local align:4 data:string +@982 = .data:0x802BFD20; // type:object size:0xC scope:local align:4 data:string +@983 = .data:0x802BFD2C; // type:object size:0xD scope:local align:4 data:string +@984 = .data:0x802BFD3C; // type:object size:0x9 scope:local align:4 data:string +@985 = .data:0x802BFD48; // type:object size:0x14 scope:local align:4 +@986 = .data:0x802BFD5C; // type:object size:0xD scope:local align:4 data:string +@987 = .data:0x802BFD6C; // type:object size:0x1C scope:local align:4 +@981 = .data:0x802BFD88; // type:object size:0x24 scope:local align:4 +__vt__8RopeItem = .data:0x802BFDAC; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802BFEC0; // type:label scope:local +@1458 = .data:0x802BFEC0; // type:object size:0xD scope:local align:4 data:string +@1468 = .data:0x802BFED0; // type:object size:0x9 scope:local align:4 data:string +@1579 = .data:0x802BFEDC; // type:object size:0x9 scope:local align:4 data:string +@1581 = .data:0x802BFEE8; // type:object size:0xC scope:local align:4 data:string +@1582 = .data:0x802BFEF4; // type:object size:0xD scope:local align:4 data:string +@1583 = .data:0x802BFF04; // type:object size:0x9 scope:local align:4 data:string +@1584 = .data:0x802BFF10; // type:object size:0x14 scope:local align:4 +@1580 = .data:0x802BFF24; // type:object size:0x1C scope:local align:4 +__vt__8SeedItem = .data:0x802BFF40; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802C0058; // type:label scope:local +@1071 = .data:0x802C0058; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802C0064; // type:object size:0xC scope:local align:4 data:string +@1113 = .data:0x802C0070; // type:object size:0xF scope:local align:4 +@1166 = .data:0x802C0080; // type:object size:0xF scope:local align:4 +@1315 = .data:0x802C0090; // type:object size:0x5C scope:local align:4 +@1321 = .data:0x802C00EC; // type:object size:0xE scope:local align:4 data:string +@1323 = .data:0x802C00FC; // type:object size:0xB scope:local align:4 data:string +@1325 = .data:0x802C0108; // type:object size:0xC scope:local align:4 +@1326 = .data:0x802C0114; // type:object size:0xA scope:local align:4 data:string +@1327 = .data:0x802C0120; // type:object size:0x14 scope:local align:4 +@1322 = .data:0x802C0134; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectItem = .data:0x802C0150; // type:object size:0x38 scope:global align:4 +@1333 = .data:0x802C0188; // type:object size:0xA scope:local align:4 data:string +@1335 = .data:0x802C0194; // type:object size:0x9 scope:local align:4 data:string +@1334 = .data:0x802C01A0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C01C0; // type:label scope:local +@1775 = .data:0x802C01C0; // type:object size:0xB scope:local align:4 data:string +@2864 = .data:0x802C01CC; // type:object size:0x9 scope:local align:4 data:string +@3038 = .data:0x802C01D8; // type:object size:0xE scope:local align:4 data:string +@3242 = .data:0x802C01E8; // type:object size:0x1B scope:local align:4 data:string +@3244 = .data:0x802C0204; // type:object size:0xA scope:local align:4 data:string +@3243 = .data:0x802C0210; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI13DisappearInit = .data:0x802C021C; // type:object size:0xC scope:global align:4 +@3245 = .data:0x802C0228; // type:object size:0x16 scope:local align:4 data:string +@3246 = .data:0x802C0240; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI8EmitInit = .data:0x802C024C; // type:object size:0xC scope:global align:4 +@3247 = .data:0x802C0258; // type:object size:0x19 scope:local align:4 data:string +@3248 = .data:0x802C0274; // type:object size:0xC scope:local align:4 +__vt__Q211FallWaterAI11CollideInit = .data:0x802C0280; // type:object size:0xC scope:global align:4 +@3249 = .data:0x802C028C; // type:object size:0xC scope:local align:4 data:string +@3251 = .data:0x802C0298; // type:object size:0x19 scope:local align:4 data:string +@3252 = .data:0x802C02B4; // type:object size:0x9 scope:local align:4 data:string +@3253 = .data:0x802C02C0; // type:object size:0xC scope:local align:4 +@3250 = .data:0x802C02CC; // type:object size:0x14 scope:local align:4 +__vt__11FallWaterAI = .data:0x802C02E0; // type:object size:0x18 scope:weak align:4 +@3254 = .data:0x802C02F8; // type:object size:0xD scope:local align:4 data:string +@3255 = .data:0x802C0308; // type:object size:0xC scope:local align:4 +__vt__Q27WaterAI3Die = .data:0x802C0314; // type:object size:0xC scope:global align:4 +@3256 = .data:0x802C0320; // type:object size:0x15 scope:local align:4 data:string +@3259 = .data:0x802C0338; // type:object size:0xC scope:local align:4 +@3260 = .data:0x802C0344; // type:object size:0xD scope:local align:4 data:string +@3261 = .data:0x802C0354; // type:object size:0x14 scope:local align:4 +@3257 = .data:0x802C0368; // type:object size:0x1C scope:local align:4 +__vt__Q27WaterAI11CollideChar = .data:0x802C0384; // type:object size:0x14 scope:global align:4 +@3265 = .data:0x802C0398; // type:object size:0x14 scope:local align:4 +__vt__7WaterAI = .data:0x802C03AC; // type:object size:0x18 scope:weak align:4 +@3266 = .data:0x802C03C4; // type:object size:0xB scope:local align:4 data:string +@3267 = .data:0x802C03D0; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI3Die = .data:0x802C03DC; // type:object size:0xC scope:global align:4 +@3268 = .data:0x802C03E8; // type:object size:0x10 scope:local align:4 data:string +@3269 = .data:0x802C03F8; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseExec = .data:0x802C0404; // type:object size:0xC scope:global align:4 +@3270 = .data:0x802C0410; // type:object size:0x10 scope:local align:4 data:string +@3271 = .data:0x802C0420; // type:object size:0xC scope:local align:4 +__vt__Q25GemAI8RiseInit = .data:0x802C042C; // type:object size:0xC scope:global align:4 +@3273 = .data:0x802C0438; // type:object size:0x14 scope:local align:4 +__vt__5GemAI = .data:0x802C044C; // type:object size:0x18 scope:weak align:4 +@3274 = .data:0x802C0464; // type:object size:0xF scope:local align:4 data:string +@3275 = .data:0x802C0474; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI6Effect = .data:0x802C0480; // type:object size:0xC scope:global align:4 +@3276 = .data:0x802C048C; // type:object size:0x11 scope:local align:4 data:string +@3277 = .data:0x802C04A0; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitWait = .data:0x802C04AC; // type:object size:0xC scope:global align:4 +@3278 = .data:0x802C04B8; // type:object size:0x11 scope:local align:4 data:string +@3279 = .data:0x802C04CC; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8EmitPiki = .data:0x802C04D8; // type:object size:0xC scope:global align:4 +@3280 = .data:0x802C04E4; // type:object size:0x11 scope:local align:4 data:string +@3281 = .data:0x802C04F8; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootDone = .data:0x802C0504; // type:object size:0xC scope:global align:4 +@3282 = .data:0x802C0510; // type:object size:0x11 scope:local align:4 data:string +@3283 = .data:0x802C0524; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootEmit = .data:0x802C0530; // type:object size:0xC scope:global align:4 +@3284 = .data:0x802C053C; // type:object size:0x11 scope:local align:4 data:string +@3285 = .data:0x802C0550; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8BootInit = .data:0x802C055C; // type:object size:0xC scope:global align:4 +@3286 = .data:0x802C0568; // type:object size:0x11 scope:local align:4 data:string +@3287 = .data:0x802C057C; // type:object size:0xC scope:local align:4 +__vt__Q26GoalAI8WaitInit = .data:0x802C0588; // type:object size:0xC scope:global align:4 +@3288 = .data:0x802C0594; // type:object size:0x14 scope:local align:4 data:string +@3289 = .data:0x802C05A8; // type:object size:0x1C scope:local align:4 +__vt__Q26GoalAI11NotFinished = .data:0x802C05C4; // type:object size:0x14 scope:global align:4 +@3292 = .data:0x802C0608; // type:object size:0x14 scope:local align:4 +__vt__6GoalAI = .data:0x802C061C; // type:object size:0x18 scope:weak align:4 +@3293 = .data:0x802C0634; // type:object size:0x10 scope:local align:4 data:string +@3294 = .data:0x802C0644; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieExec = .data:0x802C0650; // type:object size:0xC scope:global align:4 +@3295 = .data:0x802C065C; // type:object size:0x10 scope:local align:4 data:string +@3296 = .data:0x802C066C; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7DieInit = .data:0x802C0678; // type:object size:0xC scope:global align:4 +@3297 = .data:0x802C0684; // type:object size:0x11 scope:local align:4 data:string +@3298 = .data:0x802C0698; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuExec = .data:0x802C06A4; // type:object size:0xC scope:global align:4 +@3299 = .data:0x802C06B0; // type:object size:0x11 scope:local align:4 data:string +@3300 = .data:0x802C06C4; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8MizuInit = .data:0x802C06D0; // type:object size:0xC scope:global align:4 +@3301 = .data:0x802C06DC; // type:object size:0x11 scope:local align:4 data:string +@3302 = .data:0x802C06F0; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombExec = .data:0x802C06FC; // type:object size:0xC scope:global align:4 +@3303 = .data:0x802C0708; // type:object size:0xC scope:local align:4 data:string +@3313 = .data:0x802C0740; // type:object size:0xC scope:local align:4 data:string +@3315 = .data:0x802C074C; // type:object size:0xC scope:local align:4 data:string +@3314 = .data:0x802C0758; // type:object size:0xC scope:local align:4 +__vt__11CndBombable = .data:0x802C0764; // type:object size:0xC scope:weak align:4 +__vt__11CndCollPart = .data:0x802C0770; // type:object size:0xC scope:weak align:4 +@3320 = .data:0x802C077C; // type:object size:0x11 scope:local align:4 data:string +@3321 = .data:0x802C0790; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI8BombInit = .data:0x802C079C; // type:object size:0xC scope:global align:4 +@3322 = .data:0x802C07A8; // type:object size:0x10 scope:local align:4 data:string +@3323 = .data:0x802C07B8; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetExec = .data:0x802C07C4; // type:object size:0xC scope:global align:4 +@3324 = .data:0x802C07D0; // type:object size:0x10 scope:local align:4 data:string +@3325 = .data:0x802C07E0; // type:object size:0xC scope:local align:4 +__vt__Q26BombAI7SetInit = .data:0x802C07EC; // type:object size:0xC scope:global align:4 +@3327 = .data:0x802C07F8; // type:object size:0x14 scope:local align:4 +__vt__6BombAI = .data:0x802C080C; // type:object size:0x18 scope:weak align:4 +@3328 = .data:0x802C0824; // type:object size:0x11 scope:local align:4 data:string +@3329 = .data:0x802C0838; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI4Dead = .data:0x802C0844; // type:object size:0xC scope:global align:4 +@3330 = .data:0x802C0850; // type:object size:0x17 scope:local align:4 data:string +@3331 = .data:0x802C0868; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaExec = .data:0x802C0874; // type:object size:0xC scope:global align:4 +@3332 = .data:0x802C0880; // type:object size:0x17 scope:local align:4 data:string +@3333 = .data:0x802C0898; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10KaretaInit = .data:0x802C08A4; // type:object size:0xC scope:global align:4 +@3334 = .data:0x802C08B0; // type:object size:0x17 scope:local align:4 data:string +@3335 = .data:0x802C08C8; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10GrowEffect = .data:0x802C08D4; // type:object size:0xC scope:global align:4 +@3336 = .data:0x802C08E0; // type:object size:0x19 scope:local align:4 data:string +@3337 = .data:0x802C08FC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12GrowupedExec = .data:0x802C0908; // type:object size:0xC scope:global align:4 +@3338 = .data:0x802C0914; // type:object size:0x15 scope:local align:4 data:string +@3339 = .data:0x802C092C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitExec = .data:0x802C0938; // type:object size:0xC scope:global align:4 +@3340 = .data:0x802C0944; // type:object size:0x15 scope:local align:4 data:string +@3341 = .data:0x802C095C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8WaitInit = .data:0x802C0968; // type:object size:0xC scope:global align:4 +@3342 = .data:0x802C0974; // type:object size:0x15 scope:local align:4 data:string +@3343 = .data:0x802C098C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneExec = .data:0x802C0998; // type:object size:0xC scope:global align:4 +@3344 = .data:0x802C09A4; // type:object size:0x15 scope:local align:4 data:string +@3345 = .data:0x802C09BC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8TaneInit = .data:0x802C09C8; // type:object size:0xC scope:global align:4 +@3346 = .data:0x802C09D4; // type:object size:0x15 scope:local align:4 data:string +@3347 = .data:0x802C09EC; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryExec = .data:0x802C09F8; // type:object size:0xC scope:global align:4 +@3348 = .data:0x802C0A04; // type:object size:0x15 scope:local align:4 data:string +@3349 = .data:0x802C0A1C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI8BuryInit = .data:0x802C0A28; // type:object size:0xC scope:global align:4 +@3350 = .data:0x802C0A34; // type:object size:0x16 scope:local align:4 data:string +@3351 = .data:0x802C0A4C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryExec2 = .data:0x802C0A58; // type:object size:0xC scope:global align:4 +@3352 = .data:0x802C0A64; // type:object size:0x16 scope:local align:4 data:string +@3353 = .data:0x802C0A7C; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI9BuryInit2 = .data:0x802C0A88; // type:object size:0xC scope:global align:4 +@3354 = .data:0x802C0A94; // type:object size:0x1A scope:local align:4 data:string +@3355 = .data:0x802C0AB0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI13FlyingCleanup = .data:0x802C0ABC; // type:object size:0xC scope:global align:4 +@3356 = .data:0x802C0AC8; // type:object size:0x17 scope:local align:4 data:string +@3357 = .data:0x802C0AE0; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI10FlyingExec = .data:0x802C0AEC; // type:object size:0xC scope:global align:4 +@3358 = .data:0x802C0AF8; // type:object size:0x19 scope:local align:4 data:string +@3359 = .data:0x802C0B14; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI12FlyingEffect = .data:0x802C0B20; // type:object size:0xC scope:global align:4 +@3360 = .data:0x802C0B2C; // type:object size:0x18 scope:local align:4 data:string +@3361 = .data:0x802C0B44; // type:object size:0xC scope:local align:4 +__vt__Q210PikiHeadAI11BounceSound = .data:0x802C0B50; // type:object size:0xC scope:global align:4 +@3362 = .data:0x802C0B5C; // type:object size:0xB scope:local align:4 data:string +@3363 = .data:0x802C0B68; // type:object size:0x14 scope:local align:4 +__vt__10PikiHeadAI = .data:0x802C0B7C; // type:object size:0x18 scope:weak align:4 +@3364 = .data:0x802C0B94; // type:object size:0x15 scope:local align:4 data:string +@3365 = .data:0x802C0BAC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10DamageInit = .data:0x802C0BB8; // type:object size:0xC scope:global align:4 +@3366 = .data:0x802C0BC4; // type:object size:0x15 scope:local align:4 data:string +@3367 = .data:0x802C0BDC; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10ChangeInit = .data:0x802C0BE8; // type:object size:0xC scope:global align:4 +@3368 = .data:0x802C0BF4; // type:object size:0x13 scope:local align:4 data:string +@3369 = .data:0x802C0C08; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8WaitInit = .data:0x802C0C14; // type:object size:0xC scope:global align:4 +@3370 = .data:0x802C0C20; // type:object size:0x13 scope:local align:4 data:string +@3371 = .data:0x802C0C34; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI8AddCount = .data:0x802C0C40; // type:object size:0xC scope:global align:4 +@3372 = .data:0x802C0C4C; // type:object size:0x15 scope:local align:4 data:string +@3373 = .data:0x802C0C64; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI10MotionDone = .data:0x802C0C70; // type:object size:0xC scope:global align:4 +@3374 = .data:0x802C0C7C; // type:object size:0xF scope:local align:4 data:string +@3375 = .data:0x802C0C8C; // type:object size:0xC scope:local align:4 +__vt__Q28SluiceAI4Init = .data:0x802C0C98; // type:object size:0xC scope:global align:4 +__vt__9SAIAction = .data:0x802C0CA4; // type:object size:0xC scope:weak align:4 +@3376 = .data:0x802C0CB0; // type:object size:0x9 scope:local align:4 data:string +@3378 = .data:0x802C0CBC; // type:object size:0x15 scope:local align:4 data:string +@3377 = .data:0x802C0CD4; // type:object size:0xC scope:local align:4 +@3379 = .data:0x802C0D50; // type:object size:0x9 scope:local align:4 data:string +@3380 = .data:0x802C0D5C; // type:object size:0x14 scope:local align:4 +__vt__8SluiceAI = .data:0x802C0D70; // type:object size:0x18 scope:weak align:4 +@3418 = .data:0x802C0D88; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C0DB8; // type:label scope:local +@1259 = .data:0x802C0DB8; // type:object size:0xC scope:local align:4 data:string +@1428 = .data:0x802C0DC4; // type:object size:0xE scope:local align:4 data:string +@1663 = .data:0x802C0DD4; // type:object size:0x15 scope:local align:4 data:string +@1664 = .data:0x802C0DEC; // type:object size:0x18 scope:local align:4 data:string +@1722 = .data:0x802C0E04; // type:object size:0x58 scope:local align:4 +@1798 = .data:0x802C0E5C; // type:object size:0x9 scope:local align:4 data:string +@1799 = .data:0x802C0E68; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802C0E74; // type:object size:0x18 scope:local align:4 data:string +@2063 = .data:0x802C0E8C; // type:object size:0x19 scope:local align:4 data:string +@2064 = .data:0x802C0EA8; // type:object size:0x19 scope:local align:4 data:string +@2065 = .data:0x802C0EC4; // type:object size:0x19 scope:local align:4 data:string +@2066 = .data:0x802C0EE0; // type:object size:0x18 scope:local align:4 data:string +@2503 = .data:0x802C0EF8; // type:object size:0x1E scope:local align:4 data:string +@2504 = .data:0x802C0F18; // type:object size:0x9 scope:local align:4 data:string +@2505 = .data:0x802C0F24; // type:object size:0xA scope:local align:4 data:string +@2506 = .data:0x802C0F30; // type:object size:0x16 scope:local align:4 data:string +@2508 = .data:0x802C0F48; // type:object size:0x18 scope:local align:4 data:string +@2510 = .data:0x802C0F60; // type:object size:0x1E scope:local align:4 data:string +@2511 = .data:0x802C0F80; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802C0F8C; // type:object size:0x16 scope:local align:4 data:string +@2513 = .data:0x802C0FA4; // type:object size:0xD scope:local align:4 data:string +@2514 = .data:0x802C0FB4; // type:object size:0x19 scope:local align:4 data:string +@2516 = .data:0x802C0FD0; // type:object size:0x9 scope:local align:4 data:string +@2517 = .data:0x802C0FDC; // type:object size:0x19 scope:local align:4 data:string +@2518 = .data:0x802C0FF8; // type:object size:0xA scope:local align:4 data:string +@2519 = .data:0x802C1004; // type:object size:0xB scope:local align:4 data:string +@2520 = .data:0x802C1010; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802C1028; // type:object size:0x9 scope:local align:4 data:string +@2865 = .data:0x802C1034; // type:object size:0x5C scope:local align:4 +@3061 = .data:0x802C1090; // type:object size:0xC scope:local align:4 data:string +@3064 = .data:0x802C109C; // type:object size:0xC scope:local align:4 +@3066 = .data:0x802C10A8; // type:object size:0x14 scope:local align:4 +@3067 = .data:0x802C10BC; // type:object size:0xC scope:local align:4 data:string +@3068 = .data:0x802C10C8; // type:object size:0xA scope:local align:4 data:string +@3069 = .data:0x802C10D4; // type:object size:0x24 scope:local align:4 +@3070 = .data:0x802C10F8; // type:object size:0xE scope:local align:4 data:string +@3071 = .data:0x802C1108; // type:object size:0x2C scope:local align:4 +@3062 = .data:0x802C1134; // type:object size:0x34 scope:local align:4 +__vt__11PikiHeadMgr = .data:0x802C1168; // type:object size:0x84 scope:global align:4 +@3088 = .data:0x802C11EC; // type:object size:0x11 scope:local align:4 data:string +@3090 = .data:0x802C1200; // type:object size:0xD scope:local align:4 data:string +@3089 = .data:0x802C1210; // type:object size:0xC scope:local align:4 +__vt__16PikiHeadItemProp = .data:0x802C121C; // type:object size:0xC scope:weak align:4 +@3094 = .data:0x802C1228; // type:object size:0xE scope:local align:4 data:string +@3095 = .data:0x802C1238; // type:object size:0x2C scope:local align:4 +@3093 = .data:0x802C1264; // type:object size:0x34 scope:local align:4 +__vt__7ItemMgr = .data:0x802C1298; // type:object size:0x84 scope:global align:4 +@3105 = .data:0x802C131C; // type:object size:0x10 scope:local align:4 data:string +@3107 = .data:0x802C132C; // type:object size:0xC scope:local align:4 data:string +@3106 = .data:0x802C1338; // type:object size:0xC scope:local align:4 +__vt__15InteractBikkuri = .data:0x802C1344; // type:object size:0x2C scope:global align:4 +@3115 = .data:0x802C1370; // type:object size:0xD scope:local align:4 data:string +@3117 = .data:0x802C1380; // type:object size:0x14 scope:local align:4 data:string +@3118 = .data:0x802C1394; // type:object size:0xC scope:local align:4 data:string +@3119 = .data:0x802C13A0; // type:object size:0xD scope:local align:4 data:string +@3120 = .data:0x802C13B0; // type:object size:0x9 scope:local align:4 data:string +@3121 = .data:0x802C13BC; // type:object size:0x14 scope:local align:4 +@3122 = .data:0x802C13D0; // type:object size:0xB scope:local align:4 data:string +@3123 = .data:0x802C13DC; // type:object size:0x24 scope:local align:4 +@3116 = .data:0x802C1400; // type:object size:0x2C scope:local align:4 +__vt__12ItemCreature = .data:0x802C142C; // type:object size:0x15C scope:global align:4 +@3174 = .data:0x802C1588; // type:object size:0x9 scope:local align:4 data:string +@3175 = .data:0x802C1594; // type:object size:0xC scope:local align:4 +__vt__8DoorProp = .data:0x802C15A0; // type:object size:0xC scope:weak align:4 +@3177 = .data:0x802C15AC; // type:object size:0xC scope:local align:4 +__vt__7KeyProp = .data:0x802C15B8; // type:object size:0xC scope:weak align:4 +@3178 = .data:0x802C15C4; // type:object size:0x9 scope:local align:4 data:string +@3179 = .data:0x802C15D0; // type:object size:0xC scope:local align:4 +__vt__8SeedProp = .data:0x802C15DC; // type:object size:0xC scope:weak align:4 +@3180 = .data:0x802C15E8; // type:object size:0x9 scope:local align:4 data:string +@3181 = .data:0x802C15F4; // type:object size:0xC scope:local align:4 +__vt__8RopeProp = .data:0x802C1600; // type:object size:0xC scope:weak align:4 +@3182 = .data:0x802C160C; // type:object size:0xD scope:local align:4 data:string +@3183 = .data:0x802C161C; // type:object size:0xC scope:local align:4 +__vt__12MizuItemProp = .data:0x802C1628; // type:object size:0xC scope:weak align:4 +@3184 = .data:0x802C1634; // type:object size:0xD scope:local align:4 data:string +@3185 = .data:0x802C1644; // type:object size:0xC scope:local align:4 +__vt__12BombItemProp = .data:0x802C1650; // type:object size:0xC scope:weak align:4 +@3186 = .data:0x802C165C; // type:object size:0x11 scope:local align:4 data:string +@3187 = .data:0x802C1670; // type:object size:0x14 scope:local align:4 +__vt__Q27ItemMgr7UseNode = .data:0x802C1684; // type:object size:0x10 scope:weak align:4 +@3188 = .data:0x802C1694; // type:object size:0xD scope:local align:4 data:string +@3189 = .data:0x802C16A4; // type:object size:0xC scope:local align:4 +__vt__12KusaItemProp = .data:0x802C16B0; // type:object size:0xC scope:weak align:4 +@3190 = .data:0x802C16BC; // type:object size:0x11 scope:local align:4 data:string +@3191 = .data:0x802C16D0; // type:object size:0xC scope:local align:4 +__vt__16BuildingItemProp = .data:0x802C16DC; // type:object size:0xC scope:weak align:4 +@3192 = .data:0x802C16E8; // type:object size:0xC scope:local align:4 data:string +@3194 = .data:0x802C16F4; // type:object size:0x9 scope:local align:4 data:string +@3193 = .data:0x802C1700; // type:object size:0xC scope:local align:4 +@3195 = .data:0x802C1720; // type:object size:0xC scope:local align:4 data:string +@3196 = .data:0x802C172C; // type:object size:0xC scope:local align:4 +__vt__11UfoItemProp = .data:0x802C1738; // type:object size:0xC scope:weak align:4 +@3197 = .data:0x802C1744; // type:object size:0xD scope:local align:4 data:string +@3198 = .data:0x802C1754; // type:object size:0xC scope:local align:4 +__vt__12GoalItemProp = .data:0x802C1760; // type:object size:0xC scope:weak align:4 +@3199 = .data:0x802C1778; // type:object size:0xE scope:local align:4 data:string +@3201 = .data:0x802C1788; // type:object size:0x10 scope:local align:4 data:string +@3202 = .data:0x802C1798; // type:object size:0x2C scope:local align:4 +@3200 = .data:0x802C17C4; // type:object size:0x34 scope:local align:4 +__vt__13MeltingPotMgr = .data:0x802C17F8; // type:object size:0x78 scope:weak align:4 +@3211 = .data:0x802C1870; // type:object size:0xD scope:local align:4 data:string +@3212 = .data:0x802C1880; // type:object size:0x14 scope:local align:4 +__vt__12CreatureNode = .data:0x802C1894; // type:object size:0x10 scope:weak align:4 +@3213 = .data:0x802C18D8; // type:object size:0xD scope:local align:4 data:string +@3214 = .data:0x802C18E8; // type:object size:0x34 scope:local align:4 +__vt__12BuildingItem = .data:0x802C191C; // type:object size:0x160 scope:global align:4 +...data.0 = .data:0x802C1A80; // type:label scope:local +@868 = .data:0x802C1A80; // type:object size:0xF scope:local align:4 data:string +@878 = .data:0x802C1A90; // type:object size:0xB scope:local align:4 data:string +@912 = .data:0x802C1A9C; // type:object size:0x13 scope:local align:4 data:string +@914 = .data:0x802C1AB0; // type:object size:0x14 scope:local align:4 data:string +@915 = .data:0x802C1AC4; // type:object size:0xC scope:local align:4 data:string +@916 = .data:0x802C1AD0; // type:object size:0xD scope:local align:4 data:string +@917 = .data:0x802C1AE0; // type:object size:0x9 scope:local align:4 data:string +@918 = .data:0x802C1AEC; // type:object size:0x14 scope:local align:4 +@919 = .data:0x802C1B00; // type:object size:0xB scope:local align:4 data:string +@920 = .data:0x802C1B0C; // type:object size:0x24 scope:local align:4 +@921 = .data:0x802C1B30; // type:object size:0xD scope:local align:4 data:string +@922 = .data:0x802C1B40; // type:object size:0x2C scope:local align:4 +@923 = .data:0x802C1B6C; // type:object size:0xB scope:local align:4 data:string +@924 = .data:0x802C1B78; // type:object size:0x34 scope:local align:4 +@913 = .data:0x802C1BAC; // type:object size:0x3C scope:local align:4 +__vt__18NaviDemoSunsetGoal = .data:0x802C1BE8; // type:object size:0x15C scope:weak align:4 +@982 = .data:0x802C1D44; // type:object size:0x14 scope:local align:4 data:string +@983 = .data:0x802C1D58; // type:object size:0x3C scope:local align:4 +__vt__19NaviDemoSunsetStart = .data:0x802C1D94; // type:object size:0x15C scope:weak align:4 +@985 = .data:0x802C1EF0; // type:object size:0x3C scope:local align:4 +__vt__7Fulcrum = .data:0x802C1F2C; // type:object size:0x15C scope:weak align:4 +@986 = .data:0x802C2088; // type:object size:0xC scope:local align:4 data:string +@987 = .data:0x802C2094; // type:object size:0x3C scope:local align:4 +__vt__11BombGenItem = .data:0x802C20D0; // type:object size:0x15C scope:weak align:4 +__vt__10ItemObject = .data:0x802C222C; // type:object size:0x15C scope:global align:4 +@1004 = .data:0x802C2388; // type:object size:0x9 scope:local align:4 data:string +@1005 = .data:0x802C2394; // type:object size:0x34 scope:local align:4 +__vt__8ItemBall = .data:0x802C23C8; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C2528; // type:label scope:local +@882 = .data:0x802C2528; // type:object size:0xD scope:local align:4 data:string +@892 = .data:0x802C2538; // type:object size:0x9 scope:local align:4 data:string +@924 = .data:0x802C2544; // type:object size:0x9 scope:local align:4 data:string +@926 = .data:0x802C2550; // type:object size:0x14 scope:local align:4 data:string +@927 = .data:0x802C2564; // type:object size:0xC scope:local align:4 data:string +@928 = .data:0x802C2570; // type:object size:0xD scope:local align:4 data:string +@929 = .data:0x802C2580; // type:object size:0x9 scope:local align:4 data:string +@930 = .data:0x802C258C; // type:object size:0x14 scope:local align:4 +@931 = .data:0x802C25A0; // type:object size:0xB scope:local align:4 data:string +@932 = .data:0x802C25AC; // type:object size:0x24 scope:local align:4 +@933 = .data:0x802C25D0; // type:object size:0xD scope:local align:4 data:string +@934 = .data:0x802C25E0; // type:object size:0x2C scope:local align:4 +@925 = .data:0x802C260C; // type:object size:0x34 scope:local align:4 +__vt__8MizuItem = .data:0x802C2640; // type:object size:0x15C scope:global align:4 +...data.0 = .data:0x802C27A0; // type:label scope:local +@661 = .data:0x802C27A0; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C27B8; // type:object size:0x11 scope:local align:4 data:string +motionLabels__16PaniItemAnimator = .data:0x802C27CC; // type:object size:0x3C scope:global align:4 +@752 = .data:0x802C2808; // type:object size:0x11 scope:local align:4 data:string +@754 = .data:0x802C281C; // type:object size:0x9 scope:local align:4 data:string +@755 = .data:0x802C2828; // type:object size:0xD scope:local align:4 data:string +@756 = .data:0x802C2838; // type:object size:0xC scope:local align:4 +@753 = .data:0x802C2844; // type:object size:0x14 scope:local align:4 +__vt__16PaniItemAnimator = .data:0x802C2858; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C2878; // type:label scope:local +@1242 = .data:0x802C2878; // type:object size:0xC scope:local align:4 data:string +@1255 = .data:0x802C2884; // type:object size:0xC scope:local align:4 data:string +@1256 = .data:0x802C2890; // type:object size:0x13 scope:local align:4 +@1270 = .data:0x802C28A4; // type:object size:0x18 scope:local align:4 data:string +@1277 = .data:0x802C28BC; // type:object size:0xE scope:local align:4 data:string +@1279 = .data:0x802C28CC; // type:object size:0xB scope:local align:4 data:string +@1281 = .data:0x802C28D8; // type:object size:0xC scope:local align:4 +@1282 = .data:0x802C28E4; // type:object size:0xA scope:local align:4 data:string +@1283 = .data:0x802C28F0; // type:object size:0x14 scope:local align:4 +@1278 = .data:0x802C2904; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectNavi = .data:0x802C2920; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C2958; // type:label scope:local +@2026 = .data:0x802C2958; // type:object size:0x9 scope:local align:4 data:string +@2288 = .data:0x802C2964; // type:object size:0xD scope:local align:4 data:string +@2289 = .data:0x802C2974; // type:object size:0xC scope:local align:4 data:string +@3017 = .data:0x802C2980; // type:object size:0xB scope:local align:4 data:string +@3021 = .data:0x802C298C; // type:object size:0xB scope:local align:4 data:string +@6083 = .data:0x802C2998; // type:object size:0x2C scope:local align:4 +@6714 = .data:0x802C29C4; // type:object size:0xD scope:local align:4 data:string +@6716 = .data:0x802C29D4; // type:object size:0xC scope:local align:4 data:string +@6715 = .data:0x802C29E0; // type:object size:0xC scope:local align:4 +__vt__12InteractSuck = .data:0x802C29EC; // type:object size:0x2C scope:global align:4 +@6724 = .data:0x802C2A18; // type:object size:0xF scope:local align:4 data:string +@6725 = .data:0x802C2A28; // type:object size:0xC scope:local align:4 +__vt__14InteractGeyzer = .data:0x802C2A34; // type:object size:0x2C scope:global align:4 +@6726 = .data:0x802C2A8C; // type:object size:0x13 scope:local align:4 data:string +__vt__19StateMachine<4Navi> = .data:0x802C2AA0; // type:object size:0x18 scope:weak align:4 +@6729 = .data:0x802C2AB8; // type:object size:0x23 scope:local align:4 data:string +@6730 = .data:0x802C2ADC; // type:object size:0x3D scope:local align:4 data:string +@6731 = .data:0x802C2B1C; // type:object size:0x29 scope:local align:4 data:string +@6728 = .data:0x802C2B48; // type:object size:0x1C scope:local align:4 +@6738 = .data:0x802C2BC4; // type:object size:0xB scope:local align:4 data:string +@6741 = .data:0x802C2BD0; // type:object size:0x9 scope:local align:4 data:string +@6742 = .data:0x802C2BDC; // type:object size:0xC scope:local align:4 +@6744 = .data:0x802C2BE8; // type:object size:0x14 scope:local align:4 +@6739 = .data:0x802C2BFC; // type:object size:0x1C scope:local align:4 +__vt__10NaviDrawer = .data:0x802C2C18; // type:object size:0x30 scope:weak align:4 +@6753 = .data:0x802C2C64; // type:object size:0xB scope:local align:4 data:string +__vt__10PelletView = .data:0x802C2C70; // type:object size:0x34 scope:weak align:4 +@6761 = .data:0x802C2CA4; // type:object size:0x14 scope:local align:4 data:string +@6762 = .data:0x802C2CC4; // type:object size:0xA scope:local align:4 data:string +@6764 = .data:0x802C2CD0; // type:object size:0x9 scope:local align:4 data:string +@6763 = .data:0x802C2CDC; // type:object size:0xC scope:local align:4 +@6765 = .data:0x802C2CFC; // type:object size:0x9 scope:local align:4 data:string +@6767 = .data:0x802C2D08; // type:object size:0xD scope:local align:4 data:string +@6766 = .data:0x802C2D18; // type:object size:0xC scope:local align:4 +__vt__8NaviProp = .data:0x802C2D24; // type:object size:0xC scope:weak align:4 +@6770 = .data:0x802C2D30; // type:object size:0xC scope:local align:4 data:string +@6771 = .data:0x802C2D3C; // type:object size:0xC scope:local align:4 +@6775 = .data:0x802C2D68; // type:object size:0xC scope:local align:4 data:string +@6776 = .data:0x802C2D74; // type:object size:0xD scope:local align:4 data:string +@6777 = .data:0x802C2D84; // type:object size:0x9 scope:local align:4 data:string +@6778 = .data:0x802C2D90; // type:object size:0x14 scope:local align:4 +@6774 = .data:0x802C2DA4; // type:object size:0x2C scope:local align:4 +__vt__4Navi = .data:0x802C2DD0; // type:object size:0x16C scope:global align:4 +...data.0 = .data:0x802C2F40; // type:label scope:local +@1929 = .data:0x802C2F40; // type:object size:0xE scope:local align:4 data:string +@1939 = .data:0x802C2F50; // type:object size:0xA scope:local align:4 data:string +@5845 = .data:0x802C2F5C; // type:object size:0x13 scope:local align:4 data:string +@5847 = .data:0x802C2F70; // type:object size:0xF scope:local align:4 data:string +@5848 = .data:0x802C2F80; // type:object size:0xD scope:local align:4 data:string +@5849 = .data:0x802C2F90; // type:object size:0xC scope:local align:4 +@5850 = .data:0x802C2F9C; // type:object size:0xA scope:local align:4 data:string +@5851 = .data:0x802C2FA8; // type:object size:0x14 scope:local align:4 +@5846 = .data:0x802C2FBC; // type:object size:0x1C scope:local align:4 +__vt__18NaviUfoAccessState = .data:0x802C2FD8; // type:object size:0x54 scope:global align:4 +@5853 = .data:0x802C302C; // type:object size:0x15 scope:local align:4 data:string +@5854 = .data:0x802C3044; // type:object size:0x1C scope:local align:4 +__vt__20NaviPartsAccessState = .data:0x802C3060; // type:object size:0x54 scope:global align:4 +@5856 = .data:0x802C30B4; // type:object size:0x12 scope:local align:4 data:string +@5857 = .data:0x802C30C8; // type:object size:0x1C scope:local align:4 +__vt__17NaviStartingState = .data:0x802C30E4; // type:object size:0x54 scope:global align:4 +@5859 = .data:0x802C3138; // type:object size:0x12 scope:local align:4 data:string +@5860 = .data:0x802C314C; // type:object size:0x1C scope:local align:4 +__vt__17NaviPikiZeroState = .data:0x802C3168; // type:object size:0x54 scope:global align:4 +@5862 = .data:0x802C31BC; // type:object size:0xE scope:local align:4 data:string +@5863 = .data:0x802C31CC; // type:object size:0x1C scope:local align:4 +__vt__13NaviDeadState = .data:0x802C31E8; // type:object size:0x54 scope:global align:4 +@5865 = .data:0x802C323C; // type:object size:0x10 scope:local align:4 data:string +@5866 = .data:0x802C324C; // type:object size:0x1C scope:local align:4 +__vt__15NaviIroIroState = .data:0x802C3268; // type:object size:0x54 scope:global align:4 +@5867 = .data:0x802C32BC; // type:object size:0xF scope:local align:4 data:string +@5868 = .data:0x802C32CC; // type:object size:0x1C scope:local align:4 +__vt__14NaviClearState = .data:0x802C32E8; // type:object size:0x54 scope:global align:4 +@5869 = .data:0x802C333C; // type:object size:0xE scope:local align:4 data:string +@5870 = .data:0x802C334C; // type:object size:0x1C scope:local align:4 +__vt__13NaviLockState = .data:0x802C3368; // type:object size:0x54 scope:global align:4 +@5871 = .data:0x802C33BC; // type:object size:0x10 scope:local align:4 data:string +@5872 = .data:0x802C33CC; // type:object size:0x1C scope:local align:4 +__vt__15NaviAttackState = .data:0x802C33E8; // type:object size:0x54 scope:global align:4 +@5873 = .data:0x802C343C; // type:object size:0xF scope:local align:4 data:string +@5874 = .data:0x802C344C; // type:object size:0x1C scope:local align:4 +__vt__14NaviWaterState = .data:0x802C3468; // type:object size:0x54 scope:global align:4 +@5875 = .data:0x802C34BC; // type:object size:0xD scope:local align:4 data:string +@5876 = .data:0x802C34CC; // type:object size:0x1C scope:local align:4 +__vt__12NaviSowState = .data:0x802C34E8; // type:object size:0x54 scope:global align:4 +@5877 = .data:0x802C353C; // type:object size:0x11 scope:local align:4 data:string +@5878 = .data:0x802C3550; // type:object size:0x1C scope:local align:4 +__vt__16NaviPressedState = .data:0x802C356C; // type:object size:0x54 scope:global align:4 +@5880 = .data:0x802C35C0; // type:object size:0x14 scope:local align:4 data:string +@5881 = .data:0x802C35D4; // type:object size:0x1C scope:local align:4 +__vt__19NaviNukuAdjustState = .data:0x802C35F0; // type:object size:0x54 scope:global align:4 +@5882 = .data:0x802C3644; // type:object size:0xE scope:local align:4 data:string +@5883 = .data:0x802C3654; // type:object size:0x1C scope:local align:4 +__vt__13NaviNukuState = .data:0x802C3670; // type:object size:0x54 scope:global align:4 +@5885 = .data:0x802C36C4; // type:object size:0x12 scope:local align:4 data:string +@5886 = .data:0x802C36D8; // type:object size:0x1C scope:local align:4 +__vt__17NaviPushPikiState = .data:0x802C36F4; // type:object size:0x54 scope:global align:4 +@5887 = .data:0x802C3748; // type:object size:0xE scope:local align:4 data:string +@5888 = .data:0x802C3758; // type:object size:0x1C scope:local align:4 +__vt__13NaviPushState = .data:0x802C3774; // type:object size:0x54 scope:global align:4 +@5889 = .data:0x802C37C8; // type:object size:0xF scope:local align:4 data:string +@5890 = .data:0x802C37D8; // type:object size:0x1C scope:local align:4 +__vt__14NaviThrowState = .data:0x802C37F4; // type:object size:0x54 scope:global align:4 +@5891 = .data:0x802C3848; // type:object size:0x13 scope:local align:4 data:string +@5892 = .data:0x802C385C; // type:object size:0x1C scope:local align:4 +__vt__18NaviThrowWaitState = .data:0x802C3878; // type:object size:0x54 scope:global align:4 +@5893 = .data:0x802C38CC; // type:object size:0x11 scope:local align:4 data:string +@5894 = .data:0x802C38E0; // type:object size:0x1C scope:local align:4 +__vt__16NaviReleaseState = .data:0x802C38FC; // type:object size:0x54 scope:global align:4 +@5895 = .data:0x802C3950; // type:object size:0x10 scope:local align:4 data:string +@5896 = .data:0x802C3960; // type:object size:0x1C scope:local align:4 +__vt__15NaviGatherState = .data:0x802C397C; // type:object size:0x54 scope:global align:4 +@5897 = .data:0x802C39D0; // type:object size:0x10 scope:local align:4 data:string +@5898 = .data:0x802C39E0; // type:object size:0x1C scope:local align:4 +__vt__15NaviGeyzerState = .data:0x802C39FC; // type:object size:0x54 scope:global align:4 +@5900 = .data:0x802C3A50; // type:object size:0xF scope:local align:4 data:string +@5901 = .data:0x802C3A60; // type:object size:0x1C scope:local align:4 +__vt__14NaviFlickState = .data:0x802C3A7C; // type:object size:0x54 scope:global align:4 +@5903 = .data:0x802C3AD0; // type:object size:0xE scope:local align:4 data:string +@5904 = .data:0x802C3AE0; // type:object size:0x1C scope:local align:4 +__vt__13NaviIdleState = .data:0x802C3AFC; // type:object size:0x54 scope:global align:4 +@5905 = .data:0x802C3B50; // type:object size:0x11 scope:local align:4 data:string +@5906 = .data:0x802C3B64; // type:object size:0x1C scope:local align:4 +__vt__16NaviFunbariState = .data:0x802C3B80; // type:object size:0x54 scope:global align:4 +@5907 = .data:0x802C3BD4; // type:object size:0x12 scope:local align:4 data:string +@5908 = .data:0x802C3BE8; // type:object size:0x1C scope:local align:4 +__vt__17NaviRopeExitState = .data:0x802C3C04; // type:object size:0x54 scope:global align:4 +@5909 = .data:0x802C3C58; // type:object size:0xE scope:local align:4 data:string +@5910 = .data:0x802C3C68; // type:object size:0x1C scope:local align:4 +__vt__13NaviRopeState = .data:0x802C3C84; // type:object size:0x54 scope:global align:4 +@5911 = .data:0x802C3CD8; // type:object size:0xE scope:local align:4 data:string +@5912 = .data:0x802C3CE8; // type:object size:0x1C scope:local align:4 +__vt__13NaviPickState = .data:0x802C3D04; // type:object size:0x54 scope:global align:4 +@5913 = .data:0x802C3D58; // type:object size:0x13 scope:local align:4 data:string +@5915 = .data:0x802C3D6C; // type:object size:0x15 scope:local align:4 data:string +@5916 = .data:0x802C3D84; // type:object size:0x17 scope:local align:4 data:string +@5914 = .data:0x802C3D9C; // type:object size:0x2C scope:local align:4 +__vt__18NaviContainerState = .data:0x802C3DC8; // type:object size:0x74 scope:global align:4 +__vt__Q25GmWin13CloseListener = .data:0x802C3E3C; // type:object size:0xC scope:weak align:4 +__vt__Q212ContainerWin8Listener = .data:0x802C3E48; // type:object size:0xC scope:weak align:4 +@5919 = .data:0x802C3E54; // type:object size:0xD scope:local align:4 data:string +@5920 = .data:0x802C3E64; // type:object size:0x1C scope:local align:4 +__vt__12NaviUfoState = .data:0x802C3E80; // type:object size:0x54 scope:global align:4 +@5922 = .data:0x802C3ED4; // type:object size:0xE scope:local align:4 data:string +@5923 = .data:0x802C3EE4; // type:object size:0x1C scope:local align:4 +__vt__13NaviWalkState = .data:0x802C3F00; // type:object size:0x54 scope:global align:4 +@5924 = .data:0x802C3F54; // type:object size:0xE scope:local align:4 data:string +@5925 = .data:0x802C3F64; // type:object size:0x1C scope:local align:4 +__vt__13NaviBuryState = .data:0x802C3F80; // type:object size:0x54 scope:global align:4 +@5927 = .data:0x802C3FD4; // type:object size:0xC scope:local align:4 data:string +@5937 = .data:0x802C400C; // type:object size:0xF scope:local align:4 data:string +@5938 = .data:0x802C401C; // type:object size:0x1C scope:local align:4 +__vt__14NaviStuckState = .data:0x802C4038; // type:object size:0x54 scope:global align:4 +@5939 = .data:0x802C408C; // type:object size:0x11 scope:local align:4 data:string +@5940 = .data:0x802C40A0; // type:object size:0x1C scope:local align:4 +__vt__16NaviDemoInfState = .data:0x802C40BC; // type:object size:0x54 scope:global align:4 +@5942 = .data:0x802C4110; // type:object size:0x12 scope:local align:4 data:string +@5943 = .data:0x802C4124; // type:object size:0x1C scope:local align:4 +__vt__17NaviDemoWaitState = .data:0x802C4140; // type:object size:0x54 scope:global align:4 +@5945 = .data:0x802C4194; // type:object size:0x10 scope:local align:4 data:string +@5946 = .data:0x802C41A4; // type:object size:0x1C scope:local align:4 +__vt__15NaviPelletState = .data:0x802C41C0; // type:object size:0x54 scope:global align:4 +__vt__9NaviState = .data:0x802C4214; // type:object size:0x54 scope:weak align:4 +__vt__13AState<4Navi> = .data:0x802C4268; // type:object size:0x50 scope:weak align:4 +__vt__15Receiver<4Navi> = .data:0x802C42B8; // type:object size:0x38 scope:weak align:4 +@5948 = .data:0x802C42F0; // type:object size:0x11 scope:local align:4 data:string +@5950 = .data:0x802C4304; // type:object size:0x13 scope:local align:4 data:string +@5949 = .data:0x802C4318; // type:object size:0xC scope:local align:4 +__vt__16NaviStateMachine = .data:0x802C4324; // type:object size:0x18 scope:global align:4 +@5996 = .data:0x802C433C; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C4368; // type:label scope:local +@1884 = .data:0x802C4368; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802C437C; // type:object size:0x9 scope:local align:4 data:string +@2345 = .data:0x802C4388; // type:object size:0xD scope:local align:4 data:string +@2346 = .data:0x802C4398; // type:object size:0xC scope:local align:4 data:string +@2749 = .data:0x802C43A4; // type:object size:0x2C scope:local align:4 +@2761 = .data:0x802C43D0; // type:object size:0x14 scope:local align:4 data:string +@2763 = .data:0x802C43E4; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802C43F4; // type:object size:0xD scope:local align:4 data:string +@2765 = .data:0x802C4404; // type:object size:0xC scope:local align:4 +@2766 = .data:0x802C4410; // type:object size:0xA scope:local align:4 data:string +@2767 = .data:0x802C441C; // type:object size:0x14 scope:local align:4 +@2762 = .data:0x802C4430; // type:object size:0x1C scope:local align:4 +__vt__19NaviDemoSunsetState = .data:0x802C444C; // type:object size:0x54 scope:global align:4 +@2769 = .data:0x802C44A0; // type:object size:0x22 scope:local align:4 data:string +__vt__35StateMachine<19NaviDemoSunsetState> = .data:0x802C44C4; // type:object size:0x18 scope:weak align:4 +@2770 = .data:0x802C45B8; // type:object size:0x1E scope:local align:4 data:string +@2772 = .data:0x802C45D8; // type:object size:0x1E scope:local align:4 data:string +@2773 = .data:0x802C45F8; // type:object size:0x1C scope:local align:4 data:string +@2774 = .data:0x802C4614; // type:object size:0xC scope:local align:4 +@2775 = .data:0x802C4620; // type:object size:0x1F scope:local align:4 data:string +@2776 = .data:0x802C4640; // type:object size:0x14 scope:local align:4 +@2771 = .data:0x802C4654; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState8SitState = .data:0x802C4670; // type:object size:0x50 scope:global align:4 +@2777 = .data:0x802C46C0; // type:object size:0x1F scope:local align:4 data:string +@2778 = .data:0x802C46E0; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9WaitState = .data:0x802C46FC; // type:object size:0x50 scope:global align:4 +@2779 = .data:0x802C474C; // type:object size:0x22 scope:local align:4 data:string +@2780 = .data:0x802C4770; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState12WhistleState = .data:0x802C478C; // type:object size:0x50 scope:global align:4 +@2781 = .data:0x802C47DC; // type:object size:0x1F scope:local align:4 data:string +@2782 = .data:0x802C47FC; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState9LookState = .data:0x802C4818; // type:object size:0x50 scope:global align:4 +@2783 = .data:0x802C4868; // type:object size:0x1D scope:local align:4 data:string +@2784 = .data:0x802C4888; // type:object size:0x1C scope:local align:4 +__vt__Q219NaviDemoSunsetState7GoState = .data:0x802C48A4; // type:object size:0x50 scope:global align:4 +__vt__Q219NaviDemoSunsetState9DemoState = .data:0x802C48F4; // type:object size:0x50 scope:weak align:4 +__vt__29AState<19NaviDemoSunsetState> = .data:0x802C4944; // type:object size:0x50 scope:weak align:4 +__vt__31Receiver<19NaviDemoSunsetState> = .data:0x802C4994; // type:object size:0x38 scope:weak align:4 +@2785 = .data:0x802C49CC; // type:object size:0x26 scope:local align:4 data:string +@2786 = .data:0x802C49F4; // type:object size:0xC scope:local align:4 +__vt__Q219NaviDemoSunsetState16DemoStateMachine = .data:0x802C4A00; // type:object size:0x18 scope:global align:4 +@2844 = .data:0x802C4A18; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802C4A48; // type:label scope:local +@2086 = .data:0x802C4A48; // type:object size:0x14 scope:local align:4 data:string +@2096 = .data:0x802C4A5C; // type:object size:0x10 scope:local align:4 data:string +@2632 = .data:0x802C4A6C; // type:object size:0x4C scope:local align:4 +@3525 = .data:0x802C4AB8; // type:object size:0x9 scope:local align:4 data:string +@3526 = .data:0x802C4AC4; // type:object size:0xA scope:local align:4 data:string +@3527 = .data:0x802C4AD0; // type:object size:0x9 scope:local align:4 data:string +@3529 = .data:0x802C4ADC; // type:object size:0xB scope:local align:4 data:string +@3531 = .data:0x802C4AE8; // type:object size:0xE scope:local align:4 data:string +@3532 = .data:0x802C4AF8; // type:object size:0x9 scope:local align:4 data:string +@3533 = .data:0x802C4B04; // type:object size:0xB scope:local align:4 data:string +@3534 = .data:0x802C4B10; // type:object size:0xD scope:local align:4 data:string +@3544 = .data:0x802C4B20; // type:object size:0x11 scope:local align:4 data:string +@3799 = .data:0x802C4B34; // type:object size:0x9 scope:local align:4 data:string +@3802 = .data:0x802C4B40; // type:object size:0x13 scope:local align:4 +@3803 = .data:0x802C4B54; // type:object size:0x17 scope:local align:4 +@3804 = .data:0x802C4B6C; // type:object size:0x13 scope:local align:4 data:string +@3805 = .data:0x802C4B80; // type:object size:0xC scope:local align:4 data:string +@3806 = .data:0x802C4B8C; // type:object size:0x9 scope:local align:4 data:string +@3808 = .data:0x802C4B98; // type:object size:0xC scope:local align:4 data:string +@3811 = .data:0x802C4BA4; // type:object size:0xA scope:local align:4 data:string +@3813 = .data:0x802C4BB0; // type:object size:0x16 scope:local align:4 +@3815 = .data:0x802C4BC8; // type:object size:0x13 scope:local align:4 +@3817 = .data:0x802C4BDC; // type:object size:0x14 scope:local align:4 +@3818 = .data:0x802C4BF0; // type:object size:0x15 scope:local align:4 +@3820 = .data:0x802C4C08; // type:object size:0x14 scope:local align:4 +@3825 = .data:0x802C4C1C; // type:object size:0xA scope:local align:4 data:string +@4139 = .data:0x802C4C28; // type:object size:0x2C scope:local align:4 data:string +@4142 = .data:0x802C4C54; // type:object size:0xA scope:local align:4 data:string +@4143 = .data:0x802C4C60; // type:object size:0xA scope:local align:4 data:string +@4144 = .data:0x802C4C6C; // type:object size:0xA scope:local align:4 data:string +@4145 = .data:0x802C4C78; // type:object size:0xA scope:local align:4 data:string +@4146 = .data:0x802C4C84; // type:object size:0xC scope:local align:4 data:string +@4147 = .data:0x802C4C90; // type:object size:0xA scope:local align:4 data:string +@4148 = .data:0x802C4C9C; // type:object size:0xC scope:local align:4 data:string +@4149 = .data:0x802C4CA8; // type:object size:0x9 scope:local align:4 data:string +triNames$4141 = .data:0x802C4CB4; // type:object size:0x28 scope:local align:4 +@4371 = .data:0x802C4CDC; // type:object size:0x10 scope:local align:4 data:string +@4374 = .data:0x802C4CEC; // type:object size:0x9 scope:local align:4 data:string +@4375 = .data:0x802C4CF8; // type:object size:0xC scope:local align:4 +@4377 = .data:0x802C4D04; // type:object size:0x14 scope:local align:4 +@4372 = .data:0x802C4D18; // type:object size:0x1C scope:local align:4 +__vt__15GameCoreSection = .data:0x802C4D34; // type:object size:0x30 scope:global align:4 +@4385 = .data:0x802C4D80; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802C4DB8; // type:label scope:local +@1158 = .data:0x802C4DB8; // type:object size:0xD scope:local align:4 data:string +@1168 = .data:0x802C4DC8; // type:object size:0x9 scope:local align:4 data:string +@1894 = .data:0x802C4DD4; // type:object size:0xB scope:local align:4 data:string +@1896 = .data:0x802C4DE0; // type:object size:0x23 scope:local align:4 data:string +@1897 = .data:0x802C4E04; // type:object size:0x3D scope:local align:4 data:string +@1898 = .data:0x802C4E44; // type:object size:0x29 scope:local align:4 data:string +@1900 = .data:0x802C4E70; // type:object size:0x1C scope:local align:4 +@1895 = .data:0x802C4E8C; // type:object size:0x24 scope:local align:4 +__vt__10BurnEffect = .data:0x802C4EB0; // type:object size:0x3C scope:global align:4 +@1903 = .data:0x802C4EEC; // type:object size:0xD scope:local align:4 data:string +@1904 = .data:0x802C4EFC; // type:object size:0x24 scope:local align:4 +__vt__12RippleEffect = .data:0x802C4F20; // type:object size:0x3C scope:global align:4 +@1906 = .data:0x802C4F5C; // type:object size:0x10 scope:local align:4 data:string +@1907 = .data:0x802C4F6C; // type:object size:0x24 scope:local align:4 +__vt__15FreeLightEffect = .data:0x802C4F90; // type:object size:0x3C scope:global align:4 +@1908 = .data:0x802C4FCC; // type:object size:0x11 scope:local align:4 data:string +@1909 = .data:0x802C4FE0; // type:object size:0x24 scope:local align:4 +__vt__16UfoSuikomiEffect = .data:0x802C5004; // type:object size:0x3C scope:weak align:4 +@1995 = .data:0x802C5040; // type:object size:0xE scope:local align:4 data:string +@1997 = .data:0x802C5050; // type:object size:0x10 scope:local align:4 data:string +@1998 = .data:0x802C5060; // type:object size:0x24 scope:local align:4 +@1996 = .data:0x802C5084; // type:object size:0x2C scope:local align:4 +__vt__13UfoSuckEffect = .data:0x802C50B0; // type:object size:0x3C scope:weak align:4 +__vt__15WhistleTemplate = .data:0x802C50EC; // type:object size:0x3C scope:weak align:4 +@2101 = .data:0x802C5128; // type:object size:0x10 scope:local align:4 data:string +@2102 = .data:0x802C5138; // type:object size:0x24 scope:local align:4 +__vt__15BombEffectLight = .data:0x802C515C; // type:object size:0x3C scope:weak align:4 +@2108 = .data:0x802C5198; // type:object size:0xB scope:local align:4 data:string +@2109 = .data:0x802C51A4; // type:object size:0x24 scope:local align:4 +__vt__10BombEffect = .data:0x802C51C8; // type:object size:0x3C scope:weak align:4 +@2115 = .data:0x802C5204; // type:object size:0xD scope:local align:4 data:string +@2116 = .data:0x802C5214; // type:object size:0x24 scope:local align:4 +__vt__12SimpleEffect = .data:0x802C5238; // type:object size:0x3C scope:weak align:4 +@2125 = .data:0x802C5274; // type:object size:0x24 scope:local align:4 +__vt__7NaviFue = .data:0x802C5298; // type:object size:0x3C scope:weak align:4 +@2150 = .data:0x802C52D4; // type:object size:0x10 scope:local align:4 data:string +@2151 = .data:0x802C52E4; // type:object size:0x24 scope:local align:4 +__vt__15SmokeTreeEffect = .data:0x802C5308; // type:object size:0x3C scope:weak align:4 +@2157 = .data:0x802C5344; // type:object size:0x10 scope:local align:4 data:string +@2158 = .data:0x802C5354; // type:object size:0x24 scope:local align:4 +__vt__15SmokeRockEffect = .data:0x802C5378; // type:object size:0x3C scope:weak align:4 +@2164 = .data:0x802C53B4; // type:object size:0x11 scope:local align:4 data:string +@2165 = .data:0x802C53C8; // type:object size:0x24 scope:local align:4 +__vt__16SmokeGrassEffect = .data:0x802C53EC; // type:object size:0x3C scope:weak align:4 +@2171 = .data:0x802C5428; // type:object size:0x10 scope:local align:4 data:string +@2172 = .data:0x802C5438; // type:object size:0x24 scope:local align:4 +__vt__15SmokeSoilEffect = .data:0x802C545C; // type:object size:0x3C scope:weak align:4 +@2178 = .data:0x802C5498; // type:object size:0xC scope:local align:4 data:string +@2179 = .data:0x802C54A4; // type:object size:0x24 scope:local align:4 +__vt__11NaviWhistle = .data:0x802C54C8; // type:object size:0x3C scope:weak align:4 +@2297 = .data:0x802C5504; // type:object size:0xB scope:local align:4 data:string +@2298 = .data:0x802C5510; // type:object size:0x24 scope:local align:4 +__vt__10GoalEffect = .data:0x802C5534; // type:object size:0x3C scope:weak align:4 +@2318 = .data:0x802C5570; // type:object size:0xC scope:local align:4 data:string +@2319 = .data:0x802C557C; // type:object size:0x24 scope:local align:4 +__vt__11SlimeEffect = .data:0x802C55A0; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802C5640; // type:label scope:local +@390 = .data:0x802C5640; // type:object size:0xF scope:local align:4 data:string +@400 = .data:0x802C5650; // type:object size:0xB scope:local align:4 data:string +@408 = .data:0x802C565C; // type:object size:0xD scope:local align:4 data:string +@443 = .data:0x802C566C; // type:object size:0x9 scope:local align:4 data:string +@444 = .data:0x802C5678; // type:object size:0xC scope:local align:4 +@446 = .data:0x802C5684; // type:object size:0x14 scope:local align:4 +@447 = .data:0x802C5698; // type:object size:0xB scope:local align:4 data:string +@448 = .data:0x802C56A4; // type:object size:0x1C scope:local align:4 +@441 = .data:0x802C56C0; // type:object size:0x24 scope:local align:4 +__vt__10Kontroller = .data:0x802C56E4; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C5730; // type:label scope:local +@1462 = .data:0x802C5730; // type:object size:0xC scope:local align:4 data:string +@1472 = .data:0x802C573C; // type:object size:0x9 scope:local align:4 data:string +@1484 = .data:0x802C5748; // type:object size:0xA scope:local align:4 data:string +@1486 = .data:0x802C5754; // type:object size:0xC scope:local align:4 data:string +@1487 = .data:0x802C5760; // type:object size:0x10 scope:local align:4 data:string +@1488 = .data:0x802C5770; // type:object size:0xC scope:local align:4 data:string +@1489 = .data:0x802C577C; // type:object size:0xB scope:local align:4 data:string +@1490 = .data:0x802C5788; // type:object size:0x13 scope:local align:4 data:string +@1491 = .data:0x802C579C; // type:object size:0x11 scope:local align:4 data:string +@1492 = .data:0x802C57B0; // type:object size:0xD scope:local align:4 data:string +@1642 = .data:0x802C57C0; // type:object size:0x9 scope:local align:4 data:string +@1643 = .data:0x802C57CC; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802C57D8; // type:object size:0x14 scope:local align:4 +@1646 = .data:0x802C57EC; // type:object size:0xC scope:local align:4 data:string +@1647 = .data:0x802C57F8; // type:object size:0xA scope:local align:4 data:string +@1648 = .data:0x802C5804; // type:object size:0x24 scope:local align:4 +@1649 = .data:0x802C5828; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802C5838; // type:object size:0x2C scope:local align:4 +@1640 = .data:0x802C5864; // type:object size:0x34 scope:local align:4 +__vt__7NaviMgr = .data:0x802C5898; // type:object size:0x88 scope:global align:4 +...data.0 = .data:0x802C5920; // type:label scope:local +@734 = .data:0x802C5920; // type:object size:0x10 scope:local align:4 data:string +@744 = .data:0x802C5930; // type:object size:0xC scope:local align:4 data:string +shapeNames = .data:0x802C593C; // type:object size:0x14 scope:local align:4 +kindNames = .data:0x802C5950; // type:object size:0xC scope:local align:4 +@793 = .data:0x802C595C; // type:object size:0xC scope:local align:4 data:string +@794 = .data:0x802C5968; // type:object size:0x13 scope:local align:4 +@810 = .data:0x802C597C; // type:object size:0x13 scope:local align:4 +@1047 = .data:0x802C5990; // type:object size:0x12 scope:local align:4 data:string +@1049 = .data:0x802C59A4; // type:object size:0xB scope:local align:4 data:string +@1051 = .data:0x802C59B0; // type:object size:0xC scope:local align:4 +@1052 = .data:0x802C59BC; // type:object size:0xA scope:local align:4 data:string +@1053 = .data:0x802C59C8; // type:object size:0x14 scope:local align:4 +@1048 = .data:0x802C59DC; // type:object size:0x1C scope:local align:4 +__vt__17GenObjectMapParts = .data:0x802C59F8; // type:object size:0x38 scope:global align:4 +@1060 = .data:0x802C5A30; // type:object size:0xC scope:local align:4 data:string +@1062 = .data:0x802C5A3C; // type:object size:0x9 scope:local align:4 data:string +@1061 = .data:0x802C5A48; // type:object size:0xC scope:local align:4 +@1063 = .data:0x802C5A68; // type:object size:0xA scope:local align:4 data:string +@1064 = .data:0x802C5A74; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802C5A98; // type:label scope:local +@657 = .data:0x802C5A98; // type:object size:0xD scope:local align:4 data:string +@667 = .data:0x802C5AA8; // type:object size:0x9 scope:local align:4 data:string +@668 = .data:0x802C5AB4; // type:object size:0x12 scope:local align:4 data:string +@669 = .data:0x802C5AC8; // type:object size:0x16 scope:local align:4 data:string +@670 = .data:0x802C5AE0; // type:object size:0x12 scope:local align:4 data:string +@671 = .data:0x802C5AF4; // type:object size:0x13 scope:local align:4 data:string +shapeFiles__8MapParts = .data:0x802C5B08; // type:object size:0x10 scope:global align:4 +@898 = .data:0x802C5B18; // type:object size:0xB scope:local align:4 data:string +@899 = .data:0x802C5B24; // type:object size:0xA scope:local align:4 data:string +@902 = .data:0x802C5B30; // type:object size:0x9 scope:local align:4 data:string +@903 = .data:0x802C5B3C; // type:object size:0xC scope:local align:4 +@905 = .data:0x802C5B48; // type:object size:0x14 scope:local align:4 +@906 = .data:0x802C5B5C; // type:object size:0xE scope:local align:4 data:string +@907 = .data:0x802C5B6C; // type:object size:0x1C scope:local align:4 +@908 = .data:0x802C5B88; // type:object size:0xD scope:local align:4 data:string +@909 = .data:0x802C5B98; // type:object size:0x24 scope:local align:4 +@910 = .data:0x802C5BBC; // type:object size:0x9 scope:local align:4 data:string +@911 = .data:0x802C5BC8; // type:object size:0x2C scope:local align:4 +@900 = .data:0x802C5BF4; // type:object size:0x34 scope:local align:4 +__vt__9MapSlider = .data:0x802C5C28; // type:object size:0x4C scope:global align:4 +@921 = .data:0x802C5C74; // type:object size:0xA scope:local align:4 data:string +@922 = .data:0x802C5C80; // type:object size:0x34 scope:local align:4 +__vt__9MapEntity = .data:0x802C5CB4; // type:object size:0x4C scope:global align:4 +__vt__8MapParts = .data:0x802C5D5C; // type:object size:0x4C scope:global align:4 +...data.0 = .data:0x802C5DA8; // type:label scope:local +@661 = .data:0x802C5DA8; // type:object size:0x15 scope:local align:4 data:string +@671 = .data:0x802C5DC0; // type:object size:0x11 scope:local align:4 data:string +@678 = .data:0x802C5DD4; // type:object size:0x9 scope:local align:4 data:string +@687 = .data:0x802C5DE0; // type:object size:0x9 scope:local align:4 data:string +@694 = .data:0x802C5DEC; // type:object size:0xA scope:local align:4 data:string +@696 = .data:0x802C5DF8; // type:object size:0x9 scope:local align:4 data:string +@708 = .data:0x802C5E04; // type:object size:0xA scope:local align:4 data:string +@714 = .data:0x802C5E10; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C5E1C; // type:object size:0x9 scope:local align:4 data:string +@718 = .data:0x802C5E28; // type:object size:0x9 scope:local align:4 data:string +@719 = .data:0x802C5E34; // type:object size:0x9 scope:local align:4 data:string +@728 = .data:0x802C5E40; // type:object size:0x9 scope:local align:4 data:string +@731 = .data:0x802C5E4C; // type:object size:0x9 scope:local align:4 data:string +@736 = .data:0x802C5E58; // type:object size:0x9 scope:local align:4 data:string +@738 = .data:0x802C5E64; // type:object size:0x9 scope:local align:4 data:string +@739 = .data:0x802C5E70; // type:object size:0x9 scope:local align:4 data:string +@743 = .data:0x802C5E7C; // type:object size:0x9 scope:local align:4 data:string +@754 = .data:0x802C5E88; // type:object size:0xA scope:local align:4 data:string +@755 = .data:0x802C5E94; // type:object size:0xC scope:local align:4 data:string +@759 = .data:0x802C5EA0; // type:object size:0x9 scope:local align:4 data:string +motionLabels__16PaniPikiAnimator = .data:0x802C5EAC; // type:object size:0x168 scope:global align:4 +@1123 = .data:0x802C6014; // type:object size:0x11 scope:local align:4 data:string +@1125 = .data:0x802C6028; // type:object size:0x9 scope:local align:4 data:string +@1126 = .data:0x802C6034; // type:object size:0xD scope:local align:4 data:string +@1127 = .data:0x802C6044; // type:object size:0xC scope:local align:4 +@1124 = .data:0x802C6050; // type:object size:0x14 scope:local align:4 +__vt__16PaniPikiAnimator = .data:0x802C6064; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C6080; // type:label scope:local +@853 = .data:0x802C6080; // type:object size:0xD scope:local align:4 data:string +@863 = .data:0x802C6090; // type:object size:0x9 scope:local align:4 data:string +@870 = .data:0x802C609C; // type:object size:0xC scope:local align:4 data:string +@871 = .data:0x802C60A8; // type:object size:0xD scope:local align:4 data:string +@879 = .data:0x802C60B8; // type:object size:0xD scope:local align:4 data:string +@882 = .data:0x802C60C8; // type:object size:0xF scope:local align:4 data:string +@884 = .data:0x802C60D8; // type:object size:0xB scope:local align:4 data:string +@886 = .data:0x802C60E4; // type:object size:0xC scope:local align:4 +@887 = .data:0x802C60F0; // type:object size:0xA scope:local align:4 data:string +@888 = .data:0x802C60FC; // type:object size:0x14 scope:local align:4 +@883 = .data:0x802C6110; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectActor = .data:0x802C612C; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C6168; // type:label scope:local +@1114 = .data:0x802C6168; // type:object size:0xD scope:local align:4 data:string +@1124 = .data:0x802C6178; // type:object size:0x9 scope:local align:4 data:string +@1250 = .data:0x802C6184; // type:object size:0x9 scope:local align:4 data:string +@1419 = .data:0x802C6190; // type:object size:0xA scope:local align:4 data:string +@1449 = .data:0x802C619C; // type:object size:0x9 scope:local align:4 data:string +@1450 = .data:0x802C61A8; // type:object size:0x9 scope:local align:4 data:string +@1451 = .data:0x802C61B4; // type:object size:0x9 scope:local align:4 data:string +@1452 = .data:0x802C61C0; // type:object size:0x9 scope:local align:4 data:string +plantNames = .data:0x802C61CC; // type:object size:0x30 scope:local align:4 data:4byte +@1468 = .data:0x802C61FC; // type:object size:0x16 scope:local align:4 data:string +@1535 = .data:0x802C6214; // type:object size:0x12 scope:local align:4 data:string +@1538 = .data:0x802C6228; // type:object size:0xC scope:local align:4 data:string +@1539 = .data:0x802C6234; // type:object size:0xD scope:local align:4 data:string +@1553 = .data:0x802C6244; // type:object size:0xF scope:local align:4 data:string +@1610 = .data:0x802C6254; // type:object size:0xF scope:local align:4 data:string +@1612 = .data:0x802C6264; // type:object size:0xB scope:local align:4 data:string +@1614 = .data:0x802C6270; // type:object size:0xC scope:local align:4 +@1615 = .data:0x802C627C; // type:object size:0xA scope:local align:4 data:string +@1616 = .data:0x802C6288; // type:object size:0x14 scope:local align:4 +@1611 = .data:0x802C629C; // type:object size:0x1C scope:local align:4 +__vt__14GenObjectPlant = .data:0x802C62B8; // type:object size:0x38 scope:global align:4 +@1622 = .data:0x802C62F0; // type:object size:0x9 scope:local align:4 data:string +@1625 = .data:0x802C62FC; // type:object size:0xC scope:local align:4 +@1627 = .data:0x802C6308; // type:object size:0x14 scope:local align:4 +@1628 = .data:0x802C631C; // type:object size:0xC scope:local align:4 data:string +@1629 = .data:0x802C6328; // type:object size:0xA scope:local align:4 data:string +@1630 = .data:0x802C6334; // type:object size:0x24 scope:local align:4 +@1631 = .data:0x802C6358; // type:object size:0x10 scope:local align:4 data:string +@1632 = .data:0x802C6368; // type:object size:0x2C scope:local align:4 +@1623 = .data:0x802C6394; // type:object size:0x34 scope:local align:4 +__vt__8PlantMgr = .data:0x802C63C8; // type:object size:0x7C scope:global align:4 +@1648 = .data:0x802C6444; // type:object size:0xC scope:local align:4 data:string +@1650 = .data:0x802C6450; // type:object size:0x9 scope:local align:4 data:string +@1649 = .data:0x802C645C; // type:object size:0xC scope:local align:4 +@1651 = .data:0x802C647C; // type:object size:0xD scope:local align:4 data:string +@1653 = .data:0x802C6498; // type:object size:0x12 scope:local align:4 data:string +@1654 = .data:0x802C64AC; // type:object size:0x14 scope:local align:4 +__vt__Q28PlantMgr7UseNode = .data:0x802C64C0; // type:object size:0x10 scope:weak align:4 +@1655 = .data:0x802C64D0; // type:object size:0xD scope:local align:4 data:string +@1656 = .data:0x802C64E0; // type:object size:0x14 scope:local align:4 +@1657 = .data:0x802C651C; // type:object size:0x13 scope:local align:4 data:string +@1659 = .data:0x802C6530; // type:object size:0xA scope:local align:4 data:string +@1658 = .data:0x802C653C; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI9TouchInit = .data:0x802C6548; // type:object size:0xC scope:global align:4 +@1660 = .data:0x802C6554; // type:object size:0x12 scope:local align:4 data:string +@1661 = .data:0x802C6568; // type:object size:0xC scope:local align:4 +__vt__Q27PlantAI8WaitInit = .data:0x802C6574; // type:object size:0xC scope:global align:4 +@1662 = .data:0x802C6580; // type:object size:0x16 scope:local align:4 data:string +@1664 = .data:0x802C6598; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802C65A8; // type:object size:0x14 scope:local align:4 +@1663 = .data:0x802C65BC; // type:object size:0x1C scope:local align:4 +__vt__Q27PlantAI12OpponentMove = .data:0x802C65D8; // type:object size:0x14 scope:global align:4 +@1669 = .data:0x802C6628; // type:object size:0x19 scope:local align:4 data:string +@1670 = .data:0x802C6644; // type:object size:0x9 scope:local align:4 data:string +@1671 = .data:0x802C6650; // type:object size:0xC scope:local align:4 +@1668 = .data:0x802C665C; // type:object size:0x14 scope:local align:4 +__vt__7PlantAI = .data:0x802C6670; // type:object size:0x18 scope:weak align:4 +@1674 = .data:0x802C6688; // type:object size:0x14 scope:local align:4 data:string +@1675 = .data:0x802C669C; // type:object size:0xC scope:local align:4 data:string +@1676 = .data:0x802C66A8; // type:object size:0xD scope:local align:4 data:string +@1677 = .data:0x802C66B8; // type:object size:0x9 scope:local align:4 data:string +@1678 = .data:0x802C66C4; // type:object size:0x14 scope:local align:4 +@1679 = .data:0x802C66D8; // type:object size:0xB scope:local align:4 data:string +@1680 = .data:0x802C66E4; // type:object size:0x24 scope:local align:4 +@1673 = .data:0x802C6708; // type:object size:0x2C scope:local align:4 +__vt__5Plant = .data:0x802C6734; // type:object size:0x158 scope:global align:4 +...data.0 = .data:0x802C6890; // type:label scope:local +@661 = .data:0x802C6890; // type:object size:0x16 scope:local align:4 data:string +@671 = .data:0x802C68A8; // type:object size:0x12 scope:local align:4 data:string +motionLabels__17PaniPlantAnimator = .data:0x802C68BC; // type:object size:0x1C scope:global align:4 +@712 = .data:0x802C68D8; // type:object size:0x12 scope:local align:4 data:string +@714 = .data:0x802C68EC; // type:object size:0x9 scope:local align:4 data:string +@715 = .data:0x802C68F8; // type:object size:0xD scope:local align:4 data:string +@716 = .data:0x802C6908; // type:object size:0xC scope:local align:4 +@713 = .data:0x802C6914; // type:object size:0x14 scope:local align:4 +__vt__17PaniPlantAnimator = .data:0x802C6928; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C6948; // type:label scope:local +@1206 = .data:0x802C6948; // type:object size:0xC scope:local align:4 data:string +@1228 = .data:0x802C6954; // type:object size:0x9 scope:local align:4 +@1234 = .data:0x802C6960; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802C696C; // type:object size:0x9 scope:local align:4 +@1288 = .data:0x802C6978; // type:object size:0xE scope:local align:4 data:string +@1290 = .data:0x802C6988; // type:object size:0xB scope:local align:4 data:string +@1292 = .data:0x802C6994; // type:object size:0xC scope:local align:4 +@1293 = .data:0x802C69A0; // type:object size:0xA scope:local align:4 data:string +@1294 = .data:0x802C69AC; // type:object size:0x14 scope:local align:4 +@1289 = .data:0x802C69C0; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectTeki = .data:0x802C69DC; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802C6A18; // type:label scope:local +@445 = .data:0x802C6A18; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C6A2C; // type:object size:0xD scope:local align:4 data:string +@664 = .data:0x802C6A3C; // type:object size:0x13 scope:local align:4 data:string +@666 = .data:0x802C6A50; // type:object size:0xA scope:local align:4 data:string +@665 = .data:0x802C6A5C; // type:object size:0xC scope:local align:4 +__vt__18NVibrationFunction = .data:0x802C6A68; // type:object size:0xC scope:global align:4 +@667 = .data:0x802C6A74; // type:object size:0x15 scope:local align:4 data:string +@669 = .data:0x802C6A8C; // type:object size:0x14 scope:local align:4 data:string +@670 = .data:0x802C6AA0; // type:object size:0xC scope:local align:4 +@671 = .data:0x802C6AAC; // type:object size:0x10 scope:local align:4 data:string +@672 = .data:0x802C6ABC; // type:object size:0x14 scope:local align:4 +@668 = .data:0x802C6AD0; // type:object size:0x1C scope:local align:4 +__vt__20NClampLinearFunction = .data:0x802C6AEC; // type:object size:0x10 scope:global align:4 +__vt__15NLinearFunction = .data:0x802C6AFC; // type:object size:0x10 scope:weak align:4 +__vt__19NPolynomialFunction = .data:0x802C6B0C; // type:object size:0x10 scope:global align:4 +__vt__9NFunction = .data:0x802C6B1C; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802C6B28; // type:label scope:local +@445 = .data:0x802C6B28; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x802C6B3C; // type:object size:0xD scope:local align:4 data:string +__vt__6NAlpha = .data:0x802C6B4C; // type:object size:0xC scope:global align:4 +@2074 = .data:0x802C6B58; // type:object size:0x9 scope:local align:4 data:string +@2076 = .data:0x802C6B64; // type:object size:0xF scope:local align:4 data:string +@2075 = .data:0x802C6B74; // type:object size:0xC scope:local align:4 +__vt__8LUMatrix = .data:0x802C6B80; // type:object size:0xC scope:global align:4 +@2077 = .data:0x802C6B8C; // type:object size:0xD scope:local align:4 data:string +@2078 = .data:0x802C6B9C; // type:object size:0xC scope:local align:4 +__vt__12NUpperMatrix = .data:0x802C6BA8; // type:object size:0xC scope:weak align:4 +@2079 = .data:0x802C6BB4; // type:object size:0xD scope:local align:4 data:string +@2080 = .data:0x802C6BC4; // type:object size:0xC scope:local align:4 +__vt__12NLowerMatrix = .data:0x802C6BD0; // type:object size:0xC scope:weak align:4 +__vt__14NSpecialMatrix = .data:0x802C6BDC; // type:object size:0xC scope:weak align:4 +@2081 = .data:0x802C6BE8; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture3D = .data:0x802C6BF4; // type:object size:0xC scope:global align:4 +@2082 = .data:0x802C6C00; // type:object size:0xB scope:local align:4 data:string +__vt__10NPosture2D = .data:0x802C6C0C; // type:object size:0xC scope:global align:4 +__vt__6NPlane = .data:0x802C6C18; // type:object size:0x10 scope:global align:4 +__vt__5NLine = .data:0x802C6C28; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802C6C38; // type:label scope:local +@441 = .data:0x802C6C38; // type:object size:0xD scope:local align:4 data:string +@451 = .data:0x802C6C48; // type:object size:0x9 scope:local align:4 data:string +AtanTable = .data:0x802C6C54; // type:object size:0x802 scope:global align:4 +...data.0 = .data:0x802C7458; // type:label scope:local +@410 = .data:0x802C7458; // type:object size:0xF scope:local align:4 data:string +@420 = .data:0x802C7468; // type:object size:0xB scope:local align:4 data:string +__vt__5NHeap = .data:0x802C7474; // type:object size:0x10 scope:global align:4 +@709 = .data:0x802C7484; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NHeap> = .data:0x802C7494; // type:object size:0x40 scope:weak align:4 +__vt__5NNode = .data:0x802C74D4; // type:object size:0x20 scope:global align:4 +@711 = .data:0x802C74F4; // type:object size:0xE scope:local align:4 data:string +__vt__14NArray<5NNode> = .data:0x802C7504; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C7548; // type:label scope:local +@657 = .data:0x802C7548; // type:object size:0x11 scope:local align:4 data:string +@667 = .data:0x802C755C; // type:object size:0xD scope:local align:4 data:string +@668 = .data:0x802C756C; // type:object size:0xB scope:local align:4 data:string +@669 = .data:0x802C7578; // type:object size:0x9 scope:local align:4 data:string +@670 = .data:0x802C7584; // type:object size:0x9 scope:local align:4 data:string +@671 = .data:0x802C7590; // type:object size:0x9 scope:local align:4 data:string +@672 = .data:0x802C759C; // type:object size:0x9 scope:local align:4 data:string +@673 = .data:0x802C75A8; // type:object size:0x9 scope:local align:4 data:string +keyNames__12PaniAnimator = .data:0x802C75B4; // type:object size:0x18 scope:global align:4 +@864 = .data:0x802C75CC; // type:object size:0xD scope:local align:4 data:string +@866 = .data:0x802C75DC; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C75E8; // type:object size:0xC scope:local align:4 +__vt__12PaniAnimator = .data:0x802C75F4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C7610; // type:label scope:local +@1106 = .data:0x802C7610; // type:object size:0x15 scope:local align:4 data:string +@1116 = .data:0x802C7628; // type:object size:0x11 scope:local align:4 data:string +@1121 = .data:0x802C763C; // type:object size:0xD scope:local align:4 data:string +@1122 = .data:0x802C764C; // type:object size:0xD scope:local align:4 data:string +motionLabels__16PaniTekiAnimator = .data:0x802C765C; // type:object size:0x3C scope:global align:4 +@1197 = .data:0x802C7698; // type:object size:0x11 scope:local align:4 data:string +@1199 = .data:0x802C76AC; // type:object size:0x9 scope:local align:4 data:string +@1200 = .data:0x802C76B8; // type:object size:0xD scope:local align:4 data:string +@1201 = .data:0x802C76C8; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802C76D4; // type:object size:0x14 scope:local align:4 +__vt__16PaniTekiAnimator = .data:0x802C76E8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C7708; // type:label scope:local +@410 = .data:0x802C7708; // type:object size:0x13 scope:local align:4 data:string +@420 = .data:0x802C771C; // type:object size:0xF scope:local align:4 data:string +@587 = .data:0x802C772C; // type:object size:0x14 scope:local align:4 data:string +__vt__19ParaMultiParameters = .data:0x802C7740; // type:object size:0x14 scope:global align:4 +@588 = .data:0x802C7754; // type:object size:0x10 scope:local align:4 data:string +@590 = .data:0x802C7764; // type:object size:0x16 scope:local align:4 data:string +@589 = .data:0x802C777C; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersF = .data:0x802C7788; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C779C; // type:object size:0x14 scope:weak align:4 +@591 = .data:0x802C77B0; // type:object size:0x10 scope:local align:4 data:string +@593 = .data:0x802C77C0; // type:object size:0x14 scope:local align:4 data:string +@592 = .data:0x802C77D4; // type:object size:0xC scope:local align:4 +__vt__15ParaParametersI = .data:0x802C77E0; // type:object size:0x14 scope:global align:4 +__vt__17ParaParameters = .data:0x802C77F4; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C7808; // type:label scope:local +@1481 = .data:0x802C7808; // type:object size:0xF scope:local align:4 data:string +@1491 = .data:0x802C7818; // type:object size:0xB scope:local align:4 data:string +@1525 = .data:0x802C7824; // type:object size:0xD scope:local align:4 data:string +@2579 = .data:0x802C7834; // type:object size:0x2C scope:local align:4 data:string +@2582 = .data:0x802C7860; // type:object size:0xB scope:local align:4 data:string +@2583 = .data:0x802C786C; // type:object size:0xC scope:local align:4 +__vt__10PcamCamera = .data:0x802C7878; // type:object size:0xC scope:global align:4 +@2585 = .data:0x802C7884; // type:object size:0x11 scope:local align:4 data:string +__vt__17NArray<8Creature> = .data:0x802C7898; // type:object size:0x40 scope:weak align:4 +...data.0 = .data:0x802C78D8; // type:label scope:local +@1122 = .data:0x802C78D8; // type:object size:0x16 scope:local align:4 data:string +@1132 = .data:0x802C78F0; // type:object size:0x12 scope:local align:4 data:string +@1158 = .data:0x802C7904; // type:object size:0x12 scope:local align:4 data:string +@1523 = .data:0x802C7918; // type:object size:0x9 scope:local align:4 data:string +@1524 = .data:0x802C7924; // type:object size:0xC scope:local align:4 +@1526 = .data:0x802C7930; // type:object size:0x14 scope:local align:4 +@1521 = .data:0x802C7944; // type:object size:0x1C scope:local align:4 +__vt__17PcamCameraManager = .data:0x802C7960; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C79B0; // type:label scope:local +@717 = .data:0x802C79B0; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C79C8; // type:object size:0x11 scope:local align:4 data:string +@854 = .data:0x802C79DC; // type:object size:0x17 scope:local align:4 data:string +@857 = .data:0x802C79F4; // type:object size:0xA scope:local align:4 data:string +@858 = .data:0x802C7A00; // type:object size:0xC scope:local align:4 +@855 = .data:0x802C7A0C; // type:object size:0x14 scope:local align:4 +__vt__22PcamSideVibrationEvent = .data:0x802C7A20; // type:object size:0x3C scope:global align:4 +@869 = .data:0x802C7A5C; // type:object size:0xA scope:local align:4 data:string +@870 = .data:0x802C7A74; // type:object size:0x14 scope:local align:4 data:string +@871 = .data:0x802C7A88; // type:object size:0x14 scope:local align:4 +__vt__19PcamRandomMoveEvent = .data:0x802C7A9C; // type:object size:0x3C scope:global align:4 +@873 = .data:0x802C7AD8; // type:object size:0x10 scope:local align:4 data:string +@875 = .data:0x802C7AE8; // type:object size:0x13 scope:local align:4 data:string +@876 = .data:0x802C7AFC; // type:object size:0x14 scope:local align:4 +@874 = .data:0x802C7B10; // type:object size:0x1C scope:local align:4 +__vt__15PcamDamageEvent = .data:0x802C7B2C; // type:object size:0x3C scope:weak align:4 +@877 = .data:0x802C7B68; // type:object size:0x13 scope:local align:4 data:string +@878 = .data:0x802C7B7C; // type:object size:0x1C scope:local align:4 +__vt__18PcamVibrationEvent = .data:0x802C7B98; // type:object size:0x3C scope:weak align:4 +@879 = .data:0x802C7BD4; // type:object size:0x17 scope:local align:4 data:string +@881 = .data:0x802C7BEC; // type:object size:0x10 scope:local align:4 data:string +@882 = .data:0x802C7BFC; // type:object size:0x14 scope:local align:4 +@880 = .data:0x802C7C10; // type:object size:0x1C scope:local align:4 +__vt__22PcamLongVibrationEvent = .data:0x802C7C2C; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C7C68; // type:label scope:local +@446 = .data:0x802C7C68; // type:object size:0x19 scope:local align:4 data:string +@456 = .data:0x802C7C84; // type:object size:0x15 scope:local align:4 data:string +@753 = .data:0x802C7C9C; // type:object size:0xE scope:local align:4 data:string +@754 = .data:0x802C7CAC; // type:object size:0x12 scope:local align:4 data:string +@757 = .data:0x802C7CC0; // type:object size:0xF scope:local align:4 data:string +@760 = .data:0x802C7CD0; // type:object size:0xD scope:local align:4 data:string +@762 = .data:0x802C7CE0; // type:object size:0x1A scope:local align:4 data:string +@765 = .data:0x802C7CFC; // type:object size:0x1B scope:local align:4 data:string +@767 = .data:0x802C7D18; // type:object size:0xE scope:local align:4 data:string +@769 = .data:0x802C7D28; // type:object size:0x14 scope:local align:4 data:string +@770 = .data:0x802C7D3C; // type:object size:0x11 scope:local align:4 data:string +@771 = .data:0x802C7D50; // type:object size:0xF scope:local align:4 data:string +@772 = .data:0x802C7D60; // type:object size:0x1C scope:local align:4 data:string +@773 = .data:0x802C7D7C; // type:object size:0x1D scope:local align:4 data:string +@774 = .data:0x802C7D9C; // type:object size:0x10 scope:local align:4 data:string +@775 = .data:0x802C7DAC; // type:object size:0x11 scope:local align:4 data:string +@776 = .data:0x802C7DC0; // type:object size:0xE scope:local align:4 data:string +@777 = .data:0x802C7DD0; // type:object size:0xC scope:local align:4 data:string +@778 = .data:0x802C7DDC; // type:object size:0x19 scope:local align:4 data:string +@779 = .data:0x802C7DF8; // type:object size:0x1A scope:local align:4 data:string +@780 = .data:0x802C7E14; // type:object size:0xD scope:local align:4 data:string +@781 = .data:0x802C7E24; // type:object size:0x13 scope:local align:4 data:string +@782 = .data:0x802C7E38; // type:object size:0x10 scope:local align:4 data:string +@783 = .data:0x802C7E48; // type:object size:0xE scope:local align:4 data:string +@784 = .data:0x802C7E58; // type:object size:0x1B scope:local align:4 data:string +@785 = .data:0x802C7E74; // type:object size:0x1C scope:local align:4 data:string +@786 = .data:0x802C7E90; // type:object size:0xF scope:local align:4 data:string +@787 = .data:0x802C7EA0; // type:object size:0x15 scope:local align:4 data:string +@788 = .data:0x802C7EB8; // type:object size:0x12 scope:local align:4 data:string +@789 = .data:0x802C7ECC; // type:object size:0x10 scope:local align:4 data:string +@790 = .data:0x802C7EDC; // type:object size:0x1D scope:local align:4 data:string +@791 = .data:0x802C7EFC; // type:object size:0x1E scope:local align:4 data:string +@792 = .data:0x802C7F1C; // type:object size:0x11 scope:local align:4 data:string +@793 = .data:0x802C7F30; // type:object size:0x12 scope:local align:4 data:string +@794 = .data:0x802C7F44; // type:object size:0xF scope:local align:4 data:string +@795 = .data:0x802C7F54; // type:object size:0xD scope:local align:4 data:string +@796 = .data:0x802C7F64; // type:object size:0x1A scope:local align:4 data:string +@797 = .data:0x802C7F80; // type:object size:0x1B scope:local align:4 data:string +@798 = .data:0x802C7F9C; // type:object size:0xE scope:local align:4 data:string +@799 = .data:0x802C7FAC; // type:object size:0x18 scope:local align:4 data:string +@800 = .data:0x802C7FC4; // type:object size:0x15 scope:local align:4 data:string +@801 = .data:0x802C7FDC; // type:object size:0x13 scope:local align:4 data:string +@802 = .data:0x802C7FF0; // type:object size:0x20 scope:local align:4 data:string +@803 = .data:0x802C8010; // type:object size:0x21 scope:local align:4 data:string +@804 = .data:0x802C8034; // type:object size:0x14 scope:local align:4 data:string +@805 = .data:0x802C8048; // type:object size:0xD scope:local align:4 data:string +@808 = .data:0x802C8058; // type:object size:0x11 scope:local align:4 data:string +@809 = .data:0x802C806C; // type:object size:0xF scope:local align:4 data:string +@810 = .data:0x802C807C; // type:object size:0x12 scope:local align:4 data:string +@811 = .data:0x802C8090; // type:object size:0x17 scope:local align:4 data:string +@812 = .data:0x802C80A8; // type:object size:0x11 scope:local align:4 data:string +@815 = .data:0x802C80BC; // type:object size:0x17 scope:local align:4 data:string +@817 = .data:0x802C80D4; // type:object size:0x1A scope:local align:4 data:string +@818 = .data:0x802C80F0; // type:object size:0x12 scope:local align:4 data:string +@819 = .data:0x802C8104; // type:object size:0x12 scope:local align:4 data:string +@820 = .data:0x802C8118; // type:object size:0x17 scope:local align:4 data:string +@822 = .data:0x802C8130; // type:object size:0x13 scope:local align:4 data:string +@823 = .data:0x802C8144; // type:object size:0x1A scope:local align:4 data:string +@861 = .data:0x802C8160; // type:object size:0x15 scope:local align:4 data:string +@864 = .data:0x802C8178; // type:object size:0x9 scope:local align:4 data:string +@865 = .data:0x802C8184; // type:object size:0xC scope:local align:4 +@867 = .data:0x802C8190; // type:object size:0x14 scope:local align:4 +@862 = .data:0x802C81A4; // type:object size:0x1C scope:local align:4 +__vt__20PcamCameraParameters = .data:0x802C81C0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802C8210; // type:label scope:local +@698 = .data:0x802C8210; // type:object size:0x9 scope:local align:4 data:string +@852 = .data:0x802C821C; // type:object size:0x14 scope:local align:4 data:string +@854 = .data:0x802C8230; // type:object size:0xC scope:local align:4 data:string +@855 = .data:0x802C823C; // type:object size:0x11 scope:local align:4 data:string +@856 = .data:0x802C8250; // type:object size:0xC scope:local align:4 +@853 = .data:0x802C825C; // type:object size:0x14 scope:local align:4 +__vt__19PeveClampVector3fIO = .data:0x802C8270; // type:object size:0x10 scope:global align:4 +__vt__16NVector3fIOClass = .data:0x802C8280; // type:object size:0x10 scope:weak align:4 +@863 = .data:0x802C8290; // type:object size:0x17 scope:local align:4 data:string +@864 = .data:0x802C82A8; // type:object size:0xC scope:local align:4 +__vt__22PeveCreaturePositionIO = .data:0x802C82B4; // type:object size:0x10 scope:weak align:4 +@871 = .data:0x802C82C4; // type:object size:0x14 scope:local align:4 data:string +@873 = .data:0x802C82D8; // type:object size:0xD scope:local align:4 data:string +@872 = .data:0x802C82E8; // type:object size:0xC scope:local align:4 +__vt__19PeveCameraPostureIO = .data:0x802C82F4; // type:object size:0x10 scope:weak align:4 +__vt__12NPosture3DIO = .data:0x802C8304; // type:object size:0x10 scope:weak align:4 +@893 = .data:0x802C8314; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802C832C; // type:object size:0xC scope:local align:4 +__vt__22PeveCameraWatchpointIO = .data:0x802C8338; // type:object size:0x10 scope:weak align:4 +@907 = .data:0x802C8348; // type:object size:0x16 scope:local align:4 data:string +@908 = .data:0x802C8360; // type:object size:0xC scope:local align:4 +__vt__21PeveCameraViewpointIO = .data:0x802C836C; // type:object size:0x10 scope:weak align:4 +__vt__11NVector3fIO = .data:0x802C837C; // type:object size:0x10 scope:weak align:4 +@921 = .data:0x802C838C; // type:object size:0x10 scope:local align:4 data:string +@924 = .data:0x802C839C; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802C83A8; // type:object size:0xC scope:local align:4 +@922 = .data:0x802C83B4; // type:object size:0x14 scope:local align:4 +__vt__15PeveSerialEvent = .data:0x802C83C8; // type:object size:0x3C scope:global align:4 +@930 = .data:0x802C8404; // type:object size:0x12 scope:local align:4 data:string +@931 = .data:0x802C8418; // type:object size:0x14 scope:local align:4 +__vt__17PeveParallelEvent = .data:0x802C842C; // type:object size:0x3C scope:global align:4 +__vt__9PeveEvent = .data:0x802C8468; // type:object size:0x3C scope:weak align:4 +@932 = .data:0x802C84A4; // type:object size:0xE scope:local align:4 data:string +__vt__13PeveCondition = .data:0x802C84B4; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C84C8; // type:label scope:local +@698 = .data:0x802C84C8; // type:object size:0x13 scope:local align:4 data:string +@708 = .data:0x802C84DC; // type:object size:0xF scope:local align:4 data:string +@761 = .data:0x802C84EC; // type:object size:0x19 scope:local align:4 data:string +@763 = .data:0x802C8508; // type:object size:0xE scope:local align:4 data:string +@764 = .data:0x802C8518; // type:object size:0x15 scope:local align:4 data:string +@765 = .data:0x802C8530; // type:object size:0xC scope:local align:4 +@762 = .data:0x802C853C; // type:object size:0x14 scope:local align:4 +__vt__24PeveComparisonYCondition = .data:0x802C8550; // type:object size:0x14 scope:global align:4 +@769 = .data:0x802C8564; // type:object size:0x16 scope:local align:4 data:string +@770 = .data:0x802C857C; // type:object size:0x14 scope:local align:4 +__vt__21PeveDistanceCondition = .data:0x802C8590; // type:object size:0x14 scope:global align:4 +@773 = .data:0x802C85A4; // type:object size:0x12 scope:local align:4 data:string +@774 = .data:0x802C85B8; // type:object size:0xC scope:local align:4 +__vt__17PeveTimeCondition = .data:0x802C85C4; // type:object size:0x14 scope:weak align:4 +@782 = .data:0x802C85D8; // type:object size:0x18 scope:local align:4 data:string +@783 = .data:0x802C85F0; // type:object size:0xC scope:local align:4 +__vt__23PeveDependenceCondition = .data:0x802C85FC; // type:object size:0x14 scope:weak align:4 +__vt__20PeveBooleanCondition = .data:0x802C8610; // type:object size:0x14 scope:weak align:4 +...data.0 = .data:0x802C8628; // type:label scope:local +@717 = .data:0x802C8628; // type:object size:0x15 scope:local align:4 data:string +@727 = .data:0x802C8640; // type:object size:0x11 scope:local align:4 data:string +@1018 = .data:0x802C8654; // type:object size:0x13 scope:local align:4 data:string +@1021 = .data:0x802C8668; // type:object size:0xA scope:local align:4 data:string +@1022 = .data:0x802C8674; // type:object size:0xC scope:local align:4 +@1019 = .data:0x802C8680; // type:object size:0x14 scope:local align:4 +__vt__18PeveVibrationEvent = .data:0x802C8694; // type:object size:0x3C scope:global align:4 +@1033 = .data:0x802C86D0; // type:object size:0xA scope:local align:4 data:string +@1034 = .data:0x802C86E8; // type:object size:0xE scope:local align:4 data:string +@1035 = .data:0x802C86F8; // type:object size:0x14 scope:local align:4 +__vt__13PeveMoveEvent = .data:0x802C870C; // type:object size:0x3C scope:global align:4 +@1039 = .data:0x802C8748; // type:object size:0x17 scope:local align:4 data:string +@1040 = .data:0x802C8760; // type:object size:0x14 scope:local align:4 +__vt__22PeveInterpolationEvent = .data:0x802C8774; // type:object size:0x58 scope:global align:4 +@1053 = .data:0x802C87CC; // type:object size:0x17 scope:local align:4 data:string +@1055 = .data:0x802C87E4; // type:object size:0x12 scope:local align:4 data:string +@1056 = .data:0x802C87F8; // type:object size:0x14 scope:local align:4 +@1054 = .data:0x802C880C; // type:object size:0x1C scope:local align:4 +__vt__22PeveHomingPostureEvent = .data:0x802C8828; // type:object size:0x3C scope:weak align:4 +@1057 = .data:0x802C8864; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802C887C; // type:object size:0x14 scope:local align:4 +__vt__23PeveHomingPositionEvent = .data:0x802C8890; // type:object size:0x3C scope:global align:4 +@1059 = .data:0x802C88CC; // type:object size:0x17 scope:local align:4 data:string +@1060 = .data:0x802C88E4; // type:object size:0x14 scope:local align:4 +__vt__22PeveFunctionCurveEvent = .data:0x802C88F8; // type:object size:0x3C scope:global align:4 +@1061 = .data:0x802C8934; // type:object size:0x19 scope:local align:4 data:string +@1062 = .data:0x802C8950; // type:object size:0x1C scope:local align:4 +__vt__24PeveCircleMoveWatchEvent = .data:0x802C896C; // type:object size:0x3C scope:weak align:4 +@1063 = .data:0x802C89A8; // type:object size:0x14 scope:local align:4 data:string +@1064 = .data:0x802C89BC; // type:object size:0x14 scope:local align:4 +__vt__19PeveCircleMoveEvent = .data:0x802C89D0; // type:object size:0x3C scope:global align:4 +@1065 = .data:0x802C8A0C; // type:object size:0x1B scope:local align:4 data:string +@1066 = .data:0x802C8A28; // type:object size:0x14 scope:local align:4 +__vt__26PeveHorizontalSinWaveEvent = .data:0x802C8A3C; // type:object size:0x3C scope:global align:4 +@1067 = .data:0x802C8A78; // type:object size:0x11 scope:local align:4 data:string +@1069 = .data:0x802C8A8C; // type:object size:0xC scope:local align:4 data:string +@1068 = .data:0x802C8A98; // type:object size:0xC scope:local align:4 +@1073 = .data:0x802C8AC4; // type:object size:0x12 scope:local align:4 data:string +@1075 = .data:0x802C8AD8; // type:object size:0x16 scope:local align:4 data:string +@1076 = .data:0x802C8AF0; // type:object size:0x14 scope:local align:4 +@1074 = .data:0x802C8B04; // type:object size:0x1C scope:local align:4 +__vt__17PeveParabolaEvent = .data:0x802C8B20; // type:object size:0x3C scope:weak align:4 +__vt__21PeveAccelerationEvent = .data:0x802C8B5C; // type:object size:0x3C scope:global align:4 +@1077 = .data:0x802C8B98; // type:object size:0xE scope:local align:4 data:string +@1078 = .data:0x802C8BA8; // type:object size:0x14 scope:local align:4 +__vt__13PeveWaitEvent = .data:0x802C8BBC; // type:object size:0x3C scope:weak align:4 +...data.0 = .data:0x802C8BF8; // type:label scope:local +@1231 = .data:0x802C8BF8; // type:object size:0xC scope:local align:4 data:string +@1233 = .data:0x802C8C04; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802C8C14; // type:object size:0xC scope:local align:4 +__vt__11TaiStrategy = .data:0x802C8C20; // type:object size:0x28 scope:global align:4 +@1234 = .data:0x802C8C48; // type:object size:0x9 scope:local align:4 data:string +__vt__8TaiState = .data:0x802C8C54; // type:object size:0x18 scope:global align:4 +@1235 = .data:0x802C8C6C; // type:object size:0x10 scope:local align:4 data:string +@1237 = .data:0x802C8C7C; // type:object size:0xA scope:local align:4 data:string +@1236 = .data:0x802C8C88; // type:object size:0xC scope:local align:4 +__vt__15TaiSerialAction = .data:0x802C8C94; // type:object size:0x1C scope:global align:4 +__vt__9TaiAction = .data:0x802C8CB0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802C8CD0; // type:label scope:local +@1686 = .data:0x802C8CD0; // type:object size:0x15 scope:local align:4 data:string +@1696 = .data:0x802C8CE8; // type:object size:0x11 scope:local align:4 data:string +@2087 = .data:0x802C8CFC; // type:object size:0x17 scope:local align:4 data:string +@2089 = .data:0x802C8D14; // type:object size:0xA scope:local align:4 data:string +@2090 = .data:0x802C8D20; // type:object size:0x10 scope:local align:4 data:string +@2091 = .data:0x802C8D30; // type:object size:0xC scope:local align:4 +@2088 = .data:0x802C8D3C; // type:object size:0x14 scope:local align:4 +__vt__22TaiFlickingUpperAction = .data:0x802C8D50; // type:object size:0x1C scope:global align:4 +@2098 = .data:0x802C8D6C; // type:object size:0x12 scope:local align:4 data:string +@2099 = .data:0x802C8D80; // type:object size:0x14 scope:local align:4 +__vt__17TaiFlickingAction = .data:0x802C8D94; // type:object size:0x1C scope:global align:4 +@2100 = .data:0x802C8DB0; // type:object size:0x15 scope:local align:4 data:string +@2101 = .data:0x802C8DC8; // type:object size:0xC scope:local align:4 +__vt__20TaiTargetStickAction = .data:0x802C8DD4; // type:object size:0x1C scope:global align:4 +@2103 = .data:0x802C8DF0; // type:object size:0xF scope:local align:4 data:string +@2104 = .data:0x802C8E00; // type:object size:0xC scope:local align:4 +__vt__14TaiFlickAction = .data:0x802C8E0C; // type:object size:0x1C scope:global align:4 +@2105 = .data:0x802C8E28; // type:object size:0x11 scope:local align:4 data:string +@2106 = .data:0x802C8E3C; // type:object size:0xC scope:local align:4 +__vt__16TaiBangingAction = .data:0x802C8E48; // type:object size:0x1C scope:global align:4 +@2108 = .data:0x802C8E64; // type:object size:0xC scope:local align:4 data:string +@2118 = .data:0x802C8E9C; // type:object size:0x11 scope:local align:4 data:string +@2120 = .data:0x802C8EB0; // type:object size:0xA scope:local align:4 data:string +@2121 = .data:0x802C8EBC; // type:object size:0xE scope:local align:4 data:string +@2122 = .data:0x802C8ECC; // type:object size:0xC scope:local align:4 +@2119 = .data:0x802C8ED8; // type:object size:0x14 scope:local align:4 +__vt__16TekiAndCondition = .data:0x802C8EEC; // type:object size:0xC scope:weak align:4 +@2126 = .data:0x802C8EF8; // type:object size:0x11 scope:local align:4 data:string +@2127 = .data:0x802C8F0C; // type:object size:0x14 scope:local align:4 +__vt__16TekiNotCondition = .data:0x802C8F20; // type:object size:0xC scope:weak align:4 +@2129 = .data:0x802C8F2C; // type:object size:0x1D scope:local align:4 data:string +@2130 = .data:0x802C8F4C; // type:object size:0xC scope:local align:4 +__vt__28TaiAnimationSwallowingAction = .data:0x802C8F58; // type:object size:0x1C scope:global align:4 +@2131 = .data:0x802C8F74; // type:object size:0x18 scope:local align:4 data:string +@2132 = .data:0x802C8F8C; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackablePikiAction = .data:0x802C8F98; // type:object size:0x1C scope:global align:4 +@2133 = .data:0x802C8FB4; // type:object size:0x18 scope:local align:4 data:string +@2134 = .data:0x802C8FCC; // type:object size:0xC scope:local align:4 +__vt__23TaiAttackableNaviAction = .data:0x802C8FD8; // type:object size:0x1C scope:global align:4 +__vt__13TekiCondition = .data:0x802C8FF4; // type:object size:0xC scope:weak align:4 +@2136 = .data:0x802C900C; // type:object size:0x1C scope:local align:4 data:string +@2137 = .data:0x802C9028; // type:object size:0xC scope:local align:4 +__vt__27TaiAttackableNaviPikiAction = .data:0x802C9034; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C9050; // type:label scope:local +@1211 = .data:0x802C9050; // type:object size:0x14 scope:local align:4 data:string +@1221 = .data:0x802C9064; // type:object size:0x10 scope:local align:4 data:string +@1243 = .data:0x802C9074; // type:object size:0x1B scope:local align:4 data:string +@1245 = .data:0x802C9090; // type:object size:0xA scope:local align:4 data:string +@1244 = .data:0x802C909C; // type:object size:0xC scope:local align:4 +__vt__26TaiNaviWatchResultOnAction = .data:0x802C90A8; // type:object size:0x1C scope:global align:4 +@1253 = .data:0x802C90C4; // type:object size:0x1F scope:local align:4 data:string +@1254 = .data:0x802C90E4; // type:object size:0xC scope:local align:4 +__vt__30TaiTypeNaviWatchResultOnAction = .data:0x802C90F0; // type:object size:0x1C scope:global align:4 +@1255 = .data:0x802C910C; // type:object size:0x13 scope:local align:4 data:string +@1256 = .data:0x802C9120; // type:object size:0xC scope:local align:4 +__vt__18TaiStopSoundAction = .data:0x802C912C; // type:object size:0x1C scope:global align:4 +@1257 = .data:0x802C9148; // type:object size:0x13 scope:local align:4 data:string +@1258 = .data:0x802C915C; // type:object size:0xC scope:local align:4 +__vt__18TaiPlaySoundAction = .data:0x802C9168; // type:object size:0x1C scope:global align:4 +@1259 = .data:0x802C9184; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802C9198; // type:object size:0xC scope:local align:4 +__vt__18TaiSetOptionAction = .data:0x802C91A4; // type:object size:0x1C scope:global align:4 +@1261 = .data:0x802C91C0; // type:object size:0x15 scope:local align:4 data:string +@1262 = .data:0x802C91D8; // type:object size:0xC scope:local align:4 +__vt__20TaiActionStateAction = .data:0x802C91E4; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802C9200; // type:label scope:local +@1730 = .data:0x802C9200; // type:object size:0xE scope:local align:4 data:string +@1740 = .data:0x802C9210; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802C921C; // type:object size:0xB scope:local align:4 data:string +@1910 = .data:0x802C9228; // type:object size:0xF scope:local align:4 data:string +@1913 = .data:0x802C9238; // type:object size:0xE scope:local align:4 data:string +@1915 = .data:0x802C9248; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802C9258; // type:object size:0x19 scope:local align:4 data:string +@2967 = .data:0x802C9274; // type:object size:0xA scope:local align:4 data:string +@2968 = .data:0x802C9280; // type:object size:0x13 scope:local align:4 data:string +@2969 = .data:0x802C9294; // type:object size:0xC scope:local align:4 +@2970 = .data:0x802C92A0; // type:object size:0x15 scope:local align:4 data:string +@2971 = .data:0x802C92B8; // type:object size:0x14 scope:local align:4 +@2966 = .data:0x802C92CC; // type:object size:0x1C scope:local align:4 +__vt__24TaiChappyLegEffectAction = .data:0x802C92E8; // type:object size:0x20 scope:global align:4 +@2978 = .data:0x802C9308; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802C9320; // type:object size:0x11 scope:local align:4 data:string +@2981 = .data:0x802C9334; // type:object size:0xC scope:local align:4 +@2979 = .data:0x802C9340; // type:object size:0x14 scope:local align:4 +__vt__22TaiChappySmashedAction = .data:0x802C9354; // type:object size:0x1C scope:global align:4 +@2984 = .data:0x802C9370; // type:object size:0x11 scope:local align:4 data:string +@2986 = .data:0x802C9384; // type:object size:0xA scope:local align:4 data:string +@2987 = .data:0x802C9390; // type:object size:0xE scope:local align:4 data:string +@2988 = .data:0x802C93A0; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802C93AC; // type:object size:0x14 scope:local align:4 +@2993 = .data:0x802C93CC; // type:object size:0x10 scope:local align:4 data:string +@2994 = .data:0x802C93DC; // type:object size:0x14 scope:local align:4 +__vt__15TekiOrCondition = .data:0x802C93F0; // type:object size:0xC scope:weak align:4 +@2999 = .data:0x802C9414; // type:object size:0x13 scope:local align:4 data:string +@3000 = .data:0x802C9428; // type:object size:0xC scope:local align:4 +__vt__18TaiChappyCryAction = .data:0x802C9434; // type:object size:0x1C scope:global align:4 +@3001 = .data:0x802C9450; // type:object size:0xE scope:local align:4 data:string +@3002 = .data:0x802C9460; // type:object size:0xC scope:local align:4 +__vt__13TaiOnceAction = .data:0x802C946C; // type:object size:0x1C scope:weak align:4 +@3004 = .data:0x802C9488; // type:object size:0xD scope:local align:4 data:string +@3005 = .data:0x802C9498; // type:object size:0xC scope:local align:4 +__vt__12TaiAndAction = .data:0x802C94A4; // type:object size:0x1C scope:weak align:4 +@3011 = .data:0x802C94DC; // type:object size:0x12 scope:local align:4 data:string +@3013 = .data:0x802C94F0; // type:object size:0xD scope:local align:4 data:string +@3014 = .data:0x802C9500; // type:object size:0xC scope:local align:4 data:string +@3015 = .data:0x802C950C; // type:object size:0xC scope:local align:4 +@3012 = .data:0x802C9518; // type:object size:0x14 scope:local align:4 +__vt__17TaiChappyStrategy = .data:0x802C952C; // type:object size:0x28 scope:weak align:4 +@3016 = .data:0x802C9554; // type:object size:0x15 scope:local align:4 data:string +@3019 = .data:0x802C956C; // type:object size:0x9 scope:local align:4 data:string +@3020 = .data:0x802C9578; // type:object size:0xC scope:local align:4 +@3022 = .data:0x802C9584; // type:object size:0x14 scope:local align:4 +@3023 = .data:0x802C9598; // type:object size:0xF scope:local align:4 data:string +@3024 = .data:0x802C95A8; // type:object size:0x1C scope:local align:4 +@3017 = .data:0x802C95C4; // type:object size:0x24 scope:local align:4 +__vt__20TaiCatfishParameters = .data:0x802C95E8; // type:object size:0x30 scope:weak align:4 +@3031 = .data:0x802C9618; // type:object size:0x19 scope:local align:4 data:string +@3032 = .data:0x802C9634; // type:object size:0x24 scope:local align:4 +__vt__24TaiBlackChappyParameters = .data:0x802C9658; // type:object size:0x30 scope:weak align:4 +@3033 = .data:0x802C9688; // type:object size:0x14 scope:local align:4 data:string +@3034 = .data:0x802C969C; // type:object size:0x24 scope:local align:4 +__vt__19TaiChappyParameters = .data:0x802C96C0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802C96F0; // type:label scope:local +@1729 = .data:0x802C96F0; // type:object size:0xE scope:local align:4 data:string +@1739 = .data:0x802C9700; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802C970C; // type:object size:0xC scope:local align:4 data:string +@1926 = .data:0x802C9718; // type:object size:0x10 scope:local align:4 data:string +@1929 = .data:0x802C9728; // type:object size:0xF scope:local align:4 data:string +@1930 = .data:0x802C9738; // type:object size:0x1B scope:local align:4 data:string +@1932 = .data:0x802C9754; // type:object size:0x13 scope:local align:4 data:string +@1934 = .data:0x802C9768; // type:object size:0x1F scope:local align:4 data:string +@1936 = .data:0x802C9788; // type:object size:0x1A scope:local align:4 data:string +@1938 = .data:0x802C97A4; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802C97B0; // type:object size:0x14 scope:local align:4 data:string +@1941 = .data:0x802C97C4; // type:object size:0x12 scope:local align:4 data:string +@1942 = .data:0x802C97D8; // type:object size:0x14 scope:local align:4 data:string +@3444 = .data:0x802C97EC; // type:object size:0x12 scope:local align:4 data:string +@3446 = .data:0x802C9800; // type:object size:0xD scope:local align:4 data:string +@3447 = .data:0x802C9810; // type:object size:0xC scope:local align:4 data:string +@3448 = .data:0x802C981C; // type:object size:0xC scope:local align:4 +@3445 = .data:0x802C9828; // type:object size:0x14 scope:local align:4 +__vt__17TaiHollecStrategy = .data:0x802C983C; // type:object size:0x28 scope:global align:4 +@3449 = .data:0x802C9864; // type:object size:0x14 scope:local align:4 data:string +@3452 = .data:0x802C9878; // type:object size:0x9 scope:local align:4 data:string +@3453 = .data:0x802C9884; // type:object size:0xC scope:local align:4 +@3455 = .data:0x802C9890; // type:object size:0x14 scope:local align:4 +@3456 = .data:0x802C98A4; // type:object size:0xF scope:local align:4 data:string +@3457 = .data:0x802C98B4; // type:object size:0x1C scope:local align:4 +@3450 = .data:0x802C98D0; // type:object size:0x24 scope:local align:4 +__vt__19TaiHollecParameters = .data:0x802C98F4; // type:object size:0x30 scope:weak align:4 +@3464 = .data:0x802C9924; // type:object size:0x19 scope:local align:4 data:string +@3466 = .data:0x802C9940; // type:object size:0xA scope:local align:4 data:string +@3467 = .data:0x802C994C; // type:object size:0x13 scope:local align:4 data:string +@3468 = .data:0x802C9960; // type:object size:0xC scope:local align:4 +@3469 = .data:0x802C996C; // type:object size:0x15 scope:local align:4 data:string +@3470 = .data:0x802C9984; // type:object size:0x14 scope:local align:4 +@3465 = .data:0x802C9998; // type:object size:0x1C scope:local align:4 +__vt__24TaiCollecLegEffectAction = .data:0x802C99B4; // type:object size:0x20 scope:global align:4 +@3477 = .data:0x802C99D4; // type:object size:0x16 scope:local align:4 data:string +@3478 = .data:0x802C99EC; // type:object size:0xC scope:local align:4 +__vt__21TaiCollecGetOutAction = .data:0x802C99F8; // type:object size:0x1C scope:global align:4 +@3480 = .data:0x802C9A14; // type:object size:0x17 scope:local align:4 data:string +@3481 = .data:0x802C9A2C; // type:object size:0xC scope:local align:4 +__vt__22TaiCollecFallingAction = .data:0x802C9A38; // type:object size:0x1C scope:global align:4 +@3482 = .data:0x802C9A54; // type:object size:0x1B scope:local align:4 data:string +@3483 = .data:0x802C9A70; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecDeadFallingAction = .data:0x802C9A7C; // type:object size:0x1C scope:global align:4 +@3484 = .data:0x802C9A98; // type:object size:0x29 scope:local align:4 data:string +@3485 = .data:0x802C9AC4; // type:object size:0xC scope:local align:4 +__vt__40TaiCollecPelletFinishContainerizedAction = .data:0x802C9AD0; // type:object size:0x1C scope:global align:4 +@3486 = .data:0x802C9AEC; // type:object size:0x28 scope:local align:4 data:string +@3487 = .data:0x802C9B14; // type:object size:0xC scope:local align:4 +__vt__39TaiCollecPelletStartContainerizedAction = .data:0x802C9B20; // type:object size:0x1C scope:global align:4 +@3488 = .data:0x802C9B3C; // type:object size:0x1A scope:local align:4 data:string +@3489 = .data:0x802C9B58; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecRoundCarryAction = .data:0x802C9B64; // type:object size:0x1C scope:global align:4 +@3490 = .data:0x802C9B80; // type:object size:0x1F scope:local align:4 data:string +@3491 = .data:0x802C9BA0; // type:object size:0xC scope:local align:4 +__vt__30TaiCollecRouteImpassableAction = .data:0x802C9BAC; // type:object size:0x1C scope:global align:4 +@3492 = .data:0x802C9BC8; // type:object size:0x1E scope:local align:4 data:string +@3494 = .data:0x802C9BE8; // type:object size:0x10 scope:local align:4 data:string +@3495 = .data:0x802C9BF8; // type:object size:0xC scope:local align:4 +@3496 = .data:0x802C9C04; // type:object size:0x1A scope:local align:4 data:string +@3497 = .data:0x802C9C20; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802C9C34; // type:object size:0x1C scope:local align:4 +__vt__29TaiCollecCarryingToNestAction = .data:0x802C9C50; // type:object size:0x20 scope:global align:4 +@3498 = .data:0x802C9C70; // type:object size:0xC scope:local align:4 data:string +@3508 = .data:0x802C9CA8; // type:object size:0x1D scope:local align:4 data:string +@3509 = .data:0x802C9CC8; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecPuttingPelletAction = .data:0x802C9CD4; // type:object size:0x1C scope:global align:4 +@3510 = .data:0x802C9CF0; // type:object size:0x13 scope:local align:4 data:string +@3511 = .data:0x802C9D04; // type:object size:0xC scope:local align:4 +__vt__18TaiCollecPutAction = .data:0x802C9D10; // type:object size:0x1C scope:global align:4 +@3512 = .data:0x802C9D2C; // type:object size:0x1E scope:local align:4 data:string +@3513 = .data:0x802C9D4C; // type:object size:0xC scope:local align:4 +__vt__29TaiCollecDefeatCarryingAction = .data:0x802C9D58; // type:object size:0x1C scope:global align:4 +@3514 = .data:0x802C9D74; // type:object size:0x1B scope:local align:4 data:string +@3515 = .data:0x802C9D90; // type:object size:0xC scope:local align:4 +__vt__26TaiCollecWinCarryingAction = .data:0x802C9D9C; // type:object size:0x1C scope:global align:4 +@3516 = .data:0x802C9DB8; // type:object size:0x1C scope:local align:4 data:string +@3517 = .data:0x802C9DD4; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecBeingDraggedAction = .data:0x802C9DE0; // type:object size:0x1C scope:global align:4 +@3519 = .data:0x802C9DFC; // type:object size:0x18 scope:local align:4 data:string +@3520 = .data:0x802C9E14; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCarryingAction = .data:0x802C9E20; // type:object size:0x1C scope:global align:4 +@3521 = .data:0x802C9E3C; // type:object size:0x18 scope:local align:4 data:string +@3522 = .data:0x802C9E54; // type:object size:0xC scope:local align:4 +__vt__23TaiCollecCatchingAction = .data:0x802C9E60; // type:object size:0x1C scope:global align:4 +@3523 = .data:0x802C9E7C; // type:object size:0x1A scope:local align:4 data:string +@3524 = .data:0x802C9E98; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecHoldPelletAction = .data:0x802C9EA4; // type:object size:0x1C scope:global align:4 +@3525 = .data:0x802C9EC0; // type:object size:0x21 scope:local align:4 data:string +@3526 = .data:0x802C9EE4; // type:object size:0xC scope:local align:4 +__vt__32TaiCollecPelletDisappearedAction = .data:0x802C9EF0; // type:object size:0x1C scope:global align:4 +@3527 = .data:0x802C9F0C; // type:object size:0x1A scope:local align:4 data:string +@3528 = .data:0x802C9F28; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecPelletLostAction = .data:0x802C9F34; // type:object size:0x1C scope:global align:4 +@3529 = .data:0x802C9F50; // type:object size:0x2C scope:local align:4 data:string +@3531 = .data:0x802C9F7C; // type:object size:0xF scope:local align:4 data:string +@3532 = .data:0x802C9F8C; // type:object size:0xC scope:local align:4 +@3530 = .data:0x802C9F98; // type:object size:0x14 scope:local align:4 +__vt__43TaiCollecVisibleHeightPelletLostTimerAction = .data:0x802C9FAC; // type:object size:0x1C scope:global align:4 +@3533 = .data:0x802C9FC8; // type:object size:0x27 scope:local align:4 data:string +@3534 = .data:0x802C9FF0; // type:object size:0xC scope:local align:4 +__vt__38TaiCollecVisibleHeightPelletLostAction = .data:0x802C9FFC; // type:object size:0x1C scope:global align:4 +@3535 = .data:0x802CA018; // type:object size:0x11 scope:local align:4 data:string +@3537 = .data:0x802CA02C; // type:object size:0xA scope:local align:4 data:string +@3538 = .data:0x802CA038; // type:object size:0xE scope:local align:4 data:string +@3539 = .data:0x802CA048; // type:object size:0xC scope:local align:4 +@3536 = .data:0x802CA054; // type:object size:0x14 scope:local align:4 +@3543 = .data:0x802CA074; // type:object size:0x11 scope:local align:4 data:string +@3544 = .data:0x802CA088; // type:object size:0x14 scope:local align:4 +@3546 = .data:0x802CA0C0; // type:object size:0x1C scope:local align:4 data:string +@3547 = .data:0x802CA0DC; // type:object size:0xC scope:local align:4 +__vt__27TaiCollecTargetPelletAction = .data:0x802CA0E8; // type:object size:0x1C scope:global align:4 +@3548 = .data:0x802CA104; // type:object size:0x1D scope:local align:4 data:string +@3549 = .data:0x802CA124; // type:object size:0xC scope:local align:4 +__vt__28TaiCollecLetGoOfPelletAction = .data:0x802CA130; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CA14C; // type:object size:0x1A scope:local align:4 data:string +@3551 = .data:0x802CA168; // type:object size:0xC scope:local align:4 +__vt__25TaiCollecImpassableAction = .data:0x802CA174; // type:object size:0x1C scope:global align:4 +@3552 = .data:0x802CA190; // type:object size:0x20 scope:local align:4 data:string +@3553 = .data:0x802CA1B0; // type:object size:0x14 scope:local align:4 +__vt__31TekiCollecTargetPelletCondition = .data:0x802CA1C4; // type:object size:0xC scope:global align:4 +@3554 = .data:0x802CA1D0; // type:object size:0x12 scope:local align:4 data:string +@3555 = .data:0x802CA1E4; // type:object size:0x14 scope:local align:4 +__vt__17TaiCollecStrategy = .data:0x802CA1F8; // type:object size:0x28 scope:global align:4 +@3556 = .data:0x802CA220; // type:object size:0x14 scope:local align:4 data:string +@3557 = .data:0x802CA234; // type:object size:0xC scope:local align:4 +__vt__19TaiDependenceAction = .data:0x802CA240; // type:object size:0x1C scope:weak align:4 +@3564 = .data:0x802CA278; // type:object size:0x14 scope:local align:4 data:string +@3565 = .data:0x802CA28C; // type:object size:0x24 scope:local align:4 +__vt__19TaiCollecParameters = .data:0x802CA2B0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CA2E0; // type:label scope:local +@1111 = .data:0x802CA2E0; // type:object size:0x18 scope:local align:4 data:string +@1121 = .data:0x802CA2F8; // type:object size:0x14 scope:local align:4 data:string +@1149 = .data:0x802CA30C; // type:object size:0x1B scope:local align:4 data:string +@1151 = .data:0x802CA328; // type:object size:0xA scope:local align:4 data:string +@1152 = .data:0x802CA334; // type:object size:0x1B scope:local align:4 data:string +@1153 = .data:0x802CA350; // type:object size:0xC scope:local align:4 +@1150 = .data:0x802CA35C; // type:object size:0x14 scope:local align:4 +__vt__26TaiTekiTypeCollisionAction = .data:0x802CA370; // type:object size:0x1C scope:global align:4 +@1161 = .data:0x802CA38C; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802CA3A4; // type:object size:0x14 scope:local align:4 +__vt__22TaiNaviCollisionAction = .data:0x802CA3B8; // type:object size:0x1C scope:global align:4 +@1163 = .data:0x802CA3D4; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802CA3EC; // type:object size:0x14 scope:local align:4 +__vt__22TaiPikiCollisionAction = .data:0x802CA400; // type:object size:0x1C scope:global align:4 +__vt__26TaiCreatureCollisionAction = .data:0x802CA41C; // type:object size:0x1C scope:global align:4 +@1165 = .data:0x802CA438; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802CA450; // type:object size:0xC scope:local align:4 +__vt__22TaiWallCollisionAction = .data:0x802CA45C; // type:object size:0x1C scope:global align:4 +@1167 = .data:0x802CA478; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802CA494; // type:object size:0xC scope:local align:4 +__vt__24TaiGroundCollisionAction = .data:0x802CA4A0; // type:object size:0x1C scope:global align:4 +@1169 = .data:0x802CA4BC; // type:object size:0x10 scope:local align:4 data:string +@1170 = .data:0x802CA4CC; // type:object size:0xC scope:local align:4 +__vt__15TaiBounceAction = .data:0x802CA4D8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CA4F8; // type:label scope:local +@1716 = .data:0x802CA4F8; // type:object size:0x15 scope:local align:4 data:string +@1726 = .data:0x802CA510; // type:object size:0x11 scope:local align:4 data:string +@1735 = .data:0x802CA524; // type:object size:0x15 scope:local align:4 data:string +@1737 = .data:0x802CA53C; // type:object size:0xA scope:local align:4 data:string +@1738 = .data:0x802CA548; // type:object size:0x13 scope:local align:4 data:string +@1739 = .data:0x802CA55C; // type:object size:0xC scope:local align:4 +@1736 = .data:0x802CA568; // type:object size:0x14 scope:local align:4 +__vt__20TaiJointEffectAction = .data:0x802CA57C; // type:object size:0x20 scope:global align:4 +@1748 = .data:0x802CA5B8; // type:object size:0x22 scope:local align:4 data:string +@1749 = .data:0x802CA5DC; // type:object size:0xC scope:local align:4 +__vt__33TaiStopGenParticleGeneratorAction = .data:0x802CA5E8; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CA604; // type:object size:0x23 scope:local align:4 data:string +@1751 = .data:0x802CA628; // type:object size:0xC scope:local align:4 +__vt__34TaiStartGenParticleGeneratorAction = .data:0x802CA634; // type:object size:0x1C scope:global align:4 +@1752 = .data:0x802CA650; // type:object size:0x10 scope:local align:4 data:string +@1753 = .data:0x802CA660; // type:object size:0xC scope:local align:4 +__vt__15TaiEffectAction = .data:0x802CA66C; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CA688; // type:label scope:local +@1728 = .data:0x802CA688; // type:object size:0xE scope:local align:4 data:string +@1738 = .data:0x802CA698; // type:object size:0xA scope:local align:4 data:string +@2002 = .data:0x802CA6A4; // type:object size:0xD scope:local align:4 data:string +@2151 = .data:0x802CA6B4; // type:object size:0x18 scope:local align:4 data:string +@2153 = .data:0x802CA6CC; // type:object size:0xA scope:local align:4 data:string +@2152 = .data:0x802CA6D8; // type:object size:0xC scope:local align:4 +__vt__23TaiIwagenShootingAction = .data:0x802CA6E4; // type:object size:0x1C scope:global align:4 +@2160 = .data:0x802CA700; // type:object size:0x12 scope:local align:4 data:string +@2162 = .data:0x802CA714; // type:object size:0xD scope:local align:4 data:string +@2163 = .data:0x802CA724; // type:object size:0xC scope:local align:4 data:string +@2164 = .data:0x802CA730; // type:object size:0xC scope:local align:4 +@2161 = .data:0x802CA73C; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagenStrategy = .data:0x802CA750; // type:object size:0x28 scope:global align:4 +@2165 = .data:0x802CA778; // type:object size:0x14 scope:local align:4 data:string +@2168 = .data:0x802CA78C; // type:object size:0x9 scope:local align:4 data:string +@2169 = .data:0x802CA798; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802CA7A4; // type:object size:0x14 scope:local align:4 +@2172 = .data:0x802CA7B8; // type:object size:0xF scope:local align:4 data:string +@2173 = .data:0x802CA7C8; // type:object size:0x1C scope:local align:4 +@2166 = .data:0x802CA7E4; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagenParameters = .data:0x802CA808; // type:object size:0x30 scope:weak align:4 +@2180 = .data:0x802CA838; // type:object size:0x17 scope:local align:4 data:string +@2181 = .data:0x802CA850; // type:object size:0xC scope:local align:4 +__vt__22TaiIwagonRollingAction = .data:0x802CA85C; // type:object size:0x1C scope:global align:4 +@2182 = .data:0x802CA878; // type:object size:0x1A scope:local align:4 data:string +@2183 = .data:0x802CA894; // type:object size:0xC scope:local align:4 +__vt__25TaiIwagonDustEffectAction = .data:0x802CA8A0; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802CA8BC; // type:object size:0x12 scope:local align:4 data:string +@2186 = .data:0x802CA8D0; // type:object size:0x14 scope:local align:4 +__vt__17TaiIwagonStrategy = .data:0x802CA8E4; // type:object size:0x28 scope:global align:4 +@2188 = .data:0x802CA928; // type:object size:0x14 scope:local align:4 data:string +@2189 = .data:0x802CA93C; // type:object size:0x24 scope:local align:4 +__vt__19TaiIwagonParameters = .data:0x802CA960; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CA990; // type:label scope:local +@1669 = .data:0x802CA990; // type:object size:0x18 scope:local align:4 data:string +@1679 = .data:0x802CA9A8; // type:object size:0x14 scope:local align:4 data:string +@1896 = .data:0x802CA9BC; // type:object size:0x1B scope:local align:4 data:string +@1898 = .data:0x802CA9D8; // type:object size:0xA scope:local align:4 data:string +@1897 = .data:0x802CA9E4; // type:object size:0xC scope:local align:4 +__vt__26TaiHasStickersOnBodyAction = .data:0x802CA9F0; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CAA0C; // type:object size:0x1C scope:local align:4 data:string +@1907 = .data:0x802CAA28; // type:object size:0xC scope:local align:4 +__vt__27TaiHasStickersInMouthAction = .data:0x802CAA34; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CAA50; // type:object size:0x11 scope:local align:4 data:string +@1910 = .data:0x802CAA64; // type:object size:0xA scope:local align:4 data:string +@1911 = .data:0x802CAA70; // type:object size:0xE scope:local align:4 data:string +@1912 = .data:0x802CAA80; // type:object size:0xC scope:local align:4 +@1909 = .data:0x802CAA8C; // type:object size:0x14 scope:local align:4 +@1916 = .data:0x802CAAAC; // type:object size:0x1B scope:local align:4 data:string +@1917 = .data:0x802CAAC8; // type:object size:0xC scope:local align:4 +__vt__26TaiTargetVisibleNaviAction = .data:0x802CAAD4; // type:object size:0x1C scope:global align:4 +@1919 = .data:0x802CAB08; // type:object size:0x1F scope:local align:4 data:string +@1920 = .data:0x802CAB28; // type:object size:0xC scope:local align:4 +__vt__30TaiTargetVisibleNaviPikiAction = .data:0x802CAB34; // type:object size:0x1C scope:global align:4 +@1921 = .data:0x802CAB50; // type:object size:0x19 scope:local align:4 data:string +@1922 = .data:0x802CAB6C; // type:object size:0xC scope:local align:4 +__vt__24TaiInsideTerritoryAction = .data:0x802CAB78; // type:object size:0x1C scope:global align:4 +@1923 = .data:0x802CAB94; // type:object size:0x1A scope:local align:4 data:string +@1924 = .data:0x802CABB0; // type:object size:0xC scope:local align:4 +__vt__25TaiOutsideTerritoryAction = .data:0x802CABBC; // type:object size:0x1C scope:global align:4 +@1925 = .data:0x802CABD8; // type:object size:0x14 scope:local align:4 data:string +@1926 = .data:0x802CABEC; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetLostAction = .data:0x802CABF8; // type:object size:0x1C scope:global align:4 +@1927 = .data:0x802CAC14; // type:object size:0x18 scope:local align:4 data:string +@1928 = .data:0x802CAC2C; // type:object size:0xC scope:local align:4 +__vt__23TaiSeparateTargetAction = .data:0x802CAC38; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802CAC54; // type:object size:0x17 scope:local align:4 data:string +@1930 = .data:0x802CAC6C; // type:object size:0xC scope:local align:4 +__vt__22TaiContactTargetAction = .data:0x802CAC78; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802CAC94; // type:object size:0x17 scope:local align:4 data:string +@1932 = .data:0x802CACAC; // type:object size:0xC scope:local align:4 +__vt__22TaiVisibleTargetAction = .data:0x802CACB8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CACD8; // type:label scope:local +@1793 = .data:0x802CACD8; // type:object size:0xE scope:local align:4 data:string +@1803 = .data:0x802CACE8; // type:object size:0xA scope:local align:4 data:string +@2012 = .data:0x802CACF4; // type:object size:0x19 scope:local align:4 data:string +@2013 = .data:0x802CAD10; // type:object size:0x11 scope:local align:4 data:string +@2014 = .data:0x802CAD24; // type:object size:0x14 scope:local align:4 data:string +@2017 = .data:0x802CAD38; // type:object size:0x14 scope:local align:4 data:string +@2018 = .data:0x802CAD4C; // type:object size:0xD scope:local align:4 data:string +@2019 = .data:0x802CAD5C; // type:object size:0x13 scope:local align:4 data:string +@2020 = .data:0x802CAD70; // type:object size:0x15 scope:local align:4 data:string +@2022 = .data:0x802CAD88; // type:object size:0x11 scope:local align:4 data:string +@2024 = .data:0x802CAD9C; // type:object size:0x10 scope:local align:4 data:string +@2025 = .data:0x802CADAC; // type:object size:0xF scope:local align:4 data:string +@2026 = .data:0x802CADBC; // type:object size:0x13 scope:local align:4 data:string +@2027 = .data:0x802CADD0; // type:object size:0x1B scope:local align:4 data:string +@2916 = .data:0x802CADEC; // type:object size:0x19 scope:local align:4 data:string +@2918 = .data:0x802CAE08; // type:object size:0xA scope:local align:4 data:string +@2919 = .data:0x802CAE14; // type:object size:0x13 scope:local align:4 data:string +@2920 = .data:0x802CAE28; // type:object size:0xC scope:local align:4 +@2921 = .data:0x802CAE34; // type:object size:0x15 scope:local align:4 data:string +@2922 = .data:0x802CAE4C; // type:object size:0x14 scope:local align:4 +@2917 = .data:0x802CAE60; // type:object size:0x1C scope:local align:4 +__vt__24TaiKinokoLegEffectAction = .data:0x802CAE7C; // type:object size:0x20 scope:global align:4 +@2929 = .data:0x802CAE9C; // type:object size:0x24 scope:local align:4 data:string +@2930 = .data:0x802CAEC0; // type:object size:0xC scope:local align:4 +__vt__35TaiKinokoTerritoryRunningAwayAction = .data:0x802CAECC; // type:object size:0x1C scope:global align:4 +@2932 = .data:0x802CAEE8; // type:object size:0x11 scope:local align:4 data:string +@2934 = .data:0x802CAEFC; // type:object size:0xA scope:local align:4 data:string +@2935 = .data:0x802CAF08; // type:object size:0xE scope:local align:4 data:string +@2936 = .data:0x802CAF18; // type:object size:0xC scope:local align:4 +@2933 = .data:0x802CAF24; // type:object size:0x14 scope:local align:4 +@2942 = .data:0x802CAF5C; // type:object size:0xC scope:local align:4 data:string +@2952 = .data:0x802CAF94; // type:object size:0x21 scope:local align:4 data:string +@2953 = .data:0x802CAFB8; // type:object size:0xC scope:local align:4 +__vt__32TaiKinokoDischargingSporesAction = .data:0x802CAFC4; // type:object size:0x1C scope:global align:4 +@2954 = .data:0x802CAFE0; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802CB000; // type:object size:0xC scope:local align:4 +__vt__29TaiKinokoChargingSporesAction = .data:0x802CB00C; // type:object size:0x1C scope:global align:4 +@2956 = .data:0x802CB028; // type:object size:0x1B scope:local align:4 data:string +@2957 = .data:0x802CB044; // type:object size:0xC scope:local align:4 +__vt__26TaiKinokoTurningOverAction = .data:0x802CB050; // type:object size:0x1C scope:global align:4 +@2959 = .data:0x802CB06C; // type:object size:0x12 scope:local align:4 data:string +@2961 = .data:0x802CB080; // type:object size:0xD scope:local align:4 data:string +@2962 = .data:0x802CB090; // type:object size:0xC scope:local align:4 data:string +@2963 = .data:0x802CB09C; // type:object size:0xC scope:local align:4 +@2960 = .data:0x802CB0A8; // type:object size:0x14 scope:local align:4 +__vt__17TaiKinokoStrategy = .data:0x802CB0BC; // type:object size:0x28 scope:global align:4 +@2964 = .data:0x802CB0E4; // type:object size:0xD scope:local align:4 data:string +@2965 = .data:0x802CB0F4; // type:object size:0xC scope:local align:4 +__vt__12TaiNotAction = .data:0x802CB100; // type:object size:0x1C scope:weak align:4 +@2969 = .data:0x802CB11C; // type:object size:0xD scope:local align:4 data:string +@2970 = .data:0x802CB12C; // type:object size:0xC scope:local align:4 +@2976 = .data:0x802CB170; // type:object size:0x14 scope:local align:4 data:string +@2979 = .data:0x802CB184; // type:object size:0x9 scope:local align:4 data:string +@2980 = .data:0x802CB190; // type:object size:0xC scope:local align:4 +@2982 = .data:0x802CB19C; // type:object size:0x14 scope:local align:4 +@2983 = .data:0x802CB1B0; // type:object size:0xF scope:local align:4 data:string +@2984 = .data:0x802CB1C0; // type:object size:0x1C scope:local align:4 +@2977 = .data:0x802CB1DC; // type:object size:0x24 scope:local align:4 +__vt__19TaiKinokoParameters = .data:0x802CB200; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB230; // type:label scope:local +@1211 = .data:0x802CB230; // type:object size:0x16 scope:local align:4 data:string +@1221 = .data:0x802CB248; // type:object size:0x12 scope:local align:4 data:string +@1229 = .data:0x802CB25C; // type:object size:0x18 scope:local align:4 data:string +@1231 = .data:0x802CB274; // type:object size:0xA scope:local align:4 data:string +@1230 = .data:0x802CB280; // type:object size:0xC scope:local align:4 +__vt__23TaiKeySendMessageAction = .data:0x802CB28C; // type:object size:0x1C scope:global align:4 +@1239 = .data:0x802CB2A8; // type:object size:0x15 scope:local align:4 data:string +@1240 = .data:0x802CB2C0; // type:object size:0xC scope:local align:4 +__vt__20TaiSendMessageAction = .data:0x802CB2CC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CB2E8; // type:label scope:local +@1796 = .data:0x802CB2E8; // type:object size:0xF scope:local align:4 data:string +@1806 = .data:0x802CB2F8; // type:object size:0xB scope:local align:4 data:string +@2099 = .data:0x802CB304; // type:object size:0xE scope:local align:4 data:string +@2100 = .data:0x802CB314; // type:object size:0xE scope:local align:4 data:string +@2102 = .data:0x802CB324; // type:object size:0x15 scope:local align:4 data:string +@2104 = .data:0x802CB33C; // type:object size:0x19 scope:local align:4 data:string +@2105 = .data:0x802CB358; // type:object size:0xC scope:local align:4 data:string +@2107 = .data:0x802CB364; // type:object size:0xE scope:local align:4 data:string +@2109 = .data:0x802CB374; // type:object size:0x1A scope:local align:4 data:string +@2110 = .data:0x802CB390; // type:object size:0x1A scope:local align:4 data:string +@2111 = .data:0x802CB3AC; // type:object size:0x11 scope:local align:4 data:string +@2112 = .data:0x802CB3C0; // type:object size:0x1D scope:local align:4 data:string +@2113 = .data:0x802CB3E0; // type:object size:0x11 scope:local align:4 data:string +@2114 = .data:0x802CB3F4; // type:object size:0x1D scope:local align:4 data:string +@2115 = .data:0x802CB414; // type:object size:0xB scope:local align:4 data:string +@2116 = .data:0x802CB420; // type:object size:0x17 scope:local align:4 data:string +@2968 = .data:0x802CB438; // type:object size:0x1B scope:local align:4 data:string +@2970 = .data:0x802CB454; // type:object size:0xA scope:local align:4 data:string +@2969 = .data:0x802CB460; // type:object size:0xC scope:local align:4 +__vt__26TaiMizinkoFlyingAwayAction = .data:0x802CB46C; // type:object size:0x1C scope:global align:4 +@2978 = .data:0x802CB488; // type:object size:0x18 scope:local align:4 data:string +@2979 = .data:0x802CB4A0; // type:object size:0xC scope:local align:4 +__vt__23TaiMizinkoWaitingAction = .data:0x802CB4AC; // type:object size:0x1C scope:global align:4 +@2980 = .data:0x802CB4C8; // type:object size:0x1A scope:local align:4 data:string +@2981 = .data:0x802CB4E4; // type:object size:0xC scope:local align:4 +__vt__25TaiMizinkoDropWaterAction = .data:0x802CB4F0; // type:object size:0x1C scope:global align:4 +@2983 = .data:0x802CB50C; // type:object size:0x17 scope:local align:4 data:string +@2984 = .data:0x802CB524; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoComingAction = .data:0x802CB530; // type:object size:0x1C scope:global align:4 +@2985 = .data:0x802CB54C; // type:object size:0x16 scope:local align:4 data:string +@2986 = .data:0x802CB564; // type:object size:0xC scope:local align:4 +__vt__21TaiMizinkoGoingAction = .data:0x802CB570; // type:object size:0x1C scope:global align:4 +@2987 = .data:0x802CB58C; // type:object size:0x17 scope:local align:4 data:string +@2988 = .data:0x802CB5A4; // type:object size:0xC scope:local align:4 +__vt__22TaiMizinkoFadingAction = .data:0x802CB5B0; // type:object size:0x1C scope:global align:4 +@2989 = .data:0x802CB5CC; // type:object size:0x1C scope:local align:4 data:string +@2991 = .data:0x802CB5E8; // type:object size:0xF scope:local align:4 data:string +@2992 = .data:0x802CB5F8; // type:object size:0xC scope:local align:4 +@2990 = .data:0x802CB604; // type:object size:0x14 scope:local align:4 +__vt__27TaiMizinkoMovingTimerAction = .data:0x802CB618; // type:object size:0x1C scope:global align:4 +@2993 = .data:0x802CB634; // type:object size:0x19 scope:local align:4 data:string +@2994 = .data:0x802CB650; // type:object size:0x14 scope:local align:4 +__vt__24TaiMizinkoCryTimerAction = .data:0x802CB664; // type:object size:0x1C scope:global align:4 +@2995 = .data:0x802CB680; // type:object size:0x13 scope:local align:4 data:string +@2997 = .data:0x802CB694; // type:object size:0xD scope:local align:4 data:string +@2998 = .data:0x802CB6A4; // type:object size:0xC scope:local align:4 data:string +@2999 = .data:0x802CB6B0; // type:object size:0xC scope:local align:4 +@2996 = .data:0x802CB6BC; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizinkoStrategy = .data:0x802CB6D0; // type:object size:0x28 scope:global align:4 +@3000 = .data:0x802CB6F8; // type:object size:0x15 scope:local align:4 data:string +@3003 = .data:0x802CB710; // type:object size:0x9 scope:local align:4 data:string +@3004 = .data:0x802CB71C; // type:object size:0xC scope:local align:4 +@3006 = .data:0x802CB728; // type:object size:0x14 scope:local align:4 +@3007 = .data:0x802CB73C; // type:object size:0xF scope:local align:4 data:string +@3008 = .data:0x802CB74C; // type:object size:0x1C scope:local align:4 +@3001 = .data:0x802CB768; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizinkoParameters = .data:0x802CB78C; // type:object size:0x30 scope:weak align:4 +@3015 = .data:0x802CB7BC; // type:object size:0x1D scope:local align:4 data:string +@3016 = .data:0x802CB7DC; // type:object size:0xC scope:local align:4 +__vt__28TaiMizigenNaviApprouchAction = .data:0x802CB7E8; // type:object size:0x1C scope:global align:4 +@3017 = .data:0x802CB804; // type:object size:0x1B scope:local align:4 data:string +@3018 = .data:0x802CB820; // type:object size:0xC scope:local align:4 +__vt__26TaiMizigenGeneratingAction = .data:0x802CB82C; // type:object size:0x1C scope:global align:4 +@3019 = .data:0x802CB848; // type:object size:0x13 scope:local align:4 data:string +@3020 = .data:0x802CB85C; // type:object size:0x14 scope:local align:4 +__vt__18TaiMizigenStrategy = .data:0x802CB870; // type:object size:0x28 scope:global align:4 +@3021 = .data:0x802CB8B4; // type:object size:0x15 scope:local align:4 data:string +@3022 = .data:0x802CB8CC; // type:object size:0x24 scope:local align:4 +__vt__20TaiMizigenParameters = .data:0x802CB8F0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CB920; // type:label scope:local +@1111 = .data:0x802CB920; // type:object size:0x15 scope:local align:4 data:string +@1121 = .data:0x802CB938; // type:object size:0x11 scope:local align:4 data:string +@1256 = .data:0x802CB94C; // type:object size:0x23 scope:local align:4 data:string +@1258 = .data:0x802CB970; // type:object size:0xA scope:local align:4 data:string +@1257 = .data:0x802CB97C; // type:object size:0xC scope:local align:4 +__vt__34TaiRandomSetAnimationCounterAction = .data:0x802CB988; // type:object size:0x1C scope:global align:4 +@1266 = .data:0x802CB9A4; // type:object size:0x18 scope:local align:4 data:string +@1267 = .data:0x802CB9BC; // type:object size:0xC scope:local align:4 +__vt__23TaiSetFrameMotionAction = .data:0x802CB9C8; // type:object size:0x1C scope:global align:4 +@1268 = .data:0x802CB9E4; // type:object size:0x1C scope:local align:4 data:string +@1269 = .data:0x802CBA00; // type:object size:0xC scope:local align:4 +__vt__27TaiFinishStoppingMoveAction = .data:0x802CBA0C; // type:object size:0x1C scope:global align:4 +@1270 = .data:0x802CBA28; // type:object size:0x16 scope:local align:4 data:string +@1271 = .data:0x802CBA40; // type:object size:0xC scope:local align:4 +__vt__21TaiStoppingMoveAction = .data:0x802CBA4C; // type:object size:0x1C scope:global align:4 +@1272 = .data:0x802CBA68; // type:object size:0x1C scope:local align:4 data:string +@1273 = .data:0x802CBA84; // type:object size:0xC scope:local align:4 +__vt__27TaiOutsideKeyStopMoveAction = .data:0x802CBA90; // type:object size:0x1C scope:global align:4 +@1275 = .data:0x802CBAAC; // type:object size:0x16 scope:local align:4 data:string +@1277 = .data:0x802CBAC4; // type:object size:0x10 scope:local align:4 data:string +@1278 = .data:0x802CBAD4; // type:object size:0xC scope:local align:4 +@1276 = .data:0x802CBAE0; // type:object size:0x14 scope:local align:4 +__vt__21TaiSwitchMotionAction = .data:0x802CBAF4; // type:object size:0x1C scope:global align:4 +@1279 = .data:0x802CBB10; // type:object size:0x13 scope:local align:4 data:string +@1280 = .data:0x802CBB24; // type:object size:0xC scope:local align:4 +__vt__18TaiCountLoopAction = .data:0x802CBB30; // type:object size:0x1C scope:global align:4 +@1281 = .data:0x802CBB4C; // type:object size:0x16 scope:local align:4 data:string +@1282 = .data:0x802CBB64; // type:object size:0xC scope:local align:4 +__vt__21TaiAnimationKeyAction = .data:0x802CBB70; // type:object size:0x1C scope:global align:4 +@1283 = .data:0x802CBB8C; // type:object size:0x16 scope:local align:4 data:string +@1284 = .data:0x802CBBA4; // type:object size:0x14 scope:local align:4 +__vt__21TaiFinishMotionAction = .data:0x802CBBB8; // type:object size:0x1C scope:global align:4 +@1285 = .data:0x802CBBD4; // type:object size:0x1A scope:local align:4 data:string +@1286 = .data:0x802CBBF0; // type:object size:0x14 scope:local align:4 +__vt__25TaiContinuousMotionAction = .data:0x802CBC04; // type:object size:0x20 scope:global align:4 +__vt__15TaiMotionAction = .data:0x802CBC24; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CBC40; // type:label scope:local +@1669 = .data:0x802CBC40; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CBC54; // type:object size:0xF scope:local align:4 data:string +@2234 = .data:0x802CBC64; // type:object size:0x22 scope:local align:4 data:string +@2236 = .data:0x802CBC88; // type:object size:0xA scope:local align:4 data:string +@2235 = .data:0x802CBC94; // type:object size:0xC scope:local align:4 +__vt__33TaiHeadOnCollisionAvoidanceAction = .data:0x802CBCA0; // type:object size:0x1C scope:global align:4 +@2244 = .data:0x802CBCBC; // type:object size:0x14 scope:local align:4 data:string +@2245 = .data:0x802CBCD0; // type:object size:0xC scope:local align:4 +__vt__19TaiTargetNestAction = .data:0x802CBCDC; // type:object size:0x1C scope:global align:4 +@2247 = .data:0x802CBCF8; // type:object size:0x21 scope:local align:4 data:string +@2248 = .data:0x802CBD1C; // type:object size:0xC scope:local align:4 +__vt__32TaiWatchOffTerritoryCenterAction = .data:0x802CBD28; // type:object size:0x1C scope:global align:4 +@2249 = .data:0x802CBD44; // type:object size:0x15 scope:local align:4 data:string +@2251 = .data:0x802CBD5C; // type:object size:0x10 scope:local align:4 data:string +@2252 = .data:0x802CBD6C; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802CBD78; // type:object size:0x1A scope:local align:4 data:string +@2254 = .data:0x802CBD94; // type:object size:0x14 scope:local align:4 +@2250 = .data:0x802CBDA8; // type:object size:0x1C scope:local align:4 +__vt__20TaiRunningAwayAction = .data:0x802CBDC4; // type:object size:0x20 scope:global align:4 +@2255 = .data:0x802CBDE4; // type:object size:0x26 scope:local align:4 data:string +@2256 = .data:0x802CBE0C; // type:object size:0x1C scope:local align:4 +__vt__37TaiRunningAwayToTargetDirectionAction = .data:0x802CBE28; // type:object size:0x20 scope:global align:4 +@2257 = .data:0x802CBE48; // type:object size:0x12 scope:local align:4 data:string +@2258 = .data:0x802CBE5C; // type:object size:0xC scope:local align:4 +__vt__17TaiRotatingAction = .data:0x802CBE68; // type:object size:0x1C scope:global align:4 +@2259 = .data:0x802CBE84; // type:object size:0x21 scope:local align:4 data:string +@2260 = .data:0x802CBEA8; // type:object size:0x1C scope:local align:4 +__vt__32TaiTurningToTargetPositionAction = .data:0x802CBEC4; // type:object size:0x20 scope:global align:4 +@2261 = .data:0x802CBEE4; // type:object size:0x19 scope:local align:4 data:string +@2262 = .data:0x802CBF00; // type:object size:0xC scope:local align:4 +__vt__24TaiOutOfTraceAngleAction = .data:0x802CBF0C; // type:object size:0x1C scope:global align:4 +@2263 = .data:0x802CBF28; // type:object size:0x16 scope:local align:4 data:string +@2264 = .data:0x802CBF40; // type:object size:0x1C scope:local align:4 +__vt__21TaiTraceTurningAction = .data:0x802CBF5C; // type:object size:0x20 scope:global align:4 +@2265 = .data:0x802CBF7C; // type:object size:0x15 scope:local align:4 data:string +@2266 = .data:0x802CBF94; // type:object size:0x1C scope:local align:4 +__vt__20TaiTurningAwayAction = .data:0x802CBFB0; // type:object size:0x20 scope:global align:4 +@2267 = .data:0x802CBFD0; // type:object size:0xE scope:local align:4 data:string +@2269 = .data:0x802CBFE0; // type:object size:0xA scope:local align:4 data:string +@2268 = .data:0x802CBFEC; // type:object size:0xC scope:local align:4 +@2271 = .data:0x802CC010; // type:object size:0x11 scope:local align:4 data:string +@2272 = .data:0x802CC024; // type:object size:0x1C scope:local align:4 +__vt__16TaiTurningAction = .data:0x802CC040; // type:object size:0x20 scope:global align:4 +@2273 = .data:0x802CC060; // type:object size:0x14 scope:local align:4 data:string +@2274 = .data:0x802CC074; // type:object size:0xC scope:local align:4 +__vt__19TaiDirectTurnAction = .data:0x802CC080; // type:object size:0x1C scope:global align:4 +@2275 = .data:0x802CC09C; // type:object size:0x13 scope:local align:4 data:string +@2276 = .data:0x802CC0B0; // type:object size:0x1C scope:local align:4 +__vt__18TaiGoingHomeAction = .data:0x802CC0CC; // type:object size:0x20 scope:global align:4 +@2277 = .data:0x802CC0EC; // type:object size:0x11 scope:local align:4 data:string +@2278 = .data:0x802CC100; // type:object size:0x1C scope:local align:4 +__vt__16TaiTracingAction = .data:0x802CC11C; // type:object size:0x20 scope:global align:4 +@2279 = .data:0x802CC13C; // type:object size:0x1E scope:local align:4 data:string +@2280 = .data:0x802CC15C; // type:object size:0x1C scope:local align:4 +__vt__29TaiRandomWanderingRouteAction = .data:0x802CC178; // type:object size:0x20 scope:global align:4 +@2281 = .data:0x802CC198; // type:object size:0x14 scope:local align:4 data:string +@2282 = .data:0x802CC1AC; // type:object size:0xC scope:local align:4 +__vt__19TaiImpassableAction = .data:0x802CC1B8; // type:object size:0x1C scope:global align:4 +@2283 = .data:0x802CC1D4; // type:object size:0x1B scope:local align:4 data:string +@2284 = .data:0x802CC1F0; // type:object size:0xC scope:local align:4 +__vt__26TaiClampMinVelocityYAction = .data:0x802CC1FC; // type:object size:0x1C scope:global align:4 +@2285 = .data:0x802CC218; // type:object size:0x18 scope:local align:4 data:string +@2286 = .data:0x802CC230; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMinHeightAction = .data:0x802CC23C; // type:object size:0x1C scope:global align:4 +@2287 = .data:0x802CC258; // type:object size:0x18 scope:local align:4 data:string +@2288 = .data:0x802CC270; // type:object size:0xC scope:local align:4 +__vt__23TaiClampMaxHeightAction = .data:0x802CC27C; // type:object size:0x1C scope:global align:4 +@2289 = .data:0x802CC298; // type:object size:0x1B scope:local align:4 data:string +@2290 = .data:0x802CC2B4; // type:object size:0xC scope:local align:4 +__vt__26TaiHorizontalSinWaveAction = .data:0x802CC2C0; // type:object size:0x1C scope:global align:4 +@2291 = .data:0x802CC2DC; // type:object size:0x14 scope:local align:4 data:string +@2292 = .data:0x802CC2F0; // type:object size:0xC scope:local align:4 +__vt__19TaiCircleMoveAction = .data:0x802CC2FC; // type:object size:0x1C scope:global align:4 +@2293 = .data:0x802CC318; // type:object size:0x12 scope:local align:4 data:string +@2294 = .data:0x802CC32C; // type:object size:0xC scope:local align:4 +__vt__17TaiParabolaAction = .data:0x802CC338; // type:object size:0x1C scope:global align:4 +@2295 = .data:0x802CC354; // type:object size:0x16 scope:local align:4 data:string +@2296 = .data:0x802CC36C; // type:object size:0xC scope:local align:4 +__vt__21TaiAccelerationAction = .data:0x802CC378; // type:object size:0x1C scope:global align:4 +@2297 = .data:0x802CC394; // type:object size:0x19 scope:local align:4 data:string +@2298 = .data:0x802CC3B0; // type:object size:0xC scope:local align:4 +__vt__24TaiMakingNextDriveAction = .data:0x802CC3BC; // type:object size:0x1C scope:global align:4 +@2299 = .data:0x802CC3D8; // type:object size:0x1C scope:local align:4 data:string +@2300 = .data:0x802CC3F4; // type:object size:0xC scope:local align:4 +__vt__27TaiMakingNextVelocityAction = .data:0x802CC400; // type:object size:0x1C scope:global align:4 +@2301 = .data:0x802CC41C; // type:object size:0x23 scope:local align:4 data:string +@2302 = .data:0x802CC440; // type:object size:0xC scope:local align:4 +__vt__34TaiMakeAccelerationDirectionAction = .data:0x802CC44C; // type:object size:0x1C scope:global align:4 +@2303 = .data:0x802CC468; // type:object size:0x1F scope:local align:4 data:string +@2304 = .data:0x802CC488; // type:object size:0xC scope:local align:4 +__vt__30TaiMakeVelocityDirectionAction = .data:0x802CC494; // type:object size:0x1C scope:global align:4 +@2305 = .data:0x802CC4B0; // type:object size:0x16 scope:local align:4 data:string +@2306 = .data:0x802CC4C8; // type:object size:0xC scope:local align:4 +__vt__21TaiFinishFlyingAction = .data:0x802CC4D4; // type:object size:0x1C scope:global align:4 +@2307 = .data:0x802CC4F0; // type:object size:0x15 scope:local align:4 data:string +@2308 = .data:0x802CC508; // type:object size:0xC scope:local align:4 +__vt__20TaiStartFlyingAction = .data:0x802CC514; // type:object size:0x1C scope:global align:4 +@2309 = .data:0x802CC530; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802CC544; // type:object size:0xC scope:local align:4 +__vt__17TaiStopMoveAction = .data:0x802CC550; // type:object size:0x1C scope:global align:4 +@2311 = .data:0x802CC56C; // type:object size:0x1A scope:local align:4 data:string +@2312 = .data:0x802CC588; // type:object size:0xC scope:local align:4 +__vt__25TaiMoveNestPositionAction = .data:0x802CC594; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CC5B0; // type:label scope:local +@1736 = .data:0x802CC5B0; // type:object size:0xE scope:local align:4 data:string +@1746 = .data:0x802CC5C0; // type:object size:0xA scope:local align:4 data:string +@1965 = .data:0x802CC5CC; // type:object size:0x14 scope:local align:4 data:string +@1966 = .data:0x802CC5E0; // type:object size:0x12 scope:local align:4 data:string +@1969 = .data:0x802CC5F4; // type:object size:0x17 scope:local align:4 data:string +@1970 = .data:0x802CC60C; // type:object size:0x19 scope:local align:4 data:string +@1971 = .data:0x802CC628; // type:object size:0x17 scope:local align:4 data:string +@1973 = .data:0x802CC640; // type:object size:0x1C scope:local align:4 data:string +@1975 = .data:0x802CC65C; // type:object size:0x17 scope:local align:4 data:string +@1976 = .data:0x802CC674; // type:object size:0x1C scope:local align:4 data:string +@1977 = .data:0x802CC690; // type:object size:0x15 scope:local align:4 data:string +@1978 = .data:0x802CC6A8; // type:object size:0x1A scope:local align:4 data:string +@1979 = .data:0x802CC6C4; // type:object size:0x16 scope:local align:4 data:string +@1980 = .data:0x802CC6DC; // type:object size:0x1B scope:local align:4 data:string +@1981 = .data:0x802CC6F8; // type:object size:0xD scope:local align:4 data:string +@1983 = .data:0x802CC708; // type:object size:0xF scope:local align:4 data:string +@3910 = .data:0x802CC718; // type:object size:0x22 scope:local align:4 data:string +@3912 = .data:0x802CC73C; // type:object size:0xA scope:local align:4 data:string +@3911 = .data:0x802CC748; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidStartDroppingWaterAction = .data:0x802CC754; // type:object size:0x1C scope:global align:4 +@3920 = .data:0x802CC770; // type:object size:0x22 scope:local align:4 data:string +@3921 = .data:0x802CC794; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidFallingWaterEffectAction = .data:0x802CC7A0; // type:object size:0x1C scope:global align:4 +@3922 = .data:0x802CC7BC; // type:object size:0x1C scope:local align:4 data:string +@3923 = .data:0x802CC7D8; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidShockFallingAction = .data:0x802CC7E4; // type:object size:0x1C scope:global align:4 +@3924 = .data:0x802CC800; // type:object size:0x17 scope:local align:4 data:string +@3925 = .data:0x802CC818; // type:object size:0xC scope:local align:4 +__vt__22TaiNapkidFallingAction = .data:0x802CC824; // type:object size:0x1C scope:global align:4 +@3926 = .data:0x802CC840; // type:object size:0x15 scope:local align:4 data:string +@3927 = .data:0x802CC858; // type:object size:0xC scope:local align:4 +__vt__20TaiNapkidFlickAction = .data:0x802CC864; // type:object size:0x1C scope:global align:4 +@3929 = .data:0x802CC880; // type:object size:0x1C scope:local align:4 data:string +@3930 = .data:0x802CC89C; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidThrowingPikiAction = .data:0x802CC8A8; // type:object size:0x1C scope:global align:4 +@3931 = .data:0x802CC8C4; // type:object size:0x1F scope:local align:4 data:string +@3932 = .data:0x802CC8E4; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidRisingAscendingAction = .data:0x802CC8F0; // type:object size:0x1C scope:global align:4 +@3933 = .data:0x802CC90C; // type:object size:0x22 scope:local align:4 data:string +@3934 = .data:0x802CC930; // type:object size:0xC scope:local align:4 +__vt__33TaiNapkidTakingOffAscendingAction = .data:0x802CC93C; // type:object size:0x1C scope:global align:4 +@3935 = .data:0x802CC958; // type:object size:0x1E scope:local align:4 data:string +@3936 = .data:0x802CC978; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidCatchAscendingAction = .data:0x802CC984; // type:object size:0x1C scope:global align:4 +@3937 = .data:0x802CC9A0; // type:object size:0x1B scope:local align:4 data:string +@3938 = .data:0x802CC9BC; // type:object size:0xC scope:local align:4 +__vt__26TaiNapkidCatchFlyingAction = .data:0x802CC9C8; // type:object size:0x1C scope:global align:4 +@3939 = .data:0x802CC9E4; // type:object size:0x1C scope:local align:4 data:string +@3940 = .data:0x802CCA00; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidCatchTracingAction = .data:0x802CCA0C; // type:object size:0x1C scope:global align:4 +@3941 = .data:0x802CCA28; // type:object size:0x1F scope:local align:4 data:string +@3942 = .data:0x802CCA48; // type:object size:0xC scope:local align:4 +__vt__30TaiNapkidCatchDescendingAction = .data:0x802CCA54; // type:object size:0x1C scope:global align:4 +@3943 = .data:0x802CCA70; // type:object size:0xC scope:local align:4 data:string +@3953 = .data:0x802CCAA8; // type:object size:0x11 scope:local align:4 data:string +@3955 = .data:0x802CCABC; // type:object size:0xA scope:local align:4 data:string +@3956 = .data:0x802CCAC8; // type:object size:0xE scope:local align:4 data:string +@3957 = .data:0x802CCAD8; // type:object size:0xC scope:local align:4 +@3954 = .data:0x802CCAE4; // type:object size:0x14 scope:local align:4 +@3961 = .data:0x802CCB04; // type:object size:0x11 scope:local align:4 data:string +@3962 = .data:0x802CCB18; // type:object size:0x14 scope:local align:4 +@3964 = .data:0x802CCB38; // type:object size:0x18 scope:local align:4 data:string +@3965 = .data:0x802CCB50; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCatchingAction = .data:0x802CCB5C; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802CCB78; // type:object size:0x1C scope:local align:4 data:string +@3967 = .data:0x802CCB94; // type:object size:0xC scope:local align:4 +__vt__27TaiNapkidApproachPikiAction = .data:0x802CCBA0; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802CCBBC; // type:object size:0x19 scope:local align:4 data:string +@3969 = .data:0x802CCBD8; // type:object size:0xC scope:local align:4 +__vt__24TaiNapkidAscendingAction = .data:0x802CCBE4; // type:object size:0x1C scope:global align:4 +@3970 = .data:0x802CCC00; // type:object size:0x16 scope:local align:4 data:string +@3971 = .data:0x802CCC18; // type:object size:0xC scope:local align:4 +__vt__21TaiNapkidFlyingAction = .data:0x802CCC24; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802CCC40; // type:object size:0x18 scope:local align:4 data:string +@3973 = .data:0x802CCC58; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidCirclingAction = .data:0x802CCC64; // type:object size:0x1C scope:global align:4 +@3974 = .data:0x802CCC80; // type:object size:0x1E scope:local align:4 data:string +@3975 = .data:0x802CCCA0; // type:object size:0xC scope:local align:4 +__vt__29TaiNapkidStraightFlyingAction = .data:0x802CCCAC; // type:object size:0x1C scope:global align:4 +@3976 = .data:0x802CCCC8; // type:object size:0x1A scope:local align:4 data:string +@3977 = .data:0x802CCCE4; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidShortRangeAction = .data:0x802CCCF0; // type:object size:0x1C scope:global align:4 +@3978 = .data:0x802CCD0C; // type:object size:0x18 scope:local align:4 data:string +@3979 = .data:0x802CCD24; // type:object size:0xC scope:local align:4 +__vt__23TaiNapkidPikiLostAction = .data:0x802CCD30; // type:object size:0x1C scope:global align:4 +@3980 = .data:0x802CCD4C; // type:object size:0x1A scope:local align:4 data:string +@3981 = .data:0x802CCD68; // type:object size:0xC scope:local align:4 +__vt__25TaiNapkidTargetPikiAction = .data:0x802CCD74; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802CCD90; // type:object size:0x1E scope:local align:4 data:string +@3984 = .data:0x802CCDB0; // type:object size:0x10 scope:local align:4 data:string +@3985 = .data:0x802CCDC0; // type:object size:0xC scope:local align:4 +@3986 = .data:0x802CCDCC; // type:object size:0x1A scope:local align:4 data:string +@3987 = .data:0x802CCDE8; // type:object size:0x14 scope:local align:4 +@3983 = .data:0x802CCDFC; // type:object size:0x1C scope:local align:4 +__vt__29TaiNapkidWanderingRouteAction = .data:0x802CCE18; // type:object size:0x20 scope:global align:4 +@3988 = .data:0x802CCE38; // type:object size:0x1E scope:local align:4 data:string +@3989 = .data:0x802CCE58; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidShortRangeCondition = .data:0x802CCE6C; // type:object size:0xC scope:global align:4 +@3990 = .data:0x802CCE90; // type:object size:0x1E scope:local align:4 data:string +@3991 = .data:0x802CCEB0; // type:object size:0x14 scope:local align:4 +__vt__29TekiNapkidTargetPikiCondition = .data:0x802CCEC4; // type:object size:0xC scope:global align:4 +@3992 = .data:0x802CCED0; // type:object size:0x12 scope:local align:4 data:string +@3994 = .data:0x802CCEE4; // type:object size:0xD scope:local align:4 data:string +@3995 = .data:0x802CCEF4; // type:object size:0xC scope:local align:4 data:string +@3996 = .data:0x802CCF00; // type:object size:0xC scope:local align:4 +@3993 = .data:0x802CCF0C; // type:object size:0x14 scope:local align:4 +__vt__17TaiNapkidStrategy = .data:0x802CCF20; // type:object size:0x28 scope:global align:4 +@3997 = .data:0x802CCF48; // type:object size:0xD scope:local align:4 data:string +@3998 = .data:0x802CCF58; // type:object size:0xC scope:local align:4 +@4002 = .data:0x802CCF80; // type:object size:0xE scope:local align:4 data:string +@4003 = .data:0x802CCF90; // type:object size:0xC scope:local align:4 +@4005 = .data:0x802CCFD4; // type:object size:0x14 scope:local align:4 data:string +@4008 = .data:0x802CCFE8; // type:object size:0x9 scope:local align:4 data:string +@4009 = .data:0x802CCFF4; // type:object size:0xC scope:local align:4 +@4011 = .data:0x802CD000; // type:object size:0x14 scope:local align:4 +@4012 = .data:0x802CD014; // type:object size:0xF scope:local align:4 data:string +@4013 = .data:0x802CD024; // type:object size:0x1C scope:local align:4 +@4006 = .data:0x802CD040; // type:object size:0x24 scope:local align:4 +__vt__19TaiNapkidParameters = .data:0x802CD064; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CD098; // type:label scope:local +@1794 = .data:0x802CD098; // type:object size:0xF scope:local align:4 data:string +@1804 = .data:0x802CD0A8; // type:object size:0xB scope:local align:4 data:string +@2018 = .data:0x802CD0B4; // type:object size:0x1A scope:local align:4 data:string +@2019 = .data:0x802CD0D0; // type:object size:0xE scope:local align:4 data:string +@2022 = .data:0x802CD0E0; // type:object size:0x14 scope:local align:4 data:string +@2023 = .data:0x802CD0F4; // type:object size:0x14 scope:local align:4 data:string +@2025 = .data:0x802CD108; // type:object size:0x19 scope:local align:4 data:string +@2027 = .data:0x802CD124; // type:object size:0x14 scope:local align:4 data:string +@2028 = .data:0x802CD138; // type:object size:0x19 scope:local align:4 data:string +@2029 = .data:0x802CD154; // type:object size:0x12 scope:local align:4 data:string +@2031 = .data:0x802CD168; // type:object size:0x14 scope:local align:4 data:string +@2032 = .data:0x802CD17C; // type:object size:0x18 scope:local align:4 data:string +@2033 = .data:0x802CD194; // type:object size:0x18 scope:local align:4 data:string +@2034 = .data:0x802CD1AC; // type:object size:0x1E scope:local align:4 data:string +@2035 = .data:0x802CD1CC; // type:object size:0x1E scope:local align:4 data:string +@3529 = .data:0x802CD1EC; // type:object size:0x1A scope:local align:4 data:string +@3531 = .data:0x802CD208; // type:object size:0xA scope:local align:4 data:string +@3532 = .data:0x802CD214; // type:object size:0x13 scope:local align:4 data:string +@3533 = .data:0x802CD228; // type:object size:0xC scope:local align:4 +@3534 = .data:0x802CD234; // type:object size:0x15 scope:local align:4 data:string +@3535 = .data:0x802CD24C; // type:object size:0x14 scope:local align:4 +@3530 = .data:0x802CD260; // type:object size:0x1C scope:local align:4 +__vt__25TaiOtimotiLegEffectAction = .data:0x802CD27C; // type:object size:0x20 scope:global align:4 +@3542 = .data:0x802CD29C; // type:object size:0x20 scope:local align:4 data:string +@3543 = .data:0x802CD2BC; // type:object size:0xC scope:local align:4 +__vt__31TaiOtimotiAttackingEffectAction = .data:0x802CD2C8; // type:object size:0x1C scope:global align:4 +@3545 = .data:0x802CD2E4; // type:object size:0x1A scope:local align:4 data:string +@3546 = .data:0x802CD300; // type:object size:0xC scope:local align:4 +__vt__25TaiOtimotiAttackingAction = .data:0x802CD30C; // type:object size:0x1C scope:global align:4 +@3547 = .data:0x802CD328; // type:object size:0x19 scope:local align:4 data:string +@3548 = .data:0x802CD344; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiBouncingAction = .data:0x802CD350; // type:object size:0x1C scope:global align:4 +@3550 = .data:0x802CD36C; // type:object size:0x11 scope:local align:4 data:string +@3552 = .data:0x802CD380; // type:object size:0xA scope:local align:4 data:string +@3553 = .data:0x802CD38C; // type:object size:0xE scope:local align:4 data:string +@3554 = .data:0x802CD39C; // type:object size:0xC scope:local align:4 +@3551 = .data:0x802CD3A8; // type:object size:0x14 scope:local align:4 +@3557 = .data:0x802CD3C8; // type:object size:0xC scope:local align:4 data:string +@3567 = .data:0x802CD400; // type:object size:0x19 scope:local align:4 data:string +@3568 = .data:0x802CD41C; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiPressingAction = .data:0x802CD428; // type:object size:0x1C scope:global align:4 +@3569 = .data:0x802CD444; // type:object size:0x19 scope:local align:4 data:string +@3570 = .data:0x802CD460; // type:object size:0xC scope:local align:4 +__vt__24TaiOtimotiDroppingAction = .data:0x802CD46C; // type:object size:0x1C scope:global align:4 +@3571 = .data:0x802CD488; // type:object size:0x1B scope:local align:4 data:string +@3572 = .data:0x802CD4A4; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiAirWaitingAction = .data:0x802CD4B0; // type:object size:0x1C scope:global align:4 +@3573 = .data:0x802CD4CC; // type:object size:0x18 scope:local align:4 data:string +@3574 = .data:0x802CD4E4; // type:object size:0xC scope:local align:4 +__vt__23TaiOtimotiJumpingAction = .data:0x802CD4F0; // type:object size:0x1C scope:global align:4 +@3575 = .data:0x802CD50C; // type:object size:0x1B scope:local align:4 data:string +@3576 = .data:0x802CD528; // type:object size:0xC scope:local align:4 +__vt__26TaiOtimotiFailToJumpAction = .data:0x802CD534; // type:object size:0x1C scope:global align:4 +@3577 = .data:0x802CD550; // type:object size:0x11 scope:local align:4 data:string +@3578 = .data:0x802CD564; // type:object size:0x14 scope:local align:4 +@3583 = .data:0x802CD59C; // type:object size:0x16 scope:local align:4 data:string +@3584 = .data:0x802CD5B4; // type:object size:0xC scope:local align:4 +__vt__21TaiOtimotiFlickAction = .data:0x802CD5C0; // type:object size:0x1C scope:global align:4 +@3585 = .data:0x802CD5DC; // type:object size:0x23 scope:local align:4 data:string +@3586 = .data:0x802CD600; // type:object size:0xC scope:local align:4 +__vt__34TaiOtimotiStartDroppingWaterAction = .data:0x802CD60C; // type:object size:0x1C scope:global align:4 +@3587 = .data:0x802CD628; // type:object size:0x13 scope:local align:4 data:string +@3589 = .data:0x802CD63C; // type:object size:0xD scope:local align:4 data:string +@3590 = .data:0x802CD64C; // type:object size:0xC scope:local align:4 data:string +@3591 = .data:0x802CD658; // type:object size:0xC scope:local align:4 +@3588 = .data:0x802CD664; // type:object size:0x14 scope:local align:4 +__vt__18TaiOtimotiStrategy = .data:0x802CD678; // type:object size:0x28 scope:global align:4 +@3592 = .data:0x802CD6A0; // type:object size:0xE scope:local align:4 data:string +@3593 = .data:0x802CD6B0; // type:object size:0xC scope:local align:4 +@3595 = .data:0x802CD6F4; // type:object size:0x17 scope:local align:4 data:string +@3598 = .data:0x802CD70C; // type:object size:0x9 scope:local align:4 data:string +@3599 = .data:0x802CD718; // type:object size:0xC scope:local align:4 +@3601 = .data:0x802CD724; // type:object size:0x14 scope:local align:4 +@3602 = .data:0x802CD738; // type:object size:0xF scope:local align:4 data:string +@3603 = .data:0x802CD748; // type:object size:0x1C scope:local align:4 +@3596 = .data:0x802CD764; // type:object size:0x24 scope:local align:4 +__vt__22TaiBlackFrogParameters = .data:0x802CD788; // type:object size:0x30 scope:weak align:4 +@3610 = .data:0x802CD7B8; // type:object size:0x15 scope:local align:4 data:string +@3611 = .data:0x802CD7D0; // type:object size:0x24 scope:local align:4 +__vt__20TaiOtimotiParameters = .data:0x802CD7F4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CD828; // type:label scope:local +@1765 = .data:0x802CD828; // type:object size:0xC scope:local align:4 data:string +@1857 = .data:0x802CD834; // type:object size:0x16 scope:local align:4 data:string +@1860 = .data:0x802CD84C; // type:object size:0x22 scope:local align:4 data:string +@1862 = .data:0x802CD870; // type:object size:0xF scope:local align:4 data:string +@2357 = .data:0x802CD880; // type:object size:0x1B scope:local align:4 data:string +@2359 = .data:0x802CD89C; // type:object size:0xA scope:local align:4 data:string +@2358 = .data:0x802CD8A8; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmChangingColorAction = .data:0x802CD8B4; // type:object size:0x1C scope:global align:4 +@2366 = .data:0x802CD8D0; // type:object size:0x1B scope:local align:4 data:string +@2367 = .data:0x802CD8EC; // type:object size:0xC scope:local align:4 +__vt__26TaiPalmSettingPelletAction = .data:0x802CD8F8; // type:object size:0x1C scope:global align:4 +@2369 = .data:0x802CD914; // type:object size:0x17 scope:local align:4 data:string +@2370 = .data:0x802CD92C; // type:object size:0xC scope:local align:4 +__vt__22TaiPalmSunflowerAction = .data:0x802CD938; // type:object size:0x1C scope:global align:4 +@2372 = .data:0x802CD954; // type:object size:0x1A scope:local align:4 data:string +@2373 = .data:0x802CD970; // type:object size:0xC scope:local align:4 +__vt__25TaiPalmFlowerDamageAction = .data:0x802CD97C; // type:object size:0x1C scope:global align:4 +@2374 = .data:0x802CD998; // type:object size:0x12 scope:local align:4 data:string +@2375 = .data:0x802CD9AC; // type:object size:0xC scope:local align:4 +__vt__17TaiPalmGrowAction = .data:0x802CD9B8; // type:object size:0x1C scope:global align:4 +@2376 = .data:0x802CD9D4; // type:object size:0x15 scope:local align:4 data:string +@2377 = .data:0x802CD9EC; // type:object size:0xC scope:local align:4 +__vt__20TaiPalmGrowingAction = .data:0x802CD9F8; // type:object size:0x1C scope:global align:4 +@2378 = .data:0x802CDA14; // type:object size:0x16 scope:local align:4 data:string +@2380 = .data:0x802CDA2C; // type:object size:0x10 scope:local align:4 data:string +@2381 = .data:0x802CDA3C; // type:object size:0xC scope:local align:4 +@2382 = .data:0x802CDA48; // type:object size:0x12 scope:local align:4 data:string +@2383 = .data:0x802CDA5C; // type:object size:0x14 scope:local align:4 +@2379 = .data:0x802CDA70; // type:object size:0x1C scope:local align:4 +__vt__21TaiPalmDamagingAction = .data:0x802CDA8C; // type:object size:0x1C scope:global align:4 +@2384 = .data:0x802CDAA8; // type:object size:0x13 scope:local align:4 data:string +@2386 = .data:0x802CDABC; // type:object size:0xF scope:local align:4 data:string +@2387 = .data:0x802CDACC; // type:object size:0x14 scope:local align:4 +@2385 = .data:0x802CDAE0; // type:object size:0x1C scope:local align:4 +__vt__18TaiPalmDyingAction = .data:0x802CDAFC; // type:object size:0x1C scope:global align:4 +@2388 = .data:0x802CDB18; // type:object size:0x14 scope:local align:4 data:string +@2389 = .data:0x802CDB2C; // type:object size:0x14 scope:local align:4 +__vt__19TaiPalmMotionAction = .data:0x802CDB40; // type:object size:0x1C scope:global align:4 +@2390 = .data:0x802CDB5C; // type:object size:0x11 scope:local align:4 data:string +@2392 = .data:0x802CDB70; // type:object size:0xA scope:local align:4 data:string +@2393 = .data:0x802CDB7C; // type:object size:0xE scope:local align:4 data:string +@2394 = .data:0x802CDB8C; // type:object size:0xC scope:local align:4 +@2391 = .data:0x802CDB98; // type:object size:0x14 scope:local align:4 +@2397 = .data:0x802CDBB8; // type:object size:0x11 scope:local align:4 data:string +@2398 = .data:0x802CDBCC; // type:object size:0x14 scope:local align:4 +@2403 = .data:0x802CDC04; // type:object size:0x10 scope:local align:4 data:string +@2405 = .data:0x802CDC14; // type:object size:0xD scope:local align:4 data:string +@2406 = .data:0x802CDC24; // type:object size:0xC scope:local align:4 data:string +@2407 = .data:0x802CDC30; // type:object size:0xC scope:local align:4 +@2404 = .data:0x802CDC3C; // type:object size:0x14 scope:local align:4 +__vt__15TaiPalmStrategy = .data:0x802CDC50; // type:object size:0x28 scope:global align:4 +@2408 = .data:0x802CDC94; // type:object size:0x12 scope:local align:4 data:string +@2411 = .data:0x802CDCA8; // type:object size:0x9 scope:local align:4 data:string +@2412 = .data:0x802CDCB4; // type:object size:0xC scope:local align:4 +@2414 = .data:0x802CDCC0; // type:object size:0x14 scope:local align:4 +@2415 = .data:0x802CDCD4; // type:object size:0xF scope:local align:4 data:string +@2416 = .data:0x802CDCE4; // type:object size:0x1C scope:local align:4 +@2409 = .data:0x802CDD00; // type:object size:0x24 scope:local align:4 +__vt__17TaiPalmParameters = .data:0x802CDD24; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CDD58; // type:label scope:local +@1680 = .data:0x802CDD58; // type:object size:0x17 scope:local align:4 data:string +@1690 = .data:0x802CDD70; // type:object size:0x13 scope:local align:4 data:string +@1858 = .data:0x802CDD84; // type:object size:0x14 scope:local align:4 data:string +@1860 = .data:0x802CDD98; // type:object size:0xA scope:local align:4 data:string +@1859 = .data:0x802CDDA4; // type:object size:0xC scope:local align:4 +__vt__19TaiDangerLifeAction = .data:0x802CDDB0; // type:object size:0x1C scope:global align:4 +@1868 = .data:0x802CDDCC; // type:object size:0xE scope:local align:4 data:string +@1869 = .data:0x802CDDDC; // type:object size:0xC scope:local align:4 +__vt__13TaiWarnAction = .data:0x802CDDE8; // type:object size:0x1C scope:global align:4 +@1871 = .data:0x802CDE04; // type:object size:0x11 scope:local align:4 data:string +@1872 = .data:0x802CDE18; // type:object size:0xC scope:local align:4 +__vt__16TaiPressedAction = .data:0x802CDE24; // type:object size:0x1C scope:global align:4 +@1873 = .data:0x802CDE40; // type:object size:0x16 scope:local align:4 data:string +@1874 = .data:0x802CDE58; // type:object size:0xC scope:local align:4 +__vt__21TaiBeingPressedAction = .data:0x802CDE64; // type:object size:0x1C scope:global align:4 +@1875 = .data:0x802CDE80; // type:object size:0x11 scope:local align:4 data:string +@1876 = .data:0x802CDE94; // type:object size:0xC scope:local align:4 +__vt__16TaiSmashedAction = .data:0x802CDEA0; // type:object size:0x1C scope:global align:4 +@1877 = .data:0x802CDEBC; // type:object size:0x11 scope:local align:4 data:string +@1878 = .data:0x802CDED0; // type:object size:0xC scope:local align:4 +__vt__16TaiStickedAction = .data:0x802CDEDC; // type:object size:0x1C scope:global align:4 +@1879 = .data:0x802CDEF8; // type:object size:0x11 scope:local align:4 data:string +@1881 = .data:0x802CDF0C; // type:object size:0xA scope:local align:4 data:string +@1882 = .data:0x802CDF18; // type:object size:0xE scope:local align:4 data:string +@1883 = .data:0x802CDF28; // type:object size:0xC scope:local align:4 +@1880 = .data:0x802CDF34; // type:object size:0x14 scope:local align:4 +@1888 = .data:0x802CDF6C; // type:object size:0x20 scope:local align:4 data:string +@1889 = .data:0x802CDF8C; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestCollisionAction = .data:0x802CDF98; // type:object size:0x1C scope:global align:4 +@1890 = .data:0x802CDFB4; // type:object size:0x20 scope:local align:4 data:string +@1891 = .data:0x802CDFD4; // type:object size:0xC scope:local align:4 +__vt__31TaiTargetNearestAssailantAction = .data:0x802CDFE0; // type:object size:0x1C scope:global align:4 +@1892 = .data:0x802CDFFC; // type:object size:0x12 scope:local align:4 data:string +@1894 = .data:0x802CE010; // type:object size:0x10 scope:local align:4 data:string +@1895 = .data:0x802CE020; // type:object size:0xC scope:local align:4 +@1893 = .data:0x802CE02C; // type:object size:0x14 scope:local align:4 +__vt__17TaiDamagingAction = .data:0x802CE040; // type:object size:0x1C scope:global align:4 +@1896 = .data:0x802CE05C; // type:object size:0x29 scope:local align:4 data:string +@1897 = .data:0x802CE088; // type:object size:0xC scope:local align:4 +__vt__40TaiCounterattackSimultaneousDamageAction = .data:0x802CE094; // type:object size:0x1C scope:global align:4 +@1898 = .data:0x802CE0B0; // type:object size:0x1C scope:local align:4 data:string +@1899 = .data:0x802CE0CC; // type:object size:0xC scope:local align:4 +__vt__27TaiSimultaneousDamageAction = .data:0x802CE0D8; // type:object size:0x1C scope:global align:4 +@1900 = .data:0x802CE0F4; // type:object size:0x10 scope:local align:4 data:string +@1901 = .data:0x802CE104; // type:object size:0xC scope:local align:4 +__vt__15TaiDamageAction = .data:0x802CE110; // type:object size:0x1C scope:global align:4 +@1902 = .data:0x802CE12C; // type:object size:0x15 scope:local align:4 data:string +@1903 = .data:0x802CE144; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageScaleAction = .data:0x802CE150; // type:object size:0x1C scope:global align:4 +@1904 = .data:0x802CE16C; // type:object size:0x15 scope:local align:4 data:string +@1905 = .data:0x802CE184; // type:object size:0xC scope:local align:4 +__vt__20TaiDamageCountAction = .data:0x802CE190; // type:object size:0x1C scope:global align:4 +@1906 = .data:0x802CE1AC; // type:object size:0x1A scope:local align:4 data:string +@1907 = .data:0x802CE1C8; // type:object size:0xC scope:local align:4 +__vt__25TaiDamageCountResetAction = .data:0x802CE1D4; // type:object size:0x1C scope:global align:4 +@1908 = .data:0x802CE1F0; // type:object size:0xF scope:local align:4 data:string +@1909 = .data:0x802CE200; // type:object size:0x14 scope:local align:4 +__vt__14TaiDyingAction = .data:0x802CE214; // type:object size:0x1C scope:global align:4 +@1910 = .data:0x802CE230; // type:object size:0x1A scope:local align:4 data:string +@1911 = .data:0x802CE24C; // type:object size:0xC scope:local align:4 +__vt__25TaiCreateDeadEffectAction = .data:0x802CE258; // type:object size:0x1C scope:global align:4 +@1912 = .data:0x802CE274; // type:object size:0x14 scope:local align:4 data:string +@1913 = .data:0x802CE288; // type:object size:0xC scope:local align:4 +__vt__19TaiSpawnItemsAction = .data:0x802CE294; // type:object size:0x1C scope:global align:4 +@1914 = .data:0x802CE2B0; // type:object size:0x14 scope:local align:4 data:string +@1915 = .data:0x802CE2C4; // type:object size:0xC scope:local align:4 +__vt__19TaiStartDyingAction = .data:0x802CE2D0; // type:object size:0x1C scope:global align:4 +@1916 = .data:0x802CE2EC; // type:object size:0xD scope:local align:4 data:string +@1917 = .data:0x802CE2FC; // type:object size:0xC scope:local align:4 +__vt__12TaiDyeAction = .data:0x802CE308; // type:object size:0x1C scope:global align:4 +@1918 = .data:0x802CE324; // type:object size:0x14 scope:local align:4 data:string +@1919 = .data:0x802CE338; // type:object size:0xC scope:local align:4 +__vt__19TaiLifeDamageAction = .data:0x802CE344; // type:object size:0x1C scope:global align:4 +@1920 = .data:0x802CE360; // type:object size:0x12 scope:local align:4 data:string +@1921 = .data:0x802CE374; // type:object size:0xC scope:local align:4 +__vt__17TaiLifeZeroAction = .data:0x802CE380; // type:object size:0x1C scope:global align:4 +@1922 = .data:0x802CE39C; // type:object size:0xE scope:local align:4 data:string +@1923 = .data:0x802CE3AC; // type:object size:0xC scope:local align:4 +__vt__13TaiDeadAction = .data:0x802CE3B8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CE3D8; // type:label scope:local +@1727 = .data:0x802CE3D8; // type:object size:0xF scope:local align:4 data:string +@1737 = .data:0x802CE3E8; // type:object size:0xB scope:local align:4 data:string +@1924 = .data:0x802CE3F4; // type:object size:0x10 scope:local align:4 data:string +@1927 = .data:0x802CE404; // type:object size:0x12 scope:local align:4 data:string +@1929 = .data:0x802CE418; // type:object size:0x18 scope:local align:4 data:string +@1930 = .data:0x802CE430; // type:object size:0x21 scope:local align:4 data:string +@1932 = .data:0x802CE454; // type:object size:0x20 scope:local align:4 data:string +@1933 = .data:0x802CE474; // type:object size:0x12 scope:local align:4 data:string +@3214 = .data:0x802CE488; // type:object size:0x24 scope:local align:4 data:string +@3216 = .data:0x802CE4AC; // type:object size:0xA scope:local align:4 data:string +@3217 = .data:0x802CE4B8; // type:object size:0x13 scope:local align:4 data:string +@3218 = .data:0x802CE4CC; // type:object size:0xC scope:local align:4 +@3219 = .data:0x802CE4D8; // type:object size:0x15 scope:local align:4 data:string +@3220 = .data:0x802CE4F0; // type:object size:0x14 scope:local align:4 +@3215 = .data:0x802CE504; // type:object size:0x1C scope:local align:4 +__vt__35TaiSwallowMissAttackingEffectAction = .data:0x802CE520; // type:object size:0x20 scope:global align:4 +@3227 = .data:0x802CE540; // type:object size:0x1A scope:local align:4 data:string +@3228 = .data:0x802CE55C; // type:object size:0x1C scope:local align:4 +__vt__25TaiSwallowLegEffectAction = .data:0x802CE578; // type:object size:0x20 scope:global align:4 +@3229 = .data:0x802CE598; // type:object size:0x17 scope:local align:4 data:string +@3230 = .data:0x802CE5B0; // type:object size:0xC scope:local align:4 +__vt__22TaiSwallowNoticeAction = .data:0x802CE5BC; // type:object size:0x1C scope:global align:4 +@3232 = .data:0x802CE5D8; // type:object size:0x16 scope:local align:4 data:string +@3233 = .data:0x802CE5F0; // type:object size:0xC scope:local align:4 +__vt__21TaiSwallowSnoreAction = .data:0x802CE5FC; // type:object size:0x1C scope:global align:4 +@3235 = .data:0x802CE618; // type:object size:0x20 scope:local align:4 data:string +@3236 = .data:0x802CE638; // type:object size:0xC scope:local align:4 +__vt__31TaiSwallowSwallowingFlickAction = .data:0x802CE644; // type:object size:0x1C scope:global align:4 +@3237 = .data:0x802CE660; // type:object size:0x11 scope:local align:4 data:string +@3239 = .data:0x802CE674; // type:object size:0xA scope:local align:4 data:string +@3240 = .data:0x802CE680; // type:object size:0xE scope:local align:4 data:string +@3241 = .data:0x802CE690; // type:object size:0xC scope:local align:4 +@3238 = .data:0x802CE69C; // type:object size:0x14 scope:local align:4 +@3244 = .data:0x802CE6BC; // type:object size:0xC scope:local align:4 data:string +@3254 = .data:0x802CE6F4; // type:object size:0x19 scope:local align:4 data:string +@3256 = .data:0x802CE710; // type:object size:0x10 scope:local align:4 data:string +@3257 = .data:0x802CE720; // type:object size:0xC scope:local align:4 +@3255 = .data:0x802CE72C; // type:object size:0x14 scope:local align:4 +__vt__24TaiSwallowFlickingAction = .data:0x802CE740; // type:object size:0x1C scope:global align:4 +@3258 = .data:0x802CE75C; // type:object size:0x11 scope:local align:4 data:string +@3259 = .data:0x802CE770; // type:object size:0x14 scope:local align:4 +@3264 = .data:0x802CE7A8; // type:object size:0x18 scope:local align:4 data:string +@3266 = .data:0x802CE7C0; // type:object size:0x1A scope:local align:4 data:string +@3267 = .data:0x802CE7DC; // type:object size:0x14 scope:local align:4 +@3265 = .data:0x802CE7F0; // type:object size:0x1C scope:local align:4 +__vt__23TaiSwallowTurningAction = .data:0x802CE80C; // type:object size:0x20 scope:global align:4 +@3268 = .data:0x802CE82C; // type:object size:0x1F scope:local align:4 data:string +@3269 = .data:0x802CE84C; // type:object size:0xC scope:local align:4 +__vt__30TaiSwallowReceiveMessageAction = .data:0x802CE858; // type:object size:0x1C scope:global align:4 +@3270 = .data:0x802CE874; // type:object size:0x13 scope:local align:4 data:string +@3272 = .data:0x802CE888; // type:object size:0xD scope:local align:4 data:string +@3273 = .data:0x802CE898; // type:object size:0xC scope:local align:4 data:string +@3274 = .data:0x802CE8A4; // type:object size:0xC scope:local align:4 +@3271 = .data:0x802CE8B0; // type:object size:0x14 scope:local align:4 +__vt__18TaiSwallowStrategy = .data:0x802CE8C4; // type:object size:0x28 scope:global align:4 +@3275 = .data:0x802CE8EC; // type:object size:0xE scope:local align:4 data:string +@3276 = .data:0x802CE8FC; // type:object size:0xC scope:local align:4 +@3278 = .data:0x802CE940; // type:object size:0x1A scope:local align:4 data:string +@3281 = .data:0x802CE95C; // type:object size:0x9 scope:local align:4 data:string +@3282 = .data:0x802CE968; // type:object size:0xC scope:local align:4 +@3284 = .data:0x802CE974; // type:object size:0x14 scope:local align:4 +@3285 = .data:0x802CE988; // type:object size:0xF scope:local align:4 data:string +@3286 = .data:0x802CE998; // type:object size:0x1C scope:local align:4 +@3279 = .data:0x802CE9B4; // type:object size:0x24 scope:local align:4 +__vt__25TaiBlackSwallowParameters = .data:0x802CE9D8; // type:object size:0x30 scope:weak align:4 +@3293 = .data:0x802CEA08; // type:object size:0x15 scope:local align:4 data:string +@3294 = .data:0x802CEA20; // type:object size:0x24 scope:local align:4 +__vt__20TaiSwallowParameters = .data:0x802CEA44; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CEA78; // type:label scope:local +@1769 = .data:0x802CEA78; // type:object size:0xD scope:local align:4 data:string +@1779 = .data:0x802CEA88; // type:object size:0x9 scope:local align:4 data:string +@1842 = .data:0x802CEA94; // type:object size:0x13 scope:local align:4 data:string +@1843 = .data:0x802CEAA8; // type:object size:0xF scope:local align:4 data:string +@2451 = .data:0x802CEAB8; // type:object size:0x1B scope:local align:4 data:string +@2453 = .data:0x802CEAD4; // type:object size:0xA scope:local align:4 data:string +@2452 = .data:0x802CEAE0; // type:object size:0xC scope:local align:4 +__vt__26TaiPearlTresureSoundAction = .data:0x802CEAEC; // type:object size:0x1C scope:global align:4 +@2461 = .data:0x802CEB08; // type:object size:0x11 scope:local align:4 data:string +@2463 = .data:0x802CEB1C; // type:object size:0xD scope:local align:4 data:string +@2464 = .data:0x802CEB2C; // type:object size:0xC scope:local align:4 data:string +@2465 = .data:0x802CEB38; // type:object size:0xC scope:local align:4 +@2462 = .data:0x802CEB44; // type:object size:0x14 scope:local align:4 +__vt__16TaiPearlStrategy = .data:0x802CEB58; // type:object size:0x28 scope:global align:4 +@2466 = .data:0x802CEB80; // type:object size:0x16 scope:local align:4 data:string +@2469 = .data:0x802CEB98; // type:object size:0x9 scope:local align:4 data:string +@2470 = .data:0x802CEBA4; // type:object size:0xC scope:local align:4 +@2472 = .data:0x802CEBB0; // type:object size:0x14 scope:local align:4 +@2473 = .data:0x802CEBC4; // type:object size:0xF scope:local align:4 data:string +@2474 = .data:0x802CEBD4; // type:object size:0x1C scope:local align:4 +@2467 = .data:0x802CEBF0; // type:object size:0x24 scope:local align:4 +__vt__21TaiRocpearlParameters = .data:0x802CEC14; // type:object size:0x30 scope:weak align:4 +@2481 = .data:0x802CEC44; // type:object size:0x13 scope:local align:4 data:string +@2482 = .data:0x802CEC58; // type:object size:0x24 scope:local align:4 +__vt__18TaiPearlParameters = .data:0x802CEC7C; // type:object size:0x30 scope:weak align:4 +@2483 = .data:0x802CECAC; // type:object size:0xC scope:local align:4 data:string +@2493 = .data:0x802CECE4; // type:object size:0x11 scope:local align:4 data:string +@2495 = .data:0x802CECF8; // type:object size:0xA scope:local align:4 data:string +@2496 = .data:0x802CED04; // type:object size:0xE scope:local align:4 data:string +@2497 = .data:0x802CED14; // type:object size:0xC scope:local align:4 +@2494 = .data:0x802CED20; // type:object size:0x14 scope:local align:4 +@2502 = .data:0x802CED40; // type:object size:0x11 scope:local align:4 data:string +@2503 = .data:0x802CED54; // type:object size:0x14 scope:local align:4 +@2505 = .data:0x802CED74; // type:object size:0x12 scope:local align:4 data:string +@2506 = .data:0x802CED88; // type:object size:0xC scope:local align:4 +__vt__17TaiShellEatAction = .data:0x802CED94; // type:object size:0x1C scope:global align:4 +@2509 = .data:0x802CEDC8; // type:object size:0x1D scope:local align:4 data:string +@2510 = .data:0x802CEDE8; // type:object size:0xC scope:local align:4 +__vt__28TaiShellNaviPikiInsideAction = .data:0x802CEDF4; // type:object size:0x1C scope:global align:4 +@2511 = .data:0x802CEE10; // type:object size:0x1F scope:local align:4 data:string +@2512 = .data:0x802CEE30; // type:object size:0xC scope:local align:4 +__vt__30TaiShellSaveItemPositionAction = .data:0x802CEE3C; // type:object size:0x1C scope:global align:4 +@2513 = .data:0x802CEE58; // type:object size:0x1A scope:local align:4 data:string +@2514 = .data:0x802CEE74; // type:object size:0xC scope:local align:4 +__vt__25TaiShellSetPositionAction = .data:0x802CEE80; // type:object size:0x1C scope:global align:4 +@2515 = .data:0x802CEE9C; // type:object size:0x11 scope:local align:4 data:string +@2516 = .data:0x802CEEB0; // type:object size:0x14 scope:local align:4 +__vt__16TaiShellStrategy = .data:0x802CEEC4; // type:object size:0x28 scope:global align:4 +@2517 = .data:0x802CEEEC; // type:object size:0xE scope:local align:4 data:string +@2518 = .data:0x802CEEFC; // type:object size:0xC scope:local align:4 +@2520 = .data:0x802CEF40; // type:object size:0x13 scope:local align:4 data:string +@2521 = .data:0x802CEF54; // type:object size:0x24 scope:local align:4 +__vt__18TaiShellParameters = .data:0x802CEF78; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802CEFA8; // type:label scope:local +@1669 = .data:0x802CEFA8; // type:object size:0x14 scope:local align:4 data:string +@1679 = .data:0x802CEFBC; // type:object size:0x10 scope:local align:4 data:string +@1739 = .data:0x802CEFCC; // type:object size:0x17 scope:local align:4 data:string +@1741 = .data:0x802CEFE4; // type:object size:0xA scope:local align:4 data:string +@1742 = .data:0x802CEFF0; // type:object size:0xF scope:local align:4 data:string +@1743 = .data:0x802CF000; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802CF00C; // type:object size:0x14 scope:local align:4 +__vt__22TaiStartingTimerAction = .data:0x802CF020; // type:object size:0x1C scope:global align:4 +@1750 = .data:0x802CF03C; // type:object size:0x16 scope:local align:4 data:string +@1751 = .data:0x802CF054; // type:object size:0xC scope:local align:4 +__vt__21TaiTimerElapsedAction = .data:0x802CF060; // type:object size:0x1C scope:global align:4 +@1753 = .data:0x802CF07C; // type:object size:0x14 scope:local align:4 data:string +@1754 = .data:0x802CF090; // type:object size:0xC scope:local align:4 +__vt__19TaiResetTimerAction = .data:0x802CF09C; // type:object size:0x1C scope:global align:4 +__vt__14TaiTimerAction = .data:0x802CF0B8; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CF0D8; // type:label scope:local +@1669 = .data:0x802CF0D8; // type:object size:0x13 scope:local align:4 data:string +@1679 = .data:0x802CF0EC; // type:object size:0xF scope:local align:4 data:string +@1730 = .data:0x802CF0FC; // type:object size:0x15 scope:local align:4 data:string +@1732 = .data:0x802CF114; // type:object size:0xA scope:local align:4 data:string +@1733 = .data:0x802CF120; // type:object size:0x10 scope:local align:4 data:string +@1734 = .data:0x802CF130; // type:object size:0xC scope:local align:4 +@1731 = .data:0x802CF13C; // type:object size:0x14 scope:local align:4 +__vt__20TaiWaitTurningAction = .data:0x802CF150; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802CF170; // type:label scope:local +@1106 = .data:0x802CF170; // type:object size:0x9 scope:local align:4 data:string +@1124 = .data:0x802CF17C; // type:object size:0xB scope:local align:4 data:string +@1125 = .data:0x802CF188; // type:object size:0x14 scope:local align:4 data:string +@1126 = .data:0x802CF19C; // type:object size:0xC scope:local align:4 data:string +@1127 = .data:0x802CF1A8; // type:object size:0xD scope:local align:4 data:string +@1128 = .data:0x802CF1B8; // type:object size:0x9 scope:local align:4 data:string +@1129 = .data:0x802CF1C4; // type:object size:0x14 scope:local align:4 +@1131 = .data:0x802CF1D8; // type:object size:0x2C scope:local align:4 +@1133 = .data:0x802CF204; // type:object size:0x34 scope:local align:4 +@1135 = .data:0x802CF238; // type:object size:0x3C scope:local align:4 +@1123 = .data:0x802CF274; // type:object size:0x44 scope:local align:4 +__vt__4Teki = .data:0x802CF2B8; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802CF4C8; // type:label scope:local +@1206 = .data:0x802CF4C8; // type:object size:0x19 scope:local align:4 data:string +@1216 = .data:0x802CF4E4; // type:object size:0x15 scope:local align:4 data:string +@1223 = .data:0x802CF4FC; // type:object size:0x15 scope:local align:4 data:string +@1233 = .data:0x802CF514; // type:object size:0x9 scope:local align:4 data:string +@1234 = .data:0x802CF520; // type:object size:0xC scope:local align:4 +@1236 = .data:0x802CF52C; // type:object size:0x14 scope:local align:4 +@1231 = .data:0x802CF540; // type:object size:0x1C scope:local align:4 +__vt__20TekiAnimationManager = .data:0x802CF55C; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802CF5A8; // type:label scope:local +@1787 = .data:0x802CF5A8; // type:object size:0xE scope:local align:4 data:string +@4669 = .data:0x802CF5B8; // type:object size:0x11 scope:local align:4 data:string +@4671 = .data:0x802CF5CC; // type:object size:0xA scope:local align:4 data:string +@4672 = .data:0x802CF5D8; // type:object size:0xE scope:local align:4 data:string +@4673 = .data:0x802CF5E8; // type:object size:0xC scope:local align:4 +@4670 = .data:0x802CF5F4; // type:object size:0x14 scope:local align:4 +@4675 = .data:0x802CF614; // type:object size:0x11 scope:local align:4 data:string +@4676 = .data:0x802CF628; // type:object size:0x14 scope:local align:4 +@4680 = .data:0x802CF648; // type:object size:0xC scope:local align:4 data:string +@4689 = .data:0x802CF698; // type:object size:0xC scope:local align:4 data:string +@4691 = .data:0x802CF6A4; // type:object size:0x9 scope:local align:4 data:string +@4690 = .data:0x802CF6B0; // type:object size:0xC scope:local align:4 +@4692 = .data:0x802CF6D0; // type:object size:0xD scope:local align:4 data:string +@4694 = .data:0x802CF6EC; // type:object size:0x11 scope:local align:4 data:string +@4696 = .data:0x802CF700; // type:object size:0xC scope:local align:4 data:string +@4695 = .data:0x802CF70C; // type:object size:0xC scope:local align:4 +@4703 = .data:0x802CF738; // type:object size:0xB scope:local align:4 data:string +@4711 = .data:0x802CF778; // type:object size:0x14 scope:local align:4 data:string +@4714 = .data:0x802CF798; // type:object size:0xC scope:local align:4 data:string +@4715 = .data:0x802CF7A4; // type:object size:0xD scope:local align:4 data:string +@4716 = .data:0x802CF7B4; // type:object size:0x9 scope:local align:4 data:string +@4717 = .data:0x802CF7C0; // type:object size:0x14 scope:local align:4 +@4713 = .data:0x802CF7D4; // type:object size:0x2C scope:local align:4 +__vt__5BTeki = .data:0x802CF800; // type:object size:0x200 scope:global align:4 +...data.0 = .data:0x802CFA00; // type:label scope:local +@1379 = .data:0x802CFA00; // type:object size:0x13 scope:local align:4 data:string +@1389 = .data:0x802CFA14; // type:object size:0xF scope:local align:4 data:string +@1592 = .data:0x802CFA24; // type:object size:0x13 scope:local align:4 data:string +@1594 = .data:0x802CFA38; // type:object size:0xA scope:local align:4 data:string +@1595 = .data:0x802CFA44; // type:object size:0xE scope:local align:4 data:string +@1596 = .data:0x802CFA54; // type:object size:0xC scope:local align:4 +@1593 = .data:0x802CFA60; // type:object size:0x14 scope:local align:4 +__vt__18TekiAngleCondition = .data:0x802CFA74; // type:object size:0xC scope:global align:4 +@1597 = .data:0x802CFA80; // type:object size:0x11 scope:local align:4 data:string +@1598 = .data:0x802CFA94; // type:object size:0x14 scope:local align:4 +@1602 = .data:0x802CFAB4; // type:object size:0x11 scope:local align:4 data:string +@1603 = .data:0x802CFAC8; // type:object size:0x14 scope:local align:4 +@1606 = .data:0x802CFB00; // type:object size:0x13 scope:local align:4 data:string +@1607 = .data:0x802CFB14; // type:object size:0x14 scope:local align:4 +__vt__18TekiLowerCondition = .data:0x802CFB28; // type:object size:0xC scope:global align:4 +@1608 = .data:0x802CFB34; // type:object size:0x1B scope:local align:4 data:string +@1609 = .data:0x802CFB50; // type:object size:0x14 scope:local align:4 +__vt__26TekiVisibleHeightCondition = .data:0x802CFB64; // type:object size:0xC scope:global align:4 +@1610 = .data:0x802CFB70; // type:object size:0x15 scope:local align:4 data:string +@1611 = .data:0x802CFB88; // type:object size:0x14 scope:local align:4 +__vt__20TekiVisibleCondition = .data:0x802CFB9C; // type:object size:0xC scope:global align:4 +@1612 = .data:0x802CFBA8; // type:object size:0x18 scope:local align:4 data:string +@1613 = .data:0x802CFBC0; // type:object size:0x14 scope:local align:4 +__vt__23TekiAttackableCondition = .data:0x802CFBD4; // type:object size:0xC scope:global align:4 +@1614 = .data:0x802CFBE0; // type:object size:0x18 scope:local align:4 data:string +@1615 = .data:0x802CFBF8; // type:object size:0x14 scope:local align:4 +__vt__23TekiLowerRangeCondition = .data:0x802CFC0C; // type:object size:0xC scope:global align:4 +@1616 = .data:0x802CFC18; // type:object size:0x15 scope:local align:4 data:string +@1617 = .data:0x802CFC30; // type:object size:0x14 scope:local align:4 +__vt__20TekiStickerCondition = .data:0x802CFC44; // type:object size:0xC scope:global align:4 +@1618 = .data:0x802CFC50; // type:object size:0x1C scope:local align:4 data:string +@1619 = .data:0x802CFC6C; // type:object size:0x14 scope:local align:4 +__vt__27TekiSphereDistanceCondition = .data:0x802CFC80; // type:object size:0xC scope:global align:4 +@1620 = .data:0x802CFC8C; // type:object size:0x16 scope:local align:4 data:string +@1621 = .data:0x802CFCA4; // type:object size:0x14 scope:local align:4 +__vt__21TekiDistanceCondition = .data:0x802CFCB8; // type:object size:0xC scope:global align:4 +@1622 = .data:0x802CFCC4; // type:object size:0x1D scope:local align:4 data:string +@1623 = .data:0x802CFCE4; // type:object size:0x14 scope:local align:4 +__vt__28TekiCreaturePointerCondition = .data:0x802CFCF8; // type:object size:0xC scope:global align:4 +@1624 = .data:0x802CFD04; // type:object size:0x19 scope:local align:4 data:string +@1625 = .data:0x802CFD20; // type:object size:0x14 scope:local align:4 +__vt__24TekiRecognitionCondition = .data:0x802CFD34; // type:object size:0xC scope:global align:4 +@1626 = .data:0x802CFD40; // type:object size:0x16 scope:local align:4 data:string +@1627 = .data:0x802CFD58; // type:object size:0x14 scope:local align:4 +__vt__21TekiStickingCondition = .data:0x802CFD6C; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802CFD78; // type:object size:0x24 scope:local align:4 data:string +@1629 = .data:0x802CFD9C; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionSphereDistanceCondition = .data:0x802CFDB0; // type:object size:0xC scope:global align:4 +@1630 = .data:0x802CFDBC; // type:object size:0x24 scope:local align:4 data:string +@1631 = .data:0x802CFDE0; // type:object size:0x14 scope:local align:4 +__vt__35TekiPositionCircleDistanceCondition = .data:0x802CFDF4; // type:object size:0xC scope:global align:4 +@1632 = .data:0x802CFE00; // type:object size:0x1E scope:local align:4 data:string +@1633 = .data:0x802CFE20; // type:object size:0x14 scope:local align:4 +__vt__29TekiPositionDistanceCondition = .data:0x802CFE34; // type:object size:0xC scope:global align:4 +@1634 = .data:0x802CFE40; // type:object size:0x14 scope:local align:4 data:string +@1635 = .data:0x802CFE54; // type:object size:0x14 scope:local align:4 +__vt__19TekiPelletCondition = .data:0x802CFE68; // type:object size:0xC scope:global align:4 +@1636 = .data:0x802CFE74; // type:object size:0x16 scope:local align:4 data:string +@1637 = .data:0x802CFE8C; // type:object size:0x14 scope:local align:4 +__vt__21TekiNaviPikiCondition = .data:0x802CFEA0; // type:object size:0xC scope:global align:4 +@1638 = .data:0x802CFEAC; // type:object size:0x12 scope:local align:4 data:string +@1639 = .data:0x802CFEC0; // type:object size:0x14 scope:local align:4 +__vt__17TekiNaviCondition = .data:0x802CFED4; // type:object size:0xC scope:global align:4 +@1640 = .data:0x802CFEE0; // type:object size:0x12 scope:local align:4 data:string +@1641 = .data:0x802CFEF4; // type:object size:0x14 scope:local align:4 +__vt__17TekiFreeCondition = .data:0x802CFF08; // type:object size:0xC scope:global align:4 +@1642 = .data:0x802CFF14; // type:object size:0x12 scope:local align:4 data:string +@1643 = .data:0x802CFF28; // type:object size:0x14 scope:local align:4 +__vt__17TekiTypeCondition = .data:0x802CFF3C; // type:object size:0xC scope:global align:4 +@1644 = .data:0x802CFF48; // type:object size:0x13 scope:local align:4 data:string +@1645 = .data:0x802CFF5C; // type:object size:0x14 scope:local align:4 +__vt__18TekiStateCondition = .data:0x802CFF70; // type:object size:0xC scope:global align:4 +@1646 = .data:0x802CFF7C; // type:object size:0x17 scope:local align:4 data:string +@1647 = .data:0x802CFF94; // type:object size:0x14 scope:local align:4 +__vt__22TekiPikiStateCondition = .data:0x802CFFA8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802CFFB8; // type:label scope:local +@1411 = .data:0x802CFFB8; // type:object size:0x14 scope:local align:4 data:string +@1421 = .data:0x802CFFCC; // type:object size:0x10 scope:local align:4 data:string +@1453 = .data:0x802CFFDC; // type:object size:0x12 scope:local align:4 data:string +@1455 = .data:0x802CFFF0; // type:object size:0xC scope:local align:4 data:string +@1454 = .data:0x802CFFFC; // type:object size:0xC scope:local align:4 +__vt__17InteractHitEffect = .data:0x802D0008; // type:object size:0x2C scope:global align:4 +@1465 = .data:0x802D0060; // type:object size:0xD scope:local align:4 data:string +@1466 = .data:0x802D0070; // type:object size:0xC scope:local align:4 +__vt__12InteractBomb = .data:0x802D007C; // type:object size:0x2C scope:global align:4 +...data.0 = .data:0x802D00A8; // type:label scope:local +@1206 = .data:0x802D00A8; // type:object size:0xC scope:local align:4 data:string +@1235 = .data:0x802D00B4; // type:object size:0x9 scope:local align:4 data:string +@1236 = .data:0x802D00C0; // type:object size:0x9 scope:local align:4 data:string +@1237 = .data:0x802D00CC; // type:object size:0x9 scope:local align:4 data:string +typeNames__7TekiMgr = .data:0x802D00D8; // type:object size:0x8C scope:global align:4 data:4byte +typeIds__7TekiMgr = .data:0x802D0164; // type:object size:0x8C scope:global align:4 data:string +@1310 = .data:0x802D01F0; // type:object size:0x10 scope:local align:4 data:string +@1338 = .data:0x802D0200; // type:object size:0xA scope:local align:4 data:string +@1339 = .data:0x802D020C; // type:object size:0xE scope:local align:4 data:string +@1340 = .data:0x802D021C; // type:object size:0x10 scope:local align:4 data:string +@1341 = .data:0x802D022C; // type:object size:0x12 scope:local align:4 data:string +@1342 = .data:0x802D0240; // type:object size:0x10 scope:local align:4 data:string +@1520 = .data:0x802D0250; // type:object size:0x9 scope:local align:4 data:string +@1521 = .data:0x802D025C; // type:object size:0xC scope:local align:4 +@1523 = .data:0x802D0268; // type:object size:0x14 scope:local align:4 +@1524 = .data:0x802D027C; // type:object size:0xC scope:local align:4 data:string +@1525 = .data:0x802D0288; // type:object size:0xA scope:local align:4 data:string +@1526 = .data:0x802D0294; // type:object size:0x24 scope:local align:4 +@1527 = .data:0x802D02B8; // type:object size:0xE scope:local align:4 data:string +@1528 = .data:0x802D02C8; // type:object size:0x2C scope:local align:4 +@1518 = .data:0x802D02F4; // type:object size:0x34 scope:local align:4 +__vt__7TekiMgr = .data:0x802D0328; // type:object size:0x84 scope:global align:4 +...data.0 = .data:0x802D03B0; // type:label scope:local +@1206 = .data:0x802D03B0; // type:object size:0xE scope:local align:4 data:string +@1216 = .data:0x802D03C0; // type:object size:0xB scope:local align:4 data:string +@1330 = .data:0x802D03CC; // type:object size:0xB scope:local align:4 data:string +@1331 = .data:0x802D03D8; // type:object size:0x14 scope:local align:4 data:string +@1332 = .data:0x802D03EC; // type:object size:0xC scope:local align:4 data:string +@1333 = .data:0x802D03F8; // type:object size:0xD scope:local align:4 data:string +@1334 = .data:0x802D0408; // type:object size:0x9 scope:local align:4 data:string +@1335 = .data:0x802D0414; // type:object size:0x14 scope:local align:4 +@1337 = .data:0x802D0428; // type:object size:0x2C scope:local align:4 +@1329 = .data:0x802D0454; // type:object size:0x34 scope:local align:4 +__vt__5NTeki = .data:0x802D0488; // type:object size:0x200 scope:weak align:4 +...data.0 = .data:0x802D0698; // type:label scope:local +@991 = .data:0x802D0698; // type:object size:0x13 scope:local align:4 data:string +@1001 = .data:0x802D06AC; // type:object size:0xF scope:local align:4 data:string +@1192 = .data:0x802D06BC; // type:object size:0xC scope:local align:4 data:string +@1193 = .data:0x802D06C8; // type:object size:0xC scope:local align:4 data:string +@1194 = .data:0x802D06D4; // type:object size:0xD scope:local align:4 data:string +@1195 = .data:0x802D06E4; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802D06F0; // type:object size:0xC scope:local align:4 data:string +@1197 = .data:0x802D06FC; // type:object size:0xF scope:local align:4 data:string +@1198 = .data:0x802D070C; // type:object size:0x12 scope:local align:4 +@1199 = .data:0x802D0720; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802D072C; // type:object size:0xB scope:local align:4 data:string +@1201 = .data:0x802D0738; // type:object size:0xE scope:local align:4 data:string +@1202 = .data:0x802D0748; // type:object size:0x13 scope:local align:4 data:string +@1203 = .data:0x802D075C; // type:object size:0x13 scope:local align:4 data:string +@1204 = .data:0x802D0770; // type:object size:0x13 scope:local align:4 data:string +@1205 = .data:0x802D0784; // type:object size:0x15 scope:local align:4 data:string +@1206 = .data:0x802D079C; // type:object size:0x15 scope:local align:4 data:string +@1207 = .data:0x802D07B4; // type:object size:0x15 scope:local align:4 data:string +@1208 = .data:0x802D07CC; // type:object size:0x15 scope:local align:4 data:string +@1209 = .data:0x802D07E4; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D07FC; // type:object size:0x15 scope:local align:4 data:string +@1211 = .data:0x802D0814; // type:object size:0x11 scope:local align:4 data:string +@1220 = .data:0x802D0828; // type:object size:0xE scope:local align:4 data:string +@1222 = .data:0x802D0838; // type:object size:0xD scope:local align:4 data:string +@1223 = .data:0x802D0848; // type:object size:0xE scope:local align:4 data:string +@1225 = .data:0x802D0858; // type:object size:0xE scope:local align:4 data:string +@1226 = .data:0x802D0868; // type:object size:0xE scope:local align:4 data:string +@1227 = .data:0x802D0878; // type:object size:0x11 scope:local align:4 data:string +@1228 = .data:0x802D088C; // type:object size:0x11 scope:local align:4 data:string +@1229 = .data:0x802D08A0; // type:object size:0xD scope:local align:4 data:string +@1230 = .data:0x802D08B0; // type:object size:0x11 scope:local align:4 data:string +@1231 = .data:0x802D08C4; // type:object size:0xD scope:local align:4 data:string +@1232 = .data:0x802D08D4; // type:object size:0x13 scope:local align:4 data:string +@1233 = .data:0x802D08E8; // type:object size:0x11 scope:local align:4 data:string +@1234 = .data:0x802D08FC; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D0914; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D092C; // type:object size:0x12 scope:local align:4 data:string +@1239 = .data:0x802D0940; // type:object size:0xC scope:local align:4 data:string +@1240 = .data:0x802D094C; // type:object size:0xD scope:local align:4 data:string +@1242 = .data:0x802D095C; // type:object size:0xC scope:local align:4 data:string +@1243 = .data:0x802D0968; // type:object size:0xE scope:local align:4 data:string +@1244 = .data:0x802D0978; // type:object size:0xF scope:local align:4 data:string +@1245 = .data:0x802D0988; // type:object size:0xD scope:local align:4 data:string +@1246 = .data:0x802D0998; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802D09A8; // type:object size:0xC scope:local align:4 data:string +@1248 = .data:0x802D09B4; // type:object size:0xE scope:local align:4 data:string +@1249 = .data:0x802D09C4; // type:object size:0xC scope:local align:4 data:string +@1250 = .data:0x802D09D0; // type:object size:0xF scope:local align:4 data:string +@1251 = .data:0x802D09E0; // type:object size:0xE scope:local align:4 data:string +@1252 = .data:0x802D09F0; // type:object size:0x15 scope:local align:4 data:string +@1253 = .data:0x802D0A08; // type:object size:0x18 scope:local align:4 data:string +@1255 = .data:0x802D0A20; // type:object size:0x12 scope:local align:4 data:string +@1256 = .data:0x802D0A34; // type:object size:0x12 scope:local align:4 data:string +@1257 = .data:0x802D0A48; // type:object size:0x12 scope:local align:4 data:string +@1258 = .data:0x802D0A5C; // type:object size:0x13 scope:local align:4 data:string +@1259 = .data:0x802D0A70; // type:object size:0x13 scope:local align:4 data:string +@1260 = .data:0x802D0A84; // type:object size:0x12 scope:local align:4 data:string +@1261 = .data:0x802D0A98; // type:object size:0xC scope:local align:4 data:string +@1263 = .data:0x802D0AA4; // type:object size:0x21 scope:local align:4 data:string +@1264 = .data:0x802D0AC8; // type:object size:0x1F scope:local align:4 data:string +@1265 = .data:0x802D0AE8; // type:object size:0x1B scope:local align:4 data:string +@1266 = .data:0x802D0B04; // type:object size:0x19 scope:local align:4 data:string +@1267 = .data:0x802D0B20; // type:object size:0x11 scope:local align:4 data:string +@1268 = .data:0x802D0B34; // type:object size:0x11 scope:local align:4 data:string +@1270 = .data:0x802D0B48; // type:object size:0xC scope:local align:4 data:string +@1271 = .data:0x802D0B54; // type:object size:0x11 scope:local align:4 data:string +@1272 = .data:0x802D0B68; // type:object size:0x11 scope:local align:4 data:string +@1273 = .data:0x802D0B7C; // type:object size:0x11 scope:local align:4 data:string +@1274 = .data:0x802D0B90; // type:object size:0x11 scope:local align:4 data:string +@1411 = .data:0x802D0BA4; // type:object size:0xF scope:local align:4 data:string +@1414 = .data:0x802D0BB4; // type:object size:0x9 scope:local align:4 data:string +@1415 = .data:0x802D0BC0; // type:object size:0xC scope:local align:4 +@1417 = .data:0x802D0BCC; // type:object size:0x14 scope:local align:4 +@1412 = .data:0x802D0BE0; // type:object size:0x1C scope:local align:4 +__vt__14TekiParameters = .data:0x802D0BFC; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D0C48; // type:label scope:local +@991 = .data:0x802D0C48; // type:object size:0x14 scope:local align:4 data:string +@1001 = .data:0x802D0C5C; // type:object size:0x10 scope:local align:4 data:string +@1043 = .data:0x802D0C6C; // type:object size:0x11 scope:local align:4 data:string +@1044 = .data:0x802D0C80; // type:object size:0x11 scope:local align:4 data:string +@1045 = .data:0x802D0C94; // type:object size:0x10 scope:local align:4 data:string +@1046 = .data:0x802D0CA4; // type:object size:0x10 scope:local align:4 data:string +@1047 = .data:0x802D0CB4; // type:object size:0xC scope:local align:4 data:string +@1051 = .data:0x802D0CC0; // type:object size:0x9 scope:local align:4 data:string +@1053 = .data:0x802D0CCC; // type:object size:0x10 scope:local align:4 data:string +@1055 = .data:0x802D0CDC; // type:object size:0x1E scope:local align:4 data:string +@1057 = .data:0x802D0CFC; // type:object size:0x1D scope:local align:4 data:string +@1200 = .data:0x802D0D1C; // type:object size:0x10 scope:local align:4 data:string +__vt__15TekiPersonality = .data:0x802D0D2C; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D0D40; // type:label scope:local +@1106 = .data:0x802D0D40; // type:object size:0x11 scope:local align:4 data:string +@1116 = .data:0x802D0D54; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802D0D64; // type:object size:0xD scope:local align:4 data:string +__vt__12TekiStrategy = .data:0x802D0D74; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802D0DA0; // type:label scope:local +@1022 = .data:0x802D0DA0; // type:object size:0xC scope:local align:4 data:string +@1039 = .data:0x802D0DAC; // type:object size:0xC scope:local align:4 data:string +@1040 = .data:0x802D0DB8; // type:object size:0xB scope:local align:4 +@1048 = .data:0x802D0DC4; // type:object size:0xB scope:local align:4 +@1126 = .data:0x802D0DD0; // type:object size:0xE scope:local align:4 data:string +@1128 = .data:0x802D0DE0; // type:object size:0xB scope:local align:4 data:string +@1130 = .data:0x802D0DEC; // type:object size:0xC scope:local align:4 +@1131 = .data:0x802D0DF8; // type:object size:0xA scope:local align:4 data:string +@1132 = .data:0x802D0E04; // type:object size:0x14 scope:local align:4 +@1127 = .data:0x802D0E18; // type:object size:0x1C scope:local align:4 +__vt__13GenObjectBoss = .data:0x802D0E34; // type:object size:0x38 scope:global align:4 +...data.0 = .data:0x802D0E70; // type:label scope:local +@1543 = .data:0x802D0E70; // type:object size:0x9 scope:local align:4 data:string +@2512 = .data:0x802D0E7C; // type:object size:0x20 scope:local align:4 +@2519 = .data:0x802D0E9C; // type:object size:0xC scope:local align:4 data:string +@2520 = .data:0x802D0EA8; // type:object size:0xD scope:local align:4 data:string +@2521 = .data:0x802D0EB8; // type:object size:0x9 scope:local align:4 data:string +@2522 = .data:0x802D0EC4; // type:object size:0x14 scope:local align:4 +@2518 = .data:0x802D0ED8; // type:object size:0x1C scope:local align:4 +__vt__4Boss = .data:0x802D0EF4; // type:object size:0x124 scope:global align:4 +@2580 = .data:0x802D1018; // type:object size:0xA scope:local align:4 data:string +@2581 = .data:0x802D1030; // type:object size:0xC scope:local align:4 data:string +@2589 = .data:0x802D1068; // type:object size:0xA scope:local align:4 data:string +@2591 = .data:0x802D1074; // type:object size:0x9 scope:local align:4 data:string +@2590 = .data:0x802D1080; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802D10A0; // type:object size:0x9 scope:local align:4 data:string +@2594 = .data:0x802D10AC; // type:object size:0xD scope:local align:4 data:string +@2593 = .data:0x802D10BC; // type:object size:0xC scope:local align:4 +__vt__8BossProp = .data:0x802D10C8; // type:object size:0xC scope:weak align:4 +@2597 = .data:0x802D10D4; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802D10E0; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802D1110; // type:label scope:local +@388 = .data:0x802D1110; // type:object size:0x10 scope:local align:4 data:string +@398 = .data:0x802D1120; // type:object size:0xC scope:local align:4 data:string +@405 = .data:0x802D112C; // type:object size:0x15 scope:local align:4 data:string +@408 = .data:0x802D1144; // type:object size:0x9 scope:local align:4 data:string +@409 = .data:0x802D1150; // type:object size:0xC scope:local align:4 +@411 = .data:0x802D115C; // type:object size:0x14 scope:local align:4 +@406 = .data:0x802D1170; // type:object size:0x1C scope:local align:4 +__vt__20BossAnimationManager = .data:0x802D118C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802D11D8; // type:label scope:local +@856 = .data:0x802D11D8; // type:object size:0xC scope:local align:4 data:string +@924 = .data:0x802D11E4; // type:object size:0x10 scope:local align:4 data:string +@926 = .data:0x802D11F4; // type:object size:0xA scope:local align:4 data:string +@925 = .data:0x802D1200; // type:object size:0xC scope:local align:4 +__vt__15CndBossCollKill = .data:0x802D120C; // type:object size:0xC scope:global align:4 +@927 = .data:0x802D1218; // type:object size:0x12 scope:local align:4 data:string +@928 = .data:0x802D122C; // type:object size:0xC scope:local align:4 +__vt__17CndStickMouthKill = .data:0x802D1238; // type:object size:0xC scope:global align:4 +@929 = .data:0x802D1244; // type:object size:0x11 scope:local align:4 data:string +@930 = .data:0x802D1258; // type:object size:0xC scope:local align:4 +__vt__16CndStickBossKill = .data:0x802D1264; // type:object size:0xC scope:global align:4 +@931 = .data:0x802D1270; // type:object size:0xD scope:local align:4 data:string +@932 = .data:0x802D1280; // type:object size:0xC scope:local align:4 +__vt__12CndBossFlick = .data:0x802D128C; // type:object size:0xC scope:global align:4 +@933 = .data:0x802D1298; // type:object size:0xB scope:local align:4 data:string +@934 = .data:0x802D12A4; // type:object size:0xC scope:local align:4 +__vt__10CndIsAlive = .data:0x802D12B0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D12C0; // type:label scope:local +@1828 = .data:0x802D12C0; // type:object size:0xC scope:local align:4 data:string +@1932 = .data:0x802D12CC; // type:object size:0x9 scope:local align:4 data:string +@2048 = .data:0x802D12D8; // type:object size:0xD scope:local align:4 data:string +@2049 = .data:0x802D12E8; // type:object size:0x15 scope:local align:4 data:string +@2050 = .data:0x802D1300; // type:object size:0xC scope:local align:4 data:string +@2052 = .data:0x802D130C; // type:object size:0xC scope:local align:4 data:string +@2053 = .data:0x802D1318; // type:object size:0xD scope:local align:4 data:string +@2054 = .data:0x802D1328; // type:object size:0xA scope:local align:4 data:string +@2055 = .data:0x802D1334; // type:object size:0xC scope:local align:4 data:string +@2056 = .data:0x802D1340; // type:object size:0x17 scope:local align:4 data:string +@2057 = .data:0x802D1358; // type:object size:0xB scope:local align:4 data:string +@2059 = .data:0x802D1364; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802D1370; // type:object size:0xE scope:local align:4 data:string +@2061 = .data:0x802D1380; // type:object size:0xC scope:local align:4 data:string +@2062 = .data:0x802D138C; // type:object size:0x17 scope:local align:4 data:string +@2063 = .data:0x802D13A4; // type:object size:0xB scope:local align:4 data:string +@2065 = .data:0x802D13B0; // type:object size:0xB scope:local align:4 data:string +@2066 = .data:0x802D13BC; // type:object size:0xE scope:local align:4 data:string +@2067 = .data:0x802D13CC; // type:object size:0xE scope:local align:4 data:string +@2068 = .data:0x802D13DC; // type:object size:0x1B scope:local align:4 data:string +@2069 = .data:0x802D13F8; // type:object size:0xD scope:local align:4 data:string +@2071 = .data:0x802D1408; // type:object size:0xD scope:local align:4 data:string +@2072 = .data:0x802D1418; // type:object size:0x10 scope:local align:4 data:string +@2073 = .data:0x802D1428; // type:object size:0x13 scope:local align:4 data:string +@2074 = .data:0x802D143C; // type:object size:0x15 scope:local align:4 data:string +@2075 = .data:0x802D1454; // type:object size:0x12 scope:local align:4 data:string +@2077 = .data:0x802D1468; // type:object size:0x12 scope:local align:4 data:string +@2078 = .data:0x802D147C; // type:object size:0xD scope:local align:4 data:string +@2079 = .data:0x802D148C; // type:object size:0xB scope:local align:4 data:string +@2080 = .data:0x802D1498; // type:object size:0x15 scope:local align:4 data:string +@2081 = .data:0x802D14B0; // type:object size:0xA scope:local align:4 data:string +@2083 = .data:0x802D14BC; // type:object size:0xA scope:local align:4 data:string +@2084 = .data:0x802D14C8; // type:object size:0xD scope:local align:4 data:string +@2085 = .data:0x802D14D8; // type:object size:0xD scope:local align:4 data:string +@2086 = .data:0x802D14E8; // type:object size:0x19 scope:local align:4 data:string +@2087 = .data:0x802D1504; // type:object size:0xC scope:local align:4 data:string +@2089 = .data:0x802D1510; // type:object size:0xC scope:local align:4 data:string +@2090 = .data:0x802D151C; // type:object size:0xF scope:local align:4 data:string +@2091 = .data:0x802D152C; // type:object size:0xA scope:local align:4 data:string +@2092 = .data:0x802D1538; // type:object size:0x13 scope:local align:4 data:string +@2093 = .data:0x802D154C; // type:object size:0x9 scope:local align:4 data:string +@2095 = .data:0x802D1558; // type:object size:0x9 scope:local align:4 data:string +@2096 = .data:0x802D1564; // type:object size:0xC scope:local align:4 data:string +@2097 = .data:0x802D1570; // type:object size:0x10 scope:local align:4 data:string +@2098 = .data:0x802D1580; // type:object size:0x1D scope:local align:4 data:string +@2099 = .data:0x802D15A0; // type:object size:0xF scope:local align:4 data:string +@2100 = .data:0x802D15B0; // type:object size:0x9 scope:local align:4 data:string +@2101 = .data:0x802D15BC; // type:object size:0xF scope:local align:4 data:string +@2102 = .data:0x802D15CC; // type:object size:0x11 scope:local align:4 data:string +@2103 = .data:0x802D15E0; // type:object size:0xB scope:local align:4 data:string +@2104 = .data:0x802D15EC; // type:object size:0x15 scope:local align:4 data:string +@2105 = .data:0x802D1604; // type:object size:0xA scope:local align:4 data:string +@2107 = .data:0x802D1610; // type:object size:0xA scope:local align:4 data:string +@2108 = .data:0x802D161C; // type:object size:0xD scope:local align:4 data:string +@2486 = .data:0x802D162C; // type:object size:0x30 scope:local align:4 +@2759 = .data:0x802D165C; // type:object size:0x28 scope:local align:4 +@2887 = .data:0x802D1684; // type:object size:0x9 scope:local align:4 data:string +@2890 = .data:0x802D1690; // type:object size:0xC scope:local align:4 +@2888 = .data:0x802D169C; // type:object size:0x14 scope:local align:4 +__vt__8BossNode = .data:0x802D16B0; // type:object size:0x10 scope:weak align:4 +@2893 = .data:0x802D16DC; // type:object size:0xC scope:local align:4 data:string +@2896 = .data:0x802D1700; // type:object size:0x14 scope:local align:4 +@2897 = .data:0x802D1714; // type:object size:0xA scope:local align:4 data:string +@2898 = .data:0x802D1720; // type:object size:0x24 scope:local align:4 +@2894 = .data:0x802D1744; // type:object size:0x2C scope:local align:4 +__vt__7BossMgr = .data:0x802D1770; // type:object size:0x78 scope:global align:4 +@738 = .data:0x802D17E8; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802D1800; // type:label scope:local +@1113 = .data:0x802D1800; // type:object size:0xB scope:local align:4 data:string +@1453 = .data:0x802D180C; // type:object size:0x9 scope:local align:4 data:string +@1698 = .data:0x802D1818; // type:object size:0xD scope:local align:4 data:string +@1701 = .data:0x802D1828; // type:object size:0xC scope:local align:4 +@1703 = .data:0x802D1834; // type:object size:0x14 scope:local align:4 +@1699 = .data:0x802D1848; // type:object size:0x1C scope:local align:4 +__vt__12SpiderDrawer = .data:0x802D1864; // type:object size:0x30 scope:global align:4 +@1712 = .data:0x802D1894; // type:object size:0xC scope:local align:4 data:string +@1713 = .data:0x802D18A0; // type:object size:0xD scope:local align:4 data:string +@1714 = .data:0x802D18B0; // type:object size:0x9 scope:local align:4 data:string +@1715 = .data:0x802D18BC; // type:object size:0x14 scope:local align:4 +@1717 = .data:0x802D18D0; // type:object size:0x1C scope:local align:4 +@1711 = .data:0x802D18EC; // type:object size:0x24 scope:local align:4 +__vt__6Spider = .data:0x802D1910; // type:object size:0x124 scope:global align:4 +@1770 = .data:0x802D1A34; // type:object size:0xA scope:local align:4 data:string +@1772 = .data:0x802D1A40; // type:object size:0x9 scope:local align:4 data:string +@1771 = .data:0x802D1A4C; // type:object size:0xC scope:local align:4 +@1773 = .data:0x802D1A6C; // type:object size:0xC scope:local align:4 data:string +@1774 = .data:0x802D1A78; // type:object size:0xC scope:local align:4 +@1775 = .data:0x802D1A98; // type:object size:0xB scope:local align:4 data:string +@1777 = .data:0x802D1AA4; // type:object size:0xD scope:local align:4 data:string +@1778 = .data:0x802D1AB4; // type:object size:0x9 scope:local align:4 data:string +@1779 = .data:0x802D1AC0; // type:object size:0xC scope:local align:4 +@1776 = .data:0x802D1ACC; // type:object size:0x24 scope:local align:4 +__vt__10SpiderProp = .data:0x802D1AF0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D1B28; // type:label scope:local +spiderSE = .data:0x802D1B28; // type:object size:0x14 scope:local align:4 +@1711 = .data:0x802D1B3C; // type:object size:0xD scope:local align:4 data:string +@1721 = .data:0x802D1B4C; // type:object size:0x9 scope:local align:4 data:string +@3168 = .data:0x802D1B58; // type:object size:0x24 scope:local align:4 +@3173 = .data:0x802D1B7C; // type:object size:0x14 scope:local align:4 data:string +@3172 = .data:0x802D1B90; // type:object size:0xC scope:local align:4 +__vt__8SpiderAi = .data:0x802D1B9C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D1BB8; // type:label scope:local +leg_index__4Kumo = .data:0x802D1BB8; // type:object size:0x30 scope:local align:4 +legId__4Kumo = .data:0x802D1BE8; // type:object size:0x24 scope:local align:4 data:4byte +@1742 = .data:0x802D1C0C; // type:object size:0xE scope:local align:4 data:string +@1752 = .data:0x802D1C1C; // type:object size:0xA scope:local align:4 data:string +@4171 = .data:0x802D1C28; // type:object size:0xC scope:local align:4 data:string +@4181 = .data:0x802D1C60; // type:object size:0x1F scope:local align:4 data:string +@4183 = .data:0x802D1C80; // type:object size:0x29 scope:local align:4 data:string +@4182 = .data:0x802D1CAC; // type:object size:0xC scope:local align:4 +__vt__30SpiderGenHalfDeadCallBackJoint = .data:0x802D1CB8; // type:object size:0xC scope:weak align:4 +@4192 = .data:0x802D1CC4; // type:object size:0x18 scope:local align:4 data:string +@4193 = .data:0x802D1CDC; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenPerishCallBack = .data:0x802D1CE8; // type:object size:0xC scope:weak align:4 +@4238 = .data:0x802D1CF4; // type:object size:0x18 scope:local align:4 data:string +@4239 = .data:0x802D1D0C; // type:object size:0xC scope:local align:4 +__vt__23SpiderGenRippleCallBack = .data:0x802D1D18; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D1D30; // type:label scope:local +@1109 = .data:0x802D1D30; // type:object size:0xA scope:local align:4 data:string +@1419 = .data:0x802D1D3C; // type:object size:0x9 scope:local align:4 data:string +@1542 = .data:0x802D1D48; // type:object size:0xC scope:local align:4 data:string +@1543 = .data:0x802D1D54; // type:object size:0xD scope:local align:4 data:string +@1544 = .data:0x802D1D64; // type:object size:0x9 scope:local align:4 data:string +@1545 = .data:0x802D1D70; // type:object size:0x14 scope:local align:4 +@1547 = .data:0x802D1D84; // type:object size:0x1C scope:local align:4 +@1541 = .data:0x802D1DA0; // type:object size:0x24 scope:local align:4 +__vt__5Snake = .data:0x802D1DC4; // type:object size:0x124 scope:global align:4 +@1600 = .data:0x802D1EE8; // type:object size:0x1A scope:local align:4 data:string +@1602 = .data:0x802D1F04; // type:object size:0x10 scope:local align:4 data:string +@1601 = .data:0x802D1F14; // type:object size:0xC scope:local align:4 +__vt__Q25Snake18BoundSphereUpdater = .data:0x802D1F20; // type:object size:0x10 scope:weak align:4 +__vt__15CollPartUpdater = .data:0x802D1F30; // type:object size:0x10 scope:weak align:4 +@1636 = .data:0x802D1F40; // type:object size:0xA scope:local align:4 data:string +@1638 = .data:0x802D1F4C; // type:object size:0x9 scope:local align:4 data:string +@1637 = .data:0x802D1F58; // type:object size:0xC scope:local align:4 +@1639 = .data:0x802D1F78; // type:object size:0xC scope:local align:4 data:string +@1640 = .data:0x802D1F84; // type:object size:0xC scope:local align:4 +@1641 = .data:0x802D1FA4; // type:object size:0xA scope:local align:4 data:string +@1644 = .data:0x802D1FB0; // type:object size:0xC scope:local align:4 +@1645 = .data:0x802D1FBC; // type:object size:0xD scope:local align:4 data:string +@1646 = .data:0x802D1FCC; // type:object size:0x9 scope:local align:4 data:string +@1647 = .data:0x802D1FD8; // type:object size:0xC scope:local align:4 +@1642 = .data:0x802D1FE4; // type:object size:0x24 scope:local align:4 +__vt__9SnakeProp = .data:0x802D2008; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D2040; // type:label scope:local +snakeSE = .data:0x802D2040; // type:object size:0x24 scope:local align:4 +@1769 = .data:0x802D2064; // type:object size:0xC scope:local align:4 data:string +@4422 = .data:0x802D2070; // type:object size:0x28 scope:local align:4 +@4423 = .data:0x802D2098; // type:object size:0xC scope:local align:4 data:string +@4434 = .data:0x802D20D0; // type:object size:0x14 scope:local align:4 data:string +@4433 = .data:0x802D20E4; // type:object size:0xC scope:local align:4 +__vt__7SnakeAi = .data:0x802D20F0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D2108; // type:label scope:local +@1221 = .data:0x802D2108; // type:object size:0xE scope:local align:4 data:string +@1231 = .data:0x802D2118; // type:object size:0xA scope:local align:4 data:string +@2596 = .data:0x802D2124; // type:object size:0x1B scope:local align:4 data:string +@2598 = .data:0x802D2140; // type:object size:0x29 scope:local align:4 data:string +@2597 = .data:0x802D216C; // type:object size:0xC scope:local align:4 +__vt__26SnakeGenBodyRotateCallBack = .data:0x802D2178; // type:object size:0xC scope:weak align:4 +@2612 = .data:0x802D2184; // type:object size:0x1D scope:local align:4 data:string +@2613 = .data:0x802D21A4; // type:object size:0xC scope:local align:4 +__vt__28SnakeGenBodyOnGroundCallBack = .data:0x802D21B0; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D21C8; // type:label scope:local +@1171 = .data:0x802D21C8; // type:object size:0xA scope:local align:4 data:string +@1361 = .data:0x802D21D4; // type:object size:0x9 scope:local align:4 data:string +@1559 = .data:0x802D21E0; // type:object size:0xC scope:local align:4 data:string +@1570 = .data:0x802D2218; // type:object size:0xC scope:local align:4 data:string +@1571 = .data:0x802D2224; // type:object size:0xD scope:local align:4 data:string +@1572 = .data:0x802D2234; // type:object size:0x9 scope:local align:4 data:string +@1573 = .data:0x802D2240; // type:object size:0x14 scope:local align:4 +@1575 = .data:0x802D2254; // type:object size:0x1C scope:local align:4 +@1569 = .data:0x802D2270; // type:object size:0x24 scope:local align:4 +__vt__5Slime = .data:0x802D2294; // type:object size:0x124 scope:global align:4 +@1627 = .data:0x802D23B8; // type:object size:0x1C scope:local align:4 data:string +@1629 = .data:0x802D23D4; // type:object size:0x10 scope:local align:4 data:string +@1628 = .data:0x802D23E4; // type:object size:0xC scope:local align:4 +__vt__Q25Slime20CollideSphereUpdater = .data:0x802D23F0; // type:object size:0x10 scope:weak align:4 +@1747 = .data:0x802D2400; // type:object size:0x19 scope:local align:4 data:string +@1748 = .data:0x802D241C; // type:object size:0xC scope:local align:4 +__vt__Q25Slime17TubeSphereUpdater = .data:0x802D2428; // type:object size:0x10 scope:weak align:4 +@1754 = .data:0x802D2438; // type:object size:0x1A scope:local align:4 data:string +@1755 = .data:0x802D2454; // type:object size:0xC scope:local align:4 +__vt__Q25Slime18BoundSphereUpdater = .data:0x802D2460; // type:object size:0x10 scope:weak align:4 +@1787 = .data:0x802D2480; // type:object size:0xA scope:local align:4 data:string +@1789 = .data:0x802D248C; // type:object size:0x9 scope:local align:4 data:string +@1788 = .data:0x802D2498; // type:object size:0xC scope:local align:4 +@1790 = .data:0x802D24B8; // type:object size:0xC scope:local align:4 data:string +@1791 = .data:0x802D24C4; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D24E4; // type:object size:0xA scope:local align:4 data:string +@1795 = .data:0x802D24F0; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D24FC; // type:object size:0xD scope:local align:4 data:string +@1797 = .data:0x802D250C; // type:object size:0x9 scope:local align:4 data:string +@1798 = .data:0x802D2518; // type:object size:0xC scope:local align:4 +@1793 = .data:0x802D2524; // type:object size:0x24 scope:local align:4 +__vt__9SlimeProp = .data:0x802D2548; // type:object size:0x1C scope:weak align:4 +@6098 = .data:0x802D2580; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802D25A8; // type:label scope:local +@979 = .data:0x802D25A8; // type:object size:0x12 scope:local align:4 data:string +@989 = .data:0x802D25BC; // type:object size:0xE scope:local align:4 data:string +@1021 = .data:0x802D25CC; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D25D8; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D25E8; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D25F4; // type:object size:0x14 scope:local align:4 +@1020 = .data:0x802D2608; // type:object size:0x1C scope:local align:4 +__vt__13SlimeCreature = .data:0x802D2624; // type:object size:0x114 scope:global align:4 +...data.0 = .data:0x802D2738; // type:label scope:local +@1080 = .data:0x802D2738; // type:object size:0x9 scope:local align:4 data:string +@1354 = .data:0x802D2744; // type:object size:0x9 scope:local align:4 data:string +@1519 = .data:0x802D2750; // type:object size:0xB scope:local align:4 data:string +@1522 = .data:0x802D275C; // type:object size:0xC scope:local align:4 +@1524 = .data:0x802D2768; // type:object size:0x14 scope:local align:4 +@1520 = .data:0x802D277C; // type:object size:0x1C scope:local align:4 +__vt__10KingDrawer = .data:0x802D2798; // type:object size:0x30 scope:global align:4 +@1533 = .data:0x802D27C8; // type:object size:0xC scope:local align:4 data:string +@1534 = .data:0x802D27D4; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802D27E4; // type:object size:0x9 scope:local align:4 data:string +@1536 = .data:0x802D27F0; // type:object size:0x14 scope:local align:4 +@1538 = .data:0x802D2804; // type:object size:0x1C scope:local align:4 +@1532 = .data:0x802D2820; // type:object size:0x24 scope:local align:4 +__vt__4King = .data:0x802D2844; // type:object size:0x124 scope:global align:4 +@1592 = .data:0x802D2968; // type:object size:0xA scope:local align:4 data:string +@1594 = .data:0x802D2974; // type:object size:0x9 scope:local align:4 data:string +@1593 = .data:0x802D2980; // type:object size:0xC scope:local align:4 +@1595 = .data:0x802D29A0; // type:object size:0xC scope:local align:4 data:string +@1596 = .data:0x802D29AC; // type:object size:0xC scope:local align:4 +@1597 = .data:0x802D29CC; // type:object size:0x9 scope:local align:4 data:string +@1599 = .data:0x802D29D8; // type:object size:0xD scope:local align:4 data:string +@1600 = .data:0x802D29E8; // type:object size:0x9 scope:local align:4 data:string +@1601 = .data:0x802D29F4; // type:object size:0xC scope:local align:4 +@1598 = .data:0x802D2A00; // type:object size:0x24 scope:local align:4 +__vt__8KingProp = .data:0x802D2A24; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D2A60; // type:label scope:local +kingSE = .data:0x802D2A60; // type:object size:0x38 scope:local align:4 +@1721 = .data:0x802D2A98; // type:object size:0xB scope:local align:4 data:string +@1761 = .data:0x802D2AA4; // type:object size:0x24 scope:local align:4 +@1783 = .data:0x802D2AC8; // type:object size:0x40 scope:local align:4 +@6169 = .data:0x802D2B08; // type:object size:0x44 scope:local align:4 +@6170 = .data:0x802D2B4C; // type:object size:0xC scope:local align:4 data:string +@6181 = .data:0x802D2B84; // type:object size:0x14 scope:local align:4 data:string +@6180 = .data:0x802D2B98; // type:object size:0xC scope:local align:4 +__vt__6KingAi = .data:0x802D2BA4; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D2BC0; // type:label scope:local +@1229 = .data:0x802D2BC0; // type:object size:0xD scope:local align:4 data:string +@1239 = .data:0x802D2BD0; // type:object size:0x9 scope:local align:4 data:string +@2053 = .data:0x802D2BDC; // type:object size:0x16 scope:local align:4 data:string +@2055 = .data:0x802D2BF4; // type:object size:0x29 scope:local align:4 data:string +@2054 = .data:0x802D2C20; // type:object size:0xC scope:local align:4 +__vt__21KingGenSalivaCallBack = .data:0x802D2C2C; // type:object size:0xC scope:weak align:4 +@2105 = .data:0x802D2C38; // type:object size:0x16 scope:local align:4 data:string +@2106 = .data:0x802D2C50; // type:object size:0xC scope:local align:4 +__vt__21KingGenRippleCallBack = .data:0x802D2C5C; // type:object size:0xC scope:weak align:4 +@2116 = .data:0x802D2C68; // type:object size:0x21 scope:local align:4 data:string +@2118 = .data:0x802D2C8C; // type:object size:0x3D scope:local align:4 data:string +@2117 = .data:0x802D2CCC; // type:object size:0xC scope:local align:4 +__vt__32KingGenSpitPartsParticleCallBack = .data:0x802D2CD8; // type:object size:0xC scope:weak align:4 +@2148 = .data:0x802D2CE4; // type:object size:0x1A scope:local align:4 data:string +@2149 = .data:0x802D2D00; // type:object size:0xC scope:local align:4 +__vt__25KingGenDamageStarCallBack = .data:0x802D2D0C; // type:object size:0xC scope:weak align:4 +@2160 = .data:0x802D2D18; // type:object size:0x1E scope:local align:4 data:string +@2161 = .data:0x802D2D38; // type:object size:0xC scope:local align:4 +__vt__29KingGenSalivaParticleCallBack = .data:0x802D2D44; // type:object size:0xC scope:weak align:4 +@2191 = .data:0x802D2D5C; // type:object size:0x1C scope:local align:4 data:string +@2192 = .data:0x802D2D78; // type:object size:0xC scope:local align:4 +__vt__27KingGenSpreadSalivaCallBack = .data:0x802D2D84; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D2DA0; // type:label scope:local +@1251 = .data:0x802D2DA0; // type:object size:0xB scope:local align:4 data:string +@1363 = .data:0x802D2DAC; // type:object size:0x9 scope:local align:4 data:string +@1430 = .data:0x802D2DB8; // type:object size:0xC scope:local align:4 data:string +@1431 = .data:0x802D2DC4; // type:object size:0xD scope:local align:4 data:string +@1432 = .data:0x802D2DD4; // type:object size:0x9 scope:local align:4 data:string +@1433 = .data:0x802D2DE0; // type:object size:0x14 scope:local align:4 +@1435 = .data:0x802D2DF4; // type:object size:0x1C scope:local align:4 +@1429 = .data:0x802D2E10; // type:object size:0x24 scope:local align:4 +__vt__6Kogane = .data:0x802D2E34; // type:object size:0x124 scope:global align:4 +@1488 = .data:0x802D2F58; // type:object size:0xC scope:local align:4 data:string +@1490 = .data:0x802D2F64; // type:object size:0x9 scope:local align:4 data:string +@1489 = .data:0x802D2F70; // type:object size:0xC scope:local align:4 +@1491 = .data:0x802D2F90; // type:object size:0xB scope:local align:4 data:string +@1494 = .data:0x802D2F9C; // type:object size:0xC scope:local align:4 +@1495 = .data:0x802D2FA8; // type:object size:0xD scope:local align:4 data:string +@1496 = .data:0x802D2FB8; // type:object size:0x9 scope:local align:4 data:string +@1497 = .data:0x802D2FC4; // type:object size:0xC scope:local align:4 +@1492 = .data:0x802D2FD0; // type:object size:0x24 scope:local align:4 +__vt__10KoganeProp = .data:0x802D2FF4; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D3030; // type:label scope:local +@1603 = .data:0x802D3030; // type:object size:0xD scope:local align:4 data:string +@1613 = .data:0x802D3040; // type:object size:0x9 scope:local align:4 data:string +@1785 = .data:0x802D304C; // type:object size:0x1C scope:local align:4 +@3037 = .data:0x802D3068; // type:object size:0x14 scope:local align:4 data:string +@3036 = .data:0x802D307C; // type:object size:0xC scope:local align:4 +__vt__8KoganeAi = .data:0x802D3088; // type:object size:0xC scope:global align:4 +@3038 = .data:0x802D3094; // type:object size:0x18 scope:local align:4 data:string +@3040 = .data:0x802D30AC; // type:object size:0x29 scope:local align:4 data:string +@3039 = .data:0x802D30D8; // type:object size:0xC scope:local align:4 +__vt__23KoganeGenRippleCallBack = .data:0x802D30E4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D3108; // type:label scope:local +@995 = .data:0x802D3108; // type:object size:0x9 scope:local align:4 data:string +@1072 = .data:0x802D3114; // type:object size:0xC scope:local align:4 data:string +@1073 = .data:0x802D3120; // type:object size:0xD scope:local align:4 data:string +@1074 = .data:0x802D3130; // type:object size:0x9 scope:local align:4 data:string +@1075 = .data:0x802D313C; // type:object size:0x14 scope:local align:4 +@1077 = .data:0x802D3150; // type:object size:0x1C scope:local align:4 +@1071 = .data:0x802D316C; // type:object size:0x24 scope:local align:4 +__vt__3Pom = .data:0x802D3190; // type:object size:0x124 scope:global align:4 +@1129 = .data:0x802D32B4; // type:object size:0xA scope:local align:4 data:string +@1131 = .data:0x802D32C0; // type:object size:0x9 scope:local align:4 data:string +@1130 = .data:0x802D32CC; // type:object size:0xC scope:local align:4 +@1132 = .data:0x802D32EC; // type:object size:0xC scope:local align:4 data:string +@1133 = .data:0x802D32F8; // type:object size:0xC scope:local align:4 +@1137 = .data:0x802D3318; // type:object size:0xC scope:local align:4 +@1138 = .data:0x802D3324; // type:object size:0xD scope:local align:4 data:string +@1139 = .data:0x802D3334; // type:object size:0x9 scope:local align:4 data:string +@1140 = .data:0x802D3340; // type:object size:0xC scope:local align:4 +@1135 = .data:0x802D334C; // type:object size:0x24 scope:local align:4 +__vt__7PomProp = .data:0x802D3370; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D33A8; // type:label scope:local +pomSE = .data:0x802D33A8; // type:object size:0x18 scope:local align:4 data:4byte +@1614 = .data:0x802D33C0; // type:object size:0xA scope:local align:4 data:string +@2642 = .data:0x802D33CC; // type:object size:0xC scope:local align:4 data:string +@2653 = .data:0x802D3404; // type:object size:0x14 scope:local align:4 data:string +@2652 = .data:0x802D3418; // type:object size:0xC scope:local align:4 +__vt__5PomAi = .data:0x802D3424; // type:object size:0xC scope:global align:4 +@2654 = .data:0x802D3430; // type:object size:0x17 scope:local align:4 data:string +@2656 = .data:0x802D3448; // type:object size:0x29 scope:local align:4 data:string +@2655 = .data:0x802D3474; // type:object size:0xC scope:local align:4 +__vt__22PomGenOpenStarCallBack = .data:0x802D3480; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D34A8; // type:label scope:local +@910 = .data:0x802D34A8; // type:object size:0xD scope:local align:4 data:string +@920 = .data:0x802D34B8; // type:object size:0x9 scope:local align:4 data:string +@932 = .data:0x802D34C4; // type:object size:0x9 scope:local align:4 data:string +@959 = .data:0x802D34D0; // type:object size:0xC scope:local align:4 data:string +@960 = .data:0x802D34DC; // type:object size:0xD scope:local align:4 data:string +@961 = .data:0x802D34EC; // type:object size:0x9 scope:local align:4 data:string +@962 = .data:0x802D34F8; // type:object size:0x14 scope:local align:4 +@964 = .data:0x802D350C; // type:object size:0x1C scope:local align:4 +@958 = .data:0x802D3528; // type:object size:0x24 scope:local align:4 +__vt__8KingBack = .data:0x802D354C; // type:object size:0x124 scope:global align:4 +@1019 = .data:0x802D3670; // type:object size:0xD scope:local align:4 data:string +@1022 = .data:0x802D3680; // type:object size:0xC scope:local align:4 +@1023 = .data:0x802D368C; // type:object size:0xD scope:local align:4 data:string +@1024 = .data:0x802D369C; // type:object size:0x9 scope:local align:4 data:string +@1025 = .data:0x802D36A8; // type:object size:0xC scope:local align:4 +@1020 = .data:0x802D36B4; // type:object size:0x24 scope:local align:4 +__vt__12KingBackProp = .data:0x802D36D8; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D3710; // type:label scope:local +@1053 = .data:0x802D3710; // type:object size:0xC scope:local align:4 data:string +@1075 = .data:0x802D371C; // type:object size:0x9 scope:local align:4 data:string +@1111 = .data:0x802D3728; // type:object size:0xC scope:local align:4 data:string +@1112 = .data:0x802D3734; // type:object size:0xD scope:local align:4 data:string +@1113 = .data:0x802D3744; // type:object size:0x9 scope:local align:4 data:string +@1114 = .data:0x802D3750; // type:object size:0x14 scope:local align:4 +@1116 = .data:0x802D3764; // type:object size:0x1C scope:local align:4 +@1110 = .data:0x802D3780; // type:object size:0x24 scope:local align:4 +__vt__7Nucleus = .data:0x802D37A4; // type:object size:0x124 scope:global align:4 +@1171 = .data:0x802D38C8; // type:object size:0xC scope:local align:4 data:string +@1174 = .data:0x802D38D4; // type:object size:0xC scope:local align:4 +@1175 = .data:0x802D38E0; // type:object size:0xD scope:local align:4 data:string +@1176 = .data:0x802D38F0; // type:object size:0x9 scope:local align:4 data:string +@1177 = .data:0x802D38FC; // type:object size:0xC scope:local align:4 +@1172 = .data:0x802D3908; // type:object size:0x24 scope:local align:4 +__vt__11NucleusProp = .data:0x802D392C; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D3968; // type:label scope:local +@1668 = .data:0x802D3968; // type:object size:0xE scope:local align:4 data:string +@1678 = .data:0x802D3978; // type:object size:0xA scope:local align:4 data:string +@1844 = .data:0x802D3984; // type:object size:0x14 scope:local align:4 data:string +@1843 = .data:0x802D3998; // type:object size:0xC scope:local align:4 +__vt__9NucleusAi = .data:0x802D39A4; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D39C0; // type:label scope:local +@1334 = .data:0x802D39C0; // type:object size:0x10 scope:local align:4 data:string +@1344 = .data:0x802D39D0; // type:object size:0xC scope:local align:4 data:string +@1356 = .data:0x802D39DC; // type:object size:0x9 scope:local align:4 data:string +@1399 = .data:0x802D39E8; // type:object size:0xC scope:local align:4 data:string +@1400 = .data:0x802D39F4; // type:object size:0xD scope:local align:4 data:string +@1401 = .data:0x802D3A04; // type:object size:0x9 scope:local align:4 data:string +@1402 = .data:0x802D3A10; // type:object size:0x14 scope:local align:4 +@1404 = .data:0x802D3A24; // type:object size:0x1C scope:local align:4 +@1398 = .data:0x802D3A40; // type:object size:0x24 scope:local align:4 +__vt__11CoreNucleus = .data:0x802D3A64; // type:object size:0x124 scope:global align:4 +@1458 = .data:0x802D3B88; // type:object size:0x10 scope:local align:4 data:string +@1461 = .data:0x802D3B98; // type:object size:0xC scope:local align:4 +@1462 = .data:0x802D3BA4; // type:object size:0xD scope:local align:4 data:string +@1463 = .data:0x802D3BB4; // type:object size:0x9 scope:local align:4 data:string +@1464 = .data:0x802D3BC0; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D3BCC; // type:object size:0x24 scope:local align:4 +__vt__15CoreNucleusProp = .data:0x802D3BF0; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D3C28; // type:label scope:local +@1668 = .data:0x802D3C28; // type:object size:0x12 scope:local align:4 data:string +@1678 = .data:0x802D3C3C; // type:object size:0xE scope:local align:4 data:string +@1919 = .data:0x802D3C4C; // type:object size:0x14 scope:local align:4 data:string +@1918 = .data:0x802D3C60; // type:object size:0xC scope:local align:4 +__vt__13CoreNucleusAi = .data:0x802D3C6C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802D3C88; // type:label scope:local +@964 = .data:0x802D3C88; // type:object size:0x9 scope:local align:4 data:string +@986 = .data:0x802D3C94; // type:object size:0x9 scope:local align:4 data:string +@1021 = .data:0x802D3CA0; // type:object size:0xC scope:local align:4 data:string +@1022 = .data:0x802D3CAC; // type:object size:0xD scope:local align:4 data:string +@1023 = .data:0x802D3CBC; // type:object size:0x9 scope:local align:4 data:string +@1024 = .data:0x802D3CC8; // type:object size:0x14 scope:local align:4 +@1026 = .data:0x802D3CDC; // type:object size:0x1C scope:local align:4 +@1020 = .data:0x802D3CF8; // type:object size:0x24 scope:local align:4 +__vt__4Mizu = .data:0x802D3D1C; // type:object size:0x124 scope:global align:4 +@1079 = .data:0x802D3E40; // type:object size:0x9 scope:local align:4 data:string +@1082 = .data:0x802D3E4C; // type:object size:0xC scope:local align:4 +@1083 = .data:0x802D3E58; // type:object size:0xD scope:local align:4 data:string +@1084 = .data:0x802D3E68; // type:object size:0x9 scope:local align:4 data:string +@1085 = .data:0x802D3E74; // type:object size:0xC scope:local align:4 +@1080 = .data:0x802D3E80; // type:object size:0x24 scope:local align:4 +__vt__8MizuProp = .data:0x802D3EA4; // type:object size:0x1C scope:weak align:4 +...data.0 = .data:0x802D3EE0; // type:label scope:local +@1288 = .data:0x802D3EE0; // type:object size:0xB scope:local align:4 data:string +@1730 = .data:0x802D3EEC; // type:object size:0xC scope:local align:4 data:string +@1741 = .data:0x802D3F24; // type:object size:0x14 scope:local align:4 data:string +@1740 = .data:0x802D3F38; // type:object size:0xC scope:local align:4 +__vt__6MizuAi = .data:0x802D3F44; // type:object size:0xC scope:global align:4 +@1742 = .data:0x802D3F50; // type:object size:0x1A scope:local align:4 data:string +@1744 = .data:0x802D3F6C; // type:object size:0x29 scope:local align:4 data:string +@1743 = .data:0x802D3F98; // type:object size:0xC scope:local align:4 +__vt__25MizuGenSpringPuffCallBack = .data:0x802D3FA4; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D3FC8; // type:label scope:local +patternTable = .data:0x802D3FC8; // type:object size:0x80 scope:global align:4 +rumbleFrame_00 = .data:0x802D4048; // type:object size:0x2C scope:local align:4 +rumblePower_00 = .data:0x802D4074; // type:object size:0x2C scope:local align:4 +rumbleFrame_01 = .data:0x802D40A0; // type:object size:0x60 scope:local align:4 +rumblePower_01 = .data:0x802D4100; // type:object size:0x60 scope:local align:4 +rumbleFrame_02 = .data:0x802D4160; // type:object size:0x14 scope:local align:4 +rumblePower_02 = .data:0x802D4174; // type:object size:0x14 scope:local align:4 +rumbleFrame_03 = .data:0x802D4188; // type:object size:0x70 scope:local align:4 +rumblePower_03 = .data:0x802D41F8; // type:object size:0x70 scope:local align:4 +rumbleFrame_04 = .data:0x802D4268; // type:object size:0x18 scope:local align:4 +rumblePower_04 = .data:0x802D4280; // type:object size:0x18 scope:local align:4 +rumbleFrame_05 = .data:0x802D4298; // type:object size:0x54 scope:local align:4 +rumblePower_05 = .data:0x802D42EC; // type:object size:0x54 scope:local align:4 +rumbleFrame_06 = .data:0x802D4340; // type:object size:0x50 scope:local align:4 +rumblePower_06 = .data:0x802D4390; // type:object size:0x50 scope:local align:4 +rumbleFrame_07 = .data:0x802D43E0; // type:object size:0x50 scope:local align:4 +rumblePower_07 = .data:0x802D4430; // type:object size:0x50 scope:local align:4 +rumbleFrame_08 = .data:0x802D4480; // type:object size:0x28 scope:local align:4 +rumblePower_08 = .data:0x802D44A8; // type:object size:0x28 scope:local align:4 +rumbleFrame_09 = .data:0x802D44D0; // type:object size:0x2C scope:local align:4 +rumblePower_09 = .data:0x802D44FC; // type:object size:0x2C scope:local align:4 +rumbleFrame_10 = .data:0x802D4528; // type:object size:0x18 scope:local align:4 +rumblePower_10 = .data:0x802D4540; // type:object size:0x18 scope:local align:4 +rumbleFrame_11 = .data:0x802D4558; // type:object size:0x38 scope:local align:4 +rumblePower_11 = .data:0x802D4590; // type:object size:0x38 scope:local align:4 +rumbleFrame_12 = .data:0x802D45C8; // type:object size:0x64 scope:local align:4 +rumblePower_12 = .data:0x802D462C; // type:object size:0x64 scope:local align:4 +rumbleFrame_13 = .data:0x802D4690; // type:object size:0x38 scope:local align:4 +rumblePower_13 = .data:0x802D46C8; // type:object size:0x38 scope:local align:4 +rumbleFrame_14 = .data:0x802D4700; // type:object size:0x20 scope:local align:4 +rumblePower_14 = .data:0x802D4720; // type:object size:0x20 scope:local align:4 +rumbleFrame_15 = .data:0x802D4740; // type:object size:0x18 scope:local align:4 +rumblePower_15 = .data:0x802D4758; // type:object size:0x18 scope:local align:4 +rumbleFrame_16 = .data:0x802D4770; // type:object size:0x6C scope:local align:4 +rumblePower_16 = .data:0x802D47DC; // type:object size:0x6C scope:local align:4 +rumbleFrame_17 = .data:0x802D4848; // type:object size:0x98 scope:local align:4 +rumblePower_17 = .data:0x802D48E0; // type:object size:0x98 scope:local align:4 +rumbleFrame_18 = .data:0x802D4978; // type:object size:0x3C scope:local align:4 +rumblePower_18 = .data:0x802D49B4; // type:object size:0x3C scope:local align:4 +rumbleFrame_19 = .data:0x802D49F0; // type:object size:0xC scope:local align:4 +rumblePower_19 = .data:0x802D49FC; // type:object size:0xC scope:local align:4 +channelDataTbl = .data:0x802D4A08; // type:object size:0xF0 scope:global align:4 +...data.0 = .data:0x802D4AF8; // type:label scope:local +@877 = .data:0x802D4AF8; // type:object size:0xB scope:local align:4 data:string +@887 = .data:0x802D4B04; // type:object size:0xE scope:local align:4 data:string +@976 = .data:0x802D4B14; // type:object size:0xD scope:local align:4 data:string +@977 = .data:0x802D4B24; // type:object size:0xD scope:local align:4 data:string +@978 = .data:0x802D4B34; // type:object size:0xC scope:local align:4 data:string +@1095 = .data:0x802D4B40; // type:object size:0x30 scope:local align:4 +@1187 = .data:0x802D4B70; // type:object size:0x14 scope:local align:4 +@1188 = .data:0x802D4B84; // type:object size:0xB scope:local align:4 data:string +@1189 = .data:0x802D4B90; // type:object size:0xE scope:local align:4 data:string +@1190 = .data:0x802D4BA0; // type:object size:0x11 scope:local align:4 data:string +@1191 = .data:0x802D4BB4; // type:object size:0xA scope:local align:4 data:string +@1192 = .data:0x802D4BC0; // type:object size:0x11 scope:local align:4 data:string +@1193 = .data:0x802D4BD4; // type:object size:0x13 scope:local align:4 data:string +@1194 = .data:0x802D4BE8; // type:object size:0xB scope:local align:4 data:string +@1196 = .data:0x802D4BF4; // type:object size:0xB scope:local align:4 data:string +@1200 = .data:0x802D4C00; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802D4C18; // type:object size:0x10 scope:local align:4 data:string +@1221 = .data:0x802D4C28; // type:object size:0x13 scope:local align:4 data:string +@1224 = .data:0x802D4C3C; // type:object size:0x9 scope:local align:4 data:string +@1225 = .data:0x802D4C48; // type:object size:0xC scope:local align:4 +@1227 = .data:0x802D4C54; // type:object size:0x14 scope:local align:4 +@1229 = .data:0x802D4C68; // type:object size:0x1C scope:local align:4 +@1222 = .data:0x802D4C84; // type:object size:0x24 scope:local align:4 +__vt__Q23zen13OgTestSection = .data:0x802D4CA8; // type:object size:0x34 scope:global align:4 +@1237 = .data:0x802D4D10; // type:object size:0x12 scope:local align:4 data:string +@1238 = .data:0x802D4D24; // type:object size:0x1C scope:local align:4 +__vt__Q23zen12OgTestScreen = .data:0x802D4D40; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802D4D90; // type:label scope:local +@890 = .data:0x802D4D90; // type:object size:0xA scope:local align:4 data:string +@900 = .data:0x802D4D9C; // type:object size:0xD scope:local align:4 data:string +wkstr__3zen = .data:0x802D4DAC; // type:object size:0x400 scope:local align:4 +numStrBuf__3zen = .data:0x802D51AC; // type:object size:0x100 scope:local align:4 +formatStr__3zen = .data:0x802D52AC; // type:object size:0x100 scope:local align:4 +SpecialNumber__3zen = .data:0x802D53AC; // type:object size:0x190 scope:local align:4 +@1559 = .data:0x802D553C; // type:object size:0x19 scope:local align:4 data:string +@1735 = .data:0x802D5558; // type:object size:0x1C scope:local align:4 data:string +@1737 = .data:0x802D5574; // type:object size:0xF scope:local align:4 data:string +@1738 = .data:0x802D5584; // type:object size:0x14 scope:local align:4 data:string +@1739 = .data:0x802D5598; // type:object size:0xC scope:local align:4 +@1740 = .data:0x802D55A4; // type:object size:0x14 scope:local align:4 data:string +@1741 = .data:0x802D55B8; // type:object size:0x1A scope:local align:4 data:string +@1742 = .data:0x802D55D4; // type:object size:0x10 scope:local align:4 data:string +@1743 = .data:0x802D55E4; // type:object size:0x14 scope:local align:4 +@1736 = .data:0x802D55F8; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802D5624; // type:object size:0x10 scope:weak align:4 +__vt__15P2DPaneCallBack = .data:0x802D5634; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen20CallBack1 = .data:0x802D5644; // type:object size:0xC scope:weak align:4 +...data.0 = .data:0x802D5650; // type:label scope:local +@890 = .data:0x802D5650; // type:object size:0xC scope:local align:4 data:string +@900 = .data:0x802D565C; // type:object size:0xF scope:local align:4 data:string +@1013 = .data:0x802D566C; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802D5684; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802D569C; // type:object size:0x16 scope:local align:4 data:string +@1016 = .data:0x802D56B4; // type:object size:0x18 scope:local align:4 data:string +@1017 = .data:0x802D56CC; // type:object size:0x18 scope:local align:4 data:string +@1018 = .data:0x802D56E4; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D5700; // type:label scope:local +@1133 = .data:0x802D5700; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D570C; // type:object size:0xF scope:local align:4 data:string +@1188 = .data:0x802D571C; // type:object size:0x15 scope:local align:4 data:string +@1189 = .data:0x802D5734; // type:object size:0x15 scope:local align:4 data:string +@1190 = .data:0x802D574C; // type:object size:0x18 scope:local align:4 data:string +@1150 = .data:0x802D5768; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D5780; // type:label scope:local +@1133 = .data:0x802D5780; // type:object size:0x13 scope:local align:4 data:string +@1143 = .data:0x802D5794; // type:object size:0x12 scope:local align:4 data:string +@1144 = .data:0x802D57A8; // type:object size:0x17 scope:local align:4 data:string +@1145 = .data:0x802D57C0; // type:object size:0x17 scope:local align:4 data:string +bloFile_Mezame__3zen = .data:0x802D57D8; // type:object size:0xC scope:local align:4 +@1147 = .data:0x802D57E4; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D57FC; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D5814; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D582C; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D5844; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D585C; // type:object size:0x17 scope:local align:4 data:string +bloFile_GetPikmin__3zen = .data:0x802D5874; // type:object size:0x10 scope:local align:4 +@1153 = .data:0x802D5884; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D589C; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D58B4; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D58CC; // type:object size:0x17 scope:local align:4 data:string +bloFile_StoneHint2__3zen = .data:0x802D58E4; // type:object size:0xC scope:local align:4 +@1157 = .data:0x802D58F0; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D5908; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D5920; // type:object size:0x17 scope:local align:4 data:string +@1160 = .data:0x802D5938; // type:object size:0x17 scope:local align:4 data:string +@1161 = .data:0x802D5950; // type:object size:0x17 scope:local align:4 data:string +@1162 = .data:0x802D5968; // type:object size:0x17 scope:local align:4 data:string +@1163 = .data:0x802D5980; // type:object size:0x17 scope:local align:4 data:string +@1164 = .data:0x802D5998; // type:object size:0x17 scope:local align:4 data:string +@1165 = .data:0x802D59B0; // type:object size:0x17 scope:local align:4 data:string +@1166 = .data:0x802D59C8; // type:object size:0x17 scope:local align:4 data:string +@1167 = .data:0x802D59E0; // type:object size:0x17 scope:local align:4 data:string +@1168 = .data:0x802D59F8; // type:object size:0x1A scope:local align:4 data:string +@1169 = .data:0x802D5A14; // type:object size:0x1A scope:local align:4 data:string +bloFile_BombInfo__3zen = .data:0x802D5A30; // type:object size:0xC scope:local align:4 +@1170 = .data:0x802D5A3C; // type:object size:0x17 scope:local align:4 data:string +@1171 = .data:0x802D5A54; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D5A6C; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D5A84; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D5A9C; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D5AB4; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D5ACC; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D5AE4; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D5AFC; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D5B14; // type:object size:0x1A scope:local align:4 data:string +@1180 = .data:0x802D5B30; // type:object size:0x1A scope:local align:4 data:string +bloFile_NukiAndFree__3zen = .data:0x802D5B4C; // type:object size:0xC scope:local align:4 +@1181 = .data:0x802D5B58; // type:object size:0x1A scope:local align:4 data:string +@1182 = .data:0x802D5B74; // type:object size:0x1A scope:local align:4 data:string +@1183 = .data:0x802D5B90; // type:object size:0x1A scope:local align:4 data:string +bloFile_InfoDisplay__3zen = .data:0x802D5BAC; // type:object size:0x10 scope:local align:4 +@1184 = .data:0x802D5BBC; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D5BD4; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D5BEC; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D5C04; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D5C1C; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D5C34; // type:object size:0x17 scope:local align:4 data:string +@1190 = .data:0x802D5C4C; // type:object size:0x17 scope:local align:4 data:string +@1191 = .data:0x802D5C64; // type:object size:0x17 scope:local align:4 data:string +@1192 = .data:0x802D5C7C; // type:object size:0x17 scope:local align:4 data:string +@1193 = .data:0x802D5C94; // type:object size:0x17 scope:local align:4 data:string +@1194 = .data:0x802D5CAC; // type:object size:0x17 scope:local align:4 data:string +@1195 = .data:0x802D5CC4; // type:object size:0x17 scope:local align:4 data:string +@1196 = .data:0x802D5CDC; // type:object size:0x17 scope:local align:4 data:string +@1197 = .data:0x802D5CF4; // type:object size:0x17 scope:local align:4 data:string +@1198 = .data:0x802D5D0C; // type:object size:0x17 scope:local align:4 data:string +@1199 = .data:0x802D5D24; // type:object size:0x17 scope:local align:4 data:string +@1200 = .data:0x802D5D3C; // type:object size:0x17 scope:local align:4 data:string +@1201 = .data:0x802D5D54; // type:object size:0x17 scope:local align:4 data:string +@1202 = .data:0x802D5D6C; // type:object size:0x17 scope:local align:4 data:string +@1203 = .data:0x802D5D84; // type:object size:0x17 scope:local align:4 data:string +@1204 = .data:0x802D5D9C; // type:object size:0x17 scope:local align:4 data:string +@1205 = .data:0x802D5DB4; // type:object size:0x17 scope:local align:4 data:string +@1206 = .data:0x802D5DCC; // type:object size:0x17 scope:local align:4 data:string +@1207 = .data:0x802D5DE4; // type:object size:0x17 scope:local align:4 data:string +@1208 = .data:0x802D5DFC; // type:object size:0x17 scope:local align:4 data:string +@1209 = .data:0x802D5E14; // type:object size:0x17 scope:local align:4 data:string +@1210 = .data:0x802D5E2C; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D5E44; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D5E5C; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D5E74; // type:object size:0x17 scope:local align:4 data:string +@1214 = .data:0x802D5E8C; // type:object size:0x17 scope:local align:4 data:string +@1215 = .data:0x802D5EA4; // type:object size:0x17 scope:local align:4 data:string +@1216 = .data:0x802D5EBC; // type:object size:0x17 scope:local align:4 data:string +@1217 = .data:0x802D5ED4; // type:object size:0x17 scope:local align:4 data:string +@1218 = .data:0x802D5EEC; // type:object size:0x17 scope:local align:4 data:string +@1219 = .data:0x802D5F04; // type:object size:0x17 scope:local align:4 data:string +@1220 = .data:0x802D5F1C; // type:object size:0x17 scope:local align:4 data:string +@1221 = .data:0x802D5F34; // type:object size:0x17 scope:local align:4 data:string +@1222 = .data:0x802D5F4C; // type:object size:0x17 scope:local align:4 data:string +@1223 = .data:0x802D5F64; // type:object size:0x17 scope:local align:4 data:string +@1224 = .data:0x802D5F7C; // type:object size:0x17 scope:local align:4 data:string +@1225 = .data:0x802D5F94; // type:object size:0x17 scope:local align:4 data:string +@1226 = .data:0x802D5FAC; // type:object size:0x17 scope:local align:4 data:string +@1227 = .data:0x802D5FC4; // type:object size:0x17 scope:local align:4 data:string +@1228 = .data:0x802D5FDC; // type:object size:0x17 scope:local align:4 data:string +@1229 = .data:0x802D5FF4; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D600C; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D6024; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D603C; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D6054; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D606C; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D6084; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D609C; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D60B4; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D60CC; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D60E4; // type:object size:0x18 scope:local align:4 data:string +@1240 = .data:0x802D60FC; // type:object size:0x18 scope:local align:4 data:string +@1241 = .data:0x802D6114; // type:object size:0x18 scope:local align:4 data:string +@1242 = .data:0x802D612C; // type:object size:0x18 scope:local align:4 data:string +bloFile_PartsGet_ust1__3zen = .data:0x802D6144; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust2__3zen = .data:0x802D6150; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust3__3zen = .data:0x802D615C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust4__3zen = .data:0x802D6168; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_ust5__3zen = .data:0x802D6174; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf01__3zen = .data:0x802D6180; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf02__3zen = .data:0x802D618C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf03__3zen = .data:0x802D6198; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf04__3zen = .data:0x802D61A4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf05__3zen = .data:0x802D61B0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf06__3zen = .data:0x802D61BC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf07__3zen = .data:0x802D61C8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf08__3zen = .data:0x802D61D4; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf09__3zen = .data:0x802D61E0; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf10__3zen = .data:0x802D61EC; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_uf11__3zen = .data:0x802D61F8; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un01__3zen = .data:0x802D6204; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un02__3zen = .data:0x802D6210; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un03__3zen = .data:0x802D621C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un04__3zen = .data:0x802D6228; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un05__3zen = .data:0x802D6234; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un06__3zen = .data:0x802D6240; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un07__3zen = .data:0x802D624C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un08__3zen = .data:0x802D6258; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un09__3zen = .data:0x802D6264; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un10__3zen = .data:0x802D6270; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un11__3zen = .data:0x802D627C; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un12__3zen = .data:0x802D6288; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un13__3zen = .data:0x802D6294; // type:object size:0xC scope:local align:4 +bloFile_PartsGet_un14__3zen = .data:0x802D62A0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust1__3zen = .data:0x802D62AC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust2__3zen = .data:0x802D62B8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust3__3zen = .data:0x802D62C4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust4__3zen = .data:0x802D62D0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_ust5__3zen = .data:0x802D62DC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf01__3zen = .data:0x802D62E8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf02__3zen = .data:0x802D62F4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf03__3zen = .data:0x802D6300; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf04__3zen = .data:0x802D630C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf05__3zen = .data:0x802D6318; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf06__3zen = .data:0x802D6324; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf07__3zen = .data:0x802D6330; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf08__3zen = .data:0x802D633C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf09__3zen = .data:0x802D6348; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf10__3zen = .data:0x802D6354; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_uf11__3zen = .data:0x802D6360; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un01__3zen = .data:0x802D636C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un02__3zen = .data:0x802D6378; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un03__3zen = .data:0x802D6384; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un04__3zen = .data:0x802D6390; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un05__3zen = .data:0x802D639C; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un06__3zen = .data:0x802D63A8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un07__3zen = .data:0x802D63B4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un08__3zen = .data:0x802D63C0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un09__3zen = .data:0x802D63CC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un10__3zen = .data:0x802D63D8; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un11__3zen = .data:0x802D63E4; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un12__3zen = .data:0x802D63F0; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un13__3zen = .data:0x802D63FC; // type:object size:0xC scope:local align:4 +bloFile_PartsPower_un14__3zen = .data:0x802D6408; // type:object size:0xC scope:local align:4 +@1243 = .data:0x802D6414; // type:object size:0x15 scope:local align:4 data:string +bloFiles_Tutorial__3zen = .data:0x802D642C; // type:object size:0x268 scope:global align:4 +@919 = .data:0x802D6698; // type:object size:0x14 scope:local align:4 data:string +@920 = .data:0x802D66AC; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D66C8; // type:label scope:local +@1133 = .data:0x802D66C8; // type:object size:0xD scope:local align:4 data:string +@1143 = .data:0x802D66D8; // type:object size:0x10 scope:local align:4 data:string +@1145 = .data:0x802D66E8; // type:object size:0x17 scope:local align:4 data:string +@1146 = .data:0x802D6700; // type:object size:0x17 scope:local align:4 data:string +@1147 = .data:0x802D6718; // type:object size:0x17 scope:local align:4 data:string +@1148 = .data:0x802D6730; // type:object size:0x17 scope:local align:4 data:string +@1149 = .data:0x802D6748; // type:object size:0x17 scope:local align:4 data:string +@1150 = .data:0x802D6760; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802D6778; // type:object size:0x17 scope:local align:4 data:string +@1152 = .data:0x802D6790; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802D67A8; // type:object size:0x17 scope:local align:4 data:string +@1154 = .data:0x802D67C0; // type:object size:0x17 scope:local align:4 data:string +@1155 = .data:0x802D67D8; // type:object size:0x17 scope:local align:4 data:string +@1156 = .data:0x802D67F0; // type:object size:0x17 scope:local align:4 data:string +@1157 = .data:0x802D6808; // type:object size:0x17 scope:local align:4 data:string +@1158 = .data:0x802D6820; // type:object size:0x17 scope:local align:4 data:string +@1159 = .data:0x802D6838; // type:object size:0x18 scope:local align:4 data:string +@1160 = .data:0x802D6850; // type:object size:0x18 scope:local align:4 data:string +@1161 = .data:0x802D6868; // type:object size:0x18 scope:local align:4 data:string +@1162 = .data:0x802D6880; // type:object size:0x18 scope:local align:4 data:string +@1163 = .data:0x802D6898; // type:object size:0x18 scope:local align:4 data:string +@1164 = .data:0x802D68B0; // type:object size:0x18 scope:local align:4 data:string +@1165 = .data:0x802D68C8; // type:object size:0x18 scope:local align:4 data:string +@1166 = .data:0x802D68E0; // type:object size:0x18 scope:local align:4 data:string +@1167 = .data:0x802D68F8; // type:object size:0x18 scope:local align:4 data:string +@1168 = .data:0x802D6910; // type:object size:0x18 scope:local align:4 data:string +@1169 = .data:0x802D6928; // type:object size:0x18 scope:local align:4 data:string +@1170 = .data:0x802D6940; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802D6958; // type:object size:0x17 scope:local align:4 data:string +@1172 = .data:0x802D6970; // type:object size:0x17 scope:local align:4 data:string +@1173 = .data:0x802D6988; // type:object size:0x17 scope:local align:4 data:string +@1174 = .data:0x802D69A0; // type:object size:0x17 scope:local align:4 data:string +@1175 = .data:0x802D69B8; // type:object size:0x17 scope:local align:4 data:string +@1176 = .data:0x802D69D0; // type:object size:0x17 scope:local align:4 data:string +@1177 = .data:0x802D69E8; // type:object size:0x17 scope:local align:4 data:string +@1178 = .data:0x802D6A00; // type:object size:0x17 scope:local align:4 data:string +@1179 = .data:0x802D6A18; // type:object size:0x17 scope:local align:4 data:string +@1180 = .data:0x802D6A30; // type:object size:0x17 scope:local align:4 data:string +@1181 = .data:0x802D6A48; // type:object size:0x17 scope:local align:4 data:string +@1182 = .data:0x802D6A60; // type:object size:0x17 scope:local align:4 data:string +@1183 = .data:0x802D6A78; // type:object size:0x17 scope:local align:4 data:string +@1184 = .data:0x802D6A90; // type:object size:0x17 scope:local align:4 data:string +@1185 = .data:0x802D6AA8; // type:object size:0x17 scope:local align:4 data:string +@1186 = .data:0x802D6AC0; // type:object size:0x17 scope:local align:4 data:string +@1187 = .data:0x802D6AD8; // type:object size:0x17 scope:local align:4 data:string +@1188 = .data:0x802D6AF0; // type:object size:0x17 scope:local align:4 data:string +@1189 = .data:0x802D6B08; // type:object size:0x18 scope:local align:4 data:string +@1190 = .data:0x802D6B20; // type:object size:0x18 scope:local align:4 data:string +@1191 = .data:0x802D6B38; // type:object size:0x18 scope:local align:4 data:string +@1192 = .data:0x802D6B50; // type:object size:0x18 scope:local align:4 data:string +@1193 = .data:0x802D6B68; // type:object size:0x18 scope:local align:4 data:string +@1194 = .data:0x802D6B80; // type:object size:0x18 scope:local align:4 data:string +@1195 = .data:0x802D6B98; // type:object size:0x18 scope:local align:4 data:string +@1196 = .data:0x802D6BB0; // type:object size:0x18 scope:local align:4 data:string +@1197 = .data:0x802D6BC8; // type:object size:0x18 scope:local align:4 data:string +@1198 = .data:0x802D6BE0; // type:object size:0x18 scope:local align:4 data:string +@1199 = .data:0x802D6BF8; // type:object size:0x18 scope:local align:4 data:string +@1200 = .data:0x802D6C10; // type:object size:0x18 scope:local align:4 data:string +@1201 = .data:0x802D6C28; // type:object size:0x18 scope:local align:4 data:string +@1202 = .data:0x802D6C40; // type:object size:0x18 scope:local align:4 data:string +@1203 = .data:0x802D6C58; // type:object size:0x18 scope:local align:4 data:string +@1204 = .data:0x802D6C70; // type:object size:0x18 scope:local align:4 data:string +@1205 = .data:0x802D6C88; // type:object size:0x18 scope:local align:4 data:string +@1206 = .data:0x802D6CA0; // type:object size:0x18 scope:local align:4 data:string +@1207 = .data:0x802D6CB8; // type:object size:0x18 scope:local align:4 data:string +@1208 = .data:0x802D6CD0; // type:object size:0x18 scope:local align:4 data:string +@1209 = .data:0x802D6CE8; // type:object size:0x18 scope:local align:4 data:string +@1210 = .data:0x802D6D00; // type:object size:0x18 scope:local align:4 data:string +@1211 = .data:0x802D6D18; // type:object size:0x18 scope:local align:4 data:string +@1212 = .data:0x802D6D30; // type:object size:0x18 scope:local align:4 data:string +@1213 = .data:0x802D6D48; // type:object size:0x18 scope:local align:4 data:string +@1214 = .data:0x802D6D60; // type:object size:0x18 scope:local align:4 data:string +@1215 = .data:0x802D6D78; // type:object size:0x18 scope:local align:4 data:string +@1216 = .data:0x802D6D90; // type:object size:0x18 scope:local align:4 data:string +@1217 = .data:0x802D6DA8; // type:object size:0x18 scope:local align:4 data:string +@1218 = .data:0x802D6DC0; // type:object size:0x18 scope:local align:4 data:string +@1219 = .data:0x802D6DD8; // type:object size:0x18 scope:local align:4 data:string +@1220 = .data:0x802D6DF0; // type:object size:0x18 scope:local align:4 data:string +@1221 = .data:0x802D6E08; // type:object size:0x18 scope:local align:4 data:string +@1222 = .data:0x802D6E20; // type:object size:0x18 scope:local align:4 data:string +@1223 = .data:0x802D6E38; // type:object size:0x18 scope:local align:4 data:string +@1224 = .data:0x802D6E50; // type:object size:0x18 scope:local align:4 data:string +@1225 = .data:0x802D6E68; // type:object size:0x18 scope:local align:4 data:string +@1226 = .data:0x802D6E80; // type:object size:0x18 scope:local align:4 data:string +@1227 = .data:0x802D6E98; // type:object size:0x18 scope:local align:4 data:string +@1228 = .data:0x802D6EB0; // type:object size:0x18 scope:local align:4 data:string +@1229 = .data:0x802D6EC8; // type:object size:0x17 scope:local align:4 data:string +@1230 = .data:0x802D6EE0; // type:object size:0x17 scope:local align:4 data:string +@1231 = .data:0x802D6EF8; // type:object size:0x17 scope:local align:4 data:string +@1232 = .data:0x802D6F10; // type:object size:0x17 scope:local align:4 data:string +@1233 = .data:0x802D6F28; // type:object size:0x17 scope:local align:4 data:string +@1234 = .data:0x802D6F40; // type:object size:0x17 scope:local align:4 data:string +@1235 = .data:0x802D6F58; // type:object size:0x17 scope:local align:4 data:string +@1236 = .data:0x802D6F70; // type:object size:0x17 scope:local align:4 data:string +@1237 = .data:0x802D6F88; // type:object size:0x17 scope:local align:4 data:string +@1238 = .data:0x802D6FA0; // type:object size:0x17 scope:local align:4 data:string +@1239 = .data:0x802D6FB8; // type:object size:0x17 scope:local align:4 data:string +@1240 = .data:0x802D6FD0; // type:object size:0x17 scope:local align:4 data:string +@1241 = .data:0x802D6FE8; // type:object size:0x17 scope:local align:4 data:string +@1242 = .data:0x802D7000; // type:object size:0x17 scope:local align:4 data:string +@1243 = .data:0x802D7018; // type:object size:0x17 scope:local align:4 data:string +@1244 = .data:0x802D7030; // type:object size:0x17 scope:local align:4 data:string +@1245 = .data:0x802D7048; // type:object size:0x17 scope:local align:4 data:string +@1246 = .data:0x802D7060; // type:object size:0x17 scope:local align:4 data:string +@1247 = .data:0x802D7078; // type:object size:0x17 scope:local align:4 data:string +@1248 = .data:0x802D7090; // type:object size:0x17 scope:local align:4 data:string +@1249 = .data:0x802D70A8; // type:object size:0x17 scope:local align:4 data:string +@1250 = .data:0x802D70C0; // type:object size:0x17 scope:local align:4 data:string +@1251 = .data:0x802D70D8; // type:object size:0x17 scope:local align:4 data:string +@1252 = .data:0x802D70F0; // type:object size:0x17 scope:local align:4 data:string +@1253 = .data:0x802D7108; // type:object size:0x17 scope:local align:4 data:string +@1254 = .data:0x802D7120; // type:object size:0x17 scope:local align:4 data:string +@1255 = .data:0x802D7138; // type:object size:0x18 scope:local align:4 data:string +@1256 = .data:0x802D7150; // type:object size:0x18 scope:local align:4 data:string +@1257 = .data:0x802D7168; // type:object size:0x18 scope:local align:4 data:string +@1258 = .data:0x802D7180; // type:object size:0x17 scope:local align:4 data:string +@1259 = .data:0x802D7198; // type:object size:0x17 scope:local align:4 data:string +@1260 = .data:0x802D71B0; // type:object size:0x17 scope:local align:4 data:string +@1261 = .data:0x802D71C8; // type:object size:0x17 scope:local align:4 data:string +@1262 = .data:0x802D71E0; // type:object size:0x17 scope:local align:4 data:string +@1263 = .data:0x802D71F8; // type:object size:0x17 scope:local align:4 data:string +@1264 = .data:0x802D7210; // type:object size:0x17 scope:local align:4 data:string +@1265 = .data:0x802D7228; // type:object size:0x17 scope:local align:4 data:string +@1266 = .data:0x802D7240; // type:object size:0x17 scope:local align:4 data:string +@1267 = .data:0x802D7258; // type:object size:0x17 scope:local align:4 data:string +@1268 = .data:0x802D7270; // type:object size:0x17 scope:local align:4 data:string +@1269 = .data:0x802D7288; // type:object size:0x17 scope:local align:4 data:string +@1270 = .data:0x802D72A0; // type:object size:0x17 scope:local align:4 data:string +@1271 = .data:0x802D72B8; // type:object size:0x17 scope:local align:4 data:string +@1272 = .data:0x802D72D0; // type:object size:0x17 scope:local align:4 data:string +@1273 = .data:0x802D72E8; // type:object size:0x17 scope:local align:4 data:string +@1274 = .data:0x802D7300; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D7318; // type:object size:0x17 scope:local align:4 data:string +@1276 = .data:0x802D7330; // type:object size:0x17 scope:local align:4 data:string +@1277 = .data:0x802D7348; // type:object size:0x17 scope:local align:4 data:string +@1278 = .data:0x802D7360; // type:object size:0x17 scope:local align:4 data:string +@1279 = .data:0x802D7378; // type:object size:0x17 scope:local align:4 data:string +@1280 = .data:0x802D7390; // type:object size:0x17 scope:local align:4 data:string +@1281 = .data:0x802D73A8; // type:object size:0x17 scope:local align:4 data:string +@1282 = .data:0x802D73C0; // type:object size:0x17 scope:local align:4 data:string +@1283 = .data:0x802D73D8; // type:object size:0x17 scope:local align:4 data:string +@1284 = .data:0x802D73F0; // type:object size:0x18 scope:local align:4 data:string +@1285 = .data:0x802D7408; // type:object size:0x18 scope:local align:4 data:string +@1286 = .data:0x802D7420; // type:object size:0x18 scope:local align:4 data:string +@1287 = .data:0x802D7438; // type:object size:0x18 scope:local align:4 data:string +bloFile_Res_Table__3zen = .data:0x802D7450; // type:object size:0x254 scope:global align:4 +dummy_blo_num_table__3zen = .data:0x802D76A4; // type:object size:0x8 scope:global align:4 data:4byte +@1364 = .data:0x802D76AC; // type:object size:0x15 scope:local align:4 data:string +@1365 = .data:0x802D76C4; // type:object size:0x18 scope:local align:4 data:string +@1366 = .data:0x802D76DC; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D76F8; // type:label scope:local +@1767 = .data:0x802D76F8; // type:object size:0xC scope:local align:4 data:string +@1777 = .data:0x802D7704; // type:object size:0xF scope:local align:4 data:string +map_area_data__3zen = .data:0x802D7714; // type:object size:0x3C scope:local align:4 +@2034 = .data:0x802D7750; // type:object size:0x17 scope:local align:4 data:string +@2035 = .data:0x802D7768; // type:object size:0x17 scope:local align:4 data:string +@2036 = .data:0x802D7780; // type:object size:0x17 scope:local align:4 data:string +@2037 = .data:0x802D7798; // type:object size:0x17 scope:local align:4 data:string +@2038 = .data:0x802D77B0; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D77C8; // type:label scope:local +@890 = .data:0x802D77C8; // type:object size:0x11 scope:local align:4 data:string +@900 = .data:0x802D77DC; // type:object size:0x14 scope:local align:4 data:string +@1463 = .data:0x802D77F0; // type:object size:0x38 scope:local align:4 +@1703 = .data:0x802D7828; // type:object size:0x15 scope:local align:4 data:string +@1704 = .data:0x802D7840; // type:object size:0x15 scope:local align:4 data:string +@1705 = .data:0x802D7858; // type:object size:0x15 scope:local align:4 data:string +@1706 = .data:0x802D7870; // type:object size:0x17 scope:local align:4 data:string +@1707 = .data:0x802D7888; // type:object size:0x17 scope:local align:4 data:string +@1708 = .data:0x802D78A0; // type:object size:0x17 scope:local align:4 data:string +@1709 = .data:0x802D78B8; // type:object size:0x17 scope:local align:4 data:string +@1710 = .data:0x802D78D0; // type:object size:0x17 scope:local align:4 data:string +@1711 = .data:0x802D78E8; // type:object size:0x16 scope:local align:4 data:string +@1712 = .data:0x802D7900; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D7920; // type:label scope:local +sjis_convert_table = .data:0x802D7920; // type:object size:0x4B0 scope:local align:4 +kanji_convert_table = .data:0x802D7DE0; // type:object size:0x499 scope:local align:32 +@1819 = .data:0x802D827C; // type:object size:0xE scope:local align:4 data:string +@1829 = .data:0x802D828C; // type:object size:0x11 scope:local align:4 data:string +@1991 = .data:0x802D82A0; // type:object size:0x13 scope:local align:4 data:string +@2068 = .data:0x802D82B4; // type:object size:0xC scope:local align:4 data:string +@2071 = .data:0x802D82C0; // type:object size:0x9 scope:local align:4 data:string +@2072 = .data:0x802D82CC; // type:object size:0x17 scope:local align:4 +@1027 = .data:0x802D82E8; // type:object size:0x15 scope:local align:4 data:string +@1028 = .data:0x802D8300; // type:object size:0x16 scope:local align:4 data:string +@1184 = .data:0x802D8318; // type:object size:0x4C scope:local align:4 +@2125 = .data:0x802D8364; // type:object size:0x4C scope:local align:4 +@2158 = .data:0x802D83B0; // type:object size:0x38 scope:local align:4 +@2201 = .data:0x802D83E8; // type:object size:0x1C scope:local align:4 +@1164 = .data:0x802D8408; // type:object size:0xC scope:local align:4 data:string +@1166 = .data:0x802D8414; // type:object size:0x17 scope:local align:4 data:string +@1213 = .data:0x802D842C; // type:object size:0xF scope:local align:4 +@1357 = .data:0x802D843C; // type:object size:0x18 scope:local align:4 data:string +@1608 = .data:0x802D8454; // type:object size:0x18 scope:local align:4 data:string +@1609 = .data:0x802D846C; // type:object size:0x15 scope:local align:4 data:string +...data.0 = .data:0x802D8488; // type:label scope:local +@1810 = .data:0x802D8488; // type:object size:0xB scope:local align:4 data:string +@1820 = .data:0x802D8494; // type:object size:0xE scope:local align:4 data:string +RotateAngleData__3zen = .data:0x802D84A4; // type:object size:0x80 scope:local align:4 +pane_name$1940 = .data:0x802D8524; // type:object size:0x24 scope:local align:4 +pane_name2$1941 = .data:0x802D8548; // type:object size:0x24 scope:local align:4 +pane_name3$1942 = .data:0x802D856C; // type:object size:0x24 scope:local align:4 +pane_name4$1943 = .data:0x802D8590; // type:object size:0x24 scope:local align:4 +@1972 = .data:0x802D85B4; // type:object size:0x17 scope:local align:4 data:string +@2192 = .data:0x802D85CC; // type:object size:0x17 scope:local align:4 data:string +@2274 = .data:0x802D85E4; // type:object size:0x18 scope:local align:4 data:string +@2388 = .data:0x802D85FC; // type:object size:0x16 scope:local align:4 data:string +@2389 = .data:0x802D8614; // type:object size:0x15 scope:local align:4 data:string +@892 = .data:0x802D8630; // type:object size:0x16 scope:local align:4 data:string +@1343 = .data:0x802D8648; // type:object size:0x17 scope:local align:4 data:string +@1344 = .data:0x802D8660; // type:object size:0x15 scope:local align:4 data:string +@960 = .data:0x802D8678; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802D8690; // type:label scope:local +@1133 = .data:0x802D8690; // type:object size:0xB scope:local align:4 data:string +@1143 = .data:0x802D869C; // type:object size:0xE scope:local align:4 data:string +@1273 = .data:0x802D86AC; // type:object size:0x17 scope:local align:4 data:string +@1275 = .data:0x802D86C4; // type:object size:0x15 scope:local align:4 data:string +@1276 = .data:0x802D86DC; // type:object size:0x18 scope:local align:4 data:string +@1547 = .data:0x802D86F4; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x802D8740; // type:label scope:local +@1133 = .data:0x802D8740; // type:object size:0xC scope:local align:4 data:string +@1143 = .data:0x802D874C; // type:object size:0x10 scope:local align:4 data:string +LinePointB__3zen = .data:0x802D8760; // type:object size:0x40 scope:local align:32 +LinePointR__3zen = .data:0x802D87A0; // type:object size:0x40 scope:local align:32 +LinePointY__3zen = .data:0x802D87E0; // type:object size:0x40 scope:local align:32 +ogawa_per_line__3zen = .data:0x802D8820; // type:object size:0x1A scope:local align:4 +og_piki_lines_color__3zen = .data:0x802D8840; // type:object size:0xC scope:local align:32 +@871 = .data:0x802D8850; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802D8868; // type:label scope:local +@749 = .data:0x802D8868; // type:object size:0xF scope:local align:4 data:string +@759 = .data:0x802D8878; // type:object size:0x12 scope:local align:4 data:string +@893 = .data:0x802D888C; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D88A4; // type:object size:0x14 scope:local align:4 data:string +@896 = .data:0x802D88B8; // type:object size:0x1A scope:local align:4 data:string +@897 = .data:0x802D88D4; // type:object size:0x10 scope:local align:4 data:string +@898 = .data:0x802D88E4; // type:object size:0x14 scope:local align:4 +@894 = .data:0x802D88F8; // type:object size:0x1C scope:local align:4 +__vt__Q23zen17TextColorCallBack = .data:0x802D8914; // type:object size:0x10 scope:global align:4 +...data.0 = .data:0x802D8940; // type:label scope:local +@885 = .data:0x802D8940; // type:object size:0x14 scope:local align:4 data:string +@895 = .data:0x802D8954; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802D896C; // type:object size:0xC scope:local align:4 +@1056 = .data:0x802D8978; // type:object size:0xC scope:local align:4 +@1459 = .data:0x802D8984; // type:object size:0x19 scope:local align:4 data:string +@1463 = .data:0x802D89A0; // type:object size:0x16 scope:local align:4 data:string +@1464 = .data:0x802D89B8; // type:object size:0xD scope:local align:4 data:string +@1465 = .data:0x802D89C8; // type:object size:0xC scope:local align:4 data:string +@1468 = .data:0x802D89D4; // type:object size:0x13 scope:local align:4 +@1469 = .data:0x802D89E8; // type:object size:0x11 scope:local align:4 +@1470 = .data:0x802D89FC; // type:object size:0x11 scope:local align:4 +@1471 = .data:0x802D8A10; // type:object size:0xD scope:local align:4 +@1472 = .data:0x802D8A20; // type:object size:0xB scope:local align:4 +@1473 = .data:0x802D8A2C; // type:object size:0x21 scope:local align:4 +@1474 = .data:0x802D8A50; // type:object size:0xF scope:local align:4 +@1475 = .data:0x802D8A60; // type:object size:0x1D scope:local align:4 +@1476 = .data:0x802D8A80; // type:object size:0x11 scope:local align:4 +@1477 = .data:0x802D8A94; // type:object size:0xF scope:local align:4 +@1479 = .data:0x802D8AA4; // type:object size:0xF scope:local align:4 +@1480 = .data:0x802D8AB4; // type:object size:0x15 scope:local align:4 +@1481 = .data:0x802D8ACC; // type:object size:0xB scope:local align:4 +@1483 = .data:0x802D8AD8; // type:object size:0xA scope:local align:4 data:string +@1485 = .data:0x802D8AE4; // type:object size:0x18 scope:local align:4 data:string +@1486 = .data:0x802D8AFC; // type:object size:0x17 scope:local align:4 data:string +@1487 = .data:0x802D8B14; // type:object size:0x16 scope:local align:4 data:string +@1494 = .data:0x802D8B2C; // type:object size:0x1B scope:local align:4 +@1595 = .data:0x802D8B48; // type:object size:0x9 scope:local align:4 data:string +@1596 = .data:0x802D8B54; // type:object size:0xC scope:local align:4 +@1600 = .data:0x802D8B7C; // type:object size:0x17 scope:local align:4 data:string +@1602 = .data:0x802D8B94; // type:object size:0xD scope:local align:4 data:string +@1601 = .data:0x802D8BA4; // type:object size:0xC scope:local align:4 +__vt__Q23zen17particleGenerator = .data:0x802D8BB0; // type:object size:0x10 scope:weak align:4 +@1606 = .data:0x802D8BC0; // type:object size:0xD scope:local align:4 data:string +@1608 = .data:0x802D8BD0; // type:object size:0xD scope:local align:4 data:string +@1607 = .data:0x802D8BE0; // type:object size:0xC scope:local align:4 +__vt__12CMresultMode = .data:0x802D8BEC; // type:object size:0x10 scope:weak align:4 +@1618 = .data:0x802D8BFC; // type:object size:0xC scope:local align:4 data:string +@1619 = .data:0x802D8C08; // type:object size:0xC scope:local align:4 +__vt__11HurryUpMode = .data:0x802D8C14; // type:object size:0x10 scope:weak align:4 +@1628 = .data:0x802D8C24; // type:object size:0xD scope:local align:4 data:string +@1629 = .data:0x802D8C34; // type:object size:0xC scope:local align:4 +__vt__12GameInfoMode = .data:0x802D8C40; // type:object size:0x10 scope:weak align:4 +@1639 = .data:0x802D8C50; // type:object size:0x10 scope:local align:4 data:string +@1640 = .data:0x802D8C60; // type:object size:0xC scope:local align:4 +__vt__15ProgressiveMode = .data:0x802D8C6C; // type:object size:0x10 scope:weak align:4 +@1649 = .data:0x802D8C7C; // type:object size:0xE scope:local align:4 data:string +@1650 = .data:0x802D8C8C; // type:object size:0xC scope:local align:4 +__vt__13CountDownMode = .data:0x802D8C98; // type:object size:0x10 scope:weak align:4 +@1664 = .data:0x802D8CA8; // type:object size:0xD scope:local align:4 data:string +@1665 = .data:0x802D8CB8; // type:object size:0xC scope:local align:4 +__vt__12GameOverMode = .data:0x802D8CC4; // type:object size:0x10 scope:weak align:4 +@1678 = .data:0x802D8CD4; // type:object size:0xE scope:local align:4 data:string +@1679 = .data:0x802D8CE4; // type:object size:0xC scope:local align:4 +__vt__13ContainerMode = .data:0x802D8CF0; // type:object size:0x10 scope:weak align:4 +@1693 = .data:0x802D8D00; // type:object size:0xC scope:local align:4 data:string +@1694 = .data:0x802D8D0C; // type:object size:0xC scope:local align:4 +__vt__11WMPauseMode = .data:0x802D8D18; // type:object size:0x10 scope:weak align:4 +@1703 = .data:0x802D8D28; // type:object size:0xD scope:local align:4 data:string +@1704 = .data:0x802D8D38; // type:object size:0xC scope:local align:4 +__vt__12WorldMapMode = .data:0x802D8D44; // type:object size:0x10 scope:weak align:4 +@1713 = .data:0x802D8D54; // type:object size:0x13 scope:local align:4 data:string +@1714 = .data:0x802D8D68; // type:object size:0xC scope:local align:4 +__vt__18CMcourseSelectMode = .data:0x802D8D74; // type:object size:0x10 scope:weak align:4 +@1724 = .data:0x802D8D84; // type:object size:0xC scope:local align:4 data:string +@1725 = .data:0x802D8D90; // type:object size:0xC scope:local align:4 +__vt__11HiScoreMode = .data:0x802D8D9C; // type:object size:0x10 scope:weak align:4 +@1734 = .data:0x802D8DAC; // type:object size:0xD scope:local align:4 data:string +@1735 = .data:0x802D8DBC; // type:object size:0xC scope:local align:4 +__vt__12UfoPartsMode = .data:0x802D8DC8; // type:object size:0x10 scope:weak align:4 +@1744 = .data:0x802D8DD8; // type:object size:0xC scope:local align:4 data:string +@1745 = .data:0x802D8DE4; // type:object size:0xC scope:local align:4 +__vt__11SaveMesMode = .data:0x802D8DF0; // type:object size:0x10 scope:weak align:4 +@1758 = .data:0x802D8E00; // type:object size:0x10 scope:local align:4 data:string +@1759 = .data:0x802D8E10; // type:object size:0xC scope:local align:4 +__vt__15SaveFailureMode = .data:0x802D8E1C; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802D8E2C; // type:object size:0x10 scope:local align:4 data:string +@1769 = .data:0x802D8E3C; // type:object size:0xC scope:local align:4 +__vt__15FinalResultMode = .data:0x802D8E48; // type:object size:0x10 scope:weak align:4 +__vt__12GameModeBase = .data:0x802D8E58; // type:object size:0x10 scope:weak align:4 +@1783 = .data:0x802D8E68; // type:object size:0x29 scope:local align:4 data:string +@1785 = .data:0x802D8E94; // type:object size:0x13 scope:local align:4 data:string +@1784 = .data:0x802D8EA8; // type:object size:0xC scope:local align:4 +__vt__41Delegate1<21GameCourseClearScreen,R4Menu> = .data:0x802D8EB4; // type:object size:0xC scope:weak align:4 +@1786 = .data:0x802D8EC0; // type:object size:0x18 scope:local align:4 data:string +@1787 = .data:0x802D8ED8; // type:object size:0xC scope:local align:4 +__vt__Q23zen7zenList = .data:0x802D8EFC; // type:object size:0x10 scope:weak align:4 +@1789 = .data:0x802D8F0C; // type:object size:0xA scope:local align:4 data:string +@1791 = .data:0x802D8F18; // type:object size:0x9 scope:local align:4 data:string +@1790 = .data:0x802D8F24; // type:object size:0xC scope:local align:4 +@1792 = .data:0x802D8F44; // type:object size:0xC scope:local align:4 data:string +@1793 = .data:0x802D8F50; // type:object size:0xC scope:local align:4 +@1796 = .data:0x802D8F70; // type:object size:0x14 scope:local align:4 +@1794 = .data:0x802D8F84; // type:object size:0x1C scope:local align:4 +__vt__21GameCourseClearScreen = .data:0x802D8FA0; // type:object size:0x30 scope:weak align:4 +@1888 = .data:0x802D8FD0; // type:object size:0x1C scope:local align:4 +@1886 = .data:0x802D8FEC; // type:object size:0x24 scope:local align:4 +__vt__22GameCourseClearSection = .data:0x802D9010; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D9078; // type:label scope:local +@1486 = .data:0x802D9078; // type:object size:0x13 scope:local align:4 data:string +@1496 = .data:0x802D908C; // type:object size:0x16 scope:local align:4 data:string +@1504 = .data:0x802D90A4; // type:object size:0x18 scope:local align:4 data:string +@1509 = .data:0x802D90BC; // type:object size:0x9 scope:local align:4 data:string +@1510 = .data:0x802D90C8; // type:object size:0xC scope:local align:4 +@1516 = .data:0x802D90F0; // type:object size:0x14 scope:local align:4 +@1518 = .data:0x802D9104; // type:object size:0x1C scope:local align:4 +@1514 = .data:0x802D9120; // type:object size:0x24 scope:local align:4 +__vt__21GameStageClearSection = .data:0x802D9144; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D91B0; // type:label scope:local +@749 = .data:0x802D91B0; // type:object size:0x10 scope:local align:4 data:string +@759 = .data:0x802D91C0; // type:object size:0x13 scope:local align:4 data:string +@767 = .data:0x802D91D4; // type:object size:0x15 scope:local align:4 data:string +@772 = .data:0x802D91EC; // type:object size:0x9 scope:local align:4 data:string +@773 = .data:0x802D91F8; // type:object size:0xC scope:local align:4 +@779 = .data:0x802D9220; // type:object size:0x14 scope:local align:4 +@781 = .data:0x802D9234; // type:object size:0x1C scope:local align:4 +@777 = .data:0x802D9250; // type:object size:0x24 scope:local align:4 +__vt__18GameCreditsSection = .data:0x802D9274; // type:object size:0x34 scope:weak align:4 +...data.0 = .data:0x802D92E0; // type:label scope:local +@787 = .data:0x802D92E0; // type:object size:0xE scope:local align:4 data:string +@797 = .data:0x802D92F0; // type:object size:0xA scope:local align:4 data:string +@801 = .data:0x802D92FC; // type:object size:0x18 scope:local align:4 data:string +@802 = .data:0x802D9314; // type:object size:0x18 scope:local align:4 data:string +@803 = .data:0x802D932C; // type:object size:0x18 scope:local align:4 data:string +@804 = .data:0x802D9344; // type:object size:0x19 scope:local align:4 data:string +@805 = .data:0x802D9360; // type:object size:0x18 scope:local align:4 data:string +@806 = .data:0x802D9378; // type:object size:0x19 scope:local align:4 data:string +@807 = .data:0x802D9394; // type:object size:0x18 scope:local align:4 data:string +@808 = .data:0x802D93AC; // type:object size:0x19 scope:local align:4 data:string +@809 = .data:0x802D93C8; // type:object size:0x18 scope:local align:4 data:string +@810 = .data:0x802D93E0; // type:object size:0x19 scope:local align:4 data:string +@811 = .data:0x802D93FC; // type:object size:0x19 scope:local align:4 data:string +@812 = .data:0x802D9418; // type:object size:0x18 scope:local align:4 data:string +@813 = .data:0x802D9430; // type:object size:0x19 scope:local align:4 data:string +@814 = .data:0x802D944C; // type:object size:0x18 scope:local align:4 data:string +@815 = .data:0x802D9464; // type:object size:0x19 scope:local align:4 data:string +@816 = .data:0x802D9480; // type:object size:0x19 scope:local align:4 data:string +@817 = .data:0x802D949C; // type:object size:0x18 scope:local align:4 data:string +@818 = .data:0x802D94B4; // type:object size:0x19 scope:local align:4 data:string +@819 = .data:0x802D94D0; // type:object size:0x19 scope:local align:4 data:string +@820 = .data:0x802D94EC; // type:object size:0x19 scope:local align:4 data:string +@821 = .data:0x802D9508; // type:object size:0x19 scope:local align:4 data:string +@822 = .data:0x802D9524; // type:object size:0x16 scope:local align:4 data:string +@823 = .data:0x802D953C; // type:object size:0x18 scope:local align:4 data:string +@824 = .data:0x802D9554; // type:object size:0x1A scope:local align:4 data:string +@825 = .data:0x802D9570; // type:object size:0x19 scope:local align:4 data:string +@826 = .data:0x802D958C; // type:object size:0x19 scope:local align:4 data:string +@827 = .data:0x802D95A8; // type:object size:0x18 scope:local align:4 data:string +@828 = .data:0x802D95C0; // type:object size:0x19 scope:local align:4 data:string +@829 = .data:0x802D95DC; // type:object size:0x19 scope:local align:4 data:string +@830 = .data:0x802D95F8; // type:object size:0x19 scope:local align:4 data:string +@831 = .data:0x802D9614; // type:object size:0x19 scope:local align:4 data:string +@832 = .data:0x802D9630; // type:object size:0x19 scope:local align:4 data:string +@833 = .data:0x802D964C; // type:object size:0x18 scope:local align:4 data:string +@834 = .data:0x802D9664; // type:object size:0x18 scope:local align:4 data:string +@835 = .data:0x802D967C; // type:object size:0x19 scope:local align:4 data:string +@836 = .data:0x802D9698; // type:object size:0x19 scope:local align:4 data:string +@837 = .data:0x802D96B4; // type:object size:0x19 scope:local align:4 data:string +@838 = .data:0x802D96D0; // type:object size:0x19 scope:local align:4 data:string +@839 = .data:0x802D96EC; // type:object size:0x19 scope:local align:4 data:string +@840 = .data:0x802D9708; // type:object size:0x19 scope:local align:4 data:string +@841 = .data:0x802D9724; // type:object size:0x16 scope:local align:4 data:string +@842 = .data:0x802D973C; // type:object size:0x19 scope:local align:4 data:string +@843 = .data:0x802D9758; // type:object size:0x18 scope:local align:4 data:string +@844 = .data:0x802D9770; // type:object size:0x19 scope:local align:4 data:string +@845 = .data:0x802D978C; // type:object size:0x15 scope:local align:4 data:string +@846 = .data:0x802D97A4; // type:object size:0x1A scope:local align:4 data:string +@847 = .data:0x802D97C0; // type:object size:0x19 scope:local align:4 data:string +@848 = .data:0x802D97DC; // type:object size:0x19 scope:local align:4 data:string +@849 = .data:0x802D97F8; // type:object size:0x18 scope:local align:4 data:string +@850 = .data:0x802D9810; // type:object size:0x19 scope:local align:4 data:string +@851 = .data:0x802D982C; // type:object size:0x18 scope:local align:4 data:string +@852 = .data:0x802D9844; // type:object size:0x19 scope:local align:4 data:string +@853 = .data:0x802D9860; // type:object size:0x19 scope:local align:4 data:string +@854 = .data:0x802D987C; // type:object size:0x19 scope:local align:4 data:string +@855 = .data:0x802D9898; // type:object size:0x17 scope:local align:4 data:string +@856 = .data:0x802D98B0; // type:object size:0x19 scope:local align:4 data:string +@857 = .data:0x802D98CC; // type:object size:0x18 scope:local align:4 data:string +@858 = .data:0x802D98E4; // type:object size:0x19 scope:local align:4 data:string +@859 = .data:0x802D9900; // type:object size:0x19 scope:local align:4 data:string +@860 = .data:0x802D991C; // type:object size:0x18 scope:local align:4 data:string +@861 = .data:0x802D9934; // type:object size:0x18 scope:local align:4 data:string +@862 = .data:0x802D994C; // type:object size:0x18 scope:local align:4 data:string +@863 = .data:0x802D9964; // type:object size:0x14 scope:local align:4 data:string +@864 = .data:0x802D9978; // type:object size:0x14 scope:local align:4 data:string +@865 = .data:0x802D998C; // type:object size:0x15 scope:local align:4 data:string +@866 = .data:0x802D99A4; // type:object size:0x19 scope:local align:4 data:string +@867 = .data:0x802D99C0; // type:object size:0x19 scope:local align:4 data:string +@868 = .data:0x802D99DC; // type:object size:0x19 scope:local align:4 data:string +@869 = .data:0x802D99F8; // type:object size:0x19 scope:local align:4 data:string +@870 = .data:0x802D9A14; // type:object size:0x19 scope:local align:4 data:string +@871 = .data:0x802D9A30; // type:object size:0x19 scope:local align:4 data:string +@872 = .data:0x802D9A4C; // type:object size:0x18 scope:local align:4 data:string +@873 = .data:0x802D9A64; // type:object size:0x18 scope:local align:4 data:string +@874 = .data:0x802D9A7C; // type:object size:0x19 scope:local align:4 data:string +@875 = .data:0x802D9A98; // type:object size:0x19 scope:local align:4 data:string +@876 = .data:0x802D9AB4; // type:object size:0x19 scope:local align:4 data:string +@877 = .data:0x802D9AD0; // type:object size:0x18 scope:local align:4 data:string +@878 = .data:0x802D9AE8; // type:object size:0x19 scope:local align:4 data:string +@879 = .data:0x802D9B04; // type:object size:0x19 scope:local align:4 data:string +@880 = .data:0x802D9B20; // type:object size:0x18 scope:local align:4 data:string +@881 = .data:0x802D9B38; // type:object size:0x19 scope:local align:4 data:string +@882 = .data:0x802D9B54; // type:object size:0x18 scope:local align:4 data:string +@883 = .data:0x802D9B6C; // type:object size:0x18 scope:local align:4 data:string +@884 = .data:0x802D9B84; // type:object size:0x18 scope:local align:4 data:string +@885 = .data:0x802D9B9C; // type:object size:0x18 scope:local align:4 data:string +@886 = .data:0x802D9BB4; // type:object size:0x18 scope:local align:4 data:string +@887 = .data:0x802D9BCC; // type:object size:0x18 scope:local align:4 data:string +@888 = .data:0x802D9BE4; // type:object size:0x18 scope:local align:4 data:string +@889 = .data:0x802D9BFC; // type:object size:0x18 scope:local align:4 data:string +@890 = .data:0x802D9C14; // type:object size:0x17 scope:local align:4 data:string +@891 = .data:0x802D9C2C; // type:object size:0x17 scope:local align:4 data:string +@892 = .data:0x802D9C44; // type:object size:0x17 scope:local align:4 data:string +@893 = .data:0x802D9C5C; // type:object size:0x17 scope:local align:4 data:string +@894 = .data:0x802D9C74; // type:object size:0x17 scope:local align:4 data:string +@895 = .data:0x802D9C8C; // type:object size:0x19 scope:local align:4 data:string +@896 = .data:0x802D9CA8; // type:object size:0x19 scope:local align:4 data:string +@897 = .data:0x802D9CC4; // type:object size:0x15 scope:local align:4 data:string +@898 = .data:0x802D9CDC; // type:object size:0x18 scope:local align:4 data:string +@899 = .data:0x802D9CF4; // type:object size:0x19 scope:local align:4 data:string +@900 = .data:0x802D9D10; // type:object size:0x19 scope:local align:4 data:string +@901 = .data:0x802D9D2C; // type:object size:0x17 scope:local align:4 data:string +@902 = .data:0x802D9D44; // type:object size:0x17 scope:local align:4 data:string +@903 = .data:0x802D9D5C; // type:object size:0x1A scope:local align:4 data:string +@904 = .data:0x802D9D78; // type:object size:0x17 scope:local align:4 data:string +@905 = .data:0x802D9D90; // type:object size:0x1A scope:local align:4 data:string +@906 = .data:0x802D9DAC; // type:object size:0x18 scope:local align:4 data:string +@907 = .data:0x802D9DC4; // type:object size:0x19 scope:local align:4 data:string +@908 = .data:0x802D9DE0; // type:object size:0x19 scope:local align:4 data:string +@909 = .data:0x802D9DFC; // type:object size:0x19 scope:local align:4 data:string +@910 = .data:0x802D9E18; // type:object size:0x19 scope:local align:4 data:string +@911 = .data:0x802D9E34; // type:object size:0x19 scope:local align:4 data:string +@912 = .data:0x802D9E50; // type:object size:0x19 scope:local align:4 data:string +@913 = .data:0x802D9E6C; // type:object size:0x19 scope:local align:4 data:string +@914 = .data:0x802D9E88; // type:object size:0x19 scope:local align:4 data:string +@915 = .data:0x802D9EA4; // type:object size:0x19 scope:local align:4 data:string +@916 = .data:0x802D9EC0; // type:object size:0x19 scope:local align:4 data:string +@917 = .data:0x802D9EDC; // type:object size:0x18 scope:local align:4 data:string +@918 = .data:0x802D9EF4; // type:object size:0x16 scope:local align:4 data:string +@919 = .data:0x802D9F0C; // type:object size:0x16 scope:local align:4 data:string +@920 = .data:0x802D9F24; // type:object size:0x17 scope:local align:4 data:string +@921 = .data:0x802D9F3C; // type:object size:0x17 scope:local align:4 data:string +@922 = .data:0x802D9F54; // type:object size:0x17 scope:local align:4 data:string +@923 = .data:0x802D9F6C; // type:object size:0x17 scope:local align:4 data:string +@924 = .data:0x802D9F84; // type:object size:0x1B scope:local align:4 data:string +@925 = .data:0x802D9FA0; // type:object size:0x19 scope:local align:4 data:string +@926 = .data:0x802D9FBC; // type:object size:0x18 scope:local align:4 data:string +@927 = .data:0x802D9FD4; // type:object size:0x16 scope:local align:4 data:string +@928 = .data:0x802D9FEC; // type:object size:0x19 scope:local align:4 data:string +@929 = .data:0x802DA008; // type:object size:0x19 scope:local align:4 data:string +@930 = .data:0x802DA024; // type:object size:0x19 scope:local align:4 data:string +@931 = .data:0x802DA040; // type:object size:0x19 scope:local align:4 data:string +@932 = .data:0x802DA05C; // type:object size:0x19 scope:local align:4 data:string +@933 = .data:0x802DA078; // type:object size:0x19 scope:local align:4 data:string +@934 = .data:0x802DA094; // type:object size:0x18 scope:local align:4 data:string +@935 = .data:0x802DA0AC; // type:object size:0x19 scope:local align:4 data:string +@936 = .data:0x802DA0C8; // type:object size:0x19 scope:local align:4 data:string +@937 = .data:0x802DA0E4; // type:object size:0x15 scope:local align:4 data:string +@938 = .data:0x802DA0FC; // type:object size:0x19 scope:local align:4 data:string +@939 = .data:0x802DA118; // type:object size:0x19 scope:local align:4 data:string +@940 = .data:0x802DA134; // type:object size:0x19 scope:local align:4 data:string +@941 = .data:0x802DA150; // type:object size:0x18 scope:local align:4 data:string +@942 = .data:0x802DA168; // type:object size:0x19 scope:local align:4 data:string +@943 = .data:0x802DA184; // type:object size:0x19 scope:local align:4 data:string +@944 = .data:0x802DA1A0; // type:object size:0x19 scope:local align:4 data:string +@945 = .data:0x802DA1BC; // type:object size:0x19 scope:local align:4 data:string +@946 = .data:0x802DA1D8; // type:object size:0x19 scope:local align:4 data:string +@947 = .data:0x802DA1F4; // type:object size:0x19 scope:local align:4 data:string +@948 = .data:0x802DA210; // type:object size:0x19 scope:local align:4 data:string +@949 = .data:0x802DA22C; // type:object size:0x19 scope:local align:4 data:string +@950 = .data:0x802DA248; // type:object size:0x19 scope:local align:4 data:string +@951 = .data:0x802DA264; // type:object size:0x19 scope:local align:4 data:string +@952 = .data:0x802DA280; // type:object size:0x19 scope:local align:4 data:string +@953 = .data:0x802DA29C; // type:object size:0x19 scope:local align:4 data:string +@954 = .data:0x802DA2B8; // type:object size:0x17 scope:local align:4 data:string +@955 = .data:0x802DA2D0; // type:object size:0x19 scope:local align:4 data:string +@956 = .data:0x802DA2EC; // type:object size:0x18 scope:local align:4 data:string +@957 = .data:0x802DA304; // type:object size:0x19 scope:local align:4 data:string +@958 = .data:0x802DA320; // type:object size:0x19 scope:local align:4 data:string +@959 = .data:0x802DA33C; // type:object size:0x19 scope:local align:4 data:string +@960 = .data:0x802DA358; // type:object size:0x19 scope:local align:4 data:string +@961 = .data:0x802DA374; // type:object size:0x19 scope:local align:4 data:string +@962 = .data:0x802DA390; // type:object size:0x19 scope:local align:4 data:string +@963 = .data:0x802DA3AC; // type:object size:0x19 scope:local align:4 data:string +@964 = .data:0x802DA3C8; // type:object size:0x19 scope:local align:4 data:string +@965 = .data:0x802DA3E4; // type:object size:0x19 scope:local align:4 data:string +@966 = .data:0x802DA400; // type:object size:0x19 scope:local align:4 data:string +@967 = .data:0x802DA41C; // type:object size:0x19 scope:local align:4 data:string +@968 = .data:0x802DA438; // type:object size:0x1A scope:local align:4 data:string +@969 = .data:0x802DA454; // type:object size:0x1A scope:local align:4 data:string +@970 = .data:0x802DA470; // type:object size:0x16 scope:local align:4 data:string +@971 = .data:0x802DA488; // type:object size:0x1A scope:local align:4 data:string +@972 = .data:0x802DA4A4; // type:object size:0x1A scope:local align:4 data:string +@973 = .data:0x802DA4C0; // type:object size:0x1A scope:local align:4 data:string +@974 = .data:0x802DA4DC; // type:object size:0x1A scope:local align:4 data:string +@975 = .data:0x802DA4F8; // type:object size:0x17 scope:local align:4 data:string +@976 = .data:0x802DA510; // type:object size:0x18 scope:local align:4 data:string +@977 = .data:0x802DA528; // type:object size:0x17 scope:local align:4 data:string +@978 = .data:0x802DA540; // type:object size:0x18 scope:local align:4 data:string +@979 = .data:0x802DA558; // type:object size:0x19 scope:local align:4 data:string +@980 = .data:0x802DA574; // type:object size:0x19 scope:local align:4 data:string +@981 = .data:0x802DA590; // type:object size:0x18 scope:local align:4 data:string +@982 = .data:0x802DA5A8; // type:object size:0x17 scope:local align:4 data:string +@983 = .data:0x802DA5C0; // type:object size:0x18 scope:local align:4 data:string +@984 = .data:0x802DA5D8; // type:object size:0x17 scope:local align:4 data:string +@985 = .data:0x802DA5F0; // type:object size:0x1B scope:local align:4 data:string +@986 = .data:0x802DA60C; // type:object size:0x1B scope:local align:4 data:string +@987 = .data:0x802DA628; // type:object size:0x1B scope:local align:4 data:string +@988 = .data:0x802DA644; // type:object size:0x17 scope:local align:4 data:string +@989 = .data:0x802DA65C; // type:object size:0x1B scope:local align:4 data:string +@990 = .data:0x802DA678; // type:object size:0x17 scope:local align:4 data:string +@991 = .data:0x802DA690; // type:object size:0x17 scope:local align:4 data:string +@992 = .data:0x802DA6A8; // type:object size:0x17 scope:local align:4 data:string +@993 = .data:0x802DA6C0; // type:object size:0x19 scope:local align:4 data:string +@994 = .data:0x802DA6DC; // type:object size:0x19 scope:local align:4 data:string +@995 = .data:0x802DA6F8; // type:object size:0x19 scope:local align:4 data:string +@996 = .data:0x802DA714; // type:object size:0x19 scope:local align:4 data:string +@997 = .data:0x802DA730; // type:object size:0x19 scope:local align:4 data:string +@998 = .data:0x802DA74C; // type:object size:0x18 scope:local align:4 data:string +@999 = .data:0x802DA764; // type:object size:0x17 scope:local align:4 data:string +@1000 = .data:0x802DA77C; // type:object size:0x18 scope:local align:4 data:string +@1001 = .data:0x802DA794; // type:object size:0x19 scope:local align:4 data:string +@1002 = .data:0x802DA7B0; // type:object size:0x18 scope:local align:4 data:string +@1003 = .data:0x802DA7C8; // type:object size:0x19 scope:local align:4 data:string +@1004 = .data:0x802DA7E4; // type:object size:0x19 scope:local align:4 data:string +@1005 = .data:0x802DA800; // type:object size:0x19 scope:local align:4 data:string +@1006 = .data:0x802DA81C; // type:object size:0x19 scope:local align:4 data:string +@1007 = .data:0x802DA838; // type:object size:0x19 scope:local align:4 data:string +@1008 = .data:0x802DA854; // type:object size:0x17 scope:local align:4 data:string +@1009 = .data:0x802DA86C; // type:object size:0x19 scope:local align:4 data:string +@1010 = .data:0x802DA888; // type:object size:0x19 scope:local align:4 data:string +@1011 = .data:0x802DA8A4; // type:object size:0x18 scope:local align:4 data:string +@1012 = .data:0x802DA8BC; // type:object size:0x18 scope:local align:4 data:string +@1013 = .data:0x802DA8D4; // type:object size:0x18 scope:local align:4 data:string +@1014 = .data:0x802DA8EC; // type:object size:0x18 scope:local align:4 data:string +@1015 = .data:0x802DA904; // type:object size:0x18 scope:local align:4 data:string +@1016 = .data:0x802DA91C; // type:object size:0x19 scope:local align:4 data:string +@1017 = .data:0x802DA938; // type:object size:0x19 scope:local align:4 data:string +@1018 = .data:0x802DA954; // type:object size:0x19 scope:local align:4 data:string +@1019 = .data:0x802DA970; // type:object size:0x19 scope:local align:4 data:string +@1020 = .data:0x802DA98C; // type:object size:0x19 scope:local align:4 data:string +@1021 = .data:0x802DA9A8; // type:object size:0x19 scope:local align:4 data:string +@1022 = .data:0x802DA9C4; // type:object size:0x19 scope:local align:4 data:string +@1023 = .data:0x802DA9E0; // type:object size:0x19 scope:local align:4 data:string +@1024 = .data:0x802DA9FC; // type:object size:0x14 scope:local align:4 data:string +@1025 = .data:0x802DAA10; // type:object size:0x15 scope:local align:4 data:string +@1026 = .data:0x802DAA28; // type:object size:0x18 scope:local align:4 data:string +@1027 = .data:0x802DAA40; // type:object size:0x18 scope:local align:4 data:string +@1028 = .data:0x802DAA58; // type:object size:0x18 scope:local align:4 data:string +@1029 = .data:0x802DAA70; // type:object size:0x19 scope:local align:4 data:string +@1030 = .data:0x802DAA8C; // type:object size:0x18 scope:local align:4 data:string +@1031 = .data:0x802DAAA4; // type:object size:0x18 scope:local align:4 data:string +@1032 = .data:0x802DAABC; // type:object size:0x18 scope:local align:4 data:string +@1033 = .data:0x802DAAD4; // type:object size:0x19 scope:local align:4 data:string +@1034 = .data:0x802DAAF0; // type:object size:0x19 scope:local align:4 data:string +@1035 = .data:0x802DAB0C; // type:object size:0x18 scope:local align:4 data:string +@1036 = .data:0x802DAB24; // type:object size:0x18 scope:local align:4 data:string +@1037 = .data:0x802DAB3C; // type:object size:0x18 scope:local align:4 data:string +@1038 = .data:0x802DAB54; // type:object size:0x18 scope:local align:4 data:string +@1039 = .data:0x802DAB6C; // type:object size:0x19 scope:local align:4 data:string +@1040 = .data:0x802DAB88; // type:object size:0x19 scope:local align:4 data:string +@1041 = .data:0x802DABA4; // type:object size:0x18 scope:local align:4 data:string +@1042 = .data:0x802DABBC; // type:object size:0x18 scope:local align:4 data:string +@1043 = .data:0x802DABD4; // type:object size:0x18 scope:local align:4 data:string +@1044 = .data:0x802DABEC; // type:object size:0x19 scope:local align:4 data:string +@1045 = .data:0x802DAC08; // type:object size:0x18 scope:local align:4 data:string +@1046 = .data:0x802DAC20; // type:object size:0x19 scope:local align:4 data:string +@1047 = .data:0x802DAC3C; // type:object size:0x19 scope:local align:4 data:string +@1048 = .data:0x802DAC58; // type:object size:0x19 scope:local align:4 data:string +@1049 = .data:0x802DAC74; // type:object size:0x15 scope:local align:4 data:string +@1050 = .data:0x802DAC8C; // type:object size:0x15 scope:local align:4 data:string +@1051 = .data:0x802DACA4; // type:object size:0x17 scope:local align:4 data:string +@1052 = .data:0x802DACBC; // type:object size:0x17 scope:local align:4 data:string +@1053 = .data:0x802DACD4; // type:object size:0x19 scope:local align:4 data:string +@1054 = .data:0x802DACF0; // type:object size:0x19 scope:local align:4 data:string +@1055 = .data:0x802DAD0C; // type:object size:0x19 scope:local align:4 data:string +@1056 = .data:0x802DAD28; // type:object size:0x19 scope:local align:4 data:string +@1057 = .data:0x802DAD44; // type:object size:0x18 scope:local align:4 data:string +@1058 = .data:0x802DAD5C; // type:object size:0x19 scope:local align:4 data:string +@1059 = .data:0x802DAD78; // type:object size:0x19 scope:local align:4 data:string +@1060 = .data:0x802DAD94; // type:object size:0x18 scope:local align:4 data:string +@1061 = .data:0x802DADAC; // type:object size:0x18 scope:local align:4 data:string +@1062 = .data:0x802DADC4; // type:object size:0x18 scope:local align:4 data:string +@1063 = .data:0x802DADDC; // type:object size:0x17 scope:local align:4 data:string +@1064 = .data:0x802DADF4; // type:object size:0x19 scope:local align:4 data:string +@1065 = .data:0x802DAE10; // type:object size:0x17 scope:local align:4 data:string +@1066 = .data:0x802DAE28; // type:object size:0x17 scope:local align:4 data:string +@1067 = .data:0x802DAE40; // type:object size:0x17 scope:local align:4 data:string +@1068 = .data:0x802DAE58; // type:object size:0x17 scope:local align:4 data:string +@1069 = .data:0x802DAE70; // type:object size:0x19 scope:local align:4 data:string +@1070 = .data:0x802DAE8C; // type:object size:0x18 scope:local align:4 data:string +@1071 = .data:0x802DAEA4; // type:object size:0x1B scope:local align:4 data:string +@1072 = .data:0x802DAEC0; // type:object size:0x1B scope:local align:4 data:string +@1073 = .data:0x802DAEDC; // type:object size:0x19 scope:local align:4 data:string +@1074 = .data:0x802DAEF8; // type:object size:0x19 scope:local align:4 data:string +@1075 = .data:0x802DAF14; // type:object size:0x18 scope:local align:4 data:string +@1076 = .data:0x802DAF2C; // type:object size:0x18 scope:local align:4 data:string +@1077 = .data:0x802DAF44; // type:object size:0x18 scope:local align:4 data:string +@1078 = .data:0x802DAF5C; // type:object size:0x19 scope:local align:4 data:string +@1079 = .data:0x802DAF78; // type:object size:0x19 scope:local align:4 data:string +@1080 = .data:0x802DAF94; // type:object size:0x17 scope:local align:4 data:string +@1081 = .data:0x802DAFAC; // type:object size:0x19 scope:local align:4 data:string +@1082 = .data:0x802DAFC8; // type:object size:0x19 scope:local align:4 data:string +@1083 = .data:0x802DAFE4; // type:object size:0x19 scope:local align:4 data:string +@1084 = .data:0x802DB000; // type:object size:0x18 scope:local align:4 data:string +@1085 = .data:0x802DB018; // type:object size:0x18 scope:local align:4 data:string +@1086 = .data:0x802DB030; // type:object size:0x19 scope:local align:4 data:string +@1087 = .data:0x802DB04C; // type:object size:0x18 scope:local align:4 data:string +@1088 = .data:0x802DB064; // type:object size:0x19 scope:local align:4 data:string +@1089 = .data:0x802DB080; // type:object size:0x19 scope:local align:4 data:string +@1090 = .data:0x802DB09C; // type:object size:0x19 scope:local align:4 data:string +@1091 = .data:0x802DB0B8; // type:object size:0x19 scope:local align:4 data:string +@1092 = .data:0x802DB0D4; // type:object size:0x19 scope:local align:4 data:string +@1093 = .data:0x802DB0F0; // type:object size:0x18 scope:local align:4 data:string +@1094 = .data:0x802DB108; // type:object size:0x18 scope:local align:4 data:string +@1095 = .data:0x802DB120; // type:object size:0x19 scope:local align:4 data:string +@1096 = .data:0x802DB13C; // type:object size:0x19 scope:local align:4 data:string +@1097 = .data:0x802DB158; // type:object size:0x19 scope:local align:4 data:string +@1098 = .data:0x802DB174; // type:object size:0x19 scope:local align:4 data:string +@1099 = .data:0x802DB190; // type:object size:0x19 scope:local align:4 data:string +@1100 = .data:0x802DB1AC; // type:object size:0x19 scope:local align:4 data:string +@1101 = .data:0x802DB1C8; // type:object size:0x16 scope:local align:4 data:string +@1102 = .data:0x802DB1E0; // type:object size:0x16 scope:local align:4 data:string +@1103 = .data:0x802DB1F8; // type:object size:0x16 scope:local align:4 data:string +@1104 = .data:0x802DB210; // type:object size:0x17 scope:local align:4 data:string +@1105 = .data:0x802DB228; // type:object size:0x17 scope:local align:4 data:string +@1106 = .data:0x802DB240; // type:object size:0x17 scope:local align:4 data:string +@1107 = .data:0x802DB258; // type:object size:0x18 scope:local align:4 data:string +@1108 = .data:0x802DB270; // type:object size:0x18 scope:local align:4 data:string +@1109 = .data:0x802DB288; // type:object size:0x18 scope:local align:4 data:string +@1110 = .data:0x802DB2A0; // type:object size:0x17 scope:local align:4 data:string +@1111 = .data:0x802DB2B8; // type:object size:0x17 scope:local align:4 data:string +@1112 = .data:0x802DB2D0; // type:object size:0x17 scope:local align:4 data:string +@1113 = .data:0x802DB2E8; // type:object size:0x17 scope:local align:4 data:string +@1114 = .data:0x802DB300; // type:object size:0x19 scope:local align:4 data:string +@1115 = .data:0x802DB31C; // type:object size:0x19 scope:local align:4 data:string +@1116 = .data:0x802DB338; // type:object size:0x15 scope:local align:4 data:string +@1117 = .data:0x802DB350; // type:object size:0x19 scope:local align:4 data:string +@1118 = .data:0x802DB36C; // type:object size:0x19 scope:local align:4 data:string +@1119 = .data:0x802DB388; // type:object size:0x19 scope:local align:4 data:string +@1120 = .data:0x802DB3A4; // type:object size:0x19 scope:local align:4 data:string +@1121 = .data:0x802DB3C0; // type:object size:0x17 scope:local align:4 data:string +@1122 = .data:0x802DB3D8; // type:object size:0x17 scope:local align:4 data:string +@1123 = .data:0x802DB3F0; // type:object size:0x17 scope:local align:4 data:string +@1124 = .data:0x802DB408; // type:object size:0x17 scope:local align:4 data:string +@1125 = .data:0x802DB420; // type:object size:0x19 scope:local align:4 data:string +@1126 = .data:0x802DB43C; // type:object size:0x19 scope:local align:4 data:string +@1127 = .data:0x802DB458; // type:object size:0x19 scope:local align:4 data:string +@1128 = .data:0x802DB474; // type:object size:0x19 scope:local align:4 data:string +@1129 = .data:0x802DB490; // type:object size:0x19 scope:local align:4 data:string +@1130 = .data:0x802DB4AC; // type:object size:0x18 scope:local align:4 data:string +@1131 = .data:0x802DB4C4; // type:object size:0x19 scope:local align:4 data:string +@1132 = .data:0x802DB4E0; // type:object size:0x18 scope:local align:4 data:string +@1133 = .data:0x802DB4F8; // type:object size:0x18 scope:local align:4 data:string +@1134 = .data:0x802DB510; // type:object size:0x18 scope:local align:4 data:string +@1135 = .data:0x802DB528; // type:object size:0x18 scope:local align:4 data:string +@1136 = .data:0x802DB540; // type:object size:0x19 scope:local align:4 data:string +@1137 = .data:0x802DB55C; // type:object size:0x19 scope:local align:4 data:string +@1138 = .data:0x802DB578; // type:object size:0x19 scope:local align:4 data:string +@1139 = .data:0x802DB594; // type:object size:0x15 scope:local align:4 data:string +@1140 = .data:0x802DB5AC; // type:object size:0x15 scope:local align:4 data:string +@1141 = .data:0x802DB5C4; // type:object size:0x18 scope:local align:4 data:string +@1142 = .data:0x802DB5DC; // type:object size:0x18 scope:local align:4 data:string +@1143 = .data:0x802DB5F4; // type:object size:0x18 scope:local align:4 data:string +@1144 = .data:0x802DB60C; // type:object size:0x19 scope:local align:4 data:string +@1145 = .data:0x802DB628; // type:object size:0x19 scope:local align:4 data:string +@1146 = .data:0x802DB644; // type:object size:0x16 scope:local align:4 data:string +@1147 = .data:0x802DB65C; // type:object size:0x16 scope:local align:4 data:string +@1148 = .data:0x802DB674; // type:object size:0x18 scope:local align:4 data:string +@1149 = .data:0x802DB68C; // type:object size:0x19 scope:local align:4 data:string +@1150 = .data:0x802DB6A8; // type:object size:0x19 scope:local align:4 data:string +@1151 = .data:0x802DB6C4; // type:object size:0x18 scope:local align:4 data:string +@1152 = .data:0x802DB6DC; // type:object size:0x17 scope:local align:4 data:string +@1153 = .data:0x802DB6F4; // type:object size:0x16 scope:local align:4 data:string +@1154 = .data:0x802DB70C; // type:object size:0x18 scope:local align:4 data:string +@1155 = .data:0x802DB724; // type:object size:0x18 scope:local align:4 data:string +@1156 = .data:0x802DB73C; // type:object size:0x18 scope:local align:4 data:string +@1157 = .data:0x802DB754; // type:object size:0x18 scope:local align:4 data:string +@1158 = .data:0x802DB76C; // type:object size:0x19 scope:local align:4 data:string +@1159 = .data:0x802DB788; // type:object size:0x19 scope:local align:4 data:string +@1160 = .data:0x802DB7A4; // type:object size:0x19 scope:local align:4 data:string +@1161 = .data:0x802DB7C0; // type:object size:0x19 scope:local align:4 data:string +@1162 = .data:0x802DB7DC; // type:object size:0x19 scope:local align:4 data:string +@1163 = .data:0x802DB7F8; // type:object size:0x19 scope:local align:4 data:string +@1164 = .data:0x802DB814; // type:object size:0x19 scope:local align:4 data:string +@1165 = .data:0x802DB830; // type:object size:0x19 scope:local align:4 data:string +@1166 = .data:0x802DB84C; // type:object size:0x19 scope:local align:4 data:string +@1167 = .data:0x802DB868; // type:object size:0x19 scope:local align:4 data:string +@1168 = .data:0x802DB884; // type:object size:0x19 scope:local align:4 data:string +@1169 = .data:0x802DB8A0; // type:object size:0x19 scope:local align:4 data:string +@1170 = .data:0x802DB8BC; // type:object size:0x18 scope:local align:4 data:string +@1171 = .data:0x802DB8D4; // type:object size:0x18 scope:local align:4 data:string +@1172 = .data:0x802DB8EC; // type:object size:0x18 scope:local align:4 data:string +@1173 = .data:0x802DB904; // type:object size:0x18 scope:local align:4 data:string +@1174 = .data:0x802DB91C; // type:object size:0x18 scope:local align:4 data:string +@1175 = .data:0x802DB934; // type:object size:0x18 scope:local align:4 data:string +@1176 = .data:0x802DB94C; // type:object size:0x18 scope:local align:4 data:string +@1177 = .data:0x802DB964; // type:object size:0x18 scope:local align:4 data:string +@1178 = .data:0x802DB97C; // type:object size:0x19 scope:local align:4 data:string +@1179 = .data:0x802DB998; // type:object size:0x19 scope:local align:4 data:string +@1180 = .data:0x802DB9B4; // type:object size:0x18 scope:local align:4 data:string +@1181 = .data:0x802DB9CC; // type:object size:0x18 scope:local align:4 data:string +@1182 = .data:0x802DB9E4; // type:object size:0x18 scope:local align:4 data:string +@1183 = .data:0x802DB9FC; // type:object size:0x19 scope:local align:4 data:string +@1184 = .data:0x802DBA18; // type:object size:0x19 scope:local align:4 data:string +@1185 = .data:0x802DBA34; // type:object size:0x19 scope:local align:4 data:string +ptclLoadInfo = .data:0x802DBA50; // type:object size:0xF90 scope:global align:4 +@1186 = .data:0x802DC9E0; // type:object size:0x1A scope:local align:4 data:string +@1187 = .data:0x802DC9FC; // type:object size:0x1A scope:local align:4 data:string +@1188 = .data:0x802DCA18; // type:object size:0x1A scope:local align:4 data:string +geometryLoadInfo = .data:0x802DCA34; // type:object size:0x30 scope:global align:4 +simplePtclLoadInfo = .data:0x802DCA64; // type:object size:0xC scope:global align:4 +@1628 = .data:0x802DCA70; // type:object size:0xB scope:local align:4 data:string +@1629 = .data:0x802DCA7C; // type:object size:0xC scope:local align:4 data:string +@1630 = .data:0x802DCA88; // type:object size:0xD scope:local align:4 data:string +@1753 = .data:0x802DCA98; // type:object size:0xB scope:local align:4 data:string +@1756 = .data:0x802DCAA4; // type:object size:0x9 scope:local align:4 data:string +@1757 = .data:0x802DCAB0; // type:object size:0xC scope:local align:4 +@1754 = .data:0x802DCABC; // type:object size:0x14 scope:local align:4 +__vt__10EffShpInst = .data:0x802DCAD0; // type:object size:0x10 scope:weak align:4 +@1760 = .data:0x802DCAE0; // type:object size:0xD scope:local align:4 data:string +@1763 = .data:0x802DCB00; // type:object size:0xA scope:local align:4 data:string +@1764 = .data:0x802DCB0C; // type:object size:0x14 scope:local align:4 +__vt__9EffectMgr = .data:0x802DCB20; // type:object size:0x10 scope:weak align:4 +@1765 = .data:0x802DCB30; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectGeometryRegistration = .data:0x802DCB4C; // type:object size:0xC scope:global align:4 +@1766 = .data:0x802DCB58; // type:object size:0xC scope:local align:4 data:string +@1767 = .data:0x802DCB64; // type:object size:0x14 scope:local align:4 +__vt__11EffectShape = .data:0x802DCB78; // type:object size:0x10 scope:weak align:4 +@1768 = .data:0x802DCB88; // type:object size:0x1B scope:local align:4 data:string +__vt__26EffectParticleRegistration = .data:0x802DCBA4; // type:object size:0xC scope:weak align:4 +@1769 = .data:0x802DCBB0; // type:object size:0xD scope:local align:4 data:string +@1772 = .data:0x802DCBC0; // type:object size:0x14 scope:local align:4 +@1770 = .data:0x802DCBD4; // type:object size:0x1C scope:local align:4 +__vt__12SmokeEmitter = .data:0x802DCBF0; // type:object size:0x30 scope:global align:4 +...data.0 = .data:0x802DCC40; // type:label scope:local +@671 = .data:0x802DCC40; // type:object size:0x16 scope:local align:4 data:string +@681 = .data:0x802DCC58; // type:object size:0x12 scope:local align:4 data:string +lpsPos = .data:0x802DCC80; // type:object size:0x30 scope:local align:32 +@703 = .data:0x802DCCB0; // type:object size:0xC scope:local align:4 +@705 = .data:0x802DCCBC; // type:object size:0xC scope:local align:4 +@708 = .data:0x802DCCC8; // type:object size:0xC scope:local align:4 +@710 = .data:0x802DCCD4; // type:object size:0xC scope:local align:4 +@712 = .data:0x802DCCE0; // type:object size:0xC scope:local align:4 +@714 = .data:0x802DCCEC; // type:object size:0xC scope:local align:4 +@716 = .data:0x802DCCF8; // type:object size:0xC scope:local align:4 +@718 = .data:0x802DCD04; // type:object size:0xC scope:local align:4 +@720 = .data:0x802DCD10; // type:object size:0xC scope:local align:4 +@736 = .data:0x802DCD1C; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x802DCD38; // type:label scope:local +@409 = .data:0x802DCD38; // type:object size:0x13 scope:local align:4 data:string +@419 = .data:0x802DCD4C; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802DCD5C; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x802DCD6C; // type:object size:0xD scope:local align:4 data:string +@461 = .data:0x802DCD7C; // type:object size:0xC scope:local align:4 +__vt__Q23zen7PCRData = .data:0x802DCD88; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DCDA8; // type:label scope:local +ami = .data:0x802DCDA8; // type:object size:0x800 scope:local align:4 +check = .data:0x802DD5A8; // type:object size:0x800 scope:local align:4 +cloud = .data:0x802DDDA8; // type:object size:0x800 scope:local align:4 +marble = .data:0x802DE5A8; // type:object size:0x800 scope:local align:4 +noise = .data:0x802DEDA8; // type:object size:0x800 scope:local align:4 +yura = .data:0x802DF5A8; // type:object size:0x800 scope:local align:4 +UseSolidTex__3zen = .data:0x802DFDA8; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x802DFDC0; // type:label scope:local +@618 = .data:0x802DFDC0; // type:object size:0x17 scope:local align:4 data:string +@628 = .data:0x802DFDD8; // type:object size:0x13 scope:local align:4 data:string +@714 = .data:0x802DFDEC; // type:object size:0x11 scope:local align:4 data:string +@716 = .data:0x802DFE00; // type:object size:0xD scope:local align:4 data:string +@717 = .data:0x802DFE10; // type:object size:0x15 scope:local align:4 data:string +@718 = .data:0x802DFE28; // type:object size:0xC scope:local align:4 +@715 = .data:0x802DFE34; // type:object size:0x14 scope:local align:4 +__vt__Q23zen11particleMdl = .data:0x802DFE48; // type:object size:0x10 scope:weak align:4 +__vt__Q23zen15particleMdlBase = .data:0x802DFE68; // type:object size:0x10 scope:weak align:4 +@736 = .data:0x802DFE78; // type:object size:0x16 scope:local align:4 data:string +@737 = .data:0x802DFE90; // type:object size:0x14 scope:local align:4 +__vt__Q23zen16particleChildMdl = .data:0x802DFEA4; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802DFEB8; // type:label scope:local +@1344 = .data:0x802DFEB8; // type:object size:0xE scope:local align:4 data:string +@1354 = .data:0x802DFEC8; // type:object size:0xA scope:local align:4 data:string +@1622 = .data:0x802DFED4; // type:object size:0xC scope:local align:4 data:string +@1634 = .data:0x802DFF0C; // type:object size:0xB scope:local align:4 data:string +@1635 = .data:0x802DFF18; // type:object size:0x14 scope:local align:4 data:string +@1636 = .data:0x802DFF2C; // type:object size:0xC scope:local align:4 data:string +@1637 = .data:0x802DFF38; // type:object size:0xD scope:local align:4 data:string +@1638 = .data:0x802DFF48; // type:object size:0x9 scope:local align:4 data:string +@1639 = .data:0x802DFF54; // type:object size:0x14 scope:local align:4 +@1641 = .data:0x802DFF68; // type:object size:0x2C scope:local align:4 +@1643 = .data:0x802DFF94; // type:object size:0x34 scope:local align:4 +@1633 = .data:0x802DFFC8; // type:object size:0x3C scope:local align:4 +__vt__5YTeki = .data:0x802E0004; // type:object size:0x200 scope:global align:4 +@1712 = .data:0x802E0204; // type:object size:0x29 scope:local align:4 data:string +@1713 = .data:0x802E023C; // type:object size:0x1D scope:local align:4 data:string +__vt__28TAIeffectAttackEventCallBack = .data:0x802E025C; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802E0290; // type:label scope:local +@1737 = .data:0x802E0290; // type:object size:0xC scope:local align:4 data:string +@1948 = .data:0x802E029C; // type:object size:0x13 scope:local align:4 +@1951 = .data:0x802E02B0; // type:object size:0x13 scope:local align:4 +@1953 = .data:0x802E02C4; // type:object size:0xB scope:local align:4 +@1954 = .data:0x802E02D0; // type:object size:0x17 scope:local align:4 +@2533 = .data:0x802E02E8; // type:object size:0x1B scope:local align:4 data:string +@2534 = .data:0x802E0304; // type:object size:0x1D scope:local align:4 data:string +@2535 = .data:0x802E0324; // type:object size:0x1C scope:local align:4 data:string +@2536 = .data:0x802E0340; // type:object size:0x1C scope:local align:4 data:string +@2537 = .data:0x802E035C; // type:object size:0x1F scope:local align:4 data:string +@2538 = .data:0x802E037C; // type:object size:0x1F scope:local align:4 data:string +@2539 = .data:0x802E039C; // type:object size:0x1C scope:local align:4 data:string +@2540 = .data:0x802E03B8; // type:object size:0x1C scope:local align:4 data:string +@2541 = .data:0x802E03D4; // type:object size:0x1D scope:local align:4 data:string +@2542 = .data:0x802E03F4; // type:object size:0x1C scope:local align:4 data:string +@2543 = .data:0x802E0410; // type:object size:0x1C scope:local align:4 data:string +@2544 = .data:0x802E042C; // type:object size:0x11 scope:local align:4 data:string +@2546 = .data:0x802E0440; // type:object size:0xD scope:local align:4 data:string +@2545 = .data:0x802E0450; // type:object size:0xC scope:local align:4 +__vt__16TAItankAnimation = .data:0x802E045C; // type:object size:0xC scope:global align:4 +@2547 = .data:0x802E0468; // type:object size:0x10 scope:local align:4 data:string +@2549 = .data:0x802E0478; // type:object size:0xD scope:local align:4 data:string +@2550 = .data:0x802E0488; // type:object size:0xC scope:local align:4 data:string +@2551 = .data:0x802E0494; // type:object size:0xC scope:local align:4 +@2548 = .data:0x802E04A0; // type:object size:0x14 scope:local align:4 +__vt__15TAItankStrategy = .data:0x802E04B4; // type:object size:0x28 scope:global align:4 +@2552 = .data:0x802E04DC; // type:object size:0xF scope:local align:4 data:string +@2554 = .data:0x802E04EC; // type:object size:0xA scope:local align:4 data:string +@2553 = .data:0x802E04F8; // type:object size:0xC scope:local align:4 +__vt__14TAIAnoReaction = .data:0x802E0504; // type:object size:0x1C scope:weak align:4 +@2563 = .data:0x802E0520; // type:object size:0xD scope:local align:4 data:string +@2564 = .data:0x802E0530; // type:object size:0xC scope:local align:4 +__vt__12TAIAinitTank = .data:0x802E053C; // type:object size:0x1C scope:weak align:4 +@2568 = .data:0x802E0558; // type:object size:0x15 scope:local align:4 data:string +@2569 = .data:0x802E0570; // type:object size:0xC scope:local align:4 +__vt__20TAIAoutsideTerritory = .data:0x802E057C; // type:object size:0x1C scope:weak align:4 +@2610 = .data:0x802E0598; // type:object size:0x11 scope:local align:4 data:string +@2612 = .data:0x802E05AC; // type:object size:0xB scope:local align:4 data:string +@2613 = .data:0x802E05B8; // type:object size:0xC scope:local align:4 +@2614 = .data:0x802E05C4; // type:object size:0xD scope:local align:4 data:string +@2615 = .data:0x802E05D4; // type:object size:0x14 scope:local align:4 +@2611 = .data:0x802E05E8; // type:object size:0x1C scope:local align:4 +__vt__16TAIAflickingTank = .data:0x802E0604; // type:object size:0x24 scope:weak align:4 +@2618 = .data:0x802E0628; // type:object size:0x13 scope:local align:4 data:string +@2620 = .data:0x802E063C; // type:object size:0x12 scope:local align:4 data:string +@2621 = .data:0x802E0650; // type:object size:0xC scope:local align:4 +@2622 = .data:0x802E065C; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E066C; // type:object size:0x14 scope:local align:4 +@2619 = .data:0x802E0680; // type:object size:0x1C scope:local align:4 +__vt__18TAIAfireBreathTank = .data:0x802E069C; // type:object size:0x24 scope:weak align:4 +@2634 = .data:0x802E06C0; // type:object size:0xB scope:local align:4 data:string +@2636 = .data:0x802E06CC; // type:object size:0x17 scope:local align:4 data:string +@2635 = .data:0x802E06E4; // type:object size:0xC scope:local align:4 +__vt__10FireEffect = .data:0x802E06F0; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17CallBack1 = .data:0x802E06FC; // type:object size:0xC scope:weak align:4 +@2715 = .data:0x802E0708; // type:object size:0x11 scope:local align:4 data:string +@2717 = .data:0x802E071C; // type:object size:0xD scope:local align:4 data:string +@2718 = .data:0x802E072C; // type:object size:0x14 scope:local align:4 +@2716 = .data:0x802E0740; // type:object size:0x1C scope:local align:4 +__vt__16TAIAstepBackTank = .data:0x802E075C; // type:object size:0x20 scope:weak align:4 +@2724 = .data:0x802E077C; // type:object size:0x1D scope:local align:4 data:string +@2726 = .data:0x802E079C; // type:object size:0x17 scope:local align:4 data:string +@2727 = .data:0x802E07B4; // type:object size:0xC scope:local align:4 +@2728 = .data:0x802E07C0; // type:object size:0x19 scope:local align:4 data:string +@2729 = .data:0x802E07DC; // type:object size:0x14 scope:local align:4 +@2725 = .data:0x802E07F0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAoutsideOptionalRangeTank = .data:0x802E080C; // type:object size:0x28 scope:weak align:4 +@2735 = .data:0x802E0834; // type:object size:0x1A scope:local align:4 data:string +@2737 = .data:0x802E0850; // type:object size:0x15 scope:local align:4 data:string +@2738 = .data:0x802E0868; // type:object size:0xC scope:local align:4 +@2736 = .data:0x802E0874; // type:object size:0x14 scope:local align:4 +__vt__25TAIAattackableAngleTarget = .data:0x802E0888; // type:object size:0x20 scope:weak align:4 +@2740 = .data:0x802E08A8; // type:object size:0xF scope:local align:4 data:string +@2742 = .data:0x802E08B8; // type:object size:0x11 scope:local align:4 data:string +@2743 = .data:0x802E08CC; // type:object size:0x14 scope:local align:4 +@2744 = .data:0x802E08E0; // type:object size:0xB scope:local align:4 data:string +@2745 = .data:0x802E08EC; // type:object size:0x1C scope:local align:4 +@2741 = .data:0x802E0908; // type:object size:0x24 scope:local align:4 +__vt__14TAIApatrolTank = .data:0x802E092C; // type:object size:0x24 scope:weak align:4 +@2756 = .data:0x802E096C; // type:object size:0x12 scope:local align:4 data:string +@2759 = .data:0x802E0980; // type:object size:0x9 scope:local align:4 data:string +@2760 = .data:0x802E098C; // type:object size:0xC scope:local align:4 +@2762 = .data:0x802E0998; // type:object size:0x14 scope:local align:4 +@2763 = .data:0x802E09AC; // type:object size:0xF scope:local align:4 data:string +@2764 = .data:0x802E09BC; // type:object size:0x1C scope:local align:4 +@2757 = .data:0x802E09D8; // type:object size:0x24 scope:local align:4 +__vt__17TAItankParameters = .data:0x802E09FC; // type:object size:0x30 scope:weak align:4 +@2774 = .data:0x802E0A2C; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E0A50; // type:object size:0x1D scope:local align:4 data:string +@2775 = .data:0x802E0A70; // type:object size:0xC scope:local align:4 +__vt__32TAIeffectAttackEventCallBackTank = .data:0x802E0A7C; // type:object size:0x24 scope:weak align:4 +@2868 = .data:0x802E0AA0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E0B00; // type:label scope:local +@1737 = .data:0x802E0B00; // type:object size:0xB scope:local align:4 data:string +@2060 = .data:0x802E0B0C; // type:object size:0x19 scope:local align:4 +@2061 = .data:0x802E0B28; // type:object size:0x17 scope:local align:4 +@2062 = .data:0x802E0B40; // type:object size:0x17 scope:local align:4 +@2063 = .data:0x802E0B58; // type:object size:0x13 scope:local align:4 +@2066 = .data:0x802E0B6C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E0B84; // type:object size:0x17 scope:local align:4 +@2069 = .data:0x802E0B9C; // type:object size:0x1D scope:local align:4 +@2071 = .data:0x802E0BBC; // type:object size:0x15 scope:local align:4 +@2072 = .data:0x802E0BD4; // type:object size:0x1B scope:local align:4 +@2073 = .data:0x802E0BF0; // type:object size:0xF scope:local align:4 +@2577 = .data:0x802E0C00; // type:object size:0x1B scope:local align:4 data:string +@2578 = .data:0x802E0C1C; // type:object size:0x1C scope:local align:4 data:string +@2579 = .data:0x802E0C38; // type:object size:0x1B scope:local align:4 data:string +@2580 = .data:0x802E0C54; // type:object size:0x1B scope:local align:4 data:string +@2581 = .data:0x802E0C70; // type:object size:0x1E scope:local align:4 data:string +@2582 = .data:0x802E0C90; // type:object size:0x1E scope:local align:4 data:string +@2583 = .data:0x802E0CB0; // type:object size:0x1B scope:local align:4 data:string +@2584 = .data:0x802E0CCC; // type:object size:0x1B scope:local align:4 data:string +@2585 = .data:0x802E0CE8; // type:object size:0x1C scope:local align:4 data:string +@2586 = .data:0x802E0D04; // type:object size:0x1B scope:local align:4 data:string +@2587 = .data:0x802E0D20; // type:object size:0x1B scope:local align:4 data:string +@2588 = .data:0x802E0D3C; // type:object size:0x10 scope:local align:4 data:string +@2590 = .data:0x802E0D4C; // type:object size:0xD scope:local align:4 data:string +@2589 = .data:0x802E0D5C; // type:object size:0xC scope:local align:4 +__vt__15TAImarAnimation = .data:0x802E0D68; // type:object size:0xC scope:global align:4 +@2591 = .data:0x802E0D74; // type:object size:0xF scope:local align:4 data:string +@2593 = .data:0x802E0D84; // type:object size:0xD scope:local align:4 data:string +@2594 = .data:0x802E0D94; // type:object size:0xC scope:local align:4 data:string +@2595 = .data:0x802E0DA0; // type:object size:0xC scope:local align:4 +@2592 = .data:0x802E0DAC; // type:object size:0x14 scope:local align:4 +__vt__14TAImarStrategy = .data:0x802E0DC0; // type:object size:0x28 scope:global align:4 +@2596 = .data:0x802E0DE8; // type:object size:0xC scope:local align:4 data:string +@2598 = .data:0x802E0DF4; // type:object size:0xA scope:local align:4 data:string +@2597 = .data:0x802E0E00; // type:object size:0xC scope:local align:4 +__vt__11TAIAinitMar = .data:0x802E0E0C; // type:object size:0x1C scope:weak align:4 +@2608 = .data:0x802E0E28; // type:object size:0xE scope:local align:4 data:string +@2609 = .data:0x802E0E38; // type:object size:0xC scope:local align:4 +__vt__13TAIAwatchNavi = .data:0x802E0E44; // type:object size:0x1C scope:weak align:4 +@2620 = .data:0x802E0E60; // type:object size:0x21 scope:local align:4 data:string +@2622 = .data:0x802E0E84; // type:object size:0xF scope:local align:4 data:string +@2623 = .data:0x802E0E94; // type:object size:0x12 scope:local align:4 data:string +@2624 = .data:0x802E0EA8; // type:object size:0xC scope:local align:4 +@2625 = .data:0x802E0EB4; // type:object size:0x11 scope:local align:4 data:string +@2626 = .data:0x802E0EC8; // type:object size:0x14 scope:local align:4 +@2627 = .data:0x802E0EDC; // type:object size:0x1E scope:local align:4 data:string +@2628 = .data:0x802E0EFC; // type:object size:0x24 scope:local align:4 +@2621 = .data:0x802E0F20; // type:object size:0x2C scope:local align:4 +__vt__32TAIAflyingDistanceInTerritoryMar = .data:0x802E0F4C; // type:object size:0x34 scope:weak align:4 +@2637 = .data:0x802E0F80; // type:object size:0x15 scope:local align:4 data:string +@2638 = .data:0x802E0F98; // type:object size:0xC scope:local align:4 +@2680 = .data:0x802E0FC0; // type:object size:0x12 scope:local align:4 data:string +@2682 = .data:0x802E0FD4; // type:object size:0xF scope:local align:4 data:string +@2683 = .data:0x802E0FE4; // type:object size:0x14 scope:local align:4 +@2681 = .data:0x802E0FF8; // type:object size:0x1C scope:local align:4 +__vt__17TAIAfireBreathMar = .data:0x802E1014; // type:object size:0x24 scope:weak align:4 +@2692 = .data:0x802E1038; // type:object size:0xD scope:local align:4 data:string +@2694 = .data:0x802E1048; // type:object size:0x17 scope:local align:4 data:string +@2693 = .data:0x802E1060; // type:object size:0xC scope:local align:4 +__vt__12BreathEffect = .data:0x802E106C; // type:object size:0xC scope:weak align:4 +@2764 = .data:0x802E1084; // type:object size:0x16 scope:local align:4 data:string +@2766 = .data:0x802E109C; // type:object size:0x13 scope:local align:4 data:string +@2767 = .data:0x802E10B0; // type:object size:0x14 scope:local align:4 +@2765 = .data:0x802E10C4; // type:object size:0x1C scope:local align:4 +__vt__21TAIAflyingDistanceMar = .data:0x802E10E0; // type:object size:0x30 scope:weak align:4 +__vt__14FlyingDistance = .data:0x802E1110; // type:object size:0xC scope:weak align:4 +@2855 = .data:0x802E111C; // type:object size:0x14 scope:local align:4 data:string +@2857 = .data:0x802E1130; // type:object size:0x12 scope:local align:4 data:string +@2858 = .data:0x802E1144; // type:object size:0xC scope:local align:4 +@2856 = .data:0x802E1150; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtimerTakeOffMar = .data:0x802E1164; // type:object size:0x20 scope:weak align:4 +__vt__17TAIAtimerReaction = .data:0x802E1184; // type:object size:0x20 scope:weak align:4 +@2875 = .data:0x802E11A4; // type:object size:0xF scope:local align:4 data:string +@2877 = .data:0x802E11B4; // type:object size:0xC scope:local align:4 data:string +@2878 = .data:0x802E11C0; // type:object size:0x14 scope:local align:4 +@2876 = .data:0x802E11D4; // type:object size:0x1C scope:local align:4 +__vt__14TAIAtakeOffMar = .data:0x802E11F0; // type:object size:0x20 scope:weak align:4 +@2887 = .data:0x802E1210; // type:object size:0xF scope:local align:4 data:string +@2888 = .data:0x802E1220; // type:object size:0xC scope:local align:4 +@2890 = .data:0x802E1248; // type:object size:0x14 scope:local align:4 data:string +@2892 = .data:0x802E125C; // type:object size:0x11 scope:local align:4 data:string +@2893 = .data:0x802E1270; // type:object size:0xC scope:local align:4 +@2891 = .data:0x802E127C; // type:object size:0x14 scope:local align:4 +__vt__19TAIAstickingPikiMar = .data:0x802E1290; // type:object size:0x20 scope:weak align:4 +@2899 = .data:0x802E12B0; // type:object size:0x12 scope:local align:4 data:string +@2901 = .data:0x802E12C4; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E12D4; // type:object size:0xC scope:local align:4 +@2900 = .data:0x802E12E0; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflickCheckMar = .data:0x802E12F4; // type:object size:0x20 scope:weak align:4 +@2907 = .data:0x802E1314; // type:object size:0xF scope:local align:4 data:string +@2909 = .data:0x802E1324; // type:object size:0xC scope:local align:4 data:string +@2910 = .data:0x802E1330; // type:object size:0x14 scope:local align:4 +@2908 = .data:0x802E1344; // type:object size:0x1C scope:local align:4 +__vt__14TAIAlandingMar = .data:0x802E1360; // type:object size:0x20 scope:weak align:4 +@2924 = .data:0x802E1380; // type:object size:0x17 scope:local align:4 data:string +@2925 = .data:0x802E1398; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMarFly = .data:0x802E13AC; // type:object size:0x20 scope:weak align:4 +@2930 = .data:0x802E13CC; // type:object size:0x10 scope:local align:4 data:string +@2932 = .data:0x802E13DC; // type:object size:0xB scope:local align:4 data:string +@2933 = .data:0x802E13E8; // type:object size:0xC scope:local align:4 +@2934 = .data:0x802E13F4; // type:object size:0xD scope:local align:4 data:string +@2935 = .data:0x802E1404; // type:object size:0x14 scope:local align:4 +@2931 = .data:0x802E1418; // type:object size:0x1C scope:local align:4 +__vt__15TAIAflickingMar = .data:0x802E1434; // type:object size:0x24 scope:weak align:4 +@2969 = .data:0x802E1458; // type:object size:0xC scope:local align:4 data:string +@2979 = .data:0x802E1490; // type:object size:0x17 scope:local align:4 data:string +@2980 = .data:0x802E14A8; // type:object size:0xC scope:local align:4 +__vt__22TAIAflickCheckTimerMar = .data:0x802E14B4; // type:object size:0x1C scope:weak align:4 +@3014 = .data:0x802E14D0; // type:object size:0xE scope:local align:4 data:string +@3016 = .data:0x802E14E0; // type:object size:0xA scope:local align:4 data:string +@3015 = .data:0x802E14EC; // type:object size:0xC scope:local align:4 +@3018 = .data:0x802E1510; // type:object size:0x12 scope:local align:4 data:string +@3020 = .data:0x802E1524; // type:object size:0xF scope:local align:4 data:string +@3021 = .data:0x802E1534; // type:object size:0xC scope:local align:4 +@3019 = .data:0x802E1540; // type:object size:0x14 scope:local align:4 +__vt__17TAIAflyingBaseMar = .data:0x802E1554; // type:object size:0x20 scope:weak align:4 +@3026 = .data:0x802E1574; // type:object size:0xD scope:local align:4 data:string +@3028 = .data:0x802E1584; // type:object size:0xA scope:local align:4 data:string +@3029 = .data:0x802E1590; // type:object size:0x14 scope:local align:4 +@3027 = .data:0x802E15A4; // type:object size:0x1C scope:local align:4 +__vt__12TAIAdyingMar = .data:0x802E15C0; // type:object size:0x1C scope:weak align:4 +@3073 = .data:0x802E15F8; // type:object size:0x11 scope:local align:4 data:string +@3076 = .data:0x802E160C; // type:object size:0x9 scope:local align:4 data:string +@3077 = .data:0x802E1618; // type:object size:0xC scope:local align:4 +@3079 = .data:0x802E1624; // type:object size:0x14 scope:local align:4 +@3080 = .data:0x802E1638; // type:object size:0xF scope:local align:4 data:string +@3081 = .data:0x802E1648; // type:object size:0x1C scope:local align:4 +@3074 = .data:0x802E1664; // type:object size:0x24 scope:local align:4 +__vt__16TAImarParameters = .data:0x802E1688; // type:object size:0x30 scope:weak align:4 +@3091 = .data:0x802E16B8; // type:object size:0x20 scope:local align:4 data:string +@3093 = .data:0x802E16D8; // type:object size:0x1D scope:local align:4 data:string +@3092 = .data:0x802E16F8; // type:object size:0xC scope:local align:4 +__vt__31TAIeffectAttackEventCallBackMar = .data:0x802E1704; // type:object size:0x24 scope:weak align:4 +...data.0 = .data:0x802E1750; // type:label scope:local +@1728 = .data:0x802E1750; // type:object size:0x11 scope:local align:4 data:string +@1738 = .data:0x802E1764; // type:object size:0xD scope:local align:4 data:string +@1906 = .data:0x802E1774; // type:object size:0x12 scope:local align:4 data:string +@1908 = .data:0x802E1788; // type:object size:0xA scope:local align:4 data:string +@1909 = .data:0x802E1794; // type:object size:0xC scope:local align:4 data:string +@1910 = .data:0x802E17A0; // type:object size:0xC scope:local align:4 +@1907 = .data:0x802E17AC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAinWaterDamage = .data:0x802E17C0; // type:object size:0x1C scope:global align:4 +__vt__11TAIAinWater = .data:0x802E17DC; // type:object size:0x1C scope:global align:4 +@1917 = .data:0x802E17F8; // type:object size:0xB scope:local align:4 data:string +@1918 = .data:0x802E1804; // type:object size:0xC scope:local align:4 +__vt__10TAIAdamage = .data:0x802E1810; // type:object size:0x20 scope:global align:4 +@1920 = .data:0x802E1830; // type:object size:0x16 scope:local align:4 data:string +@1922 = .data:0x802E1848; // type:object size:0xB scope:local align:4 data:string +@1923 = .data:0x802E1854; // type:object size:0xC scope:local align:4 +@1924 = .data:0x802E1860; // type:object size:0xA scope:local align:4 data:string +@1925 = .data:0x802E186C; // type:object size:0x14 scope:local align:4 +@1926 = .data:0x802E1880; // type:object size:0x11 scope:local align:4 data:string +@1927 = .data:0x802E1894; // type:object size:0x1C scope:local align:4 +@1921 = .data:0x802E18B0; // type:object size:0x24 scope:local align:4 +__vt__21TAIAdyingCrushKabekui = .data:0x802E18D4; // type:object size:0x1C scope:global align:4 +__vt__16TAIAdyingKabekui = .data:0x802E18F0; // type:object size:0x1C scope:global align:4 +__vt__9TAIAdying = .data:0x802E190C; // type:object size:0x1C scope:global align:4 +@1929 = .data:0x802E1928; // type:object size:0xC scope:local align:4 +__vt__7TAIAdie = .data:0x802E1934; // type:object size:0x1C scope:global align:4 +@1931 = .data:0x802E1950; // type:object size:0xE scope:local align:4 data:string +@1932 = .data:0x802E1960; // type:object size:0xC scope:local align:4 +__vt__13TAIAdeadCheck = .data:0x802E196C; // type:object size:0x1C scope:global align:4 +@1933 = .data:0x802E1988; // type:object size:0x17 scope:local align:4 data:string +@1934 = .data:0x802E19A0; // type:object size:0xC scope:local align:4 +__vt__22TAIAhitCheckFlyingPiki = .data:0x802E19AC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E19C8; // type:label scope:local +@1788 = .data:0x802E19C8; // type:object size:0xD scope:local align:4 data:string +@1798 = .data:0x802E19D8; // type:object size:0x9 scope:local align:4 data:string +@3938 = .data:0x802E19E4; // type:object size:0xC scope:local align:4 data:string +@3940 = .data:0x802E19F0; // type:object size:0xA scope:local align:4 data:string +@3941 = .data:0x802E19FC; // type:object size:0x12 scope:local align:4 data:string +@3942 = .data:0x802E1A10; // type:object size:0xC scope:local align:4 +@3939 = .data:0x802E1A1C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAtakeOff = .data:0x802E1A30; // type:object size:0x20 scope:global align:4 +@3949 = .data:0x802E1A50; // type:object size:0xC scope:local align:4 data:string +@3950 = .data:0x802E1A5C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAlanding = .data:0x802E1A70; // type:object size:0x20 scope:global align:4 +@3951 = .data:0x802E1A90; // type:object size:0xC scope:local align:4 data:string +@3952 = .data:0x802E1A9C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAdescent = .data:0x802E1AB0; // type:object size:0x24 scope:global align:4 +@3953 = .data:0x802E1AD4; // type:object size:0x13 scope:local align:4 data:string +@3955 = .data:0x802E1AE8; // type:object size:0xF scope:local align:4 data:string +@3954 = .data:0x802E1AF8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAflyingDistance = .data:0x802E1B0C; // type:object size:0x2C scope:global align:4 +@3956 = .data:0x802E1B38; // type:object size:0x1E scope:local align:4 data:string +@3958 = .data:0x802E1B58; // type:object size:0x11 scope:local align:4 data:string +@3959 = .data:0x802E1B6C; // type:object size:0x14 scope:local align:4 +@3957 = .data:0x802E1B80; // type:object size:0x24 scope:local align:4 +__vt__29TAIAflyingDistanceInTerritory = .data:0x802E1BA4; // type:object size:0x30 scope:global align:4 +__vt__16TAIAflyingToGoal = .data:0x802E1BD4; // type:object size:0x24 scope:global align:4 +@3960 = .data:0x802E1BF8; // type:object size:0x16 scope:local align:4 data:string +@3961 = .data:0x802E1C10; // type:object size:0xC scope:local align:4 +__vt__21TAIAflyingInTerritory = .data:0x802E1C1C; // type:object size:0x1C scope:global align:4 +@3962 = .data:0x802E1C38; // type:object size:0xF scope:local align:4 data:string +@3963 = .data:0x802E1C48; // type:object size:0xC scope:local align:4 +__vt__14TAIAflyingBase = .data:0x802E1C54; // type:object size:0x20 scope:global align:4 +@3964 = .data:0x802E1C74; // type:object size:0x1D scope:local align:4 data:string +@3965 = .data:0x802E1C94; // type:object size:0x14 scope:local align:4 +__vt__28TAIAgoingHomePriorityFaceDir = .data:0x802E1CA8; // type:object size:0x1C scope:global align:4 +@3966 = .data:0x802E1CC4; // type:object size:0xE scope:local align:4 data:string +@3967 = .data:0x802E1CD4; // type:object size:0x14 scope:local align:4 +__vt__13TAIAgoingHome = .data:0x802E1CE8; // type:object size:0x1C scope:global align:4 +@3968 = .data:0x802E1D04; // type:object size:0xD scope:local align:4 data:string +@3970 = .data:0x802E1D14; // type:object size:0x11 scope:local align:4 data:string +@3971 = .data:0x802E1D28; // type:object size:0x14 scope:local align:4 +@3969 = .data:0x802E1D3C; // type:object size:0x1C scope:local align:4 +__vt__12TAIAturnHome = .data:0x802E1D58; // type:object size:0x1C scope:global align:4 +@3972 = .data:0x802E1D74; // type:object size:0xD scope:local align:4 data:string +@3973 = .data:0x802E1D84; // type:object size:0x14 scope:local align:4 +__vt__12TAIAstepBack = .data:0x802E1D98; // type:object size:0x20 scope:global align:4 +@3974 = .data:0x802E1DB8; // type:object size:0xB scope:local align:4 data:string +@3976 = .data:0x802E1DC4; // type:object size:0x11 scope:local align:4 data:string +@3977 = .data:0x802E1DD8; // type:object size:0x14 scope:local align:4 +@3975 = .data:0x802E1DEC; // type:object size:0x1C scope:local align:4 +__vt__10TAIApatrol = .data:0x802E1E08; // type:object size:0x24 scope:global align:4 +@3978 = .data:0x802E1E2C; // type:object size:0x9 scope:local align:4 data:string +@3979 = .data:0x802E1E38; // type:object size:0x14 scope:local align:4 +__vt__8TAIAwait = .data:0x802E1E4C; // type:object size:0x20 scope:global align:4 +@3980 = .data:0x802E1E6C; // type:object size:0x16 scope:local align:4 data:string +@3981 = .data:0x802E1E84; // type:object size:0x1C scope:local align:4 +__vt__21TAIAturnFocusCreature = .data:0x802E1EA0; // type:object size:0x20 scope:global align:4 +__vt__16TAIAturnOccasion = .data:0x802E1EC0; // type:object size:0x1C scope:global align:4 +@3982 = .data:0x802E1EDC; // type:object size:0xF scope:local align:4 data:string +@3983 = .data:0x802E1EEC; // type:object size:0x14 scope:local align:4 +__vt__14TAIArandomWalk = .data:0x802E1F00; // type:object size:0x1C scope:global align:4 +@3984 = .data:0x802E1F1C; // type:object size:0x9 scope:local align:4 data:string +@3985 = .data:0x802E1F28; // type:object size:0xC scope:local align:4 +__vt__8TAIAstop = .data:0x802E1F34; // type:object size:0x1C scope:global align:4 +__vt__16TAIAturnToTarget = .data:0x802E1F50; // type:object size:0x20 scope:global align:4 +@3987 = .data:0x802E1F70; // type:object size:0xF scope:local align:4 data:string +@3988 = .data:0x802E1F80; // type:object size:0x14 scope:local align:4 +__vt__14TAIAlookAround = .data:0x802E1F94; // type:object size:0x1C scope:global align:4 +@3989 = .data:0x802E1FB0; // type:object size:0x22 scope:local align:4 data:string +@3990 = .data:0x802E1FD4; // type:object size:0x14 scope:local align:4 +__vt__33TAIAapproachTargetPriorityFaceDir = .data:0x802E1FE8; // type:object size:0x20 scope:global align:4 +@3991 = .data:0x802E2008; // type:object size:0x1C scope:local align:4 data:string +@3992 = .data:0x802E2024; // type:object size:0x14 scope:local align:4 +__vt__27TAIAgoTargetPriorityFaceDir = .data:0x802E2038; // type:object size:0x24 scope:global align:4 +@3993 = .data:0x802E205C; // type:object size:0xD scope:local align:4 data:string +@3994 = .data:0x802E206C; // type:object size:0x14 scope:local align:4 +__vt__12TAIAgoTarget = .data:0x802E2080; // type:object size:0x20 scope:global align:4 +@3995 = .data:0x802E20A0; // type:object size:0x19 scope:local align:4 data:string +@3996 = .data:0x802E20BC; // type:object size:0xC scope:local align:4 +__vt__24TAIAsetTargetPointCircle = .data:0x802E20C8; // type:object size:0x1C scope:global align:4 +@3997 = .data:0x802E20E4; // type:object size:0x1F scope:local align:4 data:string +@3998 = .data:0x802E2104; // type:object size:0xC scope:local align:4 +__vt__30TAIAsetTargetPointCircleRandom = .data:0x802E2110; // type:object size:0x1C scope:global align:4 +@3999 = .data:0x802E212C; // type:object size:0xF scope:local align:4 data:string +@4000 = .data:0x802E213C; // type:object size:0x1C scope:local align:4 +__vt__14TAIAgoGoalPath = .data:0x802E2158; // type:object size:0x24 scope:global align:4 +@4001 = .data:0x802E217C; // type:object size:0x1D scope:local align:4 data:string +@4002 = .data:0x802E219C; // type:object size:0xC scope:local align:4 +__vt__28TAIAsetTargetPointWorkObject = .data:0x802E21A8; // type:object size:0x1C scope:global align:4 +@4003 = .data:0x802E21C4; // type:object size:0x12 scope:local align:4 data:string +@4005 = .data:0x802E21D8; // type:object size:0xB scope:local align:4 data:string +@4006 = .data:0x802E21E4; // type:object size:0xC scope:local align:4 +@4007 = .data:0x802E21F0; // type:object size:0x13 scope:local align:4 data:string +@4008 = .data:0x802E2204; // type:object size:0x14 scope:local align:4 +@4004 = .data:0x802E2218; // type:object size:0x1C scope:local align:4 +__vt__17TAIAappearKabekui = .data:0x802E2234; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E2250; // type:label scope:local +@1116 = .data:0x802E2250; // type:object size:0xF scope:local align:4 data:string +@1126 = .data:0x802E2260; // type:object size:0xB scope:local align:4 data:string +@1245 = .data:0x802E226C; // type:object size:0xF scope:local align:4 data:string +@1247 = .data:0x802E227C; // type:object size:0xA scope:local align:4 data:string +@1248 = .data:0x802E2288; // type:object size:0x12 scope:local align:4 data:string +@1249 = .data:0x802E229C; // type:object size:0xC scope:local align:4 +@1246 = .data:0x802E22A8; // type:object size:0x14 scope:local align:4 +__vt__14TAIAmotionLoop = .data:0x802E22BC; // type:object size:0x20 scope:global align:4 +__vt__17TAIAreserveMotion = .data:0x802E22DC; // type:object size:0x1C scope:global align:4 +@1256 = .data:0x802E22F8; // type:object size:0xC scope:local align:4 +__vt__10TAIAmotion = .data:0x802E2304; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E2340; // type:label scope:local +@1569 = .data:0x802E2340; // type:object size:0xE scope:local align:4 data:string +@1579 = .data:0x802E2350; // type:object size:0xA scope:local align:4 data:string +@2176 = .data:0x802E235C; // type:object size:0x13 scope:local align:4 data:string +@2178 = .data:0x802E2370; // type:object size:0xA scope:local align:4 data:string +@2177 = .data:0x802E237C; // type:object size:0xC scope:local align:4 +__vt__18TAIAcheckTurnAngle = .data:0x802E2388; // type:object size:0x1C scope:global align:4 +@2185 = .data:0x802E23A4; // type:object size:0x13 scope:local align:4 data:string +@2186 = .data:0x802E23B8; // type:object size:0xC scope:local align:4 +__vt__18TAIAdistanceTarget = .data:0x802E23C4; // type:object size:0x1C scope:global align:4 +@2187 = .data:0x802E23E0; // type:object size:0xE scope:local align:4 data:string +@2189 = .data:0x802E23F0; // type:object size:0xA scope:local align:4 data:string +@2188 = .data:0x802E23FC; // type:object size:0xC scope:local align:4 +@2191 = .data:0x802E2420; // type:object size:0x11 scope:local align:4 data:string +@2192 = .data:0x802E2434; // type:object size:0xC scope:local align:4 +__vt__16TAIAstickingPiki = .data:0x802E2440; // type:object size:0x20 scope:global align:4 +@2194 = .data:0x802E2460; // type:object size:0x14 scope:local align:4 data:string +@2195 = .data:0x802E2474; // type:object size:0xC scope:local align:4 +__vt__19TAIAunvisibleTarget = .data:0x802E2480; // type:object size:0x1C scope:global align:4 +@2197 = .data:0x802E249C; // type:object size:0x15 scope:local align:4 data:string +@2198 = .data:0x802E24B4; // type:object size:0xC scope:local align:4 +__vt__20TAIAattackableTarget = .data:0x802E24C0; // type:object size:0x20 scope:global align:4 +@2199 = .data:0x802E24E0; // type:object size:0x10 scope:local align:4 data:string +@2200 = .data:0x802E24F0; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisiblePiki = .data:0x802E24FC; // type:object size:0x1C scope:global align:4 +@2201 = .data:0x802E2518; // type:object size:0x10 scope:local align:4 data:string +@2202 = .data:0x802E2528; // type:object size:0xC scope:local align:4 +__vt__15TAIAvisibleNavi = .data:0x802E2534; // type:object size:0x1C scope:global align:4 +@2203 = .data:0x802E2550; // type:object size:0x1E scope:local align:4 data:string +@2204 = .data:0x802E2570; // type:object size:0xC scope:local align:4 +__vt__29TAIAoutsideTerritoryRangeNavi = .data:0x802E257C; // type:object size:0x1C scope:global align:4 +@2205 = .data:0x802E2598; // type:object size:0x1D scope:local align:4 data:string +@2206 = .data:0x802E25B8; // type:object size:0xC scope:local align:4 +__vt__28TAIAinsideTerritoryRangeNavi = .data:0x802E25C4; // type:object size:0x1C scope:global align:4 +@2207 = .data:0x802E25E0; // type:object size:0x19 scope:local align:4 data:string +@2208 = .data:0x802E25FC; // type:object size:0xC scope:local align:4 +__vt__24TAIAcheckInsideRangePiki = .data:0x802E2608; // type:object size:0x24 scope:global align:4 +@2209 = .data:0x802E262C; // type:object size:0x19 scope:local align:4 data:string +@2211 = .data:0x802E2648; // type:object size:0x17 scope:local align:4 data:string +@2212 = .data:0x802E2660; // type:object size:0xC scope:local align:4 +@2210 = .data:0x802E266C; // type:object size:0x14 scope:local align:4 +__vt__24TAIAoutsideOptionalRange = .data:0x802E2680; // type:object size:0x28 scope:global align:4 +@2213 = .data:0x802E26A8; // type:object size:0x18 scope:local align:4 data:string +@2214 = .data:0x802E26C0; // type:object size:0x14 scope:local align:4 +__vt__23TAIAinsideOptionalRange = .data:0x802E26D4; // type:object size:0x28 scope:global align:4 +__vt__22TAIAjudgeOptionalRange = .data:0x802E26FC; // type:object size:0x28 scope:global align:4 +@2215 = .data:0x802E2724; // type:object size:0xD scope:local align:4 data:string +@2217 = .data:0x802E2734; // type:object size:0xE scope:local align:4 data:string +@2218 = .data:0x802E2744; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E2750; // type:object size:0x14 scope:local align:4 +__vt__12TAIAmoreLife = .data:0x802E2764; // type:object size:0x20 scope:global align:4 +@2219 = .data:0x802E2784; // type:object size:0xD scope:local align:4 data:string +@2220 = .data:0x802E2794; // type:object size:0x14 scope:local align:4 +__vt__12TAIAlessLife = .data:0x802E27A8; // type:object size:0x20 scope:global align:4 +@2221 = .data:0x802E27C8; // type:object size:0x15 scope:local align:4 data:string +@2222 = .data:0x802E27E0; // type:object size:0xC scope:local align:4 +__vt__20TAIAsearchWorkObject = .data:0x802E27EC; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x802E2808; // type:label scope:local +@1718 = .data:0x802E2808; // type:object size:0xF scope:local align:4 data:string +@1728 = .data:0x802E2818; // type:object size:0xB scope:local align:4 data:string +@2312 = .data:0x802E2824; // type:object size:0xC scope:local align:4 data:string +@2314 = .data:0x802E2830; // type:object size:0xA scope:local align:4 data:string +@2315 = .data:0x802E283C; // type:object size:0x12 scope:local align:4 data:string +@2316 = .data:0x802E2850; // type:object size:0xC scope:local align:4 +@2313 = .data:0x802E285C; // type:object size:0x14 scope:local align:4 +__vt__11TAIAeatPiki = .data:0x802E2870; // type:object size:0x20 scope:global align:4 +@2323 = .data:0x802E2890; // type:object size:0x13 scope:local align:4 data:string +@2324 = .data:0x802E28A4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAbiteForKabekui = .data:0x802E28B8; // type:object size:0x24 scope:global align:4 +@2325 = .data:0x802E28DC; // type:object size:0x1A scope:local align:4 data:string +@2326 = .data:0x802E28F8; // type:object size:0x14 scope:local align:4 +__vt__25TAIAflickingReserveMotion = .data:0x802E290C; // type:object size:0x24 scope:global align:4 +@2327 = .data:0x802E2930; // type:object size:0xD scope:local align:4 data:string +@2329 = .data:0x802E2940; // type:object size:0xB scope:local align:4 data:string +@2330 = .data:0x802E294C; // type:object size:0xC scope:local align:4 +@2328 = .data:0x802E2958; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflicking = .data:0x802E296C; // type:object size:0x24 scope:global align:4 +@2331 = .data:0x802E2990; // type:object size:0xE scope:local align:4 data:string +@2333 = .data:0x802E29A0; // type:object size:0xA scope:local align:4 data:string +@2332 = .data:0x802E29AC; // type:object size:0xC scope:local align:4 +@2335 = .data:0x802E29D0; // type:object size:0xF scope:local align:4 data:string +@2336 = .data:0x802E29E0; // type:object size:0xC scope:local align:4 +__vt__14TAIAflickCheck = .data:0x802E29EC; // type:object size:0x20 scope:global align:4 +@2338 = .data:0x802E2A0C; // type:object size:0xF scope:local align:4 data:string +@2339 = .data:0x802E2A1C; // type:object size:0x14 scope:local align:4 +__vt__14TAIAfireBreath = .data:0x802E2A30; // type:object size:0x24 scope:global align:4 +@2340 = .data:0x802E2A54; // type:object size:0xF scope:local align:4 data:string +@2341 = .data:0x802E2A64; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetPiki = .data:0x802E2A70; // type:object size:0x1C scope:global align:4 +@2342 = .data:0x802E2A8C; // type:object size:0xF scope:local align:4 data:string +@2343 = .data:0x802E2A9C; // type:object size:0xC scope:local align:4 +__vt__14TAIAtargetNavi = .data:0x802E2AA8; // type:object size:0x1C scope:global align:4 +@2344 = .data:0x802E2AC4; // type:object size:0x1C scope:local align:4 data:string +@2346 = .data:0x802E2AE0; // type:object size:0xF scope:local align:4 data:string +@2347 = .data:0x802E2AF0; // type:object size:0x14 scope:local align:4 +@2345 = .data:0x802E2B04; // type:object size:0x1C scope:local align:4 +__vt__27TAIAflickingAfterMotionLoop = .data:0x802E2B20; // type:object size:0x24 scope:global align:4 +@2349 = .data:0x802E2B44; // type:object size:0xC scope:local align:4 data:string +@2359 = .data:0x802E2B7C; // type:object size:0x15 scope:local align:4 data:string +@2360 = .data:0x802E2B94; // type:object size:0x14 scope:local align:4 +__vt__20TAIAattackWorkObject = .data:0x802E2BA8; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E2BD0; // type:label scope:local +@579 = .data:0x802E2BD0; // type:object size:0x13 scope:local align:4 data:string +@589 = .data:0x802E2BE4; // type:object size:0xF scope:local align:4 data:string +__vt__14P2DGrafContext = .data:0x802E2BF4; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E2C18; // type:label scope:local +@658 = .data:0x802E2C18; // type:object size:0xE scope:local align:4 data:string +@660 = .data:0x802E2C28; // type:object size:0xF scope:local align:4 data:string +@659 = .data:0x802E2C38; // type:object size:0xC scope:local align:4 +__vt__13P2DOrthoGraph = .data:0x802E2C44; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x802E2C68; // type:label scope:local +@581 = .data:0x802E2C68; // type:object size:0x12 scope:local align:4 data:string +@591 = .data:0x802E2C7C; // type:object size:0xD scope:local align:4 data:string +@697 = .data:0x802E2C8C; // type:object size:0xE scope:local align:4 data:string +@699 = .data:0x802E2C9C; // type:object size:0xF scope:local align:4 data:string +@698 = .data:0x802E2CAC; // type:object size:0xC scope:local align:4 +__vt__13P2DPerspGraph = .data:0x802E2CB8; // type:object size:0x24 scope:global align:4 +__vt__7P2DPane = .data:0x802E2CE0; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E2D20; // type:label scope:local +@655 = .data:0x802E2D20; // type:object size:0xF scope:local align:4 data:string +@665 = .data:0x802E2D30; // type:object size:0xB scope:local align:4 data:string +@1152 = .data:0x802E2D3C; // type:object size:0xC scope:local align:4 +__vt__10P2DPicture = .data:0x802E2D48; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E2D88; // type:label scope:local +@765 = .data:0x802E2D88; // type:object size:0xE scope:local align:4 data:string +@775 = .data:0x802E2D98; // type:object size:0xA scope:local align:4 data:string +@840 = .data:0x802E2DA4; // type:object size:0x50 scope:local align:4 +@879 = .data:0x802E2DF4; // type:object size:0xC scope:local align:4 +__vt__9P2DScreen = .data:0x802E2E00; // type:object size:0x40 scope:global align:4 +...data.0 = .data:0x802E2E40; // type:label scope:local +@641 = .data:0x802E2E40; // type:object size:0xE scope:local align:4 data:string +@651 = .data:0x802E2E50; // type:object size:0xA scope:local align:4 data:string +@924 = .data:0x802E2E5C; // type:object size:0xC scope:local align:4 +__vt__9P2DWindow = .data:0x802E2E68; // type:object size:0x3C scope:global align:4 +...data.0 = .data:0x802E2EA8; // type:label scope:local +@636 = .data:0x802E2EA8; // type:object size:0xF scope:local align:4 data:string +@646 = .data:0x802E2EB8; // type:object size:0xB scope:local align:4 data:string +@728 = .data:0x802E2EC4; // type:object size:0xC scope:local align:4 +__vt__10P2DTextBox = .data:0x802E2ED0; // type:object size:0x3C scope:global align:4 +@880 = .data:0x802E2F10; // type:object size:0x60 scope:local align:4 +...data.0 = .data:0x802E2F70; // type:label scope:local +@570 = .data:0x802E2F70; // type:object size:0xC scope:local align:4 data:string +@595 = .data:0x802E2F7C; // type:object size:0xC scope:local align:4 data:string +@674 = .data:0x802E2F88; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E2F94; // type:object size:0xB scope:local align:4 data:string +@675 = .data:0x802E2FA0; // type:object size:0xC scope:local align:4 +__vt__10FntobjInfo = .data:0x802E2FAC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E2FD0; // type:label scope:local +@1273 = .data:0x802E2FD0; // type:object size:0x11 scope:local align:4 data:string +@1283 = .data:0x802E2FE4; // type:object size:0xD scope:local align:4 data:string +@1295 = .data:0x802E2FF4; // type:object size:0x15 scope:local align:4 data:string +@1296 = .data:0x802E300C; // type:object size:0x16 scope:local align:4 data:string +@1297 = .data:0x802E3024; // type:object size:0x16 scope:local align:4 data:string +@1298 = .data:0x802E303C; // type:object size:0x16 scope:local align:4 data:string +@1299 = .data:0x802E3054; // type:object size:0x17 scope:local align:4 data:string +@1300 = .data:0x802E306C; // type:object size:0x17 scope:local align:4 data:string +@1301 = .data:0x802E3084; // type:object size:0x17 scope:local align:4 data:string +@1302 = .data:0x802E309C; // type:object size:0x16 scope:local align:4 data:string +@1303 = .data:0x802E30B4; // type:object size:0x16 scope:local align:4 data:string +@1304 = .data:0x802E30CC; // type:object size:0x16 scope:local align:4 data:string +@1305 = .data:0x802E30E4; // type:object size:0x17 scope:local align:4 data:string +@1306 = .data:0x802E30FC; // type:object size:0x17 scope:local align:4 data:string +@1307 = .data:0x802E3114; // type:object size:0x17 scope:local align:4 data:string +@1308 = .data:0x802E312C; // type:object size:0x16 scope:local align:4 data:string +@1309 = .data:0x802E3144; // type:object size:0x16 scope:local align:4 data:string +@1310 = .data:0x802E315C; // type:object size:0x16 scope:local align:4 data:string +@1311 = .data:0x802E3174; // type:object size:0x17 scope:local align:4 data:string +@1312 = .data:0x802E318C; // type:object size:0x17 scope:local align:4 data:string +@1313 = .data:0x802E31A4; // type:object size:0x17 scope:local align:4 data:string +pikiTexNametable__9@unnamed@ = .data:0x802E31BC; // type:object size:0x4C scope:local align:4 +@2234 = .data:0x802E3208; // type:object size:0x16 scope:local align:4 data:string +@2235 = .data:0x802E3220; // type:object size:0x16 scope:local align:4 data:string +@2236 = .data:0x802E3238; // type:object size:0x18 scope:local align:4 data:string +@2237 = .data:0x802E3250; // type:object size:0x18 scope:local align:4 data:string +@2587 = .data:0x802E3268; // type:object size:0x18 scope:local align:4 data:string +@2589 = .data:0x802E3280; // type:object size:0xF scope:local align:4 data:string +@2590 = .data:0x802E3290; // type:object size:0x14 scope:local align:4 data:string +@2591 = .data:0x802E32A4; // type:object size:0x1A scope:local align:4 data:string +@2592 = .data:0x802E32C0; // type:object size:0x10 scope:local align:4 data:string +@2593 = .data:0x802E32D0; // type:object size:0x14 scope:local align:4 +@2588 = .data:0x802E32E4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@12DateCallBack = .data:0x802E3308; // type:object size:0x10 scope:weak align:4 +@2658 = .data:0x802E3318; // type:object size:0x1D scope:local align:4 data:string +@2659 = .data:0x802E3338; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@17LifePinchCallBack = .data:0x802E3354; // type:object size:0x10 scope:weak align:4 +@2703 = .data:0x802E3364; // type:object size:0x1C scope:local align:4 data:string +@2704 = .data:0x802E3380; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16LifeIconCallBack = .data:0x802E339C; // type:object size:0x10 scope:weak align:4 +@2707 = .data:0x802E33AC; // type:object size:0x1B scope:local align:4 data:string +@2708 = .data:0x802E33C8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@15NaviTexCallBack = .data:0x802E33E4; // type:object size:0x10 scope:weak align:4 +@2717 = .data:0x802E33F4; // type:object size:0x1C scope:local align:4 data:string +@2718 = .data:0x802E3410; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16NaviIconCallBack = .data:0x802E342C; // type:object size:0x10 scope:weak align:4 +@2741 = .data:0x802E343C; // type:object size:0x1C scope:local align:4 data:string +@2743 = .data:0x802E3458; // type:object size:0x13 scope:local align:4 data:string +@2742 = .data:0x802E346C; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16MoonIconCallBack = .data:0x802E3490; // type:object size:0x10 scope:weak align:4 +@2814 = .data:0x802E34A0; // type:object size:0x1C scope:local align:4 data:string +@2816 = .data:0x802E34BC; // type:object size:0x13 scope:local align:4 data:string +@2815 = .data:0x802E34D0; // type:object size:0x2C scope:local align:4 +__vt__Q29@unnamed@16SunIcon2CallBack = .data:0x802E34FC; // type:object size:0x10 scope:weak align:4 +@2898 = .data:0x802E350C; // type:object size:0x1C scope:local align:4 data:string +@2899 = .data:0x802E3528; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@16SunIcon1CallBack = .data:0x802E354C; // type:object size:0x10 scope:weak align:4 +@2945 = .data:0x802E355C; // type:object size:0x1E scope:local align:4 data:string +@2946 = .data:0x802E357C; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@18SunCapsuleCallBack = .data:0x802E3598; // type:object size:0x10 scope:weak align:4 +@2963 = .data:0x802E35A8; // type:object size:0x1B scope:local align:4 data:string +@2964 = .data:0x802E35C4; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@15SunBaseCallBack = .data:0x802E35E8; // type:object size:0x1C scope:weak align:4 +@2997 = .data:0x802E3604; // type:object size:0x1E scope:local align:4 data:string +@2999 = .data:0x802E3624; // type:object size:0x16 scope:local align:4 data:string +@3000 = .data:0x802E363C; // type:object size:0xC scope:local align:4 +@2998 = .data:0x802E3648; // type:object size:0x2C scope:local align:4 +__vt__Q23zen20NumberPicCallBack = .data:0x802E3674; // type:object size:0x10 scope:weak align:4 +@3001 = .data:0x802E3684; // type:object size:0x23 scope:local align:4 data:string +@3002 = .data:0x802E36A8; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@23MapPikminWindowCallBack = .data:0x802E36C4; // type:object size:0x10 scope:weak align:4 +@3038 = .data:0x802E36D4; // type:object size:0x1C scope:local align:4 data:string +@3039 = .data:0x802E36F0; // type:object size:0x1C scope:local align:4 +__vt__Q29@unnamed@16PikiIconCallBack = .data:0x802E370C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E3738; // type:label scope:local +@708 = .data:0x802E3738; // type:object size:0x12 scope:local align:4 data:string +@718 = .data:0x802E374C; // type:object size:0xE scope:local align:4 data:string +@1755 = .data:0x802E375C; // type:object size:0xD scope:local align:4 data:string +@1759 = .data:0x802E376C; // type:object size:0x16 scope:local align:4 data:string +@1769 = .data:0x802E3784; // type:object size:0x9 scope:local align:4 data:string +@1770 = .data:0x802E3790; // type:object size:0x9 scope:local align:4 data:string +@1772 = .data:0x802E379C; // type:object size:0xF scope:local align:4 data:string +@1777 = .data:0x802E37AC; // type:object size:0x16 scope:local align:4 data:string +@1778 = .data:0x802E37C4; // type:object size:0x16 scope:local align:4 data:string +@1779 = .data:0x802E37DC; // type:object size:0x16 scope:local align:4 data:string +@1780 = .data:0x802E37F4; // type:object size:0x18 scope:local align:4 data:string +@1781 = .data:0x802E380C; // type:object size:0x18 scope:local align:4 data:string +@1782 = .data:0x802E3824; // type:object size:0x18 scope:local align:4 data:string +@1783 = .data:0x802E383C; // type:object size:0x17 scope:local align:4 data:string +@1784 = .data:0x802E3854; // type:object size:0x17 scope:local align:4 data:string +@1785 = .data:0x802E386C; // type:object size:0x17 scope:local align:4 data:string +@2884 = .data:0x802E3884; // type:object size:0x13 scope:local align:4 data:string +@2886 = .data:0x802E3898; // type:object size:0x14 scope:local align:4 data:string +@2887 = .data:0x802E38AC; // type:object size:0x1A scope:local align:4 data:string +@2888 = .data:0x802E38C8; // type:object size:0x10 scope:local align:4 data:string +@2889 = .data:0x802E38D8; // type:object size:0x14 scope:local align:4 +@2885 = .data:0x802E38EC; // type:object size:0x1C scope:local align:4 +__vt__Q23zen13StickCallBack = .data:0x802E3908; // type:object size:0x10 scope:weak align:4 +@2915 = .data:0x802E3918; // type:object size:0x15 scope:local align:4 data:string +@2917 = .data:0x802E3930; // type:object size:0x18 scope:local align:4 data:string +@2916 = .data:0x802E3948; // type:object size:0x24 scope:local align:4 +__vt__Q23zen15ArrowLRCallBack = .data:0x802E396C; // type:object size:0x10 scope:weak align:4 +@2961 = .data:0x802E397C; // type:object size:0x19 scope:local align:4 data:string +@2962 = .data:0x802E3998; // type:object size:0x24 scope:local align:4 +__vt__Q23zen19ArrowCenterCallBack = .data:0x802E39BC; // type:object size:0x10 scope:weak align:4 +@2996 = .data:0x802E39CC; // type:object size:0x1C scope:local align:4 data:string +@2998 = .data:0x802E39E8; // type:object size:0xF scope:local align:4 data:string +@2999 = .data:0x802E39F8; // type:object size:0x14 scope:local align:4 data:string +@3000 = .data:0x802E3A0C; // type:object size:0xC scope:local align:4 +@2997 = .data:0x802E3A18; // type:object size:0x2C scope:local align:4 +@3001 = .data:0x802E3A70; // type:object size:0x9 scope:local align:4 data:string +@3002 = .data:0x802E3A7C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E3AA8; // type:label scope:local +@637 = .data:0x802E3AA8; // type:object size:0xF scope:local align:4 data:string +@647 = .data:0x802E3AB8; // type:object size:0xB scope:local align:4 data:string +@676 = .data:0x802E3AC4; // type:object size:0xA scope:local align:4 data:string +@677 = .data:0x802E3AD0; // type:object size:0xD scope:local align:4 data:string +@1535 = .data:0x802E3AE0; // type:object size:0x11 scope:local align:4 data:string +@1537 = .data:0x802E3AF4; // type:object size:0x14 scope:local align:4 data:string +@1538 = .data:0x802E3B08; // type:object size:0x1A scope:local align:4 data:string +@1539 = .data:0x802E3B24; // type:object size:0x10 scope:local align:4 data:string +@1540 = .data:0x802E3B34; // type:object size:0x14 scope:local align:4 +@1536 = .data:0x802E3B48; // type:object size:0x1C scope:local align:4 +__vt__Q23zen11BalloonPane = .data:0x802E3B64; // type:object size:0x10 scope:global align:4 +@1542 = .data:0x802E3B90; // type:object size:0x10 scope:local align:4 data:string +__vt__Q23zen10DrawScreen = .data:0x802E3BA0; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E3BB0; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802E3BC8; // type:label scope:local +@635 = .data:0x802E3BC8; // type:object size:0x10 scope:local align:4 data:string +@645 = .data:0x802E3BD8; // type:object size:0xC scope:local align:4 data:string +@1105 = .data:0x802E3BE4; // type:object size:0x17 scope:local align:4 data:string +@1151 = .data:0x802E3BFC; // type:object size:0x11 scope:local align:4 data:string +@1153 = .data:0x802E3C10; // type:object size:0x10 scope:local align:4 data:string +@1152 = .data:0x802E3C20; // type:object size:0xC scope:local align:4 +__vt__Q23zen11DrawAccount = .data:0x802E3C2C; // type:object size:0x10 scope:global align:4 +@1154 = .data:0x802E3C3C; // type:object size:0x1E scope:local align:4 data:string +@1156 = .data:0x802E3C5C; // type:object size:0xF scope:local align:4 data:string +@1157 = .data:0x802E3C6C; // type:object size:0x16 scope:local align:4 data:string +@1158 = .data:0x802E3C84; // type:object size:0xC scope:local align:4 +@1159 = .data:0x802E3C90; // type:object size:0x14 scope:local align:4 data:string +@1160 = .data:0x802E3CA4; // type:object size:0x1A scope:local align:4 data:string +@1161 = .data:0x802E3CC0; // type:object size:0x10 scope:local align:4 data:string +@1162 = .data:0x802E3CD0; // type:object size:0x14 scope:local align:4 +@1155 = .data:0x802E3CE4; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E3D40; // type:label scope:local +@659 = .data:0x802E3D40; // type:object size:0xD scope:local align:4 data:string +@669 = .data:0x802E3D50; // type:object size:0x9 scope:local align:4 data:string +@1825 = .data:0x802E3D5C; // type:object size:0xE scope:local align:4 data:string +@1827 = .data:0x802E3D6C; // type:object size:0x10 scope:local align:4 data:string +@1826 = .data:0x802E3D7C; // type:object size:0xC scope:local align:4 +__vt__Q23zen8DrawMenu = .data:0x802E3D88; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E3D98; // type:label scope:local +@1607 = .data:0x802E3D98; // type:object size:0x14 scope:local align:4 data:string +@1617 = .data:0x802E3DAC; // type:object size:0x10 scope:local align:4 data:string +@2302 = .data:0x802E3DBC; // type:object size:0x11 scope:local align:4 data:string +@2304 = .data:0x802E3DD0; // type:object size:0x29 scope:local align:4 data:string +@2303 = .data:0x802E3DFC; // type:object size:0xC scope:local align:4 +__vt__16ConeTypeCallBack = .data:0x802E3E08; // type:object size:0xC scope:global align:4 +@2305 = .data:0x802E3E14; // type:object size:0x15 scope:local align:4 data:string +@2306 = .data:0x802E3E2C; // type:object size:0xC scope:local align:4 +__vt__20CylinderTypeCallBack = .data:0x802E3E38; // type:object size:0xC scope:global align:4 +@2307 = .data:0x802E3E44; // type:object size:0x12 scope:local align:4 data:string +@2308 = .data:0x802E3E58; // type:object size:0xC scope:local align:4 +__vt__17EventTypeCallBack = .data:0x802E3E64; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x802E3E70; // type:label scope:local +@1756 = .data:0x802E3E70; // type:object size:0xE scope:local align:4 data:string +@1766 = .data:0x802E3E80; // type:object size:0xA scope:local align:4 data:string +@2194 = .data:0x802E3E8C; // type:object size:0xB scope:local align:4 +@2197 = .data:0x802E3E98; // type:object size:0x15 scope:local align:4 +@2199 = .data:0x802E3EB0; // type:object size:0x13 scope:local align:4 +@2200 = .data:0x802E3EC4; // type:object size:0xF scope:local align:4 +@2202 = .data:0x802E3ED4; // type:object size:0xF scope:local align:4 +@2775 = .data:0x802E3EE4; // type:object size:0x13 scope:local align:4 data:string +@2777 = .data:0x802E3EF8; // type:object size:0xD scope:local align:4 data:string +@2776 = .data:0x802E3F08; // type:object size:0xC scope:local align:4 +__vt__18TAIbeatleAnimation = .data:0x802E3F14; // type:object size:0xC scope:global align:4 +@2778 = .data:0x802E3F20; // type:object size:0x12 scope:local align:4 data:string +@2780 = .data:0x802E3F34; // type:object size:0xD scope:local align:4 data:string +@2781 = .data:0x802E3F44; // type:object size:0xC scope:local align:4 data:string +@2782 = .data:0x802E3F50; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E3F5C; // type:object size:0x14 scope:local align:4 +__vt__17TAIbeatleStrategy = .data:0x802E3F70; // type:object size:0x28 scope:global align:4 +@2783 = .data:0x802E3F98; // type:object size:0x1F scope:local align:4 data:string +@2785 = .data:0x802E3FB8; // type:object size:0xA scope:local align:4 data:string +@2786 = .data:0x802E3FC4; // type:object size:0x19 scope:local align:4 data:string +@2787 = .data:0x802E3FE0; // type:object size:0xC scope:local align:4 +@2784 = .data:0x802E3FEC; // type:object size:0x14 scope:local align:4 +__vt__30TAIAcheckInsideRangePikiBeatle = .data:0x802E4000; // type:object size:0x24 scope:weak align:4 +@2800 = .data:0x802E4024; // type:object size:0x11 scope:local align:4 data:string +@2801 = .data:0x802E4038; // type:object size:0xC scope:local align:4 +__vt__16TAIAdisableStick = .data:0x802E4044; // type:object size:0x1C scope:weak align:4 +@2804 = .data:0x802E4060; // type:object size:0xF scope:local align:4 data:string +@2805 = .data:0x802E4070; // type:object size:0xC scope:local align:4 +@2807 = .data:0x802E4098; // type:object size:0x13 scope:local align:4 data:string +@2809 = .data:0x802E40AC; // type:object size:0xB scope:local align:4 data:string +@2810 = .data:0x802E40B8; // type:object size:0xC scope:local align:4 +@2811 = .data:0x802E40C4; // type:object size:0xD scope:local align:4 data:string +@2812 = .data:0x802E40D4; // type:object size:0x14 scope:local align:4 +@2808 = .data:0x802E40E8; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingBeatle = .data:0x802E4104; // type:object size:0x24 scope:weak align:4 +@2874 = .data:0x802E4128; // type:object size:0xC scope:local align:4 data:string +@2884 = .data:0x802E4160; // type:object size:0x12 scope:local align:4 data:string +@2885 = .data:0x802E4174; // type:object size:0xC scope:local align:4 +__vt__17TAIAinvincibleOff = .data:0x802E4180; // type:object size:0x1C scope:weak align:4 +@2888 = .data:0x802E419C; // type:object size:0x22 scope:local align:4 data:string +@2890 = .data:0x802E41C0; // type:object size:0x12 scope:local align:4 data:string +@2891 = .data:0x802E41D4; // type:object size:0xC scope:local align:4 +@2892 = .data:0x802E41E0; // type:object size:0xF scope:local align:4 data:string +@2893 = .data:0x802E41F0; // type:object size:0x14 scope:local align:4 +@2894 = .data:0x802E4204; // type:object size:0x1C scope:local align:4 data:string +@2895 = .data:0x802E4220; // type:object size:0x1C scope:local align:4 +@2889 = .data:0x802E423C; // type:object size:0x24 scope:local align:4 +__vt__33TAIAflickingAfterMotionLoopBeatle = .data:0x802E4260; // type:object size:0x24 scope:weak align:4 +@3152 = .data:0x802E4284; // type:object size:0x15 scope:local align:4 data:string +@3153 = .data:0x802E429C; // type:object size:0xC scope:local align:4 +@3186 = .data:0x802E42C4; // type:object size:0xF scope:local align:4 data:string +@3187 = .data:0x802E42D4; // type:object size:0x14 scope:local align:4 +__vt__14TAIArockAttack = .data:0x802E42E8; // type:object size:0x1C scope:weak align:4 +@3741 = .data:0x802E4304; // type:object size:0x1E scope:local align:4 data:string +@3743 = .data:0x802E4324; // type:object size:0x17 scope:local align:4 data:string +@3744 = .data:0x802E433C; // type:object size:0xC scope:local align:4 +@3745 = .data:0x802E4348; // type:object size:0x18 scope:local align:4 data:string +@3746 = .data:0x802E4360; // type:object size:0x14 scope:local align:4 +@3742 = .data:0x802E4374; // type:object size:0x1C scope:local align:4 +__vt__29TAIAinsideOptionalRangeBeatle = .data:0x802E4390; // type:object size:0x28 scope:weak align:4 +@3752 = .data:0x802E43B8; // type:object size:0x16 scope:local align:4 data:string +@3753 = .data:0x802E43D0; // type:object size:0xC scope:local align:4 +__vt__21TAIAvisiblePikiBeatle = .data:0x802E43DC; // type:object size:0x1C scope:weak align:4 +@3820 = .data:0x802E43F8; // type:object size:0x12 scope:local align:4 data:string +@3821 = .data:0x802E440C; // type:object size:0xC scope:local align:4 +@3834 = .data:0x802E4438; // type:object size:0x11 scope:local align:4 data:string +@3836 = .data:0x802E444C; // type:object size:0xB scope:local align:4 data:string +@3837 = .data:0x802E4458; // type:object size:0xC scope:local align:4 +@3835 = .data:0x802E4464; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdamageBeatle = .data:0x802E4478; // type:object size:0x20 scope:weak align:4 +@3841 = .data:0x802E4498; // type:object size:0x10 scope:local align:4 data:string +@3843 = .data:0x802E44A8; // type:object size:0xA scope:local align:4 data:string +@3844 = .data:0x802E44B4; // type:object size:0x14 scope:local align:4 +@3842 = .data:0x802E44C8; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingBeatle = .data:0x802E44E4; // type:object size:0x1C scope:weak align:4 +@3855 = .data:0x802E4500; // type:object size:0xF scope:local align:4 data:string +@3856 = .data:0x802E4510; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitBeatle = .data:0x802E451C; // type:object size:0x1C scope:weak align:4 +@3881 = .data:0x802E4554; // type:object size:0x14 scope:local align:4 data:string +@3884 = .data:0x802E4568; // type:object size:0x9 scope:local align:4 data:string +@3885 = .data:0x802E4574; // type:object size:0xC scope:local align:4 +@3887 = .data:0x802E4580; // type:object size:0x14 scope:local align:4 +@3888 = .data:0x802E4594; // type:object size:0xF scope:local align:4 data:string +@3889 = .data:0x802E45A4; // type:object size:0x1C scope:local align:4 +@3882 = .data:0x802E45C0; // type:object size:0x24 scope:local align:4 +__vt__19TAIbeatleParameters = .data:0x802E45E4; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E4618; // type:label scope:local +@635 = .data:0x802E4618; // type:object size:0x11 scope:local align:4 data:string +@645 = .data:0x802E462C; // type:object size:0xD scope:local align:4 data:string +@937 = .data:0x802E463C; // type:object size:0xF scope:local align:4 data:string +@939 = .data:0x802E464C; // type:object size:0x14 scope:local align:4 data:string +@940 = .data:0x802E4660; // type:object size:0x1A scope:local align:4 data:string +@941 = .data:0x802E467C; // type:object size:0x10 scope:local align:4 data:string +@942 = .data:0x802E468C; // type:object size:0x14 scope:local align:4 +@938 = .data:0x802E46A0; // type:object size:0x1C scope:local align:4 +__vt__Q23zen9MenuPanel = .data:0x802E46BC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x802E46E8; // type:label scope:local +@1737 = .data:0x802E46E8; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E46F8; // type:object size:0xC scope:local align:4 data:string +@1930 = .data:0x802E4704; // type:object size:0x17 scope:local align:4 +@1933 = .data:0x802E471C; // type:object size:0xF scope:local align:4 +@1935 = .data:0x802E472C; // type:object size:0x15 scope:local align:4 +@1936 = .data:0x802E4744; // type:object size:0x13 scope:local align:4 +@2409 = .data:0x802E4758; // type:object size:0x1F scope:local align:4 data:string +@2410 = .data:0x802E4778; // type:object size:0x21 scope:local align:4 data:string +@2411 = .data:0x802E479C; // type:object size:0x20 scope:local align:4 data:string +@2412 = .data:0x802E47BC; // type:object size:0x20 scope:local align:4 data:string +@2413 = .data:0x802E47DC; // type:object size:0x23 scope:local align:4 data:string +@2414 = .data:0x802E4800; // type:object size:0x23 scope:local align:4 data:string +@2415 = .data:0x802E4824; // type:object size:0x20 scope:local align:4 data:string +@2416 = .data:0x802E4844; // type:object size:0x20 scope:local align:4 data:string +@2417 = .data:0x802E4864; // type:object size:0x21 scope:local align:4 data:string +@2418 = .data:0x802E4888; // type:object size:0x20 scope:local align:4 data:string +@2419 = .data:0x802E48A8; // type:object size:0x20 scope:local align:4 data:string +@2420 = .data:0x802E48C8; // type:object size:0x15 scope:local align:4 data:string +@2422 = .data:0x802E48E0; // type:object size:0xD scope:local align:4 data:string +@2421 = .data:0x802E48F0; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiAAnimation = .data:0x802E48FC; // type:object size:0xC scope:global align:4 +@2423 = .data:0x802E4908; // type:object size:0xE scope:local align:4 data:string +@2425 = .data:0x802E4918; // type:object size:0xA scope:local align:4 data:string +@2424 = .data:0x802E4924; // type:object size:0xC scope:local align:4 +__vt__13TAIAshadowOff = .data:0x802E4930; // type:object size:0x1C scope:weak align:4 +@2435 = .data:0x802E494C; // type:object size:0xD scope:local align:4 data:string +@2436 = .data:0x802E495C; // type:object size:0xC scope:local align:4 +__vt__12TAIAshadowOn = .data:0x802E4968; // type:object size:0x1C scope:weak align:4 +@2439 = .data:0x802E4984; // type:object size:0x12 scope:local align:4 data:string +@2441 = .data:0x802E4998; // type:object size:0x12 scope:local align:4 data:string +@2442 = .data:0x802E49AC; // type:object size:0xC scope:local align:4 +@2440 = .data:0x802E49B8; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiA = .data:0x802E49CC; // type:object size:0x20 scope:weak align:4 +@2459 = .data:0x802E49EC; // type:object size:0x11 scope:local align:4 data:string +@2460 = .data:0x802E4A00; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiA = .data:0x802E4A14; // type:object size:0x20 scope:weak align:4 +@2465 = .data:0x802E4A54; // type:object size:0x1D scope:local align:4 data:string +@2467 = .data:0x802E4A74; // type:object size:0x12 scope:local align:4 data:string +@2468 = .data:0x802E4A88; // type:object size:0xC scope:local align:4 +@2469 = .data:0x802E4A94; // type:object size:0x15 scope:local align:4 data:string +@2470 = .data:0x802E4AAC; // type:object size:0x14 scope:local align:4 +@2466 = .data:0x802E4AC0; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiA = .data:0x802E4ADC; // type:object size:0x28 scope:weak align:4 +@2496 = .data:0x802E4B04; // type:object size:0x12 scope:local align:4 data:string +@2497 = .data:0x802E4B18; // type:object size:0xC scope:local align:4 +@2499 = .data:0x802E4B40; // type:object size:0x11 scope:local align:4 data:string +@2500 = .data:0x802E4B54; // type:object size:0xC scope:local align:4 +__vt__16TAIAinvincibleOn = .data:0x802E4B60; // type:object size:0x1C scope:weak align:4 +@2502 = .data:0x802E4B7C; // type:object size:0x13 scope:local align:4 data:string +@2504 = .data:0x802E4B90; // type:object size:0xB scope:local align:4 data:string +@2505 = .data:0x802E4B9C; // type:object size:0xC scope:local align:4 +@2503 = .data:0x802E4BA8; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetMotionSpeed = .data:0x802E4BBC; // type:object size:0x1C scope:weak align:4 +@2514 = .data:0x802E4BF4; // type:object size:0x14 scope:local align:4 data:string +@2516 = .data:0x802E4C08; // type:object size:0xD scope:local align:4 data:string +@2517 = .data:0x802E4C18; // type:object size:0xC scope:local align:4 data:string +@2518 = .data:0x802E4C24; // type:object size:0xC scope:local align:4 +@2515 = .data:0x802E4C30; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiAStrategy = .data:0x802E4C44; // type:object size:0x28 scope:weak align:4 +@2519 = .data:0x802E4C6C; // type:object size:0x16 scope:local align:4 data:string +@2522 = .data:0x802E4C84; // type:object size:0x9 scope:local align:4 data:string +@2523 = .data:0x802E4C90; // type:object size:0xC scope:local align:4 +@2525 = .data:0x802E4C9C; // type:object size:0x14 scope:local align:4 +@2526 = .data:0x802E4CB0; // type:object size:0xF scope:local align:4 data:string +@2527 = .data:0x802E4CC0; // type:object size:0x1C scope:local align:4 +@2520 = .data:0x802E4CDC; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiAParameters = .data:0x802E4D00; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E4D30; // type:label scope:local +@1737 = .data:0x802E4D30; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E4D40; // type:object size:0xC scope:local align:4 data:string +@1940 = .data:0x802E4D4C; // type:object size:0x17 scope:local align:4 +@1943 = .data:0x802E4D64; // type:object size:0xF scope:local align:4 +@1945 = .data:0x802E4D74; // type:object size:0x15 scope:local align:4 +@1946 = .data:0x802E4D8C; // type:object size:0x13 scope:local align:4 +@1947 = .data:0x802E4DA0; // type:object size:0x13 scope:local align:4 +@1948 = .data:0x802E4DB4; // type:object size:0x13 scope:local align:4 +@2512 = .data:0x802E4DC8; // type:object size:0x1F scope:local align:4 data:string +@2513 = .data:0x802E4DE8; // type:object size:0x21 scope:local align:4 data:string +@2514 = .data:0x802E4E0C; // type:object size:0x20 scope:local align:4 data:string +@2515 = .data:0x802E4E2C; // type:object size:0x20 scope:local align:4 data:string +@2516 = .data:0x802E4E4C; // type:object size:0x23 scope:local align:4 data:string +@2517 = .data:0x802E4E70; // type:object size:0x23 scope:local align:4 data:string +@2518 = .data:0x802E4E94; // type:object size:0x20 scope:local align:4 data:string +@2519 = .data:0x802E4EB4; // type:object size:0x20 scope:local align:4 data:string +@2520 = .data:0x802E4ED4; // type:object size:0x21 scope:local align:4 data:string +@2521 = .data:0x802E4EF8; // type:object size:0x20 scope:local align:4 data:string +@2522 = .data:0x802E4F18; // type:object size:0x20 scope:local align:4 data:string +@2523 = .data:0x802E4F38; // type:object size:0x15 scope:local align:4 data:string +@2525 = .data:0x802E4F50; // type:object size:0xD scope:local align:4 data:string +@2524 = .data:0x802E4F60; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiBAnimation = .data:0x802E4F6C; // type:object size:0xC scope:global align:4 +@2526 = .data:0x802E4F78; // type:object size:0xE scope:local align:4 data:string +@2528 = .data:0x802E4F88; // type:object size:0xA scope:local align:4 data:string +@2527 = .data:0x802E4F94; // type:object size:0xC scope:local align:4 +@2538 = .data:0x802E4FBC; // type:object size:0xD scope:local align:4 data:string +@2539 = .data:0x802E4FCC; // type:object size:0xC scope:local align:4 +@2542 = .data:0x802E4FF4; // type:object size:0x12 scope:local align:4 data:string +@2544 = .data:0x802E5008; // type:object size:0x12 scope:local align:4 data:string +@2545 = .data:0x802E501C; // type:object size:0xC scope:local align:4 +@2543 = .data:0x802E5028; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiB = .data:0x802E503C; // type:object size:0x20 scope:weak align:4 +@2562 = .data:0x802E505C; // type:object size:0x11 scope:local align:4 data:string +@2563 = .data:0x802E5070; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiB = .data:0x802E5084; // type:object size:0x20 scope:weak align:4 +@2568 = .data:0x802E50C4; // type:object size:0x1D scope:local align:4 data:string +@2570 = .data:0x802E50E4; // type:object size:0x12 scope:local align:4 data:string +@2571 = .data:0x802E50F8; // type:object size:0xC scope:local align:4 +@2572 = .data:0x802E5104; // type:object size:0x15 scope:local align:4 data:string +@2573 = .data:0x802E511C; // type:object size:0x14 scope:local align:4 +@2569 = .data:0x802E5130; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiB = .data:0x802E514C; // type:object size:0x28 scope:weak align:4 +@2599 = .data:0x802E5174; // type:object size:0x12 scope:local align:4 data:string +@2600 = .data:0x802E5188; // type:object size:0xC scope:local align:4 +@2602 = .data:0x802E51B0; // type:object size:0x11 scope:local align:4 data:string +@2603 = .data:0x802E51C4; // type:object size:0xC scope:local align:4 +@2605 = .data:0x802E51EC; // type:object size:0x14 scope:local align:4 data:string +@2607 = .data:0x802E5200; // type:object size:0x13 scope:local align:4 data:string +@2608 = .data:0x802E5214; // type:object size:0x14 scope:local align:4 +@2606 = .data:0x802E5228; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiB = .data:0x802E5244; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E5268; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E527C; // type:object size:0xB scope:local align:4 data:string +@2620 = .data:0x802E5288; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E5294; // type:object size:0x14 scope:local align:4 +@2629 = .data:0x802E52E0; // type:object size:0x14 scope:local align:4 data:string +@2631 = .data:0x802E52F4; // type:object size:0xD scope:local align:4 data:string +@2632 = .data:0x802E5304; // type:object size:0xC scope:local align:4 data:string +@2633 = .data:0x802E5310; // type:object size:0xC scope:local align:4 +@2630 = .data:0x802E531C; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiBStrategy = .data:0x802E5330; // type:object size:0x28 scope:weak align:4 +@2634 = .data:0x802E5358; // type:object size:0x16 scope:local align:4 data:string +@2637 = .data:0x802E5370; // type:object size:0x9 scope:local align:4 data:string +@2638 = .data:0x802E537C; // type:object size:0xC scope:local align:4 +@2640 = .data:0x802E5388; // type:object size:0x14 scope:local align:4 +@2641 = .data:0x802E539C; // type:object size:0xF scope:local align:4 data:string +@2642 = .data:0x802E53AC; // type:object size:0x1C scope:local align:4 +@2635 = .data:0x802E53C8; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiBParameters = .data:0x802E53EC; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E5420; // type:label scope:local +@1737 = .data:0x802E5420; // type:object size:0x10 scope:local align:4 data:string +@1747 = .data:0x802E5430; // type:object size:0xC scope:local align:4 data:string +@2005 = .data:0x802E543C; // type:object size:0x17 scope:local align:4 +@2008 = .data:0x802E5454; // type:object size:0xF scope:local align:4 +@2010 = .data:0x802E5464; // type:object size:0x27 scope:local align:4 +@2012 = .data:0x802E548C; // type:object size:0x27 scope:local align:4 +@2013 = .data:0x802E54B4; // type:object size:0x17 scope:local align:4 +@2014 = .data:0x802E54CC; // type:object size:0x1B scope:local align:4 +@2015 = .data:0x802E54E8; // type:object size:0x15 scope:local align:4 +@2016 = .data:0x802E5500; // type:object size:0x13 scope:local align:4 +@2017 = .data:0x802E5514; // type:object size:0x13 scope:local align:4 +@2018 = .data:0x802E5528; // type:object size:0x13 scope:local align:4 +@2686 = .data:0x802E553C; // type:object size:0x1F scope:local align:4 data:string +@2687 = .data:0x802E555C; // type:object size:0x21 scope:local align:4 data:string +@2688 = .data:0x802E5580; // type:object size:0x20 scope:local align:4 data:string +@2689 = .data:0x802E55A0; // type:object size:0x20 scope:local align:4 data:string +@2690 = .data:0x802E55C0; // type:object size:0x23 scope:local align:4 data:string +@2691 = .data:0x802E55E4; // type:object size:0x23 scope:local align:4 data:string +@2692 = .data:0x802E5608; // type:object size:0x20 scope:local align:4 data:string +@2693 = .data:0x802E5628; // type:object size:0x20 scope:local align:4 data:string +@2694 = .data:0x802E5648; // type:object size:0x21 scope:local align:4 data:string +@2695 = .data:0x802E566C; // type:object size:0x20 scope:local align:4 data:string +@2696 = .data:0x802E568C; // type:object size:0x20 scope:local align:4 data:string +@2697 = .data:0x802E56AC; // type:object size:0x15 scope:local align:4 data:string +@2699 = .data:0x802E56C4; // type:object size:0xD scope:local align:4 data:string +@2698 = .data:0x802E56D4; // type:object size:0xC scope:local align:4 +__vt__20TAIkabekuiCAnimation = .data:0x802E56E0; // type:object size:0xC scope:global align:4 +@2700 = .data:0x802E56EC; // type:object size:0xE scope:local align:4 data:string +@2702 = .data:0x802E56FC; // type:object size:0xA scope:local align:4 data:string +@2701 = .data:0x802E5708; // type:object size:0xC scope:local align:4 +@2712 = .data:0x802E5730; // type:object size:0xD scope:local align:4 data:string +@2713 = .data:0x802E5740; // type:object size:0xC scope:local align:4 +@2716 = .data:0x802E5768; // type:object size:0x12 scope:local align:4 data:string +@2718 = .data:0x802E577C; // type:object size:0x12 scope:local align:4 data:string +@2719 = .data:0x802E5790; // type:object size:0xC scope:local align:4 +@2717 = .data:0x802E579C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsleepKabekuiC = .data:0x802E57B0; // type:object size:0x20 scope:weak align:4 +@2736 = .data:0x802E57D0; // type:object size:0x11 scope:local align:4 data:string +@2737 = .data:0x802E57E4; // type:object size:0x14 scope:local align:4 +__vt__16TAIAdiveKabekuiC = .data:0x802E57F8; // type:object size:0x20 scope:weak align:4 +@2742 = .data:0x802E5838; // type:object size:0x1D scope:local align:4 data:string +@2744 = .data:0x802E5858; // type:object size:0x12 scope:local align:4 data:string +@2745 = .data:0x802E586C; // type:object size:0xC scope:local align:4 +@2746 = .data:0x802E5878; // type:object size:0x15 scope:local align:4 data:string +@2747 = .data:0x802E5890; // type:object size:0x14 scope:local align:4 +@2743 = .data:0x802E58A4; // type:object size:0x1C scope:local align:4 +__vt__28TAIAattackWorkObjectKabekuiC = .data:0x802E58C0; // type:object size:0x28 scope:weak align:4 +@2773 = .data:0x802E58E8; // type:object size:0x12 scope:local align:4 data:string +@2774 = .data:0x802E58FC; // type:object size:0xC scope:local align:4 +@2776 = .data:0x802E5924; // type:object size:0x11 scope:local align:4 data:string +@2777 = .data:0x802E5938; // type:object size:0xC scope:local align:4 +@2779 = .data:0x802E5960; // type:object size:0x14 scope:local align:4 data:string +@2780 = .data:0x802E5974; // type:object size:0x14 scope:local align:4 +__vt__19TAIAlandingKabekuiC = .data:0x802E5988; // type:object size:0x1C scope:weak align:4 +@2833 = .data:0x802E59A4; // type:object size:0x15 scope:local align:4 data:string +@2835 = .data:0x802E59BC; // type:object size:0xE scope:local align:4 data:string +@2836 = .data:0x802E59CC; // type:object size:0xC scope:local align:4 +@2837 = .data:0x802E59D8; // type:object size:0xD scope:local align:4 data:string +@2838 = .data:0x802E59E8; // type:object size:0x14 scope:local align:4 +@2834 = .data:0x802E59FC; // type:object size:0x1C scope:local align:4 +__vt__20TAIAmoreLifeKabekuiC = .data:0x802E5A18; // type:object size:0x20 scope:weak align:4 +@2844 = .data:0x802E5A38; // type:object size:0x19 scope:local align:4 data:string +@2846 = .data:0x802E5A54; // type:object size:0x17 scope:local align:4 data:string +@2847 = .data:0x802E5A6C; // type:object size:0xC scope:local align:4 +@2845 = .data:0x802E5A78; // type:object size:0x14 scope:local align:4 +__vt__24TAIAcheckPikiFlyKabekuiC = .data:0x802E5A8C; // type:object size:0x1C scope:weak align:4 +@2850 = .data:0x802E5AA8; // type:object size:0x19 scope:local align:4 data:string +@2851 = .data:0x802E5AC4; // type:object size:0x14 scope:local align:4 +__vt__24TAIAflyingMotionKabekuiC = .data:0x802E5AD8; // type:object size:0x1C scope:weak align:4 +@2853 = .data:0x802E5AF4; // type:object size:0x17 scope:local align:4 data:string +@2855 = .data:0x802E5B0C; // type:object size:0xF scope:local align:4 data:string +@2856 = .data:0x802E5B1C; // type:object size:0xC scope:local align:4 +@2854 = .data:0x802E5B28; // type:object size:0x14 scope:local align:4 +__vt__22TAIAflyingBaseKabekuiC = .data:0x802E5B3C; // type:object size:0x20 scope:weak align:4 +@2880 = .data:0x802E5B5C; // type:object size:0x18 scope:local align:4 data:string +@2882 = .data:0x802E5B74; // type:object size:0x29 scope:local align:4 data:string +@2881 = .data:0x802E5BA0; // type:object size:0xC scope:local align:4 +__vt__Q29@unnamed@12rippleEffect = .data:0x802E5BAC; // type:object size:0xC scope:weak align:4 +@2888 = .data:0x802E5BC4; // type:object size:0x14 scope:local align:4 data:string +@2889 = .data:0x802E5BD8; // type:object size:0x14 scope:local align:4 +__vt__19TAIAtakeOffKabekuiC = .data:0x802E5BEC; // type:object size:0x1C scope:weak align:4 +@2953 = .data:0x802E5C08; // type:object size:0x15 scope:local align:4 data:string +@2955 = .data:0x802E5C20; // type:object size:0xD scope:local align:4 data:string +@2956 = .data:0x802E5C30; // type:object size:0x14 scope:local align:4 +@2954 = .data:0x802E5C44; // type:object size:0x1C scope:local align:4 +__vt__20TAIAlessLifeKabekuiC = .data:0x802E5C60; // type:object size:0x20 scope:weak align:4 +__vt__13TAIAjudgeLife = .data:0x802E5C80; // type:object size:0x20 scope:weak align:4 +@2961 = .data:0x802E5CA0; // type:object size:0x14 scope:local align:4 data:string +@2963 = .data:0x802E5CB4; // type:object size:0x13 scope:local align:4 data:string +@2964 = .data:0x802E5CC8; // type:object size:0x14 scope:local align:4 +@2962 = .data:0x802E5CDC; // type:object size:0x1C scope:local align:4 +__vt__19TAIAbiteForKabekuiC = .data:0x802E5CF8; // type:object size:0x24 scope:weak align:4 +@2973 = .data:0x802E5D1C; // type:object size:0x13 scope:local align:4 data:string +@2975 = .data:0x802E5D30; // type:object size:0xB scope:local align:4 data:string +@2976 = .data:0x802E5D3C; // type:object size:0xC scope:local align:4 +@2974 = .data:0x802E5D48; // type:object size:0x14 scope:local align:4 +@2984 = .data:0x802E5D94; // type:object size:0x14 scope:local align:4 data:string +@2986 = .data:0x802E5DA8; // type:object size:0xD scope:local align:4 data:string +@2987 = .data:0x802E5DB8; // type:object size:0xC scope:local align:4 data:string +@2988 = .data:0x802E5DC4; // type:object size:0xC scope:local align:4 +@2985 = .data:0x802E5DD0; // type:object size:0x14 scope:local align:4 +__vt__19TAIkabekuiCStrategy = .data:0x802E5DE4; // type:object size:0x28 scope:weak align:4 +@2989 = .data:0x802E5E0C; // type:object size:0x16 scope:local align:4 data:string +@2992 = .data:0x802E5E24; // type:object size:0x9 scope:local align:4 data:string +@2993 = .data:0x802E5E30; // type:object size:0xC scope:local align:4 +@2995 = .data:0x802E5E3C; // type:object size:0x14 scope:local align:4 +@2996 = .data:0x802E5E50; // type:object size:0xF scope:local align:4 data:string +@2997 = .data:0x802E5E60; // type:object size:0x1C scope:local align:4 +@2990 = .data:0x802E5E7C; // type:object size:0x24 scope:local align:4 +__vt__21TAIkabekuiCParameters = .data:0x802E5EA0; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E5ED0; // type:label scope:local +@1737 = .data:0x802E5ED0; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E5EE0; // type:object size:0xA scope:local align:4 data:string +@1901 = .data:0x802E5EEC; // type:object size:0x15 scope:local align:4 +@1904 = .data:0x802E5F04; // type:object size:0x15 scope:local align:4 +@2191 = .data:0x802E5F1C; // type:object size:0x1D scope:local align:4 data:string +@2192 = .data:0x802E5F3C; // type:object size:0x1F scope:local align:4 data:string +@2193 = .data:0x802E5F5C; // type:object size:0x1E scope:local align:4 data:string +@2194 = .data:0x802E5F7C; // type:object size:0x1E scope:local align:4 data:string +@2195 = .data:0x802E5F9C; // type:object size:0x21 scope:local align:4 data:string +@2196 = .data:0x802E5FC0; // type:object size:0x21 scope:local align:4 data:string +@2197 = .data:0x802E5FE4; // type:object size:0x1E scope:local align:4 data:string +@2198 = .data:0x802E6004; // type:object size:0x1E scope:local align:4 data:string +@2199 = .data:0x802E6024; // type:object size:0x1F scope:local align:4 data:string +@2200 = .data:0x802E6044; // type:object size:0x1E scope:local align:4 data:string +@2201 = .data:0x802E6064; // type:object size:0x1E scope:local align:4 data:string +@2202 = .data:0x802E6084; // type:object size:0x13 scope:local align:4 data:string +@2204 = .data:0x802E6098; // type:object size:0xD scope:local align:4 data:string +@2203 = .data:0x802E60A8; // type:object size:0xC scope:local align:4 +__vt__18TAItamagoAnimation = .data:0x802E60B4; // type:object size:0xC scope:global align:4 +@2205 = .data:0x802E60C0; // type:object size:0x15 scope:local align:4 data:string +@2207 = .data:0x802E60D8; // type:object size:0xA scope:local align:4 data:string +@2206 = .data:0x802E60E4; // type:object size:0xC scope:local align:4 +__vt__20TAIAcountStartTamago = .data:0x802E60F0; // type:object size:0x1C scope:weak align:4 +@2217 = .data:0x802E610C; // type:object size:0xA scope:local align:4 data:string +@2219 = .data:0x802E6118; // type:object size:0xB scope:local align:4 data:string +@2220 = .data:0x802E6124; // type:object size:0xC scope:local align:4 +@2218 = .data:0x802E6130; // type:object size:0x14 scope:local align:4 +__vt__9TAIAhatch = .data:0x802E6144; // type:object size:0x1C scope:weak align:4 +@2244 = .data:0x802E6160; // type:object size:0x18 scope:local align:4 data:string +@2246 = .data:0x802E6178; // type:object size:0x12 scope:local align:4 data:string +@2247 = .data:0x802E618C; // type:object size:0xC scope:local align:4 +@2245 = .data:0x802E6198; // type:object size:0x14 scope:local align:4 +__vt__23TAIAtimerReactionTamago = .data:0x802E61AC; // type:object size:0x20 scope:weak align:4 +@2305 = .data:0x802E61EC; // type:object size:0x10 scope:local align:4 data:string +@2306 = .data:0x802E61FC; // type:object size:0x14 scope:local align:4 +__vt__15TAIAdyingTamago = .data:0x802E6210; // type:object size:0x1C scope:weak align:4 +@2316 = .data:0x802E6248; // type:object size:0x12 scope:local align:4 data:string +@2318 = .data:0x802E625C; // type:object size:0xD scope:local align:4 data:string +@2319 = .data:0x802E626C; // type:object size:0xC scope:local align:4 data:string +@2320 = .data:0x802E6278; // type:object size:0xC scope:local align:4 +@2317 = .data:0x802E6284; // type:object size:0x14 scope:local align:4 +__vt__17TAItamagoStrategy = .data:0x802E6298; // type:object size:0x28 scope:weak align:4 +@2321 = .data:0x802E62C0; // type:object size:0x14 scope:local align:4 data:string +@2324 = .data:0x802E62D4; // type:object size:0x9 scope:local align:4 data:string +@2325 = .data:0x802E62E0; // type:object size:0xC scope:local align:4 +@2327 = .data:0x802E62EC; // type:object size:0x14 scope:local align:4 +@2328 = .data:0x802E6300; // type:object size:0xF scope:local align:4 data:string +@2329 = .data:0x802E6310; // type:object size:0x1C scope:local align:4 +@2322 = .data:0x802E632C; // type:object size:0x24 scope:local align:4 +__vt__19TAItamagoParameters = .data:0x802E6350; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E6380; // type:label scope:local +@1737 = .data:0x802E6380; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E6390; // type:object size:0xA scope:local align:4 data:string +@2114 = .data:0x802E639C; // type:object size:0xF scope:local align:4 +@2117 = .data:0x802E63AC; // type:object size:0xF scope:local align:4 +@2118 = .data:0x802E63BC; // type:object size:0x1D scope:local align:4 +@2120 = .data:0x802E63DC; // type:object size:0x19 scope:local align:4 +@2122 = .data:0x802E63F8; // type:object size:0xF scope:local align:4 +@2124 = .data:0x802E6408; // type:object size:0x15 scope:local align:4 +@2771 = .data:0x802E6420; // type:object size:0x1D scope:local align:4 data:string +@2772 = .data:0x802E6440; // type:object size:0x1F scope:local align:4 data:string +@2773 = .data:0x802E6460; // type:object size:0x1E scope:local align:4 data:string +@2774 = .data:0x802E6480; // type:object size:0x1E scope:local align:4 data:string +@2775 = .data:0x802E64A0; // type:object size:0x21 scope:local align:4 data:string +@2776 = .data:0x802E64C4; // type:object size:0x21 scope:local align:4 data:string +@2777 = .data:0x802E64E8; // type:object size:0x1E scope:local align:4 data:string +@2778 = .data:0x802E6508; // type:object size:0x1E scope:local align:4 data:string +@2779 = .data:0x802E6528; // type:object size:0x1F scope:local align:4 data:string +@2780 = .data:0x802E6548; // type:object size:0x1E scope:local align:4 data:string +@2781 = .data:0x802E6568; // type:object size:0x1E scope:local align:4 data:string +@2782 = .data:0x802E6588; // type:object size:0x13 scope:local align:4 data:string +@2784 = .data:0x802E659C; // type:object size:0xD scope:local align:4 data:string +@2783 = .data:0x802E65AC; // type:object size:0xC scope:local align:4 +__vt__18TAIdororoAnimation = .data:0x802E65B8; // type:object size:0xC scope:global align:4 +@2785 = .data:0x802E65C4; // type:object size:0x12 scope:local align:4 data:string +@2787 = .data:0x802E65D8; // type:object size:0xD scope:local align:4 data:string +@2788 = .data:0x802E65E8; // type:object size:0xC scope:local align:4 data:string +@2789 = .data:0x802E65F4; // type:object size:0xC scope:local align:4 +@2786 = .data:0x802E6600; // type:object size:0x14 scope:local align:4 +__vt__17TAIdororoStrategy = .data:0x802E6614; // type:object size:0x28 scope:global align:4 +@2790 = .data:0x802E663C; // type:object size:0x12 scope:local align:4 data:string +@2792 = .data:0x802E6650; // type:object size:0xA scope:local align:4 data:string +@2791 = .data:0x802E665C; // type:object size:0xC scope:local align:4 +__vt__17TAIAgravityDororo = .data:0x802E6668; // type:object size:0x1C scope:weak align:4 +@2810 = .data:0x802E6684; // type:object size:0x14 scope:local align:4 data:string +@2811 = .data:0x802E6698; // type:object size:0xC scope:local align:4 +__vt__19TAIAcheckBarkDororo = .data:0x802E66A4; // type:object size:0x1C scope:weak align:4 +@2900 = .data:0x802E66C0; // type:object size:0xF scope:local align:4 data:string +@2902 = .data:0x802E66D0; // type:object size:0x12 scope:local align:4 data:string +@2903 = .data:0x802E66E4; // type:object size:0xC scope:local align:4 +@2904 = .data:0x802E66F0; // type:object size:0xF scope:local align:4 data:string +@2905 = .data:0x802E6700; // type:object size:0x14 scope:local align:4 +@2901 = .data:0x802E6714; // type:object size:0x1C scope:local align:4 +__vt__14TAIAbarkDororo = .data:0x802E6730; // type:object size:0x20 scope:weak align:4 +@3001 = .data:0x802E6750; // type:object size:0xC scope:local align:4 data:string +@3011 = .data:0x802E6788; // type:object size:0x19 scope:local align:4 data:string +@3012 = .data:0x802E67A4; // type:object size:0x14 scope:local align:4 +__vt__24TAIAtransformationDororo = .data:0x802E67B8; // type:object size:0x1C scope:weak align:4 +@3066 = .data:0x802E67D4; // type:object size:0x10 scope:local align:4 data:string +@3067 = .data:0x802E67E4; // type:object size:0x14 scope:local align:4 +__vt__15TAIAbirthDororo = .data:0x802E67F8; // type:object size:0x1C scope:weak align:4 +@3087 = .data:0x802E6814; // type:object size:0x11 scope:local align:4 data:string +@3089 = .data:0x802E6828; // type:object size:0x1C scope:local align:4 data:string +@3090 = .data:0x802E6844; // type:object size:0x14 scope:local align:4 +@3088 = .data:0x802E6858; // type:object size:0x1C scope:local align:4 +__vt__16TAIAgoTargetPiki = .data:0x802E6874; // type:object size:0x24 scope:weak align:4 +@3133 = .data:0x802E6898; // type:object size:0xF scope:local align:4 data:string +@3134 = .data:0x802E68A8; // type:object size:0xC scope:local align:4 +@3136 = .data:0x802E68D0; // type:object size:0xF scope:local align:4 data:string +@3138 = .data:0x802E68E0; // type:object size:0x9 scope:local align:4 data:string +@3139 = .data:0x802E68EC; // type:object size:0x14 scope:local align:4 +@3137 = .data:0x802E6900; // type:object size:0x1C scope:local align:4 +__vt__14TAIAwaitDororo = .data:0x802E691C; // type:object size:0x20 scope:weak align:4 +@3166 = .data:0x802E693C; // type:object size:0x13 scope:local align:4 data:string +@3168 = .data:0x802E6950; // type:object size:0xB scope:local align:4 data:string +@3169 = .data:0x802E695C; // type:object size:0xC scope:local align:4 +@3170 = .data:0x802E6968; // type:object size:0xD scope:local align:4 data:string +@3171 = .data:0x802E6978; // type:object size:0x14 scope:local align:4 +@3167 = .data:0x802E698C; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingDororo = .data:0x802E69A8; // type:object size:0x24 scope:weak align:4 +@3178 = .data:0x802E69CC; // type:object size:0x15 scope:local align:4 data:string +@3180 = .data:0x802E69E4; // type:object size:0xF scope:local align:4 data:string +@3181 = .data:0x802E69F4; // type:object size:0x1C scope:local align:4 +@3179 = .data:0x802E6A10; // type:object size:0x24 scope:local align:4 +__vt__20TAIAgoGoalPathDororo = .data:0x802E6A34; // type:object size:0x24 scope:weak align:4 +@3221 = .data:0x802E6A58; // type:object size:0xE scope:local align:4 data:string +@3223 = .data:0x802E6A68; // type:object size:0xA scope:local align:4 data:string +@3222 = .data:0x802E6A74; // type:object size:0xC scope:local align:4 +@3225 = .data:0x802E6A98; // type:object size:0x12 scope:local align:4 data:string +@3226 = .data:0x802E6AAC; // type:object size:0xC scope:local align:4 +__vt__17TAIAkillTouchPiki = .data:0x802E6AB8; // type:object size:0x1C scope:weak align:4 +@3492 = .data:0x802E6AD4; // type:object size:0x10 scope:local align:4 data:string +@3494 = .data:0x802E6AE4; // type:object size:0xA scope:local align:4 data:string +@3495 = .data:0x802E6AF0; // type:object size:0x14 scope:local align:4 +@3493 = .data:0x802E6B04; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingDororo = .data:0x802E6B20; // type:object size:0x1C scope:weak align:4 +@3558 = .data:0x802E6B3C; // type:object size:0xF scope:local align:4 data:string +@3559 = .data:0x802E6B4C; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitDororo = .data:0x802E6B58; // type:object size:0x1C scope:weak align:4 +@3565 = .data:0x802E6B90; // type:object size:0x14 scope:local align:4 data:string +@3568 = .data:0x802E6BA4; // type:object size:0x9 scope:local align:4 data:string +@3569 = .data:0x802E6BB0; // type:object size:0xC scope:local align:4 +@3571 = .data:0x802E6BBC; // type:object size:0x14 scope:local align:4 +@3572 = .data:0x802E6BD0; // type:object size:0xF scope:local align:4 data:string +@3573 = .data:0x802E6BE0; // type:object size:0x1C scope:local align:4 +@3566 = .data:0x802E6BFC; // type:object size:0x24 scope:local align:4 +__vt__19TAIdororoParameters = .data:0x802E6C20; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E6C50; // type:label scope:local +@1737 = .data:0x802E6C50; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E6C60; // type:object size:0x9 scope:local align:4 data:string +@1937 = .data:0x802E6C6C; // type:object size:0xF scope:local align:4 +@1940 = .data:0x802E6C7C; // type:object size:0xF scope:local align:4 +@2233 = .data:0x802E6C8C; // type:object size:0x1C scope:local align:4 data:string +@2234 = .data:0x802E6CA8; // type:object size:0x1E scope:local align:4 data:string +@2235 = .data:0x802E6CC8; // type:object size:0x1D scope:local align:4 data:string +@2236 = .data:0x802E6CE8; // type:object size:0x1D scope:local align:4 data:string +@2237 = .data:0x802E6D08; // type:object size:0x20 scope:local align:4 data:string +@2238 = .data:0x802E6D28; // type:object size:0x20 scope:local align:4 data:string +@2239 = .data:0x802E6D48; // type:object size:0x1D scope:local align:4 data:string +@2240 = .data:0x802E6D68; // type:object size:0x1D scope:local align:4 data:string +@2241 = .data:0x802E6D88; // type:object size:0x1E scope:local align:4 data:string +@2242 = .data:0x802E6DA8; // type:object size:0x1D scope:local align:4 data:string +@2243 = .data:0x802E6DC8; // type:object size:0x1D scope:local align:4 data:string +@2244 = .data:0x802E6DE8; // type:object size:0x12 scope:local align:4 data:string +@2246 = .data:0x802E6DFC; // type:object size:0xD scope:local align:4 data:string +@2245 = .data:0x802E6E0C; // type:object size:0xC scope:local align:4 +__vt__17TAIhibaAAnimation = .data:0x802E6E18; // type:object size:0xC scope:global align:4 +@2247 = .data:0x802E6E24; // type:object size:0x11 scope:local align:4 data:string +@2249 = .data:0x802E6E38; // type:object size:0xD scope:local align:4 data:string +@2250 = .data:0x802E6E48; // type:object size:0xC scope:local align:4 data:string +@2251 = .data:0x802E6E54; // type:object size:0xC scope:local align:4 +@2248 = .data:0x802E6E60; // type:object size:0x14 scope:local align:4 +__vt__16TAIhibaAStrategy = .data:0x802E6E74; // type:object size:0x28 scope:global align:4 +@2252 = .data:0x802E6E9C; // type:object size:0x14 scope:local align:4 data:string +@2254 = .data:0x802E6EB0; // type:object size:0xA scope:local align:4 data:string +@2255 = .data:0x802E6EBC; // type:object size:0x12 scope:local align:4 data:string +@2256 = .data:0x802E6ED0; // type:object size:0xC scope:local align:4 +@2253 = .data:0x802E6EDC; // type:object size:0x14 scope:local align:4 +__vt__19TAIAfireAttackHibaA = .data:0x802E6EF0; // type:object size:0x1C scope:weak align:4 +@2347 = .data:0x802E6F0C; // type:object size:0x17 scope:local align:4 data:string +@2349 = .data:0x802E6F24; // type:object size:0x12 scope:local align:4 data:string +@2350 = .data:0x802E6F38; // type:object size:0xC scope:local align:4 +@2348 = .data:0x802E6F44; // type:object size:0x14 scope:local align:4 +__vt__22TAIAtimerReactionHibaA = .data:0x802E6F58; // type:object size:0x20 scope:weak align:4 +@2367 = .data:0x802E6F98; // type:object size:0xE scope:local align:4 data:string +@2368 = .data:0x802E6FA8; // type:object size:0xC scope:local align:4 +__vt__13TAIAinitHibaA = .data:0x802E6FB4; // type:object size:0x1C scope:weak align:4 +@2375 = .data:0x802E6FEC; // type:object size:0x13 scope:local align:4 data:string +@2378 = .data:0x802E7000; // type:object size:0x9 scope:local align:4 data:string +@2379 = .data:0x802E700C; // type:object size:0xC scope:local align:4 +@2381 = .data:0x802E7018; // type:object size:0x14 scope:local align:4 +@2382 = .data:0x802E702C; // type:object size:0xF scope:local align:4 data:string +@2383 = .data:0x802E703C; // type:object size:0x1C scope:local align:4 +@2376 = .data:0x802E7058; // type:object size:0x24 scope:local align:4 +__vt__18TAIhibaAParameters = .data:0x802E707C; // type:object size:0x30 scope:weak align:4 +@2393 = .data:0x802E70AC; // type:object size:0x22 scope:local align:4 data:string +@2395 = .data:0x802E70D0; // type:object size:0x1D scope:local align:4 data:string +@2394 = .data:0x802E70F0; // type:object size:0xC scope:local align:4 +__vt__33TAIeffectAttackEventCallBackHibaA = .data:0x802E70FC; // type:object size:0x24 scope:weak align:4 +@2511 = .data:0x802E7120; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E7180; // type:label scope:local +@1716 = .data:0x802E7180; // type:object size:0xF scope:local align:4 data:string +@1726 = .data:0x802E7190; // type:object size:0xB scope:local align:4 data:string +@1808 = .data:0x802E719C; // type:object size:0x13 scope:local align:4 data:string +@1810 = .data:0x802E71B0; // type:object size:0xA scope:local align:4 data:string +@1809 = .data:0x802E71BC; // type:object size:0xC scope:local align:4 +__vt__18TAIAeffCloudOfDust = .data:0x802E71C8; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x802E71E8; // type:label scope:local +@1737 = .data:0x802E71E8; // type:object size:0xE scope:local align:4 data:string +@1747 = .data:0x802E71F8; // type:object size:0xA scope:local align:4 data:string +@2062 = .data:0x802E7204; // type:object size:0x11 scope:local align:4 +@2063 = .data:0x802E7218; // type:object size:0x13 scope:local align:4 +@2064 = .data:0x802E722C; // type:object size:0x1D scope:local align:4 +@2065 = .data:0x802E724C; // type:object size:0x17 scope:local align:4 +@2068 = .data:0x802E7264; // type:object size:0x13 scope:local align:4 +@2069 = .data:0x802E7278; // type:object size:0x17 scope:local align:4 +@2071 = .data:0x802E7290; // type:object size:0x11 scope:local align:4 +@2952 = .data:0x802E72A4; // type:object size:0x1D scope:local align:4 data:string +@2953 = .data:0x802E72C4; // type:object size:0x1F scope:local align:4 data:string +@2954 = .data:0x802E72E4; // type:object size:0x1E scope:local align:4 data:string +@2955 = .data:0x802E7304; // type:object size:0x1E scope:local align:4 data:string +@2956 = .data:0x802E7324; // type:object size:0x21 scope:local align:4 data:string +@2957 = .data:0x802E7348; // type:object size:0x21 scope:local align:4 data:string +@2958 = .data:0x802E736C; // type:object size:0x1E scope:local align:4 data:string +@2959 = .data:0x802E738C; // type:object size:0x1E scope:local align:4 data:string +@2960 = .data:0x802E73AC; // type:object size:0x1F scope:local align:4 data:string +@2961 = .data:0x802E73CC; // type:object size:0x1E scope:local align:4 data:string +@2962 = .data:0x802E73EC; // type:object size:0x1E scope:local align:4 data:string +@2963 = .data:0x802E740C; // type:object size:0x13 scope:local align:4 data:string +@2965 = .data:0x802E7420; // type:object size:0xD scope:local align:4 data:string +@2964 = .data:0x802E7430; // type:object size:0xC scope:local align:4 +__vt__18TAImiurinAnimation = .data:0x802E743C; // type:object size:0xC scope:global align:4 +@2966 = .data:0x802E7448; // type:object size:0x12 scope:local align:4 data:string +@2968 = .data:0x802E745C; // type:object size:0xD scope:local align:4 data:string +@2969 = .data:0x802E746C; // type:object size:0xC scope:local align:4 data:string +@2970 = .data:0x802E7478; // type:object size:0xC scope:local align:4 +@2967 = .data:0x802E7484; // type:object size:0x14 scope:local align:4 +__vt__17TAImiurinStrategy = .data:0x802E7498; // type:object size:0x28 scope:global align:4 +@2971 = .data:0x802E74C0; // type:object size:0x11 scope:local align:4 data:string +@2973 = .data:0x802E74D4; // type:object size:0xA scope:local align:4 data:string +@2974 = .data:0x802E74E0; // type:object size:0x12 scope:local align:4 data:string +@2975 = .data:0x802E74F4; // type:object size:0xC scope:local align:4 +@2972 = .data:0x802E7500; // type:object size:0x14 scope:local align:4 +__vt__16TAIAgroggyMiurin = .data:0x802E7514; // type:object size:0x1C scope:weak align:4 +@3007 = .data:0x802E7530; // type:object size:0x19 scope:local align:4 data:string +@3008 = .data:0x802E754C; // type:object size:0xC scope:local align:4 +__vt__24TAIAresetAnimSpeedMiurin = .data:0x802E7558; // type:object size:0x1C scope:weak align:4 +@3016 = .data:0x802E7574; // type:object size:0x10 scope:local align:4 data:string +@3018 = .data:0x802E7584; // type:object size:0xB scope:local align:4 data:string +@3019 = .data:0x802E7590; // type:object size:0xC scope:local align:4 +@3017 = .data:0x802E759C; // type:object size:0x14 scope:local align:4 +__vt__15TAIAangryMiurin = .data:0x802E75B0; // type:object size:0x20 scope:weak align:4 +@3088 = .data:0x802E75D0; // type:object size:0xC scope:local align:4 data:string +@3098 = .data:0x802E7608; // type:object size:0x14 scope:local align:4 data:string +@3100 = .data:0x802E761C; // type:object size:0x1D scope:local align:4 data:string +@3101 = .data:0x802E763C; // type:object size:0xC scope:local align:4 +@3099 = .data:0x802E7648; // type:object size:0x14 scope:local align:4 +__vt__19TAIAcheckNaviMiurin = .data:0x802E765C; // type:object size:0x1C scope:weak align:4 +@3122 = .data:0x802E7678; // type:object size:0x16 scope:local align:4 data:string +@3123 = .data:0x802E7690; // type:object size:0xC scope:local align:4 +__vt__21TAIAcheckFlowerPikmin = .data:0x802E769C; // type:object size:0x1C scope:weak align:4 +@3223 = .data:0x802E76B8; // type:object size:0x12 scope:local align:4 data:string +@3224 = .data:0x802E76CC; // type:object size:0x14 scope:local align:4 +__vt__17TAIAsatisfyMiurin = .data:0x802E76E0; // type:object size:0x1C scope:weak align:4 +@3258 = .data:0x802E76FC; // type:object size:0x14 scope:local align:4 data:string +@3259 = .data:0x802E7710; // type:object size:0xC scope:local align:4 +__vt__19TAIAwatchNaviMiurin = .data:0x802E771C; // type:object size:0x1C scope:weak align:4 +@3291 = .data:0x802E7738; // type:object size:0x12 scope:local align:4 data:string +@3292 = .data:0x802E774C; // type:object size:0xC scope:local align:4 +@3305 = .data:0x802E7778; // type:object size:0x1B scope:local align:4 data:string +@3307 = .data:0x802E7794; // type:object size:0x15 scope:local align:4 data:string +@3308 = .data:0x802E77AC; // type:object size:0xC scope:local align:4 +@3306 = .data:0x802E77B8; // type:object size:0x14 scope:local align:4 +__vt__26TAIAoutsideTerritoryMiurin = .data:0x802E77CC; // type:object size:0x1C scope:weak align:4 +@3404 = .data:0x802E7804; // type:object size:0x13 scope:local align:4 data:string +@3406 = .data:0x802E7818; // type:object size:0x1A scope:local align:4 data:string +@3407 = .data:0x802E7834; // type:object size:0x14 scope:local align:4 +@3405 = .data:0x802E7848; // type:object size:0x1C scope:local align:4 +__vt__18TAIAflickingMiurin = .data:0x802E7864; // type:object size:0x24 scope:weak align:4 +@3409 = .data:0x802E7888; // type:object size:0x15 scope:local align:4 data:string +@3411 = .data:0x802E78A0; // type:object size:0xF scope:local align:4 data:string +@3412 = .data:0x802E78B0; // type:object size:0xC scope:local align:4 +@3410 = .data:0x802E78BC; // type:object size:0x14 scope:local align:4 +__vt__20TAIAflickCheckMiurin = .data:0x802E78D0; // type:object size:0x20 scope:weak align:4 +@3418 = .data:0x802E78F0; // type:object size:0x17 scope:local align:4 data:string +@3420 = .data:0x802E7908; // type:object size:0x11 scope:local align:4 data:string +@3421 = .data:0x802E791C; // type:object size:0xC scope:local align:4 +@3419 = .data:0x802E7928; // type:object size:0x14 scope:local align:4 +__vt__22TAIAstickingPikiMiurin = .data:0x802E793C; // type:object size:0x20 scope:weak align:4 +@3427 = .data:0x802E795C; // type:object size:0xF scope:local align:4 data:string +@3428 = .data:0x802E796C; // type:object size:0xC scope:local align:4 +@3430 = .data:0x802E7994; // type:object size:0x17 scope:local align:4 data:string +@3431 = .data:0x802E79AC; // type:object size:0xC scope:local align:4 +__vt__22TAIAcheckSatisfyMiurin = .data:0x802E79B8; // type:object size:0x1C scope:weak align:4 +@3435 = .data:0x802E79D4; // type:object size:0x11 scope:local align:4 data:string +@3436 = .data:0x802E79E8; // type:object size:0x14 scope:local align:4 +__vt__16TAIAattackMiurin = .data:0x802E79FC; // type:object size:0x1C scope:weak align:4 +@3686 = .data:0x802E7A18; // type:object size:0x12 scope:local align:4 data:string +@3687 = .data:0x802E7A2C; // type:object size:0x14 scope:local align:4 +__vt__17TAIAattackPosture = .data:0x802E7A40; // type:object size:0x1C scope:weak align:4 +@3693 = .data:0x802E7A5C; // type:object size:0x1B scope:local align:4 data:string +@3695 = .data:0x802E7A78; // type:object size:0x15 scope:local align:4 data:string +@3696 = .data:0x802E7A90; // type:object size:0xC scope:local align:4 +@3694 = .data:0x802E7A9C; // type:object size:0x14 scope:local align:4 +__vt__26TAIAattackableTargetMiurin = .data:0x802E7AB0; // type:object size:0x20 scope:weak align:4 +@3700 = .data:0x802E7AD0; // type:object size:0x28 scope:local align:4 data:string +@3702 = .data:0x802E7AF8; // type:object size:0x22 scope:local align:4 data:string +@3703 = .data:0x802E7B1C; // type:object size:0x14 scope:local align:4 +@3701 = .data:0x802E7B30; // type:object size:0x1C scope:local align:4 +__vt__39TAIAapproachTargetPriorityFaceDirMiurin = .data:0x802E7B4C; // type:object size:0x20 scope:weak align:4 +@3714 = .data:0x802E7B6C; // type:object size:0x1C scope:local align:4 data:string +@3716 = .data:0x802E7B88; // type:object size:0x11 scope:local align:4 data:string +@3717 = .data:0x802E7B9C; // type:object size:0x14 scope:local align:4 +@3718 = .data:0x802E7BB0; // type:object size:0x16 scope:local align:4 data:string +@3719 = .data:0x802E7BC8; // type:object size:0x1C scope:local align:4 +@3715 = .data:0x802E7BE4; // type:object size:0x24 scope:local align:4 +__vt__27TAIAturnFocusCreatureMiurin = .data:0x802E7C08; // type:object size:0x20 scope:weak align:4 +@3730 = .data:0x802E7C28; // type:object size:0x10 scope:local align:4 data:string +@3732 = .data:0x802E7C38; // type:object size:0xA scope:local align:4 data:string +@3733 = .data:0x802E7C44; // type:object size:0x14 scope:local align:4 +@3731 = .data:0x802E7C58; // type:object size:0x1C scope:local align:4 +__vt__15TAIAdyingMiurin = .data:0x802E7C74; // type:object size:0x1C scope:weak align:4 +@3753 = .data:0x802E7C90; // type:object size:0xF scope:local align:4 data:string +@3754 = .data:0x802E7CA0; // type:object size:0xC scope:local align:4 +__vt__14TAIAinitMiurin = .data:0x802E7CAC; // type:object size:0x1C scope:weak align:4 +@3757 = .data:0x802E7CE4; // type:object size:0x14 scope:local align:4 data:string +@3760 = .data:0x802E7CF8; // type:object size:0x9 scope:local align:4 data:string +@3761 = .data:0x802E7D04; // type:object size:0xC scope:local align:4 +@3763 = .data:0x802E7D10; // type:object size:0x14 scope:local align:4 +@3764 = .data:0x802E7D24; // type:object size:0xF scope:local align:4 data:string +@3765 = .data:0x802E7D34; // type:object size:0x1C scope:local align:4 +@3758 = .data:0x802E7D50; // type:object size:0x24 scope:local align:4 +__vt__19TAImiurinParameters = .data:0x802E7D74; // type:object size:0x30 scope:weak align:4 +@722 = .data:0x802E7DA8; // type:object size:0x16 scope:local align:4 data:string +@725 = .data:0x802E7DC0; // type:object size:0xC scope:local align:4 data:string +...data.0 = .data:0x802E7DD0; // type:label scope:local +@1134 = .data:0x802E7DD0; // type:object size:0x11 scope:local align:4 data:string +@1144 = .data:0x802E7DE4; // type:object size:0xD scope:local align:4 data:string +@2798 = .data:0x802E7DF4; // type:object size:0x16 scope:local align:4 data:string +@2799 = .data:0x802E7E0C; // type:object size:0x16 scope:local align:4 data:string +@2800 = .data:0x802E7E24; // type:object size:0x17 scope:local align:4 data:string +@2801 = .data:0x802E7E3C; // type:object size:0x16 scope:local align:4 data:string +@2802 = .data:0x802E7E54; // type:object size:0x17 scope:local align:4 data:string +@2803 = .data:0x802E7E6C; // type:object size:0x17 scope:local align:4 data:string +@2804 = .data:0x802E7E84; // type:object size:0x17 scope:local align:4 data:string +@2805 = .data:0x802E7E9C; // type:object size:0x16 scope:local align:4 data:string +@2806 = .data:0x802E7EB4; // type:object size:0x16 scope:local align:4 data:string +@2815 = .data:0x802E7ECC; // type:object size:0x14 scope:local align:4 data:string +@3696 = .data:0x802E7EE0; // type:object size:0x24 scope:local align:4 +@6977 = .data:0x802E7F04; // type:object size:0x1C scope:local align:4 data:string +@6979 = .data:0x802E7F20; // type:object size:0xF scope:local align:4 data:string +@6980 = .data:0x802E7F30; // type:object size:0x14 scope:local align:4 data:string +@6981 = .data:0x802E7F44; // type:object size:0xC scope:local align:4 +@6982 = .data:0x802E7F50; // type:object size:0x14 scope:local align:4 data:string +@6983 = .data:0x802E7F64; // type:object size:0x1A scope:local align:4 data:string +@6984 = .data:0x802E7F80; // type:object size:0x10 scope:local align:4 data:string +@6985 = .data:0x802E7F90; // type:object size:0x14 scope:local align:4 +@6978 = .data:0x802E7FA4; // type:object size:0x2C scope:local align:4 +@6987 = .data:0x802E7FE0; // type:object size:0x24 scope:local align:4 data:string +@6988 = .data:0x802E8004; // type:object size:0x24 scope:local align:4 +__vt__Q29@unnamed@24DrawWorldMapDateCallBack = .data:0x802E8028; // type:object size:0x10 scope:weak align:4 +@818 = .data:0x802E8058; // type:object size:0x15 scope:local align:4 data:string +@768 = .data:0x802E8070; // type:object size:0x18 scope:local align:4 data:string +@770 = .data:0x802E8088; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802E80A0; // type:label scope:local +@1135 = .data:0x802E80A0; // type:object size:0xC scope:local align:4 data:string +@1137 = .data:0x802E80AC; // type:object size:0xD scope:local align:4 data:string +@1136 = .data:0x802E80BC; // type:object size:0xC scope:local align:4 +__vt__11YaiStrategy = .data:0x802E80C8; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x802E80F0; // type:label scope:local +@660 = .data:0x802E80F0; // type:object size:0x10 scope:local align:4 data:string +@670 = .data:0x802E8100; // type:object size:0xC scope:local align:4 data:string +@672 = .data:0x802E810C; // type:object size:0x16 scope:local align:4 data:string +@673 = .data:0x802E8124; // type:object size:0x17 scope:local align:4 data:string +@674 = .data:0x802E813C; // type:object size:0x18 scope:local align:4 data:string +@675 = .data:0x802E8154; // type:object size:0x16 scope:local align:4 data:string +@676 = .data:0x802E816C; // type:object size:0x17 scope:local align:4 data:string +@677 = .data:0x802E8184; // type:object size:0x18 scope:local align:4 data:string +@678 = .data:0x802E819C; // type:object size:0x18 scope:local align:4 data:string +@679 = .data:0x802E81B4; // type:object size:0x18 scope:local align:4 data:string +@680 = .data:0x802E81CC; // type:object size:0x19 scope:local align:4 data:string +@681 = .data:0x802E81E8; // type:object size:0x19 scope:local align:4 data:string +@682 = .data:0x802E8204; // type:object size:0x19 scope:local align:4 data:string +@683 = .data:0x802E8220; // type:object size:0x18 scope:local align:4 data:string +@684 = .data:0x802E8238; // type:object size:0x19 scope:local align:4 data:string +@685 = .data:0x802E8254; // type:object size:0x19 scope:local align:4 data:string +@686 = .data:0x802E8270; // type:object size:0x19 scope:local align:4 data:string +@687 = .data:0x802E828C; // type:object size:0x19 scope:local align:4 data:string +@688 = .data:0x802E82A8; // type:object size:0x15 scope:local align:4 data:string +@689 = .data:0x802E82C0; // type:object size:0x18 scope:local align:4 data:string +@690 = .data:0x802E82D8; // type:object size:0x15 scope:local align:4 data:string +@691 = .data:0x802E82F0; // type:object size:0x19 scope:local align:4 data:string +@692 = .data:0x802E830C; // type:object size:0x18 scope:local align:4 data:string +@693 = .data:0x802E8324; // type:object size:0x18 scope:local align:4 data:string +@694 = .data:0x802E833C; // type:object size:0x19 scope:local align:4 data:string +@695 = .data:0x802E8358; // type:object size:0x19 scope:local align:4 data:string +@696 = .data:0x802E8374; // type:object size:0x19 scope:local align:4 data:string +@697 = .data:0x802E8390; // type:object size:0x18 scope:local align:4 data:string +@698 = .data:0x802E83A8; // type:object size:0x19 scope:local align:4 data:string +@699 = .data:0x802E83C4; // type:object size:0x19 scope:local align:4 data:string +@700 = .data:0x802E83E0; // type:object size:0x19 scope:local align:4 data:string +@701 = .data:0x802E83FC; // type:object size:0x19 scope:local align:4 data:string +@702 = .data:0x802E8418; // type:object size:0x1A scope:local align:4 data:string +@703 = .data:0x802E8434; // type:object size:0x1A scope:local align:4 data:string +@704 = .data:0x802E8450; // type:object size:0x1A scope:local align:4 data:string +@705 = .data:0x802E846C; // type:object size:0x19 scope:local align:4 data:string +@706 = .data:0x802E8488; // type:object size:0x1A scope:local align:4 data:string +@707 = .data:0x802E84A4; // type:object size:0x1A scope:local align:4 data:string +@708 = .data:0x802E84C0; // type:object size:0x1A scope:local align:4 data:string +@709 = .data:0x802E84DC; // type:object size:0x19 scope:local align:4 data:string +@710 = .data:0x802E84F8; // type:object size:0x18 scope:local align:4 data:string +@711 = .data:0x802E8510; // type:object size:0x19 scope:local align:4 data:string +@712 = .data:0x802E852C; // type:object size:0x19 scope:local align:4 data:string +@713 = .data:0x802E8548; // type:object size:0x19 scope:local align:4 data:string +@714 = .data:0x802E8564; // type:object size:0x19 scope:local align:4 data:string +@715 = .data:0x802E8580; // type:object size:0x19 scope:local align:4 data:string +@716 = .data:0x802E859C; // type:object size:0x19 scope:local align:4 data:string +@717 = .data:0x802E85B8; // type:object size:0x19 scope:local align:4 data:string +@718 = .data:0x802E85D4; // type:object size:0x18 scope:local align:4 data:string +@719 = .data:0x802E85EC; // type:object size:0x19 scope:local align:4 data:string +@720 = .data:0x802E8608; // type:object size:0x18 scope:local align:4 data:string +@721 = .data:0x802E8620; // type:object size:0x19 scope:local align:4 data:string +@722 = .data:0x802E863C; // type:object size:0x19 scope:local align:4 data:string +@723 = .data:0x802E8658; // type:object size:0x17 scope:local align:4 data:string +@724 = .data:0x802E8670; // type:object size:0x17 scope:local align:4 data:string +@725 = .data:0x802E8688; // type:object size:0x18 scope:local align:4 data:string +@726 = .data:0x802E86A0; // type:object size:0x17 scope:local align:4 data:string +@727 = .data:0x802E86B8; // type:object size:0x17 scope:local align:4 data:string +@728 = .data:0x802E86D0; // type:object size:0x18 scope:local align:4 data:string +@729 = .data:0x802E86E8; // type:object size:0x17 scope:local align:4 data:string +@730 = .data:0x802E8700; // type:object size:0x19 scope:local align:4 data:string +@731 = .data:0x802E871C; // type:object size:0x16 scope:local align:4 data:string +@732 = .data:0x802E8734; // type:object size:0x18 scope:local align:4 data:string +@733 = .data:0x802E874C; // type:object size:0x18 scope:local align:4 data:string +ptclInfo__9@unnamed@ = .data:0x802E8764; // type:object size:0x270 scope:local align:4 data:4byte +@883 = .data:0x802E89D4; // type:object size:0xD scope:local align:4 data:string +@679 = .data:0x802E89F8; // type:object size:0x17 scope:local align:4 data:string +...data.0 = .data:0x802E8A10; // type:label scope:local +@1737 = .data:0x802E8A10; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E8A20; // type:object size:0x9 scope:local align:4 data:string +@2156 = .data:0x802E8A2C; // type:object size:0x1C scope:local align:4 data:string +@2157 = .data:0x802E8A48; // type:object size:0x1E scope:local align:4 data:string +@2158 = .data:0x802E8A68; // type:object size:0x1D scope:local align:4 data:string +@2159 = .data:0x802E8A88; // type:object size:0x1D scope:local align:4 data:string +@2160 = .data:0x802E8AA8; // type:object size:0x20 scope:local align:4 data:string +@2161 = .data:0x802E8AC8; // type:object size:0x20 scope:local align:4 data:string +@2162 = .data:0x802E8AE8; // type:object size:0x1D scope:local align:4 data:string +@2163 = .data:0x802E8B08; // type:object size:0x1D scope:local align:4 data:string +@2164 = .data:0x802E8B28; // type:object size:0x1E scope:local align:4 data:string +@2165 = .data:0x802E8B48; // type:object size:0x1D scope:local align:4 data:string +@2166 = .data:0x802E8B68; // type:object size:0x1D scope:local align:4 data:string +@2167 = .data:0x802E8B88; // type:object size:0x12 scope:local align:4 data:string +@2169 = .data:0x802E8B9C; // type:object size:0xD scope:local align:4 data:string +@2168 = .data:0x802E8BAC; // type:object size:0xC scope:local align:4 +__vt__17TAIusubaAnimation = .data:0x802E8BB8; // type:object size:0xC scope:global align:4 +@2170 = .data:0x802E8BC4; // type:object size:0xD scope:local align:4 data:string +@2172 = .data:0x802E8BD4; // type:object size:0xA scope:local align:4 data:string +@2173 = .data:0x802E8BE0; // type:object size:0xB scope:local align:4 data:string +@2174 = .data:0x802E8BEC; // type:object size:0xC scope:local align:4 +@2171 = .data:0x802E8BF8; // type:object size:0x14 scope:local align:4 +__vt__12TAIAflyUsuba = .data:0x802E8C0C; // type:object size:0x1C scope:weak align:4 +@2215 = .data:0x802E8C44; // type:object size:0x11 scope:local align:4 data:string +@2217 = .data:0x802E8C58; // type:object size:0xD scope:local align:4 data:string +@2218 = .data:0x802E8C68; // type:object size:0xC scope:local align:4 data:string +@2219 = .data:0x802E8C74; // type:object size:0xC scope:local align:4 +@2216 = .data:0x802E8C80; // type:object size:0x14 scope:local align:4 +__vt__16TAIusubaStrategy = .data:0x802E8C94; // type:object size:0x28 scope:weak align:4 +@2220 = .data:0x802E8CBC; // type:object size:0x13 scope:local align:4 data:string +@2223 = .data:0x802E8CD0; // type:object size:0x9 scope:local align:4 data:string +@2224 = .data:0x802E8CDC; // type:object size:0xC scope:local align:4 +@2226 = .data:0x802E8CE8; // type:object size:0x14 scope:local align:4 +@2227 = .data:0x802E8CFC; // type:object size:0xF scope:local align:4 data:string +@2228 = .data:0x802E8D0C; // type:object size:0x1C scope:local align:4 +@2221 = .data:0x802E8D28; // type:object size:0x24 scope:local align:4 +__vt__18TAIusubaParameters = .data:0x802E8D4C; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E8D80; // type:label scope:local +@1737 = .data:0x802E8D80; // type:object size:0xD scope:local align:4 data:string +@1747 = .data:0x802E8D90; // type:object size:0x9 scope:local align:4 data:string +@1938 = .data:0x802E8D9C; // type:object size:0x17 scope:local align:4 +@1941 = .data:0x802E8DB4; // type:object size:0x17 scope:local align:4 +@2297 = .data:0x802E8DCC; // type:object size:0x1C scope:local align:4 data:string +@2298 = .data:0x802E8DE8; // type:object size:0x1E scope:local align:4 data:string +@2299 = .data:0x802E8E08; // type:object size:0x1D scope:local align:4 data:string +@2300 = .data:0x802E8E28; // type:object size:0x1D scope:local align:4 data:string +@2301 = .data:0x802E8E48; // type:object size:0x20 scope:local align:4 data:string +@2302 = .data:0x802E8E68; // type:object size:0x20 scope:local align:4 data:string +@2303 = .data:0x802E8E88; // type:object size:0x1D scope:local align:4 data:string +@2304 = .data:0x802E8EA8; // type:object size:0x1D scope:local align:4 data:string +@2305 = .data:0x802E8EC8; // type:object size:0x1E scope:local align:4 data:string +@2306 = .data:0x802E8EE8; // type:object size:0x1D scope:local align:4 data:string +@2307 = .data:0x802E8F08; // type:object size:0x1D scope:local align:4 data:string +@2308 = .data:0x802E8F28; // type:object size:0x12 scope:local align:4 data:string +@2310 = .data:0x802E8F3C; // type:object size:0xD scope:local align:4 data:string +@2309 = .data:0x802E8F4C; // type:object size:0xC scope:local align:4 +__vt__17TAIotamaAnimation = .data:0x802E8F58; // type:object size:0xC scope:global align:4 +@2311 = .data:0x802E8F64; // type:object size:0x11 scope:local align:4 data:string +@2313 = .data:0x802E8F78; // type:object size:0xA scope:local align:4 data:string +@2314 = .data:0x802E8F84; // type:object size:0x12 scope:local align:4 data:string +@2315 = .data:0x802E8F98; // type:object size:0xC scope:local align:4 +@2312 = .data:0x802E8FA4; // type:object size:0x14 scope:local align:4 +__vt__16TAIArunAwayOtama = .data:0x802E8FB8; // type:object size:0x1C scope:weak align:4 +@2590 = .data:0x802E8FD4; // type:object size:0x12 scope:local align:4 data:string +@2591 = .data:0x802E8FE8; // type:object size:0xC scope:local align:4 +@2604 = .data:0x802E9014; // type:object size:0x10 scope:local align:4 data:string +@2606 = .data:0x802E9024; // type:object size:0x1A scope:local align:4 data:string +@2607 = .data:0x802E9040; // type:object size:0x14 scope:local align:4 +@2605 = .data:0x802E9054; // type:object size:0x1C scope:local align:4 +__vt__15TAIAappealOtama = .data:0x802E9070; // type:object size:0x24 scope:weak align:4 +@2617 = .data:0x802E9094; // type:object size:0x13 scope:local align:4 data:string +@2619 = .data:0x802E90A8; // type:object size:0x1F scope:local align:4 data:string +@2620 = .data:0x802E90C8; // type:object size:0xC scope:local align:4 +@2618 = .data:0x802E90D4; // type:object size:0x14 scope:local align:4 +__vt__18TAIAsetTargetOtama = .data:0x802E90E8; // type:object size:0x1C scope:weak align:4 +@2631 = .data:0x802E9104; // type:object size:0xE scope:local align:4 data:string +@2632 = .data:0x802E9114; // type:object size:0x14 scope:local align:4 +__vt__13TAIAwaitOtama = .data:0x802E9128; // type:object size:0x1C scope:weak align:4 +@2693 = .data:0x802E9160; // type:object size:0x11 scope:local align:4 data:string +@2695 = .data:0x802E9174; // type:object size:0xD scope:local align:4 data:string +@2696 = .data:0x802E9184; // type:object size:0xC scope:local align:4 data:string +@2697 = .data:0x802E9190; // type:object size:0xC scope:local align:4 +@2694 = .data:0x802E919C; // type:object size:0x14 scope:local align:4 +__vt__16TAIotamaStrategy = .data:0x802E91B0; // type:object size:0x28 scope:weak align:4 +@2698 = .data:0x802E91D8; // type:object size:0x13 scope:local align:4 data:string +@2701 = .data:0x802E91EC; // type:object size:0x9 scope:local align:4 data:string +@2702 = .data:0x802E91F8; // type:object size:0xC scope:local align:4 +@2704 = .data:0x802E9204; // type:object size:0x14 scope:local align:4 +@2705 = .data:0x802E9218; // type:object size:0xF scope:local align:4 data:string +@2706 = .data:0x802E9228; // type:object size:0x1C scope:local align:4 +@2699 = .data:0x802E9244; // type:object size:0x24 scope:local align:4 +__vt__18TAIotamaParameters = .data:0x802E9268; // type:object size:0x30 scope:weak align:4 +...data.0 = .data:0x802E9298; // type:label scope:local +@1092 = .data:0x802E9298; // type:object size:0x17 scope:local align:4 data:string +@1102 = .data:0x802E92B0; // type:object size:0x13 scope:local align:4 data:string +@1107 = .data:0x802E92C4; // type:object size:0xC scope:local align:4 data:4byte +@1361 = .data:0x802E92D0; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E92E8; // type:object size:0x18 scope:local align:4 data:string +@1363 = .data:0x802E9300; // type:object size:0x18 scope:local align:4 data:string +@1364 = .data:0x802E9318; // type:object size:0x17 scope:local align:4 data:string +@1524 = .data:0x802E9330; // type:object size:0x12 scope:local align:4 data:string +@1526 = .data:0x802E9344; // type:object size:0x10 scope:local align:4 data:string +@1527 = .data:0x802E9354; // type:object size:0x12 scope:local align:4 data:string +@1528 = .data:0x802E9368; // type:object size:0xC scope:local align:4 +@1525 = .data:0x802E9374; // type:object size:0x14 scope:local align:4 +__vt__Q23zen12DrawCMCSmenu = .data:0x802E9388; // type:object size:0x2C scope:weak align:4 +@649 = .data:0x802E93B8; // type:object size:0xC scope:local align:4 data:4byte +@682 = .data:0x802E93C4; // type:object size:0xC scope:local align:4 data:4byte +@690 = .data:0x802E93D0; // type:object size:0xC scope:local align:4 data:4byte +@649 = .data:0x802E93E0; // type:object size:0xC scope:local align:4 data:4byte +@650 = .data:0x802E93EC; // type:object size:0xC scope:local align:4 data:4byte +@663 = .data:0x802E93F8; // type:object size:0xC scope:local align:4 data:4byte +@714 = .data:0x802E9404; // type:object size:0xC scope:local align:4 data:4byte +@871 = .data:0x802E9410; // type:object size:0xC scope:local align:4 data:4byte +@882 = .data:0x802E941C; // type:object size:0xC scope:local align:4 data:4byte +@913 = .data:0x802E9428; // type:object size:0xC scope:local align:4 data:4byte +...data.0 = .data:0x802E9438; // type:label scope:local +@635 = .data:0x802E9438; // type:object size:0xF scope:local align:4 data:string +@645 = .data:0x802E9448; // type:object size:0xB scope:local align:4 data:string +@648 = .data:0x802E9454; // type:object size:0xC scope:local align:4 +@650 = .data:0x802E9460; // type:object size:0xC scope:local align:4 +@652 = .data:0x802E946C; // type:object size:0xC scope:local align:4 +@727 = .data:0x802E9478; // type:object size:0xC scope:local align:4 data:4byte +@810 = .data:0x802E9484; // type:object size:0xC scope:local align:4 +@817 = .data:0x802E9490; // type:object size:0xC scope:local align:4 +@824 = .data:0x802E949C; // type:object size:0xC scope:local align:4 +...data.0 = .data:0x802E94A8; // type:label scope:local +@866 = .data:0x802E94A8; // type:object size:0x11 scope:local align:4 data:string +@876 = .data:0x802E94BC; // type:object size:0xD scope:local align:4 data:string +@1117 = .data:0x802E94CC; // type:object size:0x16 scope:local align:4 data:string +@1118 = .data:0x802E94E4; // type:object size:0x18 scope:local align:4 data:string +@1119 = .data:0x802E94FC; // type:object size:0x18 scope:local align:4 data:string +@1186 = .data:0x802E9514; // type:object size:0xC scope:local align:4 +@1188 = .data:0x802E9520; // type:object size:0xC scope:local align:4 +@1190 = .data:0x802E952C; // type:object size:0xC scope:local align:4 +@1194 = .data:0x802E9538; // type:object size:0xC scope:local align:4 +@1196 = .data:0x802E9544; // type:object size:0xC scope:local align:4 +@1198 = .data:0x802E9550; // type:object size:0xC scope:local align:4 +@1361 = .data:0x802E955C; // type:object size:0x17 scope:local align:4 data:string +@1363 = .data:0x802E9574; // type:object size:0x17 scope:local align:4 data:string +@1362 = .data:0x802E958C; // type:object size:0xC scope:local align:4 +__vt__Q23zen17DrawCMresultGraph = .data:0x802E9598; // type:object size:0xC scope:weak align:4 +__vt__Q23zen17DrawCMresultAlpha = .data:0x802E95A4; // type:object size:0xC scope:weak align:4 +@1364 = .data:0x802E95B0; // type:object size:0x1C scope:local align:4 data:string +@1366 = .data:0x802E95CC; // type:object size:0xF scope:local align:4 data:string +@1367 = .data:0x802E95DC; // type:object size:0x14 scope:local align:4 data:string +@1368 = .data:0x802E95F0; // type:object size:0xC scope:local align:4 +@1369 = .data:0x802E95FC; // type:object size:0x14 scope:local align:4 data:string +@1370 = .data:0x802E9610; // type:object size:0x1A scope:local align:4 data:string +@1371 = .data:0x802E962C; // type:object size:0x10 scope:local align:4 data:string +@1372 = .data:0x802E963C; // type:object size:0x14 scope:local align:4 +@1365 = .data:0x802E9650; // type:object size:0x2C scope:local align:4 +...data.0 = .data:0x802E96A8; // type:label scope:local +@660 = .data:0x802E96A8; // type:object size:0x11 scope:local align:4 data:string +@670 = .data:0x802E96BC; // type:object size:0xD scope:local align:4 data:string +@897 = .data:0x802E96CC; // type:object size:0xC scope:local align:4 +@899 = .data:0x802E96D8; // type:object size:0xC scope:local align:4 +@901 = .data:0x802E96E4; // type:object size:0xC scope:local align:4 +@903 = .data:0x802E96F0; // type:object size:0x12 scope:local align:4 data:string +@905 = .data:0x802E9704; // type:object size:0x10 scope:local align:4 data:string +@904 = .data:0x802E9714; // type:object size:0xC scope:local align:4 +__vt__Q23zen12DrawMenuBase = .data:0x802E9720; // type:object size:0x2C scope:global align:4 +@901 = .data:0x802E9750; // type:object size:0x16 scope:local align:4 data:string +@977 = .data:0x802E9768; // type:object size:0x15 scope:local align:4 data:string +@731 = .data:0x802E9780; // type:object size:0x18 scope:local align:4 data:string +@732 = .data:0x802E9798; // type:object size:0x17 scope:local align:4 data:string +@1080 = .data:0x802E97B0; // type:object size:0x28 scope:local align:4 +@1152 = .data:0x802E97D8; // type:object size:0x28 scope:local align:4 +@681 = .data:0x802E9800; // type:object size:0xB scope:local align:4 data:string +@974 = .data:0x802E9810; // type:object size:0xD scope:local align:4 data:string +@1446 = .data:0x802E9820; // type:object size:0x1C scope:local align:4 +@1466 = .data:0x802E983C; // type:object size:0x1C scope:local align:4 +@1481 = .data:0x802E9858; // type:object size:0x1C scope:local align:4 +@913 = .data:0x802E9878; // type:object size:0x28 scope:local align:4 +@951 = .data:0x802E98A0; // type:object size:0x28 scope:local align:4 +...data.0 = .data:0x802E98C8; // type:label scope:local +@73 = .data:0x802E98C8; // type:object size:0x1E scope:local align:4 data:string +@74 = .data:0x802E98E8; // type:object size:0x16 scope:local align:4 data:string +@75 = .data:0x802E9900; // type:object size:0xC scope:local align:4 data:string +@76 = .data:0x802E990C; // type:object size:0x9 scope:local align:4 data:string +@77 = .data:0x802E9918; // type:object size:0x10 scope:local align:4 data:string +@78 = .data:0x802E9928; // type:object size:0xB scope:local align:4 data:string +@79 = .data:0x802E9934; // type:object size:0xE scope:local align:4 data:string +@80 = .data:0x802E9944; // type:object size:0xD scope:local align:4 data:string +@81 = .data:0x802E9954; // type:object size:0xD scope:local align:4 data:string +@82 = .data:0x802E9964; // type:object size:0xD scope:local align:4 data:string +@83 = .data:0x802E9974; // type:object size:0x12 scope:local align:4 data:string +@84 = .data:0x802E9988; // type:object size:0xE scope:local align:4 data:string +@85 = .data:0x802E9998; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x802E99B0; // type:object size:0x3C scope:local align:4 +@119 = .data:0x802E99EC; // type:object size:0x1B scope:local align:4 data:string +@120 = .data:0x802E9A08; // type:object size:0x2E scope:local align:4 data:string +@121 = .data:0x802E9A38; // type:object size:0x2F scope:local align:4 data:string +@122 = .data:0x802E9A68; // type:object size:0x1B scope:local align:4 data:string +DSPInitCode = .data:0x802E9A88; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x802E9B08; // type:label scope:local +@69 = .data:0x802E9B08; // type:object size:0x29 scope:local align:4 data:string +@90 = .data:0x802E9B34; // type:object size:0x18 scope:local align:4 data:string +@91 = .data:0x802E9B4C; // type:object size:0x1B scope:local align:4 data:string +@92 = .data:0x802E9B68; // type:object size:0x30 scope:local align:4 data:string +@93 = .data:0x802E9B98; // type:object size:0x3C scope:local align:4 data:string +@94 = .data:0x802E9BD4; // type:object size:0x37 scope:local align:4 data:string +@95 = .data:0x802E9C0C; // type:object size:0x3F scope:local align:4 data:string +@96 = .data:0x802E9C4C; // type:object size:0x29 scope:local align:4 data:string +@97 = .data:0x802E9C78; // type:object size:0x1D scope:local align:4 data:string +@98 = .data:0x802E9C98; // type:object size:0x19 scope:local align:4 data:string +@110 = .data:0x802E9CB4; // type:object size:0x19 scope:local align:4 data:string +@111 = .data:0x802E9CD0; // type:object size:0x19 scope:local align:4 data:string +@112 = .data:0x802E9CEC; // type:object size:0x16 scope:local align:4 data:string +@113 = .data:0x802E9D04; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x802E9D38; // type:label scope:local +@59 = .data:0x802E9D38; // type:object size:0x44 scope:local align:4 data:string +@60 = .data:0x802E9D7C; // type:object size:0x30 scope:local align:4 data:string +@61 = .data:0x802E9DAC; // type:object size:0x2F scope:local align:4 data:string +@62 = .data:0x802E9DDC; // type:object size:0x2F scope:local align:4 data:string +@63 = .data:0x802E9E0C; // type:object size:0x11 scope:local align:4 data:string +@64 = .data:0x802E9E20; // type:object size:0x21 scope:local align:4 data:string +@65 = .data:0x802E9E44; // type:object size:0x12 scope:local align:4 data:string +@66 = .data:0x802E9E58; // type:object size:0x19 scope:local align:4 data:string +@67 = .data:0x802E9E74; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x802E9E88; // type:object size:0x1D scope:local align:4 data:string +@69 = .data:0x802E9EA8; // type:object size:0x26 scope:local align:4 data:string +@70 = .data:0x802E9ED0; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x802E9EEC; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x802E9F10; // type:label scope:local +@10 = .data:0x802E9F10; // type:object size:0x16 scope:local align:4 data:string +@11 = .data:0x802E9F28; // type:object size:0x26 scope:local align:4 data:string +@12 = .data:0x802E9F50; // type:object size:0x1C scope:local align:4 data:string +@30 = .data:0x802E9F6C; // type:object size:0x1D scope:local align:4 data:string +@31 = .data:0x802E9F8C; // type:object size:0x17 scope:local align:4 data:string +@33 = .data:0x802E9FA4; // type:object size:0x31 scope:local align:4 data:string +@34 = .data:0x802E9FD8; // type:object size:0x10 scope:local align:4 data:string +@35 = .data:0x802E9FE8; // type:object size:0x60 scope:local align:4 data:string +@36 = .data:0x802EA048; // type:object size:0x4C scope:local align:4 data:string +@37 = .data:0x802EA094; // type:object size:0x62 scope:local align:4 data:string +@38 = .data:0x802EA0F8; // type:object size:0x60 scope:local align:4 data:string +@39 = .data:0x802EA158; // type:object size:0x1F scope:local align:4 data:string +@40 = .data:0x802EA178; // type:object size:0x1F scope:local align:4 data:string +@41 = .data:0x802EA198; // type:object size:0x1B scope:local align:4 data:string +@42 = .data:0x802EA1B4; // type:object size:0x35 scope:local align:4 data:string +@43 = .data:0x802EA1EC; // type:object size:0x40 scope:local align:4 +InterruptPrioTable = .data:0x802EA230; // type:object size:0x2C scope:local align:4 data:4byte +ResetFunctionInfo = .data:0x802EA260; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x802EA270; // type:label scope:local +@794 = .data:0x802EA270; // type:object size:0x5F scope:local align:4 data:string +@795 = .data:0x802EA2D0; // type:object size:0xB scope:local align:4 data:string +@797 = .data:0x802EA2DC; // type:object size:0x5F scope:local align:4 data:string +@798 = .data:0x802EA33C; // type:object size:0x46 scope:local align:4 data:string +@799 = .data:0x802EA384; // type:object size:0x7E scope:local align:4 data:string +@800 = .data:0x802EA404; // type:object size:0x7E scope:local align:4 data:string +@801 = .data:0x802EA484; // type:object size:0x7A scope:local align:4 data:string +@802 = .data:0x802EA500; // type:object size:0x7A scope:local align:4 data:string +@803 = .data:0x802EA57C; // type:object size:0x51 scope:local align:4 data:string +@804 = .data:0x802EA5D0; // type:object size:0x71 scope:local align:4 data:string +@805 = .data:0x802EA644; // type:object size:0x39 scope:local align:4 data:string +@806 = .data:0x802EA680; // type:object size:0x49 scope:local align:4 data:string +@807 = .data:0x802EA6CC; // type:object size:0x51 scope:local align:4 data:string +@808 = .data:0x802EA720; // type:object size:0x52 scope:local align:4 data:string +@809 = .data:0x802EA774; // type:object size:0x59 scope:local align:4 data:string +@810 = .data:0x802EA7D0; // type:object size:0x42 scope:local align:4 data:string +@811 = .data:0x802EA814; // type:object size:0x3A scope:local align:4 data:string +@812 = .data:0x802EA850; // type:object size:0x3A scope:local align:4 data:string +@813 = .data:0x802EA88C; // type:object size:0x44 scope:local align:4 data:string +@814 = .data:0x802EA8D0; // type:object size:0x44 scope:local align:4 data:string +@815 = .data:0x802EA914; // type:object size:0x3B scope:local align:4 data:string +@816 = .data:0x802EA950; // type:object size:0x3F scope:local align:4 data:string +@817 = .data:0x802EA990; // type:object size:0x67 scope:local align:4 data:string +@818 = .data:0x802EA9F8; // type:object size:0x45 scope:local align:4 data:string +@819 = .data:0x802EAA40; // type:object size:0x3D scope:local align:4 data:string +YearDays = .data:0x802EAA80; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x802EAAB0; // type:object size:0x30 scope:local align:4 +@7 = .data:0x802EAAE0; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x802EAAF8; // type:label scope:local +@117 = .data:0x802EAAF8; // type:object size:0xC8 scope:local align:4 data:string +@138 = .data:0x802EABC0; // type:object size:0x37 scope:local align:4 data:string +@237 = .data:0x802EABF8; // type:object size:0x34 scope:local align:4 data:string +@263 = .data:0x802EAC2C; // type:object size:0x2F scope:local align:4 data:string +@269 = .data:0x802EAC5C; // type:object size:0x27 scope:local align:4 data:string +@309 = .data:0x802EAC84; // type:object size:0x3A scope:local align:4 data:string +@340 = .data:0x802EACC0; // type:object size:0x66 scope:local align:4 data:string +@341 = .data:0x802EAD28; // type:object size:0x55 scope:local align:4 data:string +@342 = .data:0x802EAD80; // type:object size:0x5C scope:local align:4 data:string +@373 = .data:0x802EADDC; // type:object size:0x61 scope:local align:4 data:string +@374 = .data:0x802EAE40; // type:object size:0x50 scope:local align:4 data:string +@375 = .data:0x802EAE90; // type:object size:0x57 scope:local align:4 data:string +...data.0 = .data:0x802EAEE8; // type:label scope:local +@13 = .data:0x802EAEE8; // type:object size:0x15 scope:local align:4 data:string +@14 = .data:0x802EAF00; // type:object size:0xA scope:local align:4 data:string +@15 = .data:0x802EAF0C; // type:object size:0x19 scope:local align:4 data:string +@16 = .data:0x802EAF28; // type:object size:0x9 scope:local align:4 data:string +@293 = .data:0x802EAF34; // type:object size:0x20 scope:local align:4 +@331 = .data:0x802EAF54; // type:object size:0x40 scope:local align:4 +@835 = .data:0x802EAF94; // type:object size:0x34 scope:local align:4 +@936 = .data:0x802EAFC8; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x802EB000; // type:object size:0x48 scope:local align:4 data:4byte +...data.0 = .data:0x802EB048; // type:label scope:local +@36 = .data:0x802EB048; // type:object size:0x1A scope:local align:4 data:string +@37 = .data:0x802EB064; // type:object size:0x16 scope:local align:4 data:string +@38 = .data:0x802EB07C; // type:object size:0x14 scope:local align:4 data:string +@39 = .data:0x802EB090; // type:object size:0x14 scope:local align:4 data:string +@42 = .data:0x802EB0A4; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x802EB0B8; // type:label scope:local +timing = .data:0x802EB0B8; // type:object size:0x130 scope:local align:4 +taps = .data:0x802EB1E8; // type:object size:0x32 scope:local align:4 +@92 = .data:0x802EB21C; // type:object size:0x58 scope:local align:4 +@336 = .data:0x802EB274; // type:object size:0x29 scope:local align:4 data:string +@337 = .data:0x802EB2A0; // type:object size:0x29 scope:local align:4 data:string +@338 = .data:0x802EB2CC; // type:object size:0x29 scope:local align:4 data:string +@339 = .data:0x802EB2F8; // type:object size:0x29 scope:local align:4 data:string +@340 = .data:0x802EB324; // type:object size:0x29 scope:local align:4 data:string +@341 = .data:0x802EB350; // type:object size:0x29 scope:local align:4 data:string +ResetFunctionInfo = .data:0x802EB380; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x802EB390; // type:label scope:local +@16 = .data:0x802EB390; // type:object size:0x1E scope:local align:4 data:string +@17 = .data:0x802EB3B0; // type:object size:0xC scope:local align:4 data:string +@18 = .data:0x802EB3BC; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x802EB3C8; // type:label scope:local +@264 = .data:0x802EB3C8; // type:object size:0x1D scope:local align:4 data:string +@265 = .data:0x802EB3E8; // type:object size:0x2D scope:local align:4 data:string +@266 = .data:0x802EB418; // type:object size:0x2D scope:local align:4 data:string +@267 = .data:0x802EB448; // type:object size:0x2D scope:local align:4 data:string +@268 = .data:0x802EB478; // type:object size:0x2D scope:local align:4 data:string +@269 = .data:0x802EB4A8; // type:object size:0x2D scope:local align:4 data:string +@292 = .data:0x802EB4D8; // type:object size:0x2B scope:local align:4 data:string +ResetFunctionInfo = .data:0x802EB508; // type:object size:0x10 scope:local align:4 +CardData = .data:0x802EB520; // type:object size:0x160 scope:local align:32 +SectorSizeTable = .data:0x802EB680; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x802EB6A0; // type:object size:0x20 scope:local align:4 +...data.0 = .data:0x802EB6C0; // type:label scope:local +Si = .data:0x802EB6C0; // type:object size:0x14 scope:local align:4 data:4byte +Type = .data:0x802EB6D4; // type:object size:0x10 scope:local align:4 +@456 = .data:0x802EB6E4; // type:object size:0xC scope:local align:4 data:string +@458 = .data:0x802EB6F0; // type:object size:0xF scope:local align:4 data:string +@459 = .data:0x802EB700; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x802EB710; // type:object size:0xD scope:local align:4 data:string +@461 = .data:0x802EB720; // type:object size:0xA scope:local align:4 data:string +@462 = .data:0x802EB72C; // type:object size:0x10 scope:local align:4 data:string +@463 = .data:0x802EB73C; // type:object size:0x14 scope:local align:4 data:string +@464 = .data:0x802EB750; // type:object size:0x12 scope:local align:4 data:string +@465 = .data:0x802EB764; // type:object size:0x14 scope:local align:4 data:string +@466 = .data:0x802EB778; // type:object size:0x9 scope:local align:4 data:string +@467 = .data:0x802EB784; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x802EB790; // type:label scope:local +XYNTSC = .data:0x802EB790; // type:object size:0x30 scope:local align:4 +XYPAL = .data:0x802EB7C0; // type:object size:0x30 scope:local align:4 +@16 = .data:0x802EB7F0; // type:object size:0x33 scope:local align:4 data:string +@128 = .data:0x802EB828; // type:object size:0x68 scope:local align:4 +@189 = .data:0x802EB890; // type:object size:0x68 scope:local align:4 +@298 = .data:0x802EB8F8; // type:object size:0x44 scope:local align:4 +@325 = .data:0x802EB93C; // type:object size:0x44 scope:local align:4 +@495 = .data:0x802EB980; // type:object size:0x1C scope:local align:4 +@494 = .data:0x802EB99C; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x802EB9F0; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x802EBA2C; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x802EBA68; // type:object size:0x3C scope:global align:4 +GXEurgb60Hz480IntDf = .data:0x802EBAA4; // type:object size:0x3C scope:global align:4 +@133 = .data:0x802EBAE0; // type:object size:0xF4 scope:local align:4 +@168 = .data:0x802EBBD4; // type:object size:0x3C scope:local align:4 +c2r$71 = .data:0x802EBC10; // type:object size:0x24 scope:local align:4 +p2f$194 = .data:0x802EBC38; // type:object size:0x20 scope:local align:4 +@242 = .data:0x802EBC58; // type:object size:0x5C scope:local align:4 +@241 = .data:0x802EBCB4; // type:object size:0x90 scope:local align:4 +...data.0 = .data:0x802EBD48; // type:label scope:local +__files = .data:0x802EBD48; // type:object size:0xD8 scope:global align:4 +__lconv = .data:0x802EBE20; // type:object size:0x30 scope:global align:4 data:4byte +@1009 = .data:0x802EBE50; // type:object size:0x84 scope:local align:4 +@1066 = .data:0x802EBED4; // type:object size:0x84 scope:local align:4 +@1186 = .data:0x802EBF58; // type:object size:0xD0 scope:local align:4 +@1185 = .data:0x802EC028; // type:object size:0x44 scope:local align:4 +@709 = .data:0x802EC070; // type:object size:0xD0 scope:local align:4 +@337 = .data:0x802EC140; // type:object size:0x44 scope:local align:4 +@410 = .data:0x802EC184; // type:object size:0x44 scope:local align:4 +__float_nan = .data:0x802EC1C8; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .data:0x802EC1CC; // type:object size:0x4 scope:global align:4 data:float +__double_min = .data:0x802EC1D0; // type:object size:0x8 scope:global align:4 data:double +__double_max = .data:0x802EC1D8; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .data:0x802EC1E0; // type:object size:0x8 scope:global align:4 data:double +__double_nan = .data:0x802EC1E8; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .data:0x802EC1F0; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .data:0x802EC1F8; // type:object size:0x8 scope:global align:4 data:double +...data.0 = .data:0x802EC200; // type:label scope:local +__four_over_pi_m1 = .data:0x802EC200; // type:object size:0x10 scope:local align:4 data:float +gTRKDispatchTable = .data:0x802EC210; // type:object size:0x84 scope:global align:4 +@175 = .data:0x802EC298; // type:object size:0x1C scope:local align:4 +@214 = .data:0x802EC2B4; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x802EC2D0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x802EC2DC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x802EC2EC; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x802EC300; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x802EC340; // type:object size:0x1C scope:global align:4 data:4byte +@28 = .data:0x802EC360; // type:object size:0x19 scope:local align:4 data:string +...bss.0 = .bss:0x802EC380; // type:label scope:local +dac = .bss:0x802EC380; // type:object size:0xC scope:local align:4 +audio_hp = .bss:0x802EC38C; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x802EC3A0; // type:label scope:local +audioproc_mq = .bss:0x802EC3A0; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EC3C0; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x802EC400; // type:label scope:local +finfo$40 = .bss:0x802EC400; // type:object size:0x3C scope:local align:4 +cmd$41 = .bss:0x802EC43C; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x802EC470; // type:label scope:local +dsp_buf = .bss:0x802EC470; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EC480; // type:label scope:local +dsp_buf = .bss:0x802EC480; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802EC490; // type:label scope:local +PLAYER_CALLLIST = .bss:0x802EC490; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x802EC550; // type:label scope:local +mq = .bss:0x802EC550; // type:object size:0x20 scope:local align:4 +msgbuf = .bss:0x802EC570; // type:object size:0x200 scope:local align:4 +CALLSTACK = .bss:0x802EC770; // type:object size:0x8000 scope:local align:4 +finfo$169 = .bss:0x802F4770; // type:object size:0x3C scope:local align:4 +finfo$220 = .bss:0x802F47AC; // type:object size:0x3C scope:local align:4 +req$221 = .bss:0x802F47E8; // type:object size:0x80 scope:local align:4 +finfo$263 = .bss:0x802F4868; // type:object size:0x3C scope:local align:4 +req$264 = .bss:0x802F48A4; // type:object size:0x20 scope:local align:4 +finfo$271 = .bss:0x802F48C4; // type:object size:0x3C scope:local align:4 +req$272 = .bss:0x802F4900; // type:object size:0x20 scope:local align:4 +finfo$289 = .bss:0x802F4920; // type:object size:0x3C scope:local align:4 +finfo$306 = .bss:0x802F495C; // type:object size:0x3C scope:local align:4 +finfo$311 = .bss:0x802F4998; // type:object size:0x3C scope:local align:4 +dvd_file = .bss:0x802F49D4; // type:object size:0x800 scope:local align:4 +dvd_entrynum = .bss:0x802F51D4; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F5260; // type:label scope:local +audio_task = .bss:0x802F5260; // type:object size:0x50 scope:local align:8 +AUDIO_YIELD_BUFFER = .bss:0x802F52C0; // type:object size:0x2000 scope:local align:32 +taskwork = .bss:0x802F72C0; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x802F7340; // type:label scope:local +sync_stack = .bss:0x802F7340; // type:object size:0xC scope:local align:4 data:4byte +...bss.0 = .bss:0x802F7360; // type:label scope:local +GLOBAL_CHANNEL = .bss:0x802F7360; // type:object size:0x74 scope:local align:4 data:4byte +CHANNEL = .bss:0x802F73E0; // type:object size:0x14000 scope:local align:32 +waitp = .bss:0x8030B3E0; // type:object size:0x80 scope:local align:4 +waittime = .bss:0x8030B460; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8030B4E0; // type:label scope:local +DSPCH = .bss:0x8030B4E0; // type:object size:0x400 scope:local align:32 data:byte +CH_BUF = .bss:0x8030B8E0; // type:object size:0x6000 scope:local align:32 data:2byte +FX_BUF = .bss:0x803118E0; // type:object size:0x80 scope:local align:32 +bankp = .bss:0x80311960; // type:object size:0x400 scope:local align:4 data:4byte +wavearc = .bss:0x80311D60; // type:object size:0x400 scope:local align:4 +wavegroup = .bss:0x80312160; // type:object size:0x400 scope:local align:4 data:4byte +WS_V2P_TABLE = .bss:0x80312560; // type:object size:0x200 scope:local align:4 data:2byte +BNK_V2P_TABLE = .bss:0x80312760; // type:object size:0x200 scope:local align:4 data:2byte +SINTABLE = .bss:0x80312960; // type:object size:0x404 scope:local align:4 data:float +...bss.0 = .bss:0x80312D68; // type:label scope:local +FH_TO_FAT = .bss:0x80312D68; // type:object size:0x400 scope:local align:4 data:2byte +FAT = .bss:0x80313168; // type:object size:0x800 scope:local align:4 +fattmp = .bss:0x80313968; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x80314168; // type:label scope:local +JV_DIR_NAME = .bss:0x80314168; // type:object size:0x400 scope:local align:4 +JV_ARC_NAME = .bss:0x80314568; // type:object size:0x200 scope:local align:4 +JV_ARC = .bss:0x80314768; // type:object size:0x40 scope:local align:4 +finfo$148 = .bss:0x803147A8; // type:object size:0x3C scope:local align:4 +dmabuffer = .bss:0x80314800; // type:object size:0x10000 scope:local align:32 +...bss.0 = .bss:0x80324800; // type:label scope:local +TRACK_LIST = .bss:0x80324800; // type:object size:0x100 scope:local align:4 data:4byte +SEQ_ARG = .bss:0x80324900; // type:object size:0x20 scope:local align:4 data:4byte +...bss.0 = .bss:0x80324920; // type:label scope:local +seq = .bss:0x80324920; // type:object size:0x43400 scope:local align:4 +ROOT_OUTER = .bss:0x80367D20; // type:object size:0x400 scope:local align:4 +rootseq = .bss:0x80368120; // type:object size:0x40 scope:local align:4 data:4byte +FREE_SEQP_QUEUE = .bss:0x80368160; // type:object size:0x400 scope:local align:4 data:4byte +process_stack = .bss:0x80368560; // type:object size:0x10 scope:local align:4 +system_se = .bss:0x80368570; // type:object size:0x6C scope:local align:4 +system_se_stop = .bss:0x803685DC; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80368648; // type:label scope:local +player_se$123 = .bss:0x80368648; // type:object size:0x6C scope:local align:4 +player_se_stop$189 = .bss:0x803686B4; // type:object size:0x6C scope:local align:4 +outerparam$219 = .bss:0x80368720; // type:object size:0x40 scope:local align:4 +...bss.0 = .bss:0x80368760; // type:label scope:local +bgm = .bss:0x80368760; // type:object size:0xD38 scope:local align:4 data:4byte +demo_q = .bss:0x80369498; // type:object size:0x6C scope:local align:4 +...bss.0 = .bss:0x80369508; // type:label scope:local +seq_loadbuffer = .bss:0x80369508; // type:object size:0x400 scope:local align:4 data:4byte +rootseq = .bss:0x80369908; // type:object size:0x4340 scope:local align:4 +rootseqhandle = .bss:0x8036DC48; // type:object size:0x40 scope:local align:4 data:4byte +as = .bss:0x8036DC88; // type:object size:0x80 scope:local align:4 +...bss.0 = .bss:0x8036DD20; // type:label scope:local +SC = .bss:0x8036DD20; // type:object size:0x21A50 scope:local align:32 +copyinfo = .bss:0x8038F770; // type:object size:0x14 scope:local align:4 +...bss.0 = .bss:0x8038F788; // type:label scope:local +interleavebuf = .bss:0x8038F788; // type:object size:0x1C scope:local align:4 +...bss.0 = .bss:0x8038F7C0; // type:label scope:local +filename = .bss:0x8038F7C0; // type:object size:0x40 scope:local align:4 +dvd_buf = .bss:0x8038F800; // type:object size:0xC scope:local align:4 data:4byte +file_header = .bss:0x8038F80C; // type:object size:0x44 scope:local align:4 data:4byte +gop_header = .bss:0x8038F850; // type:object size:0x14 scope:local align:4 +jac_hvqmThread = .bss:0x8038F868; // type:object size:0x310 scope:local align:8 +hvqmStack = .bss:0x8038FB80; // type:object size:0x1000 scope:local align:32 +...bss.0 = .bss:0x80390B80; // type:label scope:local +clipTable = .bss:0x80390B80; // type:object size:0x200 scope:local align:4 data:byte +divTable = .bss:0x80390D80; // type:object size:0x40 scope:local align:4 data:4byte +mcdivTable = .bss:0x80390DC0; // type:object size:0x800 scope:local align:4 +...bss.0 = .bss:0x803915C0; // type:label scope:local +fnVerts = .bss:0x803915C0; // type:object size:0x1800 scope:local align:4 +fnNorms = .bss:0x80392DC0; // type:object size:0x1800 scope:local align:4 +fnTexs = .bss:0x803945C0; // type:object size:0x1000 scope:local align:4 +matUsed = .bss:0x803955C0; // type:object size:0x100 scope:local align:4 data:byte +sintable = .bss:0x803956C0; // type:object size:0x4000 scope:global align:4 data:float +costable = .bss:0x803996C0; // type:object size:0x4000 scope:global align:4 data:float +ident__8Matrix4f = .bss:0x8039D6C0; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x8039D700; // type:label scope:local +@588 = .bss:0x8039D700; // type:object size:0xC scope:local align:4 +sys = .bss:0x8039D70C; // type:object size:0x338 scope:global align:4 +dvdMesgQueue = .bss:0x8039DA44; // type:object size:0x20 scope:local align:4 +loadMesgQueue = .bss:0x8039DA64; // type:object size:0x20 scope:local align:4 +sysMesgQueue = .bss:0x8039DA84; // type:object size:0x20 scope:local align:4 +aramStream = .bss:0x8039DAA4; // type:object size:0x14 scope:local align:4 +lastName = .bss:0x8039DAB8; // type:object size:0x100 scope:local align:4 +dvdStream = .bss:0x8039DBB8; // type:object size:0x54 scope:local align:4 +dvdBufferedStream = .bss:0x8039DC0C; // type:object size:0x20 scope:local align:4 +mMemoryTable$1080 = .bss:0x8039DC2C; // type:object size:0xC scope:local align:4 +Thread = .bss:0x8039DC38; // type:object size:0x310 scope:global align:8 +ThreadStack = .bss:0x8039DF60; // type:object size:0x2000 scope:global align:32 +dvdThread = .bss:0x8039FF60; // type:object size:0x310 scope:global align:8 +dvdThreadStack = .bss:0x803A0280; // type:object size:0x2000 scope:global align:32 +...bss.0 = .bss:0x803A2280; // type:label scope:local +sControllerPad = .bss:0x803A2280; // type:object size:0x30 scope:local align:4 data:2byte +...bss.0 = .bss:0x803A22B0; // type:label scope:local +GColors = .bss:0x803A22B0; // type:object size:0x8 scope:global align:4 data:byte +...bss.0 = .bss:0x803A22B8; // type:label scope:local +CardThread = .bss:0x803A22B8; // type:object size:0x310 scope:local align:8 +CardControl = .bss:0x803A25C8; // type:object size:0x70 scope:local align:4 +...bss.0 = .bss:0x803A2638; // type:label scope:local +gameflow = .bss:0x803A2638; // type:object size:0x364 scope:global align:4 data:4byte +...bss.0 = .bss:0x803A29A0; // type:label scope:local +flowCont = .bss:0x803A29A0; // type:object size:0x264 scope:global align:4 data:4byte +...bss.0 = .bss:0x803A2C08; // type:label scope:local +resultTable = .bss:0x803A2C08; // type:object size:0x40 scope:local align:4 data:4byte +...bss.0 = .bss:0x803A2C48; // type:label scope:local +collExtents = .bss:0x803A2C48; // type:object size:0x18 scope:global align:4 data:float +...bss.0 = .bss:0x803A2C60; // type:label scope:local +bcs = .bss:0x803A2C60; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803A3060; // type:label scope:local +cst = .bss:0x803A3060; // type:object size:0x6C scope:local align:4 +CardWorkArea = .bss:0x803A30E0; // type:object size:0xA000 scope:local align:32 +cardData = .bss:0x803AD0E0; // type:object size:0x26000 scope:global align:32 data:4byte +CardStack = .bss:0x803D30E0; // type:object size:0x2000 scope:local align:32 +...bss.0 = .bss:0x803D50E0; // type:label scope:local +YtexObj = .bss:0x803D50E0; // type:object size:0x20 scope:local align:4 +UVtexObj = .bss:0x803D5100; // type:object size:0x20 scope:local align:4 +playbackThread = .bss:0x803D5120; // type:object size:0x310 scope:local align:8 +playbackThreadStack = .bss:0x803D5430; // type:object size:0x1000 scope:local align:4 +invCamMat = .bss:0x803D6430; // type:object size:0x40 scope:local align:4 data:4byte +triList = .bss:0x803D6470; // type:object size:0x800 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D6C70; // type:label scope:local +pikiInfMgr = .bss:0x803D6C70; // type:object size:0x24 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D6C98; // type:label scope:local +pikiColors__4Piki = .bss:0x803D6C98; // type:object size:0x18 scope:global align:4 data:byte +kinokoColors__4Piki = .bss:0x803D6CB0; // type:object size:0x18 scope:global align:4 data:byte +...bss.0 = .bss:0x803D6CC8; // type:label scope:local +_instances__15PikiShapeObject = .bss:0x803D6CC8; // type:object size:0x10 scope:global align:4 data:4byte +...bss.0 = .bss:0x803D6CD8; // type:label scope:local +deadPikis__8GameStat = .bss:0x803D6CD8; // type:object size:0xC scope:global align:4 data:4byte +fallPikis__8GameStat = .bss:0x803D6CE4; // type:object size:0xC scope:global align:4 data:4byte +formationPikis__8GameStat = .bss:0x803D6CF0; // type:object size:0xC scope:global align:4 data:4byte +freePikis__8GameStat = .bss:0x803D6CFC; // type:object size:0xC scope:global align:4 data:4byte +workPikis__8GameStat = .bss:0x803D6D08; // type:object size:0xC scope:global align:4 data:4byte +mePikis__8GameStat = .bss:0x803D6D14; // type:object size:0xC scope:global align:4 data:4byte +containerPikis__8GameStat = .bss:0x803D6D20; // type:object size:0xC scope:global align:4 data:4byte +bornPikis__8GameStat = .bss:0x803D6D2C; // type:object size:0xC scope:global align:4 data:4byte +victimPikis__8GameStat = .bss:0x803D6D38; // type:object size:0xC scope:global align:4 data:4byte +mapPikis__8GameStat = .bss:0x803D6D44; // type:object size:0xC scope:global align:4 data:4byte +allPikis__8GameStat = .bss:0x803D6D50; // type:object size:0xC scope:global align:4 data:4byte +workString__3zen = .bss:0x803D6D60; // type:object size:0x400 scope:local align:4 +...bss.0 = .bss:0x803D7160; // type:label scope:local +bloFile_Diary_Table__3zen = .bss:0x803D7160; // type:object size:0x28 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D7188; // type:label scope:local +pTexTable__Q23zen13StickCallBack = .bss:0x803D7188; // type:object size:0x54 scope:global align:4 data:4byte +texTable__Q23zen9NumberTex = .bss:0x803D71E0; // type:object size:0x28 scope:global align:4 data:4byte +shadowTexTable__Q23zen9NumberTex = .bss:0x803D7208; // type:object size:0x28 scope:global align:4 data:4byte +__OSErrorTable = .bss:0x803D7230; // type:object size:0x40 scope:global align:4 +...bss.0 = .bss:0x803D7280; // type:label scope:local +Header = .bss:0x803D7280; // type:object size:0x20 scope:local align:32 +...bss.0 = .bss:0x803D72A0; // type:label scope:local +Scb = .bss:0x803D72A0; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x803D72F8; // type:label scope:local +RunQueue = .bss:0x803D72F8; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x803D73F8; // type:object size:0x310 scope:local align:8 +DefaultThread = .bss:0x803D7708; // type:object size:0x310 scope:local align:8 +IdleContext = .bss:0x803D7A18; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x803D7CE0; // type:label scope:local +CommandList = .bss:0x803D7CE0; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x803D7D20; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x803D7D48; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x803D7D70; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x803D7D98; // type:object size:0xC scope:local align:4 +Curr = .bss:0x803D7DA4; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x803D7DC0; // type:label scope:local +tmpBuffer = .bss:0x803D7DC0; // type:object size:0x80 scope:local align:32 +DummyCommandBlock = .bss:0x803D7E40; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x803D7E70; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x803D7E98; // type:label scope:local +WaitingQueue = .bss:0x803D7E98; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x803D7EB8; // type:object size:0x3F scope:local align:4 +block$16 = .bss:0x803D7EF8; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x803D7F28; // type:label scope:local +regs = .bss:0x803D7F28; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x803D7FA0; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x803D8018; // type:object size:0x58 scope:local align:4 +...bss.0 = .bss:0x803D8070; // type:label scope:local +Type = .bss:0x803D8070; // type:object size:0x10 scope:local align:4 +Origin = .bss:0x803D8080; // type:object size:0x30 scope:local align:4 +CmdProbeDevice = .bss:0x803D80B0; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x803D80C0; // type:label scope:local +__CARDBlock = .bss:0x803D80C0; // type:object size:0x220 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x803D82E0; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x803D8300; // type:label scope:local +Packet = .bss:0x803D8300; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x803D8380; // type:object size:0xA0 scope:local align:8 +TypeTime = .bss:0x803D8420; // type:object size:0x20 scope:local align:8 +XferTime = .bss:0x803D8440; // type:object size:0x20 scope:local align:8 +TypeCallback = .bss:0x803D8460; // type:object size:0x40 scope:local align:4 +RDSTHandler = .bss:0x803D84A0; // type:object size:0x10 scope:local align:4 data:4byte +InputBufferValid = .bss:0x803D84B0; // type:object size:0x10 scope:local align:4 +InputBuffer = .bss:0x803D84C0; // type:object size:0x20 scope:local align:4 +InputBufferVcount = .bss:0x803D84E0; // type:object size:0x10 scope:local align:4 +cmdFixDevice$326 = .bss:0x803D84F0; // type:object size:0x10 scope:local align:4 +Ecb = .bss:0x803D8500; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x803D85C0; // type:label scope:local +gxData = .bss:0x803D85C0; // type:object size:0x4F8 scope:local align:4 +FifoObj = .bss:0x803D8AB8; // type:object size:0x80 scope:global align:4 +...bss.0 = .bss:0x803D8B38; // type:label scope:local +DisplayListFifo = .bss:0x803D8B38; // type:object size:0x24 scope:local align:4 data:4byte +__savedGXdata = .bss:0x803D8B5C; // type:object size:0x4F8 scope:local align:4 +fragmentinfo = .bss:0x803D9058; // type:object size:0xC scope:local align:4 data:4byte +atexit_funcs = .bss:0x803D9068; // type:object size:0x100 scope:local align:4 +__atexit_funcs = .bss:0x803D9168; // type:object size:0x100 scope:local align:4 +gTRKEventQueue = .bss:0x803D9268; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x803D9290; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x803D9298; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x803DAC48; // type:object size:0x14 scope:local align:4 data:4byte +gTRKInputPendingPtr = .bss:0x803DAC5C; // type:object size:0x4 scope:global align:4 data:4byte +gTRKDispatchTableSize = .bss:0x803DAC60; // type:object size:0x4 scope:global align:4 data:4byte +TRK_saved_exceptionID = .bss:0x803DAC68; // type:object size:0x2 scope:local align:2 data:2byte +gTRKSaveState = .bss:0x803DAC6C; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x803DAD00; // type:object size:0x10 scope:global align:4 +gTRKState = .bss:0x803DAD10; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x803DADB8; // type:object size:0x430 scope:global align:8 +lc_base = .bss:0x803DB1E8; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x803DB1F0; // type:object size:0x4 scope:local align:4 data:4byte +...bss.0 = .bss:0x803DB1F8; // type:label scope:local +Ecb = .bss:0x803DB1F8; // type:object size:0x18 scope:local align:4 +aram_hp = .bss:0x803DB210; // type:object size:0x14 scope:global align:4 data:4byte +jac_audioThread = .bss:0x803DB240; // type:object size:0x320 scope:global align:32 +jac_audioStack = .bss:0x803DDB80; // type:object size:0x1000 scope:global align:32 +jac_neosThread = .bss:0x803DDB80; // type:object size:0x310 stripped +jac_dvdThread = .bss:0x803DEB80; // type:object size:0x310 scope:global align:8 +jac_dvdStack = .bss:0x803DEEA0; // type:object size:0x1000 scope:global align:32 +CGRP_ARRAY = .bss:0x803DFEA0; // type:object size:0x40 scope:global align:4 data:4byte +aram_mother = .bss:0x803DFEE0; // type:object size:0x2C scope:global align:4 +EVENT = .bss:0x803DFF0C; // type:object size:0x1B40 scope:global align:4 +CAMERA = .bss:0x803DFF0C; // type:object size:0x24 stripped +pic_ctrl = .bss:0x803E1A70; // type:object size:0x180 scope:global align:4 data:4byte +dvd_ctrl = .bss:0x803E1C20; // type:object size:0x30 scope:global align:4 +JAC_DAC_RATE = .sdata:0x803E1C60; // type:object size:0x4 scope:global align:4 data:float +JAC_SUBFRAMES = .sdata:0x803E1C64; // type:object size:0x4 scope:global align:4 data:4byte +JAC_FRAMESAMPLES = .sdata:0x803E1C68; // type:object size:0x4 scope:global align:4 data:4byte +DAC_SIZE = .sdata:0x803E1C6C; // type:object size:0x4 scope:global align:4 data:4byte +DSP_MIXERLEVEL = .sdata:0x803E1C70; // type:object size:0x2 scope:local align:2 data:2byte +MAX_MIXERLEVEL = .sdata:0x803E1C78; // type:object size:0x2 scope:local align:2 data:2byte +JAC_SYSTEM_OUTPUT_MODE = .sdata:0x803E1C7C; // type:object size:0x4 scope:global align:4 data:4byte +COMP_BLOCKSAMPLES$79 = .sdata:0x803E1C80; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$80 = .sdata:0x803E1C88; // type:object size:0x8 scope:local align:4 +v0 = .sdata:0x803E1C90; // type:object size:0x4 scope:local align:4 data:4byte +v1 = .sdata:0x803E1C94; // type:object size:0x4 scope:local align:4 data:4byte +ARCALL = .sdata:0x803E1C98; // type:object size:0x4 scope:local align:4 data:4byte +first = .sdata:0x803E1C9C; // type:object size:0x4 scope:local align:4 data:4byte +osc_table = .sdata:0x803E1CA0; // type:object size:0x5 scope:local align:4 +OSC_REL = .sdata:0x803E1CA8; // type:object size:0x8 scope:local align:4 +game_bgm_vol = .sdata:0x803E1CB0; // type:object size:0x1 scope:local align:1 data:byte +game_se_vol = .sdata:0x803E1CB1; // type:object size:0x1 scope:local align:1 data:byte +current_process = .sdata:0x803E1CB4; // type:object size:0x4 scope:local align:4 data:4byte +buffer = .sdata:0x803E1CB8; // type:object size:0x8 scope:local align:4 data:4byte +buffer_mus = .sdata:0x803E1CC0; // type:object size:0x8 scope:local align:4 +fadeouttime = .sdata:0x803E1CC8; // type:object size:0x4 scope:local align:4 data:4byte +game_bgm_volume = .sdata:0x803E1CCC; // type:object size:0x4 scope:local align:4 data:float +bgm0_set = .sdata:0x803E1CD0; // type:object size:0x8 scope:local align:4 +bgm1_set = .sdata:0x803E1CD8; // type:object size:0x8 scope:local align:4 +bgm2_set = .sdata:0x803E1CE0; // type:object size:0x8 scope:local align:4 +bgm3_set = .sdata:0x803E1CE8; // type:object size:0x8 scope:local align:4 +bgm4_set = .sdata:0x803E1CF0; // type:object size:0x8 scope:local align:4 +bgm5_set = .sdata:0x803E1CF8; // type:object size:0x8 scope:local align:4 +bgm0_volset = .sdata:0x803E1D00; // type:object size:0x8 scope:local align:4 +bgm1_volset = .sdata:0x803E1D08; // type:object size:0x8 scope:local align:4 +bgm2_volset = .sdata:0x803E1D10; // type:object size:0x8 scope:local align:4 +bgm3_volset = .sdata:0x803E1D18; // type:object size:0x8 scope:local align:4 +bgm4_volset = .sdata:0x803E1D20; // type:object size:0x8 scope:local align:4 +bgm5_volset = .sdata:0x803E1D28; // type:object size:0x8 scope:local align:4 +cresult_volset = .sdata:0x803E1D30; // type:object size:0x8 scope:local align:4 +last_bgm_level = .sdata:0x803E1D38; // type:object size:0x1 scope:local align:1 data:byte +current_scene = .sdata:0x803E1D40; // type:object size:0x4 scope:local align:4 data:4byte +current_stage = .sdata:0x803E1D44; // type:object size:0x4 scope:local align:4 data:4byte +current_prepare = .sdata:0x803E1D48; // type:object size:0x4 scope:local align:4 data:4byte +stream_level = .sdata:0x803E1D4C; // type:object size:0x2 scope:local align:2 data:2byte +stream_se_level = .sdata:0x803E1D4E; // type:object size:0x2 scope:local align:2 data:2byte +current_demo_no = .sdata:0x803E1D50; // type:object size:0x4 scope:local align:4 data:4byte +demo_seq_active = .sdata:0x803E1D54; // type:object size:0x4 scope:local align:4 data:4byte +demo_mml_active = .sdata:0x803E1D58; // type:object size:0x4 scope:local align:4 data:4byte +demo1 = .sdata:0x803E1D5C; // type:object size:0x8 scope:local align:4 +demo2 = .sdata:0x803E1D64; // type:object size:0x4 scope:local align:4 +demo3 = .sdata:0x803E1D68; // type:object size:0x8 scope:local align:4 +demo12 = .sdata:0x803E1D70; // type:object size:0x8 scope:local align:4 +demo27 = .sdata:0x803E1D78; // type:object size:0x8 scope:local align:4 +demo102 = .sdata:0x803E1D80; // type:object size:0x8 scope:local align:4 +first = .sdata:0x803E1D88; // type:object size:0x4 scope:local align:4 data:4byte +copy = .sdata:0x803E1D90; // type:object size:0x4 scope:local align:4 data:4byte +buf = .sdata:0x803E1D98; // type:object size:0x4 scope:local align:4 data:4byte +gop_subframe = .sdata:0x803E1DA0; // type:object size:0x4 scope:local align:4 data:4byte +playback_first_wait = .sdata:0x803E1DA4; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_first = .sdata:0x803E1DA8; // type:object size:0x4 scope:local align:4 data:4byte +@413 = .sdata:0x803E1DB0; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803E1DB8; // type:object size:0x8 scope:local align:4 data:string +@431 = .sdata:0x803E1DC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1DD0; // type:object size:0x8 scope:local align:4 +@434 = .sdata:0x803E1DD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E1DE0; // type:object size:0x8 scope:local align:4 +__RTTI__7BaseApp = .sdata:0x803E1DE8; // type:object size:0x8 scope:local align:4 +@96 = .sdata:0x803E1DF0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E1DF8; // type:object size:0x8 scope:local align:4 +@432 = .sdata:0x803E1E00; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E1E08; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E1E10; // type:object size:0x8 scope:local align:4 +__RTTI__19BufferedInputStream = .sdata:0x803E1E18; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803E1E20; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E1E24; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E1E28; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E1E2C; // type:object size:0x4 scope:local align:4 data:float +@1178 = .sdata:0x803E1E30; // type:object size:0x4 scope:local align:4 data:float +@1179 = .sdata:0x803E1E34; // type:object size:0x4 scope:local align:4 data:float +@1180 = .sdata:0x803E1E38; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E1E3C; // type:object size:0x4 scope:local align:4 data:float +@1182 = .sdata:0x803E1E40; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata:0x803E1E44; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata:0x803E1E48; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata:0x803E1E4C; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E1E50; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E1E54; // type:object size:0x7 scope:local align:4 data:string +@1234 = .sdata:0x803E1E5C; // type:object size:0x8 scope:local align:4 data:string +@1672 = .sdata:0x803E1E64; // type:object size:0x1 scope:local align:4 +@1783 = .sdata:0x803E1E68; // type:object size:0x8 scope:local align:4 data:string +@1863 = .sdata:0x803E1E70; // type:object size:0x6 scope:local align:4 data:string +@1872 = .sdata:0x803E1E78; // type:object size:0x4 scope:local align:4 data:float +@1873 = .sdata:0x803E1E7C; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata:0x803E1E80; // type:object size:0x4 scope:local align:4 data:float +@1875 = .sdata:0x803E1E84; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata:0x803E1E88; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803E1E8C; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata:0x803E1E90; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata:0x803E1E94; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata:0x803E1E98; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata:0x803E1E9C; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803E1EA0; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E1EA4; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata:0x803E1EA8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E1EAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9GfxObject = .sdata:0x803E1EB0; // type:object size:0x8 scope:local align:4 +@2172 = .sdata:0x803E1EB8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Texture = .sdata:0x803E1EC0; // type:object size:0x8 scope:local align:4 +__RTTI__12CacheTexture = .sdata:0x803E1EC8; // type:object size:0x8 scope:local align:4 +@2174 = .sdata:0x803E1ED0; // type:object size:0x8 scope:local align:4 data:string +@2176 = .sdata:0x803E1ED8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1EE0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1EE8; // type:object size:0x8 scope:local align:4 +__RTTI__7TexAttr = .sdata:0x803E1EF0; // type:object size:0x8 scope:local align:4 +@2180 = .sdata:0x803E1EF8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6TexImg = .sdata:0x803E1F00; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E1F08; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E1F10; // type:object size:0x8 scope:local align:4 +__RTTI__8Material = .sdata:0x803E1F18; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E1F20; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E1F24; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E1F28; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata:0x803E1F2C; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata:0x803E1F30; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E1F34; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E1F38; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E1F3C; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E1F40; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata:0x803E1F44; // type:object size:0x6 scope:local align:4 data:string +@730 = .sdata:0x803E1F4C; // type:object size:0x6 scope:local align:4 data:string +@732 = .sdata:0x803E1F54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E1F5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E1F64; // type:object size:0x8 scope:local align:4 +__RTTI__5Light = .sdata:0x803E1F6C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E1F78; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E1F7C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E1F80; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E1F84; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E1F88; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E1F8C; // type:object size:0x4 scope:local align:4 data:float +@501 = .sdata:0x803E1F90; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E1F94; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E1F98; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E1F9C; // type:object size:0x5 scope:local align:4 data:string +@589 = .sdata:0x803E1FA4; // type:object size:0x4 scope:local align:4 data:string +@590 = .sdata:0x803E1FA8; // type:object size:0x4 scope:local align:4 data:string +@591 = .sdata:0x803E1FAC; // type:object size:0x4 scope:local align:4 data:string +@654 = .sdata:0x803E1FB0; // type:object size:0x5 scope:local align:4 data:string +@655 = .sdata:0x803E1FB8; // type:object size:0x1 scope:local align:4 +@737 = .sdata:0x803E1FBC; // type:object size:0x8 scope:local align:4 data:string +@1194 = .sdata:0x803E1FC4; // type:object size:0x5 scope:local align:4 data:string +@1195 = .sdata:0x803E1FCC; // type:object size:0x3 scope:local align:4 data:string +@1196 = .sdata:0x803E1FD0; // type:object size:0x3 scope:local align:4 data:string +@1198 = .sdata:0x803E1FD4; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803E1FDC; // type:object size:0x5 scope:local align:4 data:string +@1209 = .sdata:0x803E1FE4; // type:object size:0x8 scope:local align:4 data:string +@1683 = .sdata:0x803E1FEC; // type:object size:0x8 scope:local align:4 data:string +@1684 = .sdata:0x803E1FF4; // type:object size:0x5 scope:local align:4 data:string +@1685 = .sdata:0x803E1FFC; // type:object size:0x7 scope:local align:4 data:string +@1686 = .sdata:0x803E2004; // type:object size:0x6 scope:local align:4 data:string +@2218 = .sdata:0x803E200C; // type:object size:0x6 scope:local align:4 data:string +@2328 = .sdata:0x803E2014; // type:object size:0x7 scope:local align:4 data:string +@2780 = .sdata:0x803E201C; // type:object size:0x5 scope:local align:4 data:string +@2786 = .sdata:0x803E2024; // type:object size:0x8 scope:local align:4 data:string +@3626 = .sdata:0x803E202C; // type:object size:0x5 scope:local align:4 data:string +@3667 = .sdata:0x803E2034; // type:object size:0x7 scope:local align:4 data:string +@4269 = .sdata:0x803E203C; // type:object size:0x5 scope:local align:4 data:string +@4270 = .sdata:0x803E2044; // type:object size:0x5 scope:local align:4 data:string +@4308 = .sdata:0x803E204C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E2054; // type:object size:0x8 scope:local align:4 +__RTTI__10MatobjInfo = .sdata:0x803E205C; // type:object size:0x8 scope:local align:4 +@4573 = .sdata:0x803E2064; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E206C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2074; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E207C; // type:object size:0x8 scope:local align:4 +__RTTI__22IDelegate2 = .sdata:0x803E2084; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate2<9BaseShape,P5Joint,Ul> = .sdata:0x803E208C; // type:object size:0x8 scope:local align:4 +__RTTI__10LightFlare = .sdata:0x803E2094; // type:object size:0x8 scope:local align:4 +__RTTI__10LightGroup = .sdata:0x803E209C; // type:object size:0x8 scope:local align:4 +__RTTI__11ObjCollInfo = .sdata:0x803E20A4; // type:object size:0x8 scope:local align:4 +@4590 = .sdata:0x803E20AC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8AnimData = .sdata:0x803E20B4; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimDck = .sdata:0x803E20BC; // type:object size:0x8 scope:local align:4 +@4595 = .sdata:0x803E20C4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7AnimDca = .sdata:0x803E20CC; // type:object size:0x8 scope:local align:4 +__RTTI__11AnimContext = .sdata:0x803E20D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Joint7MatPoly = .sdata:0x803E20DC; // type:object size:0x8 scope:local align:4 +@4600 = .sdata:0x803E20E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5Joint = .sdata:0x803E20EC; // type:object size:0x8 scope:local align:4 +@4602 = .sdata:0x803E20F4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Mesh = .sdata:0x803E20FC; // type:object size:0x8 scope:local align:4 +__RTTI__8FaceNode = .sdata:0x803E2104; // type:object size:0x8 scope:local align:4 +__RTTI__8DispList = .sdata:0x803E210C; // type:object size:0x8 scope:local align:4 +@594 = .sdata:0x803E2118; // type:object size:0x5 scope:local align:4 data:string +@595 = .sdata:0x803E2120; // type:object size:0x3 scope:local align:4 data:string +@596 = .sdata:0x803E2124; // type:object size:0x4 scope:local align:4 data:string +@619 = .sdata:0x803E2128; // type:object size:0x5 scope:local align:4 data:string +@684 = .sdata:0x803E2130; // type:object size:0x5 scope:local align:4 data:string +@685 = .sdata:0x803E2138; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E213C; // type:object size:0x6 scope:local align:4 data:string +@687 = .sdata:0x803E2144; // type:object size:0x4 scope:local align:4 data:string +@688 = .sdata:0x803E2148; // type:object size:0x7 scope:local align:4 data:string +@689 = .sdata:0x803E2150; // type:object size:0x8 scope:local align:4 data:string +@692 = .sdata:0x803E2158; // type:object size:0x1 scope:local align:4 +@501 = .sdata:0x803E2160; // type:object size:0x4 scope:local align:4 data:float +@502 = .sdata:0x803E2164; // type:object size:0x4 scope:local align:4 data:float +@503 = .sdata:0x803E2168; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803E216C; // type:object size:0x3 scope:local align:4 data:string +@679 = .sdata:0x803E2170; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E2178; // type:object size:0x5 scope:local align:4 data:string +@681 = .sdata:0x803E2180; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E2184; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E2188; // type:object size:0x8 scope:local align:4 data:string +@685 = .sdata:0x803E2190; // type:object size:0x1 scope:local align:4 +@595 = .sdata:0x803E2198; // type:object size:0x3 scope:local align:4 data:string +@597 = .sdata:0x803E219C; // type:object size:0x1 scope:local align:4 +@617 = .sdata:0x803E21A0; // type:object size:0x3 scope:local align:4 data:string +@637 = .sdata:0x803E21A4; // type:object size:0x6 scope:local align:4 data:string +@638 = .sdata:0x803E21AC; // type:object size:0x4 scope:local align:4 data:string +@639 = .sdata:0x803E21B0; // type:object size:0x3 scope:local align:4 data:string +@640 = .sdata:0x803E21B4; // type:object size:0x6 scope:local align:4 data:string +@641 = .sdata:0x803E21BC; // type:object size:0x6 scope:local align:4 data:string +@686 = .sdata:0x803E21C4; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E21C8; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E21CC; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E21D0; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E21D4; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata:0x803E21D8; // type:object size:0x3 scope:local align:4 data:string +@1070 = .sdata:0x803E21DC; // type:object size:0x5 scope:local align:4 data:string +@1071 = .sdata:0x803E21E4; // type:object size:0x7 scope:local align:4 data:string +@1072 = .sdata:0x803E21EC; // type:object size:0x6 scope:local align:4 data:string +@1073 = .sdata:0x803E21F4; // type:object size:0x5 scope:local align:4 data:string +@1106 = .sdata:0x803E21FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2204; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E220C; // type:object size:0x8 scope:local align:4 +__RTTI__8EditNode = .sdata:0x803E2214; // type:object size:0x8 scope:local align:4 +__RTTI__10RouteGroup = .sdata:0x803E221C; // type:object size:0x8 scope:local align:4 +__RTTI__9RouteLink = .sdata:0x803E2224; // type:object size:0x8 scope:local align:4 +__RTTI__10RoutePoint = .sdata:0x803E222C; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803E2238; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803E223C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E2240; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803E2244; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803E2248; // type:object size:0x4 scope:local align:4 data:float +gs_fTolerance = .sdata:0x803E224C; // type:object size:0x4 scope:global align:4 data:float +@870 = .sdata:0x803E2250; // type:object size:0x4 scope:local align:4 data:float +@595 = .sdata:0x803E2258; // type:object size:0x1 scope:local align:4 +@691 = .sdata:0x803E225C; // type:object size:0x3 scope:local align:4 data:string +@844 = .sdata:0x803E2260; // type:object size:0x8 scope:local align:4 data:string +@952 = .sdata:0x803E2268; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803E2270; // type:object size:0x8 scope:local align:4 +__RTTI__10BinobjInfo = .sdata:0x803E2278; // type:object size:0x8 scope:local align:4 +@1004 = .sdata:0x803E2280; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2288; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2290; // type:object size:0x8 scope:local align:4 +__RTTI__11LFlareGroup = .sdata:0x803E2298; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E22A0; // type:object size:0x8 scope:local align:4 +__RTTI__10TexobjInfo = .sdata:0x803E22A8; // type:object size:0x8 scope:local align:4 +__RTTI__10ShpobjInfo = .sdata:0x803E22B0; // type:object size:0x8 scope:local align:4 +__RTTI__10AnmobjInfo = .sdata:0x803E22B8; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E22C0; // type:object size:0x5 scope:local align:4 data:string +@616 = .sdata:0x803E22C8; // type:object size:0x5 scope:local align:4 data:string +@751 = .sdata:0x803E22D0; // type:object size:0x8 scope:local align:4 data:string +@753 = .sdata:0x803E22D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E22E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E22E8; // type:object size:0x8 scope:local align:4 +__RTTI__4Node = .sdata:0x803E22F0; // type:object size:0x8 scope:local align:4 +__RTTI__7SRTNode = .sdata:0x803E22F8; // type:object size:0x8 scope:local align:4 +@424 = .sdata:0x803E2300; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2308; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2310; // type:object size:0x8 scope:local align:4 +@427 = .sdata:0x803E2318; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2320; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E2328; // type:object size:0x8 scope:local align:4 +@408 = .sdata:0x803E2330; // type:object size:0x4 scope:local align:4 data:float +@409 = .sdata:0x803E2334; // type:object size:0x4 scope:local align:4 data:float +@410 = .sdata:0x803E2338; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803E233C; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803E2340; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata:0x803E2344; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803E2348; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata:0x803E234C; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata:0x803E2350; // type:object size:0x4 scope:local align:4 data:float +@622 = .sdata:0x803E2354; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata:0x803E2358; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata:0x803E235C; // type:object size:0x4 scope:local align:4 data:float +@640 = .sdata:0x803E2360; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata:0x803E2364; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E2368; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803E236C; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803E2370; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803E2374; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata:0x803E2378; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata:0x803E237C; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata:0x803E2380; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E2384; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E2388; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E238C; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E2390; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata:0x803E2394; // type:object size:0x4 scope:local align:4 data:float +@1201 = .sdata:0x803E2398; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E239C; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata:0x803E23A0; // type:object size:0x4 scope:local align:4 data:float +@1204 = .sdata:0x803E23A4; // type:object size:0x4 scope:local align:4 data:float +@1205 = .sdata:0x803E23A8; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E23AC; // type:object size:0x4 scope:local align:4 data:float +@468 = .sdata:0x803E23B0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E23B8; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E23C0; // type:object size:0x8 scope:local align:4 +__RTTI__13AtxFileStream = .sdata:0x803E23C8; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E23D0; // type:object size:0x8 scope:local align:4 +@580 = .sdata:0x803E23D8; // type:object size:0x8 scope:local align:4 data:string +@660 = .sdata:0x803E23E0; // type:object size:0x4 scope:local align:4 data:string +@661 = .sdata:0x803E23E4; // type:object size:0x7 scope:local align:4 data:string +@662 = .sdata:0x803E23EC; // type:object size:0x4 scope:local align:4 data:string +__RTTI__9GfxObject = .sdata:0x803E23F0; // type:object size:0x8 scope:local align:4 +__RTTI__7Texture = .sdata:0x803E23F8; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803E2400; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2408; // type:object size:0x8 scope:local align:4 +@587 = .sdata:0x803E2410; // type:object size:0x7 scope:local align:4 data:string +glnWidth = .sdata:0x803E2418; // type:object size:0x4 scope:global align:4 data:4byte +glnHeight = .sdata:0x803E241C; // type:object size:0x4 scope:global align:4 data:4byte +@686 = .sdata:0x803E2420; // type:object size:0x1 scope:local align:4 +@687 = .sdata:0x803E2424; // type:object size:0x3 scope:local align:4 data:string +@688 = .sdata:0x803E2428; // type:object size:0x7 scope:local align:4 data:string +@908 = .sdata:0x803E2430; // type:object size:0x6 scope:local align:4 data:string +@909 = .sdata:0x803E2438; // type:object size:0x7 scope:local align:4 data:string +@910 = .sdata:0x803E2440; // type:object size:0x5 scope:local align:4 data:string +@911 = .sdata:0x803E2448; // type:object size:0x3 scope:local align:4 data:string +@912 = .sdata:0x803E244C; // type:object size:0x7 scope:local align:4 data:string +@950 = .sdata:0x803E2454; // type:object size:0x5 scope:local align:4 data:string +@981 = .sdata:0x803E245C; // type:object size:0x7 scope:local align:4 data:string +@1141 = .sdata:0x803E2464; // type:object size:0x4 scope:local align:4 data:string +__RTTI__22IDelegate1 = .sdata:0x803E2468; // type:object size:0x8 scope:local align:4 +__RTTI__29Delegate1<6System,R8Graphics> = .sdata:0x803E2470; // type:object size:0x8 scope:local align:4 +@1329 = .sdata:0x803E2478; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E2480; // type:object size:0x8 scope:local align:4 +__RTTI__9LogStream = .sdata:0x803E2488; // type:object size:0x8 scope:local align:4 +@1332 = .sdata:0x803E2490; // type:object size:0x4 scope:local align:4 data:string +@1351 = .sdata:0x803E2494; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E249C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E24A4; // type:object size:0x8 scope:local align:4 +__RTTI__11AddressNode = .sdata:0x803E24AC; // type:object size:0x8 scope:local align:4 +__RTTI__8DirEntry = .sdata:0x803E24B4; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E24BC; // type:object size:0x8 scope:local align:4 +__RTTI__9DVDStream = .sdata:0x803E24C4; // type:object size:0x8 scope:local align:4 +__RTTI__9StdSystem = .sdata:0x803E24CC; // type:object size:0x8 scope:local align:4 +__RTTI__6System = .sdata:0x803E24D4; // type:object size:0x8 scope:local align:4 +__RTTI__10AramStream = .sdata:0x803E24DC; // type:object size:0x8 scope:local align:4 +__RTTI__13ControllerMgr = .sdata:0x803E24E8; // type:object size:0x8 scope:local align:4 +sScreenMode = .sdata:0x803E24F0; // type:object size:0x8 scope:local align:4 +sFirstFrame = .sdata:0x803E24F8; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultFifoSize = .sdata:0x803E24FC; // type:object size:0x4 scope:local align:4 data:4byte +kTempFifoSize = .sdata:0x803E2500; // type:object size:0x4 scope:local align:4 data:4byte +kDefaultDLSize = .sdata:0x803E2504; // type:object size:0x4 scope:local align:4 data:4byte +sendMtxIndx = .sdata:0x803E2508; // type:object size:0x1 scope:local align:1 data:byte +sendTxUVIndx = .sdata:0x803E250C; // type:object size:0x8 scope:local align:4 data:byte +@1351 = .sdata:0x803E2514; // type:object size:0x4 scope:local align:4 data:float +@1354 = .sdata:0x803E2518; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata:0x803E251C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803E2520; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803E2524; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803E2528; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata:0x803E252C; // type:object size:0x4 scope:local align:4 data:float +@1441 = .sdata:0x803E2530; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata:0x803E2534; // type:object size:0x6 scope:local align:4 data:string +@2092 = .sdata:0x803E253C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2544; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E254C; // type:object size:0x8 scope:local align:4 +__RTTI__9BaseShape = .sdata:0x803E2554; // type:object size:0x8 scope:local align:4 +__RTTI__5Shape = .sdata:0x803E255C; // type:object size:0x8 scope:local align:4 +__RTTI__8Graphics = .sdata:0x803E2564; // type:object size:0x8 scope:local align:4 +__RTTI__11DGXGraphics = .sdata:0x803E256C; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E2578; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E257C; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E2580; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E2584; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E2588; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E258C; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E2590; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E2594; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E2598; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E259C; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E25A0; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E25A4; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E25A8; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E25AC; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E25B0; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata:0x803E25B4; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E25B8; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata:0x803E25BC; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803E25C0; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E25C4; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803E25C8; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803E25CC; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E25D0; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E25D4; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E25D8; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E25DC; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E25E0; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E25E4; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E25E8; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E25EC; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E25F0; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803E25F4; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E25F8; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata:0x803E25FC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2604; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E260C; // type:object size:0x8 scope:local align:4 +@1797 = .sdata:0x803E2614; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E261C; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E2624; // type:object size:0x8 scope:local align:4 +@707 = .sdata:0x803E2630; // type:object size:0x8 scope:local align:4 data:string +@791 = .sdata:0x803E2638; // type:object size:0x1 scope:local align:4 +@792 = .sdata:0x803E263C; // type:object size:0x4 scope:local align:4 data:4byte +@793 = .sdata:0x803E2640; // type:object size:0x4 scope:local align:4 data:4byte +@969 = .sdata:0x803E2644; // type:object size:0x4 scope:local align:4 data:4byte +@970 = .sdata:0x803E2648; // type:object size:0x4 scope:local align:4 data:4byte +@972 = .sdata:0x803E264C; // type:object size:0x6 scope:local align:4 data:string +@1028 = .sdata:0x803E2654; // type:object size:0x6 scope:local align:4 data:string +@1029 = .sdata:0x803E265C; // type:object size:0x4 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E2660; // type:object size:0x8 scope:local align:4 +@1265 = .sdata:0x803E2668; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2670; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2678; // type:object size:0x8 scope:local align:4 +__RTTI__7AnimMgr = .sdata:0x803E2680; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2688; // type:object size:0x8 scope:local align:4 +__RTTI__13Parm<6String> = .sdata:0x803E2690; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E2698; // type:object size:0x8 scope:local align:4 +__RTTI__7Parm = .sdata:0x803E26A0; // type:object size:0x8 scope:local align:4 +__RTTI__8AnimInfo = .sdata:0x803E26A8; // type:object size:0x8 scope:local align:4 +@1902 = .sdata:0x803E26B0; // type:object size:0x7 scope:local align:4 data:string +@1903 = .sdata:0x803E26B8; // type:object size:0x7 scope:local align:4 data:string +@1904 = .sdata:0x803E26C0; // type:object size:0x7 scope:local align:4 data:string +@1912 = .sdata:0x803E26C8; // type:object size:0x6 scope:local align:4 data:string +@1913 = .sdata:0x803E26D0; // type:object size:0x6 scope:local align:4 data:string +@2036 = .sdata:0x803E26D8; // type:object size:0x7 scope:local align:4 data:string +@2037 = .sdata:0x803E26E0; // type:object size:0x7 scope:local align:4 data:string +filterNames = .sdata:0x803E26E8; // type:object size:0x8 scope:local align:4 +@2122 = .sdata:0x803E26F0; // type:object size:0x1 scope:local align:4 +@2291 = .sdata:0x803E26F4; // type:object size:0x4 scope:local align:4 data:4byte +@2293 = .sdata:0x803E26F8; // type:object size:0x4 scope:local align:4 data:4byte +@2295 = .sdata:0x803E26FC; // type:object size:0x4 scope:local align:4 data:4byte +@2297 = .sdata:0x803E2700; // type:object size:0x4 scope:local align:4 data:4byte +@2298 = .sdata:0x803E2704; // type:object size:0x4 scope:local align:4 data:4byte +@2300 = .sdata:0x803E2708; // type:object size:0x4 scope:local align:4 data:4byte +@2302 = .sdata:0x803E270C; // type:object size:0x4 scope:local align:4 data:4byte +@2304 = .sdata:0x803E2710; // type:object size:0x4 scope:local align:4 data:4byte +@2306 = .sdata:0x803E2714; // type:object size:0x4 scope:local align:4 data:4byte +@2308 = .sdata:0x803E2718; // type:object size:0x4 scope:local align:4 data:4byte +@2310 = .sdata:0x803E271C; // type:object size:0x4 scope:local align:4 data:4byte +@2311 = .sdata:0x803E2720; // type:object size:0x4 scope:local align:4 data:4byte +@2312 = .sdata:0x803E2724; // type:object size:0x4 scope:local align:4 data:4byte +@2313 = .sdata:0x803E2728; // type:object size:0x5 scope:local align:4 data:string +@2314 = .sdata:0x803E2730; // type:object size:0x5 scope:local align:4 data:string +@2316 = .sdata:0x803E2738; // type:object size:0x7 scope:local align:4 data:string +@2462 = .sdata:0x803E2740; // type:object size:0x4 scope:local align:4 data:string +@2463 = .sdata:0x803E2744; // type:object size:0x7 scope:local align:4 data:string +@2465 = .sdata:0x803E274C; // type:object size:0x8 scope:local align:4 data:string +@2501 = .sdata:0x803E2754; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E275C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2764; // type:object size:0x8 scope:local align:4 +@2504 = .sdata:0x803E276C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2774; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenNode = .sdata:0x803E277C; // type:object size:0x8 scope:local align:4 +@2515 = .sdata:0x803E2784; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E278C; // type:object size:0x8 scope:local align:4 +__RTTI__11GameGenFlow = .sdata:0x803E2794; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E279C; // type:object size:0x8 scope:local align:4 +__RTTI__8GameFlow = .sdata:0x803E27A4; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E27AC; // type:object size:0x8 scope:local align:4 +__RTTI__27Delegate1<8GameFlow,R4Menu> = .sdata:0x803E27B4; // type:object size:0x8 scope:local align:4 +__RTTI__9LoadIdler = .sdata:0x803E27BC; // type:object size:0x8 scope:local align:4 +__RTTI__13GameLoadIdler = .sdata:0x803E27C4; // type:object size:0x8 scope:local align:4 +__RTTI__10MemoryCard = .sdata:0x803E27CC; // type:object size:0x8 scope:local align:4 +@714 = .sdata:0x803E27D8; // type:object size:0x8 scope:local align:4 data:string +@715 = .sdata:0x803E27E0; // type:object size:0x1 scope:local align:4 +@716 = .sdata:0x803E27E4; // type:object size:0x3 scope:local align:4 data:string +@725 = .sdata:0x803E27E8; // type:object size:0x3 scope:local align:4 data:string +@783 = .sdata:0x803E27EC; // type:object size:0x7 scope:local align:4 data:string +@784 = .sdata:0x803E27F4; // type:object size:0x8 scope:local align:4 data:string +@786 = .sdata:0x803E27FC; // type:object size:0x8 scope:local align:4 data:string +@787 = .sdata:0x803E2804; // type:object size:0x5 scope:local align:4 data:string +@788 = .sdata:0x803E280C; // type:object size:0x3 scope:local align:4 data:string +@789 = .sdata:0x803E2810; // type:object size:0x5 scope:local align:4 data:string +@790 = .sdata:0x803E2818; // type:object size:0x5 scope:local align:4 data:string +@951 = .sdata:0x803E2820; // type:object size:0x6 scope:local align:4 data:string +@959 = .sdata:0x803E2828; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2830; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2838; // type:object size:0x8 scope:local align:4 +@962 = .sdata:0x803E2840; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2848; // type:object size:0x8 scope:local align:4 +@964 = .sdata:0x803E2850; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2858; // type:object size:0x8 scope:local align:4 +__RTTI__16OnePlayerSection = .sdata:0x803E2860; // type:object size:0x8 scope:local align:4 +__RTTI__11GenFileInfo = .sdata:0x803E2868; // type:object size:0x8 scope:local align:4 +__RTTI__9StageInfo = .sdata:0x803E2870; // type:object size:0x8 scope:local align:4 +@1015 = .sdata:0x803E2878; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2880; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2888; // type:object size:0x8 scope:local align:4 +__RTTI__9PlayState = .sdata:0x803E2890; // type:object size:0x8 scope:local align:4 +__RTTI__9GamePrefs = .sdata:0x803E2898; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803E28A0; // type:object size:0x1 scope:local align:4 +@1186 = .sdata:0x803E28A4; // type:object size:0x7 scope:local align:4 data:string +@1188 = .sdata:0x803E28AC; // type:object size:0x6 scope:local align:4 data:string +@1201 = .sdata:0x803E28B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E28BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E28C4; // type:object size:0x8 scope:local align:4 +@1204 = .sdata:0x803E28CC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E28D4; // type:object size:0x8 scope:local align:4 +@1206 = .sdata:0x803E28DC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E28E4; // type:object size:0x8 scope:local align:4 +__RTTI__16GameSetupSection = .sdata:0x803E28EC; // type:object size:0x8 scope:local align:4 +@1218 = .sdata:0x803E28F4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E28FC; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E2904; // type:object size:0x8 scope:local align:4 +__RTTI__9RamStream = .sdata:0x803E290C; // type:object size:0x8 scope:local align:4 +@1212 = .sdata:0x803E2918; // type:object size:0x7 scope:local align:4 data:string +@1224 = .sdata:0x803E2920; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2928; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2930; // type:object size:0x8 scope:local align:4 +@1229 = .sdata:0x803E2938; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2940; // type:object size:0x8 scope:local align:4 +__RTTI__22CardSelectSetupSection = .sdata:0x803E2948; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E2950; // type:object size:0x3 scope:local align:4 data:string +@1301 = .sdata:0x803E2954; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E295C; // type:object size:0x8 scope:local align:4 +__RTTI__17CardSelectSection = .sdata:0x803E2964; // type:object size:0x8 scope:local align:4 +@1333 = .sdata:0x803E2970; // type:object size:0x3 scope:local align:4 data:string +@1421 = .sdata:0x803E2974; // type:object size:0x7 scope:local align:4 data:string +@1423 = .sdata:0x803E297C; // type:object size:0x8 scope:local align:4 data:string +@1430 = .sdata:0x803E2984; // type:object size:0x1 scope:local align:4 +@1465 = .sdata:0x803E2988; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2990; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2998; // type:object size:0x8 scope:local align:4 +@1470 = .sdata:0x803E29A0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E29A8; // type:object size:0x8 scope:local align:4 +__RTTI__21MapSelectSetupSection = .sdata:0x803E29B0; // type:object size:0x8 scope:local align:4 +@1571 = .sdata:0x803E29B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E29C0; // type:object size:0x8 scope:local align:4 +__RTTI__16MapSelectSection = .sdata:0x803E29C8; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E29D0; // type:object size:0x8 scope:local align:4 +__RTTI__23Delegate1<4Menu,R4Menu> = .sdata:0x803E29D8; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21MapSelectSetupSection,R4Menu> = .sdata:0x803E29E0; // type:object size:0x8 scope:local align:4 +@2006 = .sdata:0x803E29E8; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E29EC; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E29F0; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803E29F4; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata:0x803E29F8; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata:0x803E29FC; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E2A00; // type:object size:0x1 scope:local align:4 +@2296 = .sdata:0x803E2A04; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E2A08; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E2A0C; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E2A10; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E2A14; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata:0x803E2A18; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata:0x803E2A1C; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata:0x803E2A20; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata:0x803E2A24; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata:0x803E2A28; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata:0x803E2A2C; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata:0x803E2A30; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E2A34; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata:0x803E2A38; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803E2A3C; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803E2A40; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E2A44; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata:0x803E2A48; // type:object size:0x4 scope:local align:4 data:float +@2830 = .sdata:0x803E2A4C; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata:0x803E2A50; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata:0x803E2A54; // type:object size:0x4 scope:local align:4 data:float +@2833 = .sdata:0x803E2A58; // type:object size:0x4 scope:local align:4 data:float +@2834 = .sdata:0x803E2A5C; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E2A60; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata:0x803E2A64; // type:object size:0x7 scope:local align:4 data:string +@3106 = .sdata:0x803E2A6C; // type:object size:0x4 scope:local align:4 data:string +@3109 = .sdata:0x803E2A70; // type:object size:0x5 scope:local align:4 data:string +@3110 = .sdata:0x803E2A78; // type:object size:0x6 scope:local align:4 data:string +@3111 = .sdata:0x803E2A80; // type:object size:0x7 scope:local align:4 data:string +@3113 = .sdata:0x803E2A88; // type:object size:0x6 scope:local align:4 data:string +@3114 = .sdata:0x803E2A90; // type:object size:0x8 scope:local align:4 data:string +@3135 = .sdata:0x803E2A98; // type:object size:0x4 scope:local align:4 data:string +@3136 = .sdata:0x803E2A9C; // type:object size:0x6 scope:local align:4 data:string +@3162 = .sdata:0x803E2AA4; // type:object size:0x3 scope:local align:4 data:string +@3164 = .sdata:0x803E2AA8; // type:object size:0x3 scope:local align:4 data:string +@3165 = .sdata:0x803E2AAC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__13GameInterface = .sdata:0x803E2AB4; // type:object size:0x8 scope:local align:4 +@3195 = .sdata:0x803E2ABC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2AC4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2ACC; // type:object size:0x8 scope:local align:4 +__RTTI__9GaugeInfo = .sdata:0x803E2AD4; // type:object size:0x8 scope:local align:4 +@3202 = .sdata:0x803E2ADC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2AE4; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E2AEC; // type:object size:0x8 scope:local align:4 +__RTTI__23NewPikiGameSetupSection = .sdata:0x803E2AF4; // type:object size:0x8 scope:local align:4 +@3380 = .sdata:0x803E2AFC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2B04; // type:object size:0x8 scope:local align:4 +__RTTI__18NewPikiGameSection = .sdata:0x803E2B0C; // type:object size:0x8 scope:local align:4 +__RTTI__18GameMovieInterface = .sdata:0x803E2B14; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E2B1C; // type:object size:0x8 scope:local align:4 +__RTTI__16DayOverModeState = .sdata:0x803E2B24; // type:object size:0x8 scope:local align:4 +__RTTI__16MessageModeState = .sdata:0x803E2B2C; // type:object size:0x8 scope:local align:4 +__RTTI__16RunningModeState = .sdata:0x803E2B34; // type:object size:0x8 scope:local align:4 +__RTTI__21QuittingGameModeState = .sdata:0x803E2B3C; // type:object size:0x8 scope:local align:4 +__RTTI__18IntroGameModeState = .sdata:0x803E2B44; // type:object size:0x8 scope:local align:4 +@1228 = .sdata:0x803E2B50; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata:0x803E2B54; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E2B58; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E2B5C; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata:0x803E2B60; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata:0x803E2B64; // type:object size:0x4 scope:local align:4 data:float +@1234 = .sdata:0x803E2B68; // type:object size:0x4 scope:local align:4 data:float +@1235 = .sdata:0x803E2B6C; // type:object size:0x4 scope:local align:4 data:float +@1236 = .sdata:0x803E2B70; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E2B74; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E2B78; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E2B7C; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E2B80; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803E2B84; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E2B88; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803E2B8C; // type:object size:0x7 scope:local align:4 data:string +@1303 = .sdata:0x803E2B94; // type:object size:0x6 scope:local align:4 data:string +@1312 = .sdata:0x803E2B9C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2BA4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2BAC; // type:object size:0x8 scope:local align:4 +__RTTI__9ModeState = .sdata:0x803E2BB4; // type:object size:0x8 scope:local align:4 +__RTTI__14IntroModeState = .sdata:0x803E2BBC; // type:object size:0x8 scope:local align:4 +__RTTI__17QuittingModeState = .sdata:0x803E2BC4; // type:object size:0x8 scope:local align:4 +@1338 = .sdata:0x803E2BCC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2BD4; // type:object size:0x8 scope:local align:4 +__RTTI__15BaseGameSection = .sdata:0x803E2BDC; // type:object size:0x8 scope:local align:4 +__RTTI__21IntroGameSetupSection = .sdata:0x803E2BE4; // type:object size:0x8 scope:local align:4 +@1421 = .sdata:0x803E2BEC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2BF4; // type:object size:0x8 scope:local align:4 +__RTTI__16IntroGameSection = .sdata:0x803E2BFC; // type:object size:0x8 scope:local align:4 +@702 = .sdata:0x803E2C08; // type:object size:0x7 scope:local align:4 data:string +@703 = .sdata:0x803E2C10; // type:object size:0x1 scope:local align:4 +@717 = .sdata:0x803E2C14; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2C1C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2C24; // type:object size:0x8 scope:local align:4 +@720 = .sdata:0x803E2C2C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2C34; // type:object size:0x8 scope:local align:4 +@722 = .sdata:0x803E2C3C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2C44; // type:object size:0x8 scope:local align:4 +__RTTI__15GameExitSection = .sdata:0x803E2C4C; // type:object size:0x8 scope:local align:4 +@724 = .sdata:0x803E2C58; // type:object size:0x4 scope:local align:4 data:float +@725 = .sdata:0x803E2C5C; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata:0x803E2C60; // type:object size:0x4 scope:local align:4 data:float +@762 = .sdata:0x803E2C64; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E2C68; // type:object size:0x1 scope:local align:4 +@863 = .sdata:0x803E2C6C; // type:object size:0x4 scope:local align:4 data:float +@864 = .sdata:0x803E2C70; // type:object size:0x4 scope:local align:4 data:float +@865 = .sdata:0x803E2C74; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E2C78; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E2C7C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata:0x803E2C80; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata:0x803E2C84; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E2C88; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata:0x803E2C8C; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803E2C90; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E2C94; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E2C98; // type:object size:0x4 scope:local align:4 data:float +@956 = .sdata:0x803E2C9C; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata:0x803E2CA0; // type:object size:0x4 scope:local align:4 data:float +@233 = .sdata:0x803E2CA8; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E2CAC; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E2CB0; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E2CB4; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E2CB8; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E2CBC; // type:object size:0x4 scope:local align:4 data:float +@1132 = .sdata:0x803E2CC0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2CC8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2CD0; // type:object size:0x8 scope:local align:4 +@1137 = .sdata:0x803E2CD8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2CE0; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E2CE8; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E2CF0; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjBridge = .sdata:0x803E2CF8; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E2D00; // type:object size:0x8 scope:local align:4 +@1238 = .sdata:0x803E2D08; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E2D10; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E2D18; // type:object size:0x8 scope:local align:4 +__RTTI__18GenObjectMapObject = .sdata:0x803E2D20; // type:object size:0x8 scope:local align:4 +@605 = .sdata:0x803E2D28; // type:object size:0x7 scope:local align:4 data:string +@606 = .sdata:0x803E2D30; // type:object size:0x5 scope:local align:4 data:string +@937 = .sdata:0x803E2D38; // type:object size:0x3 scope:local align:4 data:string +@950 = .sdata:0x803E2D3C; // type:object size:0x5 scope:local align:4 data:string +@952 = .sdata:0x803E2D44; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2D4C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2D54; // type:object size:0x8 scope:local align:4 +@955 = .sdata:0x803E2D5C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2D64; // type:object size:0x8 scope:local align:4 +__RTTI__4Menu = .sdata:0x803E2D6C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E2D78; // type:object size:0x8 scope:local align:4 +@716 = .sdata:0x803E2D80; // type:object size:0x4 scope:local align:4 data:string +@802 = .sdata:0x803E2D84; // type:object size:0x8 scope:local align:4 data:string +@804 = .sdata:0x803E2D8C; // type:object size:0x8 scope:local align:4 data:string +@830 = .sdata:0x803E2D94; // type:object size:0x4 scope:local align:4 data:string +@861 = .sdata:0x803E2D98; // type:object size:0x4 scope:local align:4 data:string +@868 = .sdata:0x803E2D9C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E2DA4; // type:object size:0x8 scope:local align:4 +__RTTI__9AtxStream = .sdata:0x803E2DAC; // type:object size:0x8 scope:local align:4 +__RTTI__16AtxCommandStream = .sdata:0x803E2DB4; // type:object size:0x8 scope:local align:4 +@872 = .sdata:0x803E2DBC; // type:object size:0x8 scope:local align:4 data:string +@874 = .sdata:0x803E2DC4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2DCC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2DD4; // type:object size:0x8 scope:local align:4 +@877 = .sdata:0x803E2DDC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2DE4; // type:object size:0x8 scope:local align:4 +@879 = .sdata:0x803E2DEC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseApp = .sdata:0x803E2DF4; // type:object size:0x8 scope:local align:4 +__RTTI__7GameApp = .sdata:0x803E2DFC; // type:object size:0x8 scope:local align:4 +__RTTI__11PlugPikiApp = .sdata:0x803E2E04; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E2E10; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E2E14; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata:0x803E2E18; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata:0x803E2E1C; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803E2E20; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E2E24; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata:0x803E2E28; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata:0x803E2E2C; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E2E30; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E2E34; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E2E38; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803E2E3C; // type:object size:0x4 scope:local align:4 data:float +@1287 = .sdata:0x803E2E40; // type:object size:0x4 scope:local align:4 data:float +@1288 = .sdata:0x803E2E44; // type:object size:0x4 scope:local align:4 data:float +@1290 = .sdata:0x803E2E48; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E2E4C; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E2E50; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E2E54; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E2E58; // type:object size:0x4 scope:local align:4 data:float +@1296 = .sdata:0x803E2E5C; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata:0x803E2E60; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E2E64; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata:0x803E2E68; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata:0x803E2E6C; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata:0x803E2E70; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803E2E74; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E2E78; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803E2E7C; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803E2E80; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803E2E84; // type:object size:0x7 scope:local align:4 data:string +@1484 = .sdata:0x803E2E8C; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E2E94; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2E9C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2EA4; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803E2EAC; // type:object size:0x8 scope:local align:4 +__RTTI__37Delegate1<17TitleSetupSection,R4Menu> = .sdata:0x803E2EB4; // type:object size:0x8 scope:local align:4 +__RTTI__13GameInterface = .sdata:0x803E2EBC; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E2EC4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2ECC; // type:object size:0x8 scope:local align:4 +__RTTI__17TitleSetupSection = .sdata:0x803E2ED4; // type:object size:0x8 scope:local align:4 +@1767 = .sdata:0x803E2EDC; // type:object size:0x1 scope:local align:4 +@1797 = .sdata:0x803E2EE0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2EE8; // type:object size:0x8 scope:local align:4 +__RTTI__13TitlesSection = .sdata:0x803E2EF0; // type:object size:0x8 scope:local align:4 +__RTTI__20TitlesMovieInterface = .sdata:0x803E2EF8; // type:object size:0x8 scope:local align:4 +@928 = .sdata:0x803E2F00; // type:object size:0x7 scope:local align:4 data:string +@939 = .sdata:0x803E2F08; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E2F10; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E2F18; // type:object size:0x8 scope:local align:4 +@944 = .sdata:0x803E2F20; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E2F28; // type:object size:0x8 scope:local align:4 +__RTTI__19NinLogoSetupSection = .sdata:0x803E2F30; // type:object size:0x8 scope:local align:4 +@1011 = .sdata:0x803E2F38; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E2F40; // type:object size:0x8 scope:local align:4 +__RTTI__14NinLogoSection = .sdata:0x803E2F48; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E2F50; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E2F54; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E2F58; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E2F5C; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E2F60; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E2F64; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E2F68; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata:0x803E2F6C; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata:0x803E2F70; // type:object size:0x4 scope:local align:4 data:float +@746 = .sdata:0x803E2F74; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803E2F78; // type:object size:0x4 scope:local align:4 data:float +@748 = .sdata:0x803E2F7C; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata:0x803E2F80; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata:0x803E2F84; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata:0x803E2F88; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata:0x803E2F8C; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata:0x803E2F90; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata:0x803E2F94; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E2F98; // type:object size:0x1 scope:local align:4 +Kdl = .sdata:0x803E2F9C; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E2FA0; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E2FA4; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E2FA8; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E2FAC; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E2FB0; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E2FB4; // type:object size:0x4 scope:local align:4 data:float +@2552 = .sdata:0x803E2FB8; // type:object size:0x5 scope:local align:4 data:string +@2555 = .sdata:0x803E2FC0; // type:object size:0x3 scope:local align:4 data:string +@2557 = .sdata:0x803E2FC4; // type:object size:0x3 scope:local align:4 data:string +@2565 = .sdata:0x803E2FC8; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata:0x803E2FCC; // type:object size:0x4 scope:local align:4 data:float +@2567 = .sdata:0x803E2FD0; // type:object size:0x4 scope:local align:4 data:float +@2568 = .sdata:0x803E2FD4; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803E2FD8; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803E2FDC; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803E2FE0; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803E2FE4; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803E2FE8; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E2FEC; // type:object size:0x5 scope:local align:4 data:string +@2884 = .sdata:0x803E2FF4; // type:object size:0x7 scope:local align:4 data:string +@2887 = .sdata:0x803E2FFC; // type:object size:0x6 scope:local align:4 data:string +@2927 = .sdata:0x803E3004; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E3008; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E300C; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E3010; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata:0x803E3014; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata:0x803E3018; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E301C; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E3020; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E3024; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E3028; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E302C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E3030; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803E3034; // type:object size:0x4 scope:local align:4 data:float +@3195 = .sdata:0x803E3038; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata:0x803E303C; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata:0x803E3040; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803E3044; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata:0x803E3048; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803E304C; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E3050; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E3054; // type:object size:0x4 scope:local align:4 data:float +@3300 = .sdata:0x803E3058; // type:object size:0x4 scope:local align:4 data:float +@3301 = .sdata:0x803E305C; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata:0x803E3060; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata:0x803E3064; // type:object size:0x4 scope:local align:4 data:float +@3304 = .sdata:0x803E3068; // type:object size:0x4 scope:local align:4 data:float +@3305 = .sdata:0x803E306C; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata:0x803E3070; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata:0x803E3074; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata:0x803E3078; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata:0x803E307C; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata:0x803E3080; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata:0x803E3084; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata:0x803E3088; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata:0x803E308C; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata:0x803E3090; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata:0x803E3094; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata:0x803E3098; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata:0x803E309C; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata:0x803E30A0; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata:0x803E30A4; // type:object size:0x8 scope:local align:4 data:string +@3804 = .sdata:0x803E30AC; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata:0x803E30B0; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata:0x803E30B4; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata:0x803E30B8; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata:0x803E30BC; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata:0x803E30C0; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata:0x803E30C4; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata:0x803E30C8; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata:0x803E30CC; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata:0x803E30D0; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata:0x803E30D4; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata:0x803E30D8; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata:0x803E30DC; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata:0x803E30E0; // type:object size:0x4 scope:local align:4 data:float +@4597 = .sdata:0x803E30E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E30EC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E30F4; // type:object size:0x8 scope:local align:4 +__RTTI__12ShadowCaster = .sdata:0x803E30FC; // type:object size:0x8 scope:local align:4 +@4604 = .sdata:0x803E3104; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E310C; // type:object size:0x8 scope:local align:4 +__RTTI__12DynSimulator = .sdata:0x803E3114; // type:object size:0x8 scope:local align:4 +__RTTI__15MaterialHandler = .sdata:0x803E311C; // type:object size:0x8 scope:local align:4 +__RTTI__17MapProjMatHandler = .sdata:0x803E3124; // type:object size:0x8 scope:local align:4 +__RTTI__17MapShadMatHandler = .sdata:0x803E312C; // type:object size:0x8 scope:local align:4 +__RTTI__9RigidBody = .sdata:0x803E3134; // type:object size:0x8 scope:local align:4 +__RTTI__10DynObjBody = .sdata:0x803E313C; // type:object size:0x8 scope:local align:4 +__RTTI__14DynObjPushable = .sdata:0x803E3144; // type:object size:0x8 scope:local align:4 +__RTTI__12DynObjSeeSaw = .sdata:0x803E314C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E3154; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E315C; // type:object size:0x8 scope:local align:4 +__RTTI__14DynCollObjBody = .sdata:0x803E3164; // type:object size:0x8 scope:local align:4 +__RTTI__12DynMapObject = .sdata:0x803E316C; // type:object size:0x8 scope:local align:4 +__RTTI__13MapObjectPart = .sdata:0x803E3174; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E317C; // type:object size:0x8 scope:local align:4 +__RTTI__14MapObjAnimator = .sdata:0x803E3184; // type:object size:0x8 scope:local align:4 +@679 = .sdata:0x803E3190; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata:0x803E3194; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata:0x803E3198; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E319C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E31A0; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata:0x803E31A4; // type:object size:0x4 scope:local align:4 data:float +@685 = .sdata:0x803E31A8; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E31AC; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E31B0; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata:0x803E31B4; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata:0x803E31B8; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata:0x803E31BC; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata:0x803E31C0; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata:0x803E31C4; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata:0x803E31C8; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata:0x803E31CC; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata:0x803E31D0; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata:0x803E31D4; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata:0x803E31D8; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata:0x803E31DC; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata:0x803E31E0; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata:0x803E31E4; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E31E8; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata:0x803E31EC; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata:0x803E31F0; // type:object size:0x4 scope:local align:4 data:float +@704 = .sdata:0x803E31F4; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata:0x803E31F8; // type:object size:0x4 scope:local align:4 data:float +@706 = .sdata:0x803E31FC; // type:object size:0x4 scope:local align:4 data:float +@707 = .sdata:0x803E3200; // type:object size:0x4 scope:local align:4 data:float +@708 = .sdata:0x803E3204; // type:object size:0x4 scope:local align:4 data:float +@709 = .sdata:0x803E3208; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata:0x803E320C; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E3210; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E3214; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata:0x803E3218; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E321C; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata:0x803E3220; // type:object size:0x4 scope:local align:4 data:float +@716 = .sdata:0x803E3224; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata:0x803E3228; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata:0x803E322C; // type:object size:0x4 scope:local align:4 data:float +@719 = .sdata:0x803E3230; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata:0x803E3234; // type:object size:0x4 scope:local align:4 data:float +@1307 = .sdata:0x803E3238; // type:object size:0x2 scope:local align:4 data:string +@1313 = .sdata:0x803E323C; // type:object size:0x2 scope:local align:4 data:string +@1318 = .sdata:0x803E3240; // type:object size:0x2 scope:local align:4 data:string +@1425 = .sdata:0x803E3244; // type:object size:0x2 scope:local align:4 data:string +@1426 = .sdata:0x803E3248; // type:object size:0x8 scope:local align:4 data:string +@1431 = .sdata:0x803E3250; // type:object size:0x2 scope:local align:4 data:string +@1436 = .sdata:0x803E3254; // type:object size:0x2 scope:local align:4 data:string +@1441 = .sdata:0x803E3258; // type:object size:0x2 scope:local align:4 data:string +@1502 = .sdata:0x803E325C; // type:object size:0x4 scope:local align:4 data:string +@1507 = .sdata:0x803E3260; // type:object size:0x5 scope:local align:4 data:string +@1516 = .sdata:0x803E3268; // type:object size:0x4 scope:local align:4 data:string +@1518 = .sdata:0x803E326C; // type:object size:0x6 scope:local align:4 data:string +@1519 = .sdata:0x803E3274; // type:object size:0x5 scope:local align:4 data:string +lightTypes = .sdata:0x803E327C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E3284; // type:object size:0x7 scope:local align:4 data:string +lightMoveNames = .sdata:0x803E328C; // type:object size:0x8 scope:local align:4 +@1619 = .sdata:0x803E3294; // type:object size:0x7 scope:local align:4 data:string +@1683 = .sdata:0x803E329C; // type:object size:0x4 scope:local align:4 data:string +@1752 = .sdata:0x803E32A0; // type:object size:0x7 scope:local align:4 data:string +@1753 = .sdata:0x803E32A8; // type:object size:0x7 scope:local align:4 data:string +@1754 = .sdata:0x803E32B0; // type:object size:0x7 scope:local align:4 data:string +@1755 = .sdata:0x803E32B8; // type:object size:0x7 scope:local align:4 data:string +@1836 = .sdata:0x803E32C0; // type:object size:0x5 scope:local align:4 data:string +@2261 = .sdata:0x803E32C8; // type:object size:0x4 scope:local align:4 data:string +@2553 = .sdata:0x803E32CC; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata:0x803E32D0; // type:object size:0x4 scope:local align:4 data:float +@2555 = .sdata:0x803E32D4; // type:object size:0x4 scope:local align:4 data:float +@2557 = .sdata:0x803E32D8; // type:object size:0x4 scope:local align:4 data:float +@2558 = .sdata:0x803E32DC; // type:object size:0x4 scope:local align:4 data:float +@2559 = .sdata:0x803E32E0; // type:object size:0x4 scope:local align:4 data:float +@2560 = .sdata:0x803E32E4; // type:object size:0x4 scope:local align:4 data:float +@2561 = .sdata:0x803E32E8; // type:object size:0x4 scope:local align:4 data:float +@2562 = .sdata:0x803E32EC; // type:object size:0x4 scope:local align:4 data:float +@2563 = .sdata:0x803E32F0; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803E32F4; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E32F8; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E32FC; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E3300; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata:0x803E3304; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata:0x803E3308; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata:0x803E330C; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803E3310; // type:object size:0x4 scope:local align:4 data:float +@2598 = .sdata:0x803E3314; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E3318; // type:object size:0x1 scope:local align:4 +@2811 = .sdata:0x803E331C; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803E3324; // type:object size:0x8 scope:local align:4 data:string +@2813 = .sdata:0x803E332C; // type:object size:0x4 scope:local align:4 data:string +@2814 = .sdata:0x803E3330; // type:object size:0x8 scope:local align:4 data:string +@2815 = .sdata:0x803E3338; // type:object size:0x6 scope:local align:4 data:string +@2817 = .sdata:0x803E3340; // type:object size:0x3 scope:local align:4 data:string +@2818 = .sdata:0x803E3344; // type:object size:0x3 scope:local align:4 data:string +@2819 = .sdata:0x803E3348; // type:object size:0x3 scope:local align:4 data:string +@2820 = .sdata:0x803E334C; // type:object size:0x3 scope:local align:4 data:string +@2821 = .sdata:0x803E3350; // type:object size:0x3 scope:local align:4 data:string +@2965 = .sdata:0x803E3354; // type:object size:0x3 scope:local align:4 data:string +@2966 = .sdata:0x803E3358; // type:object size:0x6 scope:local align:4 data:string +@2967 = .sdata:0x803E3360; // type:object size:0x5 scope:local align:4 data:string +@2968 = .sdata:0x803E3368; // type:object size:0x7 scope:local align:4 data:string +@2969 = .sdata:0x803E3370; // type:object size:0x4 scope:local align:4 data:string +@2970 = .sdata:0x803E3374; // type:object size:0x3 scope:local align:4 data:string +@2971 = .sdata:0x803E3378; // type:object size:0x8 scope:local align:4 data:string +@2973 = .sdata:0x803E3380; // type:object size:0x5 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E3388; // type:object size:0x8 scope:local align:4 +__RTTI__26Delegate1<7FogMenu,R4Menu> = .sdata:0x803E3390; // type:object size:0x8 scope:local align:4 +@2977 = .sdata:0x803E3398; // type:object size:0x8 scope:local align:4 data:string +@2979 = .sdata:0x803E33A0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E33A8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E33B0; // type:object size:0x8 scope:local align:4 +@2982 = .sdata:0x803E33B8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E33C0; // type:object size:0x8 scope:local align:4 +@2984 = .sdata:0x803E33C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Menu = .sdata:0x803E33D0; // type:object size:0x8 scope:local align:4 +__RTTI__7FogMenu = .sdata:0x803E33D8; // type:object size:0x8 scope:local align:4 +__RTTI__9LightMenu = .sdata:0x803E33E0; // type:object size:0x8 scope:local align:4 +__RTTI__10DaySetMenu = .sdata:0x803E33E8; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6DayMgr,R4Menu> = .sdata:0x803E33F0; // type:object size:0x8 scope:local align:4 +__RTTI__32Delegate1<12PositionMenu,R4Menu> = .sdata:0x803E33F8; // type:object size:0x8 scope:local align:4 +__RTTI__12PositionMenu = .sdata:0x803E3400; // type:object size:0x8 scope:local align:4 +__RTTI__30Delegate1<10ColourMenu,R4Menu> = .sdata:0x803E3408; // type:object size:0x8 scope:local align:4 +__RTTI__10ColourMenu = .sdata:0x803E3410; // type:object size:0x8 scope:local align:4 +__RTTI__28Delegate1<9LightMenu,R4Menu> = .sdata:0x803E3418; // type:object size:0x8 scope:local align:4 +@1394 = .sdata:0x803E3420; // type:object size:0x1 scope:local align:4 +@1550 = .sdata:0x803E3424; // type:object size:0x5 scope:local align:4 data:string +@1551 = .sdata:0x803E342C; // type:object size:0x3 scope:local align:4 data:string +@1552 = .sdata:0x803E3430; // type:object size:0x6 scope:local align:4 data:string +@1554 = .sdata:0x803E3438; // type:object size:0x6 scope:local align:4 data:string +@1556 = .sdata:0x803E3440; // type:object size:0x6 scope:local align:4 data:string +@1557 = .sdata:0x803E3448; // type:object size:0x7 scope:local align:4 data:string +@1558 = .sdata:0x803E3450; // type:object size:0x6 scope:local align:4 data:string +@1559 = .sdata:0x803E3458; // type:object size:0x7 scope:local align:4 data:string +@1560 = .sdata:0x803E3460; // type:object size:0x4 scope:local align:4 data:string +@1561 = .sdata:0x803E3464; // type:object size:0x6 scope:local align:4 data:string +@1562 = .sdata:0x803E346C; // type:object size:0x8 scope:local align:4 data:string +@1563 = .sdata:0x803E3474; // type:object size:0x5 scope:local align:4 data:string +@1564 = .sdata:0x803E347C; // type:object size:0x5 scope:local align:4 data:string +@1909 = .sdata:0x803E3484; // type:object size:0x4 scope:local align:4 +@1910 = .sdata:0x803E3488; // type:object size:0x4 scope:local align:4 +@1911 = .sdata:0x803E348C; // type:object size:0x4 scope:local align:4 +@1927 = .sdata:0x803E3490; // type:object size:0x4 scope:local align:4 +@1928 = .sdata:0x803E3494; // type:object size:0x4 scope:local align:4 +@1929 = .sdata:0x803E3498; // type:object size:0x4 scope:local align:4 +@1931 = .sdata:0x803E349C; // type:object size:0x4 scope:local align:4 +@1932 = .sdata:0x803E34A0; // type:object size:0x4 scope:local align:4 +@1933 = .sdata:0x803E34A4; // type:object size:0x4 scope:local align:4 +@1964 = .sdata:0x803E34A8; // type:object size:0x4 scope:local align:4 +@1965 = .sdata:0x803E34AC; // type:object size:0x4 scope:local align:4 +@1966 = .sdata:0x803E34B0; // type:object size:0x4 scope:local align:4 +@1967 = .sdata:0x803E34B4; // type:object size:0x4 scope:local align:4 +@1968 = .sdata:0x803E34B8; // type:object size:0x4 scope:local align:4 +@1969 = .sdata:0x803E34BC; // type:object size:0x4 scope:local align:4 +@1970 = .sdata:0x803E34C0; // type:object size:0x4 scope:local align:4 +@1971 = .sdata:0x803E34C4; // type:object size:0x4 scope:local align:4 +@1972 = .sdata:0x803E34C8; // type:object size:0x4 scope:local align:4 +@1973 = .sdata:0x803E34CC; // type:object size:0x4 scope:local align:4 +@1974 = .sdata:0x803E34D0; // type:object size:0x4 scope:local align:4 +@1975 = .sdata:0x803E34D4; // type:object size:0x4 scope:local align:4 +@1976 = .sdata:0x803E34D8; // type:object size:0x4 scope:local align:4 +@1977 = .sdata:0x803E34DC; // type:object size:0x4 scope:local align:4 +@1978 = .sdata:0x803E34E0; // type:object size:0x4 scope:local align:4 +@1979 = .sdata:0x803E34E4; // type:object size:0x4 scope:local align:4 +@1980 = .sdata:0x803E34E8; // type:object size:0x4 scope:local align:4 +@1981 = .sdata:0x803E34EC; // type:object size:0x4 scope:local align:4 +@1987 = .sdata:0x803E34F0; // type:object size:0x4 scope:local align:4 +@1988 = .sdata:0x803E34F4; // type:object size:0x4 scope:local align:4 +@1989 = .sdata:0x803E34F8; // type:object size:0x4 scope:local align:4 +@2001 = .sdata:0x803E34FC; // type:object size:0x4 scope:local align:4 +@2002 = .sdata:0x803E3500; // type:object size:0x4 scope:local align:4 +@2003 = .sdata:0x803E3504; // type:object size:0x4 scope:local align:4 +@2004 = .sdata:0x803E3508; // type:object size:0x4 scope:local align:4 +@2005 = .sdata:0x803E350C; // type:object size:0x4 scope:local align:4 +@2006 = .sdata:0x803E3510; // type:object size:0x4 scope:local align:4 +@2007 = .sdata:0x803E3514; // type:object size:0x4 scope:local align:4 +@2008 = .sdata:0x803E3518; // type:object size:0x4 scope:local align:4 +@2009 = .sdata:0x803E351C; // type:object size:0x4 scope:local align:4 +@2010 = .sdata:0x803E3520; // type:object size:0x4 scope:local align:4 +@2011 = .sdata:0x803E3524; // type:object size:0x4 scope:local align:4 +@2012 = .sdata:0x803E3528; // type:object size:0x4 scope:local align:4 +@2191 = .sdata:0x803E352C; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E3530; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E3534; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E3538; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E353C; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E3540; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E3544; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E3548; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata:0x803E354C; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E3550; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E3554; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E3558; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E355C; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E3560; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E3564; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata:0x803E3568; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E356C; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E3570; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E3574; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E3578; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E357C; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E3580; // type:object size:0x4 scope:local align:4 data:float +@2262 = .sdata:0x803E3584; // type:object size:0x4 scope:local align:4 data:float +@2263 = .sdata:0x803E3588; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata:0x803E358C; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata:0x803E3590; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata:0x803E3594; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata:0x803E3598; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E359C; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E35A0; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata:0x803E35A4; // type:object size:0x4 scope:local align:4 data:float +@2287 = .sdata:0x803E35A8; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803E35AC; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata:0x803E35B0; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata:0x803E35B4; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E35B8; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata:0x803E35BC; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803E35C0; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata:0x803E35C4; // type:object size:0x4 scope:local align:4 data:float +@2295 = .sdata:0x803E35C8; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata:0x803E35CC; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata:0x803E35D0; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata:0x803E35D4; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata:0x803E35D8; // type:object size:0x4 scope:local align:4 data:float +@2300 = .sdata:0x803E35DC; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E35E0; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata:0x803E35E4; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata:0x803E35E8; // type:object size:0x4 scope:local align:4 data:float +@2313 = .sdata:0x803E35EC; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E35F0; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803E35F4; // type:object size:0x4 scope:local align:4 data:float +@2318 = .sdata:0x803E35F8; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E35FC; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E3600; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E3604; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E3608; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E360C; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E3610; // type:object size:0x4 scope:local align:4 data:float +@2325 = .sdata:0x803E3614; // type:object size:0x4 scope:local align:4 data:float +@2326 = .sdata:0x803E3618; // type:object size:0x4 scope:local align:4 data:float +@2327 = .sdata:0x803E361C; // type:object size:0x4 scope:local align:4 data:float +@2328 = .sdata:0x803E3620; // type:object size:0x4 scope:local align:4 data:float +@2329 = .sdata:0x803E3624; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata:0x803E3628; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata:0x803E362C; // type:object size:0x4 scope:local align:4 data:float +@2332 = .sdata:0x803E3630; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata:0x803E3634; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata:0x803E3638; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata:0x803E363C; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata:0x803E3640; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata:0x803E3644; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata:0x803E3648; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata:0x803E364C; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803E3650; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803E3654; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803E3658; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E365C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E3660; // type:object size:0x4 scope:local align:4 data:float +@2347 = .sdata:0x803E3664; // type:object size:0x4 scope:local align:4 data:float +@2348 = .sdata:0x803E3668; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803E366C; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata:0x803E3670; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata:0x803E3674; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata:0x803E3678; // type:object size:0x4 scope:local align:4 data:float +@2533 = .sdata:0x803E367C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3684; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E368C; // type:object size:0x8 scope:local align:4 +__RTTI__13ActorInstance = .sdata:0x803E3694; // type:object size:0x8 scope:local align:4 +__RTTI__8SceneCut = .sdata:0x803E369C; // type:object size:0x8 scope:local align:4 +__RTTI__15CineShapeObject = .sdata:0x803E36A4; // type:object size:0x8 scope:local align:4 +__RTTI__9SceneData = .sdata:0x803E36AC; // type:object size:0x8 scope:local align:4 +@582 = .sdata:0x803E36B8; // type:object size:0x4 scope:local align:4 data:float +@583 = .sdata:0x803E36BC; // type:object size:0x4 scope:local align:4 data:float +@584 = .sdata:0x803E36C0; // type:object size:0x4 scope:local align:4 data:float +@585 = .sdata:0x803E36C4; // type:object size:0x4 scope:local align:4 data:float +@586 = .sdata:0x803E36C8; // type:object size:0x4 scope:local align:4 data:float +@587 = .sdata:0x803E36CC; // type:object size:0x4 scope:local align:4 data:float +@588 = .sdata:0x803E36D0; // type:object size:0x4 scope:local align:4 data:float +@589 = .sdata:0x803E36D4; // type:object size:0x4 scope:local align:4 data:float +@590 = .sdata:0x803E36D8; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803E36DC; // type:object size:0x7 scope:local align:4 data:string +@815 = .sdata:0x803E36E4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E36EC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E36F4; // type:object size:0x8 scope:local align:4 +@818 = .sdata:0x803E36FC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3704; // type:object size:0x8 scope:local align:4 +__RTTI__9LightPool = .sdata:0x803E370C; // type:object size:0x8 scope:local align:4 +icon_pals = .sdata:0x803E3718; // type:object size:0x4 scope:local align:4 data:4byte +@1208 = .sdata:0x803E371C; // type:object size:0x7 scope:local align:4 data:string +@1209 = .sdata:0x803E3724; // type:object size:0x8 scope:local align:4 data:string +@1501 = .sdata:0x803E372C; // type:object size:0x1 scope:local align:4 +@1700 = .sdata:0x803E3730; // type:object size:0x3 scope:local align:4 data:string +@2023 = .sdata:0x803E3734; // type:object size:0x7 scope:local align:4 data:string +@2258 = .sdata:0x803E373C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3744; // type:object size:0x8 scope:local align:4 +@2263 = .sdata:0x803E374C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E3754; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E375C; // type:object size:0x8 scope:local align:4 +@1476 = .sdata:0x803E3768; // type:object size:0x1 scope:local align:4 +@1584 = .sdata:0x803E376C; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E3770; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E3774; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E3778; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E377C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E3780; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803E3784; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E378C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3794; // type:object size:0x8 scope:local align:4 +__RTTI__9MovieInfo = .sdata:0x803E379C; // type:object size:0x8 scope:local align:4 +@858 = .sdata:0x803E37A8; // type:object size:0x7 scope:local align:4 data:string +@869 = .sdata:0x803E37B0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E37B8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E37C0; // type:object size:0x8 scope:local align:4 +@874 = .sdata:0x803E37C8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E37D0; // type:object size:0x8 scope:local align:4 +__RTTI__21MovSampleSetupSection = .sdata:0x803E37D8; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E37E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803E37E8; // type:object size:0x8 scope:local align:4 +__RTTI__16MovSampleSection = .sdata:0x803E37F0; // type:object size:0x8 scope:local align:4 +@1243 = .sdata:0x803E37F8; // type:object size:0x4 scope:local align:4 data:float +@1244 = .sdata:0x803E37FC; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E3800; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata:0x803E3804; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata:0x803E3808; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata:0x803E380C; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E3810; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E3814; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q215AttentionCamera5Fader = .sdata:0x803E3818; // type:object size:0x8 scope:local align:4 +__RTTI__10ClothFader = .sdata:0x803E3820; // type:object size:0x8 scope:local align:4 +__RTTI__11SimpleFader = .sdata:0x803E3828; // type:object size:0x8 scope:local align:4 +__RTTI__12DefaultFader = .sdata:0x803E3830; // type:object size:0x8 scope:local align:4 +@652 = .sdata:0x803E3838; // type:object size:0x6 scope:local align:4 data:string +@653 = .sdata:0x803E3840; // type:object size:0x6 scope:local align:4 data:string +@685 = .sdata:0x803E3848; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata:0x803E384C; // type:object size:0x4 scope:local align:4 data:float +@687 = .sdata:0x803E3850; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata:0x803E3854; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E385C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3864; // type:object size:0x8 scope:local align:4 +__RTTI__Q29RadarInfo9PartsInfo = .sdata:0x803E386C; // type:object size:0x8 scope:local align:4 +@1763 = .sdata:0x803E3878; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E387C; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E3880; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E3884; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata:0x803E3888; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata:0x803E388C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E3890; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlute = .sdata:0x803E3898; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractPress = .sdata:0x803E38A0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractKill = .sdata:0x803E38A8; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractSwallow = .sdata:0x803E38B0; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractAttack = .sdata:0x803E38B8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractSlimeAttack = .sdata:0x803E38C0; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractFlick = .sdata:0x803E38C8; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWind = .sdata:0x803E38D0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractFire = .sdata:0x803E38D8; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractBubble = .sdata:0x803E38E0; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractSpore = .sdata:0x803E38E8; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeHappa = .sdata:0x803E38F0; // type:object size:0x8 scope:local align:4 +__RTTI__19InteractChangeColor = .sdata:0x803E38F8; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractThrowAway = .sdata:0x803E3900; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBury = .sdata:0x803E3908; // type:object size:0x8 scope:local align:4 +@641 = .sdata:0x803E3910; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata:0x803E3914; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata:0x803E3918; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata:0x803E391C; // type:object size:0x4 scope:local align:4 data:float +@646 = .sdata:0x803E3920; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E3924; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractRelease = .sdata:0x803E392C; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractGrab = .sdata:0x803E3934; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E3940; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractWarn = .sdata:0x803E3948; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractTalk = .sdata:0x803E3950; // type:object size:0x8 scope:local align:4 +@1372 = .sdata:0x803E3958; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E395C; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803E3960; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803E3964; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E3968; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractPullout = .sdata:0x803E3970; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E3978; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIEvent = .sdata:0x803E3980; // type:object size:0x8 scope:local align:4 +__RTTI__12SAIUserEvent = .sdata:0x803E3988; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIGroundEvent = .sdata:0x803E3990; // type:object size:0x8 scope:local align:4 +__RTTI__15SAICollideEvent = .sdata:0x803E3998; // type:object size:0x8 scope:local align:4 +__RTTI__14SAIBounceEvent = .sdata:0x803E39A0; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionLoopEndEvent = .sdata:0x803E39A8; // type:object size:0x8 scope:local align:4 +__RTTI__23SAIMotionLoopStartEvent = .sdata:0x803E39B0; // type:object size:0x8 scope:local align:4 +__RTTI__21SAIMotionAction0Event = .sdata:0x803E39B8; // type:object size:0x8 scope:local align:4 +__RTTI__18SAIMotionDoneEvent = .sdata:0x803E39C0; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E39C8; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata:0x803E39CC; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata:0x803E39D0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata:0x803E39D4; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata:0x803E39D8; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata:0x803E39DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__22Receiver<10AICreature> = .sdata:0x803E39E0; // type:object size:0x8 scope:local align:4 +__RTTI__20AState<10AICreature> = .sdata:0x803E39E8; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIState = .sdata:0x803E39F0; // type:object size:0x8 scope:local align:4 +@1155 = .sdata:0x803E39F8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3A00; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3A08; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E3A10; // type:object size:0x8 scope:local align:4 +__RTTI__8SAIArrow = .sdata:0x803E3A18; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E3A20; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E3A28; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E3A30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E3A38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E3A40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E3A48; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E3A50; // type:object size:0x8 scope:local align:4 +@1174 = .sdata:0x803E3A58; // type:object size:0x7 scope:local align:4 data:string +@1082 = .sdata:0x803E3A60; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E3A64; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata:0x803E3A68; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata:0x803E3A6C; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E3A70; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E3A74; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E3A78; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E3A7C; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E3A80; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803E3A84; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E3A88; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E3A8C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E3A90; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata:0x803E3A94; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803E3A98; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E3A9C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E3AA0; // type:object size:0x4 scope:local align:4 data:float +@1603 = .sdata:0x803E3AA4; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E3AA8; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E3AAC; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E3AB0; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E3AB4; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E3AB8; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata:0x803E3ABC; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E3AC0; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata:0x803E3AC4; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata:0x803E3AC8; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E3ACC; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata:0x803E3AD0; // type:object size:0x4 scope:local align:4 data:float +@1702 = .sdata:0x803E3AD4; // type:object size:0x4 scope:local align:4 data:float +@1704 = .sdata:0x803E3AD8; // type:object size:0x4 scope:local align:4 data:float +@1705 = .sdata:0x803E3ADC; // type:object size:0x4 scope:local align:4 data:float +@1706 = .sdata:0x803E3AE0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12FormArranger = .sdata:0x803E3AE4; // type:object size:0x8 scope:local align:4 +__RTTI__12WingArranger = .sdata:0x803E3AEC; // type:object size:0x8 scope:local align:4 +__RTTI__12LineArranger = .sdata:0x803E3AF4; // type:object size:0x8 scope:local align:4 +__RTTI__15PyramidArranger = .sdata:0x803E3AFC; // type:object size:0x8 scope:local align:4 +__RTTI__14CircleArranger = .sdata:0x803E3B04; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E3B0C; // type:object size:0x8 scope:local align:4 +__RTTI__12FormationMgr = .sdata:0x803E3B14; // type:object size:0x8 scope:local align:4 +totalUfoParts__11PlayerState = .sdata:0x803E3B20; // type:object size:0x4 scope:global align:4 data:4byte +@2093 = .sdata:0x803E3B24; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata:0x803E3B28; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata:0x803E3B2C; // type:object size:0x4 scope:local align:4 data:float +@2556 = .sdata:0x803E3B30; // type:object size:0x6 scope:local align:4 data:string +@2557 = .sdata:0x803E3B38; // type:object size:0x7 scope:local align:4 data:string +@2558 = .sdata:0x803E3B40; // type:object size:0x6 scope:local align:4 data:string +@2559 = .sdata:0x803E3B48; // type:object size:0x7 scope:local align:4 data:string +@2560 = .sdata:0x803E3B50; // type:object size:0x8 scope:local align:4 data:string +@2561 = .sdata:0x803E3B58; // type:object size:0x2 scope:local align:4 data:string +@2563 = .sdata:0x803E3B5C; // type:object size:0x4 scope:local align:4 data:float +@2564 = .sdata:0x803E3B60; // type:object size:0x4 scope:local align:4 data:float +@2565 = .sdata:0x803E3B64; // type:object size:0x4 scope:local align:4 data:float +@2569 = .sdata:0x803E3B68; // type:object size:0x4 scope:local align:4 data:float +@2570 = .sdata:0x803E3B6C; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata:0x803E3B70; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata:0x803E3B74; // type:object size:0x4 scope:local align:4 data:float +@2573 = .sdata:0x803E3B78; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata:0x803E3B7C; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata:0x803E3B80; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata:0x803E3B84; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata:0x803E3B88; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata:0x803E3B8C; // type:object size:0x4 scope:local align:4 data:float +@2579 = .sdata:0x803E3B90; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata:0x803E3B94; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E3B98; // type:object size:0x8 scope:local align:4 +__RTTI__Q211PlayerState8UfoParts = .sdata:0x803E3BA0; // type:object size:0x8 scope:local align:4 +@1102 = .sdata:0x803E3BA8; // type:object size:0x7 scope:local align:4 data:string +@1103 = .sdata:0x803E3BB0; // type:object size:0x7 scope:local align:4 data:string +@1143 = .sdata:0x803E3BB8; // type:object size:0x4 scope:local align:4 data:string +@1145 = .sdata:0x803E3BBC; // type:object size:0x4 scope:local align:4 data:string +@1147 = .sdata:0x803E3BC0; // type:object size:0x4 scope:local align:4 data:string +@1149 = .sdata:0x803E3BC4; // type:object size:0x4 scope:local align:4 data:string +@1151 = .sdata:0x803E3BC8; // type:object size:0x4 scope:local align:4 data:string +@1246 = .sdata:0x803E3BCC; // type:object size:0x8 scope:local align:4 data:string +@1309 = .sdata:0x803E3BD4; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E3BD8; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata:0x803E3BDC; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata:0x803E3BE0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__8BaseParm = .sdata:0x803E3BE4; // type:object size:0x8 scope:local align:4 +@1360 = .sdata:0x803E3BEC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3BF4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3BFC; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803E3C04; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3C0C; // type:object size:0x8 scope:local align:4 +__RTTI__9DemoParms = .sdata:0x803E3C14; // type:object size:0x8 scope:local align:4 +@1085 = .sdata:0x803E3C20; // type:object size:0x4 scope:local align:4 data:string +@1086 = .sdata:0x803E3C24; // type:object size:0x3 scope:local align:4 data:string +@1087 = .sdata:0x803E3C28; // type:object size:0x5 scope:local align:4 data:string +@624 = .sdata:0x803E3C30; // type:object size:0x7 scope:local align:4 data:string +@625 = .sdata:0x803E3C38; // type:object size:0x4 scope:local align:4 data:4byte +@627 = .sdata:0x803E3C3C; // type:object size:0x4 scope:local align:4 data:4byte +@628 = .sdata:0x803E3C40; // type:object size:0x4 scope:local align:4 data:4byte +@629 = .sdata:0x803E3C44; // type:object size:0x4 scope:local align:4 data:4byte +@630 = .sdata:0x803E3C48; // type:object size:0x4 scope:local align:4 data:4byte +@631 = .sdata:0x803E3C4C; // type:object size:0x4 scope:local align:4 data:4byte +@632 = .sdata:0x803E3C50; // type:object size:0x4 scope:local align:4 data:4byte +@633 = .sdata:0x803E3C54; // type:object size:0x4 scope:local align:4 data:4byte +@634 = .sdata:0x803E3C58; // type:object size:0x4 scope:local align:4 data:4byte +@635 = .sdata:0x803E3C5C; // type:object size:0x4 scope:local align:4 data:4byte +@636 = .sdata:0x803E3C60; // type:object size:0x4 scope:local align:4 data:4byte +@637 = .sdata:0x803E3C64; // type:object size:0x4 scope:local align:4 data:4byte +@639 = .sdata:0x803E3C68; // type:object size:0x4 scope:local align:4 data:4byte +@640 = .sdata:0x803E3C6C; // type:object size:0x4 scope:local align:4 data:4byte +@641 = .sdata:0x803E3C70; // type:object size:0x4 scope:local align:4 data:4byte +@642 = .sdata:0x803E3C74; // type:object size:0x4 scope:local align:4 data:4byte +@643 = .sdata:0x803E3C78; // type:object size:0x4 scope:local align:4 data:4byte +@644 = .sdata:0x803E3C7C; // type:object size:0x4 scope:local align:4 data:4byte +@646 = .sdata:0x803E3C80; // type:object size:0x4 scope:local align:4 data:4byte +@648 = .sdata:0x803E3C84; // type:object size:0x4 scope:local align:4 data:4byte +@649 = .sdata:0x803E3C88; // type:object size:0x4 scope:local align:4 data:4byte +@650 = .sdata:0x803E3C8C; // type:object size:0x4 scope:local align:4 data:4byte +@651 = .sdata:0x803E3C90; // type:object size:0x4 scope:local align:4 data:4byte +@652 = .sdata:0x803E3C94; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E3C9C; // type:object size:0x8 scope:local align:4 +@662 = .sdata:0x803E3CA4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3CAC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3CB4; // type:object size:0x8 scope:local align:4 +@665 = .sdata:0x803E3CBC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3CC4; // type:object size:0x8 scope:local align:4 +__RTTI__10AIConstant = .sdata:0x803E3CCC; // type:object size:0x8 scope:local align:4 +@390 = .sdata:0x803E3CD8; // type:object size:0x8 scope:local align:4 data:string +kontMode__3KIO = .sdata:0x803E3CE0; // type:object size:0x4 scope:global align:4 data:4byte +@441 = .sdata:0x803E3CE8; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E3CF0; // type:object size:0x5 scope:local align:4 +@444 = .sdata:0x803E3CF8; // type:object size:0x5 scope:local align:4 +@446 = .sdata:0x803E3D00; // type:object size:0x5 scope:local align:4 +@448 = .sdata:0x803E3D08; // type:object size:0x7 scope:local align:4 data:string +@449 = .sdata:0x803E3D10; // type:object size:0x8 scope:local align:4 data:string +@459 = .sdata:0x803E3D18; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3D20; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3D28; // type:object size:0x8 scope:local align:4 +@462 = .sdata:0x803E3D30; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3D38; // type:object size:0x8 scope:local align:4 +__RTTI__Q29KeyConfig3Key = .sdata:0x803E3D40; // type:object size:0x8 scope:local align:4 +__RTTI__9KeyConfig = .sdata:0x803E3D48; // type:object size:0x8 scope:local align:4 +useLOD__6AIPerf = .sdata:0x803E3D50; // type:object size:0x1 scope:global align:1 data:byte +showColls__6AIPerf = .sdata:0x803E3D51; // type:object size:0x1 scope:global align:1 data:byte +useCollSort__6AIPerf = .sdata:0x803E3D52; // type:object size:0x1 scope:global align:1 data:byte +bridgeFast__6AIPerf = .sdata:0x803E3D53; // type:object size:0x1 scope:global align:1 data:byte +useASync__6AIPerf = .sdata:0x803E3D54; // type:object size:0x1 scope:global align:1 data:byte +useGrid__6AIPerf = .sdata:0x803E3D58; // type:object size:0x4 scope:global align:4 data:4byte +gridShift__6AIPerf = .sdata:0x803E3D5C; // type:object size:0x4 scope:global align:4 data:4byte +aiGrid__6AIPerf = .sdata:0x803E3D60; // type:object size:0x1 scope:global align:1 data:byte +insQuick__6AIPerf = .sdata:0x803E3D61; // type:object size:0x1 scope:global align:1 data:byte +iteratorCull__6AIPerf = .sdata:0x803E3D62; // type:object size:0x1 scope:global align:1 data:byte +pikiMabiki__6AIPerf = .sdata:0x803E3D63; // type:object size:0x1 scope:global align:1 data:byte +optLevel__6AIPerf = .sdata:0x803E3D64; // type:object size:0x4 scope:global align:4 data:4byte +@1584 = .sdata:0x803E3D68; // type:object size:0x5 scope:local align:4 data:string +@1585 = .sdata:0x803E3D70; // type:object size:0x8 scope:local align:4 data:string +@1586 = .sdata:0x803E3D78; // type:object size:0x5 scope:local align:4 data:string +@1799 = .sdata:0x803E3D80; // type:object size:0x3 scope:local align:4 data:string +__RTTI__18IDelegate1 = .sdata:0x803E3D84; // type:object size:0x8 scope:local align:4 +__RTTI__25Delegate1<6AIPerf,R4Menu> = .sdata:0x803E3D8C; // type:object size:0x8 scope:local align:4 +@774 = .sdata:0x803E3D98; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata:0x803E3D9C; // type:object size:0x4 scope:local align:4 data:4byte +@776 = .sdata:0x803E3DA0; // type:object size:0x4 scope:local align:4 data:4byte +@777 = .sdata:0x803E3DA4; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__10Parameters = .sdata:0x803E3DA8; // type:object size:0x8 scope:local align:4 +@824 = .sdata:0x803E3DB0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E3DB8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E3DC0; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectDebug = .sdata:0x803E3DC8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E3DD0; // type:object size:0x8 scope:local align:4 +@405 = .sdata:0x803E3DD8; // type:object size:0x8 scope:local align:4 data:string +@549 = .sdata:0x803E3DE0; // type:object size:0x8 scope:local align:4 data:string +@551 = .sdata:0x803E3DE8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3DF0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3DF8; // type:object size:0x8 scope:local align:4 +__RTTI__11MemInfoNode = .sdata:0x803E3E00; // type:object size:0x8 scope:local align:4 +__RTTI__7MemInfo = .sdata:0x803E3E08; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803E3E10; // type:object size:0x5 scope:local align:4 data:string +@1677 = .sdata:0x803E3E18; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata:0x803E3E1C; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata:0x803E3E20; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E3E24; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E3E28; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E3E2C; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata:0x803E3E30; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E3E34; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803E3E38; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803E3E3C; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E3E40; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E3E44; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E3E48; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803E3E4C; // type:object size:0x4 scope:local align:4 data:float +@1895 = .sdata:0x803E3E50; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E3E54; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E3E58; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803E3E5C; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata:0x803E3E60; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata:0x803E3E64; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata:0x803E3E68; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata:0x803E3E6C; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata:0x803E3E70; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata:0x803E3E74; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata:0x803E3E78; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E3E7C; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata:0x803E3E80; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata:0x803E3E84; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803E3E88; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata:0x803E3E8C; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata:0x803E3E90; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata:0x803E3E94; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata:0x803E3E98; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata:0x803E3E9C; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E3EA0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E3EA4; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E3EA8; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E3EAC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata:0x803E3EB0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata:0x803E3EB4; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E3EB8; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata:0x803E3EBC; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata:0x803E3EC0; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803E3EC4; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803E3EC8; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata:0x803E3ECC; // type:object size:0x4 scope:local align:4 data:float +@2597 = .sdata:0x803E3ED0; // type:object size:0x4 scope:local align:4 data:float +@2911 = .sdata:0x803E3ED4; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata:0x803E3ED8; // type:object size:0x4 scope:local align:4 data:float +@2913 = .sdata:0x803E3EDC; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E3EE0; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E3EE4; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E3EE8; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E3EEC; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata:0x803E3EF0; // type:object size:0x4 scope:local align:4 data:float +@3186 = .sdata:0x803E3EF4; // type:object size:0x4 scope:local align:4 data:float +@3187 = .sdata:0x803E3EF8; // type:object size:0x4 scope:local align:4 data:float +@3188 = .sdata:0x803E3EFC; // type:object size:0x4 scope:local align:4 data:float +@3189 = .sdata:0x803E3F00; // type:object size:0x4 scope:local align:4 data:float +@3190 = .sdata:0x803E3F04; // type:object size:0x4 scope:local align:4 data:float +@3191 = .sdata:0x803E3F08; // type:object size:0x4 scope:local align:4 data:float +@3192 = .sdata:0x803E3F0C; // type:object size:0x4 scope:local align:4 data:float +@3194 = .sdata:0x803E3F10; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata:0x803E3F14; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata:0x803E3F18; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata:0x803E3F1C; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata:0x803E3F20; // type:object size:0x4 scope:local align:4 data:float +@3203 = .sdata:0x803E3F24; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata:0x803E3F28; // type:object size:0x4 scope:local align:4 data:float +@3205 = .sdata:0x803E3F2C; // type:object size:0x4 scope:local align:4 data:float +@3206 = .sdata:0x803E3F30; // type:object size:0x4 scope:local align:4 data:float +@3207 = .sdata:0x803E3F34; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata:0x803E3F38; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata:0x803E3F3C; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata:0x803E3F40; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata:0x803E3F44; // type:object size:0x4 scope:local align:4 data:float +@3212 = .sdata:0x803E3F48; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata:0x803E3F4C; // type:object size:0x4 scope:local align:4 data:float +@3214 = .sdata:0x803E3F50; // type:object size:0x4 scope:local align:4 data:float +@3215 = .sdata:0x803E3F54; // type:object size:0x4 scope:local align:4 data:float +@3217 = .sdata:0x803E3F58; // type:object size:0x4 scope:local align:4 data:float +@3218 = .sdata:0x803E3F5C; // type:object size:0x4 scope:local align:4 data:float +@3219 = .sdata:0x803E3F60; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata:0x803E3F64; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata:0x803E3F68; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata:0x803E3F6C; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata:0x803E3F70; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata:0x803E3F74; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E3F78; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E3F80; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E3F88; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E3F90; // type:object size:0x8 scope:local align:4 +@1395 = .sdata:0x803E3F98; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E3F9C; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata:0x803E3FA0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E3FA8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E3FB0; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E3FB8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E3FC0; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E3FC8; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E3FD0; // type:object size:0x8 scope:local align:4 +__RTTI__16CreatureCollPart = .sdata:0x803E3FD8; // type:object size:0x8 scope:local align:4 +@233 = .sdata:0x803E3FE0; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata:0x803E3FE4; // type:object size:0x4 scope:local align:4 data:float +@235 = .sdata:0x803E3FE8; // type:object size:0x4 scope:local align:4 data:float +@236 = .sdata:0x803E3FEC; // type:object size:0x4 scope:local align:4 data:float +@237 = .sdata:0x803E3FF0; // type:object size:0x4 scope:local align:4 data:float +@238 = .sdata:0x803E3FF4; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata:0x803E3FF8; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata:0x803E3FFC; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803E4000; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata:0x803E4004; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata:0x803E4008; // type:object size:0x4 scope:local align:4 data:float +@1479 = .sdata:0x803E400C; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E4010; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803E4014; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803E4018; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803E401C; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803E4020; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803E4024; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803E4028; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803E402C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803E4030; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata:0x803E4034; // type:object size:0x7 scope:local align:4 data:string +@1783 = .sdata:0x803E403C; // type:object size:0x5 scope:local align:4 data:string +@1784 = .sdata:0x803E4044; // type:object size:0x4 scope:local align:4 data:string +@1907 = .sdata:0x803E4048; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata:0x803E404C; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E4050; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E4054; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata:0x803E4058; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata:0x803E405C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E4060; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E4064; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E4068; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E406C; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E4070; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata:0x803E4074; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E4078; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803E407C; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata:0x803E4080; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata:0x803E4084; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata:0x803E4088; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata:0x803E408C; // type:object size:0x4 scope:local align:4 data:float +@2168 = .sdata:0x803E4090; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata:0x803E4094; // type:object size:0x4 scope:local align:4 data:float +@2293 = .sdata:0x803E4098; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Traversable = .sdata:0x803E409C; // type:object size:0x8 scope:local align:4 +__RTTI__8Stickers = .sdata:0x803E40A4; // type:object size:0x8 scope:local align:4 +@950 = .sdata:0x803E40B0; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E40B4; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E40B8; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E40BC; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E40C0; // type:object size:0x4 scope:local align:4 data:float +@955 = .sdata:0x803E40C4; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E40C8; // type:object size:0x4 scope:local align:4 data:float +@991 = .sdata:0x803E40CC; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E40D0; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E40D4; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E40D8; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E40DC; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata:0x803E40E0; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E40E4; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E40E8; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata:0x803E40EC; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E40F0; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E40F4; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E40F8; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata:0x803E40FC; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E4100; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E4104; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E410C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4114; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E411C; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E4124; // type:object size:0x8 scope:local align:4 +__RTTI__11PelCreature = .sdata:0x803E412C; // type:object size:0x8 scope:local align:4 +@875 = .sdata:0x803E4138; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E413C; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E4140; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E4144; // type:object size:0x4 scope:local align:4 data:string +@964 = .sdata:0x803E4148; // type:object size:0x4 scope:local align:4 data:string +@965 = .sdata:0x803E414C; // type:object size:0x4 scope:local align:4 data:string +@967 = .sdata:0x803E4150; // type:object size:0x4 scope:local align:4 data:string +@969 = .sdata:0x803E4154; // type:object size:0x4 scope:local align:4 data:string +@979 = .sdata:0x803E4158; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E415C; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata:0x803E4160; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata:0x803E4164; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata:0x803E4168; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata:0x803E416C; // type:object size:0x4 scope:local align:4 data:float +@985 = .sdata:0x803E4170; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E4174; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata:0x803E4178; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata:0x803E417C; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata:0x803E4180; // type:object size:0x4 scope:local align:4 data:float +@990 = .sdata:0x803E4184; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata:0x803E4188; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata:0x803E418C; // type:object size:0x4 scope:local align:4 data:float +@1044 = .sdata:0x803E4190; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata:0x803E4194; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803E4198; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803E419C; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803E41A0; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata:0x803E41A4; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E41A8; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E41AC; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata:0x803E41B0; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata:0x803E41B4; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E41B8; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata:0x803E41BC; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata:0x803E41C0; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E41C4; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata:0x803E41C8; // type:object size:0x4 scope:local align:4 data:float +@1131 = .sdata:0x803E41CC; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata:0x803E41D0; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E41D4; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata:0x803E41D8; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata:0x803E41DC; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E41E0; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E41E4; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata:0x803E41E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E41EC; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E41F4; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E41FC; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E4204; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E420C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4214; // type:object size:0x8 scope:local align:4 +@1963 = .sdata:0x803E421C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4224; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E422C; // type:object size:0x8 scope:local align:4 +__RTTI__11DynParticle = .sdata:0x803E4234; // type:object size:0x8 scope:local align:4 +@422 = .sdata:0x803E4240; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4248; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4250; // type:object size:0x8 scope:local align:4 +__RTTI__13EventListener = .sdata:0x803E4258; // type:object size:0x8 scope:local align:4 +aiGridShift__8FastGrid = .sdata:0x803E4260; // type:object size:0x2 scope:global align:2 data:2byte +@1066 = .sdata:0x803E4264; // type:object size:0x7 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E4270; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4278; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4280; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E4288; // type:object size:0x8 scope:local align:4 +@388 = .sdata:0x803E4290; // type:object size:0x5 scope:local align:4 data:string +@389 = .sdata:0x803E4298; // type:object size:0x5 scope:local align:4 data:string +@390 = .sdata:0x803E42A0; // type:object size:0x5 scope:local align:4 data:string +@391 = .sdata:0x803E42A8; // type:object size:0x6 scope:local align:4 data:string +@392 = .sdata:0x803E42B0; // type:object size:0x5 scope:local align:4 data:string +@393 = .sdata:0x803E42B8; // type:object size:0x4 scope:local align:4 data:string +@394 = .sdata:0x803E42BC; // type:object size:0x5 scope:local align:4 data:string +@395 = .sdata:0x803E42C4; // type:object size:0x5 scope:local align:4 data:string +@397 = .sdata:0x803E42CC; // type:object size:0x5 scope:local align:4 data:string +@398 = .sdata:0x803E42D4; // type:object size:0x6 scope:local align:4 data:string +@399 = .sdata:0x803E42DC; // type:object size:0x6 scope:local align:4 data:string +@400 = .sdata:0x803E42E4; // type:object size:0x6 scope:local align:4 data:string +@401 = .sdata:0x803E42EC; // type:object size:0x5 scope:local align:4 data:string +@404 = .sdata:0x803E42F4; // type:object size:0x5 scope:local align:4 data:string +@406 = .sdata:0x803E42FC; // type:object size:0x5 scope:local align:4 data:string +@407 = .sdata:0x803E4304; // type:object size:0x8 scope:local align:4 data:string +@408 = .sdata:0x803E430C; // type:object size:0x5 scope:local align:4 data:string +@409 = .sdata:0x803E4314; // type:object size:0x4 scope:local align:4 data:string +@415 = .sdata:0x803E4318; // type:object size:0x7 scope:local align:4 data:string +@419 = .sdata:0x803E4320; // type:object size:0x5 scope:local align:4 data:string +@420 = .sdata:0x803E4328; // type:object size:0x4 scope:local align:4 data:string +@421 = .sdata:0x803E432C; // type:object size:0x6 scope:local align:4 data:string +@422 = .sdata:0x803E4334; // type:object size:0x7 scope:local align:4 data:string +@423 = .sdata:0x803E433C; // type:object size:0x8 scope:local align:4 data:string +@425 = .sdata:0x803E4344; // type:object size:0x5 scope:local align:4 data:string +@427 = .sdata:0x803E434C; // type:object size:0x8 scope:local align:4 data:string +@440 = .sdata:0x803E4354; // type:object size:0x6 scope:local align:4 data:string +@441 = .sdata:0x803E435C; // type:object size:0x7 scope:local align:4 data:string +@442 = .sdata:0x803E4364; // type:object size:0x1 scope:local align:4 +@875 = .sdata:0x803E4368; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata:0x803E436C; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata:0x803E4370; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803E4374; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E4378; // type:object size:0x4 scope:local align:4 data:string +@1491 = .sdata:0x803E437C; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E4380; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E4384; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E4388; // type:object size:0x4 scope:local align:4 data:4byte +@1495 = .sdata:0x803E438C; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E4390; // type:object size:0x4 scope:local align:4 data:4byte +@1498 = .sdata:0x803E4394; // type:object size:0x4 scope:local align:4 data:4byte +@1500 = .sdata:0x803E4398; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E439C; // type:object size:0x4 scope:local align:4 data:4byte +@1502 = .sdata:0x803E43A0; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E43A4; // type:object size:0x4 scope:local align:4 data:4byte +@1505 = .sdata:0x803E43A8; // type:object size:0x4 scope:local align:4 data:4byte +@1507 = .sdata:0x803E43AC; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E43B0; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803E43B4; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E43B8; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E43BC; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E43C0; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E43C4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E43C8; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E43CC; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E43D0; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803E43D4; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E43D8; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E43DC; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E43E0; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E43E4; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E43E8; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata:0x803E43EC; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E43F0; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata:0x803E43F4; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata:0x803E43F8; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata:0x803E43FC; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata:0x803E4400; // type:object size:0x4 scope:local align:4 data:float +@1538 = .sdata:0x803E4404; // type:object size:0x4 scope:local align:4 data:float +@1539 = .sdata:0x803E4408; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803E440C; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata:0x803E4410; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata:0x803E4414; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata:0x803E4418; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata:0x803E441C; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata:0x803E4420; // type:object size:0x4 scope:local align:4 data:float +@1777 = .sdata:0x803E4424; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E4428; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803E442C; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata:0x803E4430; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E4434; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E4438; // type:object size:0x4 scope:local align:4 data:float +@2229 = .sdata:0x803E443C; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E4440; // type:object size:0x4 scope:local align:4 data:float +@2379 = .sdata:0x803E4444; // type:object size:0x4 scope:local align:4 data:float +@2380 = .sdata:0x803E4448; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E444C; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata:0x803E4450; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata:0x803E4454; // type:object size:0x4 scope:local align:4 data:float +@2389 = .sdata:0x803E4458; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata:0x803E445C; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata:0x803E4460; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata:0x803E4464; // type:object size:0x4 scope:local align:4 data:float +@2463 = .sdata:0x803E4468; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata:0x803E446C; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E4470; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E4474; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata:0x803E4478; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata:0x803E447C; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E4480; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E4484; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E4488; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E448C; // type:object size:0x4 scope:local align:4 data:float +@2873 = .sdata:0x803E4490; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata:0x803E4494; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E4498; // type:object size:0x8 scope:local align:4 data:string +@3074 = .sdata:0x803E44A0; // type:object size:0x1 scope:local align:4 +@3075 = .sdata:0x803E44A4; // type:object size:0x4 scope:local align:4 data:string +@3076 = .sdata:0x803E44A8; // type:object size:0x4 scope:local align:4 data:string +@3077 = .sdata:0x803E44AC; // type:object size:0x4 scope:local align:4 data:string +@3079 = .sdata:0x803E44B0; // type:object size:0x4 scope:local align:4 data:string +@3082 = .sdata:0x803E44B4; // type:object size:0x4 scope:local align:4 data:string +@3084 = .sdata:0x803E44B8; // type:object size:0x7 scope:local align:4 data:string +@3333 = .sdata:0x803E44C0; // type:object size:0x6 scope:local align:4 data:string +@3334 = .sdata:0x803E44C8; // type:object size:0x5 scope:local align:4 data:string +@3401 = .sdata:0x803E44D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E44D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E44E0; // type:object size:0x8 scope:local align:4 +@3403 = .sdata:0x803E44E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E44F0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E44F8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E4500; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E4508; // type:object size:0x8 scope:local align:4 +__RTTI__9PelletMgr = .sdata:0x803E4510; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E4518; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletProp = .sdata:0x803E4520; // type:object size:0x8 scope:local align:4 +__RTTI__Q29PelletMgr7UseNode = .sdata:0x803E4528; // type:object size:0x8 scope:local align:4 +@3440 = .sdata:0x803E4530; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4538; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E4540; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E4548; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E4550; // type:object size:0x8 scope:local align:4 +__RTTI__11DynCreature = .sdata:0x803E4558; // type:object size:0x8 scope:local align:4 +__RTTI__12DualCreature = .sdata:0x803E4560; // type:object size:0x8 scope:local align:4 +__RTTI__6Pellet = .sdata:0x803E4568; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E4570; // type:object size:0x8 scope:local align:4 +@3485 = .sdata:0x803E4578; // type:object size:0x8 scope:local align:4 data:string +__RTTI__Q23zen31CallBack1 = .sdata:0x803E4580; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E4588; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E4590; // type:object size:0x8 scope:local align:4 +__RTTI__7KEffect = .sdata:0x803E4598; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E45A0; // type:object size:0x8 scope:local align:4 +__RTTI__12PelletConfig = .sdata:0x803E45A8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E45B0; // type:object size:0x8 scope:local align:4 +@1073 = .sdata:0x803E45B8; // type:object size:0x4 scope:local align:4 data:4byte +@1074 = .sdata:0x803E45BC; // type:object size:0x8 scope:local align:4 data:string +@1075 = .sdata:0x803E45C4; // type:object size:0x4 scope:local align:4 data:4byte +@1076 = .sdata:0x803E45C8; // type:object size:0x7 scope:local align:4 data:string +@1095 = .sdata:0x803E45D0; // type:object size:0x7 scope:local align:4 data:string +@1145 = .sdata:0x803E45D8; // type:object size:0x6 scope:local align:4 data:string +@1146 = .sdata:0x803E45E0; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata:0x803E45E8; // type:object size:0x2 scope:local align:4 data:string +@1148 = .sdata:0x803E45EC; // type:object size:0x2 scope:local align:4 data:string +@1149 = .sdata:0x803E45F0; // type:object size:0x2 scope:local align:4 data:string +@1150 = .sdata:0x803E45F4; // type:object size:0x2 scope:local align:4 data:string +@1151 = .sdata:0x803E45F8; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E45FC; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E4604; // type:object size:0x8 scope:local align:4 +__RTTI__18PaniPelletAnimator = .sdata:0x803E460C; // type:object size:0x8 scope:local align:4 +@1192 = .sdata:0x803E4614; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E461C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4624; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E462C; // type:object size:0x8 scope:local align:4 +__RTTI__14PelletAnimInfo = .sdata:0x803E4634; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E463C; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E4648; // type:object size:0x8 scope:local align:4 +@1128 = .sdata:0x803E4650; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E4658; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E4660; // type:object size:0x8 scope:local align:4 +__RTTI__15GenObjectPellet = .sdata:0x803E4668; // type:object size:0x8 scope:local align:4 +@1467 = .sdata:0x803E4670; // type:object size:0x8 scope:local align:4 data:string +@1514 = .sdata:0x803E4678; // type:object size:0x5 scope:local align:4 data:string +@1523 = .sdata:0x803E4680; // type:object size:0x7 scope:local align:4 data:string +@1544 = .sdata:0x803E4688; // type:object size:0x7 scope:local align:4 data:string +@1598 = .sdata:0x803E4690; // type:object size:0x5 scope:local align:4 data:string +@1615 = .sdata:0x803E4698; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E469C; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E46A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17Receiver<6Pellet> = .sdata:0x803E46A4; // type:object size:0x8 scope:local align:4 +__RTTI__15AState<6Pellet> = .sdata:0x803E46AC; // type:object size:0x8 scope:local align:4 +__RTTI__11PelletState = .sdata:0x803E46B4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletGoalState = .sdata:0x803E46BC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletAppearState = .sdata:0x803E46C4; // type:object size:0x8 scope:local align:4 +__RTTI__20PelletSwallowedState = .sdata:0x803E46CC; // type:object size:0x8 scope:local align:4 +__RTTI__17PelletNormalState = .sdata:0x803E46D4; // type:object size:0x8 scope:local align:4 +__RTTI__15PelletDeadState = .sdata:0x803E46DC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletUfoLoadState = .sdata:0x803E46E4; // type:object size:0x8 scope:local align:4 +__RTTI__21StateMachine<6Pellet> = .sdata:0x803E46EC; // type:object size:0x8 scope:local align:4 +__RTTI__18PelletStateMachine = .sdata:0x803E46F4; // type:object size:0x8 scope:local align:4 +@1373 = .sdata:0x803E4700; // type:object size:0x4 scope:local align:4 data:string +@1379 = .sdata:0x803E4704; // type:object size:0x5 scope:local align:4 data:string +@1441 = .sdata:0x803E470C; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E4714; // type:object size:0x3 scope:local align:4 data:string +@1526 = .sdata:0x803E4718; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E471C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E4720; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata:0x803E4724; // type:object size:0x4 scope:local align:4 data:4byte +@1560 = .sdata:0x803E4728; // type:object size:0x4 scope:local align:4 data:4byte +@1561 = .sdata:0x803E472C; // type:object size:0x4 scope:local align:4 data:4byte +@1562 = .sdata:0x803E4730; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803E4734; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata:0x803E4738; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata:0x803E473C; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata:0x803E4740; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata:0x803E4744; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata:0x803E4748; // type:object size:0x4 scope:local align:4 data:float +@2100 = .sdata:0x803E474C; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata:0x803E4750; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803E4754; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803E4758; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E475C; // type:object size:0x4 scope:local align:4 data:float +@2340 = .sdata:0x803E4760; // type:object size:0x4 scope:local align:4 data:float +@2341 = .sdata:0x803E4764; // type:object size:0x4 scope:local align:4 data:float +@2342 = .sdata:0x803E4768; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata:0x803E476C; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata:0x803E4770; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803E4774; // type:object size:0x4 scope:local align:4 data:float +@2450 = .sdata:0x803E4778; // type:object size:0x4 scope:local align:4 data:float +@2451 = .sdata:0x803E477C; // type:object size:0x4 scope:local align:4 data:float +@2492 = .sdata:0x803E4780; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E4784; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E4788; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E478C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E4790; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata:0x803E4794; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E4798; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E479C; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBreak = .sdata:0x803E47A4; // type:object size:0x8 scope:local align:4 +__RTTI__13InteractBuild = .sdata:0x803E47AC; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803E47B4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E47BC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E47C4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E47CC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E47D4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E47DC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E47E4; // type:object size:0x8 scope:local align:4 +__RTTI__10WorkObject = .sdata:0x803E47EC; // type:object size:0x8 scope:local align:4 +__RTTI__6Bridge = .sdata:0x803E47F4; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractPush = .sdata:0x803E47FC; // type:object size:0x8 scope:local align:4 +__RTTI__10HinderRock = .sdata:0x803E4804; // type:object size:0x8 scope:local align:4 +@3076 = .sdata:0x803E480C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4814; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E481C; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803E4824; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E482C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E4834; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E483C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynBuildShape = .sdata:0x803E4844; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E484C; // type:object size:0x8 scope:local align:4 +@3101 = .sdata:0x803E4854; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E485C; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E4864; // type:object size:0x8 scope:local align:4 +__RTTI__19GenObjectWorkObject = .sdata:0x803E486C; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4874; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E487C; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E4884; // type:object size:0x8 scope:local align:4 +__RTTI__13WorkObjectMgr = .sdata:0x803E488C; // type:object size:0x8 scope:local align:4 +__RTTI__14WorkObjectNode = .sdata:0x803E4894; // type:object size:0x8 scope:local align:4 +avoidWayPointIndex__10PathFinder = .sdata:0x803E48A0; // type:object size:0x4 scope:global align:4 data:4byte +@1898 = .sdata:0x803E48A4; // type:object size:0x7 scope:local align:4 data:string +@2161 = .sdata:0x803E48AC; // type:object size:0x3 scope:local align:4 data:string +@3232 = .sdata:0x803E48B0; // type:object size:0x6 scope:local align:4 data:string +@3235 = .sdata:0x803E48B8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E48C0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E48C8; // type:object size:0x8 scope:local align:4 +@3240 = .sdata:0x803E48D0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E48D8; // type:object size:0x8 scope:local align:4 +__RTTI__8RouteMgr = .sdata:0x803E48E0; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803E48E8; // type:object size:0x7 scope:local align:4 data:string +@594 = .sdata:0x803E48F0; // type:object size:0x8 scope:local align:4 data:string +@595 = .sdata:0x803E48F8; // type:object size:0x7 scope:local align:4 data:string +@596 = .sdata:0x803E4900; // type:object size:0x6 scope:local align:4 data:string +@644 = .sdata:0x803E4908; // type:object size:0x6 scope:local align:4 data:string +@645 = .sdata:0x803E4910; // type:object size:0x3 scope:local align:4 data:string +@751 = .sdata:0x803E4914; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E491C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4924; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E492C; // type:object size:0x8 scope:local align:4 +@756 = .sdata:0x803E4934; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GmWin = .sdata:0x803E493C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeWin = .sdata:0x803E4944; // type:object size:0x8 scope:local align:4 +@760 = .sdata:0x803E494C; // type:object size:0x6 scope:local align:4 data:string +@762 = .sdata:0x803E4954; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E495C; // type:object size:0x8 scope:local align:4 +__RTTI__5SeMgr = .sdata:0x803E4964; // type:object size:0x8 scope:local align:4 +@436 = .sdata:0x803E4970; // type:object size:0x7 scope:local align:4 data:string +@437 = .sdata:0x803E4978; // type:object size:0x4 scope:local align:4 data:4byte +@439 = .sdata:0x803E497C; // type:object size:0x4 scope:local align:4 data:4byte +@441 = .sdata:0x803E4980; // type:object size:0x4 scope:local align:4 data:4byte +@443 = .sdata:0x803E4984; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8BaseParm = .sdata:0x803E498C; // type:object size:0x8 scope:local align:4 +@451 = .sdata:0x803E4994; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E499C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E49A4; // type:object size:0x8 scope:local align:4 +@454 = .sdata:0x803E49AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E49B4; // type:object size:0x8 scope:local align:4 +__RTTI__10SeConstant = .sdata:0x803E49BC; // type:object size:0x8 scope:local align:4 +@1363 = .sdata:0x803E49C8; // type:object size:0x8 scope:local align:4 data:string +@1530 = .sdata:0x803E49D0; // type:object size:0x8 scope:local align:4 data:string +@1531 = .sdata:0x803E49D8; // type:object size:0x8 scope:local align:4 data:string +@1532 = .sdata:0x803E49E0; // type:object size:0x8 scope:local align:4 data:string +@1533 = .sdata:0x803E49E8; // type:object size:0x8 scope:local align:4 data:string +@1534 = .sdata:0x803E49F0; // type:object size:0x8 scope:local align:4 data:string +@1662 = .sdata:0x803E49F8; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata:0x803E49FC; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata:0x803E4A00; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata:0x803E4A04; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803E4A08; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E4A0C; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E4A10; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E4A14; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E4A18; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E4A1C; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E4A20; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E4A24; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata:0x803E4A28; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata:0x803E4A2C; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata:0x803E4A30; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata:0x803E4A34; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata:0x803E4A38; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata:0x803E4A3C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803E4A40; // type:object size:0x6 scope:local align:4 data:string +@2049 = .sdata:0x803E4A48; // type:object size:0x6 scope:local align:4 data:string +@2050 = .sdata:0x803E4A50; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803E4A58; // type:object size:0x7 scope:local align:4 data:string +@2052 = .sdata:0x803E4A60; // type:object size:0x6 scope:local align:4 data:string +@2053 = .sdata:0x803E4A68; // type:object size:0x6 scope:local align:4 data:string +@2054 = .sdata:0x803E4A70; // type:object size:0x6 scope:local align:4 data:string +@2055 = .sdata:0x803E4A78; // type:object size:0x5 scope:local align:4 data:string +@2056 = .sdata:0x803E4A80; // type:object size:0x5 scope:local align:4 data:string +@2057 = .sdata:0x803E4A88; // type:object size:0x5 scope:local align:4 data:string +@2083 = .sdata:0x803E4A90; // type:object size:0x6 scope:local align:4 data:string +@1371 = .sdata:0x803E4A98; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E4A9C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E4AA0; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803E4AA4; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803E4AA8; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E4AAC; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E4AB0; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E4AB8; // type:object size:0x4 scope:local align:4 data:4byte +@1420 = .sdata:0x803E4ABC; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E4AC0; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E4AC4; // type:object size:0x7 scope:local align:4 data:string +@1442 = .sdata:0x803E4ACC; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata:0x803E4AD0; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E4AD4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E4AD8; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata:0x803E4ADC; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata:0x803E4AE0; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E4AE4; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E4AE8; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E4AEC; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata:0x803E4AF0; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E4AF4; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E4AF8; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E4AFC; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata:0x803E4B00; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E4B04; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803E4B08; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata:0x803E4B0C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata:0x803E4B10; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata:0x803E4B14; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E4B18; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata:0x803E4B1C; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata:0x803E4B20; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E4B24; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E4B28; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E4B2C; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata:0x803E4B30; // type:object size:0x7 scope:local align:4 data:string +@2105 = .sdata:0x803E4B38; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E4B40; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E4B48; // type:object size:0x8 scope:local align:4 +@2108 = .sdata:0x803E4B50; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E4B58; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E4B60; // type:object size:0x8 scope:local align:4 +__RTTI__6CPlate = .sdata:0x803E4B68; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E4B70; // type:object size:0x8 scope:local align:4 +@1526 = .sdata:0x803E4B78; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803E4B7C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata:0x803E4B80; // type:object size:0x4 scope:local align:4 data:float +@1529 = .sdata:0x803E4B84; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata:0x803E4B88; // type:object size:0x4 scope:local align:4 data:float +@1531 = .sdata:0x803E4B8C; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803E4B90; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E4B94; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata:0x803E4B98; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata:0x803E4B9C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata:0x803E4BA0; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E4BA4; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803E4BA8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803E4BAC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E4BB0; // type:object size:0x8 scope:local align:4 +@1706 = .sdata:0x803E4BB8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4BC0; // type:object size:0x8 scope:local align:4 +__RTTI__8ActStone = .sdata:0x803E4BC8; // type:object size:0x8 scope:local align:4 +@1718 = .sdata:0x803E4BD0; // type:object size:0x2 scope:local align:4 data:string +@1229 = .sdata:0x803E4BD8; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata:0x803E4BDC; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata:0x803E4BE0; // type:object size:0x4 scope:local align:4 data:float +@1248 = .sdata:0x803E4BE4; // type:object size:0x4 scope:local align:4 data:float +@1249 = .sdata:0x803E4BE8; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E4BEC; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E4BF0; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata:0x803E4BF4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E4BF8; // type:object size:0x8 scope:local align:4 +@1353 = .sdata:0x803E4C00; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4C08; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAdjust = .sdata:0x803E4C10; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E4C18; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActAdjust11Initialiser = .sdata:0x803E4C20; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E4C28; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6ActPut = .sdata:0x803E4C30; // type:object size:0x8 scope:local align:4 +__RTTI__Q26ActPut11Initialiser = .sdata:0x803E4C38; // type:object size:0x8 scope:local align:4 +@1388 = .sdata:0x803E4C40; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4C48; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPick = .sdata:0x803E4C50; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActPick11Initialiser = .sdata:0x803E4C58; // type:object size:0x8 scope:local align:4 +@1820 = .sdata:0x803E4C60; // type:object size:0x7 scope:local align:4 data:string +@2005 = .sdata:0x803E4C68; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata:0x803E4C6C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata:0x803E4C70; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E4C74; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E4C78; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E4C7C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E4C80; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803E4C84; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803E4C88; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata:0x803E4C8C; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata:0x803E4C90; // type:object size:0x4 scope:local align:4 data:float +@2279 = .sdata:0x803E4C94; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata:0x803E4C98; // type:object size:0x4 scope:local align:4 data:float +@2319 = .sdata:0x803E4C9C; // type:object size:0x4 scope:local align:4 data:float +@2320 = .sdata:0x803E4CA0; // type:object size:0x4 scope:local align:4 data:float +@2321 = .sdata:0x803E4CA4; // type:object size:0x4 scope:local align:4 data:float +@2322 = .sdata:0x803E4CA8; // type:object size:0x4 scope:local align:4 data:float +@2323 = .sdata:0x803E4CAC; // type:object size:0x4 scope:local align:4 data:float +@2324 = .sdata:0x803E4CB0; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata:0x803E4CB4; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata:0x803E4CB8; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata:0x803E4CBC; // type:object size:0x4 scope:local align:4 data:float +@2644 = .sdata:0x803E4CC0; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E4CC4; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E4CC8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata:0x803E4CCC; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata:0x803E4CD0; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata:0x803E4CD4; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata:0x803E4CD8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4CDC; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E4CE4; // type:object size:0x8 scope:local align:4 +@2775 = .sdata:0x803E4CEC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4CF4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActJumpAttack = .sdata:0x803E4CFC; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E4D04; // type:object size:0x8 scope:local align:4 +__RTTI__9ActAttack = .sdata:0x803E4D0C; // type:object size:0x8 scope:local align:4 +@1711 = .sdata:0x803E4D18; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata:0x803E4D1C; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata:0x803E4D20; // type:object size:0x4 scope:local align:4 data:float +@1811 = .sdata:0x803E4D24; // type:object size:0x5 scope:local align:4 data:string +@1843 = .sdata:0x803E4D2C; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803E4D30; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata:0x803E4D34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4D38; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E4D40; // type:object size:0x8 scope:local align:4 +@2265 = .sdata:0x803E4D48; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4D50; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreRest = .sdata:0x803E4D58; // type:object size:0x8 scope:local align:4 +__RTTI__14ActBoreOneshot = .sdata:0x803E4D60; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreListen = .sdata:0x803E4D68; // type:object size:0x8 scope:local align:4 +__RTTI__11ActBoreTalk = .sdata:0x803E4D70; // type:object size:0x8 scope:local align:4 +__RTTI__13ActBoreSelect = .sdata:0x803E4D78; // type:object size:0x8 scope:local align:4 +__RTTI__13ActFreeSelect = .sdata:0x803E4D80; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E4D88; // type:object size:0x8 scope:local align:4 +@1516 = .sdata:0x803E4D90; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4D98; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBoMake = .sdata:0x803E4DA0; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E4DA8; // type:object size:0x4 scope:local align:4 data:string +@1410 = .sdata:0x803E4DAC; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E4DB0; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E4DB4; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E4DB8; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E4DBC; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E4DC0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata:0x803E4DC4; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E4DC8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E4DD0; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E4DD8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4DE0; // type:object size:0x8 scope:local align:4 +__RTTI__6ActBou = .sdata:0x803E4DE8; // type:object size:0x8 scope:local align:4 +@1812 = .sdata:0x803E4DF0; // type:object size:0x7 scope:local align:4 data:string +@1831 = .sdata:0x803E4DF8; // type:object size:0x7 scope:local align:4 data:string +@1832 = .sdata:0x803E4E00; // type:object size:0x3 scope:local align:4 data:string +@1833 = .sdata:0x803E4E04; // type:object size:0x5 scope:local align:4 data:string +@2530 = .sdata:0x803E4E0C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803E4E10; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata:0x803E4E14; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4E18; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E4E20; // type:object size:0x8 scope:local align:4 +@2701 = .sdata:0x803E4E28; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4E30; // type:object size:0x8 scope:local align:4 +__RTTI__9ActBridge = .sdata:0x803E4E38; // type:object size:0x8 scope:local align:4 +@1455 = .sdata:0x803E4E40; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata:0x803E4E44; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E4E48; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803E4E4C; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E4E50; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803E4E54; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E4E58; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E4E60; // type:object size:0x8 scope:local align:4 +@1513 = .sdata:0x803E4E68; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E4E70; // type:object size:0x8 scope:local align:4 +__RTTI__12ActBreakWall = .sdata:0x803E4E78; // type:object size:0x8 scope:local align:4 +@1692 = .sdata:0x803E4E80; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata:0x803E4E84; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E4E88; // type:object size:0x4 scope:local align:4 data:float +@1815 = .sdata:0x803E4E8C; // type:object size:0x4 scope:local align:4 data:float +@1816 = .sdata:0x803E4E90; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E4E94; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata:0x803E4E98; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata:0x803E4E9C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata:0x803E4EA0; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata:0x803E4EA4; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata:0x803E4EA8; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata:0x803E4EAC; // type:object size:0x4 scope:local align:4 data:float +@2153 = .sdata:0x803E4EB0; // type:object size:0x4 scope:local align:4 data:float +@2154 = .sdata:0x803E4EB4; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata:0x803E4EB8; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata:0x803E4EBC; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata:0x803E4EC0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata:0x803E4EC4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata:0x803E4EC8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata:0x803E4ECC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata:0x803E4ED0; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata:0x803E4ED4; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata:0x803E4ED8; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803E4EDC; // type:object size:0x4 scope:local align:4 data:float +@2511 = .sdata:0x803E4EE0; // type:object size:0x4 scope:local align:4 data:float +@2512 = .sdata:0x803E4EE4; // type:object size:0x4 scope:local align:4 data:float +@2513 = .sdata:0x803E4EE8; // type:object size:0x4 scope:local align:4 data:float +@2514 = .sdata:0x803E4EEC; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata:0x803E4EF0; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata:0x803E4EF4; // type:object size:0x4 scope:local align:4 data:float +@2747 = .sdata:0x803E4EF8; // type:object size:0x4 scope:local align:4 data:float +@2748 = .sdata:0x803E4EFC; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E4F00; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E4F04; // type:object size:0x4 scope:local align:4 data:float +@2751 = .sdata:0x803E4F08; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E4F0C; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata:0x803E4F10; // type:object size:0x4 scope:local align:4 data:float +@2756 = .sdata:0x803E4F14; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E4F18; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E4F1C; // type:object size:0x4 scope:local align:4 data:float +@2769 = .sdata:0x803E4F20; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata:0x803E4F24; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata:0x803E4F28; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata:0x803E4F2C; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata:0x803E4F30; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata:0x803E4F34; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata:0x803E4F38; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata:0x803E4F3C; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E4F40; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E4F44; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata:0x803E4F48; // type:object size:0x4 scope:local align:4 data:float +@3066 = .sdata:0x803E4F4C; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803E4F50; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E4F54; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E4F58; // type:object size:0x4 scope:local align:4 data:float +@3070 = .sdata:0x803E4F5C; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E4F60; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803E4F64; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata:0x803E4F68; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata:0x803E4F6C; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E4F70; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata:0x803E4F74; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata:0x803E4F78; // type:object size:0x4 scope:local align:4 data:float +@3112 = .sdata:0x803E4F7C; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata:0x803E4F80; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata:0x803E4F84; // type:object size:0x3 scope:local align:4 data:string +@4060 = .sdata:0x803E4F88; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata:0x803E4F90; // type:object size:0x5 scope:local align:4 data:string +@4062 = .sdata:0x803E4F98; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata:0x803E4FA0; // type:object size:0x5 scope:local align:4 data:string +@4064 = .sdata:0x803E4FA8; // type:object size:0x5 scope:local align:4 data:string +@4065 = .sdata:0x803E4FB0; // type:object size:0x4 scope:local align:4 data:string +@4067 = .sdata:0x803E4FB4; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata:0x803E4FBC; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata:0x803E4FC4; // type:object size:0x6 scope:local align:4 data:string +@4231 = .sdata:0x803E4FCC; // type:object size:0x2 scope:local align:4 data:string +@4238 = .sdata:0x803E4FD0; // type:object size:0x3 scope:local align:4 data:string +@4241 = .sdata:0x803E4FD4; // type:object size:0x4 scope:local align:4 data:float +@4242 = .sdata:0x803E4FD8; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata:0x803E4FDC; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata:0x803E4FE0; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata:0x803E4FE4; // type:object size:0x4 scope:local align:4 data:float +@4246 = .sdata:0x803E4FE8; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata:0x803E4FEC; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata:0x803E4FF0; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata:0x803E4FF4; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata:0x803E4FF8; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata:0x803E4FFC; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata:0x803E5000; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E5004; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E5008; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E500C; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata:0x803E5010; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata:0x803E5014; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata:0x803E5018; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata:0x803E501C; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata:0x803E5020; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata:0x803E5024; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata:0x803E5028; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata:0x803E502C; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata:0x803E5030; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5034; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E503C; // type:object size:0x8 scope:local align:4 +@4430 = .sdata:0x803E5044; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E504C; // type:object size:0x8 scope:local align:4 +__RTTI__12ActTransport = .sdata:0x803E5054; // type:object size:0x8 scope:local align:4 +@1814 = .sdata:0x803E5060; // type:object size:0x7 scope:local align:4 data:string +@1946 = .sdata:0x803E5068; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E506C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E5070; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E5074; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E5078; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E507C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E5080; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata:0x803E5084; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E5088; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E508C; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803E5090; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata:0x803E5094; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata:0x803E5098; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata:0x803E509C; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata:0x803E50A0; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata:0x803E50A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E50A8; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E50B0; // type:object size:0x8 scope:local align:4 +@2378 = .sdata:0x803E50B8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E50C0; // type:object size:0x8 scope:local align:4 +__RTTI__9ActKinoko = .sdata:0x803E50C8; // type:object size:0x8 scope:local align:4 +@1103 = .sdata:0x803E50D0; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata:0x803E50D4; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803E50D8; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata:0x803E50DC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E50E0; // type:object size:0x8 scope:local align:4 +@1176 = .sdata:0x803E50E8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E50F0; // type:object size:0x8 scope:local align:4 +__RTTI__8ActChase = .sdata:0x803E50F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5100; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActChase11Initialiser = .sdata:0x803E5108; // type:object size:0x8 scope:local align:4 +newVer = .sdata:0x803E5110; // type:object size:0x1 scope:local align:1 data:byte +@1537 = .sdata:0x803E5114; // type:object size:0x6 scope:local align:4 data:string +@1603 = .sdata:0x803E511C; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata:0x803E5120; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata:0x803E5124; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E5128; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E512C; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E5130; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata:0x803E5134; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E5138; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E513C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E5140; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E5144; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E5148; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E514C; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata:0x803E5150; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata:0x803E5154; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata:0x803E5158; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803E515C; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata:0x803E5160; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata:0x803E5164; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata:0x803E5168; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803E516C; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata:0x803E5170; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata:0x803E5174; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata:0x803E5178; // type:object size:0x4 scope:local align:4 data:float +__RTTI__17SlotChangeListner = .sdata:0x803E517C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5184; // type:object size:0x8 scope:local align:4 +@2431 = .sdata:0x803E518C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5194; // type:object size:0x8 scope:local align:4 +__RTTI__8ActCrowd = .sdata:0x803E519C; // type:object size:0x8 scope:local align:4 +@1596 = .sdata:0x803E51A8; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E51AC; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata:0x803E51B0; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata:0x803E51B4; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E51B8; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E51BC; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E51C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E51C4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E51CC; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E51D4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E51DC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActDecoy = .sdata:0x803E51E4; // type:object size:0x8 scope:local align:4 +@1382 = .sdata:0x803E51F0; // type:object size:0x6 scope:local align:4 data:string +@1487 = .sdata:0x803E51F8; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata:0x803E51FC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata:0x803E5200; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata:0x803E5204; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803E5208; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata:0x803E520C; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata:0x803E5210; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5214; // type:object size:0x8 scope:local align:4 +@1630 = .sdata:0x803E521C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5224; // type:object size:0x8 scope:local align:4 +__RTTI__8ActEnter = .sdata:0x803E522C; // type:object size:0x8 scope:local align:4 +@1072 = .sdata:0x803E5238; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata:0x803E523C; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata:0x803E5240; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803E5244; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata:0x803E5248; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E524C; // type:object size:0x4 scope:local align:4 data:float +@1197 = .sdata:0x803E5250; // type:object size:0x7 scope:local align:4 data:string +@1198 = .sdata:0x803E5258; // type:object size:0x6 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5260; // type:object size:0x8 scope:local align:4 +@1203 = .sdata:0x803E5268; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5270; // type:object size:0x8 scope:local align:4 +__RTTI__9ActEscape = .sdata:0x803E5278; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5280; // type:object size:0x8 scope:local align:4 +__RTTI__Q29ActEscape11Initialiser = .sdata:0x803E5288; // type:object size:0x8 scope:local align:4 +@1380 = .sdata:0x803E5290; // type:object size:0x5 scope:local align:4 data:string +@1385 = .sdata:0x803E5298; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803E529C; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803E52A0; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E52A4; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E52A8; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E52AC; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E52B0; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata:0x803E52B4; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata:0x803E52B8; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E52BC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata:0x803E52C0; // type:object size:0x4 scope:local align:4 data:float +@1420 = .sdata:0x803E52C4; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata:0x803E52C8; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata:0x803E52CC; // type:object size:0x4 scope:local align:4 data:float +@1520 = .sdata:0x803E52D0; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E52D4; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E52D8; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata:0x803E52DC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E52E4; // type:object size:0x8 scope:local align:4 +@1536 = .sdata:0x803E52EC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E52F4; // type:object size:0x8 scope:local align:4 +__RTTI__7ActExit = .sdata:0x803E52FC; // type:object size:0x8 scope:local align:4 +@1189 = .sdata:0x803E5308; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata:0x803E530C; // type:object size:0x4 scope:local align:4 data:float +@1191 = .sdata:0x803E5310; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E5314; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E5318; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E531C; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803E5320; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5328; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5330; // type:object size:0x8 scope:local align:4 +@1343 = .sdata:0x803E5338; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5340; // type:object size:0x8 scope:local align:4 +__RTTI__7ActMine = .sdata:0x803E5348; // type:object size:0x8 scope:local align:4 +@1370 = .sdata:0x803E5350; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803E5354; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803E5358; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803E535C; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803E5360; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803E5364; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803E5368; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata:0x803E536C; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata:0x803E5370; // type:object size:0x4 scope:local align:4 data:float +@1548 = .sdata:0x803E5374; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E5378; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E537C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5384; // type:object size:0x8 scope:local align:4 +@1778 = .sdata:0x803E538C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5394; // type:object size:0x8 scope:local align:4 +__RTTI__12ActFormation = .sdata:0x803E539C; // type:object size:0x8 scope:local align:4 +@1634 = .sdata:0x803E53A8; // type:object size:0x5 scope:local align:4 data:string +numMotions = .sdata:0x803E53B0; // type:object size:0x4 scope:global align:4 data:4byte +@1649 = .sdata:0x803E53B4; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata:0x803E53B8; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata:0x803E53BC; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E53C0; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E53C4; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata:0x803E53C8; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E53CC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E53D4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E53DC; // type:object size:0x8 scope:local align:4 +@1901 = .sdata:0x803E53E4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E53EC; // type:object size:0x8 scope:local align:4 +__RTTI__7ActFree = .sdata:0x803E53F4; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E5400; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata:0x803E5404; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata:0x803E5408; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata:0x803E540C; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E5410; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5418; // type:object size:0x8 scope:local align:4 +@1294 = .sdata:0x803E5420; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5428; // type:object size:0x8 scope:local align:4 +__RTTI__7ActGoto = .sdata:0x803E5430; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5438; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ActGoto11Initialiser = .sdata:0x803E5440; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E5448; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E544C; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E5450; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E5454; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata:0x803E5458; // type:object size:0x4 scope:local align:4 data:float +@1599 = .sdata:0x803E545C; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803E5460; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata:0x803E5464; // type:object size:0x4 scope:local align:4 data:float +@1620 = .sdata:0x803E5468; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803E546C; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E5470; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5474; // type:object size:0x8 scope:local align:4 +@2250 = .sdata:0x803E547C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5484; // type:object size:0x8 scope:local align:4 +__RTTI__8ActGuard = .sdata:0x803E548C; // type:object size:0x8 scope:local align:4 +@1290 = .sdata:0x803E5498; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata:0x803E549C; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata:0x803E54A0; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata:0x803E54A4; // type:object size:0x4 scope:local align:4 data:float +@1294 = .sdata:0x803E54A8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata:0x803E54AC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E54B0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E54B8; // type:object size:0x8 scope:local align:4 +@1390 = .sdata:0x803E54C0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E54C8; // type:object size:0x8 scope:local align:4 +__RTTI__9ActFlower = .sdata:0x803E54D0; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E54D8; // type:object size:0x8 scope:local align:4 +__RTTI__11ActPickItem = .sdata:0x803E54E0; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E54E8; // type:object size:0x8 scope:local align:4 +@1141 = .sdata:0x803E54F0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E54F8; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5500; // type:object size:0x8 scope:local align:4 +__RTTI__10ActDeliver = .sdata:0x803E5508; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5510; // type:object size:0x8 scope:local align:4 +__RTTI__Q210ActDeliver11Initialiser = .sdata:0x803E5518; // type:object size:0x8 scope:local align:4 +__RTTI__15ActPickCreature = .sdata:0x803E5520; // type:object size:0x8 scope:local align:4 +@1510 = .sdata:0x803E5528; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E552C; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E5530; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803E5534; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata:0x803E5538; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata:0x803E553C; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E5540; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E5544; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E5548; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata:0x803E554C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata:0x803E5550; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata:0x803E5554; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5558; // type:object size:0x8 scope:local align:4 +@1656 = .sdata:0x803E5560; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5568; // type:object size:0x8 scope:local align:4 +__RTTI__18ActPulloutCreature = .sdata:0x803E5570; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5578; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPullout = .sdata:0x803E5580; // type:object size:0x8 scope:local align:4 +@1813 = .sdata:0x803E5588; // type:object size:0x5 scope:local align:4 data:string +@2025 = .sdata:0x803E5590; // type:object size:0x8 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5598; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E55A0; // type:object size:0x8 scope:local align:4 +@2029 = .sdata:0x803E55A8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E55B0; // type:object size:0x8 scope:local align:4 +__RTTI__7ActPush = .sdata:0x803E55B8; // type:object size:0x8 scope:local align:4 +@1726 = .sdata:0x803E55C0; // type:object size:0x8 scope:local align:4 data:string +@2112 = .sdata:0x803E55C8; // type:object size:0x4 scope:local align:4 data:float +@2113 = .sdata:0x803E55CC; // type:object size:0x4 scope:local align:4 data:float +@2114 = .sdata:0x803E55D0; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata:0x803E55D4; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata:0x803E55D8; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata:0x803E55DC; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E55E0; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E55E4; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E55E8; // type:object size:0x4 scope:local align:4 data:float +@2226 = .sdata:0x803E55EC; // type:object size:0x4 scope:local align:4 data:float +@2227 = .sdata:0x803E55F0; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata:0x803E55F4; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata:0x803E55F8; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata:0x803E55FC; // type:object size:0x4 scope:local align:4 data:float +@2271 = .sdata:0x803E5600; // type:object size:0x4 scope:local align:4 data:float +@2486 = .sdata:0x803E5604; // type:object size:0x4 scope:local align:4 data:float +@2605 = .sdata:0x803E5608; // type:object size:0x4 scope:local align:4 data:float +@2606 = .sdata:0x803E560C; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata:0x803E5610; // type:object size:0x4 scope:local align:4 data:float +@2608 = .sdata:0x803E5614; // type:object size:0x4 scope:local align:4 data:float +@2609 = .sdata:0x803E5618; // type:object size:0x4 scope:local align:4 data:float +@2610 = .sdata:0x803E561C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5620; // type:object size:0x8 scope:local align:4 +@2653 = .sdata:0x803E5628; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5630; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutItem = .sdata:0x803E5638; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5640; // type:object size:0x8 scope:local align:4 +__RTTI__10ActPutBomb = .sdata:0x803E5648; // type:object size:0x8 scope:local align:4 +@1071 = .sdata:0x803E5650; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata:0x803E5654; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata:0x803E5658; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata:0x803E565C; // type:object size:0x4 scope:local align:4 data:float +@1081 = .sdata:0x803E5660; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata:0x803E5664; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata:0x803E5668; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata:0x803E566C; // type:object size:0x4 scope:local align:4 data:float +@1138 = .sdata:0x803E5670; // type:object size:0x4 scope:local align:4 data:float +@1139 = .sdata:0x803E5674; // type:object size:0x4 scope:local align:4 data:float +@1140 = .sdata:0x803E5678; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E567C; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E5680; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E5684; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata:0x803E5688; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata:0x803E568C; // type:object size:0x4 scope:local align:4 data:float +@1177 = .sdata:0x803E5690; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata:0x803E5694; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata:0x803E5698; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata:0x803E569C; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803E56A0; // type:object size:0x5 scope:local align:4 data:string +@1348 = .sdata:0x803E56A8; // type:object size:0x5 scope:local align:4 +@1350 = .sdata:0x803E56B0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E56B4; // type:object size:0x8 scope:local align:4 +@1354 = .sdata:0x803E56BC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E56C4; // type:object size:0x8 scope:local align:4 +__RTTI__13ActRandomBoid = .sdata:0x803E56CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E56D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid11Initialiser = .sdata:0x803E56DC; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E56E4; // type:object size:0x8 scope:local align:4 +__RTTI__Q213ActRandomBoid12AnimListener = .sdata:0x803E56EC; // type:object size:0x8 scope:local align:4 +@1811 = .sdata:0x803E56F8; // type:object size:0x7 scope:local align:4 data:string +@1895 = .sdata:0x803E5700; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata:0x803E5704; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata:0x803E5708; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata:0x803E570C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E5710; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E5714; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E5718; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E571C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803E5720; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803E5724; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E5728; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E572C; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E5734; // type:object size:0x8 scope:local align:4 +@2087 = .sdata:0x803E573C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5744; // type:object size:0x8 scope:local align:4 +__RTTI__9ActRescue = .sdata:0x803E574C; // type:object size:0x8 scope:local align:4 +@1385 = .sdata:0x803E5758; // type:object size:0x5 scope:local align:4 data:string +@1391 = .sdata:0x803E5760; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803E5764; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803E5768; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata:0x803E576C; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata:0x803E5770; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E5778; // type:object size:0x8 scope:local align:4 +@1446 = .sdata:0x803E5780; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5788; // type:object size:0x8 scope:local align:4 +__RTTI__7ActRope = .sdata:0x803E5790; // type:object size:0x8 scope:local align:4 +@1723 = .sdata:0x803E5798; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E579C; // type:object size:0x4 scope:local align:4 data:float +@1725 = .sdata:0x803E57A0; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E57A4; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803E57A8; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata:0x803E57AC; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata:0x803E57B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E57B4; // type:object size:0x8 scope:local align:4 +__RTTI__15Receiver<4Piki> = .sdata:0x803E57BC; // type:object size:0x8 scope:local align:4 +@1841 = .sdata:0x803E57C4; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E57CC; // type:object size:0x8 scope:local align:4 +__RTTI__16ActShootCreature = .sdata:0x803E57D4; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E57DC; // type:object size:0x8 scope:local align:4 +__RTTI__8ActShoot = .sdata:0x803E57E4; // type:object size:0x8 scope:local align:4 +@1125 = .sdata:0x803E57F0; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803E57F4; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803E57F8; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803E57FC; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata:0x803E5800; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5804; // type:object size:0x8 scope:local align:4 +@1171 = .sdata:0x803E580C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5814; // type:object size:0x8 scope:local align:4 +__RTTI__8ActWatch = .sdata:0x803E581C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26Action11Initialiser = .sdata:0x803E5824; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch11Initialiser = .sdata:0x803E582C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5834; // type:object size:0x8 scope:local align:4 +__RTTI__Q28ActWatch12AnimListener = .sdata:0x803E583C; // type:object size:0x8 scope:local align:4 +@1520 = .sdata:0x803E5848; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803E584C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803E5850; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata:0x803E5854; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata:0x803E5858; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803E585C; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata:0x803E5860; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata:0x803E5864; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803E5868; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata:0x803E586C; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata:0x803E5870; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803E5874; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E5878; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E587C; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E5880; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803E5884; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E588C; // type:object size:0x8 scope:local align:4 +@1662 = .sdata:0x803E5894; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E589C; // type:object size:0x8 scope:local align:4 +__RTTI__7ActWeed = .sdata:0x803E58A4; // type:object size:0x8 scope:local align:4 +@1227 = .sdata:0x803E58B0; // type:object size:0x2 scope:local align:4 data:string +@1228 = .sdata:0x803E58B4; // type:object size:0x6 scope:local align:4 data:string +@1229 = .sdata:0x803E58BC; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E58C4; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E58CC; // type:object size:0x5 scope:local align:4 data:string +@1232 = .sdata:0x803E58D4; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E58DC; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E58E0; // type:object size:0x5 scope:local align:4 data:string +@1331 = .sdata:0x803E58E8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__15Receiver<4Piki> = .sdata:0x803E58F0; // type:object size:0x8 scope:local align:4 +@1971 = .sdata:0x803E58F8; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Action = .sdata:0x803E5900; // type:object size:0x8 scope:local align:4 +__RTTI__9TopAction = .sdata:0x803E5908; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5910; // type:object size:0x8 scope:local align:4 +__RTTI__Q29TopAction14MotionListener = .sdata:0x803E5918; // type:object size:0x8 scope:local align:4 +__RTTI__8OrAction = .sdata:0x803E5920; // type:object size:0x8 scope:local align:4 +__RTTI__9AndAction = .sdata:0x803E5928; // type:object size:0x8 scope:local align:4 +@1577 = .sdata:0x803E5930; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata:0x803E5934; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E5938; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E593C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E5940; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata:0x803E5944; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E5948; // type:object size:0x8 scope:local align:4 data:string +@1606 = .sdata:0x803E5950; // type:object size:0x4 scope:local align:4 data:float +@1607 = .sdata:0x803E5954; // type:object size:0x4 scope:local align:4 data:float +@1608 = .sdata:0x803E5958; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata:0x803E595C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5964; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E596C; // type:object size:0x8 scope:local align:4 +@1871 = .sdata:0x803E5974; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7BaseInf = .sdata:0x803E597C; // type:object size:0x8 scope:local align:4 +__RTTI__11CreatureInf = .sdata:0x803E5984; // type:object size:0x8 scope:local align:4 +@1877 = .sdata:0x803E598C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6InfMgr = .sdata:0x803E5994; // type:object size:0x8 scope:local align:4 +__RTTI__10MonoInfMgr = .sdata:0x803E599C; // type:object size:0x8 scope:local align:4 +__RTTI__14CreatureInfMgr = .sdata:0x803E59A4; // type:object size:0x8 scope:local align:4 +__RTTI__11BPikiInfMgr = .sdata:0x803E59AC; // type:object size:0x8 scope:local align:4 +__RTTI__8BPikiInf = .sdata:0x803E59B4; // type:object size:0x8 scope:local align:4 +@2367 = .sdata:0x803E59C0; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata:0x803E59C4; // type:object size:0x4 scope:local align:4 data:float +@2369 = .sdata:0x803E59C8; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata:0x803E59CC; // type:object size:0x4 scope:local align:4 data:float +@3707 = .sdata:0x803E59D0; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata:0x803E59D4; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata:0x803E59D8; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata:0x803E59DC; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata:0x803E59E0; // type:object size:0x4 scope:local align:4 data:float +@4382 = .sdata:0x803E59E4; // type:object size:0x4 scope:local align:4 data:float +@4431 = .sdata:0x803E59E8; // type:object size:0x4 scope:local align:4 data:float +@4432 = .sdata:0x803E59EC; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata:0x803E59F0; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata:0x803E59F4; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata:0x803E59F8; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata:0x803E59FC; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata:0x803E5A00; // type:object size:0x7 scope:local align:4 data:string +@5110 = .sdata:0x803E5A08; // type:object size:0x5 scope:local align:4 data:string +@5111 = .sdata:0x803E5A10; // type:object size:0x5 scope:local align:4 data:string +@5112 = .sdata:0x803E5A18; // type:object size:0x7 scope:local align:4 data:string +@5113 = .sdata:0x803E5A20; // type:object size:0x6 scope:local align:4 data:string +@5114 = .sdata:0x803E5A28; // type:object size:0x5 scope:local align:4 data:string +@5117 = .sdata:0x803E5A30; // type:object size:0x7 scope:local align:4 data:string +@5118 = .sdata:0x803E5A38; // type:object size:0x7 scope:local align:4 data:string +@5119 = .sdata:0x803E5A40; // type:object size:0x8 scope:local align:4 data:string +@5120 = .sdata:0x803E5A48; // type:object size:0x7 scope:local align:4 data:string +@5122 = .sdata:0x803E5A50; // type:object size:0x5 scope:local align:4 data:string +@5123 = .sdata:0x803E5A58; // type:object size:0x4 scope:local align:4 data:string +@5147 = .sdata:0x803E5A5C; // type:object size:0x8 scope:local align:4 data:string +@5149 = .sdata:0x803E5A64; // type:object size:0x5 scope:local align:4 data:string +@5150 = .sdata:0x803E5A6C; // type:object size:0x4 scope:local align:4 data:string +@5151 = .sdata:0x803E5A70; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19StateMachine<4Piki> = .sdata:0x803E5A78; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E5A80; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E5A88; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E5A90; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E5A98; // type:object size:0x8 scope:local align:4 +@5405 = .sdata:0x803E5AA0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E5AA8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E5AB0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E5AB8; // type:object size:0x8 scope:local align:4 +__RTTI__4Piki = .sdata:0x803E5AC0; // type:object size:0x8 scope:local align:4 +@1584 = .sdata:0x803E5AC8; // type:object size:0x4 scope:local align:4 data:string +@1588 = .sdata:0x803E5ACC; // type:object size:0x4 scope:local align:4 data:string +@1589 = .sdata:0x803E5AD0; // type:object size:0x4 scope:local align:4 data:string +@1591 = .sdata:0x803E5AD4; // type:object size:0x4 scope:local align:4 data:string +@1595 = .sdata:0x803E5AD8; // type:object size:0x4 scope:local align:4 data:string +@1600 = .sdata:0x803E5ADC; // type:object size:0x7 scope:local align:4 data:string +@1913 = .sdata:0x803E5AE4; // type:object size:0x4 scope:local align:4 data:4byte +@1915 = .sdata:0x803E5AE8; // type:object size:0x4 scope:local align:4 data:4byte +@1917 = .sdata:0x803E5AEC; // type:object size:0x4 scope:local align:4 data:4byte +@1919 = .sdata:0x803E5AF0; // type:object size:0x4 scope:local align:4 data:4byte +@1921 = .sdata:0x803E5AF4; // type:object size:0x4 scope:local align:4 data:4byte +@1922 = .sdata:0x803E5AF8; // type:object size:0x4 scope:local align:4 data:4byte +@1924 = .sdata:0x803E5AFC; // type:object size:0x4 scope:local align:4 data:4byte +@1926 = .sdata:0x803E5B00; // type:object size:0x4 scope:local align:4 data:4byte +@1928 = .sdata:0x803E5B04; // type:object size:0x4 scope:local align:4 data:4byte +@1930 = .sdata:0x803E5B08; // type:object size:0x4 scope:local align:4 data:4byte +@1932 = .sdata:0x803E5B0C; // type:object size:0x4 scope:local align:4 data:4byte +@1933 = .sdata:0x803E5B10; // type:object size:0x4 scope:local align:4 data:4byte +@1934 = .sdata:0x803E5B14; // type:object size:0x4 scope:local align:4 data:4byte +@1935 = .sdata:0x803E5B18; // type:object size:0x4 scope:local align:4 data:4byte +@1937 = .sdata:0x803E5B1C; // type:object size:0x4 scope:local align:4 data:4byte +@1939 = .sdata:0x803E5B20; // type:object size:0x4 scope:local align:4 data:4byte +@1941 = .sdata:0x803E5B24; // type:object size:0x4 scope:local align:4 data:4byte +@1943 = .sdata:0x803E5B28; // type:object size:0x4 scope:local align:4 data:4byte +@1945 = .sdata:0x803E5B2C; // type:object size:0x4 scope:local align:4 data:4byte +@1946 = .sdata:0x803E5B30; // type:object size:0x4 scope:local align:4 data:4byte +@1948 = .sdata:0x803E5B34; // type:object size:0x4 scope:local align:4 data:4byte +@1949 = .sdata:0x803E5B38; // type:object size:0x4 scope:local align:4 data:4byte +@1951 = .sdata:0x803E5B3C; // type:object size:0x4 scope:local align:4 data:4byte +@1953 = .sdata:0x803E5B40; // type:object size:0x4 scope:local align:4 data:4byte +@1954 = .sdata:0x803E5B44; // type:object size:0x4 scope:local align:4 data:4byte +@1956 = .sdata:0x803E5B48; // type:object size:0x4 scope:local align:4 data:4byte +@1958 = .sdata:0x803E5B4C; // type:object size:0x4 scope:local align:4 data:4byte +@1959 = .sdata:0x803E5B50; // type:object size:0x4 scope:local align:4 data:4byte +@1960 = .sdata:0x803E5B54; // type:object size:0x4 scope:local align:4 data:4byte +@1961 = .sdata:0x803E5B58; // type:object size:0x4 scope:local align:4 data:4byte +@1962 = .sdata:0x803E5B5C; // type:object size:0x4 scope:local align:4 data:4byte +@1964 = .sdata:0x803E5B60; // type:object size:0x4 scope:local align:4 data:4byte +@1965 = .sdata:0x803E5B64; // type:object size:0x4 scope:local align:4 data:4byte +@1966 = .sdata:0x803E5B68; // type:object size:0x4 scope:local align:4 data:4byte +@1968 = .sdata:0x803E5B6C; // type:object size:0x4 scope:local align:4 data:4byte +@1970 = .sdata:0x803E5B70; // type:object size:0x4 scope:local align:4 data:4byte +@1972 = .sdata:0x803E5B74; // type:object size:0x4 scope:local align:4 data:4byte +@1973 = .sdata:0x803E5B78; // type:object size:0x4 scope:local align:4 data:4byte +@1974 = .sdata:0x803E5B7C; // type:object size:0x4 scope:local align:4 data:4byte +@1976 = .sdata:0x803E5B80; // type:object size:0x4 scope:local align:4 data:4byte +@1978 = .sdata:0x803E5B84; // type:object size:0x4 scope:local align:4 data:4byte +@1979 = .sdata:0x803E5B88; // type:object size:0x4 scope:local align:4 data:4byte +@1980 = .sdata:0x803E5B8C; // type:object size:0x4 scope:local align:4 data:4byte +@1981 = .sdata:0x803E5B90; // type:object size:0x4 scope:local align:4 data:4byte +@1982 = .sdata:0x803E5B94; // type:object size:0x4 scope:local align:4 data:4byte +@1984 = .sdata:0x803E5B98; // type:object size:0x4 scope:local align:4 data:4byte +@1985 = .sdata:0x803E5B9C; // type:object size:0x4 scope:local align:4 data:4byte +@1986 = .sdata:0x803E5BA0; // type:object size:0x4 scope:local align:4 data:4byte +@1987 = .sdata:0x803E5BA4; // type:object size:0x4 scope:local align:4 data:4byte +@1988 = .sdata:0x803E5BA8; // type:object size:0x4 scope:local align:4 data:4byte +@1989 = .sdata:0x803E5BAC; // type:object size:0x4 scope:local align:4 data:4byte +@1990 = .sdata:0x803E5BB0; // type:object size:0x4 scope:local align:4 data:4byte +@1991 = .sdata:0x803E5BB4; // type:object size:0x4 scope:local align:4 data:4byte +@1992 = .sdata:0x803E5BB8; // type:object size:0x4 scope:local align:4 data:4byte +@1994 = .sdata:0x803E5BBC; // type:object size:0x4 scope:local align:4 data:4byte +@1995 = .sdata:0x803E5BC0; // type:object size:0x4 scope:local align:4 data:4byte +@1996 = .sdata:0x803E5BC4; // type:object size:0x4 scope:local align:4 data:4byte +@1997 = .sdata:0x803E5BC8; // type:object size:0x4 scope:local align:4 data:4byte +@1998 = .sdata:0x803E5BCC; // type:object size:0x4 scope:local align:4 data:4byte +@1999 = .sdata:0x803E5BD0; // type:object size:0x4 scope:local align:4 data:4byte +@2001 = .sdata:0x803E5BD4; // type:object size:0x4 scope:local align:4 data:4byte +@2002 = .sdata:0x803E5BD8; // type:object size:0x4 scope:local align:4 data:4byte +@2003 = .sdata:0x803E5BDC; // type:object size:0x4 scope:local align:4 data:4byte +@2005 = .sdata:0x803E5BE0; // type:object size:0x4 scope:local align:4 data:4byte +@2007 = .sdata:0x803E5BE4; // type:object size:0x4 scope:local align:4 data:4byte +@2008 = .sdata:0x803E5BE8; // type:object size:0x4 scope:local align:4 data:4byte +@2010 = .sdata:0x803E5BEC; // type:object size:0x4 scope:local align:4 data:4byte +@2011 = .sdata:0x803E5BF0; // type:object size:0x4 scope:local align:4 data:4byte +@2012 = .sdata:0x803E5BF4; // type:object size:0x4 scope:local align:4 data:4byte +@2013 = .sdata:0x803E5BF8; // type:object size:0x4 scope:local align:4 data:4byte +@2015 = .sdata:0x803E5BFC; // type:object size:0x4 scope:local align:4 data:4byte +@2017 = .sdata:0x803E5C00; // type:object size:0x4 scope:local align:4 data:4byte +@2018 = .sdata:0x803E5C04; // type:object size:0x4 scope:local align:4 data:4byte +@2019 = .sdata:0x803E5C08; // type:object size:0x4 scope:local align:4 data:4byte +@2020 = .sdata:0x803E5C0C; // type:object size:0x4 scope:local align:4 data:4byte +@2021 = .sdata:0x803E5C10; // type:object size:0x4 scope:local align:4 data:4byte +@2023 = .sdata:0x803E5C14; // type:object size:0x4 scope:local align:4 data:4byte +@2037 = .sdata:0x803E5C18; // type:object size:0x8 scope:local align:4 data:string +@2139 = .sdata:0x803E5C20; // type:object size:0x8 scope:local align:4 data:string +@2141 = .sdata:0x803E5C28; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E5C30; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E5C38; // type:object size:0x8 scope:local align:4 +@2144 = .sdata:0x803E5C40; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E5C48; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E5C50; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E5C58; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E5C60; // type:object size:0x8 scope:local align:4 +__RTTI__7PikiMgr = .sdata:0x803E5C68; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E5C70; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E5C78; // type:object size:0x8 scope:local align:4 +__RTTI__8PikiProp = .sdata:0x803E5C80; // type:object size:0x8 scope:local align:4 +@2626 = .sdata:0x803E5C88; // type:object size:0x7 scope:local align:4 data:string +@2635 = .sdata:0x803E5C90; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E5C94; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata:0x803E5C98; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata:0x803E5C9C; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata:0x803E5CA0; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata:0x803E5CA4; // type:object size:0x7 scope:local align:4 data:string +@2743 = .sdata:0x803E5CAC; // type:object size:0x7 scope:local align:4 data:string +@2751 = .sdata:0x803E5CB4; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata:0x803E5CB8; // type:object size:0x4 scope:local align:4 data:float +@2753 = .sdata:0x803E5CBC; // type:object size:0x4 scope:local align:4 data:float +@2788 = .sdata:0x803E5CC0; // type:object size:0x6 scope:local align:4 data:string +@2795 = .sdata:0x803E5CC8; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E5CCC; // type:object size:0x4 scope:local align:4 data:float +@2797 = .sdata:0x803E5CD0; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata:0x803E5CD4; // type:object size:0x4 scope:local align:4 data:float +@2801 = .sdata:0x803E5CD8; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E5CDC; // type:object size:0x4 scope:local align:4 data:float +@2835 = .sdata:0x803E5CE0; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata:0x803E5CE4; // type:object size:0x4 scope:local align:4 data:float +@2846 = .sdata:0x803E5CE8; // type:object size:0x4 scope:local align:4 data:float +@2847 = .sdata:0x803E5CEC; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata:0x803E5CF0; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata:0x803E5CF4; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata:0x803E5CF8; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata:0x803E5CFC; // type:object size:0x7 scope:local align:4 data:string +@3016 = .sdata:0x803E5D04; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata:0x803E5D08; // type:object size:0x4 scope:local align:4 data:float +@3091 = .sdata:0x803E5D0C; // type:object size:0x4 scope:local align:4 data:float +@3092 = .sdata:0x803E5D10; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata:0x803E5D14; // type:object size:0x4 scope:local align:4 data:float +@3094 = .sdata:0x803E5D18; // type:object size:0x4 scope:local align:4 data:float +@3095 = .sdata:0x803E5D1C; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E5D20; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E5D24; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E5D28; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata:0x803E5D2C; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata:0x803E5D30; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata:0x803E5D34; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata:0x803E5D38; // type:object size:0x4 scope:local align:4 data:float +@3122 = .sdata:0x803E5D3C; // type:object size:0x4 scope:local align:4 data:float +@3123 = .sdata:0x803E5D40; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata:0x803E5D44; // type:object size:0x7 scope:local align:4 data:string +@3444 = .sdata:0x803E5D4C; // type:object size:0x6 scope:local align:4 data:string +@3503 = .sdata:0x803E5D54; // type:object size:0x7 scope:local align:4 data:string +@3624 = .sdata:0x803E5D5C; // type:object size:0x6 scope:local align:4 data:string +@3654 = .sdata:0x803E5D64; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata:0x803E5D68; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata:0x803E5D6C; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata:0x803E5D70; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata:0x803E5D74; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata:0x803E5D78; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata:0x803E5D7C; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E5D80; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E5D84; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata:0x803E5D88; // type:object size:0x6 scope:local align:4 data:string +@3780 = .sdata:0x803E5D90; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata:0x803E5D94; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata:0x803E5D98; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata:0x803E5D9C; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata:0x803E5DA0; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata:0x803E5DA4; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata:0x803E5DA8; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata:0x803E5DAC; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata:0x803E5DB0; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata:0x803E5DB4; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata:0x803E5DB8; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata:0x803E5DC0; // type:object size:0x6 scope:local align:4 data:string +@3962 = .sdata:0x803E5DC8; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata:0x803E5DCC; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata:0x803E5DD0; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata:0x803E5DD4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata:0x803E5DD8; // type:object size:0x7 scope:local align:4 data:string +@4183 = .sdata:0x803E5DE0; // type:object size:0x7 scope:local align:4 data:string +@4188 = .sdata:0x803E5DE8; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata:0x803E5DEC; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata:0x803E5DF0; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata:0x803E5DF4; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata:0x803E5DF8; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata:0x803E5DFC; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata:0x803E5E00; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata:0x803E5E04; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata:0x803E5E08; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata:0x803E5E0C; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata:0x803E5E10; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata:0x803E5E14; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata:0x803E5E18; // type:object size:0x5 scope:local align:4 data:string +@4264 = .sdata:0x803E5E20; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata:0x803E5E24; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata:0x803E5E28; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata:0x803E5E2C; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata:0x803E5E30; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata:0x803E5E34; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata:0x803E5E38; // type:object size:0x7 scope:local align:4 data:string +@4625 = .sdata:0x803E5E40; // type:object size:0x5 scope:local align:4 data:string +@4655 = .sdata:0x803E5E48; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata:0x803E5E4C; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata:0x803E5E50; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata:0x803E5E54; // type:object size:0x4 scope:local align:4 data:float +@4659 = .sdata:0x803E5E58; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata:0x803E5E5C; // type:object size:0x4 scope:local align:4 data:float +@4686 = .sdata:0x803E5E60; // type:object size:0x7 scope:local align:4 data:string +@4703 = .sdata:0x803E5E68; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata:0x803E5E6C; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata:0x803E5E70; // type:object size:0x4 scope:local align:4 data:float +@4706 = .sdata:0x803E5E74; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata:0x803E5E78; // type:object size:0x4 scope:local align:4 data:float +@4708 = .sdata:0x803E5E7C; // type:object size:0x4 scope:local align:4 data:float +@4734 = .sdata:0x803E5E80; // type:object size:0x5 scope:local align:4 data:string +@4751 = .sdata:0x803E5E88; // type:object size:0x5 scope:local align:4 data:string +@4760 = .sdata:0x803E5E90; // type:object size:0x4 scope:local align:4 data:float +@4894 = .sdata:0x803E5E94; // type:object size:0x5 scope:local align:4 data:string +@4902 = .sdata:0x803E5E9C; // type:object size:0x4 scope:local align:4 data:float +@4924 = .sdata:0x803E5EA0; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata:0x803E5EA4; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata:0x803E5EA8; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata:0x803E5EAC; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata:0x803E5EB0; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata:0x803E5EB4; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata:0x803E5EB8; // type:object size:0x4 scope:local align:4 data:float +@4931 = .sdata:0x803E5EBC; // type:object size:0x4 scope:local align:4 data:float +@4932 = .sdata:0x803E5EC0; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata:0x803E5EC4; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata:0x803E5EC8; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata:0x803E5ECC; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E5ED0; // type:object size:0x7 scope:local align:4 data:string +@4971 = .sdata:0x803E5ED8; // type:object size:0x4 scope:local align:4 data:float +@4972 = .sdata:0x803E5EDC; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata:0x803E5EE0; // type:object size:0x4 scope:local align:4 data:float +@4974 = .sdata:0x803E5EE4; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata:0x803E5EE8; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata:0x803E5EEC; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata:0x803E5EF0; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata:0x803E5EF4; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata:0x803E5EF8; // type:object size:0x4 scope:local align:4 data:float +@5045 = .sdata:0x803E5EFC; // type:object size:0x4 scope:local align:4 data:float +@5046 = .sdata:0x803E5F00; // type:object size:0x4 scope:local align:4 data:float +@5047 = .sdata:0x803E5F04; // type:object size:0x4 scope:local align:4 data:float +@5048 = .sdata:0x803E5F08; // type:object size:0x4 scope:local align:4 data:float +@5049 = .sdata:0x803E5F0C; // type:object size:0x4 scope:local align:4 data:float +@5050 = .sdata:0x803E5F10; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata:0x803E5F14; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata:0x803E5F18; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata:0x803E5F1C; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata:0x803E5F20; // type:object size:0x8 scope:local align:4 data:string +@5085 = .sdata:0x803E5F28; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata:0x803E5F2C; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata:0x803E5F30; // type:object size:0x4 scope:local align:4 data:float +@5104 = .sdata:0x803E5F34; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata:0x803E5F38; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata:0x803E5F3C; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata:0x803E5F40; // type:object size:0x4 scope:local align:4 data:float +@5138 = .sdata:0x803E5F44; // type:object size:0x6 scope:local align:4 data:string +@5152 = .sdata:0x803E5F4C; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata:0x803E5F50; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata:0x803E5F54; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata:0x803E5F58; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata:0x803E5F5C; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata:0x803E5F60; // type:object size:0x4 scope:local align:4 data:float +@5172 = .sdata:0x803E5F64; // type:object size:0x5 scope:local align:4 data:string +@5178 = .sdata:0x803E5F6C; // type:object size:0x4 scope:local align:4 data:float +@5179 = .sdata:0x803E5F70; // type:object size:0x4 scope:local align:4 data:float +@5180 = .sdata:0x803E5F74; // type:object size:0x4 scope:local align:4 data:float +@5181 = .sdata:0x803E5F78; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata:0x803E5F7C; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata:0x803E5F80; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata:0x803E5F84; // type:object size:0x4 scope:local align:4 data:float +@5195 = .sdata:0x803E5F88; // type:object size:0x4 scope:local align:4 data:float +@5196 = .sdata:0x803E5F8C; // type:object size:0x4 scope:local align:4 data:float +@5205 = .sdata:0x803E5F90; // type:object size:0x8 scope:local align:4 data:string +@5328 = .sdata:0x803E5F98; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata:0x803E5F9C; // type:object size:0x4 scope:local align:4 data:float +@5330 = .sdata:0x803E5FA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Piki> = .sdata:0x803E5FA4; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Piki> = .sdata:0x803E5FAC; // type:object size:0x8 scope:local align:4 +__RTTI__9PikiState = .sdata:0x803E5FB4; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiEmotionState = .sdata:0x803E5FBC; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiDeadState = .sdata:0x803E5FC4; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDyingState = .sdata:0x803E5FCC; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiPressedState = .sdata:0x803E5FD4; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiAutoNukiState = .sdata:0x803E5FDC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNukareState = .sdata:0x803E5FE4; // type:object size:0x8 scope:local align:4 +__RTTI__19PikiNukareWaitState = .sdata:0x803E5FEC; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiBuryState = .sdata:0x803E5FF4; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiPushPikiState = .sdata:0x803E5FFC; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiPushState = .sdata:0x803E6004; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiWaveState = .sdata:0x803E600C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGrowupState = .sdata:0x803E6014; // type:object size:0x8 scope:local align:4 +__RTTI__21PikiKinokoChangeState = .sdata:0x803E601C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiGrowState = .sdata:0x803E6024; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiFlyingState = .sdata:0x803E602C; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiEmitState = .sdata:0x803E6034; // type:object size:0x8 scope:local align:4 +__RTTI__20PikiWaterHangedState = .sdata:0x803E603C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiHangedState = .sdata:0x803E6044; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiGoHangState = .sdata:0x803E604C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiCliffState = .sdata:0x803E6054; // type:object size:0x8 scope:local align:4 +__RTTI__13PikiFallState = .sdata:0x803E605C; // type:object size:0x8 scope:local align:4 +__RTTI__17PikiFallMeckState = .sdata:0x803E6064; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlownState = .sdata:0x803E606C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFlickState = .sdata:0x803E6074; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBulletState = .sdata:0x803E607C; // type:object size:0x8 scope:local align:4 +__RTTI__18PikiSwallowedState = .sdata:0x803E6084; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiFiredState = .sdata:0x803E608C; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiBubbleState = .sdata:0x803E6094; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiKinokoState = .sdata:0x803E609C; // type:object size:0x8 scope:local align:4 +__RTTI__14PikiDrownState = .sdata:0x803E60A4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiAbsorbState = .sdata:0x803E60AC; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiNormalState = .sdata:0x803E60B4; // type:object size:0x8 scope:local align:4 +__RTTI__15PikiLookAtState = .sdata:0x803E60BC; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Piki> = .sdata:0x803E60C4; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiStateMachine = .sdata:0x803E60CC; // type:object size:0x8 scope:local align:4 +firstTime__15PikiShapeObject = .sdata:0x803E60D8; // type:object size:0x1 scope:global align:1 data:byte +@1610 = .sdata:0x803E60DC; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E60E0; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E60E4; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803E60E8; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803E60EC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E60F0; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E60F4; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata:0x803E60F8; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata:0x803E60FC; // type:object size:0x4 scope:local align:4 data:float +@1711 = .sdata:0x803E6100; // type:object size:0x4 scope:local align:4 data:float +@1716 = .sdata:0x803E6104; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata:0x803E6108; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803E610C; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata:0x803E6110; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata:0x803E6114; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata:0x803E6118; // type:object size:0x4 scope:local align:4 data:float +@1730 = .sdata:0x803E611C; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata:0x803E6120; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E6124; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata:0x803E6128; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata:0x803E612C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata:0x803E6130; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata:0x803E6134; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata:0x803E6138; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata:0x803E613C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata:0x803E6140; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata:0x803E6144; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata:0x803E6148; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata:0x803E614C; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata:0x803E6150; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata:0x803E6154; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata:0x803E6158; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata:0x803E615C; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata:0x803E6160; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata:0x803E6164; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata:0x803E6168; // type:object size:0x2 scope:local align:4 data:string +@1991 = .sdata:0x803E616C; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803E6170; // type:object size:0x2 scope:local align:4 data:string +@1993 = .sdata:0x803E6174; // type:object size:0x2 scope:local align:4 data:string +@1994 = .sdata:0x803E6178; // type:object size:0x2 scope:local align:4 data:string +@1995 = .sdata:0x803E617C; // type:object size:0x2 scope:local align:4 data:string +@2063 = .sdata:0x803E6180; // type:object size:0x5 scope:local align:4 data:string +@2135 = .sdata:0x803E6188; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata:0x803E618C; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata:0x803E6190; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata:0x803E6194; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata:0x803E6198; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata:0x803E619C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E61A0; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E61A8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E61B0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E61B8; // type:object size:0x8 scope:local align:4 +@2307 = .sdata:0x803E61C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Piki = .sdata:0x803E61C8; // type:object size:0x8 scope:local align:4 +__RTTI__8ViewPiki = .sdata:0x803E61D0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E61D8; // type:object size:0x8 scope:local align:4 +__RTTI__13CndStickMouth = .sdata:0x803E61E0; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAtari = .sdata:0x803E61E8; // type:object size:0x8 scope:local align:4 +__RTTI__12CndIsVisible = .sdata:0x803E61F0; // type:object size:0x8 scope:local align:4 +@1700 = .sdata:0x803E61F8; // type:object size:0x4 scope:local align:4 data:4byte +@1701 = .sdata:0x803E61FC; // type:object size:0x4 scope:local align:4 data:4byte +@1791 = .sdata:0x803E6200; // type:object size:0x4 scope:local align:4 data:string +@1792 = .sdata:0x803E6204; // type:object size:0x4 scope:local align:4 data:string +@1793 = .sdata:0x803E6208; // type:object size:0x4 scope:local align:4 data:4byte +@2060 = .sdata:0x803E620C; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata:0x803E6210; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata:0x803E6214; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata:0x803E6218; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803E6220; // type:object size:0x6 scope:local align:4 data:string +@2077 = .sdata:0x803E6228; // type:object size:0x1 scope:local align:4 +@2079 = .sdata:0x803E622C; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E6230; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E6234; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E6238; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E623C; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E6240; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E6244; // type:object size:0x5 scope:local align:4 +@2236 = .sdata:0x803E624C; // type:object size:0x5 scope:local align:4 +@2255 = .sdata:0x803E6254; // type:object size:0x4 scope:local align:4 data:float +@2256 = .sdata:0x803E6258; // type:object size:0x4 scope:local align:4 data:float +@2257 = .sdata:0x803E625C; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata:0x803E6260; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata:0x803E6264; // type:object size:0x4 scope:local align:4 data:float +@2475 = .sdata:0x803E6268; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata:0x803E626C; // type:object size:0x7 scope:local align:4 data:string +@2801 = .sdata:0x803E6274; // type:object size:0x4 scope:local align:4 data:float +@2802 = .sdata:0x803E6278; // type:object size:0x4 scope:local align:4 data:float +@2803 = .sdata:0x803E627C; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata:0x803E6280; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata:0x803E6284; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E6288; // type:object size:0x4 scope:local align:4 data:float +@2897 = .sdata:0x803E628C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E6290; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E6294; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E6298; // type:object size:0x4 scope:local align:4 data:float +@2939 = .sdata:0x803E629C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E62A0; // type:object size:0x8 scope:local align:4 +@3004 = .sdata:0x803E62A8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E62B0; // type:object size:0x8 scope:local align:4 +@3006 = .sdata:0x803E62B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenArea = .sdata:0x803E62C0; // type:object size:0x8 scope:local align:4 +__RTTI__13GenAreaCircle = .sdata:0x803E62C8; // type:object size:0x8 scope:local align:4 +__RTTI__12GenAreaPoint = .sdata:0x803E62D0; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E62D8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenType = .sdata:0x803E62E0; // type:object size:0x8 scope:local align:4 +__RTTI__15GenTypeInitRand = .sdata:0x803E62E8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenTypeAtOnce = .sdata:0x803E62F0; // type:object size:0x8 scope:local align:4 +__RTTI__10GenTypeOne = .sdata:0x803E62F8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E6300; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectPiki = .sdata:0x803E6308; // type:object size:0x8 scope:local align:4 +@3032 = .sdata:0x803E6310; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6318; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6320; // type:object size:0x8 scope:local align:4 +@3035 = .sdata:0x803E6328; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6330; // type:object size:0x8 scope:local align:4 +__RTTI__12GeneratorMgr = .sdata:0x803E6338; // type:object size:0x8 scope:local align:4 +__RTTI__9Generator = .sdata:0x803E6340; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6348; // type:object size:0x8 scope:local align:4 +@1107 = .sdata:0x803E6350; // type:object size:0x1 scope:local align:4 +@1540 = .sdata:0x803E6354; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6Stream = .sdata:0x803E635C; // type:object size:0x8 scope:local align:4 +__RTTI__18RandomAccessStream = .sdata:0x803E6364; // type:object size:0x8 scope:local align:4 +@1557 = .sdata:0x803E636C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6374; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E637C; // type:object size:0x8 scope:local align:4 +__RTTI__Q214GeneratorCache5Cache = .sdata:0x803E6384; // type:object size:0x8 scope:local align:4 +@1213 = .sdata:0x803E6390; // type:object size:0x7 scope:local align:4 data:string +@1987 = .sdata:0x803E6398; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E63A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E63A8; // type:object size:0x8 scope:local align:4 +@1990 = .sdata:0x803E63B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E63B8; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E63C0; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E63C8; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E63D0; // type:object size:0x8 scope:local align:4 +__RTTI__13PolyObjectMgr = .sdata:0x803E63D8; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E63E0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E63E8; // type:object size:0x8 scope:local align:4 +__RTTI__12SearchBuffer = .sdata:0x803E63F0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E63F8; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803E6400; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E6404; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata:0x803E6408; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803E640C; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803E6410; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803E6414; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803E6418; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803E641C; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata:0x803E6420; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata:0x803E6424; // type:object size:0x4 scope:local align:4 data:float +@1263 = .sdata:0x803E6428; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803E642C; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803E6430; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803E6434; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E6438; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata:0x803E643C; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata:0x803E6440; // type:object size:0x4 scope:local align:4 data:float +@1344 = .sdata:0x803E6444; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803E6448; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata:0x803E644C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6454; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E645C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6464; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E646C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6474; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E647C; // type:object size:0x8 scope:local align:4 +__RTTI__4Weed = .sdata:0x803E6484; // type:object size:0x8 scope:local align:4 +__RTTI__8WeedsGen = .sdata:0x803E648C; // type:object size:0x8 scope:local align:4 +__RTTI__8GrassGen = .sdata:0x803E6494; // type:object size:0x8 scope:local align:4 +@1450 = .sdata:0x803E649C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7RockGen = .sdata:0x803E64A4; // type:object size:0x8 scope:local align:4 +@924 = .sdata:0x803E64B0; // type:object size:0x4 scope:local align:4 data:float +@925 = .sdata:0x803E64B4; // type:object size:0x4 scope:local align:4 data:float +@926 = .sdata:0x803E64B8; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata:0x803E64BC; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata:0x803E64C0; // type:object size:0x4 scope:local align:4 data:float +@949 = .sdata:0x803E64C4; // type:object size:0x4 scope:local align:4 data:float +@950 = .sdata:0x803E64C8; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata:0x803E64CC; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata:0x803E64D0; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata:0x803E64D4; // type:object size:0x4 scope:local align:4 data:float +@954 = .sdata:0x803E64D8; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E64DC; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E64E0; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata:0x803E64E4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E64E8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E64F0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E64F8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6500; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6508; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6510; // type:object size:0x8 scope:local align:4 +__RTTI__10BoBaseItem = .sdata:0x803E6518; // type:object size:0x8 scope:local align:4 +__RTTI__8KusaItem = .sdata:0x803E6520; // type:object size:0x8 scope:local align:4 +@897 = .sdata:0x803E6528; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata:0x803E652C; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata:0x803E6530; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E6534; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata:0x803E6538; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata:0x803E653C; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata:0x803E6540; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata:0x803E6544; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata:0x803E6548; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata:0x803E654C; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata:0x803E6550; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata:0x803E6554; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata:0x803E6558; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata:0x803E655C; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata:0x803E6560; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata:0x803E6564; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata:0x803E6568; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata:0x803E656C; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata:0x803E6570; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata:0x803E6574; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata:0x803E6578; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata:0x803E657C; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata:0x803E6580; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6584; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E658C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6594; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E659C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E65A4; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E65AC; // type:object size:0x8 scope:local align:4 +__RTTI__13FishGenerator = .sdata:0x803E65B4; // type:object size:0x8 scope:local align:4 +numKeys = .sdata:0x803E65C0; // type:object size:0x4 scope:local align:4 data:4byte +@1744 = .sdata:0x803E65C4; // type:object size:0x4 scope:local align:4 data:float +@1745 = .sdata:0x803E65C8; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803E65CC; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803E65D0; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata:0x803E65D4; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata:0x803E65D8; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata:0x803E65DC; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata:0x803E65E0; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata:0x803E65E4; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata:0x803E65E8; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata:0x803E65EC; // type:object size:0x4 scope:local align:4 data:float +@1814 = .sdata:0x803E65F0; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata:0x803E65F4; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata:0x803E65F8; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata:0x803E65FC; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata:0x803E6600; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata:0x803E6604; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata:0x803E6608; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata:0x803E660C; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata:0x803E6610; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata:0x803E6614; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata:0x803E6618; // type:object size:0x4 scope:local align:4 data:float +@2164 = .sdata:0x803E661C; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata:0x803E6620; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata:0x803E6624; // type:object size:0x4 scope:local align:4 data:float +@2171 = .sdata:0x803E6628; // type:object size:0x4 scope:local align:4 data:float +@2172 = .sdata:0x803E662C; // type:object size:0x4 scope:local align:4 data:float +@2173 = .sdata:0x803E6630; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata:0x803E6634; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata:0x803E6638; // type:object size:0x4 scope:local align:4 data:float +@2176 = .sdata:0x803E663C; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata:0x803E6640; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E6644; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E6648; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E664C; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E6650; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E6654; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata:0x803E6658; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata:0x803E665C; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803E6660; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803E6664; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803E6668; // type:object size:0x4 scope:local align:4 data:float +@2200 = .sdata:0x803E666C; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata:0x803E6670; // type:object size:0x4 scope:local align:4 data:float +@2231 = .sdata:0x803E6674; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata:0x803E6678; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata:0x803E667C; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata:0x803E6680; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata:0x803E6684; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E6688; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E668C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E6690; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata:0x803E6694; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata:0x803E6698; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata:0x803E669C; // type:object size:0x4 scope:local align:4 data:float +@2244 = .sdata:0x803E66A0; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata:0x803E66A4; // type:object size:0x4 scope:local align:4 data:float +@2246 = .sdata:0x803E66A8; // type:object size:0x4 scope:local align:4 data:float +@2247 = .sdata:0x803E66AC; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata:0x803E66B0; // type:object size:0x4 scope:local align:4 data:float +@2249 = .sdata:0x803E66B4; // type:object size:0x4 scope:local align:4 data:float +@2261 = .sdata:0x803E66B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E66BC; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E66C4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E66CC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E66D4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E66DC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E66E4; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E66EC; // type:object size:0x8 scope:local align:4 +@2379 = .sdata:0x803E66F4; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7UfoItem = .sdata:0x803E66FC; // type:object size:0x8 scope:local align:4 +@932 = .sdata:0x803E6708; // type:object size:0x5 scope:local align:4 data:string +@933 = .sdata:0x803E6710; // type:object size:0x8 scope:local align:4 data:string +@934 = .sdata:0x803E6718; // type:object size:0x7 scope:local align:4 data:string +@935 = .sdata:0x803E6720; // type:object size:0x8 scope:local align:4 data:string +@936 = .sdata:0x803E6728; // type:object size:0x8 scope:local align:4 data:string +@937 = .sdata:0x803E6730; // type:object size:0x7 scope:local align:4 data:string +@938 = .sdata:0x803E6738; // type:object size:0x8 scope:local align:4 data:string +@939 = .sdata:0x803E6740; // type:object size:0x7 scope:local align:4 data:string +@940 = .sdata:0x803E6748; // type:object size:0x8 scope:local align:4 data:string +@941 = .sdata:0x803E6750; // type:object size:0x8 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E6758; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E6760; // type:object size:0x8 scope:local align:4 +__RTTI__15PaniUfoAnimator = .sdata:0x803E6768; // type:object size:0x8 scope:local align:4 +@1308 = .sdata:0x803E6770; // type:object size:0x4 scope:local align:4 data:float +@1309 = .sdata:0x803E6774; // type:object size:0x4 scope:local align:4 data:float +@1310 = .sdata:0x803E6778; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E677C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6784; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E678C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6794; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E679C; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E67A4; // type:object size:0x8 scope:local align:4 +__RTTI__8BombItem = .sdata:0x803E67AC; // type:object size:0x8 scope:local align:4 +@1494 = .sdata:0x803E67B8; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata:0x803E67BC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata:0x803E67C0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata:0x803E67C4; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata:0x803E67C8; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E67CC; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata:0x803E67D0; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803E67D4; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803E67D8; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803E67DC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803E67E0; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata:0x803E67E4; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803E67E8; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803E67EC; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata:0x803E67F0; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803E67F4; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata:0x803E67F8; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E67FC; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803E6800; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata:0x803E6804; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata:0x803E6808; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata:0x803E680C; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata:0x803E6810; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata:0x803E6814; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata:0x803E6818; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen58CallBack2 = .sdata:0x803E681C; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6824; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E682C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6834; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E683C; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6844; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E684C; // type:object size:0x8 scope:local align:4 +__RTTI__8Suckable = .sdata:0x803E6854; // type:object size:0x8 scope:local align:4 +__RTTI__8GoalItem = .sdata:0x803E685C; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E6868; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E686C; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803E6870; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata:0x803E6874; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata:0x803E6878; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata:0x803E687C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803E6880; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata:0x803E6884; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata:0x803E6888; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata:0x803E688C; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata:0x803E6890; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata:0x803E6894; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata:0x803E6898; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E689C; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E68A4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E68AC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E68B4; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E68BC; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E68C4; // type:object size:0x8 scope:local align:4 +__RTTI__12PikiHeadItem = .sdata:0x803E68CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E68D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E68DC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E68E4; // type:object size:0x8 scope:local align:4 +@956 = .sdata:0x803E68F0; // type:object size:0x4 scope:local align:4 data:float +@957 = .sdata:0x803E68F4; // type:object size:0x4 scope:local align:4 data:float +@978 = .sdata:0x803E68F8; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata:0x803E68FC; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata:0x803E6900; // type:object size:0x4 scope:local align:4 data:float +@986 = .sdata:0x803E6904; // type:object size:0x3 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6908; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6910; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6918; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6920; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6928; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6930; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorItem = .sdata:0x803E6938; // type:object size:0x8 scope:local align:4 +@1044 = .sdata:0x803E6940; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyItem = .sdata:0x803E6948; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6950; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6958; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6960; // type:object size:0x8 scope:local align:4 +__RTTI__12RopeCreature = .sdata:0x803E6968; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeItem = .sdata:0x803E6970; // type:object size:0x8 scope:local align:4 +@1498 = .sdata:0x803E6978; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803E697C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E6980; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6988; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6990; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedItem = .sdata:0x803E6998; // type:object size:0x8 scope:local align:4 +@1114 = .sdata:0x803E69A0; // type:object size:0x4 scope:local align:4 data:4byte +@1115 = .sdata:0x803E69A4; // type:object size:0x4 scope:local align:4 data:4byte +@1116 = .sdata:0x803E69A8; // type:object size:0x4 scope:local align:4 data:4byte +@1117 = .sdata:0x803E69AC; // type:object size:0x4 scope:local align:4 data:4byte +@1118 = .sdata:0x803E69B0; // type:object size:0x2 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E69B4; // type:object size:0x8 scope:local align:4 +@1324 = .sdata:0x803E69BC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E69C4; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E69CC; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectItem = .sdata:0x803E69D4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E69DC; // type:object size:0x8 scope:local align:4 +@2780 = .sdata:0x803E69E8; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata:0x803E69EC; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata:0x803E69F0; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata:0x803E69F4; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata:0x803E69F8; // type:object size:0x4 scope:local align:4 data:float +@3096 = .sdata:0x803E69FC; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata:0x803E6A00; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata:0x803E6A04; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata:0x803E6A08; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9SAIAction = .sdata:0x803E6A0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI13DisappearInit = .sdata:0x803E6A14; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI8EmitInit = .sdata:0x803E6A1C; // type:object size:0x8 scope:local align:4 +__RTTI__Q211FallWaterAI11CollideInit = .sdata:0x803E6A24; // type:object size:0x8 scope:local align:4 +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E6A2C; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E6A34; // type:object size:0x8 scope:local align:4 +__RTTI__11FallWaterAI = .sdata:0x803E6A3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI3Die = .sdata:0x803E6A44; // type:object size:0x8 scope:local align:4 +@3258 = .sdata:0x803E6A4C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6A54; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6A5C; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E6A64; // type:object size:0x8 scope:local align:4 +__RTTI__Q27WaterAI11CollideChar = .sdata:0x803E6A6C; // type:object size:0x8 scope:local align:4 +@3264 = .sdata:0x803E6A74; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7WaterAI = .sdata:0x803E6A7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI3Die = .sdata:0x803E6A84; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseExec = .sdata:0x803E6A8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GemAI8RiseInit = .sdata:0x803E6A94; // type:object size:0x8 scope:local align:4 +@3272 = .sdata:0x803E6A9C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5GemAI = .sdata:0x803E6AA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI6Effect = .sdata:0x803E6AAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitWait = .sdata:0x803E6AB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8EmitPiki = .sdata:0x803E6ABC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootDone = .sdata:0x803E6AC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootEmit = .sdata:0x803E6ACC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8BootInit = .sdata:0x803E6AD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI8WaitInit = .sdata:0x803E6ADC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26GoalAI11NotFinished = .sdata:0x803E6AE4; // type:object size:0x8 scope:local align:4 +@3291 = .sdata:0x803E6AEC; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6GoalAI = .sdata:0x803E6AF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieExec = .sdata:0x803E6AFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7DieInit = .sdata:0x803E6B04; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuExec = .sdata:0x803E6B0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8MizuInit = .sdata:0x803E6B14; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombExec = .sdata:0x803E6B1C; // type:object size:0x8 scope:local align:4 +__RTTI__11CndCollPart = .sdata:0x803E6B24; // type:object size:0x8 scope:local align:4 +__RTTI__11CndBombable = .sdata:0x803E6B2C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI8BombInit = .sdata:0x803E6B34; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetExec = .sdata:0x803E6B3C; // type:object size:0x8 scope:local align:4 +__RTTI__Q26BombAI7SetInit = .sdata:0x803E6B44; // type:object size:0x8 scope:local align:4 +@3326 = .sdata:0x803E6B4C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6BombAI = .sdata:0x803E6B54; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI4Dead = .sdata:0x803E6B5C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaExec = .sdata:0x803E6B64; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10KaretaInit = .sdata:0x803E6B6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10GrowEffect = .sdata:0x803E6B74; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12GrowupedExec = .sdata:0x803E6B7C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitExec = .sdata:0x803E6B84; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8WaitInit = .sdata:0x803E6B8C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneExec = .sdata:0x803E6B94; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8TaneInit = .sdata:0x803E6B9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryExec = .sdata:0x803E6BA4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI8BuryInit = .sdata:0x803E6BAC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryExec2 = .sdata:0x803E6BB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI9BuryInit2 = .sdata:0x803E6BBC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI13FlyingCleanup = .sdata:0x803E6BC4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI10FlyingExec = .sdata:0x803E6BCC; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI12FlyingEffect = .sdata:0x803E6BD4; // type:object size:0x8 scope:local align:4 +__RTTI__Q210PikiHeadAI11BounceSound = .sdata:0x803E6BDC; // type:object size:0x8 scope:local align:4 +__RTTI__10PikiHeadAI = .sdata:0x803E6BE4; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10DamageInit = .sdata:0x803E6BEC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10ChangeInit = .sdata:0x803E6BF4; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8WaitInit = .sdata:0x803E6BFC; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI8AddCount = .sdata:0x803E6C04; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI10MotionDone = .sdata:0x803E6C0C; // type:object size:0x8 scope:local align:4 +__RTTI__Q28SluiceAI4Init = .sdata:0x803E6C14; // type:object size:0x8 scope:local align:4 +__RTTI__22Receiver<10AICreature> = .sdata:0x803E6C1C; // type:object size:0x8 scope:local align:4 +__RTTI__8SluiceAI = .sdata:0x803E6C24; // type:object size:0x8 scope:local align:4 +@1269 = .sdata:0x803E6C30; // type:object size:0x8 scope:local align:4 data:string +@1508 = .sdata:0x803E6C38; // type:object size:0x7 scope:local align:4 data:string +@1509 = .sdata:0x803E6C40; // type:object size:0x6 scope:local align:4 data:string +@1510 = .sdata:0x803E6C48; // type:object size:0x4 scope:local align:4 data:string +@1513 = .sdata:0x803E6C4C; // type:object size:0x4 scope:local align:4 data:string +@1514 = .sdata:0x803E6C50; // type:object size:0x4 scope:local align:4 data:string +@1516 = .sdata:0x803E6C54; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803E6C58; // type:object size:0x4 scope:local align:4 data:string +@2507 = .sdata:0x803E6C5C; // type:object size:0x5 scope:local align:4 data:string +@2509 = .sdata:0x803E6C64; // type:object size:0x6 scope:local align:4 data:string +@2515 = .sdata:0x803E6C6C; // type:object size:0x5 scope:local align:4 data:string +@2521 = .sdata:0x803E6C74; // type:object size:0x5 scope:local align:4 data:string +@2539 = .sdata:0x803E6C7C; // type:object size:0x5 scope:local align:4 data:string +@2766 = .sdata:0x803E6C84; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata:0x803E6C88; // type:object size:0x4 scope:local align:4 data:float +@2768 = .sdata:0x803E6C8C; // type:object size:0x4 scope:local align:4 data:float +@3063 = .sdata:0x803E6C90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E6C98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E6CA0; // type:object size:0x8 scope:local align:4 +@3065 = .sdata:0x803E6CA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E6CB0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E6CB8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E6CC0; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E6CC8; // type:object size:0x8 scope:local align:4 +__RTTI__11PikiHeadMgr = .sdata:0x803E6CD0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E6CD8; // type:object size:0x8 scope:local align:4 +__RTTI__16PikiHeadItemProp = .sdata:0x803E6CE0; // type:object size:0x8 scope:local align:4 +@3092 = .sdata:0x803E6CE8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__13PolyObjectMgr = .sdata:0x803E6CF0; // type:object size:0x8 scope:local align:4 +__RTTI__7ItemMgr = .sdata:0x803E6CF8; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E6D00; // type:object size:0x8 scope:local align:4 +__RTTI__15InteractBikkuri = .sdata:0x803E6D08; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6D10; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6D18; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6D20; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6D28; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6D30; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6D38; // type:object size:0x8 scope:local align:4 +__RTTI__8DoorProp = .sdata:0x803E6D40; // type:object size:0x8 scope:local align:4 +@3176 = .sdata:0x803E6D48; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KeyProp = .sdata:0x803E6D50; // type:object size:0x8 scope:local align:4 +__RTTI__8SeedProp = .sdata:0x803E6D58; // type:object size:0x8 scope:local align:4 +__RTTI__8RopeProp = .sdata:0x803E6D60; // type:object size:0x8 scope:local align:4 +__RTTI__12MizuItemProp = .sdata:0x803E6D68; // type:object size:0x8 scope:local align:4 +__RTTI__12BombItemProp = .sdata:0x803E6D70; // type:object size:0x8 scope:local align:4 +__RTTI__Q27ItemMgr7UseNode = .sdata:0x803E6D78; // type:object size:0x8 scope:local align:4 +__RTTI__12KusaItemProp = .sdata:0x803E6D80; // type:object size:0x8 scope:local align:4 +__RTTI__16BuildingItemProp = .sdata:0x803E6D88; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E6D90; // type:object size:0x8 scope:local align:4 +__RTTI__11UfoItemProp = .sdata:0x803E6D98; // type:object size:0x8 scope:local align:4 +__RTTI__12GoalItemProp = .sdata:0x803E6DA0; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E6DA8; // type:object size:0x8 scope:local align:4 +__RTTI__13MeltingPotMgr = .sdata:0x803E6DB0; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureNode = .sdata:0x803E6DB8; // type:object size:0x8 scope:local align:4 +__RTTI__12BuildingItem = .sdata:0x803E6DC0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6DC8; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6DD0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6DD8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6DE0; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6DE8; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6DF0; // type:object size:0x8 scope:local align:4 +__RTTI__10ItemObject = .sdata:0x803E6DF8; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviDemoSunsetGoal = .sdata:0x803E6E00; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetStart = .sdata:0x803E6E08; // type:object size:0x8 scope:local align:4 +@984 = .sdata:0x803E6E10; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Fulcrum = .sdata:0x803E6E18; // type:object size:0x8 scope:local align:4 +__RTTI__11BombGenItem = .sdata:0x803E6E20; // type:object size:0x8 scope:local align:4 +__RTTI__8ItemBall = .sdata:0x803E6E28; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E6E30; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E6E38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E6E40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E6E48; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E6E50; // type:object size:0x8 scope:local align:4 +__RTTI__12ItemCreature = .sdata:0x803E6E58; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuItem = .sdata:0x803E6E60; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E6E68; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E6E6C; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E6E70; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E6E74; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E6E78; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E6E7C; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E6E80; // type:object size:0x2 scope:local align:4 data:string +@679 = .sdata:0x803E6E84; // type:object size:0x2 scope:local align:4 data:string +@680 = .sdata:0x803E6E88; // type:object size:0x2 scope:local align:4 data:string +@681 = .sdata:0x803E6E8C; // type:object size:0x3 scope:local align:4 data:string +@682 = .sdata:0x803E6E90; // type:object size:0x3 scope:local align:4 data:string +@683 = .sdata:0x803E6E94; // type:object size:0x3 scope:local align:4 data:string +@684 = .sdata:0x803E6E98; // type:object size:0x3 scope:local align:4 data:string +@685 = .sdata:0x803E6E9C; // type:object size:0x3 scope:local align:4 data:string +@686 = .sdata:0x803E6EA0; // type:object size:0x3 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E6EA4; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E6EAC; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniItemAnimator = .sdata:0x803E6EB4; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E6EC0; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E6EC8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E6ED0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E6ED8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectNavi = .sdata:0x803E6EE0; // type:object size:0x8 scope:local align:4 +DelayPikiBirth = .sdata:0x803E6EE8; // type:object size:0x1 scope:global align:1 data:byte +@2701 = .sdata:0x803E6EEC; // type:object size:0x4 scope:local align:4 data:string +@2703 = .sdata:0x803E6EF0; // type:object size:0x4 scope:local align:4 data:string +@2704 = .sdata:0x803E6EF4; // type:object size:0x4 scope:local align:4 data:string +@2706 = .sdata:0x803E6EF8; // type:object size:0x4 scope:local align:4 data:string +@2708 = .sdata:0x803E6EFC; // type:object size:0x4 scope:local align:4 data:string +@2710 = .sdata:0x803E6F00; // type:object size:0x4 scope:local align:4 data:4byte +@2712 = .sdata:0x803E6F04; // type:object size:0x4 scope:local align:4 data:4byte +@2714 = .sdata:0x803E6F08; // type:object size:0x4 scope:local align:4 data:4byte +@2716 = .sdata:0x803E6F0C; // type:object size:0x4 scope:local align:4 data:4byte +@2718 = .sdata:0x803E6F10; // type:object size:0x4 scope:local align:4 data:4byte +@2720 = .sdata:0x803E6F14; // type:object size:0x4 scope:local align:4 data:4byte +@2722 = .sdata:0x803E6F18; // type:object size:0x4 scope:local align:4 data:4byte +@2724 = .sdata:0x803E6F1C; // type:object size:0x4 scope:local align:4 data:4byte +@2726 = .sdata:0x803E6F20; // type:object size:0x4 scope:local align:4 data:4byte +@2728 = .sdata:0x803E6F24; // type:object size:0x4 scope:local align:4 data:4byte +@2729 = .sdata:0x803E6F28; // type:object size:0x4 scope:local align:4 data:4byte +@2731 = .sdata:0x803E6F2C; // type:object size:0x4 scope:local align:4 data:4byte +@2732 = .sdata:0x803E6F30; // type:object size:0x4 scope:local align:4 data:4byte +@2734 = .sdata:0x803E6F34; // type:object size:0x4 scope:local align:4 data:4byte +@2735 = .sdata:0x803E6F38; // type:object size:0x4 scope:local align:4 data:4byte +@2736 = .sdata:0x803E6F3C; // type:object size:0x4 scope:local align:4 data:4byte +@2738 = .sdata:0x803E6F40; // type:object size:0x4 scope:local align:4 data:4byte +@2740 = .sdata:0x803E6F44; // type:object size:0x4 scope:local align:4 data:4byte +@2742 = .sdata:0x803E6F48; // type:object size:0x4 scope:local align:4 data:4byte +@2743 = .sdata:0x803E6F4C; // type:object size:0x4 scope:local align:4 data:4byte +@2745 = .sdata:0x803E6F50; // type:object size:0x4 scope:local align:4 data:4byte +@2746 = .sdata:0x803E6F54; // type:object size:0x4 scope:local align:4 data:4byte +@2747 = .sdata:0x803E6F58; // type:object size:0x4 scope:local align:4 data:4byte +@2748 = .sdata:0x803E6F5C; // type:object size:0x4 scope:local align:4 data:4byte +@2749 = .sdata:0x803E6F60; // type:object size:0x4 scope:local align:4 data:4byte +@2751 = .sdata:0x803E6F64; // type:object size:0x4 scope:local align:4 data:4byte +@2753 = .sdata:0x803E6F68; // type:object size:0x4 scope:local align:4 data:4byte +@2754 = .sdata:0x803E6F6C; // type:object size:0x4 scope:local align:4 data:4byte +@2756 = .sdata:0x803E6F70; // type:object size:0x4 scope:local align:4 data:4byte +@2758 = .sdata:0x803E6F74; // type:object size:0x4 scope:local align:4 data:4byte +@2760 = .sdata:0x803E6F78; // type:object size:0x4 scope:local align:4 data:4byte +@2761 = .sdata:0x803E6F7C; // type:object size:0x4 scope:local align:4 data:4byte +@2763 = .sdata:0x803E6F80; // type:object size:0x4 scope:local align:4 data:4byte +@2765 = .sdata:0x803E6F84; // type:object size:0x4 scope:local align:4 data:4byte +@2767 = .sdata:0x803E6F88; // type:object size:0x4 scope:local align:4 data:4byte +@2768 = .sdata:0x803E6F8C; // type:object size:0x4 scope:local align:4 data:4byte +@2769 = .sdata:0x803E6F90; // type:object size:0x4 scope:local align:4 data:4byte +@2770 = .sdata:0x803E6F94; // type:object size:0x4 scope:local align:4 data:4byte +@2771 = .sdata:0x803E6F98; // type:object size:0x4 scope:local align:4 data:4byte +@2772 = .sdata:0x803E6F9C; // type:object size:0x4 scope:local align:4 data:4byte +@2773 = .sdata:0x803E6FA0; // type:object size:0x4 scope:local align:4 data:4byte +@2775 = .sdata:0x803E6FA4; // type:object size:0x4 scope:local align:4 data:4byte +@2776 = .sdata:0x803E6FA8; // type:object size:0x4 scope:local align:4 data:4byte +@2777 = .sdata:0x803E6FAC; // type:object size:0x4 scope:local align:4 data:4byte +@2778 = .sdata:0x803E6FB0; // type:object size:0x4 scope:local align:4 data:4byte +@2779 = .sdata:0x803E6FB4; // type:object size:0x4 scope:local align:4 data:4byte +@2780 = .sdata:0x803E6FB8; // type:object size:0x4 scope:local align:4 data:4byte +@2782 = .sdata:0x803E6FBC; // type:object size:0x4 scope:local align:4 data:4byte +@2784 = .sdata:0x803E6FC0; // type:object size:0x4 scope:local align:4 data:4byte +@2785 = .sdata:0x803E6FC4; // type:object size:0x4 scope:local align:4 data:4byte +@2788 = .sdata:0x803E6FC8; // type:object size:0x4 scope:local align:4 data:4byte +@2790 = .sdata:0x803E6FCC; // type:object size:0x4 scope:local align:4 data:4byte +@2792 = .sdata:0x803E6FD0; // type:object size:0x4 scope:local align:4 data:4byte +@2793 = .sdata:0x803E6FD4; // type:object size:0x4 scope:local align:4 data:4byte +@2794 = .sdata:0x803E6FD8; // type:object size:0x4 scope:local align:4 data:4byte +@2795 = .sdata:0x803E6FDC; // type:object size:0x4 scope:local align:4 data:4byte +@2796 = .sdata:0x803E6FE0; // type:object size:0x4 scope:local align:4 data:4byte +@2797 = .sdata:0x803E6FE4; // type:object size:0x4 scope:local align:4 data:4byte +@2798 = .sdata:0x803E6FE8; // type:object size:0x4 scope:local align:4 data:4byte +@2799 = .sdata:0x803E6FEC; // type:object size:0x4 scope:local align:4 data:4byte +@2800 = .sdata:0x803E6FF0; // type:object size:0x4 scope:local align:4 data:4byte +@2855 = .sdata:0x803E6FF4; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata:0x803E6FF8; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata:0x803E6FFC; // type:object size:0x4 scope:local align:4 data:float +@2914 = .sdata:0x803E7000; // type:object size:0x4 scope:local align:4 data:float +@2915 = .sdata:0x803E7004; // type:object size:0x4 scope:local align:4 data:float +@2916 = .sdata:0x803E7008; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803E700C; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803E7010; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803E7014; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata:0x803E7018; // type:object size:0x4 scope:local align:4 data:float +@2922 = .sdata:0x803E701C; // type:object size:0x4 scope:local align:4 data:float +@2923 = .sdata:0x803E7020; // type:object size:0x4 scope:local align:4 data:float +@2924 = .sdata:0x803E7024; // type:object size:0x4 scope:local align:4 data:float +@2925 = .sdata:0x803E7028; // type:object size:0x4 scope:local align:4 data:float +@2926 = .sdata:0x803E702C; // type:object size:0x4 scope:local align:4 data:float +@2927 = .sdata:0x803E7030; // type:object size:0x4 scope:local align:4 data:float +@2928 = .sdata:0x803E7034; // type:object size:0x4 scope:local align:4 data:float +@2929 = .sdata:0x803E7038; // type:object size:0x4 scope:local align:4 data:float +@3018 = .sdata:0x803E703C; // type:object size:0x1 scope:local align:4 +@3020 = .sdata:0x803E7040; // type:object size:0x8 scope:local align:4 data:string +@3060 = .sdata:0x803E7048; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata:0x803E704C; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata:0x803E7050; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata:0x803E7054; // type:object size:0x4 scope:local align:4 data:float +@3068 = .sdata:0x803E7058; // type:object size:0x4 scope:local align:4 data:float +@3069 = .sdata:0x803E705C; // type:object size:0x4 scope:local align:4 data:float +@3072 = .sdata:0x803E7060; // type:object size:0x4 scope:local align:4 data:float +@3073 = .sdata:0x803E7064; // type:object size:0x4 scope:local align:4 data:float +@3074 = .sdata:0x803E7068; // type:object size:0x4 scope:local align:4 data:float +@3076 = .sdata:0x803E706C; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata:0x803E7070; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata:0x803E7074; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata:0x803E7078; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata:0x803E707C; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata:0x803E7080; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E7084; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata:0x803E7088; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata:0x803E708C; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata:0x803E7090; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata:0x803E7094; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata:0x803E7098; // type:object size:0x4 scope:local align:4 data:float +@4653 = .sdata:0x803E709C; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata:0x803E70A0; // type:object size:0x4 scope:local align:4 data:float +@4746 = .sdata:0x803E70A4; // type:object size:0x4 scope:local align:4 data:float +@4804 = .sdata:0x803E70A8; // type:object size:0x3 scope:local align:4 data:string +@4813 = .sdata:0x803E70AC; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata:0x803E70B0; // type:object size:0x4 scope:local align:4 data:float +@4875 = .sdata:0x803E70B4; // type:object size:0x4 scope:local align:4 data:float +@4876 = .sdata:0x803E70B8; // type:object size:0x4 scope:local align:4 data:float +@4906 = .sdata:0x803E70BC; // type:object size:0x4 scope:local align:4 data:float +@4907 = .sdata:0x803E70C0; // type:object size:0x4 scope:local align:4 data:float +@4908 = .sdata:0x803E70C4; // type:object size:0x4 scope:local align:4 data:float +@4909 = .sdata:0x803E70C8; // type:object size:0x4 scope:local align:4 data:float +@4910 = .sdata:0x803E70CC; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata:0x803E70D0; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata:0x803E70D4; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata:0x803E70D8; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata:0x803E70DC; // type:object size:0x4 scope:local align:4 data:float +@5200 = .sdata:0x803E70E0; // type:object size:0x4 scope:local align:4 data:float +@5201 = .sdata:0x803E70E4; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata:0x803E70E8; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata:0x803E70EC; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata:0x803E70F0; // type:object size:0x4 scope:local align:4 data:float +@5216 = .sdata:0x803E70F4; // type:object size:0x4 scope:local align:4 data:float +@5219 = .sdata:0x803E70F8; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata:0x803E70FC; // type:object size:0x4 scope:local align:4 data:float +@5464 = .sdata:0x803E7100; // type:object size:0x4 scope:local align:4 data:float +@5465 = .sdata:0x803E7104; // type:object size:0x4 scope:local align:4 data:float +@5665 = .sdata:0x803E7108; // type:object size:0x4 scope:local align:4 data:float +@6189 = .sdata:0x803E710C; // type:object size:0x4 scope:local align:4 data:float +@6190 = .sdata:0x803E7110; // type:object size:0x4 scope:local align:4 data:float +@6191 = .sdata:0x803E7114; // type:object size:0x4 scope:local align:4 data:float +@6376 = .sdata:0x803E7118; // type:object size:0x4 scope:local align:4 data:float +@6377 = .sdata:0x803E711C; // type:object size:0x4 scope:local align:4 data:float +@6378 = .sdata:0x803E7120; // type:object size:0x4 scope:local align:4 data:float +@6384 = .sdata:0x803E7124; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata:0x803E7128; // type:object size:0x4 scope:local align:4 data:float +@6386 = .sdata:0x803E712C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11Interaction = .sdata:0x803E7130; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractSuck = .sdata:0x803E7138; // type:object size:0x8 scope:local align:4 +__RTTI__14InteractGeyzer = .sdata:0x803E7140; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E7148; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen31CallBack1 = .sdata:0x803E7150; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7158; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E7160; // type:object size:0x8 scope:local align:4 +@6740 = .sdata:0x803E7168; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7170; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7178; // type:object size:0x8 scope:local align:4 +@6743 = .sdata:0x803E7180; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7188; // type:object size:0x8 scope:local align:4 +__RTTI__10NaviDrawer = .sdata:0x803E7190; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E7198; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E71A0; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E71A8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E71B0; // type:object size:0x8 scope:local align:4 +__RTTI__8NaviProp = .sdata:0x803E71B8; // type:object size:0x8 scope:local align:4 +@6773 = .sdata:0x803E71C0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E71C8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E71D0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E71D8; // type:object size:0x8 scope:local align:4 +__RTTI__4Navi = .sdata:0x803E71E0; // type:object size:0x8 scope:local align:4 +@2614 = .sdata:0x803E71E8; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata:0x803E71EC; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata:0x803E71F0; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803E71F4; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803E71F8; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803E71FC; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata:0x803E7200; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata:0x803E7204; // type:object size:0x4 scope:local align:4 data:float +@2724 = .sdata:0x803E7208; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata:0x803E720C; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata:0x803E7210; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata:0x803E7214; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata:0x803E7218; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata:0x803E721C; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata:0x803E7220; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata:0x803E7224; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata:0x803E7228; // type:object size:0x4 scope:local align:4 data:float +@2742 = .sdata:0x803E722C; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata:0x803E7230; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata:0x803E7234; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata:0x803E7238; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata:0x803E723C; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E7240; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata:0x803E7244; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata:0x803E7248; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata:0x803E724C; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata:0x803E7250; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata:0x803E7254; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata:0x803E7258; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata:0x803E725C; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata:0x803E7260; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata:0x803E7264; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata:0x803E7268; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata:0x803E726C; // type:object size:0x4 scope:local align:4 data:float +@3160 = .sdata:0x803E7270; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata:0x803E7274; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata:0x803E7278; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata:0x803E727C; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata:0x803E7280; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata:0x803E7284; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata:0x803E7288; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata:0x803E728C; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata:0x803E7290; // type:object size:0x4 scope:local align:4 data:float +@3515 = .sdata:0x803E7294; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata:0x803E7298; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata:0x803E729C; // type:object size:0x4 scope:local align:4 data:float +@3518 = .sdata:0x803E72A0; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata:0x803E72A4; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata:0x803E72A8; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata:0x803E72AC; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata:0x803E72B0; // type:object size:0x4 scope:local align:4 data:float +@3526 = .sdata:0x803E72B4; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata:0x803E72B8; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E72BC; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata:0x803E72C0; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata:0x803E72C4; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata:0x803E72C8; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata:0x803E72CC; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata:0x803E72D0; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata:0x803E72D4; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata:0x803E72D8; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata:0x803E72DC; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata:0x803E72E0; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata:0x803E72E4; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata:0x803E72E8; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata:0x803E72EC; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata:0x803E72F0; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata:0x803E72F4; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata:0x803E72F8; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata:0x803E72FC; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata:0x803E7300; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata:0x803E7304; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata:0x803E7308; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata:0x803E730C; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata:0x803E7310; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata:0x803E7314; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata:0x803E7318; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata:0x803E731C; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata:0x803E7320; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata:0x803E7324; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata:0x803E7328; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata:0x803E732C; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata:0x803E7330; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata:0x803E7334; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata:0x803E7338; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata:0x803E733C; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata:0x803E7340; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata:0x803E7344; // type:object size:0x4 scope:local align:4 data:float +@4779 = .sdata:0x803E7348; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata:0x803E734C; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata:0x803E7350; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata:0x803E7354; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata:0x803E7358; // type:object size:0x4 scope:local align:4 data:float +@4937 = .sdata:0x803E735C; // type:object size:0x4 scope:local align:4 data:float +@4970 = .sdata:0x803E7360; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata:0x803E7364; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata:0x803E7368; // type:object size:0x4 scope:local align:4 data:float +@5070 = .sdata:0x803E736C; // type:object size:0x4 scope:local align:4 data:float +@5071 = .sdata:0x803E7370; // type:object size:0x4 scope:local align:4 data:float +@5072 = .sdata:0x803E7374; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata:0x803E7378; // type:object size:0x4 scope:local align:4 data:float +@5074 = .sdata:0x803E737C; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata:0x803E7380; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata:0x803E7384; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata:0x803E7388; // type:object size:0x4 scope:local align:4 data:float +@5084 = .sdata:0x803E738C; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata:0x803E7390; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata:0x803E7394; // type:object size:0x4 scope:local align:4 data:float +@5223 = .sdata:0x803E7398; // type:object size:0x4 scope:local align:4 data:float +@5224 = .sdata:0x803E739C; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata:0x803E73A0; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata:0x803E73A4; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata:0x803E73A8; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata:0x803E73AC; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata:0x803E73B0; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata:0x803E73B4; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata:0x803E73B8; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata:0x803E73BC; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata:0x803E73C0; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata:0x803E73C4; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata:0x803E73C8; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata:0x803E73CC; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata:0x803E73D0; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata:0x803E73D4; // type:object size:0x4 scope:local align:4 data:float +@5572 = .sdata:0x803E73D8; // type:object size:0x4 scope:local align:4 data:float +@5573 = .sdata:0x803E73DC; // type:object size:0x4 scope:local align:4 data:float +@5574 = .sdata:0x803E73E0; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata:0x803E73E4; // type:object size:0x4 scope:local align:4 data:float +@5585 = .sdata:0x803E73E8; // type:object size:0x4 scope:local align:4 data:float +@5586 = .sdata:0x803E73EC; // type:object size:0x4 scope:local align:4 data:float +@5587 = .sdata:0x803E73F0; // type:object size:0x4 scope:local align:4 data:float +@5588 = .sdata:0x803E73F4; // type:object size:0x4 scope:local align:4 data:float +@5589 = .sdata:0x803E73F8; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata:0x803E73FC; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata:0x803E7400; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata:0x803E7404; // type:object size:0x4 scope:local align:4 data:float +@5632 = .sdata:0x803E7408; // type:object size:0x4 scope:local align:4 data:float +@5634 = .sdata:0x803E740C; // type:object size:0x4 scope:local align:4 data:float +@5691 = .sdata:0x803E7410; // type:object size:0x4 scope:local align:4 data:float +@5692 = .sdata:0x803E7414; // type:object size:0x4 scope:local align:4 data:float +@5693 = .sdata:0x803E7418; // type:object size:0x4 scope:local align:4 data:float +@5694 = .sdata:0x803E741C; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata:0x803E7420; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata:0x803E7424; // type:object size:0x4 scope:local align:4 data:float +@5712 = .sdata:0x803E7428; // type:object size:0x4 scope:local align:4 data:float +@5718 = .sdata:0x803E742C; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata:0x803E7430; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata:0x803E7434; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata:0x803E7438; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata:0x803E743C; // type:object size:0x4 scope:local align:4 data:float +@5723 = .sdata:0x803E7440; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata:0x803E7444; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata:0x803E7448; // type:object size:0x4 scope:local align:4 data:float +@5775 = .sdata:0x803E744C; // type:object size:0x4 scope:local align:4 data:float +@5776 = .sdata:0x803E7450; // type:object size:0x4 scope:local align:4 data:float +@5777 = .sdata:0x803E7454; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata:0x803E7458; // type:object size:0x4 scope:local align:4 data:float +@5787 = .sdata:0x803E745C; // type:object size:0x4 scope:local align:4 data:float +@5788 = .sdata:0x803E7460; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata:0x803E7464; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata:0x803E7468; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata:0x803E746C; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata:0x803E7470; // type:object size:0x4 scope:local align:4 data:float +@5818 = .sdata:0x803E7474; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata:0x803E7478; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata:0x803E747C; // type:object size:0x4 scope:local align:4 data:float +@5821 = .sdata:0x803E7480; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata:0x803E7484; // type:object size:0x4 scope:local align:4 data:float +@5823 = .sdata:0x803E7488; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E748C; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E7494; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E749C; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviUfoAccessState = .sdata:0x803E74A4; // type:object size:0x8 scope:local align:4 +__RTTI__20NaviPartsAccessState = .sdata:0x803E74AC; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviStartingState = .sdata:0x803E74B4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPikiZeroState = .sdata:0x803E74BC; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviDeadState = .sdata:0x803E74C4; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviIroIroState = .sdata:0x803E74CC; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviClearState = .sdata:0x803E74D4; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviLockState = .sdata:0x803E74DC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviAttackState = .sdata:0x803E74E4; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviWaterState = .sdata:0x803E74EC; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviSowState = .sdata:0x803E74F4; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviPressedState = .sdata:0x803E74FC; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviNukuAdjustState = .sdata:0x803E7504; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviNukuState = .sdata:0x803E750C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviPushPikiState = .sdata:0x803E7514; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPushState = .sdata:0x803E751C; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviThrowState = .sdata:0x803E7524; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviThrowWaitState = .sdata:0x803E752C; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviReleaseState = .sdata:0x803E7534; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGatherState = .sdata:0x803E753C; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviGeyzerState = .sdata:0x803E7544; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviFlickState = .sdata:0x803E754C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviIdleState = .sdata:0x803E7554; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviFunbariState = .sdata:0x803E755C; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviRopeExitState = .sdata:0x803E7564; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviRopeState = .sdata:0x803E756C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviPickState = .sdata:0x803E7574; // type:object size:0x8 scope:local align:4 +__RTTI__Q25GmWin13CloseListener = .sdata:0x803E757C; // type:object size:0x8 scope:local align:4 +__RTTI__Q212ContainerWin8Listener = .sdata:0x803E7584; // type:object size:0x8 scope:local align:4 +__RTTI__18NaviContainerState = .sdata:0x803E758C; // type:object size:0x8 scope:local align:4 +__RTTI__12NaviUfoState = .sdata:0x803E7594; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviWalkState = .sdata:0x803E759C; // type:object size:0x8 scope:local align:4 +__RTTI__13NaviBuryState = .sdata:0x803E75A4; // type:object size:0x8 scope:local align:4 +__RTTI__14NaviStuckState = .sdata:0x803E75AC; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviDemoInfState = .sdata:0x803E75B4; // type:object size:0x8 scope:local align:4 +__RTTI__17NaviDemoWaitState = .sdata:0x803E75BC; // type:object size:0x8 scope:local align:4 +__RTTI__15NaviPelletState = .sdata:0x803E75C4; // type:object size:0x8 scope:local align:4 +__RTTI__19StateMachine<4Navi> = .sdata:0x803E75CC; // type:object size:0x8 scope:local align:4 +__RTTI__16NaviStateMachine = .sdata:0x803E75D4; // type:object size:0x8 scope:local align:4 +@2040 = .sdata:0x803E75E0; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata:0x803E75E4; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata:0x803E75E8; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata:0x803E75EC; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata:0x803E75F0; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata:0x803E75F4; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata:0x803E75F8; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata:0x803E75FC; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata:0x803E7600; // type:object size:0x4 scope:local align:4 data:float +@2381 = .sdata:0x803E7604; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata:0x803E7608; // type:object size:0x4 scope:local align:4 data:float +@2383 = .sdata:0x803E760C; // type:object size:0x4 scope:local align:4 data:float +@2384 = .sdata:0x803E7610; // type:object size:0x4 scope:local align:4 data:float +@2385 = .sdata:0x803E7614; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata:0x803E7618; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15Receiver<4Navi> = .sdata:0x803E761C; // type:object size:0x8 scope:local align:4 +__RTTI__13AState<4Navi> = .sdata:0x803E7624; // type:object size:0x8 scope:local align:4 +__RTTI__9NaviState = .sdata:0x803E762C; // type:object size:0x8 scope:local align:4 +__RTTI__19NaviDemoSunsetState = .sdata:0x803E7634; // type:object size:0x8 scope:local align:4 +__RTTI__35StateMachine<19NaviDemoSunsetState> = .sdata:0x803E763C; // type:object size:0x8 scope:local align:4 +__RTTI__31Receiver<19NaviDemoSunsetState> = .sdata:0x803E7644; // type:object size:0x8 scope:local align:4 +__RTTI__29AState<19NaviDemoSunsetState> = .sdata:0x803E764C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9DemoState = .sdata:0x803E7654; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState8SitState = .sdata:0x803E765C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9WaitState = .sdata:0x803E7664; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState12WhistleState = .sdata:0x803E766C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState9LookState = .sdata:0x803E7674; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState7GoState = .sdata:0x803E767C; // type:object size:0x8 scope:local align:4 +__RTTI__Q219NaviDemoSunsetState16DemoStateMachine = .sdata:0x803E7684; // type:object size:0x8 scope:local align:4 +@2021 = .sdata:0x803E7690; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E7694; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E7698; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E769C; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata:0x803E76A0; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata:0x803E76A4; // type:object size:0x4 scope:local align:4 data:float +@3309 = .sdata:0x803E76A8; // type:object size:0x1 scope:local align:4 +@3391 = .sdata:0x803E76AC; // type:object size:0x4 scope:local align:4 data:float +@3392 = .sdata:0x803E76B0; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata:0x803E76B4; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata:0x803E76B8; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata:0x803E76BC; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata:0x803E76C0; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata:0x803E76C4; // type:object size:0x5 scope:local align:4 data:string +@3530 = .sdata:0x803E76CC; // type:object size:0x8 scope:local align:4 data:string +@3535 = .sdata:0x803E76D4; // type:object size:0x5 scope:local align:4 data:string +@3536 = .sdata:0x803E76DC; // type:object size:0x5 scope:local align:4 data:string +@3537 = .sdata:0x803E76E4; // type:object size:0x7 scope:local align:4 data:string +@3538 = .sdata:0x803E76EC; // type:object size:0x6 scope:local align:4 data:string +@3539 = .sdata:0x803E76F4; // type:object size:0x5 scope:local align:4 data:string +@3540 = .sdata:0x803E76FC; // type:object size:0x5 scope:local align:4 data:string +@3541 = .sdata:0x803E7704; // type:object size:0x7 scope:local align:4 data:string +@3542 = .sdata:0x803E770C; // type:object size:0x8 scope:local align:4 data:string +@3543 = .sdata:0x803E7714; // type:object size:0x6 scope:local align:4 data:string +@3800 = .sdata:0x803E771C; // type:object size:0x4 scope:local align:4 data:string +@3807 = .sdata:0x803E7720; // type:object size:0x7 scope:local align:4 +@3809 = .sdata:0x803E7728; // type:object size:0x5 scope:local align:4 data:string +@3810 = .sdata:0x803E7730; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata:0x803E7738; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata:0x803E7740; // type:object size:0x5 scope:local align:4 data:string +@3816 = .sdata:0x803E7748; // type:object size:0x6 scope:local align:4 data:string +@3819 = .sdata:0x803E7750; // type:object size:0x6 scope:local align:4 data:string +@3821 = .sdata:0x803E7758; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata:0x803E7760; // type:object size:0x8 scope:local align:4 data:string +@4150 = .sdata:0x803E7768; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata:0x803E7770; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7778; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7780; // type:object size:0x8 scope:local align:4 +@4376 = .sdata:0x803E7788; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7790; // type:object size:0x8 scope:local align:4 +__RTTI__15GameCoreSection = .sdata:0x803E7798; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803E77A0; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata:0x803E77A8; // type:object size:0x4 scope:local align:4 data:float +@1239 = .sdata:0x803E77AC; // type:object size:0x4 scope:local align:4 data:float +@1240 = .sdata:0x803E77B0; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata:0x803E77B4; // type:object size:0x4 scope:local align:4 data:float +@1245 = .sdata:0x803E77B8; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata:0x803E77BC; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata:0x803E77C0; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E77C4; // type:object size:0x4 scope:local align:4 data:float +@1252 = .sdata:0x803E77C8; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata:0x803E77CC; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata:0x803E77D0; // type:object size:0x4 scope:local align:4 data:float +@1298 = .sdata:0x803E77D4; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803E77D8; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803E77DC; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803E77E0; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E77E4; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E77E8; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata:0x803E77EC; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata:0x803E77F0; // type:object size:0x4 scope:local align:4 data:float +@1733 = .sdata:0x803E77F4; // type:object size:0x4 scope:local align:4 data:float +@1734 = .sdata:0x803E77F8; // type:object size:0x4 scope:local align:4 data:float +@1819 = .sdata:0x803E77FC; // type:object size:0x4 scope:local align:4 data:float +@1820 = .sdata:0x803E7800; // type:object size:0x4 scope:local align:4 data:float +@1821 = .sdata:0x803E7804; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen31CallBack1 = .sdata:0x803E7808; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E7810; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803E7818; // type:object size:0x8 scope:local align:4 +@1899 = .sdata:0x803E7820; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7KEffect = .sdata:0x803E7828; // type:object size:0x8 scope:local align:4 +__RTTI__10BurnEffect = .sdata:0x803E7830; // type:object size:0x8 scope:local align:4 +__RTTI__12RippleEffect = .sdata:0x803E7838; // type:object size:0x8 scope:local align:4 +__RTTI__15FreeLightEffect = .sdata:0x803E7840; // type:object size:0x8 scope:local align:4 +__RTTI__16UfoSuikomiEffect = .sdata:0x803E7848; // type:object size:0x8 scope:local align:4 +__RTTI__15WhistleTemplate = .sdata:0x803E7850; // type:object size:0x8 scope:local align:4 +__RTTI__13UfoSuckEffect = .sdata:0x803E7858; // type:object size:0x8 scope:local align:4 +__RTTI__15BombEffectLight = .sdata:0x803E7860; // type:object size:0x8 scope:local align:4 +__RTTI__10BombEffect = .sdata:0x803E7868; // type:object size:0x8 scope:local align:4 +__RTTI__12SimpleEffect = .sdata:0x803E7870; // type:object size:0x8 scope:local align:4 +@2124 = .sdata:0x803E7878; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NaviFue = .sdata:0x803E7880; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeTreeEffect = .sdata:0x803E7888; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeRockEffect = .sdata:0x803E7890; // type:object size:0x8 scope:local align:4 +__RTTI__16SmokeGrassEffect = .sdata:0x803E7898; // type:object size:0x8 scope:local align:4 +__RTTI__15SmokeSoilEffect = .sdata:0x803E78A0; // type:object size:0x8 scope:local align:4 +__RTTI__11NaviWhistle = .sdata:0x803E78A8; // type:object size:0x8 scope:local align:4 +__RTTI__10GoalEffect = .sdata:0x803E78B0; // type:object size:0x8 scope:local align:4 +__RTTI__11SlimeEffect = .sdata:0x803E78B8; // type:object size:0x8 scope:local align:4 +@442 = .sdata:0x803E78C0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E78C8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E78D0; // type:object size:0x8 scope:local align:4 +@445 = .sdata:0x803E78D8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E78E0; // type:object size:0x8 scope:local align:4 +__RTTI__10Controller = .sdata:0x803E78E8; // type:object size:0x8 scope:local align:4 +__RTTI__10Kontroller = .sdata:0x803E78F0; // type:object size:0x8 scope:local align:4 +@736 = .sdata:0x803E78F8; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata:0x803E78FC; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803E7900; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata:0x803E7904; // type:object size:0x4 scope:local align:4 data:float +@962 = .sdata:0x803E7908; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata:0x803E790C; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata:0x803E7910; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata:0x803E7914; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata:0x803E7918; // type:object size:0x7 scope:local align:4 data:string +@1639 = .sdata:0x803E7920; // type:object size:0x8 scope:local align:4 data:string +@1641 = .sdata:0x803E7928; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7930; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7938; // type:object size:0x8 scope:local align:4 +@1644 = .sdata:0x803E7940; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7948; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7950; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E7958; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E7960; // type:object size:0x8 scope:local align:4 +__RTTI__7NaviMgr = .sdata:0x803E7968; // type:object size:0x8 scope:local align:4 +@476 = .sdata:0x803E7970; // type:object size:0x4 scope:local align:4 data:float +@477 = .sdata:0x803E7974; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata:0x803E7978; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata:0x803E797C; // type:object size:0x4 scope:local align:4 data:float +@480 = .sdata:0x803E7980; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E7984; // type:object size:0x4 scope:local align:4 data:float +numShapes = .sdata:0x803E7988; // type:object size:0x4 scope:local align:4 data:4byte +@745 = .sdata:0x803E798C; // type:object size:0x4 scope:local align:4 data:string +@746 = .sdata:0x803E7990; // type:object size:0x2 scope:local align:4 data:string +@747 = .sdata:0x803E7994; // type:object size:0x2 scope:local align:4 data:string +@748 = .sdata:0x803E7998; // type:object size:0x2 scope:local align:4 data:string +@749 = .sdata:0x803E799C; // type:object size:0x4 scope:local align:4 data:string +@750 = .sdata:0x803E79A0; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E79A8; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E79B0; // type:object size:0x8 scope:local align:4 data:string +@795 = .sdata:0x803E79B8; // type:object size:0x4 scope:local align:4 data:4byte +@796 = .sdata:0x803E79BC; // type:object size:0x4 scope:local align:4 data:4byte +@797 = .sdata:0x803E79C0; // type:object size:0x4 scope:local align:4 data:4byte +@799 = .sdata:0x803E79C4; // type:object size:0x4 scope:local align:4 data:4byte +@801 = .sdata:0x803E79C8; // type:object size:0x4 scope:local align:4 data:4byte +@822 = .sdata:0x803E79CC; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata:0x803E79D0; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata:0x803E79D4; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata:0x803E79D8; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata:0x803E79DC; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata:0x803E79E0; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata:0x803E79E4; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata:0x803E79E8; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata:0x803E79EC; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata:0x803E79F0; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata:0x803E79F4; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata:0x803E79F8; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata:0x803E79FC; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata:0x803E7A00; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata:0x803E7A04; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata:0x803E7A08; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata:0x803E7A0C; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata:0x803E7A10; // type:object size:0x4 scope:local align:4 data:float +__RTTI__10Parameters = .sdata:0x803E7A14; // type:object size:0x8 scope:local align:4 +@1050 = .sdata:0x803E7A1C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7A24; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7A2C; // type:object size:0x8 scope:local align:4 +__RTTI__17GenObjectMapParts = .sdata:0x803E7A34; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7A3C; // type:object size:0x8 scope:local align:4 +@681 = .sdata:0x803E7A48; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata:0x803E7A4C; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata:0x803E7A50; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata:0x803E7A54; // type:object size:0x4 scope:local align:4 data:float +@781 = .sdata:0x803E7A58; // type:object size:0x4 scope:local align:4 data:float +@782 = .sdata:0x803E7A5C; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata:0x803E7A60; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata:0x803E7A64; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata:0x803E7A68; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata:0x803E7A6C; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata:0x803E7A70; // type:object size:0x4 scope:local align:4 data:float +@889 = .sdata:0x803E7A74; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata:0x803E7A78; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata:0x803E7A7C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7A84; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7A8C; // type:object size:0x8 scope:local align:4 +@904 = .sdata:0x803E7A94; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7A9C; // type:object size:0x8 scope:local align:4 +__RTTI__13DynCollObject = .sdata:0x803E7AA4; // type:object size:0x8 scope:local align:4 +__RTTI__12DynCollShape = .sdata:0x803E7AAC; // type:object size:0x8 scope:local align:4 +__RTTI__8MapParts = .sdata:0x803E7AB4; // type:object size:0x8 scope:local align:4 +__RTTI__9MapSlider = .sdata:0x803E7ABC; // type:object size:0x8 scope:local align:4 +__RTTI__9MapEntity = .sdata:0x803E7AC4; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E7AD0; // type:object size:0x4 scope:local align:4 data:string +@673 = .sdata:0x803E7AD4; // type:object size:0x7 scope:local align:4 data:string +@674 = .sdata:0x803E7ADC; // type:object size:0x5 scope:local align:4 data:string +@675 = .sdata:0x803E7AE4; // type:object size:0x5 scope:local align:4 data:string +@676 = .sdata:0x803E7AEC; // type:object size:0x5 scope:local align:4 data:string +@677 = .sdata:0x803E7AF4; // type:object size:0x5 scope:local align:4 data:string +@679 = .sdata:0x803E7AFC; // type:object size:0x5 scope:local align:4 data:string +@680 = .sdata:0x803E7B04; // type:object size:0x6 scope:local align:4 data:string +@681 = .sdata:0x803E7B0C; // type:object size:0x6 scope:local align:4 data:string +@682 = .sdata:0x803E7B14; // type:object size:0x7 scope:local align:4 data:string +@683 = .sdata:0x803E7B1C; // type:object size:0x8 scope:local align:4 data:string +@684 = .sdata:0x803E7B24; // type:object size:0x7 scope:local align:4 data:string +@685 = .sdata:0x803E7B2C; // type:object size:0x8 scope:local align:4 data:string +@686 = .sdata:0x803E7B34; // type:object size:0x8 scope:local align:4 data:string +@688 = .sdata:0x803E7B3C; // type:object size:0x5 scope:local align:4 data:string +@689 = .sdata:0x803E7B44; // type:object size:0x8 scope:local align:4 data:string +@690 = .sdata:0x803E7B4C; // type:object size:0x8 scope:local align:4 data:string +@691 = .sdata:0x803E7B54; // type:object size:0x5 scope:local align:4 data:string +@692 = .sdata:0x803E7B5C; // type:object size:0x7 scope:local align:4 data:string +@693 = .sdata:0x803E7B64; // type:object size:0x5 scope:local align:4 data:string +@695 = .sdata:0x803E7B6C; // type:object size:0x7 scope:local align:4 data:string +@697 = .sdata:0x803E7B74; // type:object size:0x6 scope:local align:4 data:string +@698 = .sdata:0x803E7B7C; // type:object size:0x6 scope:local align:4 data:string +@699 = .sdata:0x803E7B84; // type:object size:0x6 scope:local align:4 data:string +@700 = .sdata:0x803E7B8C; // type:object size:0x5 scope:local align:4 data:string +@701 = .sdata:0x803E7B94; // type:object size:0x5 scope:local align:4 data:string +@702 = .sdata:0x803E7B9C; // type:object size:0x6 scope:local align:4 data:string +@703 = .sdata:0x803E7BA4; // type:object size:0x5 scope:local align:4 data:string +@704 = .sdata:0x803E7BAC; // type:object size:0x6 scope:local align:4 data:string +@705 = .sdata:0x803E7BB4; // type:object size:0x7 scope:local align:4 data:string +@706 = .sdata:0x803E7BBC; // type:object size:0x8 scope:local align:4 data:string +@707 = .sdata:0x803E7BC4; // type:object size:0x8 scope:local align:4 data:string +@709 = .sdata:0x803E7BCC; // type:object size:0x5 scope:local align:4 data:string +@710 = .sdata:0x803E7BD4; // type:object size:0x6 scope:local align:4 data:string +@711 = .sdata:0x803E7BDC; // type:object size:0x6 scope:local align:4 data:string +@712 = .sdata:0x803E7BE4; // type:object size:0x7 scope:local align:4 data:string +@713 = .sdata:0x803E7BEC; // type:object size:0x7 scope:local align:4 data:string +@716 = .sdata:0x803E7BF4; // type:object size:0x8 scope:local align:4 data:string +@717 = .sdata:0x803E7BFC; // type:object size:0x7 scope:local align:4 data:string +@720 = .sdata:0x803E7C04; // type:object size:0x8 scope:local align:4 data:string +@721 = .sdata:0x803E7C0C; // type:object size:0x4 scope:local align:4 data:string +@722 = .sdata:0x803E7C10; // type:object size:0x7 scope:local align:4 data:string +@723 = .sdata:0x803E7C18; // type:object size:0x5 scope:local align:4 data:string +@724 = .sdata:0x803E7C20; // type:object size:0x5 scope:local align:4 data:string +@725 = .sdata:0x803E7C28; // type:object size:0x7 scope:local align:4 data:string +@726 = .sdata:0x803E7C30; // type:object size:0x7 scope:local align:4 data:string +@727 = .sdata:0x803E7C38; // type:object size:0x7 scope:local align:4 data:string +@729 = .sdata:0x803E7C40; // type:object size:0x8 scope:local align:4 data:string +@730 = .sdata:0x803E7C48; // type:object size:0x7 scope:local align:4 data:string +@732 = .sdata:0x803E7C50; // type:object size:0x8 scope:local align:4 data:string +@733 = .sdata:0x803E7C58; // type:object size:0x6 scope:local align:4 data:string +@734 = .sdata:0x803E7C60; // type:object size:0x8 scope:local align:4 data:string +@735 = .sdata:0x803E7C68; // type:object size:0x7 scope:local align:4 data:string +@737 = .sdata:0x803E7C70; // type:object size:0x8 scope:local align:4 data:string +@740 = .sdata:0x803E7C78; // type:object size:0x7 scope:local align:4 data:string +@741 = .sdata:0x803E7C80; // type:object size:0x6 scope:local align:4 data:string +@742 = .sdata:0x803E7C88; // type:object size:0x4 scope:local align:4 data:string +@744 = .sdata:0x803E7C8C; // type:object size:0x6 scope:local align:4 data:string +@745 = .sdata:0x803E7C94; // type:object size:0x8 scope:local align:4 data:string +@746 = .sdata:0x803E7C9C; // type:object size:0x6 scope:local align:4 data:string +@747 = .sdata:0x803E7CA4; // type:object size:0x8 scope:local align:4 data:string +@748 = .sdata:0x803E7CAC; // type:object size:0x7 scope:local align:4 data:string +@749 = .sdata:0x803E7CB4; // type:object size:0x7 scope:local align:4 data:string +@750 = .sdata:0x803E7CBC; // type:object size:0x7 scope:local align:4 data:string +@751 = .sdata:0x803E7CC4; // type:object size:0x7 scope:local align:4 data:string +@752 = .sdata:0x803E7CCC; // type:object size:0x6 scope:local align:4 data:string +@753 = .sdata:0x803E7CD4; // type:object size:0x8 scope:local align:4 data:string +@756 = .sdata:0x803E7CDC; // type:object size:0x8 scope:local align:4 data:string +@757 = .sdata:0x803E7CE4; // type:object size:0x7 scope:local align:4 data:string +@758 = .sdata:0x803E7CEC; // type:object size:0x4 scope:local align:4 data:string +@760 = .sdata:0x803E7CF0; // type:object size:0x5 scope:local align:4 data:string +@761 = .sdata:0x803E7CF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E7D00; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E7D08; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniPikiAnimator = .sdata:0x803E7D10; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E7D18; // type:object size:0x8 scope:local align:4 +@885 = .sdata:0x803E7D20; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7D28; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7D30; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectActor = .sdata:0x803E7D38; // type:object size:0x8 scope:local align:4 +@1417 = .sdata:0x803E7D40; // type:object size:0x7 scope:local align:4 data:string +@1418 = .sdata:0x803E7D48; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E7D50; // type:object size:0x4 scope:local align:4 data:string +@1422 = .sdata:0x803E7D54; // type:object size:0x4 scope:local align:4 data:string +@1423 = .sdata:0x803E7D58; // type:object size:0x4 scope:local align:4 data:string +@1425 = .sdata:0x803E7D5C; // type:object size:0x4 scope:local align:4 data:string +@1427 = .sdata:0x803E7D60; // type:object size:0x4 scope:local align:4 data:string +@1442 = .sdata:0x803E7D64; // type:object size:0x7 scope:local align:4 data:string +@1443 = .sdata:0x803E7D6C; // type:object size:0x8 scope:local align:4 data:string +@1444 = .sdata:0x803E7D74; // type:object size:0x7 scope:local align:4 data:string +@1445 = .sdata:0x803E7D7C; // type:object size:0x4 scope:local align:4 data:string +@1446 = .sdata:0x803E7D80; // type:object size:0x8 scope:local align:4 data:string +@1447 = .sdata:0x803E7D88; // type:object size:0x8 scope:local align:4 data:string +@1448 = .sdata:0x803E7D90; // type:object size:0x8 scope:local align:4 data:string +@1453 = .sdata:0x803E7D98; // type:object size:0x4 scope:local align:4 data:string +@1469 = .sdata:0x803E7D9C; // type:object size:0x3 scope:local align:4 data:string +@1470 = .sdata:0x803E7DA0; // type:object size:0x7 scope:local align:4 data:string +__RTTI__10Parameters = .sdata:0x803E7DA8; // type:object size:0x8 scope:local align:4 +@1613 = .sdata:0x803E7DB0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7DB8; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7DC0; // type:object size:0x8 scope:local align:4 +__RTTI__14GenObjectPlant = .sdata:0x803E7DC8; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803E7DD0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E7DD8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E7DE0; // type:object size:0x8 scope:local align:4 +@1626 = .sdata:0x803E7DE8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E7DF0; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E7DF8; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E7E00; // type:object size:0x8 scope:local align:4 +__RTTI__15CreatureNodeMgr = .sdata:0x803E7E08; // type:object size:0x8 scope:local align:4 +__RTTI__8PlantMgr = .sdata:0x803E7E10; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E7E18; // type:object size:0x8 scope:local align:4 +__RTTI__Q28PlantMgr7UseNode = .sdata:0x803E7E20; // type:object size:0x8 scope:local align:4 +__RTTI__9SAIAction = .sdata:0x803E7E28; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI9TouchInit = .sdata:0x803E7E30; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI8WaitInit = .sdata:0x803E7E38; // type:object size:0x8 scope:local align:4 +__RTTI__12SAICondition = .sdata:0x803E7E40; // type:object size:0x8 scope:local align:4 +__RTTI__Q27PlantAI12OpponentMove = .sdata:0x803E7E48; // type:object size:0x8 scope:local align:4 +@1667 = .sdata:0x803E7E50; // type:object size:0x8 scope:local align:4 data:string +__RTTI__26StateMachine<10AICreature> = .sdata:0x803E7E58; // type:object size:0x8 scope:local align:4 +__RTTI__8SimpleAI = .sdata:0x803E7E60; // type:object size:0x8 scope:local align:4 +__RTTI__7PlantAI = .sdata:0x803E7E68; // type:object size:0x8 scope:local align:4 +@1672 = .sdata:0x803E7E70; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19PaniAnimKeyListener = .sdata:0x803E7E78; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E7E80; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E7E88; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E7E90; // type:object size:0x8 scope:local align:4 +__RTTI__10AICreature = .sdata:0x803E7E98; // type:object size:0x8 scope:local align:4 +__RTTI__5Plant = .sdata:0x803E7EA0; // type:object size:0x8 scope:local align:4 +@672 = .sdata:0x803E7EA8; // type:object size:0x2 scope:local align:4 data:string +@673 = .sdata:0x803E7EAC; // type:object size:0x2 scope:local align:4 data:string +@674 = .sdata:0x803E7EB0; // type:object size:0x2 scope:local align:4 data:string +@675 = .sdata:0x803E7EB4; // type:object size:0x2 scope:local align:4 data:string +@676 = .sdata:0x803E7EB8; // type:object size:0x2 scope:local align:4 data:string +@677 = .sdata:0x803E7EBC; // type:object size:0x2 scope:local align:4 data:string +@678 = .sdata:0x803E7EC0; // type:object size:0x2 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E7EC4; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E7ECC; // type:object size:0x8 scope:local align:4 +__RTTI__17PaniPlantAnimator = .sdata:0x803E7ED4; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E7EE0; // type:object size:0x8 scope:local align:4 +@1291 = .sdata:0x803E7EE8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E7EF0; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E7EF8; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectTeki = .sdata:0x803E7F00; // type:object size:0x8 scope:local align:4 +__RTTI__9NFunction = .sdata:0x803E7F08; // type:object size:0x8 scope:local align:4 +__RTTI__18NVibrationFunction = .sdata:0x803E7F10; // type:object size:0x8 scope:local align:4 +__RTTI__19NPolynomialFunction = .sdata:0x803E7F18; // type:object size:0x8 scope:local align:4 +__RTTI__15NLinearFunction = .sdata:0x803E7F20; // type:object size:0x8 scope:local align:4 +__RTTI__20NClampLinearFunction = .sdata:0x803E7F28; // type:object size:0x8 scope:local align:4 +@1772 = .sdata:0x803E7F30; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803E7F34; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata:0x803E7F38; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata:0x803E7F3C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NAlpha = .sdata:0x803E7F44; // type:object size:0x8 scope:local align:4 +__RTTI__14NSpecialMatrix = .sdata:0x803E7F4C; // type:object size:0x8 scope:local align:4 +__RTTI__8LUMatrix = .sdata:0x803E7F54; // type:object size:0x8 scope:local align:4 +__RTTI__12NUpperMatrix = .sdata:0x803E7F5C; // type:object size:0x8 scope:local align:4 +__RTTI__12NLowerMatrix = .sdata:0x803E7F64; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture3D = .sdata:0x803E7F6C; // type:object size:0x8 scope:local align:4 +__RTTI__10NPosture2D = .sdata:0x803E7F74; // type:object size:0x8 scope:local align:4 +@1280 = .sdata:0x803E7F80; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NLine = .sdata:0x803E7F88; // type:object size:0x8 scope:local align:4 +@1281 = .sdata:0x803E7F90; // type:object size:0x7 scope:local align:4 data:string +__RTTI__6NPlane = .sdata:0x803E7F98; // type:object size:0x8 scope:local align:4 +@480 = .sdata:0x803E7FA0; // type:object size:0x4 scope:local align:4 data:float +@481 = .sdata:0x803E7FA4; // type:object size:0x4 scope:local align:4 data:float +@482 = .sdata:0x803E7FA8; // type:object size:0x4 scope:local align:4 data:float +@483 = .sdata:0x803E7FAC; // type:object size:0x4 scope:local align:4 data:float +@484 = .sdata:0x803E7FB0; // type:object size:0x4 scope:local align:4 data:float +@485 = .sdata:0x803E7FB4; // type:object size:0x4 scope:local align:4 data:float +error__6NMathF = .sdata:0x803E7FB8; // type:object size:0x4 scope:global align:4 data:float +radianPerDegree__6NMathF = .sdata:0x803E7FBC; // type:object size:0x4 scope:global align:4 data:float +pi__6NMathF = .sdata:0x803E7FC0; // type:object size:0x4 scope:global align:4 data:float +@704 = .sdata:0x803E7FC8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NHeap = .sdata:0x803E7FD0; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NHeap> = .sdata:0x803E7FD8; // type:object size:0x8 scope:local align:4 +@710 = .sdata:0x803E7FE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E7FE8; // type:object size:0x8 scope:local align:4 +__RTTI__14NArray<5NNode> = .sdata:0x803E7FF0; // type:object size:0x8 scope:local align:4 +__RTTI__8Animator = .sdata:0x803E7FF8; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8000; // type:object size:0x8 scope:local align:4 +@1117 = .sdata:0x803E8008; // type:object size:0x5 scope:local align:4 data:string +@1118 = .sdata:0x803E8010; // type:object size:0x7 scope:local align:4 data:string +@1119 = .sdata:0x803E8018; // type:object size:0x7 scope:local align:4 data:string +@1120 = .sdata:0x803E8020; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803E8028; // type:object size:0x7 scope:local align:4 data:string +@1124 = .sdata:0x803E8030; // type:object size:0x7 scope:local align:4 data:string +@1125 = .sdata:0x803E8038; // type:object size:0x7 scope:local align:4 data:string +@1126 = .sdata:0x803E8040; // type:object size:0x6 scope:local align:4 data:string +@1127 = .sdata:0x803E8048; // type:object size:0x7 scope:local align:4 data:string +@1128 = .sdata:0x803E8050; // type:object size:0x7 scope:local align:4 data:string +@1129 = .sdata:0x803E8058; // type:object size:0x7 scope:local align:4 data:string +@1130 = .sdata:0x803E8060; // type:object size:0x7 scope:local align:4 data:string +@1131 = .sdata:0x803E8068; // type:object size:0x7 scope:local align:4 data:string +__RTTI__8Animator = .sdata:0x803E8070; // type:object size:0x8 scope:local align:4 +__RTTI__12PaniAnimator = .sdata:0x803E8078; // type:object size:0x8 scope:local align:4 +__RTTI__16PaniTekiAnimator = .sdata:0x803E8080; // type:object size:0x8 scope:local align:4 +__RTTI__19ParaMultiParameters = .sdata:0x803E8088; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E8090; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersF = .sdata:0x803E8098; // type:object size:0x8 scope:local align:4 +__RTTI__17ParaParameters = .sdata:0x803E80A0; // type:object size:0x8 scope:local align:4 +__RTTI__15ParaParametersI = .sdata:0x803E80A8; // type:object size:0x8 scope:local align:4 +@1524 = .sdata:0x803E80B0; // type:object size:0x8 scope:local align:4 data:string +@2584 = .sdata:0x803E80B8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7NCamera = .sdata:0x803E80C0; // type:object size:0x8 scope:local align:4 +__RTTI__10PcamCamera = .sdata:0x803E80C8; // type:object size:0x8 scope:local align:4 +__RTTI__17NArray<8Creature> = .sdata:0x803E80D0; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E80D8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E80E0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E80E8; // type:object size:0x8 scope:local align:4 +@1525 = .sdata:0x803E80F0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E80F8; // type:object size:0x8 scope:local align:4 +__RTTI__17PcamCameraManager = .sdata:0x803E8100; // type:object size:0x8 scope:local align:4 +@856 = .sdata:0x803E8108; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8110; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E8118; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamSideVibrationEvent = .sdata:0x803E8120; // type:object size:0x8 scope:local align:4 +__RTTI__19PcamRandomMoveEvent = .sdata:0x803E8128; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E8130; // type:object size:0x8 scope:local align:4 +__RTTI__15PcamDamageEvent = .sdata:0x803E8138; // type:object size:0x8 scope:local align:4 +__RTTI__18PcamVibrationEvent = .sdata:0x803E8140; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E8148; // type:object size:0x8 scope:local align:4 +__RTTI__22PcamLongVibrationEvent = .sdata:0x803E8150; // type:object size:0x8 scope:local align:4 +@752 = .sdata:0x803E8158; // type:object size:0x7 scope:local align:4 data:string +@863 = .sdata:0x803E8160; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8168; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8170; // type:object size:0x8 scope:local align:4 +@866 = .sdata:0x803E8178; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8180; // type:object size:0x8 scope:local align:4 +__RTTI__20PcamCameraParameters = .sdata:0x803E8188; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E8190; // type:object size:0x8 scope:local align:4 +__RTTI__16NVector3fIOClass = .sdata:0x803E8198; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveClampVector3fIO = .sdata:0x803E81A0; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCreaturePositionIO = .sdata:0x803E81A8; // type:object size:0x8 scope:local align:4 +__RTTI__12NPosture3DIO = .sdata:0x803E81B0; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCameraPostureIO = .sdata:0x803E81B8; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveCameraWatchpointIO = .sdata:0x803E81C0; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveCameraViewpointIO = .sdata:0x803E81C8; // type:object size:0x8 scope:local align:4 +@923 = .sdata:0x803E81D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E81D8; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E81E0; // type:object size:0x8 scope:local align:4 +__RTTI__15PeveSerialEvent = .sdata:0x803E81E8; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E81F0; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E81F8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveCondition = .sdata:0x803E8200; // type:object size:0x8 scope:local align:4 +__RTTI__20PeveBooleanCondition = .sdata:0x803E8208; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveComparisonYCondition = .sdata:0x803E8210; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveDistanceCondition = .sdata:0x803E8218; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveTimeCondition = .sdata:0x803E8220; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveDependenceCondition = .sdata:0x803E8228; // type:object size:0x8 scope:local align:4 +@1020 = .sdata:0x803E8230; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NNode = .sdata:0x803E8238; // type:object size:0x8 scope:local align:4 +__RTTI__9PeveEvent = .sdata:0x803E8240; // type:object size:0x8 scope:local align:4 +__RTTI__18PeveVibrationEvent = .sdata:0x803E8248; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveMoveEvent = .sdata:0x803E8250; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveInterpolationEvent = .sdata:0x803E8258; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParallelEvent = .sdata:0x803E8260; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveHomingPostureEvent = .sdata:0x803E8268; // type:object size:0x8 scope:local align:4 +__RTTI__23PeveHomingPositionEvent = .sdata:0x803E8270; // type:object size:0x8 scope:local align:4 +__RTTI__22PeveFunctionCurveEvent = .sdata:0x803E8278; // type:object size:0x8 scope:local align:4 +__RTTI__24PeveCircleMoveWatchEvent = .sdata:0x803E8280; // type:object size:0x8 scope:local align:4 +__RTTI__19PeveCircleMoveEvent = .sdata:0x803E8288; // type:object size:0x8 scope:local align:4 +__RTTI__26PeveHorizontalSinWaveEvent = .sdata:0x803E8290; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E8298; // type:object size:0x8 scope:local align:4 +__RTTI__21PeveAccelerationEvent = .sdata:0x803E82A0; // type:object size:0x8 scope:local align:4 +__RTTI__17PeveParabolaEvent = .sdata:0x803E82A8; // type:object size:0x8 scope:local align:4 +__RTTI__13PeveWaitEvent = .sdata:0x803E82B0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E82B8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E82C0; // type:object size:0x8 scope:local align:4 +__RTTI__8TaiState = .sdata:0x803E82C8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E82D0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiSerialAction = .sdata:0x803E82D8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E82E0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E82E8; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiFlickingUpperAction = .sdata:0x803E82F0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiFlickingAction = .sdata:0x803E82F8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTargetStickAction = .sdata:0x803E8300; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiFlickAction = .sdata:0x803E8308; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiBangingAction = .sdata:0x803E8310; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8318; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8320; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiAndCondition = .sdata:0x803E8328; // type:object size:0x8 scope:local align:4 +__RTTI__16TekiNotCondition = .sdata:0x803E8330; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiAnimationSwallowingAction = .sdata:0x803E8338; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackablePikiAction = .sdata:0x803E8340; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiAttackableNaviAction = .sdata:0x803E8348; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiAttackableNaviPikiAction = .sdata:0x803E8350; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8358; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNaviWatchResultOnAction = .sdata:0x803E8360; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTypeNaviWatchResultOnAction = .sdata:0x803E8368; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiStopSoundAction = .sdata:0x803E8370; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPlaySoundAction = .sdata:0x803E8378; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSetOptionAction = .sdata:0x803E8380; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiActionStateAction = .sdata:0x803E8388; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8390; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8398; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E83A0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiChappyLegEffectAction = .sdata:0x803E83A8; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E83B0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiChappySmashedAction = .sdata:0x803E83B8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E83C0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E83C8; // type:object size:0x8 scope:local align:4 +__RTTI__15TekiOrCondition = .sdata:0x803E83D0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiChappyCryAction = .sdata:0x803E83D8; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiOnceAction = .sdata:0x803E83E0; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiAndAction = .sdata:0x803E83E8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E83F0; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E83F8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiChappyStrategy = .sdata:0x803E8400; // type:object size:0x8 scope:local align:4 +@3018 = .sdata:0x803E8408; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8410; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8418; // type:object size:0x8 scope:local align:4 +@3021 = .sdata:0x803E8420; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8428; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8430; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiCatfishParameters = .sdata:0x803E8438; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiBlackChappyParameters = .sdata:0x803E8440; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiChappyParameters = .sdata:0x803E8448; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E8450; // type:object size:0x4 scope:local align:4 data:float +@2625 = .sdata:0x803E8454; // type:object size:0x4 scope:local align:4 data:float +@2626 = .sdata:0x803E8458; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata:0x803E845C; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata:0x803E8460; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata:0x803E8464; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata:0x803E8468; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata:0x803E846C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata:0x803E8470; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata:0x803E8474; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata:0x803E8478; // type:object size:0x4 scope:local align:4 data:float +@2635 = .sdata:0x803E847C; // type:object size:0x4 scope:local align:4 data:float +@2636 = .sdata:0x803E8480; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TekiStrategy = .sdata:0x803E8484; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E848C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiHollecStrategy = .sdata:0x803E8494; // type:object size:0x8 scope:local align:4 +@3451 = .sdata:0x803E849C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E84A4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E84AC; // type:object size:0x8 scope:local align:4 +@3454 = .sdata:0x803E84B4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E84BC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E84C4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiHollecParameters = .sdata:0x803E84CC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E84D4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E84DC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E84E4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiCollecLegEffectAction = .sdata:0x803E84EC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiCollecGetOutAction = .sdata:0x803E84F4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiCollecFallingAction = .sdata:0x803E84FC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecDeadFallingAction = .sdata:0x803E8504; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCollecPelletFinishContainerizedAction = .sdata:0x803E850C; // type:object size:0x8 scope:local align:4 +__RTTI__39TaiCollecPelletStartContainerizedAction = .sdata:0x803E8514; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecRoundCarryAction = .sdata:0x803E851C; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiCollecRouteImpassableAction = .sdata:0x803E8524; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E852C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E8534; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecCarryingToNestAction = .sdata:0x803E853C; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecPuttingPelletAction = .sdata:0x803E8544; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCollecPutAction = .sdata:0x803E854C; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiCollecDefeatCarryingAction = .sdata:0x803E8554; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCollecWinCarryingAction = .sdata:0x803E855C; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecBeingDraggedAction = .sdata:0x803E8564; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCarryingAction = .sdata:0x803E856C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiCollecCatchingAction = .sdata:0x803E8574; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecHoldPelletAction = .sdata:0x803E857C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiCollecPelletDisappearedAction = .sdata:0x803E8584; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecPelletLostAction = .sdata:0x803E858C; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E8594; // type:object size:0x8 scope:local align:4 +__RTTI__43TaiCollecVisibleHeightPelletLostTimerAction = .sdata:0x803E859C; // type:object size:0x8 scope:local align:4 +__RTTI__38TaiCollecVisibleHeightPelletLostAction = .sdata:0x803E85A4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E85AC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E85B4; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiCollecTargetPelletAction = .sdata:0x803E85BC; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiCollecLetGoOfPelletAction = .sdata:0x803E85C4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCollecImpassableAction = .sdata:0x803E85CC; // type:object size:0x8 scope:local align:4 +__RTTI__31TekiCollecTargetPelletCondition = .sdata:0x803E85D4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiCollecStrategy = .sdata:0x803E85DC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDependenceAction = .sdata:0x803E85E4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCollecParameters = .sdata:0x803E85EC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E85F8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiCreatureCollisionAction = .sdata:0x803E8600; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTekiTypeCollisionAction = .sdata:0x803E8608; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNaviCollisionAction = .sdata:0x803E8610; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPikiCollisionAction = .sdata:0x803E8618; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiWallCollisionAction = .sdata:0x803E8620; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiGroundCollisionAction = .sdata:0x803E8628; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiBounceAction = .sdata:0x803E8630; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8638; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8640; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E8648; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiStopGenParticleGeneratorAction = .sdata:0x803E8650; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiStartGenParticleGeneratorAction = .sdata:0x803E8658; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiEffectAction = .sdata:0x803E8660; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E8668; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E866C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E8670; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E8674; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E8678; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E867C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E8680; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E8684; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E8688; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E868C; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata:0x803E8690; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata:0x803E8694; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata:0x803E8698; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E869C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiIwagenShootingAction = .sdata:0x803E86A4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E86AC; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E86B4; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagenStrategy = .sdata:0x803E86BC; // type:object size:0x8 scope:local align:4 +@2167 = .sdata:0x803E86C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E86CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E86D4; // type:object size:0x8 scope:local align:4 +@2170 = .sdata:0x803E86DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E86E4; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E86EC; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagenParameters = .sdata:0x803E86F4; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiIwagonRollingAction = .sdata:0x803E86FC; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiIwagonDustEffectAction = .sdata:0x803E8704; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiIwagonStrategy = .sdata:0x803E870C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiIwagonParameters = .sdata:0x803E8714; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8720; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHasStickersOnBodyAction = .sdata:0x803E8728; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiHasStickersInMouthAction = .sdata:0x803E8730; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8738; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8740; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiTargetVisibleNaviAction = .sdata:0x803E8748; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiTargetVisibleNaviPikiAction = .sdata:0x803E8750; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiInsideTerritoryAction = .sdata:0x803E8758; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOutsideTerritoryAction = .sdata:0x803E8760; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetLostAction = .sdata:0x803E8768; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSeparateTargetAction = .sdata:0x803E8770; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiContactTargetAction = .sdata:0x803E8778; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiVisibleTargetAction = .sdata:0x803E8780; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E8788; // type:object size:0x4 scope:local align:4 data:float +@2617 = .sdata:0x803E878C; // type:object size:0x4 scope:local align:4 data:float +@2618 = .sdata:0x803E8790; // type:object size:0x4 scope:local align:4 data:float +@2619 = .sdata:0x803E8794; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata:0x803E8798; // type:object size:0x4 scope:local align:4 data:float +@2621 = .sdata:0x803E879C; // type:object size:0x4 scope:local align:4 data:float +@2622 = .sdata:0x803E87A0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E87A4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E87AC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E87B4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiKinokoLegEffectAction = .sdata:0x803E87BC; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiKinokoTerritoryRunningAwayAction = .sdata:0x803E87C4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E87CC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E87D4; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiKinokoDischargingSporesAction = .sdata:0x803E87DC; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiKinokoChargingSporesAction = .sdata:0x803E87E4; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiKinokoTurningOverAction = .sdata:0x803E87EC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E87F4; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E87FC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiKinokoStrategy = .sdata:0x803E8804; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiNotAction = .sdata:0x803E880C; // type:object size:0x8 scope:local align:4 +@2978 = .sdata:0x803E8814; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E881C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8824; // type:object size:0x8 scope:local align:4 +@2981 = .sdata:0x803E882C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8834; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E883C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiKinokoParameters = .sdata:0x803E8844; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8850; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiKeySendMessageAction = .sdata:0x803E8858; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSendMessageAction = .sdata:0x803E8860; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E8868; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E886C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E8870; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E8874; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E8878; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E887C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E8880; // type:object size:0x4 scope:local align:4 data:float +@2407 = .sdata:0x803E8884; // type:object size:0x4 scope:local align:4 data:float +@2408 = .sdata:0x803E8888; // type:object size:0x4 scope:local align:4 data:float +@2409 = .sdata:0x803E888C; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata:0x803E8890; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata:0x803E8894; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata:0x803E8898; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata:0x803E889C; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata:0x803E88A0; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata:0x803E88A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E88A8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizinkoFlyingAwayAction = .sdata:0x803E88B0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiMizinkoWaitingAction = .sdata:0x803E88B8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMizinkoDropWaterAction = .sdata:0x803E88C0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoComingAction = .sdata:0x803E88C8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiMizinkoGoingAction = .sdata:0x803E88D0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiMizinkoFadingAction = .sdata:0x803E88D8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E88E0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMizinkoMovingTimerAction = .sdata:0x803E88E8; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMizinkoCryTimerAction = .sdata:0x803E88F0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E88F8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8900; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizinkoStrategy = .sdata:0x803E8908; // type:object size:0x8 scope:local align:4 +@3002 = .sdata:0x803E8910; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8918; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8920; // type:object size:0x8 scope:local align:4 +@3005 = .sdata:0x803E8928; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8930; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8938; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizinkoParameters = .sdata:0x803E8940; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiMizigenNaviApprouchAction = .sdata:0x803E8948; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiMizigenGeneratingAction = .sdata:0x803E8950; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiMizigenStrategy = .sdata:0x803E8958; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiMizigenParameters = .sdata:0x803E8960; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803E8968; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E896C; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803E8970; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E8974; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803E8978; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803E897C; // type:object size:0x4 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8980; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiRandomSetAnimationCounterAction = .sdata:0x803E8988; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSetFrameMotionAction = .sdata:0x803E8990; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiFinishStoppingMoveAction = .sdata:0x803E8998; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiStoppingMoveAction = .sdata:0x803E89A0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiOutsideKeyStopMoveAction = .sdata:0x803E89A8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E89B0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwitchMotionAction = .sdata:0x803E89B8; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiCountLoopAction = .sdata:0x803E89C0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAnimationKeyAction = .sdata:0x803E89C8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishMotionAction = .sdata:0x803E89D0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E89D8; // type:object size:0x8 scope:local align:4 +@1540 = .sdata:0x803E89E0; // type:object size:0x4 scope:local align:4 +@1541 = .sdata:0x803E89E4; // type:object size:0x4 scope:local align:4 +@1542 = .sdata:0x803E89E8; // type:object size:0x4 scope:local align:4 +@1544 = .sdata:0x803E89EC; // type:object size:0x4 scope:local align:4 +@1545 = .sdata:0x803E89F0; // type:object size:0x4 scope:local align:4 +@1546 = .sdata:0x803E89F4; // type:object size:0x4 scope:local align:4 +@1549 = .sdata:0x803E89F8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E89FC; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiHeadOnCollisionAvoidanceAction = .sdata:0x803E8A04; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiTargetNestAction = .sdata:0x803E8A0C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiWatchOffTerritoryCenterAction = .sdata:0x803E8A14; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8A1C; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E8A24; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiRunningAwayAction = .sdata:0x803E8A2C; // type:object size:0x8 scope:local align:4 +__RTTI__37TaiRunningAwayToTargetDirectionAction = .sdata:0x803E8A34; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiRotatingAction = .sdata:0x803E8A3C; // type:object size:0x8 scope:local align:4 +__RTTI__32TaiTurningToTargetPositionAction = .sdata:0x803E8A44; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOutOfTraceAngleAction = .sdata:0x803E8A4C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTraceTurningAction = .sdata:0x803E8A54; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiTurningAwayAction = .sdata:0x803E8A5C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8A64; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTurningAction = .sdata:0x803E8A6C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDirectTurnAction = .sdata:0x803E8A74; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiGoingHomeAction = .sdata:0x803E8A7C; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiTracingAction = .sdata:0x803E8A84; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiRandomWanderingRouteAction = .sdata:0x803E8A8C; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiImpassableAction = .sdata:0x803E8A94; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiClampMinVelocityYAction = .sdata:0x803E8A9C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMinHeightAction = .sdata:0x803E8AA4; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiClampMaxHeightAction = .sdata:0x803E8AAC; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiHorizontalSinWaveAction = .sdata:0x803E8AB4; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiCircleMoveAction = .sdata:0x803E8ABC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiParabolaAction = .sdata:0x803E8AC4; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiAccelerationAction = .sdata:0x803E8ACC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiMakingNextDriveAction = .sdata:0x803E8AD4; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiMakingNextVelocityAction = .sdata:0x803E8ADC; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiMakeAccelerationDirectionAction = .sdata:0x803E8AE4; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiMakeVelocityDirectionAction = .sdata:0x803E8AEC; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiFinishFlyingAction = .sdata:0x803E8AF4; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiStartFlyingAction = .sdata:0x803E8AFC; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiStopMoveAction = .sdata:0x803E8B04; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiMoveNestPositionAction = .sdata:0x803E8B0C; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E8B18; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E8B1C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E8B20; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E8B24; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E8B28; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E8B2C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E8B30; // type:object size:0x4 scope:local align:4 data:float +@3043 = .sdata:0x803E8B34; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata:0x803E8B38; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata:0x803E8B3C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E8B40; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidStartDroppingWaterAction = .sdata:0x803E8B48; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidFallingWaterEffectAction = .sdata:0x803E8B50; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidShockFallingAction = .sdata:0x803E8B58; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiNapkidFallingAction = .sdata:0x803E8B60; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiNapkidFlickAction = .sdata:0x803E8B68; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidThrowingPikiAction = .sdata:0x803E8B70; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidRisingAscendingAction = .sdata:0x803E8B78; // type:object size:0x8 scope:local align:4 +__RTTI__33TaiNapkidTakingOffAscendingAction = .sdata:0x803E8B80; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidCatchAscendingAction = .sdata:0x803E8B88; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiNapkidCatchFlyingAction = .sdata:0x803E8B90; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidCatchTracingAction = .sdata:0x803E8B98; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiNapkidCatchDescendingAction = .sdata:0x803E8BA0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8BA8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8BB0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCatchingAction = .sdata:0x803E8BB8; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiNapkidApproachPikiAction = .sdata:0x803E8BC0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiNapkidAscendingAction = .sdata:0x803E8BC8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiNapkidFlyingAction = .sdata:0x803E8BD0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidCirclingAction = .sdata:0x803E8BD8; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidStraightFlyingAction = .sdata:0x803E8BE0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidShortRangeAction = .sdata:0x803E8BE8; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiNapkidPikiLostAction = .sdata:0x803E8BF0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiNapkidTargetPikiAction = .sdata:0x803E8BF8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8C00; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E8C08; // type:object size:0x8 scope:local align:4 +__RTTI__29TaiNapkidWanderingRouteAction = .sdata:0x803E8C10; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidShortRangeCondition = .sdata:0x803E8C18; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiNapkidTargetPikiCondition = .sdata:0x803E8C20; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8C28; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8C30; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiNapkidStrategy = .sdata:0x803E8C38; // type:object size:0x8 scope:local align:4 +@4007 = .sdata:0x803E8C40; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8C48; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8C50; // type:object size:0x8 scope:local align:4 +@4010 = .sdata:0x803E8C58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8C60; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8C68; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiNapkidParameters = .sdata:0x803E8C70; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E8C78; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E8C7C; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E8C80; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E8C84; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E8C88; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E8C8C; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E8C90; // type:object size:0x4 scope:local align:4 data:float +@2933 = .sdata:0x803E8C94; // type:object size:0x4 scope:local align:4 data:float +@2934 = .sdata:0x803E8C98; // type:object size:0x4 scope:local align:4 data:float +@2935 = .sdata:0x803E8C9C; // type:object size:0x4 scope:local align:4 data:float +@2936 = .sdata:0x803E8CA0; // type:object size:0x4 scope:local align:4 data:float +@2937 = .sdata:0x803E8CA4; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata:0x803E8CA8; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata:0x803E8CAC; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata:0x803E8CB0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E8CB4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8CBC; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E8CC4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiLegEffectAction = .sdata:0x803E8CCC; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiOtimotiAttackingEffectAction = .sdata:0x803E8CD4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiOtimotiAttackingAction = .sdata:0x803E8CDC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiBouncingAction = .sdata:0x803E8CE4; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8CEC; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8CF4; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiPressingAction = .sdata:0x803E8CFC; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiOtimotiDroppingAction = .sdata:0x803E8D04; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiAirWaitingAction = .sdata:0x803E8D0C; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiOtimotiJumpingAction = .sdata:0x803E8D14; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiOtimotiFailToJumpAction = .sdata:0x803E8D1C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiOtimotiFlickAction = .sdata:0x803E8D24; // type:object size:0x8 scope:local align:4 +__RTTI__34TaiOtimotiStartDroppingWaterAction = .sdata:0x803E8D2C; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8D34; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8D3C; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiOtimotiStrategy = .sdata:0x803E8D44; // type:object size:0x8 scope:local align:4 +@3597 = .sdata:0x803E8D4C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8D54; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8D5C; // type:object size:0x8 scope:local align:4 +@3600 = .sdata:0x803E8D64; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8D6C; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8D74; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiBlackFrogParameters = .sdata:0x803E8D7C; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiOtimotiParameters = .sdata:0x803E8D84; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E8D90; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803E8D94; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803E8D98; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803E8D9C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E8DA0; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmChangingColorAction = .sdata:0x803E8DA8; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPalmSettingPelletAction = .sdata:0x803E8DB0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiPalmSunflowerAction = .sdata:0x803E8DB8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiPalmFlowerDamageAction = .sdata:0x803E8DC0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmGrowAction = .sdata:0x803E8DC8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiPalmGrowingAction = .sdata:0x803E8DD0; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8DD8; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E8DE0; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiPalmDamagingAction = .sdata:0x803E8DE8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E8DF0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPalmDyingAction = .sdata:0x803E8DF8; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiPalmMotionAction = .sdata:0x803E8E00; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8E08; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8E10; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8E18; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8E20; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiPalmStrategy = .sdata:0x803E8E28; // type:object size:0x8 scope:local align:4 +@2410 = .sdata:0x803E8E30; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8E38; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8E40; // type:object size:0x8 scope:local align:4 +@2413 = .sdata:0x803E8E48; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E8E50; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E8E58; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiPalmParameters = .sdata:0x803E8E60; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E8E68; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiDangerLifeAction = .sdata:0x803E8E70; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiWarnAction = .sdata:0x803E8E78; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPressedAction = .sdata:0x803E8E80; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiBeingPressedAction = .sdata:0x803E8E88; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiSmashedAction = .sdata:0x803E8E90; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiStickedAction = .sdata:0x803E8E98; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8EA0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8EA8; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestCollisionAction = .sdata:0x803E8EB0; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiTargetNearestAssailantAction = .sdata:0x803E8EB8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8EC0; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiDamagingAction = .sdata:0x803E8EC8; // type:object size:0x8 scope:local align:4 +__RTTI__40TaiCounterattackSimultaneousDamageAction = .sdata:0x803E8ED0; // type:object size:0x8 scope:local align:4 +__RTTI__27TaiSimultaneousDamageAction = .sdata:0x803E8ED8; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiDamageAction = .sdata:0x803E8EE0; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageScaleAction = .sdata:0x803E8EE8; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiDamageCountAction = .sdata:0x803E8EF0; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiDamageCountResetAction = .sdata:0x803E8EF8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiDyingAction = .sdata:0x803E8F00; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiCreateDeadEffectAction = .sdata:0x803E8F08; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiSpawnItemsAction = .sdata:0x803E8F10; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiStartDyingAction = .sdata:0x803E8F18; // type:object size:0x8 scope:local align:4 +__RTTI__12TaiDyeAction = .sdata:0x803E8F20; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiLifeDamageAction = .sdata:0x803E8F28; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiLifeZeroAction = .sdata:0x803E8F30; // type:object size:0x8 scope:local align:4 +__RTTI__13TaiDeadAction = .sdata:0x803E8F38; // type:object size:0x8 scope:local align:4 +@986 = .sdata:0x803E8F40; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata:0x803E8F44; // type:object size:0x4 scope:local align:4 data:float +@2784 = .sdata:0x803E8F48; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata:0x803E8F4C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E8F50; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803E8F58; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiJointEffectAction = .sdata:0x803E8F60; // type:object size:0x8 scope:local align:4 +__RTTI__35TaiSwallowMissAttackingEffectAction = .sdata:0x803E8F68; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiSwallowLegEffectAction = .sdata:0x803E8F70; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiSwallowNoticeAction = .sdata:0x803E8F78; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiSwallowSnoreAction = .sdata:0x803E8F80; // type:object size:0x8 scope:local align:4 +__RTTI__31TaiSwallowSwallowingFlickAction = .sdata:0x803E8F88; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E8F90; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E8F98; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E8FA0; // type:object size:0x8 scope:local align:4 +__RTTI__24TaiSwallowFlickingAction = .sdata:0x803E8FA8; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiContinuousMotionAction = .sdata:0x803E8FB0; // type:object size:0x8 scope:local align:4 +__RTTI__23TaiSwallowTurningAction = .sdata:0x803E8FB8; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiSwallowReceiveMessageAction = .sdata:0x803E8FC0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E8FC8; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E8FD0; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiSwallowStrategy = .sdata:0x803E8FD8; // type:object size:0x8 scope:local align:4 +@3280 = .sdata:0x803E8FE0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E8FE8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E8FF0; // type:object size:0x8 scope:local align:4 +@3283 = .sdata:0x803E8FF8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9000; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E9008; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiBlackSwallowParameters = .sdata:0x803E9010; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiSwallowParameters = .sdata:0x803E9018; // type:object size:0x8 scope:local align:4 +@1995 = .sdata:0x803E9020; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803E9024; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803E9028; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803E902C; // type:object size:0x8 scope:local align:4 +__RTTI__26TaiPearlTresureSoundAction = .sdata:0x803E9034; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E903C; // type:object size:0x8 scope:local align:4 +__RTTI__11TaiStrategy = .sdata:0x803E9044; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiPearlStrategy = .sdata:0x803E904C; // type:object size:0x8 scope:local align:4 +@2468 = .sdata:0x803E9054; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E905C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9064; // type:object size:0x8 scope:local align:4 +@2471 = .sdata:0x803E906C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9074; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E907C; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiRocpearlParameters = .sdata:0x803E9084; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiPearlParameters = .sdata:0x803E908C; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9094; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E909C; // type:object size:0x8 scope:local align:4 +__RTTI__17TaiShellEatAction = .sdata:0x803E90A4; // type:object size:0x8 scope:local align:4 +__RTTI__28TaiShellNaviPikiInsideAction = .sdata:0x803E90AC; // type:object size:0x8 scope:local align:4 +__RTTI__30TaiShellSaveItemPositionAction = .sdata:0x803E90B4; // type:object size:0x8 scope:local align:4 +__RTTI__25TaiShellSetPositionAction = .sdata:0x803E90BC; // type:object size:0x8 scope:local align:4 +__RTTI__16TaiShellStrategy = .sdata:0x803E90C4; // type:object size:0x8 scope:local align:4 +__RTTI__18TaiShellParameters = .sdata:0x803E90CC; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E90D8; // type:object size:0x8 scope:local align:4 +__RTTI__14TaiTimerAction = .sdata:0x803E90E0; // type:object size:0x8 scope:local align:4 +__RTTI__22TaiStartingTimerAction = .sdata:0x803E90E8; // type:object size:0x8 scope:local align:4 +__RTTI__21TaiTimerElapsedAction = .sdata:0x803E90F0; // type:object size:0x8 scope:local align:4 +__RTTI__19TaiResetTimerAction = .sdata:0x803E90F8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803E9100; // type:object size:0x8 scope:local align:4 +__RTTI__15TaiMotionAction = .sdata:0x803E9108; // type:object size:0x8 scope:local align:4 +__RTTI__20TaiWaitTurningAction = .sdata:0x803E9110; // type:object size:0x8 scope:local align:4 +@1122 = .sdata:0x803E9118; // type:object size:0x5 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E9120; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9128; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E9130; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9138; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9140; // type:object size:0x8 scope:local align:4 +@1130 = .sdata:0x803E9148; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E9150; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803E9158; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803E9160; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803E9168; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5YTeki = .sdata:0x803E9170; // type:object size:0x8 scope:local align:4 +__RTTI__4Teki = .sdata:0x803E9178; // type:object size:0x8 scope:local align:4 +@1232 = .sdata:0x803E9180; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9188; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9190; // type:object size:0x8 scope:local align:4 +@1235 = .sdata:0x803E9198; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E91A0; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiAnimationManager = .sdata:0x803E91A8; // type:object size:0x8 scope:local align:4 +@977 = .sdata:0x803E91B0; // type:object size:0x4 scope:local align:4 +@978 = .sdata:0x803E91B4; // type:object size:0x4 scope:local align:4 +@979 = .sdata:0x803E91B8; // type:object size:0x4 scope:local align:4 +@981 = .sdata:0x803E91BC; // type:object size:0x4 scope:local align:4 +@982 = .sdata:0x803E91C0; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803E91C4; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803E91C8; // type:object size:0x4 scope:local align:4 data:float +TEKI_OPTION_VISIBLE__5BTeki = .sdata:0x803E91CC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHADOW_VISIBLE__5BTeki = .sdata:0x803E91D0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_LIFE_GAUGE_VISIBLE__5BTeki = .sdata:0x803E91D4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ATARI__5BTeki = .sdata:0x803E91D8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ALIVE__5BTeki = .sdata:0x803E91DC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_ORGANIC__5BTeki = .sdata:0x803E91E0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_MANUAL_ANIMATION__5BTeki = .sdata:0x803E91E4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_GRAVITATABLE__5BTeki = .sdata:0x803E91E8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_INVINCIBLE__5BTeki = .sdata:0x803E91EC; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_PRESSED__5BTeki = .sdata:0x803E91F0; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DRAWED__5BTeki = .sdata:0x803E91F4; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_SHAPE_VISIBLE__5BTeki = .sdata:0x803E91F8; // type:object size:0x4 scope:global align:4 data:4byte +TEKI_OPTION_DAMAGE_COUNTABLE__5BTeki = .sdata:0x803E91FC; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_FINISHED__5BTeki = .sdata:0x803E9200; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_0__5BTeki = .sdata:0x803E9204; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_1__5BTeki = .sdata:0x803E9208; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_ACTION_2__5BTeki = .sdata:0x803E920C; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPSTART__5BTeki = .sdata:0x803E9210; // type:object size:0x4 scope:global align:4 data:4byte +ANIMATION_KEY_OPTION_LOOPEND__5BTeki = .sdata:0x803E9214; // type:object size:0x4 scope:global align:4 data:4byte +@2006 = .sdata:0x803E9218; // type:object size:0x4 scope:local align:4 data:string +@2008 = .sdata:0x803E921C; // type:object size:0x4 scope:local align:4 data:string +@2009 = .sdata:0x803E9220; // type:object size:0x4 scope:local align:4 data:string +@2011 = .sdata:0x803E9224; // type:object size:0x4 scope:local align:4 data:string +@2013 = .sdata:0x803E9228; // type:object size:0x4 scope:local align:4 data:string +@2026 = .sdata:0x803E922C; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata:0x803E9230; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata:0x803E9234; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata:0x803E9238; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata:0x803E923C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata:0x803E9240; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata:0x803E9244; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata:0x803E9248; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803E924C; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata:0x803E9250; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata:0x803E9254; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata:0x803E9258; // type:object size:0x4 scope:local align:4 data:float +@2372 = .sdata:0x803E925C; // type:object size:0x4 scope:local align:4 data:float +@2373 = .sdata:0x803E9260; // type:object size:0x4 scope:local align:4 data:float +@2374 = .sdata:0x803E9264; // type:object size:0x4 scope:local align:4 data:float +@2749 = .sdata:0x803E9268; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata:0x803E926C; // type:object size:0x4 scope:local align:4 data:float +@4342 = .sdata:0x803E9270; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata:0x803E9274; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata:0x803E9278; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata:0x803E927C; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata:0x803E9280; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata:0x803E9284; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata:0x803E9288; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata:0x803E928C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata:0x803E9290; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata:0x803E9294; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata:0x803E9298; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata:0x803E929C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9Condition = .sdata:0x803E92A0; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E92A8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E92B0; // type:object size:0x8 scope:local align:4 +__RTTI__11NVector3fIO = .sdata:0x803E92B8; // type:object size:0x8 scope:local align:4 +__RTTI__10PelletView = .sdata:0x803E92C0; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E92C8; // type:object size:0x8 scope:local align:4 +@4712 = .sdata:0x803E92D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803E92D8; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E92E0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E92E8; // type:object size:0x8 scope:local align:4 +__RTTI__5BTeki = .sdata:0x803E92F0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E92F8; // type:object size:0x8 scope:local align:4 +__RTTI__13TekiCondition = .sdata:0x803E9300; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiAngleCondition = .sdata:0x803E9308; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiLowerCondition = .sdata:0x803E9310; // type:object size:0x8 scope:local align:4 +__RTTI__26TekiVisibleHeightCondition = .sdata:0x803E9318; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiVisibleCondition = .sdata:0x803E9320; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiAttackableCondition = .sdata:0x803E9328; // type:object size:0x8 scope:local align:4 +__RTTI__23TekiLowerRangeCondition = .sdata:0x803E9330; // type:object size:0x8 scope:local align:4 +__RTTI__20TekiStickerCondition = .sdata:0x803E9338; // type:object size:0x8 scope:local align:4 +__RTTI__27TekiSphereDistanceCondition = .sdata:0x803E9340; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiDistanceCondition = .sdata:0x803E9348; // type:object size:0x8 scope:local align:4 +__RTTI__28TekiCreaturePointerCondition = .sdata:0x803E9350; // type:object size:0x8 scope:local align:4 +__RTTI__24TekiRecognitionCondition = .sdata:0x803E9358; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiStickingCondition = .sdata:0x803E9360; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionSphereDistanceCondition = .sdata:0x803E9368; // type:object size:0x8 scope:local align:4 +__RTTI__35TekiPositionCircleDistanceCondition = .sdata:0x803E9370; // type:object size:0x8 scope:local align:4 +__RTTI__29TekiPositionDistanceCondition = .sdata:0x803E9378; // type:object size:0x8 scope:local align:4 +__RTTI__19TekiPelletCondition = .sdata:0x803E9380; // type:object size:0x8 scope:local align:4 +__RTTI__21TekiNaviPikiCondition = .sdata:0x803E9388; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiNaviCondition = .sdata:0x803E9390; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiFreeCondition = .sdata:0x803E9398; // type:object size:0x8 scope:local align:4 +__RTTI__17TekiTypeCondition = .sdata:0x803E93A0; // type:object size:0x8 scope:local align:4 +__RTTI__18TekiStateCondition = .sdata:0x803E93A8; // type:object size:0x8 scope:local align:4 +__RTTI__22TekiPikiStateCondition = .sdata:0x803E93B0; // type:object size:0x8 scope:local align:4 +__RTTI__11Interaction = .sdata:0x803E93B8; // type:object size:0x8 scope:local align:4 +__RTTI__17InteractHitEffect = .sdata:0x803E93C0; // type:object size:0x8 scope:local align:4 +__RTTI__12InteractBomb = .sdata:0x803E93C8; // type:object size:0x8 scope:local align:4 +@1216 = .sdata:0x803E93D0; // type:object size:0x8 scope:local align:4 data:string +@1217 = .sdata:0x803E93D8; // type:object size:0x5 scope:local align:4 data:string +@1218 = .sdata:0x803E93E0; // type:object size:0x7 scope:local align:4 data:string +@1219 = .sdata:0x803E93E8; // type:object size:0x7 scope:local align:4 data:string +@1220 = .sdata:0x803E93F0; // type:object size:0x7 scope:local align:4 data:string +@1221 = .sdata:0x803E93F8; // type:object size:0x8 scope:local align:4 data:string +@1222 = .sdata:0x803E9400; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803E9408; // type:object size:0x8 scope:local align:4 data:string +@1224 = .sdata:0x803E9410; // type:object size:0x5 scope:local align:4 data:string +@1225 = .sdata:0x803E9418; // type:object size:0x7 scope:local align:4 data:string +@1226 = .sdata:0x803E9420; // type:object size:0x7 scope:local align:4 data:string +@1227 = .sdata:0x803E9428; // type:object size:0x6 scope:local align:4 data:string +@1228 = .sdata:0x803E9430; // type:object size:0x7 scope:local align:4 data:string +@1229 = .sdata:0x803E9438; // type:object size:0x7 scope:local align:4 data:string +@1230 = .sdata:0x803E9440; // type:object size:0x6 scope:local align:4 data:string +@1231 = .sdata:0x803E9448; // type:object size:0x6 scope:local align:4 data:string +@1232 = .sdata:0x803E9450; // type:object size:0x5 scope:local align:4 data:string +@1233 = .sdata:0x803E9458; // type:object size:0x4 scope:local align:4 data:string +@1234 = .sdata:0x803E945C; // type:object size:0x7 scope:local align:4 data:string +@1238 = .sdata:0x803E9464; // type:object size:0x7 scope:local align:4 data:string +@1239 = .sdata:0x803E946C; // type:object size:0x7 scope:local align:4 data:string +@1240 = .sdata:0x803E9474; // type:object size:0x6 scope:local align:4 data:string +@1241 = .sdata:0x803E947C; // type:object size:0x7 scope:local align:4 data:string +@1242 = .sdata:0x803E9484; // type:object size:0x6 scope:local align:4 data:string +@1243 = .sdata:0x803E948C; // type:object size:0x6 scope:local align:4 data:string +@1244 = .sdata:0x803E9494; // type:object size:0x8 scope:local align:4 data:string +@1245 = .sdata:0x803E949C; // type:object size:0x8 scope:local align:4 data:string +@1246 = .sdata:0x803E94A4; // type:object size:0x8 scope:local align:4 data:string +@1247 = .sdata:0x803E94AC; // type:object size:0x7 scope:local align:4 data:string +@1248 = .sdata:0x803E94B4; // type:object size:0x7 scope:local align:4 data:string +@1249 = .sdata:0x803E94BC; // type:object size:0x8 scope:local align:4 data:string +@1250 = .sdata:0x803E94C4; // type:object size:0x5 scope:local align:4 data:string +@1251 = .sdata:0x803E94CC; // type:object size:0x8 scope:local align:4 data:string +@1311 = .sdata:0x803E94D4; // type:object size:0x1 scope:local align:4 +@1312 = .sdata:0x803E94D8; // type:object size:0x6 scope:local align:4 data:string +@1517 = .sdata:0x803E94E0; // type:object size:0x8 scope:local align:4 data:string +@1519 = .sdata:0x803E94E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E94F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E94F8; // type:object size:0x8 scope:local align:4 +@1522 = .sdata:0x803E9500; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9508; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E9510; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E9518; // type:object size:0x8 scope:local align:4 +__RTTI__13MonoObjectMgr = .sdata:0x803E9520; // type:object size:0x8 scope:local align:4 +__RTTI__7TekiMgr = .sdata:0x803E9528; // type:object size:0x8 scope:local align:4 +@1328 = .sdata:0x803E9530; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803E9538; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9540; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E9548; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9550; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9558; // type:object size:0x8 scope:local align:4 +@1336 = .sdata:0x803E9560; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803E9568; // type:object size:0x8 scope:local align:4 +__RTTI__5NTeki = .sdata:0x803E9570; // type:object size:0x8 scope:local align:4 +@1191 = .sdata:0x803E9578; // type:object size:0x7 scope:local align:4 data:string +@1212 = .sdata:0x803E9580; // type:object size:0x5 scope:local align:4 data:string +@1215 = .sdata:0x803E9588; // type:object size:0x6 scope:local align:4 data:string +@1218 = .sdata:0x803E9590; // type:object size:0x7 scope:local align:4 data:string +@1413 = .sdata:0x803E9598; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E95A0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E95A8; // type:object size:0x8 scope:local align:4 +@1416 = .sdata:0x803E95B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E95B8; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803E95C0; // type:object size:0x8 scope:local align:4 +@1048 = .sdata:0x803E95C8; // type:object size:0x5 scope:local align:4 data:string +@1062 = .sdata:0x803E95D0; // type:object size:0x4 scope:local align:4 data:float +@1063 = .sdata:0x803E95D4; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata:0x803E95D8; // type:object size:0x4 scope:local align:4 data:float +@1065 = .sdata:0x803E95DC; // type:object size:0x4 scope:local align:4 data:float +@1066 = .sdata:0x803E95E0; // type:object size:0x4 scope:local align:4 data:float +@1067 = .sdata:0x803E95E4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__15TekiPersonality = .sdata:0x803E95E8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803E95F0; // type:object size:0x8 scope:local align:4 +__RTTI__10Parameters = .sdata:0x803E95F8; // type:object size:0x8 scope:local align:4 +@1129 = .sdata:0x803E9600; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7GenBase = .sdata:0x803E9608; // type:object size:0x8 scope:local align:4 +__RTTI__9GenObject = .sdata:0x803E9610; // type:object size:0x8 scope:local align:4 +__RTTI__13GenObjectBoss = .sdata:0x803E9618; // type:object size:0x8 scope:local align:4 +@1553 = .sdata:0x803E9620; // type:object size:0x5 scope:local align:4 data:string +@1740 = .sdata:0x803E9628; // type:object size:0x4 scope:local align:4 data:string +@1742 = .sdata:0x803E962C; // type:object size:0x4 scope:local align:4 data:string +@1743 = .sdata:0x803E9630; // type:object size:0x4 scope:local align:4 data:string +@1745 = .sdata:0x803E9634; // type:object size:0x4 scope:local align:4 data:string +@1747 = .sdata:0x803E9638; // type:object size:0x4 scope:local align:4 data:string +@1749 = .sdata:0x803E963C; // type:object size:0x4 scope:local align:4 data:4byte +@1751 = .sdata:0x803E9640; // type:object size:0x4 scope:local align:4 data:4byte +@1753 = .sdata:0x803E9644; // type:object size:0x4 scope:local align:4 data:4byte +@1754 = .sdata:0x803E9648; // type:object size:0x4 scope:local align:4 data:4byte +@1756 = .sdata:0x803E964C; // type:object size:0x4 scope:local align:4 data:4byte +@1758 = .sdata:0x803E9650; // type:object size:0x4 scope:local align:4 data:4byte +@1760 = .sdata:0x803E9654; // type:object size:0x4 scope:local align:4 data:4byte +@1762 = .sdata:0x803E9658; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata:0x803E965C; // type:object size:0x4 scope:local align:4 data:4byte +@1764 = .sdata:0x803E9660; // type:object size:0x4 scope:local align:4 data:4byte +@1766 = .sdata:0x803E9664; // type:object size:0x4 scope:local align:4 data:4byte +@1768 = .sdata:0x803E9668; // type:object size:0x4 scope:local align:4 data:4byte +@1769 = .sdata:0x803E966C; // type:object size:0x4 scope:local align:4 data:4byte +@1770 = .sdata:0x803E9670; // type:object size:0x4 scope:local align:4 data:4byte +@1771 = .sdata:0x803E9674; // type:object size:0x4 scope:local align:4 data:4byte +@1773 = .sdata:0x803E9678; // type:object size:0x4 scope:local align:4 data:4byte +@1774 = .sdata:0x803E967C; // type:object size:0x4 scope:local align:4 data:4byte +@1775 = .sdata:0x803E9680; // type:object size:0x4 scope:local align:4 data:4byte +@1776 = .sdata:0x803E9684; // type:object size:0x4 scope:local align:4 data:4byte +@1777 = .sdata:0x803E9688; // type:object size:0x4 scope:local align:4 data:4byte +@1778 = .sdata:0x803E968C; // type:object size:0x4 scope:local align:4 data:4byte +@1779 = .sdata:0x803E9690; // type:object size:0x4 scope:local align:4 data:4byte +@1780 = .sdata:0x803E9694; // type:object size:0x4 scope:local align:4 data:4byte +@1781 = .sdata:0x803E9698; // type:object size:0x4 scope:local align:4 data:4byte +@1782 = .sdata:0x803E969C; // type:object size:0x4 scope:local align:4 data:4byte +@1838 = .sdata:0x803E96A0; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata:0x803E96A4; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata:0x803E96A8; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata:0x803E96AC; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata:0x803E96B0; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata:0x803E96B4; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata:0x803E96B8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata:0x803E96BC; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata:0x803E96C0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E96C4; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E96CC; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E96D4; // type:object size:0x8 scope:local align:4 +__RTTI__4Boss = .sdata:0x803E96DC; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E96E4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E96EC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E96F4; // type:object size:0x8 scope:local align:4 +@407 = .sdata:0x803E9700; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9708; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9710; // type:object size:0x8 scope:local align:4 +@410 = .sdata:0x803E9718; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9720; // type:object size:0x8 scope:local align:4 +__RTTI__20BossAnimationManager = .sdata:0x803E9728; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803E9730; // type:object size:0x8 scope:local align:4 +__RTTI__15CndBossCollKill = .sdata:0x803E9738; // type:object size:0x8 scope:local align:4 +__RTTI__17CndStickMouthKill = .sdata:0x803E9740; // type:object size:0x8 scope:local align:4 +__RTTI__16CndStickBossKill = .sdata:0x803E9748; // type:object size:0x8 scope:local align:4 +__RTTI__12CndBossFlick = .sdata:0x803E9750; // type:object size:0x8 scope:local align:4 +__RTTI__10CndIsAlive = .sdata:0x803E9758; // type:object size:0x8 scope:local align:4 +@1838 = .sdata:0x803E9760; // type:object size:0x8 scope:local align:4 data:string +@1925 = .sdata:0x803E9768; // type:object size:0x7 scope:local align:4 data:string +@2051 = .sdata:0x803E9770; // type:object size:0x5 scope:local align:4 data:string +@2058 = .sdata:0x803E9778; // type:object size:0x6 scope:local align:4 data:string +@2064 = .sdata:0x803E9780; // type:object size:0x6 scope:local align:4 data:string +@2070 = .sdata:0x803E9788; // type:object size:0x8 scope:local align:4 data:string +@2076 = .sdata:0x803E9790; // type:object size:0x5 scope:local align:4 data:string +@2082 = .sdata:0x803E9798; // type:object size:0x5 scope:local align:4 data:string +@2088 = .sdata:0x803E97A0; // type:object size:0x7 scope:local align:4 data:string +@2094 = .sdata:0x803E97A8; // type:object size:0x4 scope:local align:4 data:string +@2106 = .sdata:0x803E97AC; // type:object size:0x5 scope:local align:4 data:string +@2889 = .sdata:0x803E97B4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E97BC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E97C4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossNode = .sdata:0x803E97CC; // type:object size:0x8 scope:local align:4 +__RTTI__11Traversable = .sdata:0x803E97D4; // type:object size:0x8 scope:local align:4 +@2895 = .sdata:0x803E97DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E97E4; // type:object size:0x8 scope:local align:4 +__RTTI__9ObjectMgr = .sdata:0x803E97EC; // type:object size:0x8 scope:local align:4 +__RTTI__7BossMgr = .sdata:0x803E97F4; // type:object size:0x8 scope:local align:4 +@1123 = .sdata:0x803E9800; // type:object size:0x7 scope:local align:4 data:string +@1454 = .sdata:0x803E9808; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E980C; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E9810; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E9814; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E9818; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E981C; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E9820; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E9824; // type:object size:0x4 scope:local align:4 data:4byte +@1470 = .sdata:0x803E9828; // type:object size:0x4 scope:local align:4 data:4byte +@1472 = .sdata:0x803E982C; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E9830; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E9834; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E9838; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E983C; // type:object size:0x4 scope:local align:4 data:4byte +@1480 = .sdata:0x803E9840; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E9844; // type:object size:0x4 scope:local align:4 data:4byte +@1484 = .sdata:0x803E9848; // type:object size:0x4 scope:local align:4 data:4byte +@1486 = .sdata:0x803E984C; // type:object size:0x4 scope:local align:4 data:4byte +@1488 = .sdata:0x803E9850; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E9854; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E9858; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E985C; // type:object size:0x4 scope:local align:4 data:4byte +@1496 = .sdata:0x803E9860; // type:object size:0x4 scope:local align:4 data:4byte +@1497 = .sdata:0x803E9864; // type:object size:0x4 scope:local align:4 data:4byte +@1499 = .sdata:0x803E9868; // type:object size:0x4 scope:local align:4 data:4byte +@1501 = .sdata:0x803E986C; // type:object size:0x4 scope:local align:4 data:4byte +@1503 = .sdata:0x803E9870; // type:object size:0x4 scope:local align:4 data:4byte +@1504 = .sdata:0x803E9874; // type:object size:0x4 scope:local align:4 data:4byte +@1506 = .sdata:0x803E9878; // type:object size:0x4 scope:local align:4 data:4byte +@1508 = .sdata:0x803E987C; // type:object size:0x4 scope:local align:4 data:4byte +@1510 = .sdata:0x803E9880; // type:object size:0x4 scope:local align:4 data:4byte +@1511 = .sdata:0x803E9884; // type:object size:0x4 scope:local align:4 data:4byte +@1512 = .sdata:0x803E9888; // type:object size:0x4 scope:local align:4 data:4byte +@1514 = .sdata:0x803E988C; // type:object size:0x4 scope:local align:4 data:4byte +@1516 = .sdata:0x803E9890; // type:object size:0x4 scope:local align:4 data:4byte +@1518 = .sdata:0x803E9894; // type:object size:0x4 scope:local align:4 data:4byte +@1520 = .sdata:0x803E9898; // type:object size:0x4 scope:local align:4 data:4byte +@1522 = .sdata:0x803E989C; // type:object size:0x4 scope:local align:4 data:4byte +@1524 = .sdata:0x803E98A0; // type:object size:0x4 scope:local align:4 data:4byte +@1526 = .sdata:0x803E98A4; // type:object size:0x4 scope:local align:4 data:4byte +@1528 = .sdata:0x803E98A8; // type:object size:0x4 scope:local align:4 data:4byte +@1529 = .sdata:0x803E98AC; // type:object size:0x4 scope:local align:4 data:4byte +@1530 = .sdata:0x803E98B0; // type:object size:0x4 scope:local align:4 data:4byte +@1531 = .sdata:0x803E98B4; // type:object size:0x4 scope:local align:4 data:4byte +@1532 = .sdata:0x803E98B8; // type:object size:0x4 scope:local align:4 data:4byte +@1534 = .sdata:0x803E98BC; // type:object size:0x4 scope:local align:4 data:4byte +@1535 = .sdata:0x803E98C0; // type:object size:0x4 scope:local align:4 data:4byte +@1537 = .sdata:0x803E98C4; // type:object size:0x4 scope:local align:4 data:4byte +@1538 = .sdata:0x803E98C8; // type:object size:0x4 scope:local align:4 data:4byte +@1539 = .sdata:0x803E98CC; // type:object size:0x4 scope:local align:4 data:4byte +@1540 = .sdata:0x803E98D0; // type:object size:0x4 scope:local align:4 data:4byte +@1541 = .sdata:0x803E98D4; // type:object size:0x4 scope:local align:4 data:4byte +@1542 = .sdata:0x803E98D8; // type:object size:0x4 scope:local align:4 data:4byte +@1563 = .sdata:0x803E98DC; // type:object size:0x1 scope:local align:4 +@1700 = .sdata:0x803E98E0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E98E8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E98F0; // type:object size:0x8 scope:local align:4 +@1702 = .sdata:0x803E98F8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9900; // type:object size:0x8 scope:local align:4 +__RTTI__12SpiderDrawer = .sdata:0x803E9908; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E9910; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9918; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9920; // type:object size:0x8 scope:local align:4 +@1716 = .sdata:0x803E9928; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E9930; // type:object size:0x8 scope:local align:4 +__RTTI__6Spider = .sdata:0x803E9938; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9940; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E9948; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E9950; // type:object size:0x8 scope:local align:4 +__RTTI__10SpiderProp = .sdata:0x803E9958; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9960; // type:object size:0x8 scope:local align:4 +__RTTI__8SpiderAi = .sdata:0x803E9968; // type:object size:0x8 scope:local align:4 +@2249 = .sdata:0x803E9970; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata:0x803E9974; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata:0x803E9978; // type:object size:0x4 scope:local align:4 data:float +@3032 = .sdata:0x803E997C; // type:object size:0x4 scope:local align:4 data:float +@3033 = .sdata:0x803E9980; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata:0x803E9984; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata:0x803E9988; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata:0x803E998C; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata:0x803E9990; // type:object size:0x4 scope:local align:4 data:float +@3613 = .sdata:0x803E9994; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata:0x803E9998; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata:0x803E999C; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803E99A0; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803E99A4; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata:0x803E99A8; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata:0x803E99AC; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata:0x803E99B0; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata:0x803E99B4; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata:0x803E99B8; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata:0x803E99BC; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata:0x803E99C0; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata:0x803E99C4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E99C8; // type:object size:0x8 scope:local align:4 +__RTTI__30SpiderGenHalfDeadCallBackJoint = .sdata:0x803E99D0; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenPerishCallBack = .sdata:0x803E99D8; // type:object size:0x8 scope:local align:4 +__RTTI__23SpiderGenRippleCallBack = .sdata:0x803E99E0; // type:object size:0x8 scope:local align:4 +@1119 = .sdata:0x803E99E8; // type:object size:0x6 scope:local align:4 data:string +@1420 = .sdata:0x803E99F0; // type:object size:0x4 scope:local align:4 data:4byte +@1422 = .sdata:0x803E99F4; // type:object size:0x4 scope:local align:4 data:4byte +@1424 = .sdata:0x803E99F8; // type:object size:0x4 scope:local align:4 data:4byte +@1426 = .sdata:0x803E99FC; // type:object size:0x4 scope:local align:4 data:4byte +@1427 = .sdata:0x803E9A00; // type:object size:0x4 scope:local align:4 data:4byte +@1429 = .sdata:0x803E9A04; // type:object size:0x4 scope:local align:4 data:4byte +@1431 = .sdata:0x803E9A08; // type:object size:0x4 scope:local align:4 data:4byte +@1433 = .sdata:0x803E9A0C; // type:object size:0x4 scope:local align:4 data:4byte +@1435 = .sdata:0x803E9A10; // type:object size:0x4 scope:local align:4 data:4byte +@1437 = .sdata:0x803E9A14; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E9A18; // type:object size:0x4 scope:local align:4 data:4byte +@1440 = .sdata:0x803E9A1C; // type:object size:0x4 scope:local align:4 data:4byte +@1441 = .sdata:0x803E9A20; // type:object size:0x4 scope:local align:4 data:4byte +@1442 = .sdata:0x803E9A24; // type:object size:0x4 scope:local align:4 data:4byte +@1444 = .sdata:0x803E9A28; // type:object size:0x4 scope:local align:4 data:4byte +@1446 = .sdata:0x803E9A2C; // type:object size:0x4 scope:local align:4 data:4byte +@1447 = .sdata:0x803E9A30; // type:object size:0x4 scope:local align:4 data:4byte +@1448 = .sdata:0x803E9A34; // type:object size:0x4 scope:local align:4 data:4byte +@1450 = .sdata:0x803E9A38; // type:object size:0x4 scope:local align:4 data:4byte +@1452 = .sdata:0x803E9A3C; // type:object size:0x4 scope:local align:4 data:4byte +@1453 = .sdata:0x803E9A40; // type:object size:0x4 scope:local align:4 data:4byte +@1454 = .sdata:0x803E9A44; // type:object size:0x4 scope:local align:4 data:4byte +@1456 = .sdata:0x803E9A48; // type:object size:0x4 scope:local align:4 data:4byte +@1458 = .sdata:0x803E9A4C; // type:object size:0x4 scope:local align:4 data:4byte +@1460 = .sdata:0x803E9A50; // type:object size:0x4 scope:local align:4 data:4byte +@1461 = .sdata:0x803E9A54; // type:object size:0x4 scope:local align:4 data:4byte +@1462 = .sdata:0x803E9A58; // type:object size:0x4 scope:local align:4 data:4byte +@1463 = .sdata:0x803E9A5C; // type:object size:0x4 scope:local align:4 data:4byte +@1464 = .sdata:0x803E9A60; // type:object size:0x4 scope:local align:4 data:4byte +@1466 = .sdata:0x803E9A64; // type:object size:0x4 scope:local align:4 data:4byte +@1468 = .sdata:0x803E9A68; // type:object size:0x4 scope:local align:4 data:4byte +@1469 = .sdata:0x803E9A6C; // type:object size:0x4 scope:local align:4 data:4byte +@1471 = .sdata:0x803E9A70; // type:object size:0x4 scope:local align:4 data:4byte +@1473 = .sdata:0x803E9A74; // type:object size:0x4 scope:local align:4 data:4byte +@1475 = .sdata:0x803E9A78; // type:object size:0x4 scope:local align:4 data:4byte +@1477 = .sdata:0x803E9A7C; // type:object size:0x4 scope:local align:4 data:4byte +@1479 = .sdata:0x803E9A80; // type:object size:0x4 scope:local align:4 data:4byte +@1481 = .sdata:0x803E9A84; // type:object size:0x4 scope:local align:4 data:4byte +@1482 = .sdata:0x803E9A88; // type:object size:0x4 scope:local align:4 data:4byte +@1483 = .sdata:0x803E9A8C; // type:object size:0x4 scope:local align:4 data:4byte +@1485 = .sdata:0x803E9A90; // type:object size:0x4 scope:local align:4 data:4byte +@1487 = .sdata:0x803E9A94; // type:object size:0x4 scope:local align:4 data:4byte +@1489 = .sdata:0x803E9A98; // type:object size:0x4 scope:local align:4 data:4byte +@1490 = .sdata:0x803E9A9C; // type:object size:0x4 scope:local align:4 data:4byte +@1491 = .sdata:0x803E9AA0; // type:object size:0x4 scope:local align:4 data:4byte +@1492 = .sdata:0x803E9AA4; // type:object size:0x4 scope:local align:4 data:4byte +@1493 = .sdata:0x803E9AA8; // type:object size:0x4 scope:local align:4 data:4byte +@1494 = .sdata:0x803E9AAC; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E9AB0; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9AB8; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9AC0; // type:object size:0x8 scope:local align:4 +@1546 = .sdata:0x803E9AC8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E9AD0; // type:object size:0x8 scope:local align:4 +__RTTI__5Snake = .sdata:0x803E9AD8; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E9AE0; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Snake18BoundSphereUpdater = .sdata:0x803E9AE8; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9AF0; // type:object size:0x8 scope:local align:4 +@1643 = .sdata:0x803E9AF8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9B00; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9B08; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E9B10; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E9B18; // type:object size:0x8 scope:local align:4 +__RTTI__9SnakeProp = .sdata:0x803E9B20; // type:object size:0x8 scope:local align:4 +@1779 = .sdata:0x803E9B28; // type:object size:0x8 scope:local align:4 data:string +@1903 = .sdata:0x803E9B30; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata:0x803E9B34; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata:0x803E9B38; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata:0x803E9B3C; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata:0x803E9B40; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9B44; // type:object size:0x8 scope:local align:4 +__RTTI__7SnakeAi = .sdata:0x803E9B4C; // type:object size:0x8 scope:local align:4 +@1249 = .sdata:0x803E9B58; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata:0x803E9B5C; // type:object size:0x4 scope:local align:4 data:float +@1251 = .sdata:0x803E9B60; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata:0x803E9B64; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata:0x803E9B68; // type:object size:0x4 scope:local align:4 data:float +@1256 = .sdata:0x803E9B6C; // type:object size:0x4 scope:local align:4 data:float +@1259 = .sdata:0x803E9B70; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata:0x803E9B74; // type:object size:0x4 scope:local align:4 data:float +@1261 = .sdata:0x803E9B78; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata:0x803E9B7C; // type:object size:0x4 scope:local align:4 data:float +@1726 = .sdata:0x803E9B80; // type:object size:0x4 scope:local align:4 data:float +@1727 = .sdata:0x803E9B84; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803E9B88; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata:0x803E9B8C; // type:object size:0x4 scope:local align:4 data:float +@2415 = .sdata:0x803E9B90; // type:object size:0x4 scope:local align:4 data:float +@2416 = .sdata:0x803E9B94; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E9B98; // type:object size:0x8 scope:local align:4 +__RTTI__26SnakeGenBodyRotateCallBack = .sdata:0x803E9BA0; // type:object size:0x8 scope:local align:4 +__RTTI__28SnakeGenBodyOnGroundCallBack = .sdata:0x803E9BA8; // type:object size:0x8 scope:local align:4 +@939 = .sdata:0x803E9BB0; // type:object size:0x4 scope:local align:4 data:float +@940 = .sdata:0x803E9BB4; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata:0x803E9BB8; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata:0x803E9BBC; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata:0x803E9BC0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata:0x803E9BC4; // type:object size:0x4 scope:local align:4 data:float +@1181 = .sdata:0x803E9BC8; // type:object size:0x6 scope:local align:4 data:string +@1362 = .sdata:0x803E9BD0; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E9BD4; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E9BD8; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E9BDC; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E9BE0; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E9BE4; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803E9BE8; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E9BEC; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E9BF0; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E9BF4; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E9BF8; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E9BFC; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803E9C00; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E9C04; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803E9C08; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E9C0C; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E9C10; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E9C14; // type:object size:0x4 scope:local align:4 data:4byte +@1391 = .sdata:0x803E9C18; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E9C1C; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E9C20; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E9C24; // type:object size:0x4 scope:local align:4 data:4byte +@1397 = .sdata:0x803E9C28; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E9C2C; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E9C30; // type:object size:0x4 scope:local align:4 data:4byte +@1401 = .sdata:0x803E9C34; // type:object size:0x4 scope:local align:4 data:4byte +@1403 = .sdata:0x803E9C38; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E9C3C; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803E9C40; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9C48; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9C50; // type:object size:0x8 scope:local align:4 +@1574 = .sdata:0x803E9C58; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E9C60; // type:object size:0x8 scope:local align:4 +__RTTI__5Slime = .sdata:0x803E9C68; // type:object size:0x8 scope:local align:4 +__RTTI__15CollPartUpdater = .sdata:0x803E9C70; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime20CollideSphereUpdater = .sdata:0x803E9C78; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime17TubeSphereUpdater = .sdata:0x803E9C80; // type:object size:0x8 scope:local align:4 +__RTTI__Q25Slime18BoundSphereUpdater = .sdata:0x803E9C88; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9C90; // type:object size:0x8 scope:local align:4 +@1794 = .sdata:0x803E9C98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9CA0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9CA8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E9CB0; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E9CB8; // type:object size:0x8 scope:local align:4 +__RTTI__9SlimeProp = .sdata:0x803E9CC0; // type:object size:0x8 scope:local align:4 +@1846 = .sdata:0x803E9CC8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803E9CCC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803E9CD0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803E9CD4; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata:0x803E9CD8; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata:0x803E9CDC; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata:0x803E9CE0; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata:0x803E9CE4; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata:0x803E9CE8; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata:0x803E9CEC; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata:0x803E9CF0; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata:0x803E9CF4; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata:0x803E9CF8; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata:0x803E9CFC; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata:0x803E9D00; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata:0x803E9D04; // type:object size:0x4 scope:local align:4 +@2726 = .sdata:0x803E9D08; // type:object size:0x4 scope:local align:4 data:float +@2796 = .sdata:0x803E9D0C; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata:0x803E9D10; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata:0x803E9D18; // type:object size:0x4 scope:local align:4 data:float +@1058 = .sdata:0x803E9D1C; // type:object size:0x4 scope:local align:4 data:float +@1059 = .sdata:0x803E9D20; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata:0x803E9D24; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata:0x803E9D28; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata:0x803E9D2C; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803E9D30; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata:0x803E9D34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803E9D38; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9D40; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9D48; // type:object size:0x8 scope:local align:4 +__RTTI__13SlimeCreature = .sdata:0x803E9D50; // type:object size:0x8 scope:local align:4 +@1090 = .sdata:0x803E9D58; // type:object size:0x5 scope:local align:4 data:string +@1355 = .sdata:0x803E9D60; // type:object size:0x4 scope:local align:4 data:4byte +@1357 = .sdata:0x803E9D64; // type:object size:0x4 scope:local align:4 data:4byte +@1359 = .sdata:0x803E9D68; // type:object size:0x4 scope:local align:4 data:4byte +@1360 = .sdata:0x803E9D6C; // type:object size:0x4 scope:local align:4 data:4byte +@1362 = .sdata:0x803E9D70; // type:object size:0x4 scope:local align:4 data:4byte +@1364 = .sdata:0x803E9D74; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E9D78; // type:object size:0x4 scope:local align:4 data:4byte +@1367 = .sdata:0x803E9D7C; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E9D80; // type:object size:0x4 scope:local align:4 data:4byte +@1370 = .sdata:0x803E9D84; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803E9D88; // type:object size:0x4 scope:local align:4 data:4byte +@1372 = .sdata:0x803E9D8C; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803E9D90; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803E9D94; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803E9D98; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803E9D9C; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803E9DA0; // type:object size:0x4 scope:local align:4 data:4byte +@1384 = .sdata:0x803E9DA4; // type:object size:0x4 scope:local align:4 data:4byte +@1386 = .sdata:0x803E9DA8; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803E9DAC; // type:object size:0x4 scope:local align:4 data:4byte +@1388 = .sdata:0x803E9DB0; // type:object size:0x4 scope:local align:4 data:4byte +@1390 = .sdata:0x803E9DB4; // type:object size:0x4 scope:local align:4 data:4byte +@1392 = .sdata:0x803E9DB8; // type:object size:0x4 scope:local align:4 data:4byte +@1393 = .sdata:0x803E9DBC; // type:object size:0x4 scope:local align:4 data:4byte +@1394 = .sdata:0x803E9DC0; // type:object size:0x4 scope:local align:4 data:4byte +@1396 = .sdata:0x803E9DC4; // type:object size:0x4 scope:local align:4 data:4byte +@1398 = .sdata:0x803E9DC8; // type:object size:0x4 scope:local align:4 data:4byte +@1400 = .sdata:0x803E9DCC; // type:object size:0x4 scope:local align:4 data:4byte +@1402 = .sdata:0x803E9DD0; // type:object size:0x4 scope:local align:4 data:4byte +@1404 = .sdata:0x803E9DD4; // type:object size:0x4 scope:local align:4 data:4byte +@1405 = .sdata:0x803E9DD8; // type:object size:0x4 scope:local align:4 data:4byte +@1406 = .sdata:0x803E9DDC; // type:object size:0x4 scope:local align:4 data:4byte +@1407 = .sdata:0x803E9DE0; // type:object size:0x4 scope:local align:4 data:4byte +@1408 = .sdata:0x803E9DE4; // type:object size:0x4 scope:local align:4 data:4byte +@1409 = .sdata:0x803E9DE8; // type:object size:0x4 scope:local align:4 data:4byte +@1410 = .sdata:0x803E9DEC; // type:object size:0x4 scope:local align:4 data:4byte +@1411 = .sdata:0x803E9DF0; // type:object size:0x4 scope:local align:4 data:4byte +@1412 = .sdata:0x803E9DF4; // type:object size:0x4 scope:local align:4 data:4byte +@1413 = .sdata:0x803E9DF8; // type:object size:0x4 scope:local align:4 data:4byte +@1414 = .sdata:0x803E9DFC; // type:object size:0x4 scope:local align:4 data:4byte +@1415 = .sdata:0x803E9E00; // type:object size:0x4 scope:local align:4 data:4byte +@1416 = .sdata:0x803E9E04; // type:object size:0x4 scope:local align:4 data:4byte +@1439 = .sdata:0x803E9E08; // type:object size:0x1 scope:local align:4 +@1521 = .sdata:0x803E9E0C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803E9E14; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803E9E1C; // type:object size:0x8 scope:local align:4 +@1523 = .sdata:0x803E9E24; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803E9E2C; // type:object size:0x8 scope:local align:4 +__RTTI__10KingDrawer = .sdata:0x803E9E34; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803E9E3C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803E9E44; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803E9E4C; // type:object size:0x8 scope:local align:4 +@1537 = .sdata:0x803E9E54; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803E9E5C; // type:object size:0x8 scope:local align:4 +__RTTI__4King = .sdata:0x803E9E64; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803E9E6C; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803E9E74; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803E9E7C; // type:object size:0x8 scope:local align:4 +__RTTI__8KingProp = .sdata:0x803E9E84; // type:object size:0x8 scope:local align:4 +@1731 = .sdata:0x803E9E90; // type:object size:0x7 scope:local align:4 data:string +@3371 = .sdata:0x803E9E98; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata:0x803E9E9C; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata:0x803E9EA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803E9EA4; // type:object size:0x8 scope:local align:4 +__RTTI__6KingAi = .sdata:0x803E9EAC; // type:object size:0x8 scope:local align:4 +@1274 = .sdata:0x803E9EB8; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata:0x803E9EBC; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata:0x803E9EC0; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803E9EC4; // type:object size:0x4 scope:local align:4 data:float +@1278 = .sdata:0x803E9EC8; // type:object size:0x4 scope:local align:4 data:float +@1279 = .sdata:0x803E9ECC; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803E9ED0; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata:0x803E9ED4; // type:object size:0x4 scope:local align:4 data:float +@1282 = .sdata:0x803E9ED8; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803E9EDC; // type:object size:0x4 scope:local align:4 data:float +@1284 = .sdata:0x803E9EE0; // type:object size:0x4 scope:local align:4 data:float +@1285 = .sdata:0x803E9EE4; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata:0x803E9EE8; // type:object size:0x4 scope:local align:4 data:float +@1318 = .sdata:0x803E9EEC; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata:0x803E9EF0; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata:0x803E9EF4; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata:0x803E9EF8; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803E9EFC; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803E9F00; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803E9F04; // type:object size:0x4 scope:local align:4 data:float +@1405 = .sdata:0x803E9F08; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata:0x803E9F0C; // type:object size:0x4 scope:local align:4 data:float +@1407 = .sdata:0x803E9F10; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata:0x803E9F14; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata:0x803E9F18; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata:0x803E9F1C; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata:0x803E9F20; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803E9F24; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata:0x803E9F28; // type:object size:0x4 scope:local align:4 data:float +@1416 = .sdata:0x803E9F2C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata:0x803E9F30; // type:object size:0x4 scope:local align:4 data:float +@1418 = .sdata:0x803E9F34; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata:0x803E9F38; // type:object size:0x4 scope:local align:4 data:float +@1422 = .sdata:0x803E9F3C; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata:0x803E9F40; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata:0x803E9F44; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata:0x803E9F48; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata:0x803E9F4C; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata:0x803E9F50; // type:object size:0x4 scope:local align:4 data:float +@1574 = .sdata:0x803E9F54; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata:0x803E9F58; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata:0x803E9F5C; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803E9F60; // type:object size:0x4 scope:local align:4 data:float +@1579 = .sdata:0x803E9F64; // type:object size:0x4 scope:local align:4 data:float +@1580 = .sdata:0x803E9F68; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata:0x803E9F6C; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803E9F70; // type:object size:0x4 scope:local align:4 data:float +@1667 = .sdata:0x803E9F74; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata:0x803E9F78; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803E9F7C; // type:object size:0x4 scope:local align:4 data:float +@1670 = .sdata:0x803E9F80; // type:object size:0x4 scope:local align:4 data:float +@1671 = .sdata:0x803E9F84; // type:object size:0x4 scope:local align:4 data:float +@1672 = .sdata:0x803E9F88; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata:0x803E9F8C; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata:0x803E9F90; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata:0x803E9F94; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata:0x803E9F98; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803E9F9C; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803E9FA0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803E9FA4; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenSalivaCallBack = .sdata:0x803E9FAC; // type:object size:0x8 scope:local align:4 +__RTTI__21KingGenRippleCallBack = .sdata:0x803E9FB4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen58CallBack2 = .sdata:0x803E9FBC; // type:object size:0x8 scope:local align:4 +__RTTI__32KingGenSpitPartsParticleCallBack = .sdata:0x803E9FC4; // type:object size:0x8 scope:local align:4 +__RTTI__25KingGenDamageStarCallBack = .sdata:0x803E9FCC; // type:object size:0x8 scope:local align:4 +__RTTI__29KingGenSalivaParticleCallBack = .sdata:0x803E9FD4; // type:object size:0x8 scope:local align:4 +__RTTI__27KingGenSpreadSalivaCallBack = .sdata:0x803E9FDC; // type:object size:0x8 scope:local align:4 +@1261 = .sdata:0x803E9FE8; // type:object size:0x7 scope:local align:4 data:string +@1364 = .sdata:0x803E9FF0; // type:object size:0x4 scope:local align:4 data:4byte +@1366 = .sdata:0x803E9FF4; // type:object size:0x4 scope:local align:4 data:4byte +@1368 = .sdata:0x803E9FF8; // type:object size:0x4 scope:local align:4 data:4byte +@1369 = .sdata:0x803E9FFC; // type:object size:0x4 scope:local align:4 data:4byte +@1371 = .sdata:0x803EA000; // type:object size:0x4 scope:local align:4 data:4byte +@1373 = .sdata:0x803EA004; // type:object size:0x4 scope:local align:4 data:4byte +@1374 = .sdata:0x803EA008; // type:object size:0x4 scope:local align:4 data:4byte +@1376 = .sdata:0x803EA00C; // type:object size:0x4 scope:local align:4 data:4byte +@1378 = .sdata:0x803EA010; // type:object size:0x4 scope:local align:4 data:4byte +@1380 = .sdata:0x803EA014; // type:object size:0x4 scope:local align:4 data:4byte +@1382 = .sdata:0x803EA018; // type:object size:0x4 scope:local align:4 data:4byte +@1383 = .sdata:0x803EA01C; // type:object size:0x4 scope:local align:4 data:4byte +@1385 = .sdata:0x803EA020; // type:object size:0x4 scope:local align:4 data:4byte +@1387 = .sdata:0x803EA024; // type:object size:0x4 scope:local align:4 data:4byte +@1389 = .sdata:0x803EA028; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EA02C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA034; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA03C; // type:object size:0x8 scope:local align:4 +@1434 = .sdata:0x803EA044; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA04C; // type:object size:0x8 scope:local align:4 +__RTTI__6Kogane = .sdata:0x803EA054; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA05C; // type:object size:0x8 scope:local align:4 +@1493 = .sdata:0x803EA064; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA06C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA074; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA07C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA084; // type:object size:0x8 scope:local align:4 +__RTTI__10KoganeProp = .sdata:0x803EA08C; // type:object size:0x8 scope:local align:4 +koganeSE = .sdata:0x803EA098; // type:object size:0x8 scope:local align:4 +@1616 = .sdata:0x803EA0A0; // type:object size:0x4 scope:local align:4 data:float +@1617 = .sdata:0x803EA0A4; // type:object size:0x4 scope:local align:4 data:float +@1618 = .sdata:0x803EA0A8; // type:object size:0x4 scope:local align:4 data:float +@1621 = .sdata:0x803EA0AC; // type:object size:0x4 scope:local align:4 data:float +@1622 = .sdata:0x803EA0B0; // type:object size:0x4 scope:local align:4 data:float +@1623 = .sdata:0x803EA0B4; // type:object size:0x4 scope:local align:4 data:float +@1624 = .sdata:0x803EA0B8; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata:0x803EA0BC; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata:0x803EA0C0; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata:0x803EA0C4; // type:object size:0x4 scope:local align:4 data:float +@1630 = .sdata:0x803EA0C8; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803EA0CC; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EA0D0; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803EA0D4; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803EA0D8; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EA0DC; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803EA0E0; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803EA0E4; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata:0x803EA0E8; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata:0x803EA0EC; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata:0x803EA0F0; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata:0x803EA0F4; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata:0x803EA0F8; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata:0x803EA0FC; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata:0x803EA100; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata:0x803EA104; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata:0x803EA108; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata:0x803EA10C; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata:0x803EA110; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803EA114; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata:0x803EA118; // type:object size:0x4 scope:local align:4 data:float +@2528 = .sdata:0x803EA11C; // type:object size:0x4 scope:local align:4 data:float +@2531 = .sdata:0x803EA120; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA124; // type:object size:0x8 scope:local align:4 +__RTTI__8KoganeAi = .sdata:0x803EA12C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EA134; // type:object size:0x8 scope:local align:4 +__RTTI__23KoganeGenRippleCallBack = .sdata:0x803EA13C; // type:object size:0x8 scope:local align:4 +@911 = .sdata:0x803EA148; // type:object size:0x4 scope:local align:4 data:string +@996 = .sdata:0x803EA14C; // type:object size:0x4 scope:local align:4 data:4byte +@998 = .sdata:0x803EA150; // type:object size:0x4 scope:local align:4 data:4byte +@1000 = .sdata:0x803EA154; // type:object size:0x4 scope:local align:4 data:4byte +@1002 = .sdata:0x803EA158; // type:object size:0x4 scope:local align:4 data:4byte +@1004 = .sdata:0x803EA15C; // type:object size:0x4 scope:local align:4 data:4byte +@1006 = .sdata:0x803EA160; // type:object size:0x4 scope:local align:4 data:4byte +@1007 = .sdata:0x803EA164; // type:object size:0x4 scope:local align:4 data:4byte +@1008 = .sdata:0x803EA168; // type:object size:0x4 scope:local align:4 data:4byte +@1009 = .sdata:0x803EA16C; // type:object size:0x4 scope:local align:4 data:4byte +@1010 = .sdata:0x803EA170; // type:object size:0x4 scope:local align:4 data:4byte +@1011 = .sdata:0x803EA174; // type:object size:0x4 scope:local align:4 data:4byte +@1012 = .sdata:0x803EA178; // type:object size:0x4 scope:local align:4 data:4byte +__RTTI__11EventTalker = .sdata:0x803EA17C; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA184; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA18C; // type:object size:0x8 scope:local align:4 +@1076 = .sdata:0x803EA194; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA19C; // type:object size:0x8 scope:local align:4 +__RTTI__3Pom = .sdata:0x803EA1A4; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EA1AC; // type:object size:0x8 scope:local align:4 +@1134 = .sdata:0x803EA1B4; // type:object size:0x8 scope:local align:4 data:string +@1136 = .sdata:0x803EA1BC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA1C4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA1CC; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA1D4; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA1DC; // type:object size:0x8 scope:local align:4 +__RTTI__7PomProp = .sdata:0x803EA1E4; // type:object size:0x8 scope:local align:4 +@1624 = .sdata:0x803EA1F0; // type:object size:0x6 scope:local align:4 data:string +@1896 = .sdata:0x803EA1F8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA1FC; // type:object size:0x8 scope:local align:4 +__RTTI__5PomAi = .sdata:0x803EA204; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EA20C; // type:object size:0x8 scope:local align:4 +__RTTI__22PomGenOpenStarCallBack = .sdata:0x803EA214; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EA220; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA228; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA230; // type:object size:0x8 scope:local align:4 +@963 = .sdata:0x803EA238; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA240; // type:object size:0x8 scope:local align:4 +__RTTI__8KingBack = .sdata:0x803EA248; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EA250; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA258; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA260; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA268; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA270; // type:object size:0x8 scope:local align:4 +__RTTI__12KingBackProp = .sdata:0x803EA278; // type:object size:0x8 scope:local align:4 +@1063 = .sdata:0x803EA280; // type:object size:0x8 scope:local align:4 data:string +@1087 = .sdata:0x803EA288; // type:object size:0x4 scope:local align:4 data:float +@1088 = .sdata:0x803EA28C; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata:0x803EA290; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EA294; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA29C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA2A4; // type:object size:0x8 scope:local align:4 +@1115 = .sdata:0x803EA2AC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA2B4; // type:object size:0x8 scope:local align:4 +__RTTI__7Nucleus = .sdata:0x803EA2BC; // type:object size:0x8 scope:local align:4 +@1173 = .sdata:0x803EA2C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA2CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA2D4; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA2DC; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA2E4; // type:object size:0x8 scope:local align:4 +__RTTI__11NucleusProp = .sdata:0x803EA2EC; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA2F8; // type:object size:0x8 scope:local align:4 +__RTTI__9NucleusAi = .sdata:0x803EA300; // type:object size:0x8 scope:local align:4 +@1368 = .sdata:0x803EA308; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803EA30C; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803EA310; // type:object size:0x4 scope:local align:4 data:float +__RTTI__11EventTalker = .sdata:0x803EA314; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA31C; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA324; // type:object size:0x8 scope:local align:4 +@1403 = .sdata:0x803EA32C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA334; // type:object size:0x8 scope:local align:4 +__RTTI__11CoreNucleus = .sdata:0x803EA33C; // type:object size:0x8 scope:local align:4 +@1460 = .sdata:0x803EA344; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA34C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA354; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA35C; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA364; // type:object size:0x8 scope:local align:4 +__RTTI__15CoreNucleusProp = .sdata:0x803EA36C; // type:object size:0x8 scope:local align:4 +@1760 = .sdata:0x803EA378; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA37C; // type:object size:0x8 scope:local align:4 +__RTTI__13CoreNucleusAi = .sdata:0x803EA384; // type:object size:0x8 scope:local align:4 +@974 = .sdata:0x803EA390; // type:object size:0x5 scope:local align:4 data:string +__RTTI__11EventTalker = .sdata:0x803EA398; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EA3A0; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EA3A8; // type:object size:0x8 scope:local align:4 +@1025 = .sdata:0x803EA3B0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Boss = .sdata:0x803EA3B8; // type:object size:0x8 scope:local align:4 +__RTTI__4Mizu = .sdata:0x803EA3C0; // type:object size:0x8 scope:local align:4 +@1081 = .sdata:0x803EA3C8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA3D0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA3D8; // type:object size:0x8 scope:local align:4 +__RTTI__12CreatureProp = .sdata:0x803EA3E0; // type:object size:0x8 scope:local align:4 +__RTTI__8BossProp = .sdata:0x803EA3E8; // type:object size:0x8 scope:local align:4 +__RTTI__8MizuProp = .sdata:0x803EA3F0; // type:object size:0x8 scope:local align:4 +@1298 = .sdata:0x803EA3F8; // type:object size:0x7 scope:local align:4 data:string +@1353 = .sdata:0x803EA400; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803EA404; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803EA408; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803EA40C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19PaniAnimKeyListener = .sdata:0x803EA410; // type:object size:0x8 scope:local align:4 +__RTTI__6MizuAi = .sdata:0x803EA418; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EA420; // type:object size:0x8 scope:local align:4 +__RTTI__25MizuGenSpringPuffCallBack = .sdata:0x803EA428; // type:object size:0x8 scope:local align:4 +rumblePoint_00 = .sdata:0x803EA430; // type:object size:0x4 scope:local align:4 +rumblePoint_01 = .sdata:0x803EA434; // type:object size:0x4 scope:local align:4 +rumblePoint_02 = .sdata:0x803EA438; // type:object size:0x4 scope:local align:4 +rumblePoint_03 = .sdata:0x803EA43C; // type:object size:0x4 scope:local align:4 +rumblePoint_04 = .sdata:0x803EA440; // type:object size:0x4 scope:local align:4 +rumblePoint_05 = .sdata:0x803EA444; // type:object size:0x4 scope:local align:4 +rumblePoint_06 = .sdata:0x803EA448; // type:object size:0x4 scope:local align:4 +rumblePoint_07 = .sdata:0x803EA44C; // type:object size:0x4 scope:local align:4 +rumblePoint_08 = .sdata:0x803EA450; // type:object size:0x4 scope:local align:4 +rumblePoint_09 = .sdata:0x803EA454; // type:object size:0x4 scope:local align:4 +rumblePoint_10 = .sdata:0x803EA458; // type:object size:0x4 scope:local align:4 +rumblePoint_11 = .sdata:0x803EA45C; // type:object size:0x4 scope:local align:4 +rumblePoint_12 = .sdata:0x803EA460; // type:object size:0x4 scope:local align:4 +rumblePoint_13 = .sdata:0x803EA464; // type:object size:0x4 scope:local align:4 +rumblePoint_14 = .sdata:0x803EA468; // type:object size:0x4 scope:local align:4 +rumblePoint_15 = .sdata:0x803EA46C; // type:object size:0x4 scope:local align:4 +rumblePoint_16 = .sdata:0x803EA470; // type:object size:0x4 scope:local align:4 +rumblePoint_17 = .sdata:0x803EA474; // type:object size:0x4 scope:local align:4 +rumblePoint_18 = .sdata:0x803EA478; // type:object size:0x4 scope:local align:4 +rumblePoint_19 = .sdata:0x803EA47C; // type:object size:0x4 scope:local align:4 +@975 = .sdata:0x803EA480; // type:object size:0x7 scope:local align:4 data:string +@1123 = .sdata:0x803EA488; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata:0x803EA48C; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata:0x803EA490; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata:0x803EA494; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata:0x803EA498; // type:object size:0x4 scope:local align:4 data:float +@1128 = .sdata:0x803EA49C; // type:object size:0x4 scope:local align:4 data:float +@1195 = .sdata:0x803EA4A0; // type:object size:0x7 scope:local align:4 data:string +@1197 = .sdata:0x803EA4A8; // type:object size:0x6 scope:local align:4 data:string +@1198 = .sdata:0x803EA4B0; // type:object size:0x6 scope:local align:4 data:string +@1199 = .sdata:0x803EA4B8; // type:object size:0x3 scope:local align:4 +@1220 = .sdata:0x803EA4BC; // type:object size:0x8 scope:local align:4 data:string +@1223 = .sdata:0x803EA4C4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EA4CC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EA4D4; // type:object size:0x8 scope:local align:4 +@1226 = .sdata:0x803EA4DC; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EA4E4; // type:object size:0x8 scope:local align:4 +@1228 = .sdata:0x803EA4EC; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EA4F4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13OgTestSection = .sdata:0x803EA4FC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12OgTestScreen = .sdata:0x803EA504; // type:object size:0x8 scope:local align:4 +@1097 = .sdata:0x803EA510; // type:object size:0x7 scope:local align:4 data:string +@1408 = .sdata:0x803EA518; // type:object size:0x1 scope:local align:4 +@1454 = .sdata:0x803EA51C; // type:object size:0x7 scope:local align:4 data:string +@1534 = .sdata:0x803EA524; // type:object size:0x3 scope:local align:4 data:string +@1535 = .sdata:0x803EA528; // type:object size:0x3 scope:local align:4 data:string +@1536 = .sdata:0x803EA52C; // type:object size:0x7 scope:local align:4 data:string +@1616 = .sdata:0x803EA534; // type:object size:0x3 scope:local align:4 data:string +@1617 = .sdata:0x803EA538; // type:object size:0x3 scope:local align:4 data:string +@1618 = .sdata:0x803EA53C; // type:object size:0x2 scope:local align:4 data:string +@1619 = .sdata:0x803EA540; // type:object size:0x3 scope:local align:4 data:string +@1620 = .sdata:0x803EA544; // type:object size:0x3 scope:local align:4 data:string +@1621 = .sdata:0x803EA548; // type:object size:0x3 scope:local align:4 data:string +@1622 = .sdata:0x803EA54C; // type:object size:0x3 scope:local align:4 data:string +@1623 = .sdata:0x803EA550; // type:object size:0x3 scope:local align:4 data:string +@1624 = .sdata:0x803EA554; // type:object size:0x3 scope:local align:4 data:string +@1625 = .sdata:0x803EA558; // type:object size:0x3 scope:local align:4 data:string +@1626 = .sdata:0x803EA55C; // type:object size:0x3 scope:local align:4 data:string +@1627 = .sdata:0x803EA560; // type:object size:0x3 scope:local align:4 data:string +@1628 = .sdata:0x803EA564; // type:object size:0x3 scope:local align:4 data:string +@1629 = .sdata:0x803EA568; // type:object size:0x3 scope:local align:4 data:string +@1630 = .sdata:0x803EA56C; // type:object size:0x3 scope:local align:4 data:string +@1631 = .sdata:0x803EA570; // type:object size:0x3 scope:local align:4 data:string +@1632 = .sdata:0x803EA574; // type:object size:0x3 scope:local align:4 data:string +@1633 = .sdata:0x803EA578; // type:object size:0x3 scope:local align:4 data:string +@1634 = .sdata:0x803EA57C; // type:object size:0x3 scope:local align:4 data:string +@1635 = .sdata:0x803EA580; // type:object size:0x3 scope:local align:4 data:string +@1636 = .sdata:0x803EA584; // type:object size:0x2 scope:local align:4 data:string +@1734 = .sdata:0x803EA588; // type:object size:0x3 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803EA58C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EA594; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EA59C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EA5A4; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EA5AC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EA5B4; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EA5C0; // type:object size:0x7 scope:local align:4 data:string +@1146 = .sdata:0x803EA5C8; // type:object size:0x4 scope:local align:4 data:string +bloFile_Oniyon__3zen = .sdata:0x803EA5CC; // type:object size:0x8 scope:local align:4 +bloFile_FoundPikmin__3zen = .sdata:0x803EA5D4; // type:object size:0x8 scope:local align:4 +bloFile_PullHint__3zen = .sdata:0x803EA5DC; // type:object size:0x8 scope:local align:4 +bloFile_ControlHint__3zen = .sdata:0x803EA5E4; // type:object size:0x8 scope:local align:4 +bloFile_Pelette__3zen = .sdata:0x803EA5EC; // type:object size:0x8 scope:local align:4 +bloFile_FoundEngine__3zen = .sdata:0x803EA5F4; // type:object size:0x8 scope:local align:4 +bloFile_GetEngine__3zen = .sdata:0x803EA5FC; // type:object size:0x8 scope:local align:4 +bloFile_RirikuDemo__3zen = .sdata:0x803EA604; // type:object size:0x8 scope:local align:4 +bloFile_Camera__3zen = .sdata:0x803EA60C; // type:object size:0x8 scope:local align:4 +bloFile_OnyonInOut__3zen = .sdata:0x803EA614; // type:object size:0x8 scope:local align:4 +bloFile_Zenmetu__3zen = .sdata:0x803EA61C; // type:object size:0x8 scope:local align:4 +bloFile_YellowPikmin__3zen = .sdata:0x803EA624; // type:object size:0x8 scope:local align:4 +bloFile_BluePikmin__3zen = .sdata:0x803EA62C; // type:object size:0x8 scope:local align:4 +bloFile_FoundBomb__3zen = .sdata:0x803EA634; // type:object size:0x8 scope:local align:4 +bloFile_GetParts__3zen = .sdata:0x803EA63C; // type:object size:0x8 scope:local align:4 +bloFile_PowerUp__3zen = .sdata:0x803EA644; // type:object size:0x8 scope:local align:4 +bloFile_DayEnd__3zen = .sdata:0x803EA64C; // type:object size:0x8 scope:local align:4 +bloFile_Limit100__3zen = .sdata:0x803EA654; // type:object size:0x8 scope:local align:4 +bloFile_Mitu__3zen = .sdata:0x803EA65C; // type:object size:0x8 scope:local align:4 +bloFile_Rute__3zen = .sdata:0x803EA664; // type:object size:0x8 scope:local align:4 +bloFile_APunchUFO__3zen = .sdata:0x803EA66C; // type:object size:0x8 scope:local align:4 +bloFile_LifeUp__3zen = .sdata:0x803EA674; // type:object size:0x8 scope:local align:4 +bloFile_HitUFO__3zen = .sdata:0x803EA67C; // type:object size:0x8 scope:local align:4 +bloFile_FinishUFO__3zen = .sdata:0x803EA684; // type:object size:0x8 scope:local align:4 +bloFile_BadEnding__3zen = .sdata:0x803EA68C; // type:object size:0x8 scope:local align:4 +bloFile_HappyEnding__3zen = .sdata:0x803EA694; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust1__3zen = .sdata:0x803EA69C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust2__3zen = .sdata:0x803EA6A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust3__3zen = .sdata:0x803EA6AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust4__3zen = .sdata:0x803EA6B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_ust5__3zen = .sdata:0x803EA6BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf01__3zen = .sdata:0x803EA6C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf02__3zen = .sdata:0x803EA6CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf03__3zen = .sdata:0x803EA6D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf04__3zen = .sdata:0x803EA6DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf05__3zen = .sdata:0x803EA6E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf06__3zen = .sdata:0x803EA6EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf07__3zen = .sdata:0x803EA6F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf08__3zen = .sdata:0x803EA6FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf09__3zen = .sdata:0x803EA704; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf10__3zen = .sdata:0x803EA70C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_uf11__3zen = .sdata:0x803EA714; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un01__3zen = .sdata:0x803EA71C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un02__3zen = .sdata:0x803EA724; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un03__3zen = .sdata:0x803EA72C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un04__3zen = .sdata:0x803EA734; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un05__3zen = .sdata:0x803EA73C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un06__3zen = .sdata:0x803EA744; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un07__3zen = .sdata:0x803EA74C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un08__3zen = .sdata:0x803EA754; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un09__3zen = .sdata:0x803EA75C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un10__3zen = .sdata:0x803EA764; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un11__3zen = .sdata:0x803EA76C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un12__3zen = .sdata:0x803EA774; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un13__3zen = .sdata:0x803EA77C; // type:object size:0x8 scope:local align:4 +bloFile_PartsGetOnly_un14__3zen = .sdata:0x803EA784; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust1__3zen = .sdata:0x803EA78C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust2__3zen = .sdata:0x803EA794; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust3__3zen = .sdata:0x803EA79C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust4__3zen = .sdata:0x803EA7A4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_ust5__3zen = .sdata:0x803EA7AC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf01__3zen = .sdata:0x803EA7B4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf02__3zen = .sdata:0x803EA7BC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf03__3zen = .sdata:0x803EA7C4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf04__3zen = .sdata:0x803EA7CC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf05__3zen = .sdata:0x803EA7D4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf06__3zen = .sdata:0x803EA7DC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf07__3zen = .sdata:0x803EA7E4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf08__3zen = .sdata:0x803EA7EC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf09__3zen = .sdata:0x803EA7F4; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf10__3zen = .sdata:0x803EA7FC; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_uf11__3zen = .sdata:0x803EA804; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un01__3zen = .sdata:0x803EA80C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un02__3zen = .sdata:0x803EA814; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un03__3zen = .sdata:0x803EA81C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un04__3zen = .sdata:0x803EA824; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un05__3zen = .sdata:0x803EA82C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un06__3zen = .sdata:0x803EA834; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un07__3zen = .sdata:0x803EA83C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un08__3zen = .sdata:0x803EA844; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un09__3zen = .sdata:0x803EA84C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un10__3zen = .sdata:0x803EA854; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un11__3zen = .sdata:0x803EA85C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un12__3zen = .sdata:0x803EA864; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un13__3zen = .sdata:0x803EA86C; // type:object size:0x8 scope:local align:4 +bloFile_PartsInfo_un14__3zen = .sdata:0x803EA874; // type:object size:0x8 scope:local align:4 +bloFile_Test__3zen = .sdata:0x803EA87C; // type:object size:0x8 scope:local align:4 +@1144 = .sdata:0x803EA888; // type:object size:0x4 scope:local align:4 data:string +@1520 = .sdata:0x803EA890; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata:0x803EA894; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata:0x803EA898; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata:0x803EA89C; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata:0x803EA8A0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata:0x803EA8A4; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EA8A8; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EA8AC; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EA8B0; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata:0x803EA8B4; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata:0x803EA8B8; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata:0x803EA8BC; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803EA8C0; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803EA8C4; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EA8C8; // type:object size:0x4 scope:local align:4 data:float +@2068 = .sdata:0x803EA8CC; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata:0x803EA8D0; // type:object size:0x4 scope:local align:4 data:float +@1878 = .sdata:0x803EA8D8; // type:object size:0x1 scope:local align:4 +@1936 = .sdata:0x803EA8DC; // type:object size:0x4 scope:local align:4 data:string +@1969 = .sdata:0x803EA8E0; // type:object size:0x2 scope:local align:4 data:string +@1970 = .sdata:0x803EA8E4; // type:object size:0x2 scope:local align:4 data:string +@1992 = .sdata:0x803EA8E8; // type:object size:0x5 scope:local align:4 data:string +@1993 = .sdata:0x803EA8F0; // type:object size:0x3 scope:local align:4 data:string +@2038 = .sdata:0x803EA8F4; // type:object size:0x7 scope:local align:4 data:string +@2073 = .sdata:0x803EA8FC; // type:object size:0x7 scope:local align:4 data:string +@2074 = .sdata:0x803EA904; // type:object size:0x7 scope:local align:4 data:string +@2075 = .sdata:0x803EA90C; // type:object size:0x7 scope:local align:4 data:string +@2076 = .sdata:0x803EA914; // type:object size:0x7 scope:local align:4 data:string +@2077 = .sdata:0x803EA91C; // type:object size:0x7 scope:local align:4 data:string +@2078 = .sdata:0x803EA924; // type:object size:0x7 scope:local align:4 data:string +@1367 = .sdata:0x803EA930; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803EA934; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata:0x803EA938; // type:object size:0x4 scope:local align:4 data:float +bloFiles_default_Diary__3zen = .sdata:0x803EA940; // type:object size:0x8 scope:local align:4 +bloFiles_Diary__3zen = .sdata:0x803EA948; // type:object size:0x8 scope:local align:4 +@1254 = .sdata:0x803EA950; // type:object size:0x4 scope:local align:4 data:string +@1395 = .sdata:0x803EA954; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EA958; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EA95C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EA960; // type:object size:0x7 scope:local align:4 data:string +@1612 = .sdata:0x803EA968; // type:object size:0x7 scope:local align:4 data:string +@1613 = .sdata:0x803EA970; // type:object size:0x7 scope:local align:4 data:string +@1614 = .sdata:0x803EA978; // type:object size:0x7 scope:local align:4 data:string +@2257 = .sdata:0x803EA980; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata:0x803EA984; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata:0x803EA988; // type:object size:0x4 scope:local align:4 data:float +@2314 = .sdata:0x803EA98C; // type:object size:0x4 scope:local align:4 data:float +@2315 = .sdata:0x803EA990; // type:object size:0x4 scope:local align:4 data:float +@2316 = .sdata:0x803EA994; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata:0x803EA998; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata:0x803EA99C; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata:0x803EA9A0; // type:object size:0x4 scope:local align:4 data:float +@2720 = .sdata:0x803EA9A4; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata:0x803EA9A8; // type:object size:0x4 scope:local align:4 data:float +@961 = .sdata:0x803EA9B0; // type:object size:0x7 scope:local align:4 data:string +@962 = .sdata:0x803EA9B8; // type:object size:0x7 scope:local align:4 data:string +@963 = .sdata:0x803EA9C0; // type:object size:0x7 scope:local align:4 data:string +@1011 = .sdata:0x803EA9C8; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata:0x803EA9D0; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata:0x803EA9D4; // type:object size:0x4 scope:local align:4 data:float +@921 = .sdata:0x803EA9D8; // type:object size:0x4 scope:local align:4 data:float +@922 = .sdata:0x803EA9DC; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata:0x803EA9E0; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata:0x803EA9E4; // type:object size:0x4 scope:local align:4 data:float +@904 = .sdata:0x803EA9E8; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata:0x803EA9EC; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata:0x803EA9F0; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata:0x803EA9F4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EA9F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EAA00; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EAA08; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17TextColorCallBack = .sdata:0x803EAA10; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EAA18; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EAA1C; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EAA20; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EAA24; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EAA28; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EAA2C; // type:object size:0x4 scope:local align:4 data:float +@1118 = .sdata:0x803EAA30; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata:0x803EAA34; // type:object size:0x4 scope:local align:4 data:float +@1120 = .sdata:0x803EAA38; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata:0x803EAA3C; // type:object size:0x7 scope:local align:4 data:string +@1460 = .sdata:0x803EAA44; // type:object size:0x4 scope:local align:4 data:string +@1462 = .sdata:0x803EAA48; // type:object size:0x4 scope:local align:4 data:string +@1466 = .sdata:0x803EAA4C; // type:object size:0x5 scope:local align:4 data:string +@1597 = .sdata:0x803EAA54; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAA5C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAA64; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7zenList = .sdata:0x803EAA6C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17particleGenerator = .sdata:0x803EAA74; // type:object size:0x8 scope:local align:4 +__RTTI__12GameModeBase = .sdata:0x803EAA7C; // type:object size:0x8 scope:local align:4 +__RTTI__12CMresultMode = .sdata:0x803EAA84; // type:object size:0x8 scope:local align:4 +__RTTI__11HurryUpMode = .sdata:0x803EAA8C; // type:object size:0x8 scope:local align:4 +__RTTI__12GameInfoMode = .sdata:0x803EAA94; // type:object size:0x8 scope:local align:4 +__RTTI__15ProgressiveMode = .sdata:0x803EAA9C; // type:object size:0x8 scope:local align:4 +__RTTI__13CountDownMode = .sdata:0x803EAAA4; // type:object size:0x8 scope:local align:4 +__RTTI__12GameOverMode = .sdata:0x803EAAAC; // type:object size:0x8 scope:local align:4 +__RTTI__13ContainerMode = .sdata:0x803EAAB4; // type:object size:0x8 scope:local align:4 +__RTTI__11WMPauseMode = .sdata:0x803EAABC; // type:object size:0x8 scope:local align:4 +__RTTI__12WorldMapMode = .sdata:0x803EAAC4; // type:object size:0x8 scope:local align:4 +__RTTI__18CMcourseSelectMode = .sdata:0x803EAACC; // type:object size:0x8 scope:local align:4 +__RTTI__11HiScoreMode = .sdata:0x803EAAD4; // type:object size:0x8 scope:local align:4 +__RTTI__12UfoPartsMode = .sdata:0x803EAADC; // type:object size:0x8 scope:local align:4 +__RTTI__11SaveMesMode = .sdata:0x803EAAE4; // type:object size:0x8 scope:local align:4 +__RTTI__15SaveFailureMode = .sdata:0x803EAAEC; // type:object size:0x8 scope:local align:4 +__RTTI__15FinalResultMode = .sdata:0x803EAAF4; // type:object size:0x8 scope:local align:4 +__RTTI__18IDelegate1 = .sdata:0x803EAAFC; // type:object size:0x8 scope:local align:4 +__RTTI__41Delegate1<21GameCourseClearScreen,R4Menu> = .sdata:0x803EAB04; // type:object size:0x8 scope:local align:4 +__RTTI__8BaseParm = .sdata:0x803EAB0C; // type:object size:0x8 scope:local align:4 +@1795 = .sdata:0x803EAB14; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAB1C; // type:object size:0x8 scope:local align:4 +__RTTI__21GameCourseClearScreen = .sdata:0x803EAB24; // type:object size:0x8 scope:local align:4 +@1887 = .sdata:0x803EAB2C; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EAB34; // type:object size:0x8 scope:local align:4 +__RTTI__22GameCourseClearSection = .sdata:0x803EAB3C; // type:object size:0x8 scope:local align:4 +@1503 = .sdata:0x803EAB48; // type:object size:0x7 scope:local align:4 data:string +@1511 = .sdata:0x803EAB50; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAB58; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAB60; // type:object size:0x8 scope:local align:4 +@1515 = .sdata:0x803EAB68; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAB70; // type:object size:0x8 scope:local align:4 +@1517 = .sdata:0x803EAB78; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EAB80; // type:object size:0x8 scope:local align:4 +__RTTI__21GameStageClearSection = .sdata:0x803EAB88; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EAB90; // type:object size:0x7 scope:local align:4 data:string +@774 = .sdata:0x803EAB98; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EABA0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EABA8; // type:object size:0x8 scope:local align:4 +@778 = .sdata:0x803EABB0; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EABB8; // type:object size:0x8 scope:local align:4 +@780 = .sdata:0x803EABC0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7Section = .sdata:0x803EABC8; // type:object size:0x8 scope:local align:4 +__RTTI__18GameCreditsSection = .sdata:0x803EABD0; // type:object size:0x8 scope:local align:4 +@655 = .sdata:0x803EABD8; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata:0x803EABDC; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EABE0; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EABE4; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EABE8; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EABEC; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata:0x803EABF0; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata:0x803EABF4; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata:0x803EABF8; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata:0x803EABFC; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata:0x803EAC00; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata:0x803EAC04; // type:object size:0x4 scope:local align:4 data:float +@1348 = .sdata:0x803EAC08; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803EAC0C; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata:0x803EAC10; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata:0x803EAC14; // type:object size:0x4 scope:local align:4 data:float +@1352 = .sdata:0x803EAC18; // type:object size:0x4 scope:local align:4 data:float +@1353 = .sdata:0x803EAC1C; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata:0x803EAC20; // type:object size:0x1 scope:local align:4 +@1627 = .sdata:0x803EAC24; // type:object size:0x8 scope:local align:4 data:string +@1755 = .sdata:0x803EAC2C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAC34; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAC3C; // type:object size:0x8 scope:local align:4 +__RTTI__10EffShpInst = .sdata:0x803EAC44; // type:object size:0x8 scope:local align:4 +__RTTI__9EffectMgr = .sdata:0x803EAC4C; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectGeometryRegistration = .sdata:0x803EAC54; // type:object size:0x8 scope:local align:4 +__RTTI__11EffectShape = .sdata:0x803EAC5C; // type:object size:0x8 scope:local align:4 +__RTTI__26EffectParticleRegistration = .sdata:0x803EAC64; // type:object size:0x8 scope:local align:4 +@1771 = .sdata:0x803EAC6C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAC74; // type:object size:0x8 scope:local align:4 +__RTTI__12SmokeEmitter = .sdata:0x803EAC7C; // type:object size:0x8 scope:local align:4 +lpsCoord = .sdata:0x803EACA0; // type:object size:0x8 scope:local align:32 +@2019 = .sdata:0x803EACA8; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata:0x803EACAC; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata:0x803EACB0; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata:0x803EACB4; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata:0x803EACB8; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata:0x803EACBC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EACC0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen7PCRData = .sdata:0x803EACC8; // type:object size:0x8 scope:local align:4 +DEFAULT_FRAME_RATE__Q23zen15particleManager = .sdata:0x803EACD0; // type:object size:0x4 scope:global align:4 data:float +@595 = .sdata:0x803EACD8; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata:0x803EACDC; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata:0x803EACE0; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata:0x803EACE4; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata:0x803EACE8; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata:0x803EACEC; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata:0x803EACF0; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata:0x803EACF4; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata:0x803EACF8; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata:0x803EACFC; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata:0x803EAD00; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata:0x803EAD04; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen7zenList = .sdata:0x803EAD08; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15particleMdlBase = .sdata:0x803EAD10; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11particleMdl = .sdata:0x803EAD18; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen16particleChildMdl = .sdata:0x803EAD20; // type:object size:0x8 scope:local align:4 +@1021 = .sdata:0x803EAD28; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata:0x803EAD2C; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata:0x803EAD30; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata:0x803EAD34; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata:0x803EAD38; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata:0x803EAD3C; // type:object size:0x4 scope:local align:4 data:float +@1027 = .sdata:0x803EAD40; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata:0x803EAD44; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata:0x803EAD48; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803EAD4C; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata:0x803EAD50; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata:0x803EAD54; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata:0x803EAD58; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata:0x803EAD5C; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EAD60; // type:object size:0x6 scope:local align:4 data:string +__RTTI__10PelletView = .sdata:0x803EAD68; // type:object size:0x8 scope:local align:4 +__RTTI__19PaniAnimKeyListener = .sdata:0x803EAD70; // type:object size:0x8 scope:local align:4 +__RTTI__11EventTalker = .sdata:0x803EAD78; // type:object size:0x8 scope:local align:4 +__RTTI__12RefCountable = .sdata:0x803EAD80; // type:object size:0x8 scope:local align:4 +__RTTI__8Creature = .sdata:0x803EAD88; // type:object size:0x8 scope:local align:4 +@1640 = .sdata:0x803EAD90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5BTeki = .sdata:0x803EAD98; // type:object size:0x8 scope:local align:4 +@1642 = .sdata:0x803EADA0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5NTeki = .sdata:0x803EADA8; // type:object size:0x8 scope:local align:4 +__RTTI__5YTeki = .sdata:0x803EADB0; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EADB8; // type:object size:0x8 scope:local align:4 +@1787 = .sdata:0x803EADC0; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata:0x803EADC4; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata:0x803EADC8; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata:0x803EADCC; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata:0x803EADD0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata:0x803EADD4; // type:object size:0x4 scope:local align:4 data:float +@1978 = .sdata:0x803EADD8; // type:object size:0x4 scope:local align:4 data:float +@1979 = .sdata:0x803EADDC; // type:object size:0x4 scope:local align:4 data:float +@1980 = .sdata:0x803EADE0; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata:0x803EADE4; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata:0x803EADE8; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata:0x803EADEC; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata:0x803EADF0; // type:object size:0x4 scope:local align:4 data:float +@2288 = .sdata:0x803EADF4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EADF8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAItankAnimation = .sdata:0x803EAE00; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EAE08; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EAE10; // type:object size:0x8 scope:local align:4 +__RTTI__15TAItankStrategy = .sdata:0x803EAE18; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EAE20; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAnoReaction = .sdata:0x803EAE28; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAinitTank = .sdata:0x803EAE30; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803EAE38; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EAE40; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EAE48; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflickingTank = .sdata:0x803EAE50; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EAE58; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EAE60; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAfireBreathTank = .sdata:0x803EAE68; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EAE70; // type:object size:0x8 scope:local align:4 +__RTTI__10FireEffect = .sdata:0x803EAE78; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EAE80; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstepBackTank = .sdata:0x803EAE88; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EAE90; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EAE98; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAoutsideOptionalRangeTank = .sdata:0x803EAEA0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EAEA8; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAattackableAngleTarget = .sdata:0x803EAEB0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EAEB8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EAEC0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIApatrolTank = .sdata:0x803EAEC8; // type:object size:0x8 scope:local align:4 +@2758 = .sdata:0x803EAED0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EAED8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EAEE0; // type:object size:0x8 scope:local align:4 +@2761 = .sdata:0x803EAEE8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EAEF0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EAEF8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItankParameters = .sdata:0x803EAF00; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EAF08; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIeffectAttackEventCallBackTank = .sdata:0x803EAF10; // type:object size:0x8 scope:local align:4 +@1833 = .sdata:0x803EAF18; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata:0x803EAF1C; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata:0x803EAF20; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata:0x803EAF24; // type:object size:0x4 scope:local align:4 data:float +@1841 = .sdata:0x803EAF28; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EAF2C; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata:0x803EAF30; // type:object size:0x4 scope:local align:4 data:float +@1882 = .sdata:0x803EAF34; // type:object size:0x4 scope:local align:4 data:float +@1883 = .sdata:0x803EAF38; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata:0x803EAF3C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EAF40; // type:object size:0x8 scope:local align:4 +__RTTI__15TAImarAnimation = .sdata:0x803EAF48; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EAF50; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EAF58; // type:object size:0x8 scope:local align:4 +__RTTI__14TAImarStrategy = .sdata:0x803EAF60; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EAF68; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinitMar = .sdata:0x803EAF70; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwatchNavi = .sdata:0x803EAF78; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EAF80; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EAF88; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EAF90; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EAF98; // type:object size:0x8 scope:local align:4 +__RTTI__32TAIAflyingDistanceInTerritoryMar = .sdata:0x803EAFA0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EAFA8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAfireBreathMar = .sdata:0x803EAFB0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17CallBack1 = .sdata:0x803EAFB8; // type:object size:0x8 scope:local align:4 +__RTTI__12BreathEffect = .sdata:0x803EAFC0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EAFC8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingDistanceMar = .sdata:0x803EAFD0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EAFD8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtimerTakeOffMar = .sdata:0x803EAFE0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EAFE8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtakeOffMar = .sdata:0x803EAFF0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EAFF8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAstickingPikiMar = .sdata:0x803EB000; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EB008; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflickCheckMar = .sdata:0x803EB010; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EB018; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlandingMar = .sdata:0x803EB020; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMarFly = .sdata:0x803EB028; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB030; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EB038; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAflickingMar = .sdata:0x803EB040; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflickCheckTimerMar = .sdata:0x803EB048; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EB050; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EB058; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAflyingBaseMar = .sdata:0x803EB060; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EB068; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAdyingMar = .sdata:0x803EB070; // type:object size:0x8 scope:local align:4 +@3075 = .sdata:0x803EB078; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB080; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB088; // type:object size:0x8 scope:local align:4 +@3078 = .sdata:0x803EB090; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB098; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EB0A0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAImarParameters = .sdata:0x803EB0A8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EB0B0; // type:object size:0x8 scope:local align:4 +__RTTI__31TAIeffectAttackEventCallBackMar = .sdata:0x803EB0B8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB0C0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAinWater = .sdata:0x803EB0C8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinWaterDamage = .sdata:0x803EB0D0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EB0D8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB0E0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EB0E8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdyingKabekui = .sdata:0x803EB0F0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAdyingCrushKabekui = .sdata:0x803EB0F8; // type:object size:0x8 scope:local align:4 +@1928 = .sdata:0x803EB100; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7TAIAdie = .sdata:0x803EB108; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAdeadCheck = .sdata:0x803EB110; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EB118; // type:object size:0x8 scope:local align:4 +@1022 = .sdata:0x803EB120; // type:object size:0x4 scope:local align:4 +@1023 = .sdata:0x803EB124; // type:object size:0x4 scope:local align:4 +@1024 = .sdata:0x803EB128; // type:object size:0x4 scope:local align:4 +@1026 = .sdata:0x803EB12C; // type:object size:0x4 scope:local align:4 +@1027 = .sdata:0x803EB130; // type:object size:0x4 scope:local align:4 +@1028 = .sdata:0x803EB134; // type:object size:0x4 scope:local align:4 +@2348 = .sdata:0x803EB138; // type:object size:0x4 scope:local align:4 data:float +@2349 = .sdata:0x803EB13C; // type:object size:0x4 scope:local align:4 data:float +@2350 = .sdata:0x803EB140; // type:object size:0x4 scope:local align:4 data:float +@2465 = .sdata:0x803EB144; // type:object size:0x4 scope:local align:4 data:float +@2525 = .sdata:0x803EB148; // type:object size:0x4 scope:local align:4 data:float +@2526 = .sdata:0x803EB14C; // type:object size:0x4 scope:local align:4 data:float +@2527 = .sdata:0x803EB150; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata:0x803EB154; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata:0x803EB158; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata:0x803EB15C; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata:0x803EB160; // type:object size:0x4 scope:local align:4 data:float +@2873 = .sdata:0x803EB164; // type:object size:0x4 scope:local align:4 data:float +@2875 = .sdata:0x803EB168; // type:object size:0x4 scope:local align:4 data:float +@2918 = .sdata:0x803EB16C; // type:object size:0x4 scope:local align:4 data:float +@2919 = .sdata:0x803EB170; // type:object size:0x4 scope:local align:4 data:float +@2920 = .sdata:0x803EB174; // type:object size:0x4 scope:local align:4 data:float +@3106 = .sdata:0x803EB178; // type:object size:0x4 scope:local align:4 data:float +@3454 = .sdata:0x803EB17C; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata:0x803EB180; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata:0x803EB184; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata:0x803EB188; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata:0x803EB18C; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata:0x803EB190; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata:0x803EB194; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata:0x803EB198; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata:0x803EB19C; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata:0x803EB1A0; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata:0x803EB1A4; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata:0x803EB1A8; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata:0x803EB1AC; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata:0x803EB1B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EB1B4; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB1BC; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAtakeOff = .sdata:0x803EB1C4; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAlanding = .sdata:0x803EB1CC; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAdescent = .sdata:0x803EB1D4; // type:object size:0x8 scope:local align:4 +__RTTI__14FlyingDistance = .sdata:0x803EB1DC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflyingDistance = .sdata:0x803EB1E4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAflyingToGoal = .sdata:0x803EB1EC; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAflyingDistanceInTerritory = .sdata:0x803EB1F4; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAflyingInTerritory = .sdata:0x803EB1FC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EB204; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAgoingHomePriorityFaceDir = .sdata:0x803EB20C; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAgoingHome = .sdata:0x803EB214; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnOccasion = .sdata:0x803EB21C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAturnHome = .sdata:0x803EB224; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAstepBack = .sdata:0x803EB22C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EB234; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIApatrol = .sdata:0x803EB23C; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EB244; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803EB24C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArandomWalk = .sdata:0x803EB254; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAstop = .sdata:0x803EB25C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAlookAround = .sdata:0x803EB264; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803EB26C; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EB274; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAgoTarget = .sdata:0x803EB27C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAsetTargetPointCircle = .sdata:0x803EB284; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803EB28C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EB294; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAsetTargetPointWorkObject = .sdata:0x803EB29C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB2A4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EB2AC; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAappearKabekui = .sdata:0x803EB2B4; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB2C0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB2C8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EB2D0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB2D8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB2E0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAcheckTurnAngle = .sdata:0x803EB2E8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAdistanceTarget = .sdata:0x803EB2F0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EB2F8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EB300; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAunvisibleTarget = .sdata:0x803EB308; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EB310; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisiblePiki = .sdata:0x803EB318; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAvisibleNavi = .sdata:0x803EB320; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAoutsideTerritoryRangeNavi = .sdata:0x803EB328; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803EB330; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EB338; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EB340; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAoutsideOptionalRange = .sdata:0x803EB348; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EB350; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EB358; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EB360; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EB368; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAsearchWorkObject = .sdata:0x803EB370; // type:object size:0x8 scope:local align:4 +@982 = .sdata:0x803EB378; // type:object size:0x4 scope:local align:4 +@983 = .sdata:0x803EB37C; // type:object size:0x4 scope:local align:4 +@984 = .sdata:0x803EB380; // type:object size:0x4 scope:local align:4 +@986 = .sdata:0x803EB384; // type:object size:0x4 scope:local align:4 +@987 = .sdata:0x803EB388; // type:object size:0x4 scope:local align:4 +@988 = .sdata:0x803EB38C; // type:object size:0x4 scope:local align:4 +@1745 = .sdata:0x803EB390; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata:0x803EB394; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata:0x803EB398; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata:0x803EB39C; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata:0x803EB3A0; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata:0x803EB3A4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__9TaiAction = .sdata:0x803EB3A8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB3B0; // type:object size:0x8 scope:local align:4 +__RTTI__11TAIAeatPiki = .sdata:0x803EB3B8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EB3C0; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EB3C8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB3D0; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EB3D8; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EB3E0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EB3E8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAfireBreath = .sdata:0x803EB3F0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetPiki = .sdata:0x803EB3F8; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAtargetNavi = .sdata:0x803EB400; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EB408; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EB410; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EB418; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EB420; // type:object size:0x8 scope:local align:4 +__RTTI__14P2DGrafContext = .sdata:0x803EB428; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DOrthoGraph = .sdata:0x803EB430; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EB438; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata:0x803EB43C; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata:0x803EB440; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata:0x803EB444; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata:0x803EB448; // type:object size:0x4 scope:local align:4 data:float +@652 = .sdata:0x803EB44C; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803EB450; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata:0x803EB454; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata:0x803EB458; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata:0x803EB45C; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata:0x803EB460; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EB464; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata:0x803EB468; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata:0x803EB46C; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata:0x803EB470; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata:0x803EB474; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata:0x803EB478; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata:0x803EB47C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__14P2DGrafContext = .sdata:0x803EB480; // type:object size:0x8 scope:local align:4 +__RTTI__13P2DPerspGraph = .sdata:0x803EB488; // type:object size:0x8 scope:local align:4 +@647 = .sdata:0x803EB490; // type:object size:0x8 scope:local align:4 data:string +@667 = .sdata:0x803EB498; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata:0x803EB49C; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata:0x803EB4A0; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata:0x803EB4A4; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata:0x803EB4A8; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata:0x803EB4AC; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata:0x803EB4B0; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata:0x803EB4B4; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata:0x803EB4B8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__7P2DPane = .sdata:0x803EB4BC; // type:object size:0x8 scope:local align:4 +@1153 = .sdata:0x803EB4C8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EB4D0; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DPicture = .sdata:0x803EB4D8; // type:object size:0x8 scope:local align:4 +@880 = .sdata:0x803EB4E0; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EB4E8; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DScreen = .sdata:0x803EB4F0; // type:object size:0x8 scope:local align:4 +@925 = .sdata:0x803EB4F8; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EB500; // type:object size:0x8 scope:local align:4 +__RTTI__9P2DWindow = .sdata:0x803EB508; // type:object size:0x8 scope:local align:4 +@729 = .sdata:0x803EB510; // type:object size:0x8 scope:local align:4 data:string +__RTTI__7P2DPane = .sdata:0x803EB518; // type:object size:0x8 scope:local align:4 +__RTTI__10P2DTextBox = .sdata:0x803EB520; // type:object size:0x8 scope:local align:4 +@593 = .sdata:0x803EB528; // type:object size:0x1 scope:local align:4 +@594 = .sdata:0x803EB52C; // type:object size:0x3 scope:local align:4 data:string +__RTTI__10GfxobjInfo = .sdata:0x803EB530; // type:object size:0x8 scope:local align:4 +__RTTI__10FntobjInfo = .sdata:0x803EB538; // type:object size:0x8 scope:local align:4 +frameMax__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EB540; // type:object size:0x4 scope:global align:4 data:float +@1374 = .sdata:0x803EB544; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen9NumberTex = .sdata:0x803EB548; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB550; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB558; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB560; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12DateCallBack = .sdata:0x803EB568; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@17LifePinchCallBack = .sdata:0x803EB570; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16LifeIconCallBack = .sdata:0x803EB578; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15NaviTexCallBack = .sdata:0x803EB580; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16NaviIconCallBack = .sdata:0x803EB588; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunMove = .sdata:0x803EB590; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16MoonIconCallBack = .sdata:0x803EB598; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@7SunAnim = .sdata:0x803EB5A0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon2CallBack = .sdata:0x803EB5A8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16SunIcon1CallBack = .sdata:0x803EB5B0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@18SunCapsuleCallBack = .sdata:0x803EB5B8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@15SunBaseCallBack = .sdata:0x803EB5C0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EB5C8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20NumberPicCallBack = .sdata:0x803EB5D0; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@23MapPikminWindowCallBack = .sdata:0x803EB5D8; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@16PikiIconCallBack = .sdata:0x803EB5E0; // type:object size:0x8 scope:local align:4 +TRI_NUM__Q23zen14DrawLifeCircle = .sdata:0x803EB5E8; // type:object size:0x4 scope:global align:4 data:float +@726 = .sdata:0x803EB5F0; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata:0x803EB5F4; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata:0x803EB5F8; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata:0x803EB5FC; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata:0x803EB600; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata:0x803EB604; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata:0x803EB608; // type:object size:0x4 scope:local align:4 data:float +weightPosLength__Q23zen13WindowPaneMgr = .sdata:0x803EB60C; // type:object size:0x4 scope:global align:4 data:float +weightPosGravity__Q23zen13WindowPaneMgr = .sdata:0x803EB610; // type:object size:0x4 scope:global align:4 data:float +@1760 = .sdata:0x803EB614; // type:object size:0x7 scope:local align:4 data:string +@1761 = .sdata:0x803EB61C; // type:object size:0x7 scope:local align:4 data:string +@1762 = .sdata:0x803EB624; // type:object size:0x7 scope:local align:4 data:string +@1763 = .sdata:0x803EB62C; // type:object size:0x7 scope:local align:4 data:string +@1764 = .sdata:0x803EB634; // type:object size:0x7 scope:local align:4 data:string +@1765 = .sdata:0x803EB63C; // type:object size:0x7 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB644; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB64C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB654; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen13StickCallBack = .sdata:0x803EB65C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen18ArrowBasicCallBack = .sdata:0x803EB664; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen15ArrowLRCallBack = .sdata:0x803EB66C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen19ArrowCenterCallBack = .sdata:0x803EB674; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EB67C; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EB684; // type:object size:0x8 scope:local align:4 +@3003 = .sdata:0x803EB68C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB694; // type:object size:0x8 scope:local align:4 +@1335 = .sdata:0x803EB6A0; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata:0x803EB6A4; // type:object size:0x4 scope:local align:4 data:float +@1337 = .sdata:0x803EB6A8; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata:0x803EB6AC; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata:0x803EB6B0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB6B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB6BC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB6C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11BalloonPane = .sdata:0x803EB6CC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen10DrawScreen = .sdata:0x803EB6D4; // type:object size:0x8 scope:local align:4 +@1099 = .sdata:0x803EB6E0; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata:0x803EB6E4; // type:object size:0x4 scope:local align:4 data:float +@1105 = .sdata:0x803EB6E8; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803EB6F0; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen11DrawAccount = .sdata:0x803EB6F8; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EB700; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EB708; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB710; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB718; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB720; // type:object size:0x8 scope:local align:4 +@766 = .sdata:0x803EB728; // type:object size:0x4 scope:local align:4 +@769 = .sdata:0x803EB72C; // type:object size:0x4 scope:local align:4 +@1298 = .sdata:0x803EB730; // type:object size:0x7 scope:local align:4 data:string +@1299 = .sdata:0x803EB738; // type:object size:0x7 scope:local align:4 data:string +@1300 = .sdata:0x803EB740; // type:object size:0x7 scope:local align:4 data:string +@1301 = .sdata:0x803EB748; // type:object size:0x7 scope:local align:4 data:string +@1302 = .sdata:0x803EB750; // type:object size:0x7 scope:local align:4 data:string +@1304 = .sdata:0x803EB758; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen10DrawScreen = .sdata:0x803EB760; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen8DrawMenu = .sdata:0x803EB768; // type:object size:0x8 scope:local align:4 +@671 = .sdata:0x803EB770; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata:0x803EB774; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EB778; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EB77C; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EB780; // type:object size:0x4 scope:local align:4 data:float +@676 = .sdata:0x803EB784; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata:0x803EB788; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata:0x803EB78C; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata:0x803EB790; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata:0x803EB794; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata:0x803EB798; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata:0x803EB79C; // type:object size:0x4 scope:local align:4 data:float +@2191 = .sdata:0x803EB7A0; // type:object size:0x4 scope:local align:4 data:float +@2197 = .sdata:0x803EB7A4; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata:0x803EB7A8; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata:0x803EB7AC; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen37CallBack1 = .sdata:0x803EB7B0; // type:object size:0x8 scope:local align:4 +__RTTI__16ConeTypeCallBack = .sdata:0x803EB7B8; // type:object size:0x8 scope:local align:4 +__RTTI__20CylinderTypeCallBack = .sdata:0x803EB7C0; // type:object size:0x8 scope:local align:4 +__RTTI__17EventTypeCallBack = .sdata:0x803EB7C8; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EB7D0; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata:0x803EB7D4; // type:object size:0x4 scope:local align:4 data:float +@1842 = .sdata:0x803EB7D8; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata:0x803EB7DC; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata:0x803EB7E0; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata:0x803EB7E4; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata:0x803EB7E8; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata:0x803EB7EC; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata:0x803EB7F0; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EB7F4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIbeatleAnimation = .sdata:0x803EB7FC; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EB804; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EB80C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIbeatleStrategy = .sdata:0x803EB814; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB81C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckInsideRangePiki = .sdata:0x803EB824; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAcheckInsideRangePikiBeatle = .sdata:0x803EB82C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdisableStick = .sdata:0x803EB834; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB83C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EB844; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingBeatle = .sdata:0x803EB84C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAinvincibleOff = .sdata:0x803EB854; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB85C; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EB864; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAflickingAfterMotionLoop = .sdata:0x803EB86C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAflickingAfterMotionLoopBeatle = .sdata:0x803EB874; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIArockAttack = .sdata:0x803EB87C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAjudgeOptionalRange = .sdata:0x803EB884; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAinsideOptionalRange = .sdata:0x803EB88C; // type:object size:0x8 scope:local align:4 +__RTTI__29TAIAinsideOptionalRangeBeatle = .sdata:0x803EB894; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAvisiblePikiBeatle = .sdata:0x803EB89C; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAdamage = .sdata:0x803EB8A4; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdamageBeatle = .sdata:0x803EB8AC; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EB8B4; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingBeatle = .sdata:0x803EB8BC; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitBeatle = .sdata:0x803EB8C4; // type:object size:0x8 scope:local align:4 +@3883 = .sdata:0x803EB8CC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB8D4; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB8DC; // type:object size:0x8 scope:local align:4 +@3886 = .sdata:0x803EB8E4; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EB8EC; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EB8F4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIbeatleParameters = .sdata:0x803EB8FC; // type:object size:0x8 scope:local align:4 +@658 = .sdata:0x803EB908; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata:0x803EB90C; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata:0x803EB910; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata:0x803EB914; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata:0x803EB918; // type:object size:0x4 scope:local align:4 data:float +@791 = .sdata:0x803EB91C; // type:object size:0x6 scope:local align:4 data:string +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EB924; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EB92C; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EB934; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9MenuPanel = .sdata:0x803EB93C; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EB948; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EB94C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EB950; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EB954; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EB958; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EB95C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EB960; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiAAnimation = .sdata:0x803EB968; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EB970; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAshadowOff = .sdata:0x803EB978; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAshadowOn = .sdata:0x803EB980; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EB988; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiA = .sdata:0x803EB990; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiA = .sdata:0x803EB998; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EB9A0; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EB9A8; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiA = .sdata:0x803EB9B0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAinvincibleOn = .sdata:0x803EB9B8; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EB9C0; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetMotionSpeed = .sdata:0x803EB9C8; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EB9D0; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EB9D8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiAStrategy = .sdata:0x803EB9E0; // type:object size:0x8 scope:local align:4 +@2521 = .sdata:0x803EB9E8; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EB9F0; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EB9F8; // type:object size:0x8 scope:local align:4 +@2524 = .sdata:0x803EBA00; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBA08; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBA10; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiAParameters = .sdata:0x803EBA18; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EBA20; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EBA24; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EBA28; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EBA2C; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EBA30; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EBA34; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EBA38; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiBAnimation = .sdata:0x803EBA40; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBA48; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EBA50; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiB = .sdata:0x803EBA58; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiB = .sdata:0x803EBA60; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBA68; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EBA70; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiB = .sdata:0x803EBA78; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EBA80; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiB = .sdata:0x803EBA88; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBA90; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBA98; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBAA0; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiBStrategy = .sdata:0x803EBAA8; // type:object size:0x8 scope:local align:4 +@2636 = .sdata:0x803EBAB0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBAB8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBAC0; // type:object size:0x8 scope:local align:4 +@2639 = .sdata:0x803EBAC8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBAD0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBAD8; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiBParameters = .sdata:0x803EBAE0; // type:object size:0x8 scope:local align:4 +@1766 = .sdata:0x803EBAE8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata:0x803EBAEC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EBAF0; // type:object size:0x4 scope:local align:4 data:float +@1778 = .sdata:0x803EBAF4; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata:0x803EBAF8; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata:0x803EBAFC; // type:object size:0x4 scope:local align:4 data:float +@1803 = .sdata:0x803EBB00; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata:0x803EBB04; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata:0x803EBB08; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EBB0C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIkabekuiCAnimation = .sdata:0x803EBB14; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBB1C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EBB24; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsleepKabekuiC = .sdata:0x803EBB2C; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAdiveKabekuiC = .sdata:0x803EBB34; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBB3C; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackWorkObject = .sdata:0x803EBB44; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAattackWorkObjectKabekuiC = .sdata:0x803EBB4C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAlandingKabekuiC = .sdata:0x803EBB54; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAjudgeLife = .sdata:0x803EBB5C; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAmoreLife = .sdata:0x803EBB64; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAmoreLifeKabekuiC = .sdata:0x803EBB6C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAhitCheckFlyingPiki = .sdata:0x803EBB74; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAcheckPikiFlyKabekuiC = .sdata:0x803EBB7C; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAflyingMotionKabekuiC = .sdata:0x803EBB84; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflyingBase = .sdata:0x803EBB8C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAflyingBaseKabekuiC = .sdata:0x803EBB94; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen37CallBack1 = .sdata:0x803EBB9C; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@12rippleEffect = .sdata:0x803EBBA4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAtakeOffKabekuiC = .sdata:0x803EBBAC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAlessLife = .sdata:0x803EBBB4; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAlessLifeKabekuiC = .sdata:0x803EBBBC; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAbiteForKabekui = .sdata:0x803EBBC4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAbiteForKabekuiC = .sdata:0x803EBBCC; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBBD4; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBBDC; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBBE4; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIkabekuiCStrategy = .sdata:0x803EBBEC; // type:object size:0x8 scope:local align:4 +@2991 = .sdata:0x803EBBF4; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBBFC; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBC04; // type:object size:0x8 scope:local align:4 +@2994 = .sdata:0x803EBC0C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBC14; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBC1C; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIkabekuiCParameters = .sdata:0x803EBC24; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EBC30; // type:object size:0x8 scope:local align:4 +__RTTI__18TAItamagoAnimation = .sdata:0x803EBC38; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBC40; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAcountStartTamago = .sdata:0x803EBC48; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBC50; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAhatch = .sdata:0x803EBC58; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EBC60; // type:object size:0x8 scope:local align:4 +__RTTI__23TAIAtimerReactionTamago = .sdata:0x803EBC68; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingTamago = .sdata:0x803EBC70; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBC78; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBC80; // type:object size:0x8 scope:local align:4 +__RTTI__17TAItamagoStrategy = .sdata:0x803EBC88; // type:object size:0x8 scope:local align:4 +@2323 = .sdata:0x803EBC90; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBC98; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBCA0; // type:object size:0x8 scope:local align:4 +@2326 = .sdata:0x803EBCA8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBCB0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBCB8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAItamagoParameters = .sdata:0x803EBCC0; // type:object size:0x8 scope:local align:4 +@991 = .sdata:0x803EBCC8; // type:object size:0x4 scope:local align:4 +@1853 = .sdata:0x803EBCCC; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata:0x803EBCD0; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata:0x803EBCD4; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata:0x803EBCD8; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata:0x803EBCDC; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata:0x803EBCE0; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata:0x803EBCE4; // type:object size:0x4 scope:local align:4 data:float +@2443 = .sdata:0x803EBCE8; // type:object size:0x4 scope:local align:4 data:float +@2446 = .sdata:0x803EBCEC; // type:object size:0x4 scope:local align:4 data:float +@2449 = .sdata:0x803EBCF0; // type:object size:0x4 scope:local align:4 data:float +@2452 = .sdata:0x803EBCF4; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EBCF8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIdororoAnimation = .sdata:0x803EBD00; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBD08; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBD10; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIdororoStrategy = .sdata:0x803EBD18; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBD20; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAgravityDororo = .sdata:0x803EBD28; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckBarkDororo = .sdata:0x803EBD30; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBD38; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAmotionLoop = .sdata:0x803EBD40; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAbarkDororo = .sdata:0x803EBD48; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAtransformationDororo = .sdata:0x803EBD50; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAbirthDororo = .sdata:0x803EBD58; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAgoTargetPriorityFaceDir = .sdata:0x803EBD60; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgoTargetPiki = .sdata:0x803EBD68; // type:object size:0x8 scope:local align:4 +__RTTI__8TAIAwait = .sdata:0x803EBD70; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAwaitDororo = .sdata:0x803EBD78; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBD80; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflicking = .sdata:0x803EBD88; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingDororo = .sdata:0x803EBD90; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAgoGoalPath = .sdata:0x803EBD98; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAgoGoalPathDororo = .sdata:0x803EBDA0; // type:object size:0x8 scope:local align:4 +__RTTI__9Condition = .sdata:0x803EBDA8; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAkillTouchPiki = .sdata:0x803EBDB0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EBDB8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingDororo = .sdata:0x803EBDC0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitDororo = .sdata:0x803EBDC8; // type:object size:0x8 scope:local align:4 +@3567 = .sdata:0x803EBDD0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBDD8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBDE0; // type:object size:0x8 scope:local align:4 +@3570 = .sdata:0x803EBDE8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBDF0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBDF8; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIdororoParameters = .sdata:0x803EBE00; // type:object size:0x8 scope:local align:4 +@1789 = .sdata:0x803EBE08; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EBE0C; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIhibaAAnimation = .sdata:0x803EBE14; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBE1C; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBE24; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIhibaAStrategy = .sdata:0x803EBE2C; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBE34; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBE3C; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAfireAttackHibaA = .sdata:0x803EBE44; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAtimerReaction = .sdata:0x803EBE4C; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAtimerReactionHibaA = .sdata:0x803EBE54; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAinitHibaA = .sdata:0x803EBE5C; // type:object size:0x8 scope:local align:4 +@2377 = .sdata:0x803EBE64; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBE6C; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EBE74; // type:object size:0x8 scope:local align:4 +@2380 = .sdata:0x803EBE7C; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EBE84; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EBE8C; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIhibaAParameters = .sdata:0x803EBE94; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIeffectAttackEventCallBack = .sdata:0x803EBE9C; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIeffectAttackEventCallBackHibaA = .sdata:0x803EBEA4; // type:object size:0x8 scope:local align:4 +RUMBLE_NONE__18TAIAeffCloudOfDust = .sdata:0x803EBEB0; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__9TaiAction = .sdata:0x803EBEB4; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAeffCloudOfDust = .sdata:0x803EBEBC; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EBEC8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAImiurinAnimation = .sdata:0x803EBED0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EBED8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EBEE0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAImiurinStrategy = .sdata:0x803EBEE8; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EBEF0; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EBEF8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAgroggyMiurin = .sdata:0x803EBF00; // type:object size:0x8 scope:local align:4 +__RTTI__24TAIAresetAnimSpeedMiurin = .sdata:0x803EBF08; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EBF10; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAangryMiurin = .sdata:0x803EBF18; // type:object size:0x8 scope:local align:4 +__RTTI__28TAIAinsideTerritoryRangeNavi = .sdata:0x803EBF20; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAcheckNaviMiurin = .sdata:0x803EBF28; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAcheckFlowerPikmin = .sdata:0x803EBF30; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAsatisfyMiurin = .sdata:0x803EBF38; // type:object size:0x8 scope:local align:4 +__RTTI__19TAIAwatchNaviMiurin = .sdata:0x803EBF40; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAoutsideTerritory = .sdata:0x803EBF48; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAoutsideTerritoryMiurin = .sdata:0x803EBF50; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EBF58; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAflickingMiurin = .sdata:0x803EBF60; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAflickCheck = .sdata:0x803EBF68; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAflickCheckMiurin = .sdata:0x803EBF70; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAstickingPiki = .sdata:0x803EBF78; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAstickingPikiMiurin = .sdata:0x803EBF80; // type:object size:0x8 scope:local align:4 +__RTTI__22TAIAcheckSatisfyMiurin = .sdata:0x803EBF88; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAattackMiurin = .sdata:0x803EBF90; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAattackPosture = .sdata:0x803EBF98; // type:object size:0x8 scope:local align:4 +__RTTI__20TAIAattackableTarget = .sdata:0x803EBFA0; // type:object size:0x8 scope:local align:4 +__RTTI__26TAIAattackableTargetMiurin = .sdata:0x803EBFA8; // type:object size:0x8 scope:local align:4 +__RTTI__33TAIAapproachTargetPriorityFaceDir = .sdata:0x803EBFB0; // type:object size:0x8 scope:local align:4 +__RTTI__39TAIAapproachTargetPriorityFaceDirMiurin = .sdata:0x803EBFB8; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIAturnToTarget = .sdata:0x803EBFC0; // type:object size:0x8 scope:local align:4 +__RTTI__21TAIAturnFocusCreature = .sdata:0x803EBFC8; // type:object size:0x8 scope:local align:4 +__RTTI__27TAIAturnFocusCreatureMiurin = .sdata:0x803EBFD0; // type:object size:0x8 scope:local align:4 +__RTTI__9TAIAdying = .sdata:0x803EBFD8; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAdyingMiurin = .sdata:0x803EBFE0; // type:object size:0x8 scope:local align:4 +__RTTI__14TAIAinitMiurin = .sdata:0x803EBFE8; // type:object size:0x8 scope:local align:4 +@3759 = .sdata:0x803EBFF0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EBFF8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC000; // type:object size:0x8 scope:local align:4 +@3762 = .sdata:0x803EC008; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC010; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC018; // type:object size:0x8 scope:local align:4 +__RTTI__19TAImiurinParameters = .sdata:0x803EC020; // type:object size:0x8 scope:local align:4 +@918 = .sdata:0x803EC028; // type:object size:0x7 scope:local align:4 data:string +mapNoScr2Game__9@unnamed@ = .sdata:0x803EC030; // type:object size:0x5 scope:local align:4 data:byte +mapNoGame2Scr__9@unnamed@ = .sdata:0x803EC038; // type:object size:0x5 scope:local align:4 data:byte +@1259 = .sdata:0x803EC040; // type:object size:0x4 scope:local align:4 data:float +@1264 = .sdata:0x803EC044; // type:object size:0x4 scope:local align:4 data:float +@1265 = .sdata:0x803EC048; // type:object size:0x4 scope:local align:4 data:float +@1266 = .sdata:0x803EC04C; // type:object size:0x4 scope:local align:4 data:float +@1267 = .sdata:0x803EC050; // type:object size:0x4 scope:local align:4 data:float +@1268 = .sdata:0x803EC054; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata:0x803EC058; // type:object size:0x4 scope:local align:4 data:float +OBJ_NUM__Q23zen16WorldMapTitleMgr = .sdata:0x803EC05C; // type:object size:0x4 scope:global align:4 data:4byte +@1305 = .sdata:0x803EC060; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata:0x803EC064; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata:0x803EC068; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata:0x803EC06C; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata:0x803EC070; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata:0x803EC074; // type:object size:0x4 scope:local align:4 +@1341 = .sdata:0x803EC078; // type:object size:0x4 scope:local align:4 +@1343 = .sdata:0x803EC07C; // type:object size:0x4 scope:local align:4 +@1344 = .sdata:0x803EC080; // type:object size:0x4 scope:local align:4 +@1358 = .sdata:0x803EC084; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata:0x803EC088; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata:0x803EC08C; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata:0x803EC090; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata:0x803EC094; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata:0x803EC098; // type:object size:0x4 scope:local align:4 data:float +@1364 = .sdata:0x803EC09C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803EC0A0; // type:object size:0x4 scope:local align:4 data:float +@1366 = .sdata:0x803EC0A4; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata:0x803EC0A8; // type:object size:0x4 scope:local align:4 data:float +@1368 = .sdata:0x803EC0AC; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata:0x803EC0B0; // type:object size:0x4 scope:local align:4 data:float +@1371 = .sdata:0x803EC0B4; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata:0x803EC0B8; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata:0x803EC0BC; // type:object size:0x4 scope:local align:4 data:float +@1374 = .sdata:0x803EC0C0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata:0x803EC0C4; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata:0x803EC0C8; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata:0x803EC0CC; // type:object size:0x4 scope:local align:4 data:float +bottomLengthMin__Q23zen19WorldMapCursorOnyon = .sdata:0x803EC0D0; // type:object size:0x4 scope:global align:4 data:float +bottomLengthDefault__Q23zen19WorldMapCursorOnyon = .sdata:0x803EC0D4; // type:object size:0x4 scope:global align:4 data:float +bottomLengthMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803EC0D8; // type:object size:0x4 scope:global align:4 data:float +scaleFrameMax__Q23zen19WorldMapCursorOnyon = .sdata:0x803EC0DC; // type:object size:0x4 scope:global align:4 data:float +@1388 = .sdata:0x803EC0E0; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803EC0E4; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803EC0E8; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803EC0EC; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803EC0F0; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803EC0F4; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata:0x803EC0F8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata:0x803EC0FC; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata:0x803EC100; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata:0x803EC104; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata:0x803EC108; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata:0x803EC10C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata:0x803EC110; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata:0x803EC114; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata:0x803EC118; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata:0x803EC11C; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata:0x803EC120; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata:0x803EC124; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata:0x803EC128; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata:0x803EC12C; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata:0x803EC130; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata:0x803EC134; // type:object size:0x4 scope:local align:4 data:float +@1601 = .sdata:0x803EC138; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata:0x803EC13C; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata:0x803EC140; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata:0x803EC144; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata:0x803EC148; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata:0x803EC14C; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata:0x803EC150; // type:object size:0x4 scope:local align:4 data:float +@1631 = .sdata:0x803EC154; // type:object size:0x4 scope:local align:4 data:float +@1632 = .sdata:0x803EC158; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata:0x803EC15C; // type:object size:0x4 scope:local align:4 data:float +@1634 = .sdata:0x803EC160; // type:object size:0x4 scope:local align:4 data:float +@1635 = .sdata:0x803EC164; // type:object size:0x4 scope:local align:4 data:float +@1636 = .sdata:0x803EC168; // type:object size:0x4 scope:local align:4 data:float +@1637 = .sdata:0x803EC16C; // type:object size:0x4 scope:local align:4 data:float +@1638 = .sdata:0x803EC170; // type:object size:0x4 scope:local align:4 data:float +@1639 = .sdata:0x803EC174; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata:0x803EC178; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata:0x803EC17C; // type:object size:0x4 scope:local align:4 data:float +@1642 = .sdata:0x803EC180; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata:0x803EC184; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata:0x803EC188; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata:0x803EC18C; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata:0x803EC190; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata:0x803EC194; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata:0x803EC198; // type:object size:0x4 scope:local align:4 data:float +ONYON_POS_RADIUS__Q23zen17WorldMapCursorMgr = .sdata:0x803EC19C; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_X__Q23zen17WorldMapCursorMgr = .sdata:0x803EC1A0; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Y__Q23zen17WorldMapCursorMgr = .sdata:0x803EC1A4; // type:object size:0x4 scope:global align:4 data:float +ONYON_OFFSET_Z__Q23zen17WorldMapCursorMgr = .sdata:0x803EC1A8; // type:object size:0x4 scope:global align:4 data:float +@1656 = .sdata:0x803EC1AC; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata:0x803EC1B0; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata:0x803EC1B4; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata:0x803EC1B8; // type:object size:0x4 scope:local align:4 data:float +@1678 = .sdata:0x803EC1BC; // type:object size:0x4 scope:local align:4 data:float +@1718 = .sdata:0x803EC1C0; // type:object size:0x4 scope:local align:4 data:float +@1728 = .sdata:0x803EC1C4; // type:object size:0x4 scope:local align:4 data:float +EVENT_NONE__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803EC1C8; // type:object size:0x4 scope:global align:4 data:4byte +EVENT_APPEAR_FINISH__Q29@unnamed@19WorldMapCoursePoint = .sdata:0x803EC1CC; // type:object size:0x4 scope:global align:4 data:4byte +@2808 = .sdata:0x803EC1D0; // type:object size:0x6 scope:local align:4 data:string +@2809 = .sdata:0x803EC1D8; // type:object size:0x6 scope:local align:4 data:string +@2812 = .sdata:0x803EC1E0; // type:object size:0x6 scope:local align:4 data:string +@2813 = .sdata:0x803EC1E8; // type:object size:0x7 scope:local align:4 data:string +@2814 = .sdata:0x803EC1F0; // type:object size:0x7 scope:local align:4 data:string +@2816 = .sdata:0x803EC1F8; // type:object size:0x7 scope:local align:4 data:string +@2817 = .sdata:0x803EC200; // type:object size:0x7 scope:local align:4 data:string +@2818 = .sdata:0x803EC208; // type:object size:0x7 scope:local align:4 data:string +__RTTI__Q23zen9NumberTex = .sdata:0x803EC210; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EC218; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC220; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC228; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC230; // type:object size:0x8 scope:local align:4 +__RTTI__Q29@unnamed@24DrawWorldMapDateCallBack = .sdata:0x803EC238; // type:object size:0x8 scope:local align:4 +@819 = .sdata:0x803EC240; // type:object size:0x7 scope:local align:4 data:string +@769 = .sdata:0x803EC248; // type:object size:0x7 scope:local align:4 data:string +__RTTI__12TekiStrategy = .sdata:0x803EC250; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC258; // type:object size:0x8 scope:local align:4 +@768 = .sdata:0x803EC260; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata:0x803EC264; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata:0x803EC268; // type:object size:0x4 scope:local align:4 data:float +@772 = .sdata:0x803EC26C; // type:object size:0x4 scope:local align:4 data:float +@773 = .sdata:0x803EC270; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata:0x803EC278; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata:0x803EC27C; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata:0x803EC280; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata:0x803EC284; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata:0x803EC288; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata:0x803EC28C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__12TAIanimation = .sdata:0x803EC290; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIusubaAnimation = .sdata:0x803EC298; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC2A0; // type:object size:0x8 scope:local align:4 +__RTTI__10TAIAmotion = .sdata:0x803EC2A8; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIAflyUsuba = .sdata:0x803EC2B0; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC2B8; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC2C0; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIusubaStrategy = .sdata:0x803EC2C8; // type:object size:0x8 scope:local align:4 +@2222 = .sdata:0x803EC2D0; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC2D8; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC2E0; // type:object size:0x8 scope:local align:4 +@2225 = .sdata:0x803EC2E8; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC2F0; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC2F8; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIusubaParameters = .sdata:0x803EC300; // type:object size:0x8 scope:local align:4 +__RTTI__12TAIanimation = .sdata:0x803EC308; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIotamaAnimation = .sdata:0x803EC310; // type:object size:0x8 scope:local align:4 +__RTTI__9TaiAction = .sdata:0x803EC318; // type:object size:0x8 scope:local align:4 +__RTTI__17TAIAreserveMotion = .sdata:0x803EC320; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIArunAwayOtama = .sdata:0x803EC328; // type:object size:0x8 scope:local align:4 +__RTTI__25TAIAflickingReserveMotion = .sdata:0x803EC330; // type:object size:0x8 scope:local align:4 +__RTTI__15TAIAappealOtama = .sdata:0x803EC338; // type:object size:0x8 scope:local align:4 +__RTTI__30TAIAsetTargetPointCircleRandom = .sdata:0x803EC340; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIAsetTargetOtama = .sdata:0x803EC348; // type:object size:0x8 scope:local align:4 +__RTTI__13TAIAwaitOtama = .sdata:0x803EC350; // type:object size:0x8 scope:local align:4 +__RTTI__12TekiStrategy = .sdata:0x803EC358; // type:object size:0x8 scope:local align:4 +__RTTI__11YaiStrategy = .sdata:0x803EC360; // type:object size:0x8 scope:local align:4 +__RTTI__16TAIotamaStrategy = .sdata:0x803EC368; // type:object size:0x8 scope:local align:4 +@2700 = .sdata:0x803EC370; // type:object size:0x6 scope:local align:4 data:string +__RTTI__5ANode = .sdata:0x803EC378; // type:object size:0x8 scope:local align:4 +__RTTI__8CoreNode = .sdata:0x803EC380; // type:object size:0x8 scope:local align:4 +@2703 = .sdata:0x803EC388; // type:object size:0x5 scope:local align:4 data:string +__RTTI__4Node = .sdata:0x803EC390; // type:object size:0x8 scope:local align:4 +__RTTI__14TekiParameters = .sdata:0x803EC398; // type:object size:0x8 scope:local align:4 +__RTTI__18TAIotamaParameters = .sdata:0x803EC3A0; // type:object size:0x8 scope:local align:4 +@1132 = .sdata:0x803EC3A8; // type:object size:0x4 scope:local align:4 data:float +@1133 = .sdata:0x803EC3AC; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata:0x803EC3B0; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata:0x803EC3B4; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata:0x803EC3B8; // type:object size:0x4 scope:local align:4 data:float +@1149 = .sdata:0x803EC3BC; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata:0x803EC3C0; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata:0x803EC3C4; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata:0x803EC3C8; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata:0x803EC3CC; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata:0x803EC3D0; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata:0x803EC3D4; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata:0x803EC3D8; // type:object size:0x6 scope:local align:4 data:string +@1379 = .sdata:0x803EC3E0; // type:object size:0x4 scope:local align:4 data:float +@1380 = .sdata:0x803EC3E4; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata:0x803EC3E8; // type:object size:0x4 scope:local align:4 data:float +@1382 = .sdata:0x803EC3EC; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata:0x803EC3F0; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata:0x803EC3F4; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata:0x803EC3F8; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata:0x803EC3FC; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata:0x803EC400; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata:0x803EC404; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata:0x803EC408; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata:0x803EC40C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata:0x803EC410; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata:0x803EC414; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata:0x803EC418; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata:0x803EC41C; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata:0x803EC420; // type:object size:0x4 scope:local align:4 data:float +@1396 = .sdata:0x803EC424; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata:0x803EC428; // type:object size:0x4 scope:local align:4 data:float +@1398 = .sdata:0x803EC42C; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata:0x803EC430; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata:0x803EC434; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata:0x803EC438; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata:0x803EC43C; // type:object size:0x4 scope:local align:4 data:float +__RTTI__Q23zen10DrawScreen = .sdata:0x803EC440; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803EC448; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawCMCSmenu = .sdata:0x803EC450; // type:object size:0x8 scope:local align:4 +@648 = .sdata:0x803EC458; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata:0x803EC460; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata:0x803EC464; // type:object size:0x6 scope:local align:4 data:string +@812 = .sdata:0x803EC46C; // type:object size:0x6 scope:local align:4 data:string +@813 = .sdata:0x803EC474; // type:object size:0x6 scope:local align:4 data:string +@814 = .sdata:0x803EC47C; // type:object size:0x6 scope:local align:4 data:string +MEMORY_BEST_SCORE__Q23zen14DrawCMscoreMgr = .sdata:0x803EC484; // type:object size:0x4 scope:global align:4 data:4byte +@778 = .sdata:0x803EC488; // type:object size:0x7 scope:local align:4 data:string +@1165 = .sdata:0x803EC490; // type:object size:0x6 scope:local align:4 data:string +@1274 = .sdata:0x803EC498; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata:0x803EC49C; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata:0x803EC4A0; // type:object size:0x4 scope:local align:4 data:float +@1283 = .sdata:0x803EC4A4; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata:0x803EC4A8; // type:object size:0x4 scope:local align:4 data:float +@1349 = .sdata:0x803EC4AC; // type:object size:0x6 scope:local align:4 data:string +__RTTI__Q23zen17DrawCMresultAlpha = .sdata:0x803EC4B4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen17DrawCMresultGraph = .sdata:0x803EC4BC; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen9NumberTex = .sdata:0x803EC4C4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12FigureTex = .sdata:0x803EC4CC; // type:object size:0x8 scope:local align:4 +__RTTI__19P2DPaneCallBackBase = .sdata:0x803EC4D4; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen20CallBack1 = .sdata:0x803EC4DC; // type:object size:0x8 scope:local align:4 +__RTTI__15P2DPaneCallBack = .sdata:0x803EC4E4; // type:object size:0x8 scope:local align:4 +@765 = .sdata:0x803EC4F0; // type:object size:0x7 scope:local align:4 data:string +@766 = .sdata:0x803EC4F8; // type:object size:0x7 scope:local align:4 data:string +@767 = .sdata:0x803EC500; // type:object size:0x7 scope:local align:4 data:string +@768 = .sdata:0x803EC508; // type:object size:0x7 scope:local align:4 data:string +SELECT_CANCEL__Q23zen12DrawMenuBase = .sdata:0x803EC510; // type:object size:0x4 scope:global align:4 data:4byte +__RTTI__Q23zen10DrawScreen = .sdata:0x803EC514; // type:object size:0x8 scope:local align:4 +__RTTI__Q23zen12DrawMenuBase = .sdata:0x803EC51C; // type:object size:0x8 scope:local align:4 +@902 = .sdata:0x803EC528; // type:object size:0x7 scope:local align:4 data:string +@903 = .sdata:0x803EC530; // type:object size:0x7 scope:local align:4 data:string +@904 = .sdata:0x803EC538; // type:object size:0x7 scope:local align:4 data:string +@905 = .sdata:0x803EC540; // type:object size:0x7 scope:local align:4 data:string +@906 = .sdata:0x803EC548; // type:object size:0x6 scope:local align:4 data:string +@907 = .sdata:0x803EC550; // type:object size:0x8 scope:local align:4 data:string +@1097 = .sdata:0x803EC558; // type:object size:0x7 scope:local align:4 data:string +@1098 = .sdata:0x803EC560; // type:object size:0x7 scope:local align:4 data:string +@429 = .sdata:0x803EC568; // type:object size:0x5 scope:local align:4 data:string +@978 = .sdata:0x803EC570; // type:object size:0x6 scope:local align:4 data:string +@979 = .sdata:0x803EC578; // type:object size:0x7 scope:local align:4 data:string +@980 = .sdata:0x803EC580; // type:object size:0x7 scope:local align:4 data:string +@981 = .sdata:0x803EC588; // type:object size:0x7 scope:local align:4 data:string +@1094 = .sdata:0x803EC590; // type:object size:0x4 scope:local align:4 data:float +__OSCurrHeap = .sdata:0x803EC598; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x803EC5A0; // type:object size:0x4 scope:local align:4 data:4byte +@32 = .sdata:0x803EC5A8; // type:object size:0x2 scope:local align:4 data:string +fontEncode$60 = .sdata:0x803EC5B0; // type:object size:0x2 scope:local align:2 data:2byte +@796 = .sdata:0x803EC5B8; // type:object size:0x1 scope:local align:4 +Unit01 = .sdata:0x803EC5C0; // type:object size:0x8 scope:local align:4 +FirstRead = .sdata:0x803EC5C8; // type:object size:0x4 scope:local align:4 data:4byte +@116 = .sdata:0x803EC5D0; // type:object size:0x8 scope:local align:4 data:string +autoInvalidation = .sdata:0x803EC5D8; // type:object size:0x4 scope:local align:4 data:4byte +@35 = .sdata:0x803EC5E0; // type:object size:0x2 scope:local align:4 data:string +@40 = .sdata:0x803EC5E4; // type:object size:0x4 scope:local align:4 data:string +@41 = .sdata:0x803EC5E8; // type:object size:0x3 scope:local align:4 data:string +ClampRegion = .sdata:0x803EC5F0; // type:object size:0x8 scope:local align:4 data:byte +ResettingChan = .sdata:0x803EC5F8; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x803EC5FC; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x803EC600; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x803EC604; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x803EC608; // type:object size:0x4 scope:local align:4 data:4byte +CmdReadOrigin = .sdata:0x803EC60C; // type:object size:0x4 scope:local align:4 +CmdCalibrate = .sdata:0x803EC610; // type:object size:0x4 scope:local align:4 +__CARDVendorID = .sdata:0x803EC618; // type:object size:0x2 scope:global align:2 data:2byte +Chan = .sdata:0x803EC620; // type:object size:0x4 scope:local align:4 data:4byte +gx = .sdata:0x803EC628; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$214 = .sdata:0x803EC630; // type:object size:0x4 scope:local align:4 +tbl2$215 = .sdata:0x803EC634; // type:object size:0x4 scope:local align:4 +tbl3$216 = .sdata:0x803EC638; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x803EC640; // type:object size:0x8 scope:global align:4 +GXTexMode1Ids = .sdata:0x803EC648; // type:object size:0x8 scope:global align:4 +GXTexImage0Ids = .sdata:0x803EC650; // type:object size:0x8 scope:global align:4 +GXTexImage1Ids = .sdata:0x803EC658; // type:object size:0x8 scope:global align:4 +GXTexImage2Ids = .sdata:0x803EC660; // type:object size:0x8 scope:global align:4 +GXTexImage3Ids = .sdata:0x803EC668; // type:object size:0x8 scope:global align:4 +GXTexTlutIds = .sdata:0x803EC670; // type:object size:0x8 scope:global align:4 +GX2HWFiltConv = .sdata:0x803EC678; // type:object size:0x6 scope:global align:4 +fragmentID = .sdata:0x803EC680; // type:object size:0x4 scope:local align:4 data:4byte +@159 = .sdata:0x803EC688; // type:object size:0x8 scope:local align:8 data:double +@wstringBase0 = .sdata:0x803EC690; // type:object size:0x2 scope:local align:4 +next = .sdata:0x803EC698; // type:object size:0x4 scope:local align:4 data:4byte +K1 = .sdata:0x803EC6A0; // type:object size:0x4 scope:local align:4 data:4byte +K2 = .sdata:0x803EC6A4; // type:object size:0x4 scope:local align:4 data:4byte +exi = .sdata:0x803EC6A8; // type:object size:0x4 scope:local align:4 data:4byte +pucEXI2InputPending = .sdata:0x803EC6B0; // type:object size:0x4 scope:local align:4 data:4byte +SendCount = .sdata:0x803EC6B8; // type:object size:0x1 scope:local align:1 data:byte +UNIVERSAL_DACCOUNTER = .sbss:0x803EC6C0; // type:object size:0x4 scope:global align:4 data:4byte +audio_hp_exist = .sbss:0x803EC6C4; // type:object size:0x4 scope:local align:4 data:4byte +last_rsp_madep = .sbss:0x803EC6C8; // type:object size:0x4 scope:local align:4 data:4byte +use_rsp_madep = .sbss:0x803EC6CC; // type:object size:0x4 scope:local align:4 data:4byte +vframe_work_running = .sbss:0x803EC6D0; // type:object size:0x4 scope:local align:4 data:4byte +DAC_CALLBACK_FUNC = .sbss:0x803EC6D4; // type:object size:0x4 scope:local align:4 data:4byte +JAC_VFRAME_COUNTER = .sbss:0x803EC6D8; // type:object size:0x4 scope:global align:4 data:4byte +ext_mixcallback = .sbss:0x803EC6DC; // type:object size:0x4 scope:local align:4 data:4byte +ext_mixmode = .sbss:0x803EC6E0; // type:object size:0x1 scope:local align:1 data:byte +dacp$238 = .sbss:0x803EC6E4; // type:object size:0x4 scope:local align:4 data:4byte +init$239 = .sbss:0x803EC6E8; // type:object size:0x1 scope:local align:1 data:byte +JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x803EC6F0; // type:object size:0x4 scope:global align:4 data:4byte +AUDIO_ARAM_TOP = .sbss:0x803EC6F4; // type:object size:0x4 scope:local align:4 data:4byte +CARD_SECURITY_BUFFER = .sbss:0x803EC6F8; // type:object size:0x4 scope:local align:4 data:4byte +SELECTED_ARAM_SIZE = .sbss:0x803EC6FC; // type:object size:0x4 scope:local align:4 data:4byte +audioproc_mq_init = .sbss:0x803EC700; // type:object size:0x4 scope:local align:4 data:4byte +intcount = .sbss:0x803EC704; // type:object size:0x4 scope:local align:4 data:4byte +first$85 = .sbss:0x803EC708; // type:object size:0x4 scope:local align:4 data:4byte +init$86 = .sbss:0x803EC70C; // type:object size:0x1 scope:local align:1 data:byte +priority_set = .sbss:0x803EC710; // type:object size:0x4 scope:local align:4 data:4byte +pri = .sbss:0x803EC714; // type:object size:0x4 scope:local align:4 data:4byte +pri2 = .sbss:0x803EC718; // type:object size:0x4 scope:local align:4 data:4byte +pri3 = .sbss:0x803EC71C; // type:object size:0x4 scope:local align:4 data:4byte +write_buffer = .sbss:0x803EC720; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803EC721; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803EC722; // type:object size:0x1 scope:local align:1 data:byte +dac_sync_counter = .sbss:0x803EC724; // type:object size:0x4 scope:local align:4 data:4byte +cur$192 = .sbss:0x803EC728; // type:object size:0x4 scope:local align:4 data:4byte +init$193 = .sbss:0x803EC72C; // type:object size:0x1 scope:local align:1 data:byte +write_buffer = .sbss:0x803EC730; // type:object size:0x1 scope:local align:1 data:byte +read_buffer = .sbss:0x803EC731; // type:object size:0x1 scope:local align:1 data:byte +dspstatus = .sbss:0x803EC732; // type:object size:0x1 scope:local align:1 data:byte +mq_init = .sbss:0x803EC738; // type:object size:0x4 scope:local align:4 data:4byte +buffersize = .sbss:0x803EC73C; // type:object size:0x4 scope:local align:4 data:4byte +buffers = .sbss:0x803EC740; // type:object size:0x4 scope:local align:4 data:4byte +next_buffersize = .sbss:0x803EC744; // type:object size:0x4 scope:local align:4 data:4byte +next_buffertop = .sbss:0x803EC748; // type:object size:0x4 scope:local align:4 data:4byte +next_buffers = .sbss:0x803EC74C; // type:object size:0x4 scope:local align:4 data:4byte +cur_q = .sbss:0x803EC750; // type:object size:0x4 scope:local align:4 data:4byte +dvdt_sleep = .sbss:0x803EC754; // type:object size:0x8 scope:local align:4 +DVDT_PAUSE_FLAG = .sbss:0x803EC75C; // type:object size:0x4 scope:local align:4 data:4byte +error_callback = .sbss:0x803EC760; // type:object size:0x4 scope:local align:4 data:4byte +ADVD_BUFFER = .sbss:0x803EC764; // type:object size:0x8 scope:local align:4 data:4byte +buffer_load = .sbss:0x803EC76C; // type:object size:0x4 scope:local align:4 data:4byte +buffer_full = .sbss:0x803EC770; // type:object size:0x4 scope:local align:4 data:4byte +arq_index$222 = .sbss:0x803EC774; // type:object size:0x4 scope:local align:4 data:4byte +init$223 = .sbss:0x803EC778; // type:object size:0x1 scope:local align:1 data:byte +dvdfile_dics = .sbss:0x803EC77C; // type:object size:0x4 scope:local align:4 data:4byte +JAC_AI_SETTING = .sbss:0x803EC780; // type:object size:0x4 scope:global align:4 data:4byte +flag = .sbss:0x803EC788; // type:object size:0x4 scope:local align:4 data:4byte +taskreadp = .sbss:0x803EC790; // type:object size:0x4 scope:local align:4 data:4byte +taskwritep = .sbss:0x803EC794; // type:object size:0x4 scope:local align:4 data:4byte +__DSP_tmp_task = .sbss:0x803EC798; // type:object size:0x4 scope:global align:4 data:4byte +DSP_prior_yield = .sbss:0x803EC7A0; // type:object size:0x1 scope:local align:1 data:byte +AUDIO_UPDATE_REQUEST = .sbss:0x803EC7A4; // type:object size:0x4 scope:local align:4 data:4byte +DSP_prior_task = .sbss:0x803EC7A8; // type:object size:0x4 scope:global align:4 data:4byte +cur_waits = .sbss:0x803EC7B0; // type:object size:0x4 scope:local align:4 data:4byte +cur_top = .sbss:0x803EC7B4; // type:object size:0x4 scope:local align:4 data:4byte +cur_tail = .sbss:0x803EC7B8; // type:object size:0x4 scope:local align:4 data:4byte +old_time = .sbss:0x803EC7C0; // type:object size:0x4 scope:local align:4 data:4byte +inited$62 = .sbss:0x803EC7C8; // type:object size:0x4 scope:local align:4 data:4byte +init$63 = .sbss:0x803EC7CC; // type:object size:0x1 scope:local align:1 data:byte +ACTIVE_FATS = .sbss:0x803EC7D0; // type:object size:0x4 scope:local align:4 data:4byte +USEFAT_TAIL = .sbss:0x803EC7D4; // type:object size:0x4 scope:local align:4 data:4byte +fatheapptr = .sbss:0x803EC7D8; // type:object size:0x4 scope:local align:4 data:4byte +cmd_once = .sbss:0x803EC7E0; // type:object size:0x8 scope:local align:4 +cmd_stay = .sbss:0x803EC7E8; // type:object size:0x8 scope:local align:4 +JV_CURRENT_ARCS = .sbss:0x803EC7F0; // type:object size:0x4 scope:local align:4 data:4byte +first$162 = .sbss:0x803EC7F4; // type:object size:0x4 scope:local align:4 data:4byte +init$163 = .sbss:0x803EC7F8; // type:object size:0x1 scope:local align:1 data:byte +global_id = .sbss:0x803EC800; // type:object size:0x4 scope:local align:4 data:4byte +JAM_CALLBACK_FUNC = .sbss:0x803EC808; // type:object size:0x4 scope:local align:4 data:4byte +T_LISTS = .sbss:0x803EC80C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_P = .sbss:0x803EC810; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_CMD = .sbss:0x803EC814; // type:object size:0x1 scope:local align:1 data:byte +BACK_P = .sbss:0x803EC818; // type:object size:0x4 scope:local align:4 data:4byte +GET_P = .sbss:0x803EC81C; // type:object size:0x4 scope:local align:4 data:4byte +SEQ_REMAIN = .sbss:0x803EC820; // type:object size:0x4 scope:local align:4 data:4byte +vol_chg = .sbss:0x803EC828; // type:object size:0x4 scope:local align:4 data:4byte +stacklevel = .sbss:0x803EC82C; // type:object size:0x4 scope:local align:4 data:4byte +queue_list = .sbss:0x803EC830; // type:object size:0x4 scope:global align:4 data:4byte +cmdqueue_reset = .sbss:0x803EC834; // type:object size:0x4 scope:local align:4 data:4byte +countdown_count = .sbss:0x803EC838; // type:object size:0x4 scope:local align:4 data:4byte +pausemode = .sbss:0x803EC83C; // type:object size:0x4 scope:local align:4 data:4byte +container = .sbss:0x803EC840; // type:object size:0x4 scope:local align:4 data:4byte +sys_voldown_flag = .sbss:0x803EC844; // type:object size:0x4 scope:local align:4 data:4byte +boot_ok = .sbss:0x803EC848; // type:object size:0x4 scope:local align:4 data:4byte +count = .sbss:0x803EC84C; // type:object size:0x4 scope:local align:4 data:4byte +lend_buffer = .sbss:0x803EC850; // type:object size:0x4 scope:local align:4 data:4byte +demo_fade_flag = .sbss:0x803EC858; // type:object size:0x4 scope:local align:4 data:4byte +CURRENT_TIME = .sbss:0x803EC860; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_entry = .sbss:0x803EC864; // type:object size:0x4 scope:local align:4 data:4byte +jac_debug_multi_cancel = .sbss:0x803EC868; // type:object size:0x4 scope:local align:4 data:4byte +gaya_timer = .sbss:0x803EC870; // type:object size:0x4 scope:local align:4 data:4byte +seqp$71 = .sbss:0x803EC874; // type:object size:0x4 scope:local align:4 data:4byte +init$72 = .sbss:0x803EC878; // type:object size:0x1 scope:local align:1 data:byte +status$74 = .sbss:0x803EC879; // type:object size:0x1 scope:local align:1 data:byte +init$75 = .sbss:0x803EC87A; // type:object size:0x1 scope:local align:1 data:byte +stick_seqp = .sbss:0x803EC87C; // type:object size:0x4 scope:local align:4 data:4byte +flag$87 = .sbss:0x803EC880; // type:object size:0x4 scope:local align:4 data:4byte +init$88 = .sbss:0x803EC884; // type:object size:0x1 scope:local align:1 data:byte +orima_seqp = .sbss:0x803EC888; // type:object size:0x4 scope:local align:4 data:4byte +status$120 = .sbss:0x803EC88C; // type:object size:0x1 scope:local align:1 data:byte +init$121 = .sbss:0x803EC88D; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$124 = .sbss:0x803EC890; // type:object size:0x4 scope:local align:4 data:4byte +init$125 = .sbss:0x803EC894; // type:object size:0x1 scope:local align:1 data:byte +flyready$135 = .sbss:0x803EC898; // type:object size:0x4 scope:local align:4 data:4byte +init$136 = .sbss:0x803EC89C; // type:object size:0x1 scope:local align:1 data:byte +old1$151 = .sbss:0x803EC89E; // type:object size:0x2 scope:local align:2 data:2byte +init$152 = .sbss:0x803EC8A0; // type:object size:0x1 scope:local align:1 data:byte +old2$154 = .sbss:0x803EC8A2; // type:object size:0x2 scope:local align:2 data:2byte +init$155 = .sbss:0x803EC8A4; // type:object size:0x1 scope:local align:1 data:byte +old3$157 = .sbss:0x803EC8A6; // type:object size:0x2 scope:local align:2 data:2byte +init$158 = .sbss:0x803EC8A8; // type:object size:0x1 scope:local align:1 data:byte +seqp$186 = .sbss:0x803EC8AC; // type:object size:0x4 scope:local align:4 data:4byte +init$187 = .sbss:0x803EC8B0; // type:object size:0x1 scope:local align:1 data:byte +cmdqueue_reset$190 = .sbss:0x803EC8B4; // type:object size:0x4 scope:local align:4 data:4byte +init$191 = .sbss:0x803EC8B8; // type:object size:0x1 scope:local align:1 data:byte +pikis = .sbss:0x803EC8BC; // type:object size:0x4 scope:local align:4 data:4byte +seqp$215 = .sbss:0x803EC8C0; // type:object size:0x4 scope:local align:4 data:4byte +init$216 = .sbss:0x803EC8C4; // type:object size:0x4 scope:local align:4 data:4byte +init$217 = .sbss:0x803EC8C8; // type:object size:0x1 scope:local align:1 data:byte +volume$220 = .sbss:0x803EC8CC; // type:object size:0x4 scope:local align:4 data:float +init$221 = .sbss:0x803EC8D0; // type:object size:0x1 scope:local align:1 data:byte +lastside = .sbss:0x803EC8D8; // type:object size:0x1 scope:local align:1 data:byte +last_crossmode = .sbss:0x803EC8DC; // type:object size:0x4 scope:local align:4 data:4byte +call_counter = .sbss:0x803EC8E0; // type:object size:0x4 scope:local align:4 data:4byte +bgm_semaphore = .sbss:0x803EC8E4; // type:object size:0x4 scope:local align:4 data:4byte +current_bgm = .sbss:0x803EC8E8; // type:object size:0x4 scope:local align:4 data:4byte +current_ready = .sbss:0x803EC8EC; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803EC8F0; // type:object size:0x4 scope:local align:4 data:4byte +first_load = .sbss:0x803EC8F4; // type:object size:0x4 scope:local align:4 data:4byte +chgmode = .sbss:0x803EC8F8; // type:object size:0x4 scope:local align:4 data:4byte +first$89 = .sbss:0x803EC8FC; // type:object size:0x4 scope:local align:4 data:4byte +init$90 = .sbss:0x803EC900; // type:object size:0x1 scope:local align:1 data:byte +stop_flag = .sbss:0x803EC904; // type:object size:0x4 scope:local align:4 data:4byte +stop_ready = .sbss:0x803EC908; // type:object size:0x4 scope:local align:4 data:4byte +demo_seqp = .sbss:0x803EC910; // type:object size:0x4 scope:local align:4 data:4byte +demo_bgm_seqp = .sbss:0x803EC914; // type:object size:0x4 scope:local align:4 data:4byte +current_seq_bgm = .sbss:0x803EC918; // type:object size:0x4 scope:local align:4 data:4byte +demo_inited = .sbss:0x803EC91C; // type:object size:0x4 scope:local align:4 data:4byte +now_loading = .sbss:0x803EC920; // type:object size:0x4 scope:local align:4 data:4byte +parts_find_demo_state = .sbss:0x803EC924; // type:object size:0x4 scope:local align:4 data:4byte +text_demo_state = .sbss:0x803EC928; // type:object size:0x4 scope:local align:4 data:4byte +demo_parts_id = .sbss:0x803EC92C; // type:object size:0x1 scope:local align:1 data:byte +demo_onyon_num = .sbss:0x803EC92D; // type:object size:0x1 scope:local align:1 data:byte +demo_parts_num = .sbss:0x803EC92E; // type:object size:0x1 scope:local align:1 data:byte +event_pause_counter = .sbss:0x803EC92F; // type:object size:0x1 scope:local align:1 data:byte +demo_end_delay = .sbss:0x803EC930; // type:object size:0x4 scope:local align:4 data:4byte +seq_archandle = .sbss:0x803EC938; // type:object size:0x4 scope:local align:4 data:4byte +default_streamsync_call = .sbss:0x803EC940; // type:object size:0x4 scope:local align:4 data:4byte +dvd_loadfinish = .sbss:0x803EC948; // type:object size:0x4 scope:local align:4 data:4byte +dvdcount = .sbss:0x803EC94C; // type:object size:0x4 scope:local align:4 data:4byte +arcoffset = .sbss:0x803EC950; // type:object size:0x4 scope:local align:4 data:4byte +AUDIO_FRAME = .sbss:0x803EC954; // type:object size:0x4 scope:local align:4 data:4byte +PIC_FRAME = .sbss:0x803EC958; // type:object size:0x4 scope:local align:4 data:4byte +drop_picture_flag = .sbss:0x803EC95C; // type:object size:0x4 scope:local align:4 data:4byte +PIC_BUFFERS = .sbss:0x803EC960; // type:object size:0x4 scope:local align:4 data:4byte +dvdload_size = .sbss:0x803EC964; // type:object size:0x4 scope:local align:4 data:4byte +dvdfile_size = .sbss:0x803EC968; // type:object size:0x4 scope:local align:4 data:4byte +rec_header = .sbss:0x803EC96C; // type:object size:0x8 scope:local align:4 data:2byte +v_header = .sbss:0x803EC974; // type:object size:0x4 scope:local align:4 data:4byte +gop_baseframe = .sbss:0x803EC978; // type:object size:0x4 scope:local align:4 data:4byte +gop_frame = .sbss:0x803EC97C; // type:object size:0x4 scope:local align:4 data:4byte +vh_state = .sbss:0x803EC980; // type:object size:0x4 scope:local align:4 data:4byte +hvqm_obj = .sbss:0x803EC984; // type:object size:0x4 scope:local align:4 data:4byte +dvd_active = .sbss:0x803EC988; // type:object size:0x4 scope:local align:4 data:4byte +virtualfile_buf = .sbss:0x803EC98C; // type:object size:0x4 scope:local align:4 data:4byte +record_ok = .sbss:0x803EC990; // type:object size:0x4 scope:local align:4 data:4byte +ref1 = .sbss:0x803EC994; // type:object size:0x4 scope:local align:4 data:4byte +ref2 = .sbss:0x803EC998; // type:object size:0x4 scope:local align:4 data:4byte +readTree_signed = .sbss:0x803EC9A0; // type:object size:0x4 scope:local align:4 data:4byte +readTree_scale = .sbss:0x803EC9A4; // type:object size:0x4 scope:local align:4 data:4byte +matIndex = .sbss:0x803EC9A8; // type:object size:0x4 scope:local align:4 data:4byte +usedIndex = .sbss:0x803EC9AC; // type:object size:0x4 scope:local align:4 data:4byte +_dlindx = .sbss:0x803EC9B0; // type:object size:0x4 scope:local align:4 data:4byte +nodeMgr = .sbss:0x803EC9B8; // type:object size:0x4 scope:global align:4 data:4byte +statbuff__9CmdStream = .sbss:0x803EC9C0; // type:object size:0x4 scope:global align:4 data:4byte +useSymbols = .sbss:0x803EC9C8; // type:object size:0x1 scope:local align:1 data:byte +gsys = .sbss:0x803EC9CC; // type:object size:0x4 scope:global align:4 data:4byte +sysCon = .sbss:0x803EC9D0; // type:object size:0x4 scope:global align:4 data:4byte +errCon = .sbss:0x803EC9D4; // type:object size:0x4 scope:global align:4 data:4byte +dvdMesgBuffer = .sbss:0x803EC9D8; // type:object size:0x4 scope:local align:4 +loadMesgBuffer = .sbss:0x803EC9DC; // type:object size:0x4 scope:local align:4 +sysMesgBuffer = .sbss:0x803EC9E0; // type:object size:0x4 scope:local align:4 +readBuffer__9DVDStream = .sbss:0x803EC9E4; // type:object size:0x4 scope:global align:4 data:4byte +numOpen__9DVDStream = .sbss:0x803EC9E8; // type:object size:0x4 scope:global align:4 data:4byte +bigFont = .sbss:0x803EC9EC; // type:object size:0x4 scope:local align:4 data:4byte +sFrameSize = .sbss:0x803EC9F0; // type:object size:0x4 scope:local align:4 data:4byte +oldVerts = .sbss:0x803EC9F4; // type:object size:0x4 scope:local align:4 data:4byte +oldNorms = .sbss:0x803EC9F8; // type:object size:0x4 scope:local align:4 data:4byte +oldCols = .sbss:0x803EC9FC; // type:object size:0x4 scope:local align:4 data:4byte +oldCull = .sbss:0x803ECA00; // type:object size:0x4 scope:local align:4 data:4byte +oldTevGroup = .sbss:0x803ECA04; // type:object size:0x4 scope:local align:4 data:4byte +frameNum = .sbss:0x803ECA08; // type:object size:0x4 scope:local align:4 data:4byte +videoModeAsIs$639 = .sbss:0x803ECA0C; // type:object size:0x4 scope:local align:4 data:4byte +init$640 = .sbss:0x803ECA10; // type:object size:0x1 scope:local align:1 data:byte +gfx__11DGXGraphics = .sbss:0x803ECA14; // type:object size:0x4 scope:global align:4 data:4byte +sendTxIndx = .sbss:0x803ECA18; // type:object size:0x1 scope:local align:1 data:byte +sendColIndx = .sbss:0x803ECA19; // type:object size:0x1 scope:local align:1 data:byte +sendNbtIndx = .sbss:0x803ECA1A; // type:object size:0x1 scope:local align:1 data:byte +app = .sbss:0x803ECA20; // type:object size:0x4 scope:global align:4 data:4byte +llspin = .sbss:0x803ECA24; // type:object size:0x4 scope:local align:4 data:float +memcardWindow = .sbss:0x803ECA28; // type:object size:0x4 scope:local align:4 data:4byte +selectWindow = .sbss:0x803ECA30; // type:object size:0x4 scope:local align:4 data:4byte +mapWindow = .sbss:0x803ECA34; // type:object size:0x4 scope:local align:4 data:4byte +npgss = .sbss:0x803ECA38; // type:object size:0x4 scope:local align:4 data:4byte +gamecore = .sbss:0x803ECA3C; // type:object size:0x4 scope:local align:4 data:4byte +movieIndex = .sbss:0x803ECA40; // type:object size:0x4 scope:local align:4 data:4byte +challengeWindow = .sbss:0x803ECA44; // type:object size:0x4 scope:local align:4 data:4byte +gameoverWindow = .sbss:0x803ECA48; // type:object size:0x4 scope:local align:4 data:4byte +countWindow = .sbss:0x803ECA4C; // type:object size:0x4 scope:local align:4 data:4byte +pauseWindow = .sbss:0x803ECA50; // type:object size:0x4 scope:local align:4 data:4byte +resultWindow = .sbss:0x803ECA54; // type:object size:0x4 scope:local align:4 data:4byte +totalWindow = .sbss:0x803ECA58; // type:object size:0x4 scope:local align:4 data:4byte +memcardWindow = .sbss:0x803ECA5C; // type:object size:0x4 scope:local align:4 data:4byte +menuOn = .sbss:0x803ECA60; // type:object size:0x1 scope:local align:1 data:byte +gameInfoOn = .sbss:0x803ECA61; // type:object size:0x1 scope:local align:1 data:byte +gameInfoIn = .sbss:0x803ECA62; // type:object size:0x1 scope:local align:1 data:byte +menuWindow = .sbss:0x803ECA64; // type:object size:0x4 scope:local align:4 data:4byte +tutorialWindow = .sbss:0x803ECA68; // type:object size:0x4 scope:local align:4 data:4byte +hasDemoSound = .sbss:0x803ECA6C; // type:object size:0x1 scope:local align:1 data:byte +dontShowFrame = .sbss:0x803ECA6D; // type:object size:0x1 scope:local align:1 data:byte +igss = .sbss:0x803ECA70; // type:object size:0x4 scope:local align:4 data:4byte +lgborder = .sbss:0x803ECA78; // type:object size:0x4 scope:local align:4 data:byte +lglev0 = .sbss:0x803ECA7C; // type:object size:0x4 scope:local align:4 data:byte +lglev1 = .sbss:0x803ECA80; // type:object size:0x4 scope:local align:4 data:byte +lglev2 = .sbss:0x803ECA84; // type:object size:0x4 scope:local align:4 data:byte +lglev3 = .sbss:0x803ECA88; // type:object size:0x4 scope:local align:4 data:byte +lgMgr = .sbss:0x803ECA8C; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__18GenObjectMapObject = .sbss:0x803ECA90; // type:object size:0x4 scope:global align:4 data:4byte +titleWindow = .sbss:0x803ECA98; // type:object size:0x4 scope:local align:4 data:4byte +titleWindowOn = .sbss:0x803ECA9C; // type:object size:0x1 scope:local align:1 data:byte +totalWindow = .sbss:0x803ECAA0; // type:object size:0x4 scope:local align:4 data:4byte +totalWindowOn = .sbss:0x803ECAA4; // type:object size:0x1 scope:local align:1 data:byte +startWindow = .sbss:0x803ECAA8; // type:object size:0x4 scope:local align:4 data:4byte +startWindowOn = .sbss:0x803ECAAC; // type:object size:0x1 scope:local align:1 data:byte +spin$localstatic0$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAB0; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic1$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAB4; // type:object size:0x1 scope:weak align:1 data:byte +chas$localstatic2$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAB8; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic3$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECABC; // type:object size:0x1 scope:weak align:1 data:byte +cmax$localstatic4$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAC0; // type:object size:0x4 scope:weak align:4 data:4byte +init$localstatic5$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAC4; // type:object size:0x1 scope:weak align:1 data:byte +rspin$localstatic6$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAC8; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic7$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECACC; // type:object size:0x1 scope:weak align:1 data:byte +mfade$localstatic8$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAD0; // type:object size:0x4 scope:weak align:4 data:float +init$localstatic9$draw__17TitleSetupSectionFR8Graphics = .sbss:0x803ECAD4; // type:object size:0x1 scope:weak align:1 data:byte +progresWindow = .sbss:0x803ECAD8; // type:object size:0x4 scope:local align:4 data:4byte +mapMgr = .sbss:0x803ECAE0; // type:object size:0x4 scope:global align:4 data:4byte +Kda = .sbss:0x803ECAE4; // type:object size:0x4 scope:local align:4 data:float +numRepeats = .sbss:0x803ECAE8; // type:object size:0x4 scope:local align:4 data:4byte +numUpdated = .sbss:0x803ECAEC; // type:object size:0x4 scope:local align:4 data:4byte +vlink = .sbss:0x803ECAF0; // type:object size:0x4 scope:local align:4 data:4byte +ImgH = .sbss:0x803ECAF8; // type:object size:0x2 scope:local align:2 data:2byte +ImgW = .sbss:0x803ECAFA; // type:object size:0x2 scope:local align:2 data:2byte +finishPlayback = .sbss:0x803ECAFC; // type:object size:0x1 scope:local align:1 data:byte +attentionCamera = .sbss:0x803ECB00; // type:object size:0x4 scope:global align:4 data:4byte +radarInfo = .sbss:0x803ECB08; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionDoneEvent = .sbss:0x803ECB10; // type:object size:0x4 scope:global align:4 data:4byte +saiBounceEvent = .sbss:0x803ECB14; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopStartEvent = .sbss:0x803ECB18; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionLoopEndEvent = .sbss:0x803ECB1C; // type:object size:0x4 scope:global align:4 data:4byte +saiCollideEvent = .sbss:0x803ECB20; // type:object size:0x4 scope:global align:4 data:4byte +saiGroundEvent = .sbss:0x803ECB24; // type:object size:0x4 scope:global align:4 data:4byte +saiMotionAction0Event = .sbss:0x803ECB28; // type:object size:0x4 scope:global align:4 data:4byte +arrowShape__11GlobalShape = .sbss:0x803ECB30; // type:object size:0x4 scope:global align:4 data:4byte +markerShape__11GlobalShape = .sbss:0x803ECB34; // type:object size:0x4 scope:global align:4 data:4byte +axisShape__11GlobalShape = .sbss:0x803ECB38; // type:object size:0x4 scope:global align:4 data:4byte +enShape__11GlobalShape = .sbss:0x803ECB3C; // type:object size:0x4 scope:global align:4 data:4byte +markerShape2__11GlobalShape = .sbss:0x803ECB40; // type:object size:0x4 scope:global align:4 data:4byte +cursorShape__11GlobalShape = .sbss:0x803ECB44; // type:object size:0x4 scope:global align:4 data:4byte +preloadUFO = .sbss:0x803ECB48; // type:object size:0x1 scope:global align:1 data:byte +playerState = .sbss:0x803ECB4C; // type:object size:0x4 scope:global align:4 data:4byte +demoParms = .sbss:0x803ECB50; // type:object size:0x4 scope:global align:4 data:4byte +demoEventMgr = .sbss:0x803ECB58; // type:object size:0x4 scope:global align:4 data:4byte +_instance__10AIConstant = .sbss:0x803ECB60; // type:object size:0x4 scope:global align:4 data:4byte +kio = .sbss:0x803ECB68; // type:object size:0x4 scope:global align:4 data:4byte +fbCopy__3KIO = .sbss:0x803ECB6C; // type:object size:0x1 scope:global align:1 data:byte +haltMessage__3KIO = .sbss:0x803ECB70; // type:object size:0x4 scope:global align:4 data:4byte +_instance__9KeyConfig = .sbss:0x803ECB78; // type:object size:0x4 scope:global align:4 data:4byte +showRoute__6AIPerf = .sbss:0x803ECB80; // type:object size:0x1 scope:global align:1 data:byte +generatorMode__6AIPerf = .sbss:0x803ECB81; // type:object size:0x1 scope:global align:1 data:byte +moveType__6AIPerf = .sbss:0x803ECB84; // type:object size:0x4 scope:global align:4 data:4byte +kandoOnly__6AIPerf = .sbss:0x803ECB88; // type:object size:0x1 scope:global align:1 data:byte +soundDebug__6AIPerf = .sbss:0x803ECB89; // type:object size:0x1 scope:global align:1 data:byte +updateSearchBuffer__6AIPerf = .sbss:0x803ECB8A; // type:object size:0x1 scope:global align:1 data:byte +loopOptimise__6AIPerf = .sbss:0x803ECB8B; // type:object size:0x1 scope:global align:1 data:byte +useUpdateMgr__6AIPerf = .sbss:0x803ECB8C; // type:object size:0x1 scope:global align:1 data:byte +ufoLevel__6AIPerf = .sbss:0x803ECB90; // type:object size:0x4 scope:global align:4 data:4byte +searchCnt__6AIPerf = .sbss:0x803ECB94; // type:object size:0x4 scope:global align:4 data:4byte +searchCullCnt__6AIPerf = .sbss:0x803ECB98; // type:object size:0x4 scope:global align:4 data:4byte +searchInsertCnt__6AIPerf = .sbss:0x803ECB9C; // type:object size:0x4 scope:global align:4 data:4byte +collisionCnt__6AIPerf = .sbss:0x803ECBA0; // type:object size:0x4 scope:global align:4 data:4byte +iteratorCullCnt__6AIPerf = .sbss:0x803ECBA4; // type:object size:0x4 scope:global align:4 data:4byte +aiCullCnt__6AIPerf = .sbss:0x803ECBA8; // type:object size:0x4 scope:global align:4 data:4byte +viewCullCnt__6AIPerf = .sbss:0x803ECBAC; // type:object size:0x4 scope:global align:4 data:4byte +outsideViewCnt__6AIPerf = .sbss:0x803ECBB0; // type:object size:0x4 scope:global align:4 data:4byte +drawshapeCullCnt__6AIPerf = .sbss:0x803ECBB4; // type:object size:0x4 scope:global align:4 data:4byte +collision__11CourseDebug = .sbss:0x803ECBB8; // type:object size:0x4 scope:global align:4 data:4byte +pikiNoAttack__11CourseDebug = .sbss:0x803ECBBC; // type:object size:0x4 scope:global align:4 data:4byte +noCarryover__11CourseDebug = .sbss:0x803ECBC0; // type:object size:0x4 scope:global align:4 data:4byte +pelletDebug__11CourseDebug = .sbss:0x803ECBC4; // type:object size:0x4 scope:global align:4 data:4byte +memStat = .sbss:0x803ECBC8; // type:object size:0x4 scope:global align:4 data:4byte +numTris = .sbss:0x803ECBD0; // type:object size:0x4 scope:local align:4 data:4byte +baseTri = .sbss:0x803ECBD4; // type:object size:0x4 scope:local align:4 data:4byte +checkRadius = .sbss:0x803ECBD8; // type:object size:0x4 scope:local align:4 data:float +particleHeap = .sbss:0x803ECBE0; // type:object size:0x4 scope:global align:4 data:4byte +aiGridMap__8FastGrid = .sbss:0x803ECBE8; // type:object size:0x4 scope:global align:4 data:4byte +aiGridSize__8FastGrid = .sbss:0x803ECBEC; // type:object size:0x2 scope:global align:2 data:2byte +SmartTurnOver = .sbss:0x803ECBF0; // type:object size:0x1 scope:global align:1 data:byte +count$1859 = .sbss:0x803ECBF4; // type:object size:0x4 scope:local align:4 data:4byte +init$1860 = .sbss:0x803ECBF8; // type:object size:0x1 scope:local align:1 data:byte +pelletMgr = .sbss:0x803ECBFC; // type:object size:0x4 scope:global align:4 data:4byte +workObjectMgr = .sbss:0x803ECC00; // type:object size:0x4 scope:global align:4 data:4byte +mode__10PathFinder = .sbss:0x803ECC08; // type:object size:0x2 scope:global align:2 data:2byte +routeMgr = .sbss:0x803ECC0C; // type:object size:0x4 scope:global align:4 data:4byte +seMgr = .sbss:0x803ECC10; // type:object size:0x4 scope:global align:4 data:4byte +seSystem = .sbss:0x803ECC18; // type:object size:0x4 scope:global align:4 data:4byte +pikiUpdateMgr = .sbss:0x803ECC20; // type:object size:0x4 scope:global align:4 data:4byte +searchUpdateMgr = .sbss:0x803ECC24; // type:object size:0x4 scope:global align:4 data:4byte +pikiLookUpdateMgr = .sbss:0x803ECC28; // type:object size:0x4 scope:global align:4 data:4byte +pikiOptUpdateMgr = .sbss:0x803ECC2C; // type:object size:0x4 scope:global align:4 data:4byte +tekiOptUpdateMgr = .sbss:0x803ECC30; // type:object size:0x4 scope:global align:4 data:4byte +uniqueInstance__7AiTable = .sbss:0x803ECC38; // type:object size:0x4 scope:global align:4 data:4byte +directDumpMode__4Piki = .sbss:0x803ECC40; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr = .sbss:0x803ECC48; // type:object size:0x4 scope:global align:4 data:4byte +containerDebug__7PikiMgr = .sbss:0x803ECC4C; // type:object size:0x1 scope:global align:1 data:byte +meBirthMode__7PikiMgr = .sbss:0x803ECC4D; // type:object size:0x1 scope:global align:1 data:byte +meNukiMode__7PikiMgr = .sbss:0x803ECC4E; // type:object size:0x1 scope:global align:1 data:byte +containerExitMode__7PikiMgr = .sbss:0x803ECC4F; // type:object size:0x1 scope:global align:1 data:byte +ramMode__9Generator = .sbss:0x803ECC50; // type:object size:0x1 scope:global align:1 data:byte +factory__16GenObjectFactory = .sbss:0x803ECC54; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenTypeFactory = .sbss:0x803ECC58; // type:object size:0x4 scope:global align:4 data:4byte +factory__14GenAreaFactory = .sbss:0x803ECC5C; // type:object size:0x4 scope:global align:4 data:4byte +generatorMgr = .sbss:0x803ECC60; // type:object size:0x4 scope:global align:4 data:4byte +plantGeneratorMgr = .sbss:0x803ECC64; // type:object size:0x4 scope:global align:4 data:4byte +dailyGeneratorMgr = .sbss:0x803ECC68; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr = .sbss:0x803ECC6C; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr = .sbss:0x803ECC70; // type:object size:0x4 scope:global align:4 data:4byte +generatorList = .sbss:0x803ECC74; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache = .sbss:0x803ECC78; // type:object size:0x4 scope:global align:4 data:4byte +demoHideFlag__8GoalItem = .sbss:0x803ECC80; // type:object size:0x1 scope:global align:1 data:byte +buryMode__11PikiHeadMgr = .sbss:0x803ECC88; // type:object size:0x1 scope:global align:1 data:byte +itemMgr = .sbss:0x803ECC8C; // type:object size:0x4 scope:global align:4 data:4byte +controllerLen = .sbss:0x803ECC90; // type:object size:0x4 scope:local align:4 data:float +ang$5655 = .sbss:0x803ECC94; // type:object size:0x4 scope:local align:4 data:float +init$5656 = .sbss:0x803ECC98; // type:object size:0x1 scope:local align:1 data:byte +lastDamage = .sbss:0x803ECCA0; // type:object size:0x1 scope:local align:1 data:byte +currDamage = .sbss:0x803ECCA1; // type:object size:0x1 scope:local align:1 data:byte +damageParm = .sbss:0x803ECCA4; // type:object size:0x4 scope:local align:4 data:4byte +pauseFlag__15GameCoreSection = .sbss:0x803ECCA8; // type:object size:0x2 scope:global align:2 data:2byte +textDemoState__15GameCoreSection = .sbss:0x803ECCAC; // type:object size:0x4 scope:global align:4 data:4byte +textDemoTimer__15GameCoreSection = .sbss:0x803ECCB0; // type:object size:0x2 scope:global align:2 data:2byte +textDemoIndex__15GameCoreSection = .sbss:0x803ECCB4; // type:object size:0x4 scope:global align:4 data:4byte +cameraMgr = .sbss:0x803ECCB8; // type:object size:0x4 scope:global align:4 data:4byte +containerWindow = .sbss:0x803ECCBC; // type:object size:0x4 scope:global align:4 data:4byte +hurryupWindow = .sbss:0x803ECCC0; // type:object size:0x4 scope:global align:4 data:4byte +accountWindow = .sbss:0x803ECCC4; // type:object size:0x4 scope:global align:4 data:4byte +timer$4155 = .sbss:0x803ECCC8; // type:object size:0x4 scope:local align:4 data:4byte +init$4156 = .sbss:0x803ECCCC; // type:object size:0x1 scope:local align:1 data:byte +wintex = .sbss:0x803ECCD0; // type:object size:0x4 scope:local align:4 data:4byte +font = .sbss:0x803ECCD4; // type:object size:0x4 scope:local align:4 data:4byte +killTekis__8GameStat = .sbss:0x803ECCD8; // type:object size:0x4 scope:global align:4 data:4byte +getPellets__8GameStat = .sbss:0x803ECCDC; // type:object size:0x4 scope:global align:4 data:4byte +minPikis__8GameStat = .sbss:0x803ECCE0; // type:object size:0x4 scope:global align:4 data:4byte +maxPikis__8GameStat = .sbss:0x803ECCE4; // type:object size:0x4 scope:global align:4 data:4byte +orimaDead__8GameStat = .sbss:0x803ECCE8; // type:object size:0x1 scope:global align:1 data:byte +utEffectMgr = .sbss:0x803ECCF0; // type:object size:0x4 scope:global align:4 data:4byte +effects__11UtEffectMgr = .sbss:0x803ECCF4; // type:object size:0x4 scope:global align:4 data:4byte +controllerBuffer = .sbss:0x803ECCF8; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr = .sbss:0x803ECD00; // type:object size:0x4 scope:global align:4 data:4byte +mapMgr__17GenObjectMapParts = .sbss:0x803ECD08; // type:object size:0x4 scope:global align:4 data:4byte +first$817 = .sbss:0x803ECD0C; // type:object size:0x1 scope:local align:1 data:byte +init$818 = .sbss:0x803ECD0D; // type:object size:0x1 scope:local align:1 data:byte +actorMgr = .sbss:0x803ECD10; // type:object size:0x4 scope:global align:4 data:4byte +pikiInfo = .sbss:0x803ECD18; // type:object size:0x4 scope:global align:4 data:4byte +plantMgr = .sbss:0x803ECD20; // type:object size:0x4 scope:global align:4 data:4byte +nakataDebugMode = .sbss:0x803ECD28; // type:object size:0x4 scope:global align:4 data:4byte +system__7NSystem = .sbss:0x803ECD30; // type:object size:0x4 scope:global align:4 data:4byte +motionTable__15PaniPikiAnimMgr = .sbss:0x803ECD38; // type:object size:0x4 scope:global align:4 data:4byte +tekiMgr = .sbss:0x803ECD40; // type:object size:0x4 scope:global align:4 data:4byte +bossMgr = .sbss:0x803ECD48; // type:object size:0x4 scope:global align:4 data:4byte +vibSpin$2820 = .sbss:0x803ECD50; // type:object size:0x4 scope:local align:4 data:float +init$2821 = .sbss:0x803ECD54; // type:object size:0x1 scope:local align:1 data:byte +rumbleMgr = .sbss:0x803ECD58; // type:object size:0x4 scope:global align:4 data:4byte +effectMgr = .sbss:0x803ECD60; // type:object size:0x4 scope:global align:4 data:4byte +eventCallBackFire__10FireEffect = .sbss:0x803ECD68; // type:object size:0x4 scope:global align:4 data:4byte +effectScale0__12TAIAdyingMar = .sbss:0x803ECD70; // type:object size:0x4 scope:global align:4 data:float +effectScale1__12TAIAdyingMar = .sbss:0x803ECD74; // type:object size:0x4 scope:global align:4 data:float +effectStartCounter__12TAIAdyingMar = .sbss:0x803ECD78; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__12BreathEffect = .sbss:0x803ECD7C; // type:object size:0x4 scope:global align:4 data:4byte +pGameInfo__3zen = .sbss:0x803ECD80; // type:object size:0x4 scope:global align:4 data:4byte +pUpTex__Q23zen19ArrowCenterCallBack = .sbss:0x803ECD88; // type:object size:0x4 scope:global align:4 data:4byte +pDownTex__Q23zen19ArrowCenterCallBack = .sbss:0x803ECD8C; // type:object size:0x4 scope:global align:4 data:4byte +repeatTime__Q23zen9KeyRepeat = .sbss:0x803ECD90; // type:object size:0x4 scope:global align:4 data:float +eventCallBack__19TAIAfireAttackHibaA = .sbss:0x803ECD98; // type:object size:0x4 scope:global align:4 data:4byte +WMeffMgr__9@unnamed@ = .sbss:0x803ECDA0; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803ECDA8; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x803ECDAC; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlagHolder = .sbss:0x803ECDB0; // type:object size:0x4 scope:local align:4 data:4byte +AreWeInitialized = .sbss:0x803ECDB4; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x803ECDB8; // type:object size:0x4 scope:local align:4 data:4byte +__OSInIPL = .sbss:0x803ECDBC; // type:object size:0x4 scope:global align:4 data:4byte +__OSStartTime = .sbss:0x803ECDC0; // type:object size:0x8 scope:global align:8 data:4byte +AlarmQueue = .sbss:0x803ECDC8; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x803ECDD0; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x803ECDD4; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x803ECDD8; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x803ECDDC; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x803ECDE0; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x803ECDE8; // type:object size:0x4 scope:local align:4 data:4byte +__OSLastInterruptSrr0 = .sbss:0x803ECDEC; // type:object size:0x4 scope:global align:4 data:4byte +__OSLastInterrupt = .sbss:0x803ECDF0; // type:object size:0x2 scope:global align:2 data:2byte +__OSLastInterruptTime = .sbss:0x803ECDF8; // type:object size:0x8 scope:global align:8 data:4byte +SaveStart = .sbss:0x803ECE00; // type:object size:0x4 scope:local align:4 data:4byte +SaveEnd = .sbss:0x803ECE04; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x803ECE08; // type:object size:0x4 scope:local align:4 data:4byte +ResetFunctionQueue = .sbss:0x803ECE10; // type:object size:0x8 scope:local align:4 data:4byte +ResetCallback = .sbss:0x803ECE18; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x803ECE1C; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803ECE20; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x803ECE28; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x803ECE30; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x803ECE38; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x803ECE3C; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x803ECE40; // type:object size:0x4 scope:local align:4 data:4byte +__DBInterface = .sbss:0x803ECE48; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x803ECE4C; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x803ECE50; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x803ECE54; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x803ECE58; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x803ECE5C; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x803ECE60; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x803ECE68; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x803ECE6C; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x803ECE70; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x803ECE74; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x803ECE78; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x803ECE80; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x803ECE88; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x803ECE90; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x803ECE94; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x803ECE98; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x803ECE9C; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x803ECEA0; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x803ECEA4; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x803ECEA8; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x803ECEAC; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x803ECEB0; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x803ECEB8; // type:object size:0x4 scope:local align:4 data:4byte +currID = .sbss:0x803ECEBC; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x803ECEC0; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x803ECEC4; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x803ECEC8; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x803ECECC; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x803ECED0; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x803ECED4; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x803ECED8; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x803ECEDC; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x803ECEE0; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x803ECEE4; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x803ECEE8; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x803ECEEC; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x803ECEF0; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x803ECEF4; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x803ECEF8; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x803ECEFC; // type:object size:0x4 scope:global align:4 data:4byte +status = .sbss:0x803ECF00; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x803ECF04; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x803ECF08; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x803ECF10; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x803ECF14; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x803ECF18; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x803ECF20; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x803ECF24; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x803ECF28; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x803ECF2C; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x803ECF2E; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x803ECF30; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x803ECF38; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x803ECF40; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x803ECF48; // type:object size:0x8 scope:local align:8 data:4byte +CurrTiming = .sbss:0x803ECF50; // type:object size:0x4 scope:local align:4 data:4byte +CurrTvMode = .sbss:0x803ECF54; // type:object size:0x4 scope:local align:4 data:4byte +FBSet = .sbss:0x803ECF58; // type:object size:0x4 scope:local align:4 data:4byte +message$332 = .sbss:0x803ECF5C; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x803ECF60; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x803ECF64; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x803ECF68; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x803ECF6C; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x803ECF70; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x803ECF74; // type:object size:0x4 scope:local align:4 data:4byte +PendingBits = .sbss:0x803ECF78; // type:object size:0x4 scope:local align:4 data:4byte +SamplingCallback = .sbss:0x803ECF7C; // type:object size:0x4 scope:local align:4 data:4byte +recalibrated$396 = .sbss:0x803ECF80; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x803ECF84; // type:object size:0x4 scope:global align:4 data:4byte +__AIS_Callback = .sbss:0x803ECF88; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x803ECF8C; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x803ECF90; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x803ECF94; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x803ECF98; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x803ECFA0; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x803ECFA8; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x803ECFB0; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x803ECFB8; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x803ECFC0; // type:object size:0x8 scope:local align:8 data:4byte +__AR_Callback = .sbss:0x803ECFC8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x803ECFCC; // type:object size:0x4 scope:local align:4 data:4byte +__AR_InternalSize = .sbss:0x803ECFD0; // type:object size:0x4 scope:local align:4 data:4byte +__AR_ExpansionSize = .sbss:0x803ECFD4; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x803ECFD8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x803ECFDC; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x803ECFE0; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x803ECFE4; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x803ECFE8; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x803ECFEC; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x803ECFF0; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x803ECFF4; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x803ECFF8; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x803ECFFC; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x803ED000; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x803ED004; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x803ED008; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x803ED00C; // type:object size:0x4 scope:local align:4 data:4byte +__DSP_init_flag = .sbss:0x803ED010; // type:object size:0x4 scope:local align:4 data:4byte +__DSP_last_task = .sbss:0x803ED018; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_first_task = .sbss:0x803ED01C; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_curr_task = .sbss:0x803ED020; // type:object size:0x4 scope:global align:4 data:4byte +cmdTypeAndStatus$77 = .sbss:0x803ED028; // type:object size:0x4 scope:local align:4 +cmdTypeAndStatus$371 = .sbss:0x803ED02C; // type:object size:0x4 scope:local align:4 +__PADFixBits = .sbss:0x803ED030; // type:object size:0x4 scope:global align:4 data:4byte +SamplingRate = .sbss:0x803ED038; // type:object size:0x4 scope:local align:4 data:4byte +Chan = .sbss:0x803ED040; // type:object size:0x4 scope:local align:4 data:4byte +Dev = .sbss:0x803ED044; // type:object size:0x4 scope:local align:4 data:4byte +Enabled = .sbss:0x803ED048; // type:object size:0x4 scope:local align:4 data:4byte +BarnacleEnabled = .sbss:0x803ED04C; // type:object size:0x4 scope:local align:4 data:4byte +Dev = .sbss:0x803ED050; // type:object size:0x4 scope:local align:4 data:4byte +ExiCallback = .sbss:0x803ED054; // type:object size:0x4 scope:local align:4 data:4byte +TxCallback = .sbss:0x803ED058; // type:object size:0x4 scope:local align:4 data:4byte +RxCallback = .sbss:0x803ED05C; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x803ED060; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x803ED064; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x803ED068; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x803ED06C; // type:object size:0x4 scope:global align:4 data:4byte +CPUFifo = .sbss:0x803ED070; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x803ED074; // type:object size:0x4 scope:local align:4 data:4byte +__GXCurrentThread = .sbss:0x803ED078; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x803ED07C; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x803ED080; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x803ED084; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x803ED088; // type:object size:0x4 scope:local align:4 data:4byte +TokenCB = .sbss:0x803ED090; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x803ED094; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x803ED098; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x803ED09C; // type:object size:0x8 scope:local align:4 +OldCPUFifo = .sbss:0x803ED0A8; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x803ED0B0; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x803ED0B8; // type:object size:0x4 scope:global align:4 data:4byte +atexit_curr_func = .sbss:0x803ED0BC; // type:object size:0x4 scope:local align:4 data:4byte +__atexit_curr_func = .sbss:0x803ED0C0; // type:object size:0x4 scope:local align:4 data:4byte +__stdio_exit = .sbss:0x803ED0C4; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x803ED0C8; // type:object size:0x4 scope:global align:4 data:4byte +errno = .sbss:0x803ED0D0; // type:object size:0x4 scope:global align:4 data:4byte +initialized$16 = .sbss:0x803ED0D8; // type:object size:0x4 scope:local align:4 data:4byte +ucEXI2InputPending = .sbss:0x803ED0E0; // type:object size:0x1 scope:local align:1 +fExi2Selected = .sbss:0x803ED0E4; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Callback = .sbss:0x803ED0E8; // type:object size:0x4 scope:local align:4 data:4byte +MTRCallback = .sbss:0x803ED0F0; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x803ED0F4; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x803ED0F8; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x803ED0FC; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x803ED100; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x803ED104; // type:object size:0x1 scope:local align:1 data:byte +@223 = .sdata2:0x803ED120; // type:object size:0x7 scope:local align:4 data:string +@224 = .sdata2:0x803ED128; // type:object size:0x7 scope:local align:4 data:string +@118 = .sdata2:0x803ED130; // type:object size:0x8 scope:local align:4 data:string +@30 = .sdata2:0x803ED138; // type:object size:0x8 scope:local align:8 data:double +@99 = .sdata2:0x803ED140; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803ED148; // type:object size:0x4 scope:local align:4 data:float +@50 = .sdata2:0x803ED150; // type:object size:0x4 scope:local align:4 data:float +@200 = .sdata2:0x803ED154; // type:object size:0x4 scope:local align:4 data:float +@213 = .sdata2:0x803ED158; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803ED15C; // type:object size:0x4 scope:local align:4 data:float +@340 = .sdata2:0x803ED160; // type:object size:0x4 scope:local align:4 data:float +@344 = .sdata2:0x803ED168; // type:object size:0x8 scope:local align:8 data:double +@260 = .sdata2:0x803ED170; // type:object size:0x4 scope:local align:4 data:float +@262 = .sdata2:0x803ED178; // type:object size:0x8 scope:local align:8 data:double +@120 = .sdata2:0x803ED180; // type:object size:0x4 scope:local align:4 data:float +@121 = .sdata2:0x803ED184; // type:object size:0x4 scope:local align:4 data:float +@123 = .sdata2:0x803ED188; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x803ED190; // type:object size:0x8 scope:local align:8 data:double +@194 = .sdata2:0x803ED198; // type:object size:0x4 scope:local align:4 data:float +@195 = .sdata2:0x803ED19C; // type:object size:0x4 scope:local align:4 data:float +@196 = .sdata2:0x803ED1A0; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803ED1A4; // type:object size:0x4 scope:local align:4 data:float +@54 = .sdata2:0x803ED1A8; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803ED1B0; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803ED1B8; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803ED1C0; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x803ED1C8; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x803ED1D0; // type:object size:0x4 scope:local align:4 data:float +@120 = .sdata2:0x803ED1D4; // type:object size:0x4 scope:local align:4 data:float +@122 = .sdata2:0x803ED1D8; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x803ED1E0; // type:object size:0x4 scope:local align:4 data:float +@56 = .sdata2:0x803ED1E8; // type:object size:0x2 scope:local align:4 data:string +@114 = .sdata2:0x803ED1F0; // type:object size:0x4 scope:local align:4 data:float +@115 = .sdata2:0x803ED1F4; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803ED1F8; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x803ED200; // type:object size:0x8 scope:local align:8 data:double +@144 = .sdata2:0x803ED208; // type:object size:0x4 scope:local align:4 data:float +@145 = .sdata2:0x803ED20C; // type:object size:0x4 scope:local align:4 data:float +@146 = .sdata2:0x803ED210; // type:object size:0x4 scope:local align:4 data:float +@528 = .sdata2:0x803ED214; // type:object size:0x4 scope:local align:4 data:float +@582 = .sdata2:0x803ED218; // type:object size:0x4 scope:local align:4 data:float +@728 = .sdata2:0x803ED21C; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803ED220; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803ED224; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803ED228; // type:object size:0x7 scope:local align:4 data:4byte +@1025 = .sdata2:0x803ED230; // type:object size:0x7 scope:local align:4 data:4byte +@144 = .sdata2:0x803ED238; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803ED240; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803ED244; // type:object size:0x4 scope:local align:4 data:float +@189 = .sdata2:0x803ED248; // type:object size:0x4 scope:local align:4 data:float +@68 = .sdata2:0x803ED250; // type:object size:0x4 scope:local align:4 data:float +@69 = .sdata2:0x803ED254; // type:object size:0x4 scope:local align:4 data:float +@70 = .sdata2:0x803ED258; // type:object size:0x4 scope:local align:4 data:float +@71 = .sdata2:0x803ED25C; // type:object size:0x4 scope:local align:4 data:float +@75 = .sdata2:0x803ED260; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x803ED268; // type:object size:0x4 scope:local align:4 data:float +@62 = .sdata2:0x803ED270; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803ED274; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803ED278; // type:object size:0x4 scope:local align:4 data:float +@308 = .sdata2:0x803ED280; // type:object size:0x8 scope:local align:8 data:double +@339 = .sdata2:0x803ED288; // type:object size:0x4 scope:local align:4 data:float +@556 = .sdata2:0x803ED290; // type:object size:0x8 scope:local align:8 data:double +@568 = .sdata2:0x803ED298; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803ED2A0; // type:object size:0x4 scope:local align:4 data:float +@150 = .sdata2:0x803ED2A4; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803ED2A8; // type:object size:0x4 scope:local align:4 data:float +@215 = .sdata2:0x803ED2AC; // type:object size:0x4 scope:local align:4 data:float +@151 = .sdata2:0x803ED2B0; // type:object size:0x4 scope:local align:4 data:float +@152 = .sdata2:0x803ED2B4; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x803ED2B8; // type:object size:0x4 scope:local align:4 data:float +@154 = .sdata2:0x803ED2BC; // type:object size:0x4 scope:local align:4 data:float +@155 = .sdata2:0x803ED2C0; // type:object size:0x4 scope:local align:4 data:float +@156 = .sdata2:0x803ED2C4; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803ED2C8; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x803ED2D0; // type:object size:0x8 scope:local align:8 data:double +@247 = .sdata2:0x803ED2D8; // type:object size:0x4 scope:local align:4 data:float +@248 = .sdata2:0x803ED2DC; // type:object size:0x4 scope:local align:4 data:float +@249 = .sdata2:0x803ED2E0; // type:object size:0x4 scope:local align:4 data:float +@155 = .sdata2:0x803ED2E8; // type:object size:0x4 scope:local align:4 data:float +@156 = .sdata2:0x803ED2EC; // type:object size:0x4 scope:local align:4 data:float +@218 = .sdata2:0x803ED2F0; // type:object size:0x8 scope:local align:8 data:double +@271 = .sdata2:0x803ED2F8; // type:object size:0x4 scope:local align:4 data:float +@325 = .sdata2:0x803ED300; // type:object size:0x4 scope:local align:4 data:float +@326 = .sdata2:0x803ED304; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x803ED308; // type:object size:0x4 scope:local align:4 data:float +@398 = .sdata2:0x803ED30C; // type:object size:0x4 scope:local align:4 data:float +@521 = .sdata2:0x803ED310; // type:object size:0x4 scope:local align:4 data:float +@77 = .sdata2:0x803ED318; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803ED320; // type:object size:0x4 scope:local align:4 data:float +@328 = .sdata2:0x803ED324; // type:object size:0x4 scope:local align:4 data:float +@330 = .sdata2:0x803ED328; // type:object size:0x8 scope:local align:8 data:double +@538 = .sdata2:0x803ED330; // type:object size:0x4 scope:local align:4 data:float +@313 = .sdata2:0x803ED338; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803ED340; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803ED344; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803ED348; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x803ED350; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803ED354; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803ED358; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803ED35C; // type:object size:0x4 scope:local align:4 data:float +@757 = .sdata2:0x803ED360; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803ED364; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803ED368; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803ED370; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803ED378; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803ED37C; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803ED380; // type:object size:0x8 scope:local align:8 data:double +@1626 = .sdata2:0x803ED388; // type:object size:0x8 scope:local align:8 data:double +@1665 = .sdata2:0x803ED390; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803ED394; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803ED398; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803ED39C; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803ED3A0; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803ED3A8; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803ED3AC; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803ED3B0; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803ED3B4; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803ED3B8; // type:object size:0x4 scope:local align:4 data:float +@617 = .sdata2:0x803ED3BC; // type:object size:0x4 scope:local align:4 data:float +@618 = .sdata2:0x803ED3C0; // type:object size:0x4 scope:local align:4 data:float +@619 = .sdata2:0x803ED3C4; // type:object size:0x4 scope:local align:4 data:float +@620 = .sdata2:0x803ED3C8; // type:object size:0x4 scope:local align:4 data:float +@621 = .sdata2:0x803ED3CC; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x803ED3D0; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803ED3D4; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803ED3D8; // type:object size:0x4 scope:local align:4 data:float +@662 = .sdata2:0x803ED3DC; // type:object size:0x4 scope:local align:4 data:float +@663 = .sdata2:0x803ED3E0; // type:object size:0x4 scope:local align:4 data:float +@664 = .sdata2:0x803ED3E4; // type:object size:0x4 scope:local align:4 data:float +@665 = .sdata2:0x803ED3E8; // type:object size:0x4 scope:local align:4 data:float +@666 = .sdata2:0x803ED3EC; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803ED3F0; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803ED3F4; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803ED3F8; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803ED3FC; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803ED400; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803ED404; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803ED408; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803ED40C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803ED410; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803ED414; // type:object size:0x4 scope:local align:4 data:float +@943 = .sdata2:0x803ED418; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803ED41C; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803ED420; // type:object size:0x4 scope:local align:4 data:float +@1681 = .sdata2:0x803ED424; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803ED428; // type:object size:0x4 scope:local align:4 data:float +@2477 = .sdata2:0x803ED42C; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata2:0x803ED430; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x803ED434; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x803ED438; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x803ED43C; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x803ED440; // type:object size:0x8 scope:local align:8 data:double +@3580 = .sdata2:0x803ED448; // type:object size:0x8 scope:local align:8 data:double +@4433 = .sdata2:0x803ED450; // type:object size:0x8 scope:local align:4 data:4byte +@4498 = .sdata2:0x803ED458; // type:object size:0x8 scope:local align:8 data:double +@4499 = .sdata2:0x803ED460; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803ED468; // type:object size:0x4 scope:local align:4 data:float +@735 = .sdata2:0x803ED470; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803ED478; // type:object size:0x8 scope:local align:8 data:double +@737 = .sdata2:0x803ED480; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803ED488; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803ED48C; // type:object size:0x4 scope:local align:4 data:float +@596 = .sdata2:0x803ED490; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803ED494; // type:object size:0x4 scope:local align:4 data:float +@599 = .sdata2:0x803ED498; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803ED49C; // type:object size:0x4 scope:local align:4 data:float +@969 = .sdata2:0x803ED4A0; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803ED4A4; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803ED4A8; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803ED4B0; // type:object size:0x8 scope:local align:8 data:double +@643 = .sdata2:0x803ED4B8; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803ED4BC; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x803ED4C0; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803ED4C4; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803ED4C8; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803ED4D0; // type:object size:0x8 scope:local align:8 data:double +@835 = .sdata2:0x803ED4D8; // type:object size:0x8 scope:local align:8 data:double +@896 = .sdata2:0x803ED4E0; // type:object size:0x8 scope:local align:8 data:double +@897 = .sdata2:0x803ED4E8; // type:object size:0x8 scope:local align:8 data:double +@944 = .sdata2:0x803ED4F0; // type:object size:0x4 scope:local align:4 data:float +@960 = .sdata2:0x803ED4F4; // type:object size:0x4 scope:local align:4 data:float +@600 = .sdata2:0x803ED4F8; // type:object size:0x4 scope:local align:4 data:float +@601 = .sdata2:0x803ED4FC; // type:object size:0x4 scope:local align:4 data:float +@644 = .sdata2:0x803ED500; // type:object size:0x4 scope:local align:4 data:float +@597 = .sdata2:0x803ED508; // type:object size:0x4 scope:local align:4 data:float +@598 = .sdata2:0x803ED50C; // type:object size:0x4 scope:local align:4 data:float +@414 = .sdata2:0x803ED510; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803ED518; // type:object size:0x8 scope:local align:8 data:double +@950 = .sdata2:0x803ED520; // type:object size:0x4 scope:local align:4 data:float +@951 = .sdata2:0x803ED524; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803ED528; // type:object size:0x4 scope:local align:4 data:float +@953 = .sdata2:0x803ED52C; // type:object size:0x4 scope:local align:4 data:float +@959 = .sdata2:0x803ED530; // type:object size:0x8 scope:local align:8 data:double +@960 = .sdata2:0x803ED538; // type:object size:0x8 scope:local align:8 data:double +@1066 = .sdata2:0x803ED540; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803ED544; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803ED548; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803ED550; // type:object size:0x8 scope:local align:8 data:double +@1228 = .sdata2:0x803ED558; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803ED55C; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803ED560; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803ED564; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803ED568; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x803ED570; // type:object size:0x8 scope:local align:8 data:double +@584 = .sdata2:0x803ED578; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803ED580; // type:object size:0x8 scope:local align:8 data:double +@694 = .sdata2:0x803ED588; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803ED590; // type:object size:0x4 scope:local align:4 data:float +@695 = .sdata2:0x803ED594; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803ED598; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x803ED5A0; // type:object size:0x8 scope:local align:8 data:double +@724 = .sdata2:0x803ED5A8; // type:object size:0x4 scope:local align:4 data:float +@616 = .sdata2:0x803ED5B0; // type:object size:0x4 scope:local align:4 data:float +@727 = .sdata2:0x803ED5B4; // type:object size:0x4 scope:local align:4 data:float +@728 = .sdata2:0x803ED5B8; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803ED5C0; // type:object size:0x8 scope:local align:8 data:double +@876 = .sdata2:0x803ED5C8; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803ED5CC; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803ED5D0; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803ED5D4; // type:object size:0x4 scope:local align:4 data:float +@893 = .sdata2:0x803ED5D8; // type:object size:0x8 scope:local align:8 data:double +@1309 = .sdata2:0x803ED5E0; // type:object size:0x4 scope:local align:4 data:4byte +@820 = .sdata2:0x803ED5E8; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803ED5EC; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803ED5F0; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803ED5F4; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803ED5F8; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803ED5FC; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803ED600; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803ED604; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803ED608; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803ED610; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803ED618; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803ED61C; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803ED620; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803ED624; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803ED628; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803ED630; // type:object size:0x8 scope:local align:8 data:double +@1884 = .sdata2:0x803ED638; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803ED63C; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803ED640; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata2:0x803ED644; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803ED648; // type:object size:0x4 scope:local align:4 data:float +@2299 = .sdata2:0x803ED64C; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803ED650; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803ED654; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803ED658; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803ED65C; // type:object size:0x4 scope:local align:4 data:float +@2309 = .sdata2:0x803ED660; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x803ED664; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x803ED668; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x803ED66C; // type:object size:0x4 scope:local align:4 data:float +@952 = .sdata2:0x803ED670; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803ED678; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803ED67C; // type:object size:0x4 scope:local align:4 data:float +@1260 = .sdata2:0x803ED680; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803ED684; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803ED688; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803ED68C; // type:object size:0x4 scope:local align:4 data:float +@1429 = .sdata2:0x803ED690; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803ED698; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803ED69C; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803ED6A0; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803ED6A4; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803ED6A8; // type:object size:0x4 scope:local align:4 data:float +@2283 = .sdata2:0x803ED6AC; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803ED6B0; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803ED6B4; // type:object size:0x4 scope:local align:4 data:float +@2286 = .sdata2:0x803ED6B8; // type:object size:0x4 scope:local align:4 data:float +@2427 = .sdata2:0x803ED6BC; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata2:0x803ED6C0; // type:object size:0x4 scope:local align:4 data:float +@3007 = .sdata2:0x803ED6C4; // type:object size:0x4 scope:local align:4 data:float +@3105 = .sdata2:0x803ED6C8; // type:object size:0x4 scope:local align:4 data:float +@3107 = .sdata2:0x803ED6CC; // type:object size:0x4 scope:local align:4 data:float +@3115 = .sdata2:0x803ED6D0; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata2:0x803ED6D4; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x803ED6D8; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803ED6DC; // type:object size:0x4 scope:local align:4 data:float +@3139 = .sdata2:0x803ED6E0; // type:object size:0x4 scope:local align:4 data:float +@3365 = .sdata2:0x803ED6E4; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x803ED6E8; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata2:0x803ED6EC; // type:object size:0x4 scope:local align:4 data:float +@3368 = .sdata2:0x803ED6F0; // type:object size:0x4 scope:local align:4 data:float +@3370 = .sdata2:0x803ED6F8; // type:object size:0x8 scope:local align:8 data:double +@1302 = .sdata2:0x803ED700; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata2:0x803ED704; // type:object size:0x4 scope:local align:4 data:float +@1305 = .sdata2:0x803ED708; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803ED70C; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803ED710; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803ED718; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803ED720; // type:object size:0x4 scope:local align:4 data:float +@710 = .sdata2:0x803ED724; // type:object size:0x4 scope:local align:4 data:float +@711 = .sdata2:0x803ED728; // type:object size:0x4 scope:local align:4 data:float +@712 = .sdata2:0x803ED72C; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x803ED730; // type:object size:0x4 scope:local align:4 data:float +@714 = .sdata2:0x803ED734; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803ED738; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803ED73C; // type:object size:0x4 scope:local align:4 data:float +@752 = .sdata2:0x803ED740; // type:object size:0x4 scope:local align:4 data:float +@753 = .sdata2:0x803ED744; // type:object size:0x4 scope:local align:4 data:float +@754 = .sdata2:0x803ED748; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803ED750; // type:object size:0x8 scope:local align:8 data:double +@809 = .sdata2:0x803ED758; // type:object size:0x4 scope:local align:4 data:float +@810 = .sdata2:0x803ED75C; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803ED760; // type:object size:0x4 scope:local align:4 data:float +@875 = .sdata2:0x803ED764; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803ED768; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803ED76C; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803ED770; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803ED774; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803ED778; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803ED77C; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803ED780; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803ED784; // type:object size:0x4 scope:local align:4 data:float +@1166 = .sdata2:0x803ED788; // type:object size:0x4 scope:local align:4 data:float +@1167 = .sdata2:0x803ED78C; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803ED790; // type:object size:0x4 scope:local align:4 data:float +@1169 = .sdata2:0x803ED794; // type:object size:0x4 scope:local align:4 data:float +@1171 = .sdata2:0x803ED798; // type:object size:0x8 scope:local align:8 data:double +@1051 = .sdata2:0x803ED7A0; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803ED7A4; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803ED7A8; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803ED7AC; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803ED7B0; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803ED7B4; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x803ED7B8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803ED7BC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803ED7C0; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803ED7C4; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803ED7C8; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803ED7CC; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803ED7D0; // type:object size:0x8 scope:local align:8 data:double +@943 = .sdata2:0x803ED7D8; // type:object size:0x8 scope:local align:8 data:double +@807 = .sdata2:0x803ED7E0; // type:object size:0x4 scope:local align:4 data:float +@808 = .sdata2:0x803ED7E4; // type:object size:0x4 scope:local align:4 data:float +@811 = .sdata2:0x803ED7E8; // type:object size:0x8 scope:local align:8 data:double +@1338 = .sdata2:0x803ED7F0; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803ED7F4; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803ED7F8; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803ED7FC; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803ED800; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803ED804; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803ED808; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803ED80C; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803ED810; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803ED814; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803ED818; // type:object size:0x8 scope:local align:8 data:double +@1646 = .sdata2:0x803ED820; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803ED824; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803ED828; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803ED82C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803ED830; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata2:0x803ED834; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803ED838; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803ED83C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803ED840; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803ED844; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803ED848; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803ED84C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803ED850; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803ED854; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803ED858; // type:object size:0x4 scope:local align:4 data:float +@932 = .sdata2:0x803ED85C; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803ED860; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803ED864; // type:object size:0x4 scope:local align:4 data:float +@989 = .sdata2:0x803ED868; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803ED870; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803ED874; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x803ED878; // type:object size:0x8 scope:local align:8 data:double +@1457 = .sdata2:0x803ED880; // type:object size:0x8 scope:local align:8 data:double +@1577 = .sdata2:0x803ED888; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803ED88C; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803ED890; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803ED894; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803ED898; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803ED89C; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803ED8A0; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803ED8A4; // type:object size:0x4 scope:local align:4 data:float +@2499 = .sdata2:0x803ED8A8; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803ED8AC; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803ED8B0; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x803ED8B4; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x803ED8B8; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x803ED8BC; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x803ED8C0; // type:object size:0x4 scope:local align:4 data:float +@3268 = .sdata2:0x803ED8C4; // type:object size:0x4 scope:local align:4 data:float +@3270 = .sdata2:0x803ED8C8; // type:object size:0x8 scope:local align:8 data:double +@3487 = .sdata2:0x803ED8D0; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x803ED8D4; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x803ED8D8; // type:object size:0x8 scope:local align:8 data:double +@3789 = .sdata2:0x803ED8E0; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x803ED8E4; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x803ED8E8; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x803ED8EC; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x803ED8F0; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x803ED8F4; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x803ED8F8; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x803ED8FC; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x803ED900; // type:object size:0x4 scope:local align:4 data:float +@4393 = .sdata2:0x803ED904; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x803ED908; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x803ED90C; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x803ED910; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803ED918; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803ED91C; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803ED920; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803ED924; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803ED928; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803ED92C; // type:object size:0x4 scope:local align:4 data:float +@2253 = .sdata2:0x803ED930; // type:object size:0x4 scope:local align:4 data:float +@2254 = .sdata2:0x803ED934; // type:object size:0x4 scope:local align:4 data:float +@2255 = .sdata2:0x803ED938; // type:object size:0x4 scope:local align:4 data:float +@2273 = .sdata2:0x803ED940; // type:object size:0x8 scope:local align:8 data:double +@2519 = .sdata2:0x803ED948; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803ED94C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803ED950; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803ED954; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803ED958; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803ED95C; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x803ED960; // type:object size:0x4 scope:local align:4 data:float +@2780 = .sdata2:0x803ED964; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803ED968; // type:object size:0x8 scope:local align:8 data:double +@1392 = .sdata2:0x803ED970; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803ED974; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803ED978; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803ED980; // type:object size:0x8 scope:local align:8 data:double +@1422 = .sdata2:0x803ED988; // type:object size:0x4 scope:local align:4 data:float +@1742 = .sdata2:0x803ED98C; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x803ED990; // type:object size:0x4 scope:local align:4 data:float +@2520 = .sdata2:0x803ED994; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803ED998; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x803ED99C; // type:object size:0x4 scope:local align:4 data:float +@609 = .sdata2:0x803ED9A0; // type:object size:0x4 scope:local align:4 data:float +@610 = .sdata2:0x803ED9A4; // type:object size:0x4 scope:local align:4 data:float +@611 = .sdata2:0x803ED9A8; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803ED9AC; // type:object size:0x4 scope:local align:4 data:float +@614 = .sdata2:0x803ED9B0; // type:object size:0x8 scope:local align:8 data:double +@804 = .sdata2:0x803ED9B8; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803ED9BC; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803ED9C0; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803ED9C8; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803ED9CC; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803ED9D0; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803ED9D4; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803ED9D8; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803ED9DC; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803ED9E0; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803ED9E8; // type:object size:0x8 scope:local align:4 data:4byte +@772 = .sdata2:0x803ED9F0; // type:object size:0x4 scope:local align:4 data:4byte +@775 = .sdata2:0x803ED9F4; // type:object size:0x4 scope:local align:4 data:4byte +@778 = .sdata2:0x803ED9F8; // type:object size:0x4 scope:local align:4 data:4byte +@781 = .sdata2:0x803ED9FC; // type:object size:0x4 scope:local align:4 data:4byte +@861 = .sdata2:0x803EDA00; // type:object size:0x4 scope:local align:4 data:float +@862 = .sdata2:0x803EDA04; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EDA08; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EDA10; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EDA14; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EDA18; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EDA1C; // type:object size:0x4 scope:local align:4 data:float +@1516 = .sdata2:0x803EDA20; // type:object size:0x8 scope:local align:8 data:double +@1523 = .sdata2:0x803EDA28; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x803EDA30; // type:object size:0x8 scope:local align:8 data:double +@1525 = .sdata2:0x803EDA38; // type:object size:0x8 scope:local align:8 data:double +@1545 = .sdata2:0x803EDA40; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803EDA44; // type:object size:0x4 scope:local align:4 data:float +@1669 = .sdata2:0x803EDA48; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EDA4C; // type:object size:0x4 scope:local align:4 data:float +@2155 = .sdata2:0x803EDA50; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803EDA54; // type:object size:0x4 scope:local align:4 data:float +@2248 = .sdata2:0x803EDA58; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EDA5C; // type:object size:0x4 scope:local align:4 data:float +@2289 = .sdata2:0x803EDA60; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EDA64; // type:object size:0x4 scope:local align:4 data:float +@1625 = .sdata2:0x803EDA68; // type:object size:0x4 scope:local align:4 data:float +@1626 = .sdata2:0x803EDA6C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803EDA70; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EDA74; // type:object size:0x4 scope:local align:4 data:float +@675 = .sdata2:0x803EDA78; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EDA80; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803EDA84; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EDA88; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803EDA90; // type:object size:0x4 scope:local align:4 data:float +@1176 = .sdata2:0x803EDA94; // type:object size:0x4 scope:local align:4 data:float +@1188 = .sdata2:0x803EDA98; // type:object size:0x4 scope:local align:4 data:float +@1190 = .sdata2:0x803EDA9C; // type:object size:0x4 scope:local align:4 data:float +@1193 = .sdata2:0x803EDAA0; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EDAA8; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EDAAC; // type:object size:0x4 scope:local align:4 data:float +@1492 = .sdata2:0x803EDAB0; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EDAB4; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EDAB8; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EDABC; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EDAC0; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EDAC4; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803EDAC8; // type:object size:0x4 scope:local align:4 data:float +@1583 = .sdata2:0x803EDACC; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EDAD0; // type:object size:0x8 scope:local align:8 data:double +@1599 = .sdata2:0x803EDAD8; // type:object size:0x4 scope:local align:4 data:float +@1600 = .sdata2:0x803EDAE0; // type:object size:0x8 scope:local align:8 data:double +@1601 = .sdata2:0x803EDAE8; // type:object size:0x8 scope:local align:8 data:double +@1681 = .sdata2:0x803EDAF0; // type:object size:0x4 scope:local align:4 data:float +@1682 = .sdata2:0x803EDAF4; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803EDAF8; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EDAFC; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EDB00; // type:object size:0x4 scope:local align:4 data:float +@2230 = .sdata2:0x803EDB04; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EDB08; // type:object size:0x4 scope:local align:4 data:float +@1146 = .sdata2:0x803EDB0C; // type:object size:0x4 scope:local align:4 data:float +@1148 = .sdata2:0x803EDB10; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803EDB14; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803EDB18; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803EDB1C; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803EDB20; // type:object size:0x4 scope:local align:4 data:float +@1343 = .sdata2:0x803EDB24; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803EDB28; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EDB2C; // type:object size:0x4 scope:local align:4 data:float +@1760 = .sdata2:0x803EDB30; // type:object size:0x8 scope:local align:8 data:double +@1761 = .sdata2:0x803EDB38; // type:object size:0x8 scope:local align:8 data:double +@626 = .sdata2:0x803EDB40; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EDB44; // type:object size:0x4 scope:local align:4 data:float +@645 = .sdata2:0x803EDB48; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x803EDB4C; // type:object size:0x4 scope:local align:4 data:float +@1981 = .sdata2:0x803EDB50; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EDB54; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803EDB58; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803EDB60; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EDB68; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x803EDB70; // type:object size:0x8 scope:local align:8 data:double +@1015 = .sdata2:0x803EDB78; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803EDB7C; // type:object size:0x4 scope:local align:4 data:float +@1159 = .sdata2:0x803EDB80; // type:object size:0x4 scope:local align:4 data:float +@2269 = .sdata2:0x803EDB84; // type:object size:0x4 scope:local align:4 data:float +@2291 = .sdata2:0x803EDB88; // type:object size:0x4 scope:local align:4 data:float +@2292 = .sdata2:0x803EDB8C; // type:object size:0x4 scope:local align:4 data:float +@2294 = .sdata2:0x803EDB90; // type:object size:0x8 scope:local align:8 data:double +@1567 = .sdata2:0x803EDB98; // type:object size:0x4 scope:local align:4 data:float +@1605 = .sdata2:0x803EDB9C; // type:object size:0x4 scope:local align:4 data:float +@1606 = .sdata2:0x803EDBA0; // type:object size:0x8 scope:local align:8 data:double +@1607 = .sdata2:0x803EDBA8; // type:object size:0x8 scope:local align:8 data:double +@1664 = .sdata2:0x803EDBB0; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EDBB4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803EDBB8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EDBBC; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EDBC0; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EDBC4; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EDBC8; // type:object size:0x4 scope:local align:4 data:float +@2437 = .sdata2:0x803EDBCC; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803EDBD0; // type:object size:0x4 scope:local align:4 data:float +@2501 = .sdata2:0x803EDBD4; // type:object size:0x4 scope:local align:4 data:float +@2502 = .sdata2:0x803EDBD8; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x803EDBDC; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x803EDBE0; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x803EDBE4; // type:object size:0x4 scope:local align:4 data:float +@2889 = .sdata2:0x803EDBE8; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EDBEC; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803EDBF0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EDBF8; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EDBFC; // type:object size:0x4 scope:local align:4 data:float +@1534 = .sdata2:0x803EDC00; // type:object size:0x4 scope:local align:4 data:float +@1535 = .sdata2:0x803EDC04; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EDC08; // type:object size:0x4 scope:local align:4 data:float +@1537 = .sdata2:0x803EDC0C; // type:object size:0x4 scope:local align:4 data:float +@1540 = .sdata2:0x803EDC10; // type:object size:0x4 scope:local align:4 data:float +@1541 = .sdata2:0x803EDC14; // type:object size:0x4 scope:local align:4 data:float +@1542 = .sdata2:0x803EDC18; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803EDC1C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EDC20; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EDC24; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EDC28; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EDC2C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EDC30; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EDC34; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EDC38; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EDC40; // type:object size:0x8 scope:local align:8 data:double +@2201 = .sdata2:0x803EDC48; // type:object size:0x4 scope:local align:4 data:float +@2202 = .sdata2:0x803EDC4C; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803EDC50; // type:object size:0x8 scope:local align:8 data:double +@1249 = .sdata2:0x803EDC58; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EDC60; // type:object size:0x8 scope:local align:8 data:double +@1256 = .sdata2:0x803EDC68; // type:object size:0x8 scope:local align:8 data:double +@1453 = .sdata2:0x803EDC70; // type:object size:0x4 scope:local align:4 data:float +@1843 = .sdata2:0x803EDC74; // type:object size:0x4 scope:local align:4 data:float +@2165 = .sdata2:0x803EDC78; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803EDC7C; // type:object size:0x4 scope:local align:4 data:float +@967 = .sdata2:0x803EDC80; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EDC84; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803EDC88; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EDC8C; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EDC90; // type:object size:0x4 scope:local align:4 data:float +@1308 = .sdata2:0x803EDC94; // type:object size:0x4 scope:local align:4 data:float +@1331 = .sdata2:0x803EDC98; // type:object size:0x4 scope:local align:4 data:float +@1332 = .sdata2:0x803EDC9C; // type:object size:0x4 scope:local align:4 data:float +@1333 = .sdata2:0x803EDCA0; // type:object size:0x4 scope:local align:4 data:float +@1334 = .sdata2:0x803EDCA4; // type:object size:0x4 scope:local align:4 data:float +@1336 = .sdata2:0x803EDCA8; // type:object size:0x8 scope:local align:8 data:double +@895 = .sdata2:0x803EDCB0; // type:object size:0x4 scope:local align:4 data:float +@897 = .sdata2:0x803EDCB4; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EDCB8; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EDCBC; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803EDCC0; // type:object size:0x4 scope:local align:4 data:float +@966 = .sdata2:0x803EDCC4; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EDCC8; // type:object size:0x4 scope:local align:4 data:float +@970 = .sdata2:0x803EDCCC; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EDCD0; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EDCD4; // type:object size:0x4 scope:local align:4 data:float +@1433 = .sdata2:0x803EDCD8; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EDCDC; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803EDCE0; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EDCE4; // type:object size:0x4 scope:local align:4 data:float +@1437 = .sdata2:0x803EDCE8; // type:object size:0x8 scope:local align:8 data:double +@1438 = .sdata2:0x803EDCF0; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EDCF8; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EDCFC; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EDD00; // type:object size:0x4 scope:local align:4 data:float +@638 = .sdata2:0x803EDD08; // type:object size:0x4 scope:local align:4 data:float +@680 = .sdata2:0x803EDD10; // type:object size:0x8 scope:local align:8 data:double +@681 = .sdata2:0x803EDD18; // type:object size:0x8 scope:local align:8 data:double +@682 = .sdata2:0x803EDD20; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EDD28; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EDD2C; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EDD30; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EDD34; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803EDD38; // type:object size:0x4 scope:local align:4 data:float +@1604 = .sdata2:0x803EDD3C; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EDD40; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EDD44; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803EDD48; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EDD4C; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EDD50; // type:object size:0x8 scope:local align:8 data:double +@2016 = .sdata2:0x803EDD58; // type:object size:0x8 scope:local align:8 data:double +@2036 = .sdata2:0x803EDD60; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EDD68; // type:object size:0x8 scope:local align:8 data:double +@2081 = .sdata2:0x803EDD70; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803EDD74; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EDD78; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803EDD7C; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803EDD80; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EDD84; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EDD88; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EDD8C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EDD90; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803EDD94; // type:object size:0x4 scope:local align:4 data:float +@2767 = .sdata2:0x803EDD98; // type:object size:0x4 scope:local align:4 data:float +@2899 = .sdata2:0x803EDD9C; // type:object size:0x4 scope:local align:4 data:float +@3078 = .sdata2:0x803EDDA0; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803EDDA4; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803EDDA8; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x803EDDAC; // type:object size:0x4 scope:local align:4 data:float +@1112 = .sdata2:0x803EDDB0; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803EDDB4; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803EDDB8; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803EDDBC; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x803EDDC0; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x803EDDC4; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EDDC8; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EDDCC; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EDDD0; // type:object size:0x8 scope:local align:8 data:double +@1722 = .sdata2:0x803EDDD8; // type:object size:0x8 scope:local align:8 data:double +@1723 = .sdata2:0x803EDDE0; // type:object size:0x4 scope:local align:4 data:float +@1809 = .sdata2:0x803EDDE4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EDDE8; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EDDF0; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EDDF4; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EDDF8; // type:object size:0x8 scope:local align:8 data:double +@1749 = .sdata2:0x803EDE00; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EDE04; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EDE08; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803EDE10; // type:object size:0x8 scope:local align:8 data:double +@2332 = .sdata2:0x803EDE18; // type:object size:0x4 scope:local align:4 data:float +@2333 = .sdata2:0x803EDE1C; // type:object size:0x4 scope:local align:4 data:float +@2334 = .sdata2:0x803EDE20; // type:object size:0x4 scope:local align:4 data:float +@2335 = .sdata2:0x803EDE24; // type:object size:0x4 scope:local align:4 data:float +@2336 = .sdata2:0x803EDE28; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803EDE2C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803EDE30; // type:object size:0x4 scope:local align:4 data:float +@2387 = .sdata2:0x803EDE34; // type:object size:0x4 scope:local align:4 data:float +@2388 = .sdata2:0x803EDE38; // type:object size:0x4 scope:local align:4 data:float +@2614 = .sdata2:0x803EDE3C; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803EDE40; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x803EDE44; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803EDE48; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803EDE50; // type:object size:0x4 scope:local align:4 data:float +@1319 = .sdata2:0x803EDE54; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803EDE58; // type:object size:0x4 scope:local align:4 data:float +@1321 = .sdata2:0x803EDE60; // type:object size:0x8 scope:local align:8 data:double +@1322 = .sdata2:0x803EDE68; // type:object size:0x8 scope:local align:8 data:double +@3137 = .sdata2:0x803EDE70; // type:object size:0x4 scope:local align:4 data:float +@3152 = .sdata2:0x803EDE74; // type:object size:0x4 scope:local align:4 data:float +@3153 = .sdata2:0x803EDE78; // type:object size:0x4 scope:local align:4 data:float +@3228 = .sdata2:0x803EDE7C; // type:object size:0x4 scope:local align:4 data:float +@3229 = .sdata2:0x803EDE80; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata2:0x803EDE84; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x803EDE88; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803EDE90; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803EDE94; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803EDE98; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803EDE9C; // type:object size:0x4 scope:local align:4 data:float +@743 = .sdata2:0x803EDEA0; // type:object size:0x4 scope:local align:4 data:float +@438 = .sdata2:0x803EDEA8; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EDEAC; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x803EDEB0; // type:object size:0x4 scope:local align:4 data:float +@1673 = .sdata2:0x803EDEB8; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EDEBC; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EDEC0; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803EDEC8; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803EDED0; // type:object size:0x8 scope:local align:8 data:double +@2047 = .sdata2:0x803EDED8; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803EDEDC; // type:object size:0x4 scope:local align:4 data:float +@1419 = .sdata2:0x803EDEE0; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EDEE4; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EDEE8; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EDEEC; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EDEF0; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EDEF4; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EDEF8; // type:object size:0x8 scope:local align:8 data:double +@1914 = .sdata2:0x803EDF00; // type:object size:0x8 scope:local align:8 data:double +@1950 = .sdata2:0x803EDF08; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EDF0C; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EDF10; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EDF14; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EDF18; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EDF20; // type:object size:0x8 scope:local align:8 data:double +@2101 = .sdata2:0x803EDF28; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803EDF2C; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EDF30; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EDF38; // type:object size:0x8 scope:local align:8 data:double +@1512 = .sdata2:0x803EDF40; // type:object size:0x8 scope:local align:8 data:double +@1513 = .sdata2:0x803EDF48; // type:object size:0x4 scope:local align:4 data:float +@1514 = .sdata2:0x803EDF4C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x803EDF50; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803EDF54; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EDF58; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EDF5C; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EDF60; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EDF64; // type:object size:0x4 scope:local align:4 data:float +@1696 = .sdata2:0x803EDF68; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EDF6C; // type:object size:0x4 scope:local align:4 data:float +@1698 = .sdata2:0x803EDF70; // type:object size:0x4 scope:local align:4 data:float +@1699 = .sdata2:0x803EDF74; // type:object size:0x4 scope:local align:4 data:float +@1701 = .sdata2:0x803EDF78; // type:object size:0x8 scope:local align:8 data:double +@1203 = .sdata2:0x803EDF80; // type:object size:0x4 scope:local align:4 data:float +@1246 = .sdata2:0x803EDF84; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EDF88; // type:object size:0x4 scope:local align:4 data:float +@1273 = .sdata2:0x803EDF8C; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x803EDF90; // type:object size:0x4 scope:local align:4 data:float +@1324 = .sdata2:0x803EDF94; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EDF98; // type:object size:0x8 scope:local align:8 data:double +@1326 = .sdata2:0x803EDFA0; // type:object size:0x8 scope:local align:8 data:double +@1328 = .sdata2:0x803EDFA8; // type:object size:0x8 scope:local align:8 data:double +@1359 = .sdata2:0x803EDFB0; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EDFB8; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EDFBC; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EDFC0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EDFC8; // type:object size:0x8 scope:local align:8 data:double +@2584 = .sdata2:0x803EDFD0; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803EDFD4; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803EDFD8; // type:object size:0x4 scope:local align:4 data:float +@2587 = .sdata2:0x803EDFDC; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803EDFE0; // type:object size:0x4 scope:local align:4 data:float +@2589 = .sdata2:0x803EDFE4; // type:object size:0x4 scope:local align:4 data:float +@2590 = .sdata2:0x803EDFE8; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EDFEC; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EDFF0; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803EDFF8; // type:object size:0x8 scope:local align:8 data:double +@2594 = .sdata2:0x803EE000; // type:object size:0x8 scope:local align:8 data:double +@2595 = .sdata2:0x803EE008; // type:object size:0x4 scope:local align:4 data:float +@2596 = .sdata2:0x803EE00C; // type:object size:0x4 scope:local align:4 data:float +@2758 = .sdata2:0x803EE010; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EE014; // type:object size:0x4 scope:local align:4 data:float +@1690 = .sdata2:0x803EE018; // type:object size:0x4 scope:local align:4 data:float +@1691 = .sdata2:0x803EE01C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EE020; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EE024; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EE028; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EE02C; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EE030; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x803EE038; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803EE03C; // type:object size:0x4 scope:local align:4 data:float +@2102 = .sdata2:0x803EE040; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EE044; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803EE048; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EE050; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EE054; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EE058; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EE060; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EE064; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EE068; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EE06C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EE070; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EE074; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EE078; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EE07C; // type:object size:0x4 scope:local align:4 data:float +@1508 = .sdata2:0x803EE080; // type:object size:0x8 scope:local align:8 data:double +@1811 = .sdata2:0x803EE088; // type:object size:0x4 scope:local align:4 data:float +@1823 = .sdata2:0x803EE08C; // type:object size:0x4 scope:local align:4 data:float +@1824 = .sdata2:0x803EE090; // type:object size:0x4 scope:local align:4 data:float +@1825 = .sdata2:0x803EE094; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803EE098; // type:object size:0x8 scope:local align:8 data:double +@1872 = .sdata2:0x803EE0A0; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803EE0A4; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EE0A8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EE0AC; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EE0B0; // type:object size:0x4 scope:local align:4 data:float +@2069 = .sdata2:0x803EE0B4; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803EE0B8; // type:object size:0x4 scope:local align:4 data:float +@2290 = .sdata2:0x803EE0BC; // type:object size:0x4 scope:local align:4 data:float +@2405 = .sdata2:0x803EE0C0; // type:object size:0x4 scope:local align:4 data:float +@2684 = .sdata2:0x803EE0C4; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803EE0C8; // type:object size:0x4 scope:local align:4 data:float +@1270 = .sdata2:0x803EE0D0; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803EE0D4; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803EE0D8; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803EE0DC; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803EE0E0; // type:object size:0x8 scope:local align:8 data:double +@1376 = .sdata2:0x803EE0E8; // type:object size:0x8 scope:local align:8 data:double +@1377 = .sdata2:0x803EE0F0; // type:object size:0x8 scope:local align:8 data:double +@1378 = .sdata2:0x803EE0F8; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EE0FC; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EE100; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EE104; // type:object size:0x4 scope:local align:4 data:float +@1793 = .sdata2:0x803EE108; // type:object size:0x4 scope:local align:4 data:float +@1794 = .sdata2:0x803EE10C; // type:object size:0x4 scope:local align:4 data:float +@1795 = .sdata2:0x803EE110; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803EE118; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EE120; // type:object size:0x8 scope:local align:8 data:double +@1813 = .sdata2:0x803EE128; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803EE12C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EE130; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EE138; // type:object size:0x8 scope:local align:8 data:double +@2025 = .sdata2:0x803EE140; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803EE144; // type:object size:0x4 scope:local align:4 data:float +@2250 = .sdata2:0x803EE148; // type:object size:0x4 scope:local align:4 data:float +@2251 = .sdata2:0x803EE14C; // type:object size:0x4 scope:local align:4 data:float +@2252 = .sdata2:0x803EE150; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x803EE154; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EE158; // type:object size:0x4 scope:local align:4 data:float +@2459 = .sdata2:0x803EE15C; // type:object size:0x4 scope:local align:4 data:float +@2460 = .sdata2:0x803EE160; // type:object size:0x4 scope:local align:4 data:float +@2461 = .sdata2:0x803EE164; // type:object size:0x4 scope:local align:4 data:float +@2462 = .sdata2:0x803EE168; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803EE16C; // type:object size:0x4 scope:local align:4 data:float +@3056 = .sdata2:0x803EE170; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x803EE174; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803EE178; // type:object size:0x4 scope:local align:4 data:float +@3289 = .sdata2:0x803EE17C; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x803EE180; // type:object size:0x4 scope:local align:4 data:float +@3291 = .sdata2:0x803EE184; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x803EE188; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x803EE18C; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x803EE190; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x803EE194; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x803EE198; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x803EE19C; // type:object size:0x4 scope:local align:4 data:float +@4236 = .sdata2:0x803EE1A0; // type:object size:0x4 scope:local align:4 data:float +@4237 = .sdata2:0x803EE1A4; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EE1A8; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803EE1AC; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EE1B0; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EE1B4; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EE1B8; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EE1BC; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EE1C0; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EE1C4; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803EE1C8; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EE1CC; // type:object size:0x4 scope:local align:4 data:float +@2013 = .sdata2:0x803EE1D0; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EE1D4; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EE1D8; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803EE1E0; // type:object size:0x8 scope:local align:8 data:double +@2342 = .sdata2:0x803EE1E8; // type:object size:0x4 scope:local align:4 data:float +@2343 = .sdata2:0x803EE1EC; // type:object size:0x4 scope:local align:4 data:float +@2344 = .sdata2:0x803EE1F0; // type:object size:0x4 scope:local align:4 data:float +@1084 = .sdata2:0x803EE1F8; // type:object size:0x4 scope:local align:4 data:float +@1085 = .sdata2:0x803EE1FC; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EE200; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x803EE204; // type:object size:0x4 scope:local align:4 data:float +@1089 = .sdata2:0x803EE208; // type:object size:0x8 scope:local align:8 data:double +@1167 = .sdata2:0x803EE210; // type:object size:0x4 scope:local align:4 data:float +@1168 = .sdata2:0x803EE218; // type:object size:0x8 scope:local align:8 data:double +@1169 = .sdata2:0x803EE220; // type:object size:0x8 scope:local align:8 data:double +@1170 = .sdata2:0x803EE228; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EE230; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803EE234; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803EE238; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EE23C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EE240; // type:object size:0x4 scope:local align:4 data:float +@2351 = .sdata2:0x803EE248; // type:object size:0x8 scope:local align:8 data:double +@2352 = .sdata2:0x803EE250; // type:object size:0x8 scope:local align:8 data:double +@2353 = .sdata2:0x803EE258; // type:object size:0x4 scope:local align:4 data:float +@2354 = .sdata2:0x803EE25C; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EE260; // type:object size:0x4 scope:local align:4 data:float +@2356 = .sdata2:0x803EE264; // type:object size:0x4 scope:local align:4 data:float +@2357 = .sdata2:0x803EE268; // type:object size:0x4 scope:local align:4 data:float +@2358 = .sdata2:0x803EE26C; // type:object size:0x4 scope:local align:4 data:float +@2359 = .sdata2:0x803EE270; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x803EE274; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x803EE278; // type:object size:0x4 scope:local align:4 data:float +@2362 = .sdata2:0x803EE27C; // type:object size:0x4 scope:local align:4 data:float +@2363 = .sdata2:0x803EE280; // type:object size:0x4 scope:local align:4 data:float +@2364 = .sdata2:0x803EE284; // type:object size:0x4 scope:local align:4 data:float +@2365 = .sdata2:0x803EE288; // type:object size:0x4 scope:local align:4 data:float +@2366 = .sdata2:0x803EE28C; // type:object size:0x4 scope:local align:4 data:float +@2367 = .sdata2:0x803EE290; // type:object size:0x4 scope:local align:4 data:float +@2368 = .sdata2:0x803EE294; // type:object size:0x4 scope:local align:4 data:float +@2370 = .sdata2:0x803EE298; // type:object size:0x8 scope:local align:8 data:double +@1530 = .sdata2:0x803EE2A0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EE2A4; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x803EE2A8; // type:object size:0x4 scope:local align:4 data:float +@1568 = .sdata2:0x803EE2AC; // type:object size:0x4 scope:local align:4 data:float +@1762 = .sdata2:0x803EE2B0; // type:object size:0x8 scope:local align:8 data:double +@1763 = .sdata2:0x803EE2B8; // type:object size:0x8 scope:local align:8 data:double +@1764 = .sdata2:0x803EE2C0; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EE2C4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EE2C8; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EE2CC; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EE2D0; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EE2D8; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EE2E0; // type:object size:0x8 scope:local align:8 data:double +@1433 = .sdata2:0x803EE2E8; // type:object size:0x8 scope:local align:8 data:double +@1434 = .sdata2:0x803EE2F0; // type:object size:0x4 scope:local align:4 data:float +@1435 = .sdata2:0x803EE2F4; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EE2F8; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EE2FC; // type:object size:0x4 scope:local align:4 data:float +@1444 = .sdata2:0x803EE300; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EE304; // type:object size:0x4 scope:local align:4 data:float +@1447 = .sdata2:0x803EE308; // type:object size:0x8 scope:local align:8 data:double +@1476 = .sdata2:0x803EE310; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EE314; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803EE318; // type:object size:0x4 scope:local align:4 data:float +@1611 = .sdata2:0x803EE31C; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803EE320; // type:object size:0x4 scope:local align:4 data:float +@1613 = .sdata2:0x803EE324; // type:object size:0x4 scope:local align:4 data:float +@1614 = .sdata2:0x803EE328; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803EE330; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803EE334; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EE338; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EE33C; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EE340; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EE348; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x803EE350; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x803EE358; // type:object size:0x8 scope:local align:8 data:double +@1188 = .sdata2:0x803EE360; // type:object size:0x8 scope:local align:8 data:double +@1189 = .sdata2:0x803EE368; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EE370; // type:object size:0x4 scope:local align:4 data:float +@1393 = .sdata2:0x803EE374; // type:object size:0x4 scope:local align:4 data:float +@1394 = .sdata2:0x803EE378; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EE37C; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EE380; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EE384; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EE388; // type:object size:0x4 scope:local align:4 data:float +@1506 = .sdata2:0x803EE38C; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EE390; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EE398; // type:object size:0x8 scope:local align:8 data:double +@1532 = .sdata2:0x803EE3A0; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x803EE3A8; // type:object size:0x4 scope:local align:4 data:float +@1230 = .sdata2:0x803EE3AC; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803EE3B0; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EE3B8; // type:object size:0x4 scope:local align:4 data:float +@1450 = .sdata2:0x803EE3BC; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EE3C0; // type:object size:0x4 scope:local align:4 data:float +@1452 = .sdata2:0x803EE3C4; // type:object size:0x4 scope:local align:4 data:float +@1453 = .sdata2:0x803EE3C8; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EE3D0; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x803EE3D8; // type:object size:0x4 scope:local align:4 data:float +@1462 = .sdata2:0x803EE3E0; // type:object size:0x8 scope:local align:8 data:double +@1463 = .sdata2:0x803EE3E8; // type:object size:0x8 scope:local align:8 data:double +@1531 = .sdata2:0x803EE3F0; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x803EE3F4; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EE3F8; // type:object size:0x4 scope:local align:4 data:4byte +@1763 = .sdata2:0x803EE3FC; // type:object size:0x4 scope:local align:4 data:float +@1764 = .sdata2:0x803EE400; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EE404; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EE408; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EE40C; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EE410; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EE414; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EE418; // type:object size:0x4 scope:local align:4 data:float +@1633 = .sdata2:0x803EE420; // type:object size:0x4 scope:local align:4 data:float +@1645 = .sdata2:0x803EE424; // type:object size:0x4 scope:local align:4 data:float +@1707 = .sdata2:0x803EE428; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EE42C; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EE430; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803EE434; // type:object size:0x4 scope:local align:4 data:float +@1769 = .sdata2:0x803EE438; // type:object size:0x4 scope:local align:4 data:float +@1770 = .sdata2:0x803EE43C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EE440; // type:object size:0x8 scope:local align:8 data:double +@1093 = .sdata2:0x803EE448; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EE44C; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EE450; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EE454; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EE458; // type:object size:0x8 scope:local align:8 data:double +@1279 = .sdata2:0x803EE460; // type:object size:0x4 scope:local align:4 data:float +@1280 = .sdata2:0x803EE464; // type:object size:0x4 scope:local align:4 data:float +@1281 = .sdata2:0x803EE468; // type:object size:0x8 scope:local align:8 data:double +@1282 = .sdata2:0x803EE470; // type:object size:0x8 scope:local align:8 data:double +@1283 = .sdata2:0x803EE478; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803EE47C; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EE480; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EE484; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803EE488; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EE490; // type:object size:0x8 scope:local align:8 data:double +@1868 = .sdata2:0x803EE498; // type:object size:0x8 scope:local align:8 data:double +@1869 = .sdata2:0x803EE4A0; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EE4A4; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EE4A8; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EE4AC; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EE4B0; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803EE4B4; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803EE4B8; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803EE4BC; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803EE4C0; // type:object size:0x8 scope:local align:8 data:double +@1226 = .sdata2:0x803EE4C8; // type:object size:0x4 scope:local align:4 data:float +@1325 = .sdata2:0x803EE4CC; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EE4D0; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EE4D4; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EE4D8; // type:object size:0x4 scope:local align:4 data:float +@1496 = .sdata2:0x803EE4DC; // type:object size:0x4 scope:local align:4 data:float +@1497 = .sdata2:0x803EE4E0; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EE4E8; // type:object size:0x8 scope:local align:8 data:double +@1639 = .sdata2:0x803EE4F0; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803EE4F4; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803EE4F8; // type:object size:0x4 scope:local align:4 data:float +@1812 = .sdata2:0x803EE500; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EE504; // type:object size:0x4 scope:local align:4 data:float +@1881 = .sdata2:0x803EE508; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803EE50C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EE510; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803EE514; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803EE518; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EE520; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EE524; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EE528; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EE530; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EE534; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EE538; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EE53C; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EE540; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EE544; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EE548; // type:object size:0x8 scope:local align:8 data:double +@1994 = .sdata2:0x803EE550; // type:object size:0x8 scope:local align:8 data:double +@2178 = .sdata2:0x803EE558; // type:object size:0x4 scope:local align:4 data:float +@2179 = .sdata2:0x803EE55C; // type:object size:0x4 scope:local align:4 data:float +@2224 = .sdata2:0x803EE560; // type:object size:0x4 scope:local align:4 data:float +@2225 = .sdata2:0x803EE564; // type:object size:0x4 scope:local align:4 data:float +@2585 = .sdata2:0x803EE568; // type:object size:0x4 scope:local align:4 data:float +@2586 = .sdata2:0x803EE56C; // type:object size:0x4 scope:local align:4 data:float +@2588 = .sdata2:0x803EE570; // type:object size:0x8 scope:local align:8 data:double +@1121 = .sdata2:0x803EE578; // type:object size:0x4 scope:local align:4 data:float +@1122 = .sdata2:0x803EE57C; // type:object size:0x4 scope:local align:4 data:float +@1123 = .sdata2:0x803EE580; // type:object size:0x4 scope:local align:4 data:float +@1124 = .sdata2:0x803EE584; // type:object size:0x4 scope:local align:4 data:float +@1125 = .sdata2:0x803EE588; // type:object size:0x4 scope:local align:4 data:float +@1126 = .sdata2:0x803EE58C; // type:object size:0x4 scope:local align:4 data:float +@1127 = .sdata2:0x803EE590; // type:object size:0x4 scope:local align:4 data:float +@1129 = .sdata2:0x803EE598; // type:object size:0x8 scope:local align:8 data:double +@1150 = .sdata2:0x803EE5A0; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x803EE5A4; // type:object size:0x4 scope:local align:4 data:float +@1339 = .sdata2:0x803EE5A8; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x803EE5AC; // type:object size:0x4 scope:local align:4 data:float +@1341 = .sdata2:0x803EE5B0; // type:object size:0x4 scope:local align:4 data:float +@1342 = .sdata2:0x803EE5B4; // type:object size:0x4 scope:local align:4 data:float +@1810 = .sdata2:0x803EE5B8; // type:object size:0x4 scope:local align:4 data:float +@1879 = .sdata2:0x803EE5BC; // type:object size:0x4 scope:local align:4 data:float +@1880 = .sdata2:0x803EE5C0; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803EE5C8; // type:object size:0x8 scope:local align:8 data:double +@1887 = .sdata2:0x803EE5D0; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EE5D8; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EE5DC; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EE5E0; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EE5E4; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EE5E8; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803EE5EC; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803EE5F0; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803EE5F4; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EE5F8; // type:object size:0x4 scope:local align:4 data:float +@1411 = .sdata2:0x803EE5FC; // type:object size:0x4 scope:local align:4 data:float +@1412 = .sdata2:0x803EE600; // type:object size:0x4 scope:local align:4 data:float +@1413 = .sdata2:0x803EE604; // type:object size:0x4 scope:local align:4 data:float +@1414 = .sdata2:0x803EE608; // type:object size:0x4 scope:local align:4 data:float +@1415 = .sdata2:0x803EE60C; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EE610; // type:object size:0x8 scope:local align:8 data:double +@1509 = .sdata2:0x803EE618; // type:object size:0x4 scope:local align:4 data:float +@1510 = .sdata2:0x803EE61C; // type:object size:0x4 scope:local align:4 data:float +@1581 = .sdata2:0x803EE620; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EE624; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EE628; // type:object size:0x4 scope:local align:4 data:float +@1719 = .sdata2:0x803EE62C; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x803EE630; // type:object size:0x8 scope:local align:8 data:double +@1835 = .sdata2:0x803EE638; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EE640; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EE648; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803EE64C; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803EE650; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803EE654; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EE658; // type:object size:0x4 scope:local align:4 data:float +@1103 = .sdata2:0x803EE660; // type:object size:0x8 scope:local align:8 data:double +@1166 = .sdata2:0x803EE668; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EE670; // type:object size:0x4 scope:local align:4 data:float +@1504 = .sdata2:0x803EE678; // type:object size:0x8 scope:local align:8 data:double +@1505 = .sdata2:0x803EE680; // type:object size:0x8 scope:local align:8 data:double +@1506 = .sdata2:0x803EE688; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EE68C; // type:object size:0x4 scope:local align:4 data:float +@1572 = .sdata2:0x803EE690; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x803EE694; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803EE698; // type:object size:0x4 scope:local align:4 data:float +@1649 = .sdata2:0x803EE69C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EE6A0; // type:object size:0x4 scope:local align:4 data:float +@1651 = .sdata2:0x803EE6A4; // type:object size:0x4 scope:local align:4 data:float +@1652 = .sdata2:0x803EE6A8; // type:object size:0x4 scope:local align:4 data:float +@1653 = .sdata2:0x803EE6AC; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803EE6B0; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803EE6B4; // type:object size:0x4 scope:local align:4 data:float +@1657 = .sdata2:0x803EE6B8; // type:object size:0x8 scope:local align:8 data:double +@1593 = .sdata2:0x803EE6C0; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EE6C4; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803EE6C8; // type:object size:0x4 scope:local align:4 data:float +@1612 = .sdata2:0x803EE6D0; // type:object size:0x8 scope:local align:8 data:double +@2235 = .sdata2:0x803EE6D8; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803EE6E0; // type:object size:0x8 scope:local align:8 data:double +@2237 = .sdata2:0x803EE6E8; // type:object size:0x8 scope:local align:8 data:double +@2238 = .sdata2:0x803EE6F0; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803EE6F4; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EE6F8; // type:object size:0x8 scope:local align:8 data:double +@2538 = .sdata2:0x803EE700; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803EE704; // type:object size:0x4 scope:local align:4 data:float +@2572 = .sdata2:0x803EE708; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803EE70C; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803EE710; // type:object size:0x4 scope:local align:4 data:float +@3265 = .sdata2:0x803EE714; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x803EE718; // type:object size:0x4 scope:local align:4 data:float +@3328 = .sdata2:0x803EE71C; // type:object size:0x4 scope:local align:4 data:float +@3330 = .sdata2:0x803EE720; // type:object size:0x8 scope:local align:8 data:double +@3660 = .sdata2:0x803EE728; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x803EE72C; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803EE730; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x803EE734; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x803EE738; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x803EE73C; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata2:0x803EE740; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x803EE744; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x803EE748; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x803EE74C; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803EE750; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x803EE754; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x803EE758; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x803EE75C; // type:object size:0x4 scope:local align:4 data:float +@5075 = .sdata2:0x803EE760; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EE768; // type:object size:0x4 scope:local align:4 data:float +@439 = .sdata2:0x803EE76C; // type:object size:0x4 scope:local align:4 data:float +@440 = .sdata2:0x803EE770; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x803EE778; // type:object size:0x8 scope:local align:8 data:double +@1439 = .sdata2:0x803EE780; // type:object size:0x4 scope:local align:4 data:float +@1440 = .sdata2:0x803EE784; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EE788; // type:object size:0x8 scope:local align:8 data:double +@1585 = .sdata2:0x803EE790; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EE794; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EE798; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x803EE79C; // type:object size:0x4 scope:local align:4 data:float +@1592 = .sdata2:0x803EE7A0; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803EE7A4; // type:object size:0x4 scope:local align:4 data:float +@1594 = .sdata2:0x803EE7A8; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x803EE7AC; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EE7B0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EE7B4; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EE7B8; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EE7BC; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EE7C0; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EE7C4; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EE7C8; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EE7CC; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EE7D0; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EE7D4; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EE7D8; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EE7DC; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EE7E0; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EE7E4; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EE7E8; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EE7EC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EE7F0; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EE7F4; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EE7F8; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803EE7FC; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EE800; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803EE804; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EE808; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EE80C; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EE810; // type:object size:0x4 scope:local align:4 data:float +@1983 = .sdata2:0x803EE814; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EE818; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EE81C; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EE820; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EE824; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803EE828; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EE82C; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EE830; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803EE834; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EE838; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EE83C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x803EE840; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x803EE848; // type:object size:0x8 scope:local align:8 data:double +@2680 = .sdata2:0x803EE850; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x803EE854; // type:object size:0x4 scope:local align:4 data:float +@2682 = .sdata2:0x803EE858; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x803EE85C; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x803EE860; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x803EE864; // type:object size:0x4 scope:local align:4 data:float +@2965 = .sdata2:0x803EE868; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803EE86C; // type:object size:0x4 scope:local align:4 data:float +@2967 = .sdata2:0x803EE870; // type:object size:0x4 scope:local align:4 data:float +@2973 = .sdata2:0x803EE878; // type:object size:0x8 scope:local align:8 data:double +@2974 = .sdata2:0x803EE880; // type:object size:0x8 scope:local align:8 data:double +@3078 = .sdata2:0x803EE888; // type:object size:0x4 scope:local align:4 data:float +@3079 = .sdata2:0x803EE88C; // type:object size:0x4 scope:local align:4 data:float +@3080 = .sdata2:0x803EE890; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x803EE894; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x803EE898; // type:object size:0x4 scope:local align:4 data:float +@3431 = .sdata2:0x803EE89C; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x803EE8A0; // type:object size:0x4 scope:local align:4 data:float +@3433 = .sdata2:0x803EE8A4; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x803EE8A8; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x803EE8AC; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x803EE8B0; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x803EE8B4; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x803EE8B8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x803EE8BC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803EE8C0; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x803EE8C4; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x803EE8C8; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x803EE8CC; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x803EE8D0; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x803EE8D4; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x803EE8D8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x803EE8DC; // type:object size:0x4 scope:local align:4 data:float +@4802 = .sdata2:0x803EE8E0; // type:object size:0x4 scope:local align:4 data:float +@5043 = .sdata2:0x803EE8E4; // type:object size:0x8 scope:local align:4 data:4byte +@5193 = .sdata2:0x803EE8EC; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x803EE8F0; // type:object size:0x8 scope:local align:4 data:4byte +@5225 = .sdata2:0x803EE8F8; // type:object size:0x8 scope:local align:4 data:4byte +@5323 = .sdata2:0x803EE900; // type:object size:0x4 scope:local align:4 data:float +@1576 = .sdata2:0x803EE908; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803EE90C; // type:object size:0x4 scope:local align:4 data:float +@1593 = .sdata2:0x803EE910; // type:object size:0x4 scope:local align:4 data:float +@1646 = .sdata2:0x803EE914; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803EE918; // type:object size:0x4 scope:local align:4 data:float +@1648 = .sdata2:0x803EE91C; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x803EE920; // type:object size:0x8 scope:local align:8 data:double +@1703 = .sdata2:0x803EE928; // type:object size:0x8 scope:local align:8 data:double +@1704 = .sdata2:0x803EE930; // type:object size:0x8 scope:local align:8 data:double +@1705 = .sdata2:0x803EE938; // type:object size:0x4 scope:local align:4 data:float +@1827 = .sdata2:0x803EE93C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EE940; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EE944; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803EE948; // type:object size:0x4 scope:local align:4 data:float +@1839 = .sdata2:0x803EE94C; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EE950; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EE954; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EE958; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EE95C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EE960; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EE964; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EE968; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EE96C; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EE970; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EE974; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EE978; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803EE97C; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EE980; // type:object size:0x4 scope:local align:4 data:float +@2296 = .sdata2:0x803EE984; // type:object size:0x4 scope:local align:4 data:float +@2297 = .sdata2:0x803EE988; // type:object size:0x4 scope:local align:4 data:float +@2298 = .sdata2:0x803EE98C; // type:object size:0x4 scope:local align:4 data:float +@1976 = .sdata2:0x803EE990; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EE994; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EE998; // type:object size:0x8 scope:local align:8 data:double +@2231 = .sdata2:0x803EE9A0; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata2:0x803EE9A4; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EE9A8; // type:object size:0x4 scope:local align:4 data:float +@2675 = .sdata2:0x803EE9AC; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x803EE9B0; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x803EE9B4; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803EE9B8; // type:object size:0x4 scope:local align:4 data:float +@2962 = .sdata2:0x803EE9BC; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EE9C0; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EE9C8; // type:object size:0x8 scope:local align:8 data:double +@945 = .sdata2:0x803EE9D0; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803EE9D4; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EE9D8; // type:object size:0x8 scope:local align:8 data:double +@1096 = .sdata2:0x803EE9E0; // type:object size:0x8 scope:local align:8 data:double +@1487 = .sdata2:0x803EE9E8; // type:object size:0x4 scope:local align:4 data:float +@2017 = .sdata2:0x803EE9F0; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EE9F4; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803EE9F8; // type:object size:0x4 scope:local align:4 data:float +@971 = .sdata2:0x803EEA00; // type:object size:0x4 scope:local align:4 data:float +@972 = .sdata2:0x803EEA04; // type:object size:0x4 scope:local align:4 data:float +@973 = .sdata2:0x803EEA08; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803EEA10; // type:object size:0x8 scope:local align:8 data:double +@1161 = .sdata2:0x803EEA18; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EEA1C; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EEA20; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EEA24; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803EEA28; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EEA30; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x803EEA38; // type:object size:0x8 scope:local align:8 data:double +@983 = .sdata2:0x803EEA40; // type:object size:0x8 scope:local align:8 data:double +@984 = .sdata2:0x803EEA48; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803EEA4C; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EEA50; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803EEA54; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803EEA58; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803EEA5C; // type:object size:0x4 scope:local align:4 data:float +@1111 = .sdata2:0x803EEA60; // type:object size:0x4 scope:local align:4 data:float +@1113 = .sdata2:0x803EEA68; // type:object size:0x8 scope:local align:8 data:double +@1171 = .sdata2:0x803EEA70; // type:object size:0x4 scope:local align:4 data:float +@1172 = .sdata2:0x803EEA74; // type:object size:0x4 scope:local align:4 data:float +@1173 = .sdata2:0x803EEA78; // type:object size:0x4 scope:local align:4 data:float +@1175 = .sdata2:0x803EEA80; // type:object size:0x8 scope:local align:8 data:double +@1337 = .sdata2:0x803EEA88; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803EEA8C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EEA90; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803EEA98; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EEA9C; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EEAA0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x803EEAA4; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803EEAA8; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EEAB0; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803EEAB4; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803EEAB8; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803EEABC; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803EEAC0; // type:object size:0x4 scope:local align:4 data:float +@931 = .sdata2:0x803EEAC4; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EEAC8; // type:object size:0x8 scope:local align:8 data:double +@1197 = .sdata2:0x803EEAD0; // type:object size:0x4 scope:local align:4 data:float +@1198 = .sdata2:0x803EEAD4; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803EEAD8; // type:object size:0x4 scope:local align:4 data:float +@1200 = .sdata2:0x803EEADC; // type:object size:0x4 scope:local align:4 data:float +@1577 = .sdata2:0x803EEAE0; // type:object size:0x4 scope:local align:4 data:float +@1578 = .sdata2:0x803EEAE4; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x803EEAE8; // type:object size:0x4 scope:local align:4 data:float +@1723 = .sdata2:0x803EEAEC; // type:object size:0x4 scope:local align:4 data:float +@1724 = .sdata2:0x803EEAF0; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803EEAF4; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EEAF8; // type:object size:0x4 scope:local align:4 data:float +@1893 = .sdata2:0x803EEAFC; // type:object size:0x4 scope:local align:4 data:float +@1894 = .sdata2:0x803EEB00; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x803EEB08; // type:object size:0x8 scope:local align:8 data:double +@2118 = .sdata2:0x803EEB10; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EEB14; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EEB18; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EEB1C; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EEB20; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EEB24; // type:object size:0x4 scope:local align:4 data:float +@2311 = .sdata2:0x803EEB28; // type:object size:0x4 scope:local align:4 data:float +@2312 = .sdata2:0x803EEB2C; // type:object size:0x4 scope:local align:4 data:float +@929 = .sdata2:0x803EEB30; // type:object size:0x4 scope:local align:4 data:float +@930 = .sdata2:0x803EEB34; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803EEB38; // type:object size:0x4 scope:local align:4 data:float +@1109 = .sdata2:0x803EEB40; // type:object size:0x8 scope:local align:8 data:double +@1319 = .sdata2:0x803EEB48; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803EEB4C; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803EEB50; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EEB54; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EEB58; // type:object size:0x4 scope:local align:4 data:float +@1661 = .sdata2:0x803EEB5C; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803EEB60; // type:object size:0x4 scope:local align:4 data:float +@1663 = .sdata2:0x803EEB64; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803EEB68; // type:object size:0x4 scope:local align:4 data:float +@1665 = .sdata2:0x803EEB6C; // type:object size:0x4 scope:local align:4 data:float +@1666 = .sdata2:0x803EEB70; // type:object size:0x4 scope:local align:4 data:float +@1668 = .sdata2:0x803EEB78; // type:object size:0x8 scope:local align:8 data:double +@1755 = .sdata2:0x803EEB80; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803EEB84; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EEB88; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EEB90; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EEB98; // type:object size:0x8 scope:local align:8 data:double +@1965 = .sdata2:0x803EEBA0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EEBA4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803EEBA8; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803EEBAC; // type:object size:0x4 scope:local align:4 data:float +@2178 = .sdata2:0x803EEBB0; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EEBB8; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803EEBBC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803EEBC0; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803EEBC4; // type:object size:0x4 scope:local align:4 data:float +@1473 = .sdata2:0x803EEBC8; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EEBD0; // type:object size:0x8 scope:local align:8 data:double +@1489 = .sdata2:0x803EEBD8; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EEBDC; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EEBE0; // type:object size:0x8 scope:local align:8 data:double +@1616 = .sdata2:0x803EEBE8; // type:object size:0x8 scope:local align:8 data:double +@1617 = .sdata2:0x803EEBF0; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x803EEBF8; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803EEBFC; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803EEC00; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803EEC08; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x803EEC10; // type:object size:0x8 scope:local align:8 data:double +@916 = .sdata2:0x803EEC18; // type:object size:0x4 scope:local align:4 data:float +@917 = .sdata2:0x803EEC1C; // type:object size:0x4 scope:local align:4 data:float +@918 = .sdata2:0x803EEC20; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803EEC24; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803EEC28; // type:object size:0x4 scope:local align:4 data:float +@923 = .sdata2:0x803EEC2C; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803EEC30; // type:object size:0x4 scope:local align:4 data:float +@942 = .sdata2:0x803EEC34; // type:object size:0x4 scope:local align:4 data:float +@947 = .sdata2:0x803EEC38; // type:object size:0x4 scope:local align:4 data:float +@948 = .sdata2:0x803EEC3C; // type:object size:0x4 scope:local align:4 data:float +@968 = .sdata2:0x803EEC40; // type:object size:0x4 scope:local align:4 data:float +@882 = .sdata2:0x803EEC48; // type:object size:0x4 scope:local align:4 data:float +@887 = .sdata2:0x803EEC4C; // type:object size:0x4 scope:local align:4 data:float +@974 = .sdata2:0x803EEC50; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803EEC54; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EEC58; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x803EEC5C; // type:object size:0x4 scope:local align:4 data:float +@1477 = .sdata2:0x803EEC60; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803EEC64; // type:object size:0x4 scope:local align:4 data:float +@1550 = .sdata2:0x803EEC68; // type:object size:0x8 scope:local align:8 data:double +@1551 = .sdata2:0x803EEC70; // type:object size:0x8 scope:local align:8 data:double +@1552 = .sdata2:0x803EEC78; // type:object size:0x4 scope:local align:4 data:float +@1553 = .sdata2:0x803EEC7C; // type:object size:0x4 scope:local align:4 data:float +@1554 = .sdata2:0x803EEC80; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803EEC84; // type:object size:0x4 scope:local align:4 data:float +@1556 = .sdata2:0x803EEC88; // type:object size:0x4 scope:local align:4 data:float +@1557 = .sdata2:0x803EEC8C; // type:object size:0x4 scope:local align:4 data:float +@1558 = .sdata2:0x803EEC90; // type:object size:0x4 scope:local align:4 data:float +@1559 = .sdata2:0x803EEC94; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x803EEC98; // type:object size:0x4 scope:local align:4 data:float +@1561 = .sdata2:0x803EEC9C; // type:object size:0x4 scope:local align:4 data:float +@1562 = .sdata2:0x803EECA0; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803EECA4; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EECA8; // type:object size:0x4 scope:local align:4 data:float +@1312 = .sdata2:0x803EECB0; // type:object size:0x4 scope:local align:4 data:float +@1313 = .sdata2:0x803EECB4; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803EECB8; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803EECC0; // type:object size:0x8 scope:local align:8 data:double +@1894 = .sdata2:0x803EECC8; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EECCC; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EECD0; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EECD4; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EECD8; // type:object size:0x8 scope:local align:8 data:double +@2053 = .sdata2:0x803EECE0; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EECE4; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803EECE8; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803EECEC; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EECF0; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x803EECF8; // type:object size:0x8 scope:local align:8 data:double +@2766 = .sdata2:0x803EED00; // type:object size:0x8 scope:local align:8 data:double +@2785 = .sdata2:0x803EED08; // type:object size:0x4 scope:local align:4 data:float +@2994 = .sdata2:0x803EED0C; // type:object size:0x4 scope:local align:4 data:float +@2995 = .sdata2:0x803EED10; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EED14; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x803EED18; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803EED1C; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803EED20; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata2:0x803EED24; // type:object size:0x4 scope:local align:4 data:float +@1286 = .sdata2:0x803EED28; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EED2C; // type:object size:0x4 scope:local align:4 data:float +@1427 = .sdata2:0x803EED30; // type:object size:0x4 scope:local align:4 data:float +@1511 = .sdata2:0x803EED34; // type:object size:0x4 scope:local align:4 data:float +@1512 = .sdata2:0x803EED38; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EED3C; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803EED40; // type:object size:0x4 scope:local align:4 data:float +@1518 = .sdata2:0x803EED44; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803EED48; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803EED4C; // type:object size:0x4 scope:local align:4 data:float +@1522 = .sdata2:0x803EED50; // type:object size:0x4 scope:local align:4 data:float +@2700 = .sdata2:0x803EED58; // type:object size:0x8 scope:local align:8 data:double +@2761 = .sdata2:0x803EED60; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803EED64; // type:object size:0x4 scope:local align:4 data:float +@2792 = .sdata2:0x803EED68; // type:object size:0x4 scope:local align:4 data:float +@2793 = .sdata2:0x803EED6C; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803EED70; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EED78; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EED7C; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803EED80; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803EED88; // type:object size:0x8 scope:local align:8 data:double +@2212 = .sdata2:0x803EED90; // type:object size:0x8 scope:local align:8 data:double +@2213 = .sdata2:0x803EED98; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803EED9C; // type:object size:0x4 scope:local align:4 data:float +@2705 = .sdata2:0x803EEDA0; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x803EEDA4; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x803EEDA8; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata2:0x803EEDAC; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata2:0x803EEDB0; // type:object size:0x4 scope:local align:4 data:float +@2715 = .sdata2:0x803EEDB4; // type:object size:0x4 scope:local align:4 data:float +@2717 = .sdata2:0x803EEDB8; // type:object size:0x4 scope:local align:4 data:float +@2719 = .sdata2:0x803EEDBC; // type:object size:0x4 scope:local align:4 data:float +@2721 = .sdata2:0x803EEDC0; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata2:0x803EEDC4; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x803EEDC8; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803EEDCC; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x803EEDD0; // type:object size:0x4 scope:local align:4 data:float +@2733 = .sdata2:0x803EEDD4; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803EEDD8; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803EEDDC; // type:object size:0x4 scope:local align:4 data:float +@2741 = .sdata2:0x803EEDE0; // type:object size:0x4 scope:local align:4 data:float +@2744 = .sdata2:0x803EEDE4; // type:object size:0x4 scope:local align:4 data:float +@2750 = .sdata2:0x803EEDE8; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata2:0x803EEDEC; // type:object size:0x4 scope:local align:4 data:float +@2755 = .sdata2:0x803EEDF0; // type:object size:0x4 scope:local align:4 data:float +@2757 = .sdata2:0x803EEDF4; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803EEDF8; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803EEDFC; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x803EEE00; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x803EEE04; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x803EEE08; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803EEE0C; // type:object size:0x4 scope:local align:4 data:float +@2783 = .sdata2:0x803EEE10; // type:object size:0x4 scope:local align:4 data:float +@2786 = .sdata2:0x803EEE14; // type:object size:0x4 scope:local align:4 data:float +@2787 = .sdata2:0x803EEE18; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803EEE1C; // type:object size:0x4 scope:local align:4 data:float +@2791 = .sdata2:0x803EEE20; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803EEE24; // type:object size:0x8 scope:local align:4 data:4byte +@2875 = .sdata2:0x803EEE2C; // type:object size:0x4 scope:local align:4 data:float +@2876 = .sdata2:0x803EEE30; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x803EEE38; // type:object size:0x8 scope:local align:8 data:double +@3019 = .sdata2:0x803EEE40; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x803EEE44; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata2:0x803EEE48; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x803EEE4C; // type:object size:0x4 scope:local align:4 data:float +@4295 = .sdata2:0x803EEE50; // type:object size:0x4 scope:local align:4 data:float +@4623 = .sdata2:0x803EEE54; // type:object size:0x4 scope:local align:4 data:float +@4624 = .sdata2:0x803EEE58; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x803EEE5C; // type:object size:0x4 scope:local align:4 data:float +@4803 = .sdata2:0x803EEE60; // type:object size:0x4 scope:local align:4 data:float +@4805 = .sdata2:0x803EEE64; // type:object size:0x4 scope:local align:4 data:float +@4845 = .sdata2:0x803EEE68; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x803EEE6C; // type:object size:0x4 scope:local align:4 data:float +@5194 = .sdata2:0x803EEE70; // type:object size:0x4 scope:local align:4 data:float +@5448 = .sdata2:0x803EEE74; // type:object size:0x4 scope:local align:4 data:float +@5449 = .sdata2:0x803EEE78; // type:object size:0x4 scope:local align:4 data:float +@5450 = .sdata2:0x803EEE7C; // type:object size:0x4 scope:local align:4 data:float +@5451 = .sdata2:0x803EEE80; // type:object size:0x4 scope:local align:4 data:float +@5452 = .sdata2:0x803EEE84; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x803EEE88; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x803EEE8C; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x803EEE90; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x803EEE94; // type:object size:0x4 scope:local align:4 data:float +@5584 = .sdata2:0x803EEE98; // type:object size:0x4 scope:local align:4 data:float +@5720 = .sdata2:0x803EEE9C; // type:object size:0x4 scope:local align:4 data:float +@5721 = .sdata2:0x803EEEA0; // type:object size:0x4 scope:local align:4 data:float +@5722 = .sdata2:0x803EEEA4; // type:object size:0x4 scope:local align:4 data:float +@6692 = .sdata2:0x803EEEA8; // type:object size:0x4 scope:local align:4 data:float +@6693 = .sdata2:0x803EEEAC; // type:object size:0x4 scope:local align:4 data:float +@6694 = .sdata2:0x803EEEB0; // type:object size:0x4 scope:local align:4 data:float +@6695 = .sdata2:0x803EEEB4; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x803EEEB8; // type:object size:0x4 scope:local align:4 data:float +@2781 = .sdata2:0x803EEEBC; // type:object size:0x4 scope:local align:4 data:float +@2860 = .sdata2:0x803EEEC0; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x803EEEC4; // type:object size:0x4 scope:local align:4 data:float +@2862 = .sdata2:0x803EEEC8; // type:object size:0x4 scope:local align:4 data:float +@2863 = .sdata2:0x803EEECC; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803EEED0; // type:object size:0x4 scope:local align:4 data:float +@2865 = .sdata2:0x803EEED4; // type:object size:0x4 scope:local align:4 data:float +@2866 = .sdata2:0x803EEED8; // type:object size:0x4 scope:local align:4 data:float +@2868 = .sdata2:0x803EEEE0; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x803EEEE8; // type:object size:0x8 scope:local align:8 data:double +@2964 = .sdata2:0x803EEEF0; // type:object size:0x8 scope:local align:8 data:double +@2965 = .sdata2:0x803EEEF8; // type:object size:0x4 scope:local align:4 data:float +@2966 = .sdata2:0x803EEEFC; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803EEF00; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x803EEF04; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x803EEF08; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EEF0C; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803EEF10; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x803EEF14; // type:object size:0x4 scope:local align:4 data:float +@3444 = .sdata2:0x803EEF18; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x803EEF1C; // type:object size:0x4 scope:local align:4 data:float +@3446 = .sdata2:0x803EEF20; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x803EEF24; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x803EEF28; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x803EEF2C; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x803EEF30; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x803EEF34; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x803EEF38; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x803EEF3C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x803EEF40; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x803EEF44; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EEF48; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x803EEF4C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x803EEF50; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x803EEF54; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x803EEF58; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x803EEF5C; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x803EEF60; // type:object size:0x4 scope:local align:4 data:float +@4155 = .sdata2:0x803EEF64; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x803EEF68; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x803EEF6C; // type:object size:0x4 scope:local align:4 data:float +@5197 = .sdata2:0x803EEF70; // type:object size:0x4 scope:local align:4 data:float +@5198 = .sdata2:0x803EEF74; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x803EEF78; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x803EEF7C; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x803EEF80; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x803EEF84; // type:object size:0x4 scope:local align:4 data:float +@5686 = .sdata2:0x803EEF88; // type:object size:0x4 scope:local align:4 data:float +@5687 = .sdata2:0x803EEF8C; // type:object size:0x4 scope:local align:4 data:float +@5766 = .sdata2:0x803EEF90; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803EEF98; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803EEF9C; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803EEFA0; // type:object size:0x8 scope:local align:8 data:double +@2141 = .sdata2:0x803EEFA8; // type:object size:0x8 scope:local align:8 data:double +@2142 = .sdata2:0x803EEFB0; // type:object size:0x4 scope:local align:4 data:float +@2143 = .sdata2:0x803EEFB4; // type:object size:0x4 scope:local align:4 data:float +@2144 = .sdata2:0x803EEFB8; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EEFBC; // type:object size:0x4 scope:local align:4 data:float +@2146 = .sdata2:0x803EEFC0; // type:object size:0x4 scope:local align:4 data:float +@2147 = .sdata2:0x803EEFC4; // type:object size:0x4 scope:local align:4 data:float +@2148 = .sdata2:0x803EEFC8; // type:object size:0x4 scope:local align:4 data:float +@2149 = .sdata2:0x803EEFCC; // type:object size:0x4 scope:local align:4 data:float +@2150 = .sdata2:0x803EEFD0; // type:object size:0x4 scope:local align:4 data:float +@2152 = .sdata2:0x803EEFD8; // type:object size:0x8 scope:local align:8 data:double +@2434 = .sdata2:0x803EEFE0; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803EEFE4; // type:object size:0x4 scope:local align:4 data:float +@2631 = .sdata2:0x803EEFE8; // type:object size:0x4 scope:local align:4 data:float +@2479 = .sdata2:0x803EEFF0; // type:object size:0x4 scope:local align:4 data:float +@3308 = .sdata2:0x803EEFF4; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x803EEFF8; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x803EEFFC; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x803EF000; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x803EF008; // type:object size:0x8 scope:local align:8 data:double +@4361 = .sdata2:0x803EF010; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803EF018; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EF01C; // type:object size:0x4 scope:local align:4 data:float +@779 = .sdata2:0x803EF020; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EF024; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EF028; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EF02C; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EF030; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EF034; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EF038; // type:object size:0x4 scope:local align:4 data:float +@898 = .sdata2:0x803EF03C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803EF040; // type:object size:0x4 scope:local align:4 data:float +@900 = .sdata2:0x803EF044; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803EF048; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EF050; // type:object size:0x8 scope:local align:8 data:double +@982 = .sdata2:0x803EF058; // type:object size:0x8 scope:local align:8 data:double +@1056 = .sdata2:0x803EF060; // type:object size:0x4 scope:local align:4 data:float +@1057 = .sdata2:0x803EF064; // type:object size:0x4 scope:local align:4 data:float +@1061 = .sdata2:0x803EF068; // type:object size:0x8 scope:local align:8 data:double +@1227 = .sdata2:0x803EF070; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803EF074; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803EF078; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EF07C; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803EF080; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EF084; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EF088; // type:object size:0x4 scope:local align:4 data:float +@2096 = .sdata2:0x803EF08C; // type:object size:0x4 scope:local align:4 data:float +@2097 = .sdata2:0x803EF090; // type:object size:0x4 scope:local align:4 data:float +@2099 = .sdata2:0x803EF098; // type:object size:0x8 scope:local align:8 data:double +@408 = .sdata2:0x803EF0A0; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803EF0A8; // type:object size:0x4 scope:local align:4 data:float +@678 = .sdata2:0x803EF0AC; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803EF0B0; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x803EF0B8; // type:object size:0x8 scope:local align:8 data:double +@957 = .sdata2:0x803EF0C0; // type:object size:0x4 scope:local align:4 data:float +@958 = .sdata2:0x803EF0C4; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803EF0C8; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803EF0CC; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803EF0D0; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EF0D4; // type:object size:0x4 scope:local align:4 data:float +@688 = .sdata2:0x803EF0D8; // type:object size:0x4 scope:local align:4 data:float +@879 = .sdata2:0x803EF0DC; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803EF0E0; // type:object size:0x4 scope:local align:4 data:float +@1130 = .sdata2:0x803EF0E8; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803EF0EC; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EF0F0; // type:object size:0x4 scope:local align:4 data:float +@1272 = .sdata2:0x803EF0F8; // type:object size:0x8 scope:local align:8 data:double +@1273 = .sdata2:0x803EF100; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803EF108; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EF10C; // type:object size:0x4 scope:local align:4 data:float +@1424 = .sdata2:0x803EF110; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EF114; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EF118; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EF11C; // type:object size:0x4 scope:local align:4 data:float +@505 = .sdata2:0x803EF120; // type:object size:0x4 scope:local align:4 data:float +@524 = .sdata2:0x803EF124; // type:object size:0x4 scope:local align:4 data:float +@648 = .sdata2:0x803EF128; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EF130; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x803EF134; // type:object size:0x4 scope:local align:4 data:float +@715 = .sdata2:0x803EF138; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803EF140; // type:object size:0x8 scope:local align:8 data:double +@884 = .sdata2:0x803EF148; // type:object size:0x8 scope:local align:8 data:double +@918 = .sdata2:0x803EF150; // type:object size:0x4 scope:local align:4 data:float +@489 = .sdata2:0x803EF158; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x803EF15C; // type:object size:0x4 scope:local align:4 data:float +@456 = .sdata2:0x803EF160; // type:object size:0x4 scope:local align:4 data:float +@457 = .sdata2:0x803EF164; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x803EF168; // type:object size:0x4 scope:local align:4 data:float +@533 = .sdata2:0x803EF16C; // type:object size:0x4 scope:local align:4 data:float +@534 = .sdata2:0x803EF170; // type:object size:0x4 scope:local align:4 data:float +@536 = .sdata2:0x803EF178; // type:object size:0x8 scope:local align:8 data:double +@693 = .sdata2:0x803EF180; // type:object size:0x4 scope:local align:4 data:float +@694 = .sdata2:0x803EF184; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803EF188; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x803EF190; // type:object size:0x4 scope:local align:4 data:float +@732 = .sdata2:0x803EF198; // type:object size:0x8 scope:local align:8 data:double +@680 = .sdata2:0x803EF1A0; // type:object size:0x4 scope:local align:4 data:float +@495 = .sdata2:0x803EF1A8; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803EF1B0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EF1B4; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803EF1B8; // type:object size:0x4 scope:local align:4 data:float +@1564 = .sdata2:0x803EF1BC; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x803EF1C0; // type:object size:0x4 scope:local align:4 data:float +@1584 = .sdata2:0x803EF1C4; // type:object size:0x4 scope:local align:4 data:float +@1975 = .sdata2:0x803EF1C8; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x803EF1D0; // type:object size:0x8 scope:local align:8 data:double +@2032 = .sdata2:0x803EF1D8; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803EF1DC; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803EF1E0; // type:object size:0x4 scope:local align:4 data:float +@2243 = .sdata2:0x803EF1E4; // type:object size:0x4 scope:local align:4 data:float +@2532 = .sdata2:0x803EF1E8; // type:object size:0x8 scope:local align:8 data:double +@1159 = .sdata2:0x803EF1F0; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803EF1F4; // type:object size:0x4 scope:local align:4 data:float +@1161 = .sdata2:0x803EF1F8; // type:object size:0x4 scope:local align:4 data:float +@1162 = .sdata2:0x803EF1FC; // type:object size:0x4 scope:local align:4 data:float +@1163 = .sdata2:0x803EF200; // type:object size:0x4 scope:local align:4 data:float +@1164 = .sdata2:0x803EF204; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EF208; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EF20C; // type:object size:0x4 scope:local align:4 data:float +@747 = .sdata2:0x803EF210; // type:object size:0x4 scope:local align:4 data:float +@749 = .sdata2:0x803EF214; // type:object size:0x4 scope:local align:4 data:float +@750 = .sdata2:0x803EF218; // type:object size:0x4 scope:local align:4 data:float +@751 = .sdata2:0x803EF21C; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803EF220; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EF224; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EF228; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EF22C; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EF230; // type:object size:0x8 scope:local align:8 data:double +@842 = .sdata2:0x803EF238; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EF23C; // type:object size:0x4 scope:local align:4 data:float +@755 = .sdata2:0x803EF240; // type:object size:0x4 scope:local align:4 data:float +@756 = .sdata2:0x803EF244; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x803EF248; // type:object size:0x4 scope:local align:4 data:float +@759 = .sdata2:0x803EF24C; // type:object size:0x4 scope:local align:4 data:float +@761 = .sdata2:0x803EF250; // type:object size:0x4 scope:local align:4 data:float +@763 = .sdata2:0x803EF254; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803EF258; // type:object size:0x4 scope:local align:4 data:float +@766 = .sdata2:0x803EF25C; // type:object size:0x4 scope:local align:4 data:float +@768 = .sdata2:0x803EF260; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803EF264; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803EF268; // type:object size:0x4 scope:local align:4 data:float +@813 = .sdata2:0x803EF26C; // type:object size:0x4 scope:local align:4 data:float +@814 = .sdata2:0x803EF270; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803EF274; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803EF278; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803EF27C; // type:object size:0x4 scope:local align:4 data:float +@825 = .sdata2:0x803EF280; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EF284; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803EF288; // type:object size:0x4 scope:local align:4 data:float +@828 = .sdata2:0x803EF28C; // type:object size:0x4 scope:local align:4 data:float +@829 = .sdata2:0x803EF290; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803EF294; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803EF298; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803EF29C; // type:object size:0x4 scope:local align:4 data:float +@833 = .sdata2:0x803EF2A0; // type:object size:0x4 scope:local align:4 data:float +@834 = .sdata2:0x803EF2A4; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x803EF2A8; // type:object size:0x4 scope:local align:4 data:float +@836 = .sdata2:0x803EF2AC; // type:object size:0x4 scope:local align:4 data:float +@837 = .sdata2:0x803EF2B0; // type:object size:0x4 scope:local align:4 data:float +@838 = .sdata2:0x803EF2B4; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803EF2B8; // type:object size:0x4 scope:local align:4 data:float +@840 = .sdata2:0x803EF2BC; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x803EF2C0; // type:object size:0x4 scope:local align:4 data:float +@842 = .sdata2:0x803EF2C4; // type:object size:0x4 scope:local align:4 data:float +@843 = .sdata2:0x803EF2C8; // type:object size:0x4 scope:local align:4 data:float +@844 = .sdata2:0x803EF2CC; // type:object size:0x4 scope:local align:4 data:float +@845 = .sdata2:0x803EF2D0; // type:object size:0x4 scope:local align:4 data:float +@826 = .sdata2:0x803EF2D8; // type:object size:0x4 scope:local align:4 data:float +@849 = .sdata2:0x803EF2DC; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803EF2E0; // type:object size:0x8 scope:local align:8 data:double +@851 = .sdata2:0x803EF2E8; // type:object size:0x8 scope:local align:8 data:double +@714 = .sdata2:0x803EF2F0; // type:object size:0x4 scope:local align:4 data:float +@729 = .sdata2:0x803EF2F8; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803EF2FC; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EF300; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803EF308; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x803EF310; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803EF314; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803EF318; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803EF31C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EF320; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EF324; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EF328; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EF32C; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EF330; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803EF334; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803EF338; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803EF33C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803EF340; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EF344; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EF348; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EF34C; // type:object size:0x4 scope:local align:4 data:float +@1929 = .sdata2:0x803EF350; // type:object size:0x4 scope:local align:4 data:float +@1930 = .sdata2:0x803EF354; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF358; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803EF35C; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EF360; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EF364; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EF368; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EF36C; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EF370; // type:object size:0x4 scope:local align:4 data:float +@2095 = .sdata2:0x803EF374; // type:object size:0x4 scope:local align:4 data:float +@2264 = .sdata2:0x803EF378; // type:object size:0x4 scope:local align:4 data:float +@2265 = .sdata2:0x803EF37C; // type:object size:0x4 scope:local align:4 data:float +@2266 = .sdata2:0x803EF380; // type:object size:0x4 scope:local align:4 data:float +@2267 = .sdata2:0x803EF384; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803EF388; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803EF390; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EF394; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF398; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803EF39C; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EF3A0; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EF3A4; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EF3A8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EF3AC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EF3B0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EF3B4; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EF3B8; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EF3BC; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EF3C0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EF3C4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EF3C8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EF3CC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EF3D0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EF3D4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EF3D8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EF3DC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EF3E0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EF3E4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EF3E8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EF3EC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803EF3F0; // type:object size:0x4 scope:local align:4 data:float +@2624 = .sdata2:0x803EF3F4; // type:object size:0x4 scope:local align:4 data:float +@3429 = .sdata2:0x803EF3F8; // type:object size:0x4 scope:local align:4 data:float +@1779 = .sdata2:0x803EF400; // type:object size:0x4 scope:local align:4 data:float +@1780 = .sdata2:0x803EF404; // type:object size:0x4 scope:local align:4 data:float +@1781 = .sdata2:0x803EF408; // type:object size:0x4 scope:local align:4 data:float +@1782 = .sdata2:0x803EF40C; // type:object size:0x4 scope:local align:4 data:float +@1783 = .sdata2:0x803EF410; // type:object size:0x4 scope:local align:4 data:float +@1784 = .sdata2:0x803EF414; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803EF418; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803EF41C; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EF420; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EF424; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EF428; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EF42C; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EF430; // type:object size:0x4 scope:local align:4 data:float +@2008 = .sdata2:0x803EF434; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EF438; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EF440; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EF444; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EF448; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803EF44C; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803EF450; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803EF454; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EF458; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EF45C; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EF460; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EF464; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803EF468; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803EF46C; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EF470; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EF474; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EF478; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EF47C; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EF480; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EF484; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EF488; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EF48C; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EF490; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EF494; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EF498; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EF49C; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EF4A0; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EF4A4; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EF4A8; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EF4AC; // type:object size:0x4 scope:local align:4 data:float +@2615 = .sdata2:0x803EF4B0; // type:object size:0x4 scope:local align:4 data:float +@2616 = .sdata2:0x803EF4B4; // type:object size:0x4 scope:local align:4 data:float +@2898 = .sdata2:0x803EF4B8; // type:object size:0x8 scope:local align:8 data:double +@2899 = .sdata2:0x803EF4C0; // type:object size:0x8 scope:local align:8 data:double +@2900 = .sdata2:0x803EF4C8; // type:object size:0x8 scope:local align:8 data:double +@2901 = .sdata2:0x803EF4D0; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EF4D8; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803EF4DC; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803EF4E0; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EF4E4; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EF4E8; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803EF4EC; // type:object size:0x4 scope:local align:4 data:float +@2103 = .sdata2:0x803EF4F0; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803EF4F4; // type:object size:0x4 scope:local align:4 data:float +@2108 = .sdata2:0x803EF4F8; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803EF4FC; // type:object size:0x4 scope:local align:4 data:float +@2118 = .sdata2:0x803EF500; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803EF504; // type:object size:0x4 scope:local align:4 data:float +@2120 = .sdata2:0x803EF508; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803EF50C; // type:object size:0x4 scope:local align:4 data:float +@2122 = .sdata2:0x803EF510; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803EF514; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803EF518; // type:object size:0x4 scope:local align:4 data:float +@2670 = .sdata2:0x803EF51C; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x803EF520; // type:object size:0x4 scope:local align:4 data:float +@2673 = .sdata2:0x803EF528; // type:object size:0x8 scope:local align:8 data:double +@1252 = .sdata2:0x803EF530; // type:object size:0x4 scope:local align:4 data:float +@1253 = .sdata2:0x803EF534; // type:object size:0x4 scope:local align:4 data:float +@1255 = .sdata2:0x803EF538; // type:object size:0x8 scope:local align:8 data:double +@1714 = .sdata2:0x803EF540; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803EF544; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EF548; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EF54C; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803EF550; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803EF558; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803EF55C; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803EF560; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803EF564; // type:object size:0x4 scope:local align:4 data:float +@1982 = .sdata2:0x803EF568; // type:object size:0x4 scope:local align:4 data:float +@1984 = .sdata2:0x803EF56C; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803EF570; // type:object size:0x4 scope:local align:4 data:float +@1986 = .sdata2:0x803EF574; // type:object size:0x4 scope:local align:4 data:float +@1987 = .sdata2:0x803EF578; // type:object size:0x4 scope:local align:4 data:float +@1988 = .sdata2:0x803EF57C; // type:object size:0x4 scope:local align:4 data:float +@1989 = .sdata2:0x803EF580; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x803EF584; // type:object size:0x4 scope:local align:4 data:float +@1991 = .sdata2:0x803EF588; // type:object size:0x4 scope:local align:4 data:float +@1992 = .sdata2:0x803EF58C; // type:object size:0x4 scope:local align:4 data:float +@1993 = .sdata2:0x803EF590; // type:object size:0x4 scope:local align:4 data:float +@1994 = .sdata2:0x803EF594; // type:object size:0x4 scope:local align:4 data:float +@1995 = .sdata2:0x803EF598; // type:object size:0x4 scope:local align:4 data:float +@1996 = .sdata2:0x803EF59C; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803EF5A0; // type:object size:0x4 scope:local align:4 data:float +@1998 = .sdata2:0x803EF5A4; // type:object size:0x4 scope:local align:4 data:float +@1999 = .sdata2:0x803EF5A8; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EF5AC; // type:object size:0x4 scope:local align:4 data:float +@2001 = .sdata2:0x803EF5B0; // type:object size:0x4 scope:local align:4 data:float +@2002 = .sdata2:0x803EF5B4; // type:object size:0x4 scope:local align:4 data:float +@2003 = .sdata2:0x803EF5B8; // type:object size:0x4 scope:local align:4 data:float +@2004 = .sdata2:0x803EF5BC; // type:object size:0x4 scope:local align:4 data:float +@2005 = .sdata2:0x803EF5C0; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EF5C4; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x803EF5C8; // type:object size:0x4 scope:local align:4 data:float +@3040 = .sdata2:0x803EF5CC; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803EF5D0; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x803EF5D4; // type:object size:0x4 scope:local align:4 data:float +@3150 = .sdata2:0x803EF5D8; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x803EF5DC; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x803EF5E0; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EF5E4; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x803EF5E8; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x803EF5EC; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x803EF5F0; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x803EF5F4; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x803EF5F8; // type:object size:0x4 scope:local align:4 data:float +@3741 = .sdata2:0x803EF600; // type:object size:0x8 scope:local align:8 data:double +@3838 = .sdata2:0x803EF608; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x803EF60C; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803EF610; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803EF614; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803EF618; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803EF61C; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803EF620; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803EF624; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803EF628; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803EF62C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803EF630; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803EF634; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803EF638; // type:object size:0x4 scope:local align:4 data:float +@2042 = .sdata2:0x803EF63C; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x803EF640; // type:object size:0x4 scope:local align:4 data:float +@2044 = .sdata2:0x803EF644; // type:object size:0x4 scope:local align:4 data:float +@2045 = .sdata2:0x803EF648; // type:object size:0x4 scope:local align:4 data:float +@2046 = .sdata2:0x803EF64C; // type:object size:0x4 scope:local align:4 data:float +@2047 = .sdata2:0x803EF650; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EF654; // type:object size:0x4 scope:local align:4 data:float +@2049 = .sdata2:0x803EF658; // type:object size:0x4 scope:local align:4 data:float +@2050 = .sdata2:0x803EF65C; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803EF660; // type:object size:0x4 scope:local align:4 data:float +@2052 = .sdata2:0x803EF664; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EF668; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EF66C; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EF670; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EF674; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x803EF678; // type:object size:0x4 scope:local align:4 data:float +@2058 = .sdata2:0x803EF67C; // type:object size:0x4 scope:local align:4 data:float +@2059 = .sdata2:0x803EF680; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803EF684; // type:object size:0x4 scope:local align:4 data:float +@2061 = .sdata2:0x803EF688; // type:object size:0x4 scope:local align:4 data:float +@2275 = .sdata2:0x803EF68C; // type:object size:0x4 scope:local align:4 data:float +@2276 = .sdata2:0x803EF690; // type:object size:0x4 scope:local align:4 data:float +@2277 = .sdata2:0x803EF694; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803EF698; // type:object size:0x4 scope:local align:4 data:float +@2932 = .sdata2:0x803EF69C; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x803EF6A0; // type:object size:0x8 scope:local align:8 data:double +@3164 = .sdata2:0x803EF6A8; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x803EF6B0; // type:object size:0x8 scope:local align:8 data:double +@3281 = .sdata2:0x803EF6B8; // type:object size:0x8 scope:local align:8 data:double +@3282 = .sdata2:0x803EF6C0; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x803EF6C4; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803EF6C8; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EF6CC; // type:object size:0x4 scope:local align:4 data:float +@1861 = .sdata2:0x803EF6D0; // type:object size:0x4 scope:local align:4 data:float +@1863 = .sdata2:0x803EF6D4; // type:object size:0x4 scope:local align:4 data:float +@1864 = .sdata2:0x803EF6D8; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803EF6DC; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803EF6E0; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803EF6E4; // type:object size:0x4 scope:local align:4 data:float +@1868 = .sdata2:0x803EF6E8; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803EF6EC; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803EF6F0; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803EF6F4; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803EF6F8; // type:object size:0x4 scope:local align:4 data:float +@2270 = .sdata2:0x803EF700; // type:object size:0x8 scope:local align:8 data:double +@2354 = .sdata2:0x803EF708; // type:object size:0x4 scope:local align:4 data:float +@2355 = .sdata2:0x803EF70C; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EF710; // type:object size:0x4 scope:local align:4 data:float +@1708 = .sdata2:0x803EF718; // type:object size:0x8 scope:local align:8 data:double +@1925 = .sdata2:0x803EF720; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803EF724; // type:object size:0x4 scope:local align:4 data:float +@1928 = .sdata2:0x803EF728; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803EF72C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803EF730; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803EF734; // type:object size:0x4 scope:local align:4 data:float +@1936 = .sdata2:0x803EF738; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803EF73C; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803EF740; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803EF744; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803EF748; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803EF74C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803EF750; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803EF754; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803EF758; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803EF75C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803EF760; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803EF764; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803EF768; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803EF76C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803EF770; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803EF774; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803EF778; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803EF77C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803EF780; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803EF784; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803EF788; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803EF78C; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EF790; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803EF794; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803EF798; // type:object size:0x4 scope:local align:4 data:float +@2782 = .sdata2:0x803EF79C; // type:object size:0x4 scope:local align:4 data:float +@2938 = .sdata2:0x803EF7A0; // type:object size:0x8 scope:local align:8 data:double +@3054 = .sdata2:0x803EF7A8; // type:object size:0x4 scope:local align:4 data:float +@1844 = .sdata2:0x803EF7B0; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803EF7B4; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803EF7B8; // type:object size:0x4 scope:local align:4 data:float +@1847 = .sdata2:0x803EF7BC; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x803EF7C0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x803EF7C4; // type:object size:0x4 scope:local align:4 data:float +@1850 = .sdata2:0x803EF7C8; // type:object size:0x4 scope:local align:4 data:float +@1851 = .sdata2:0x803EF7CC; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803EF7D0; // type:object size:0x4 scope:local align:4 data:float +@2301 = .sdata2:0x803EF7D4; // type:object size:0x4 scope:local align:4 data:float +@2302 = .sdata2:0x803EF7D8; // type:object size:0x4 scope:local align:4 data:float +@2303 = .sdata2:0x803EF7DC; // type:object size:0x4 scope:local align:4 data:float +@2304 = .sdata2:0x803EF7E0; // type:object size:0x4 scope:local align:4 data:float +@2305 = .sdata2:0x803EF7E4; // type:object size:0x4 scope:local align:4 data:float +@2306 = .sdata2:0x803EF7E8; // type:object size:0x4 scope:local align:4 data:float +@2307 = .sdata2:0x803EF7EC; // type:object size:0x4 scope:local align:4 data:float +@2308 = .sdata2:0x803EF7F0; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EF7F8; // type:object size:0x4 scope:local align:4 data:float +@1692 = .sdata2:0x803EF7FC; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x803EF800; // type:object size:0x4 scope:local align:4 data:float +@1694 = .sdata2:0x803EF804; // type:object size:0x4 scope:local align:4 data:float +@1695 = .sdata2:0x803EF808; // type:object size:0x4 scope:local align:4 data:float +@1697 = .sdata2:0x803EF810; // type:object size:0x8 scope:local align:8 data:double +@1684 = .sdata2:0x803EF818; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EF81C; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EF820; // type:object size:0x4 scope:local align:4 data:float +@1688 = .sdata2:0x803EF828; // type:object size:0x8 scope:local align:8 data:double +@1728 = .sdata2:0x803EF830; // type:object size:0x4 scope:local align:4 data:float +@1729 = .sdata2:0x803EF834; // type:object size:0x4 scope:local align:4 data:float +@1147 = .sdata2:0x803EF838; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EF840; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EF844; // type:object size:0x4 scope:local align:4 data:float +@1854 = .sdata2:0x803EF848; // type:object size:0x8 scope:local align:8 data:double +@1855 = .sdata2:0x803EF850; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x803EF858; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EF85C; // type:object size:0x4 scope:local align:4 data:float +@2010 = .sdata2:0x803EF860; // type:object size:0x4 scope:local align:4 data:float +@2012 = .sdata2:0x803EF864; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EF868; // type:object size:0x4 scope:local align:4 data:float +@2339 = .sdata2:0x803EF86C; // type:object size:0x4 scope:local align:4 data:float +@2401 = .sdata2:0x803EF870; // type:object size:0x4 scope:local align:4 data:float +@2727 = .sdata2:0x803EF874; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x803EF878; // type:object size:0x8 scope:local align:8 data:double +@3867 = .sdata2:0x803EF880; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x803EF884; // type:object size:0x4 scope:local align:4 data:float +@1426 = .sdata2:0x803EF888; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x803EF88C; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803EF890; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803EF898; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803EF89C; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803EF8A0; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803EF8A4; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803EF8A8; // type:object size:0x4 scope:local align:4 data:float +@1221 = .sdata2:0x803EF8AC; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803EF8B0; // type:object size:0x4 scope:local align:4 data:float +@1237 = .sdata2:0x803EF8B4; // type:object size:0x4 scope:local align:4 data:float +@1238 = .sdata2:0x803EF8B8; // type:object size:0x4 scope:local align:4 data:float +@1241 = .sdata2:0x803EF8BC; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803EF8C0; // type:object size:0x4 scope:local align:4 data:float +@1262 = .sdata2:0x803EF8C4; // type:object size:0x4 scope:local align:4 data:float +@1269 = .sdata2:0x803EF8C8; // type:object size:0x4 scope:local align:4 data:float +@1275 = .sdata2:0x803EF8CC; // type:object size:0x4 scope:local align:4 data:float +@1409 = .sdata2:0x803EF8D0; // type:object size:0x4 scope:local align:4 data:float +@1410 = .sdata2:0x803EF8D4; // type:object size:0x4 scope:local align:4 data:float +@1042 = .sdata2:0x803EF8D8; // type:object size:0x4 scope:local align:4 data:float +@1049 = .sdata2:0x803EF8DC; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x803EF8E0; // type:object size:0x4 scope:local align:4 data:float +@1052 = .sdata2:0x803EF8E4; // type:object size:0x4 scope:local align:4 data:float +@1054 = .sdata2:0x803EF8E8; // type:object size:0x4 scope:local align:4 data:float +@1056 = .sdata2:0x803EF8EC; // type:object size:0x4 scope:local align:4 data:float +@1741 = .sdata2:0x803EF8F0; // type:object size:0x4 scope:local align:4 data:float +@1744 = .sdata2:0x803EF8F4; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EF8F8; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803EF8FC; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EF900; // type:object size:0x4 scope:local align:4 data:float +@1752 = .sdata2:0x803EF904; // type:object size:0x4 scope:local align:4 data:float +@1755 = .sdata2:0x803EF908; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803EF90C; // type:object size:0x4 scope:local align:4 data:float +@1759 = .sdata2:0x803EF910; // type:object size:0x4 scope:local align:4 data:float +@1761 = .sdata2:0x803EF914; // type:object size:0x4 scope:local align:4 data:float +@1765 = .sdata2:0x803EF918; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EF91C; // type:object size:0x4 scope:local align:4 data:float +@1772 = .sdata2:0x803EF920; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EF924; // type:object size:0x4 scope:local align:4 data:float +@1817 = .sdata2:0x803EF928; // type:object size:0x4 scope:local align:4 data:float +@1855 = .sdata2:0x803EF92C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x803EF930; // type:object size:0x4 scope:local align:4 data:float +@1857 = .sdata2:0x803EF934; // type:object size:0x4 scope:local align:4 data:float +@1859 = .sdata2:0x803EF938; // type:object size:0x8 scope:local align:8 data:double +@1957 = .sdata2:0x803EF940; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803EF944; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803EF948; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EF94C; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803EF950; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x803EF954; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x803EF958; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x803EF960; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803EF968; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803EF96C; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EF970; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EF974; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EF978; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803EF97C; // type:object size:0x4 scope:local align:4 data:float +@1463 = .sdata2:0x803EF980; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EF984; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EF988; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803EF98C; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803EF990; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EF994; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EF998; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EF99C; // type:object size:0x4 scope:local align:4 data:float +@1481 = .sdata2:0x803EF9A0; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803EF9A4; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EF9A8; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EF9AC; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803EF9B0; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803EF9B4; // type:object size:0x4 scope:local align:4 data:float +@1493 = .sdata2:0x803EF9B8; // type:object size:0x4 scope:local align:4 data:float +@1495 = .sdata2:0x803EF9BC; // type:object size:0x4 scope:local align:4 data:float +@1498 = .sdata2:0x803EF9C0; // type:object size:0x4 scope:local align:4 data:float +@1500 = .sdata2:0x803EF9C4; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EF9C8; // type:object size:0x4 scope:local align:4 data:float +@1505 = .sdata2:0x803EF9CC; // type:object size:0x4 scope:local align:4 data:float +@1507 = .sdata2:0x803EF9D0; // type:object size:0x4 scope:local align:4 data:float +@1509 = .sdata2:0x803EF9D4; // type:object size:0x4 scope:local align:4 data:float +@1513 = .sdata2:0x803EF9D8; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EF9DC; // type:object size:0x4 scope:local align:4 data:float +@1517 = .sdata2:0x803EF9E0; // type:object size:0x4 scope:local align:4 data:float +@1519 = .sdata2:0x803EF9E4; // type:object size:0x4 scope:local align:4 data:float +@1521 = .sdata2:0x803EF9E8; // type:object size:0x4 scope:local align:4 data:float +@1523 = .sdata2:0x803EF9EC; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x803EF9F0; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803EF9F4; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803EF9F8; // type:object size:0x4 scope:local align:4 data:float +@1536 = .sdata2:0x803EF9FC; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803EFA00; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803EFA04; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803EFA08; // type:object size:0x4 scope:local align:4 data:float +@1616 = .sdata2:0x803EFA0C; // type:object size:0x4 scope:local align:4 data:float +@1746 = .sdata2:0x803EFA10; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803EFA14; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803EFA18; // type:object size:0x4 scope:local align:4 data:float +@1818 = .sdata2:0x803EFA1C; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803EFA20; // type:object size:0x4 scope:local align:4 data:float +@2014 = .sdata2:0x803EFA24; // type:object size:0x4 scope:local align:4 data:float +@2015 = .sdata2:0x803EFA28; // type:object size:0x4 scope:local align:4 data:float +@2016 = .sdata2:0x803EFA2C; // type:object size:0x4 scope:local align:4 data:float +@2018 = .sdata2:0x803EFA30; // type:object size:0x8 scope:local align:8 data:double +@2035 = .sdata2:0x803EFA38; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EFA3C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EFA40; // type:object size:0x4 scope:local align:4 data:float +@2055 = .sdata2:0x803EFA44; // type:object size:0x4 scope:local align:4 data:float +@2180 = .sdata2:0x803EFA48; // type:object size:0x4 scope:local align:4 data:float +@2181 = .sdata2:0x803EFA4C; // type:object size:0x4 scope:local align:4 data:float +@2182 = .sdata2:0x803EFA50; // type:object size:0x4 scope:local align:4 data:float +@2183 = .sdata2:0x803EFA54; // type:object size:0x4 scope:local align:4 data:float +@2184 = .sdata2:0x803EFA58; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803EFA5C; // type:object size:0x4 scope:local align:4 data:float +@1828 = .sdata2:0x803EFA60; // type:object size:0x4 scope:local align:4 data:float +@1829 = .sdata2:0x803EFA64; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EFA68; // type:object size:0x8 scope:local align:8 data:double +@1836 = .sdata2:0x803EFA70; // type:object size:0x8 scope:local align:8 data:double +@2052 = .sdata2:0x803EFA78; // type:object size:0x4 scope:local align:4 data:float +@2053 = .sdata2:0x803EFA7C; // type:object size:0x4 scope:local align:4 data:float +@2054 = .sdata2:0x803EFA80; // type:object size:0x4 scope:local align:4 data:float +@2056 = .sdata2:0x803EFA88; // type:object size:0x8 scope:local align:8 data:double +@2132 = .sdata2:0x803EFA90; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803EFA94; // type:object size:0x4 scope:local align:4 data:float +@2391 = .sdata2:0x803EFA98; // type:object size:0x4 scope:local align:4 data:float +@2392 = .sdata2:0x803EFA9C; // type:object size:0x4 scope:local align:4 data:float +@2393 = .sdata2:0x803EFAA0; // type:object size:0x4 scope:local align:4 data:float +@2394 = .sdata2:0x803EFAA4; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x803EFAA8; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803EFAAC; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803EFAB0; // type:object size:0x4 scope:local align:4 data:float +@2591 = .sdata2:0x803EFAB4; // type:object size:0x4 scope:local align:4 data:float +@2592 = .sdata2:0x803EFAB8; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x803EFABC; // type:object size:0x4 scope:local align:4 data:float +@2668 = .sdata2:0x803EFAC0; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x803EFAC4; // type:object size:0x4 scope:local align:4 data:float +@2854 = .sdata2:0x803EFAC8; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x803EFACC; // type:object size:0x4 scope:local align:4 data:float +@2988 = .sdata2:0x803EFAD0; // type:object size:0x4 scope:local align:4 data:float +@2989 = .sdata2:0x803EFAD4; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x803EFAD8; // type:object size:0x4 scope:local align:4 data:float +@3226 = .sdata2:0x803EFADC; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x803EFAE0; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x803EFAE4; // type:object size:0x4 scope:local align:4 data:float +@1421 = .sdata2:0x803EFAE8; // type:object size:0x4 scope:local align:4 data:float +@1423 = .sdata2:0x803EFAEC; // type:object size:0x4 scope:local align:4 data:float +@1425 = .sdata2:0x803EFAF0; // type:object size:0x4 scope:local align:4 data:float +@1428 = .sdata2:0x803EFAF4; // type:object size:0x4 scope:local align:4 data:float +@1430 = .sdata2:0x803EFAF8; // type:object size:0x4 scope:local align:4 data:float +@1432 = .sdata2:0x803EFAFC; // type:object size:0x4 scope:local align:4 data:float +@1434 = .sdata2:0x803EFB00; // type:object size:0x4 scope:local align:4 data:float +@1436 = .sdata2:0x803EFB04; // type:object size:0x4 scope:local align:4 data:float +@1438 = .sdata2:0x803EFB08; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803EFB0C; // type:object size:0x4 scope:local align:4 data:float +@1445 = .sdata2:0x803EFB10; // type:object size:0x4 scope:local align:4 data:float +@1449 = .sdata2:0x803EFB14; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EFB18; // type:object size:0x4 scope:local align:4 data:float +@1455 = .sdata2:0x803EFB1C; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x803EFB20; // type:object size:0x4 scope:local align:4 data:float +@1459 = .sdata2:0x803EFB24; // type:object size:0x4 scope:local align:4 data:float +@1465 = .sdata2:0x803EFB28; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803EFB2C; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803EFB30; // type:object size:0x4 scope:local align:4 data:float +@1472 = .sdata2:0x803EFB34; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x803EFB38; // type:object size:0x4 scope:local align:4 data:float +@1476 = .sdata2:0x803EFB3C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803EFB40; // type:object size:0x4 scope:local align:4 data:float +@1480 = .sdata2:0x803EFB44; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803EFB48; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EFB4C; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EFB50; // type:object size:0x4 scope:local align:4 data:float +@1515 = .sdata2:0x803EFB54; // type:object size:0x4 scope:local align:4 data:float +@1609 = .sdata2:0x803EFB58; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x803EFB5C; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803EFB60; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803EFB64; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803EFB68; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803EFB6C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803EFB70; // type:object size:0x8 scope:local align:8 data:double +@2075 = .sdata2:0x803EFB78; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EFB7C; // type:object size:0x4 scope:local align:4 data:float +@2386 = .sdata2:0x803EFB80; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x803EFB84; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x803EFB88; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x803EFB8C; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x803EFB90; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x803EFB94; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x803EFB98; // type:object size:0x4 scope:local align:4 data:float +@1299 = .sdata2:0x803EFBA0; // type:object size:0x4 scope:local align:4 data:float +@1322 = .sdata2:0x803EFBA4; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803EFBA8; // type:object size:0x4 scope:local align:4 data:float +@1350 = .sdata2:0x803EFBAC; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803EFBB0; // type:object size:0x4 scope:local align:4 data:float +@1664 = .sdata2:0x803EFBB4; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EFBB8; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EFBBC; // type:object size:0x4 scope:local align:4 data:float +@1740 = .sdata2:0x803EFBC0; // type:object size:0x8 scope:local align:8 data:double +@1781 = .sdata2:0x803EFBC8; // type:object size:0x4 scope:local align:4 data:float +@2169 = .sdata2:0x803EFBCC; // type:object size:0x4 scope:local align:4 data:float +@2170 = .sdata2:0x803EFBD0; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EFBD8; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EFBDC; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EFBE0; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EFBE4; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EFBE8; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EFBEC; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EFBF0; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EFBF4; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EFBF8; // type:object size:0x4 scope:local align:4 data:float +@1387 = .sdata2:0x803EFBFC; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EFC00; // type:object size:0x4 scope:local align:4 data:float +@1392 = .sdata2:0x803EFC04; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EFC08; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EFC0C; // type:object size:0x4 scope:local align:4 data:float +@1402 = .sdata2:0x803EFC10; // type:object size:0x4 scope:local align:4 data:float +@1404 = .sdata2:0x803EFC14; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EFC18; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x803EFC1C; // type:object size:0x4 scope:local align:4 data:float +@1555 = .sdata2:0x803EFC20; // type:object size:0x4 scope:local align:4 data:float +@1598 = .sdata2:0x803EFC24; // type:object size:0x4 scope:local align:4 data:float +@1738 = .sdata2:0x803EFC28; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x803EFC30; // type:object size:0x8 scope:local align:8 data:double +@1740 = .sdata2:0x803EFC38; // type:object size:0x8 scope:local align:8 data:double +@1786 = .sdata2:0x803EFC40; // type:object size:0x4 scope:local align:4 data:float +@1709 = .sdata2:0x803EFC48; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x803EFC4C; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x803EFC50; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x803EFC58; // type:object size:0x8 scope:local align:8 data:double +@2005 = .sdata2:0x803EFC60; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803EFC64; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803EFC68; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x803EFC6C; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x803EFC70; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803EFC74; // type:object size:0x4 scope:local align:4 data:float +@2795 = .sdata2:0x803EFC78; // type:object size:0x4 scope:local align:4 data:float +@2901 = .sdata2:0x803EFC7C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x803EFC80; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x803EFC84; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x803EFC88; // type:object size:0x4 scope:local align:4 data:float +@3148 = .sdata2:0x803EFC8C; // type:object size:0x4 scope:local align:4 data:float +@3318 = .sdata2:0x803EFC90; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x803EFC94; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x803EFC98; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x803EFC9C; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x803EFCA0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x803EFCA4; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x803EFCA8; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x803EFCAC; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x803EFCB0; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x803EFCB4; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x803EFCB8; // type:object size:0x4 scope:local align:4 data:float +@4550 = .sdata2:0x803EFCBC; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x803EFCC0; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x803EFCC4; // type:object size:0x4 scope:local align:4 data:float +@1035 = .sdata2:0x803EFCC8; // type:object size:0x4 scope:local align:4 data:float +@1108 = .sdata2:0x803EFCCC; // type:object size:0x4 scope:local align:4 data:float +@1114 = .sdata2:0x803EFCD0; // type:object size:0x8 scope:local align:8 data:double +@1115 = .sdata2:0x803EFCD8; // type:object size:0x8 scope:local align:8 data:double +@1174 = .sdata2:0x803EFCE0; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803EFCE4; // type:object size:0x4 scope:local align:4 data:float +@992 = .sdata2:0x803EFCE8; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EFCEC; // type:object size:0x4 scope:local align:4 data:float +@1000 = .sdata2:0x803EFCF0; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803EFCF4; // type:object size:0x4 scope:local align:4 data:float +@1356 = .sdata2:0x803EFCF8; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EFCFC; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803EFD00; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803EFD04; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EFD08; // type:object size:0x4 scope:local align:4 data:float +@1369 = .sdata2:0x803EFD0C; // type:object size:0x4 scope:local align:4 data:float +@1373 = .sdata2:0x803EFD10; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EFD14; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EFD18; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EFD1C; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EFD20; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803EFD24; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803EFD28; // type:object size:0x4 scope:local align:4 data:float +@1389 = .sdata2:0x803EFD2C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EFD30; // type:object size:0x4 scope:local align:4 data:float +@1395 = .sdata2:0x803EFD34; // type:object size:0x4 scope:local align:4 data:float +@1397 = .sdata2:0x803EFD38; // type:object size:0x4 scope:local align:4 data:float +@1399 = .sdata2:0x803EFD3C; // type:object size:0x4 scope:local align:4 data:float +@1401 = .sdata2:0x803EFD40; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x803EFD44; // type:object size:0x4 scope:local align:4 data:float +@1417 = .sdata2:0x803EFD48; // type:object size:0x4 scope:local align:4 data:float +@1442 = .sdata2:0x803EFD4C; // type:object size:0x4 scope:local align:4 data:float +@1451 = .sdata2:0x803EFD50; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803EFD54; // type:object size:0x4 scope:local align:4 data:float +@1503 = .sdata2:0x803EFD58; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x803EFD60; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x803EFD64; // type:object size:0x4 scope:local align:4 data:float +@1750 = .sdata2:0x803EFD68; // type:object size:0x4 scope:local align:4 data:float +@1751 = .sdata2:0x803EFD6C; // type:object size:0x4 scope:local align:4 data:float +@1813 = .sdata2:0x803EFD70; // type:object size:0x4 scope:local align:4 data:float +@1884 = .sdata2:0x803EFD74; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803EFD78; // type:object size:0x4 scope:local align:4 data:float +@2048 = .sdata2:0x803EFD7C; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803EFD80; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803EFD84; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803EFD88; // type:object size:0x8 scope:local align:8 data:double +@2306 = .sdata2:0x803EFD90; // type:object size:0x4 scope:local align:4 data:float +@2411 = .sdata2:0x803EFD94; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803EFD98; // type:object size:0x4 scope:local align:4 data:float +@2629 = .sdata2:0x803EFD9C; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x803EFDA0; // type:object size:0x4 scope:local align:4 data:float +@3124 = .sdata2:0x803EFDA4; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x803EFDA8; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x803EFDAC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x803EFDB0; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x803EFDB4; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x803EFDB8; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x803EFDBC; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x803EFDC0; // type:object size:0x4 scope:local align:4 data:float +@1454 = .sdata2:0x803EFDC8; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803EFDCC; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803EFDD0; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803EFDD4; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803EFDD8; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x803EFDE0; // type:object size:0x8 scope:local align:8 data:double +@1495 = .sdata2:0x803EFDE8; // type:object size:0x8 scope:local align:8 data:double +@1620 = .sdata2:0x803EFDF0; // type:object size:0x4 scope:local align:4 data:float +@1629 = .sdata2:0x803EFDF4; // type:object size:0x4 scope:local align:4 data:float +@1643 = .sdata2:0x803EFDF8; // type:object size:0x4 scope:local align:4 data:float +@1644 = .sdata2:0x803EFDFC; // type:object size:0x4 scope:local align:4 data:float +@1731 = .sdata2:0x803EFE00; // type:object size:0x4 scope:local align:4 data:float +@2000 = .sdata2:0x803EFE04; // type:object size:0x4 scope:local align:4 data:float +@2104 = .sdata2:0x803EFE08; // type:object size:0x4 scope:local align:4 data:float +@2145 = .sdata2:0x803EFE0C; // type:object size:0x4 scope:local align:4 data:float +@1365 = .sdata2:0x803EFE10; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EFE14; // type:object size:0x4 scope:local align:4 data:float +@1370 = .sdata2:0x803EFE18; // type:object size:0x4 scope:local align:4 data:float +@1372 = .sdata2:0x803EFE1C; // type:object size:0x4 scope:local align:4 data:float +@1375 = .sdata2:0x803EFE20; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EFE24; // type:object size:0x4 scope:local align:4 data:float +@1379 = .sdata2:0x803EFE28; // type:object size:0x4 scope:local align:4 data:float +@1381 = .sdata2:0x803EFE2C; // type:object size:0x4 scope:local align:4 data:float +@1384 = .sdata2:0x803EFE30; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803EFE34; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803EFE38; // type:object size:0x4 scope:local align:4 data:float +@1390 = .sdata2:0x803EFE3C; // type:object size:0x4 scope:local align:4 data:float +@1391 = .sdata2:0x803EFE40; // type:object size:0x4 scope:local align:4 data:float +@1400 = .sdata2:0x803EFE44; // type:object size:0x4 scope:local align:4 data:float +@1406 = .sdata2:0x803EFE48; // type:object size:0x4 scope:local align:4 data:float +@1712 = .sdata2:0x803EFE50; // type:object size:0x4 scope:local align:4 data:float +@1713 = .sdata2:0x803EFE54; // type:object size:0x4 scope:local align:4 data:float +@1714 = .sdata2:0x803EFE58; // type:object size:0x4 scope:local align:4 data:float +@1715 = .sdata2:0x803EFE5C; // type:object size:0x4 scope:local align:4 data:float +@1717 = .sdata2:0x803EFE60; // type:object size:0x8 scope:local align:8 data:double +@1890 = .sdata2:0x803EFE68; // type:object size:0x4 scope:local align:4 data:float +@1891 = .sdata2:0x803EFE6C; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803EFE70; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803EFE74; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803EFE78; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803EFE7C; // type:object size:0x4 scope:local align:4 data:float +@2063 = .sdata2:0x803EFE80; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803EFE84; // type:object size:0x4 scope:local align:4 data:float +@2228 = .sdata2:0x803EFE88; // type:object size:0x4 scope:local align:4 data:float +@2330 = .sdata2:0x803EFE8C; // type:object size:0x4 scope:local align:4 data:float +@2331 = .sdata2:0x803EFE90; // type:object size:0x4 scope:local align:4 data:float +@2571 = .sdata2:0x803EFE94; // type:object size:0x4 scope:local align:4 data:float +@2708 = .sdata2:0x803EFE98; // type:object size:0x4 scope:local align:4 data:float +@997 = .sdata2:0x803EFEA0; // type:object size:0x4 scope:local align:4 data:float +@999 = .sdata2:0x803EFEA4; // type:object size:0x4 scope:local align:4 data:float +@1001 = .sdata2:0x803EFEA8; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EFEAC; // type:object size:0x4 scope:local align:4 data:float +@1005 = .sdata2:0x803EFEB0; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803EFEB4; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803EFEB8; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803EFEBC; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803EFEC0; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803EFEC4; // type:object size:0x4 scope:local align:4 data:float +@1040 = .sdata2:0x803EFEC8; // type:object size:0x4 scope:local align:4 data:float +@1041 = .sdata2:0x803EFECC; // type:object size:0x4 scope:local align:4 data:float +@1043 = .sdata2:0x803EFED0; // type:object size:0x8 scope:local align:8 data:double +@1682 = .sdata2:0x803EFED8; // type:object size:0x4 scope:local align:4 data:float +@1683 = .sdata2:0x803EFEDC; // type:object size:0x4 scope:local align:4 data:float +@1684 = .sdata2:0x803EFEE0; // type:object size:0x4 scope:local align:4 data:float +@1685 = .sdata2:0x803EFEE4; // type:object size:0x4 scope:local align:4 data:float +@1686 = .sdata2:0x803EFEE8; // type:object size:0x4 scope:local align:4 data:float +@1687 = .sdata2:0x803EFEEC; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EFEF0; // type:object size:0x8 scope:local align:8 data:double +@1738 = .sdata2:0x803EFEF8; // type:object size:0x4 scope:local align:4 data:float +@1799 = .sdata2:0x803EFEFC; // type:object size:0x4 scope:local align:4 data:float +@1800 = .sdata2:0x803EFF00; // type:object size:0x8 scope:local align:8 data:double +@1801 = .sdata2:0x803EFF08; // type:object size:0x8 scope:local align:8 data:double +@1802 = .sdata2:0x803EFF10; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803EFF14; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803EFF18; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803EFF1C; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803EFF20; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803EFF24; // type:object size:0x4 scope:local align:4 data:float +@933 = .sdata2:0x803EFF28; // type:object size:0x4 scope:local align:4 data:float +@934 = .sdata2:0x803EFF2C; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x803EFF30; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x803EFF34; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803EFF38; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803EFF3C; // type:object size:0x4 scope:local align:4 data:float +@1086 = .sdata2:0x803EFF40; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803EFF44; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803EFF48; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EFF50; // type:object size:0x4 scope:local align:4 data:float +@1720 = .sdata2:0x803EFF54; // type:object size:0x4 scope:local align:4 data:float +@1357 = .sdata2:0x803EFF58; // type:object size:0x4 scope:local align:4 data:float +@1358 = .sdata2:0x803EFF5C; // type:object size:0x4 scope:local align:4 data:float +@1367 = .sdata2:0x803EFF60; // type:object size:0x4 scope:local align:4 data:float +@1377 = .sdata2:0x803EFF64; // type:object size:0x4 scope:local align:4 data:float +@1378 = .sdata2:0x803EFF68; // type:object size:0x4 scope:local align:4 data:float +@1689 = .sdata2:0x803EFF70; // type:object size:0x4 scope:local align:4 data:float +@1721 = .sdata2:0x803EFF74; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x803EFF78; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x803EFF7C; // type:object size:0x4 scope:local align:4 data:float +@998 = .sdata2:0x803EFF80; // type:object size:0x4 scope:local align:4 data:float +@1002 = .sdata2:0x803EFF84; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803EFF88; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803EFF90; // type:object size:0x4 scope:local align:4 data:float +@1408 = .sdata2:0x803EFF94; // type:object size:0x4 scope:local align:4 data:float +@1431 = .sdata2:0x803EFF98; // type:object size:0x4 scope:local align:4 data:float +@1585 = .sdata2:0x803EFF9C; // type:object size:0x4 scope:local align:4 data:float +@1586 = .sdata2:0x803EFFA0; // type:object size:0x4 scope:local align:4 data:float +@1587 = .sdata2:0x803EFFA4; // type:object size:0x4 scope:local align:4 data:float +@400 = .sdata2:0x803EFFA8; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EFFAC; // type:object size:0x4 scope:local align:4 data:float +@402 = .sdata2:0x803EFFB0; // type:object size:0x4 scope:local align:4 data:float +@446 = .sdata2:0x803EFFB4; // type:object size:0x4 scope:local align:4 data:float +@447 = .sdata2:0x803EFFB8; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x803EFFC0; // type:object size:0x8 scope:local align:8 data:double +@525 = .sdata2:0x803EFFC8; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803EFFD0; // type:object size:0x4 scope:local align:4 data:float +@1102 = .sdata2:0x803EFFD4; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803EFFD8; // type:object size:0x4 scope:local align:4 data:float +@1499 = .sdata2:0x803EFFDC; // type:object size:0x4 scope:local align:4 data:float +@401 = .sdata2:0x803EFFE0; // type:object size:0x4 scope:local align:4 data:float +@413 = .sdata2:0x803EFFE4; // type:object size:0x4 scope:local align:4 data:float +@979 = .sdata2:0x803EFFE8; // type:object size:0x4 scope:local align:4 data:float +@980 = .sdata2:0x803EFFEC; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x803EFFF0; // type:object size:0x4 scope:local align:4 data:float +@1185 = .sdata2:0x803EFFF4; // type:object size:0x4 scope:local align:4 data:float +@1186 = .sdata2:0x803EFFF8; // type:object size:0x4 scope:local align:4 data:float +@1202 = .sdata2:0x803F0000; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F0008; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F000C; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F0010; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F0014; // type:object size:0x4 scope:local align:4 data:float +@946 = .sdata2:0x803F0018; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803F0020; // type:object size:0x8 scope:local align:8 data:double +@1211 = .sdata2:0x803F0028; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F0030; // type:object size:0x4 scope:local align:4 data:float +@1247 = .sdata2:0x803F0034; // type:object size:0x4 scope:local align:4 data:float +@1615 = .sdata2:0x803F0038; // type:object size:0x4 scope:local align:4 data:float +@1660 = .sdata2:0x803F003C; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F0040; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F0048; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803F004C; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F0050; // type:object size:0x4 scope:local align:4 data:float +@1250 = .sdata2:0x803F0054; // type:object size:0x4 scope:local align:4 data:float +@1207 = .sdata2:0x803F0058; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F005C; // type:object size:0x4 scope:local align:4 data:float +@1317 = .sdata2:0x803F0060; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F0064; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F0068; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F006C; // type:object size:0x4 scope:local align:4 data:float +@899 = .sdata2:0x803F0070; // type:object size:0x8 scope:local align:8 data:double +@921 = .sdata2:0x803F0078; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F007C; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F0080; // type:object size:0x4 scope:local align:4 data:float +@995 = .sdata2:0x803F0084; // type:object size:0x4 scope:local align:4 data:float +@1010 = .sdata2:0x803F0088; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803F008C; // type:object size:0x4 scope:local align:4 data:float +@1582 = .sdata2:0x803F0090; // type:object size:0x4 scope:local align:4 data:float +@1654 = .sdata2:0x803F0094; // type:object size:0x4 scope:local align:4 data:float +@1655 = .sdata2:0x803F0098; // type:object size:0x8 scope:local align:8 data:double +@1656 = .sdata2:0x803F00A0; // type:object size:0x8 scope:local align:8 data:double +@1657 = .sdata2:0x803F00A8; // type:object size:0x4 scope:local align:4 data:float +@1658 = .sdata2:0x803F00AC; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F00B0; // type:object size:0x4 scope:local align:4 data:float +@1679 = .sdata2:0x803F00B4; // type:object size:0x4 scope:local align:4 data:float +@1680 = .sdata2:0x803F00B8; // type:object size:0x4 scope:local align:4 data:float +@1785 = .sdata2:0x803F00C0; // type:object size:0x4 scope:local align:4 data:float +@1786 = .sdata2:0x803F00C4; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F00C8; // type:object size:0x4 scope:local align:4 data:float +@1788 = .sdata2:0x803F00CC; // type:object size:0x4 scope:local align:4 data:float +@1789 = .sdata2:0x803F00D0; // type:object size:0x4 scope:local align:4 data:float +@1790 = .sdata2:0x803F00D4; // type:object size:0x4 scope:local align:4 data:float +@1791 = .sdata2:0x803F00D8; // type:object size:0x4 scope:local align:4 data:float +@1792 = .sdata2:0x803F00DC; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F00E0; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F00E4; // type:object size:0x4 scope:local align:4 data:float +@2060 = .sdata2:0x803F00E8; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803F00EC; // type:object size:0x4 scope:local align:4 data:float +@2110 = .sdata2:0x803F00F0; // type:object size:0x4 scope:local align:4 data:float +@2583 = .sdata2:0x803F00F4; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803F00F8; // type:object size:0x8 scope:local align:8 data:double +@2684 = .sdata2:0x803F0100; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x803F0104; // type:object size:0x4 scope:local align:4 data:float +@2686 = .sdata2:0x803F0108; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x803F0110; // type:object size:0x8 scope:local align:8 data:double +@2703 = .sdata2:0x803F0118; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803F0120; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x803F0124; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x803F0128; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x803F012C; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x803F0130; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x803F0134; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x803F0138; // type:object size:0x4 scope:local align:4 data:float +@2778 = .sdata2:0x803F013C; // type:object size:0x4 scope:local align:4 data:float +@3041 = .sdata2:0x803F0140; // type:object size:0x4 scope:local align:4 data:4byte +@3061 = .sdata2:0x803F0144; // type:object size:0x4 scope:local align:4 data:float +@3062 = .sdata2:0x803F0148; // type:object size:0x4 scope:local align:4 data:float +@3063 = .sdata2:0x803F014C; // type:object size:0x4 scope:local align:4 data:float +@996 = .sdata2:0x803F0150; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803F0154; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F0158; // type:object size:0x4 scope:local align:4 data:float +@1034 = .sdata2:0x803F0160; // type:object size:0x8 scope:local align:8 data:double +@1046 = .sdata2:0x803F0168; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x803F016C; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata2:0x803F0170; // type:object size:0x8 scope:local align:8 data:double +@1489 = .sdata2:0x803F0178; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x803F017C; // type:object size:0x4 scope:local align:4 data:float +@1570 = .sdata2:0x803F0180; // type:object size:0x4 scope:local align:4 data:float +@1753 = .sdata2:0x803F0184; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F0188; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803F018C; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803F0190; // type:object size:0x4 scope:local align:4 data:float +@2437 = .sdata2:0x803F0194; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803F0198; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x803F019C; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x803F01A0; // type:object size:0x4 scope:local align:4 data:float +@1876 = .sdata2:0x803F01A8; // type:object size:0x4 scope:local align:4 data:float +@1877 = .sdata2:0x803F01AC; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F01B0; // type:object size:0x4 scope:local align:4 data:float +@1985 = .sdata2:0x803F01B4; // type:object size:0x3 scope:local align:4 data:2byte +@2069 = .sdata2:0x803F01B8; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F01BC; // type:object size:0x4 scope:local align:4 data:float +@2117 = .sdata2:0x803F01C0; // type:object size:0x4 scope:local align:4 data:float +@2234 = .sdata2:0x803F01C4; // type:object size:0x4 scope:local align:4 data:float +@2235 = .sdata2:0x803F01C8; // type:object size:0x4 scope:local align:4 data:float +@2236 = .sdata2:0x803F01CC; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x803F01D0; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803F01D4; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803F01D8; // type:object size:0x4 scope:local align:4 data:float +@2245 = .sdata2:0x803F01DC; // type:object size:0x4 scope:local align:4 data:4byte +@2258 = .sdata2:0x803F01E0; // type:object size:0x4 scope:local align:4 data:float +@2259 = .sdata2:0x803F01E4; // type:object size:0x4 scope:local align:4 data:float +@2260 = .sdata2:0x803F01E8; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F01F0; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F01F4; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803F01F8; // type:object size:0x4 scope:local align:4 data:float +@1383 = .sdata2:0x803F01FC; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F0200; // type:object size:0x8 scope:local align:8 data:double +@2123 = .sdata2:0x803F0208; // type:object size:0x4 scope:local align:4 data:float +@2124 = .sdata2:0x803F020C; // type:object size:0x4 scope:local align:4 data:float +@2156 = .sdata2:0x803F0210; // type:object size:0x4 scope:local align:4 data:float +@2157 = .sdata2:0x803F0214; // type:object size:0x4 scope:local align:4 data:float +@1165 = .sdata2:0x803F0218; // type:object size:0x4 scope:local align:4 data:float +@1335 = .sdata2:0x803F0220; // type:object size:0x8 scope:local align:8 data:double +@1358 = .sdata2:0x803F0228; // type:object size:0x4 scope:local align:4 data:float +@1359 = .sdata2:0x803F022C; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F0230; // type:object size:0x4 scope:local align:4 data:float +@1443 = .sdata2:0x803F0234; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F0238; // type:object size:0x4 scope:local align:4 data:float +@1527 = .sdata2:0x803F023C; // type:object size:0x4 scope:local align:4 data:float +@1528 = .sdata2:0x803F0240; // type:object size:0x4 scope:local align:4 data:float +@1610 = .sdata2:0x803F0244; // type:object size:0x4 scope:local align:4 data:float +@1710 = .sdata2:0x803F0248; // type:object size:0x4 scope:local align:4 data:float +@1924 = .sdata2:0x803F024C; // type:object size:0x4 scope:local align:4 data:float +@1925 = .sdata2:0x803F0250; // type:object size:0x4 scope:local align:4 data:float +@1926 = .sdata2:0x803F0254; // type:object size:0x4 scope:local align:4 data:float +@1927 = .sdata2:0x803F0258; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F025C; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0260; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x803F0268; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x803F026C; // type:object size:0x4 scope:local align:4 data:float +@1838 = .sdata2:0x803F0270; // type:object size:0x4 scope:local align:4 data:float +@1845 = .sdata2:0x803F0274; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x803F0278; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F027C; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F0280; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F0284; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F0288; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F028C; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F0290; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F0294; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F0298; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x803F029C; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F02A0; // type:object size:0x4 scope:local align:4 data:float +@1935 = .sdata2:0x803F02A4; // type:object size:0x4 scope:local align:4 data:float +@2166 = .sdata2:0x803F02A8; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803F02AC; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x803F02B0; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x803F02B4; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x803F02B8; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x803F02BC; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803F02C0; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803F02C4; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F02C8; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x803F02D0; // type:object size:0x4 scope:local align:4 data:4byte +@2813 = .sdata2:0x803F02D4; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F02D8; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F02DC; // type:object size:0x4 scope:local align:4 data:float +@938 = .sdata2:0x803F02E0; // type:object size:0x4 scope:local align:4 data:float +@1345 = .sdata2:0x803F02E8; // type:object size:0x4 scope:local align:4 data:float +@1346 = .sdata2:0x803F02EC; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F02F0; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F02F4; // type:object size:0x4 scope:local align:4 data:float +@1469 = .sdata2:0x803F02F8; // type:object size:0x4 scope:local align:4 data:float +@1470 = .sdata2:0x803F02FC; // type:object size:0x4 scope:local align:4 data:float +@1471 = .sdata2:0x803F0300; // type:object size:0x4 scope:local align:4 data:float +@1483 = .sdata2:0x803F0304; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F0308; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803F0310; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F0314; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F0318; // type:object size:0x4 scope:local align:4 data:float +@1003 = .sdata2:0x803F031C; // type:object size:0x4 scope:local align:4 data:float +@1004 = .sdata2:0x803F0320; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F0328; // type:object size:0x8 scope:local align:8 data:double +@1274 = .sdata2:0x803F0330; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F0334; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F0338; // type:object size:0x4 scope:local align:4 data:float +@1546 = .sdata2:0x803F033C; // type:object size:0x4 scope:local align:4 data:float +@1549 = .sdata2:0x803F0340; // type:object size:0x8 scope:local align:8 data:double +@1562 = .sdata2:0x803F0348; // type:object size:0x4 scope:local align:4 data:float +@1563 = .sdata2:0x803F034C; // type:object size:0x4 scope:local align:4 data:float +@1865 = .sdata2:0x803F0350; // type:object size:0x4 scope:local align:4 data:float +@1866 = .sdata2:0x803F0354; // type:object size:0x4 scope:local align:4 data:float +@1867 = .sdata2:0x803F0358; // type:object size:0x4 scope:local align:4 data:float +@1869 = .sdata2:0x803F0360; // type:object size:0x8 scope:local align:8 data:double +@1891 = .sdata2:0x803F0368; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F036C; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F0370; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F0374; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803F0378; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F037C; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F0380; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F0384; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F0388; // type:object size:0x8 scope:local align:8 data:double +@1149 = .sdata2:0x803F0390; // type:object size:0x4 scope:local align:4 data:float +@1150 = .sdata2:0x803F0394; // type:object size:0x4 scope:local align:4 data:float +@1151 = .sdata2:0x803F0398; // type:object size:0x4 scope:local align:4 data:float +@1152 = .sdata2:0x803F039C; // type:object size:0x4 scope:local align:4 data:float +@902 = .sdata2:0x803F03A0; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803F03A4; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x803F03A8; // type:object size:0x4 scope:local align:4 data:float +@936 = .sdata2:0x803F03AC; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x803F03B0; // type:object size:0x4 scope:local align:4 data:float +@939 = .sdata2:0x803F03B8; // type:object size:0x8 scope:local align:8 data:double +@1027 = .sdata2:0x803F03C0; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sdata2:0x803F03C4; // type:object size:0x4 scope:local align:4 data:float +@1029 = .sdata2:0x803F03C8; // type:object size:0x4 scope:local align:4 data:float +@1030 = .sdata2:0x803F03CC; // type:object size:0x4 scope:local align:4 data:float +@1031 = .sdata2:0x803F03D0; // type:object size:0x4 scope:local align:4 data:float +@1360 = .sdata2:0x803F03D8; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F03DC; // type:object size:0x4 scope:local align:4 data:float +@1362 = .sdata2:0x803F03E0; // type:object size:0x4 scope:local align:4 data:float +@872 = .sdata2:0x803F03E8; // type:object size:0x4 scope:local align:4 data:float +@906 = .sdata2:0x803F03EC; // type:object size:0x4 scope:local align:4 data:float +@907 = .sdata2:0x803F03F0; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F03F4; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F03F8; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F03FC; // type:object size:0x4 scope:local align:4 data:float +@919 = .sdata2:0x803F0400; // type:object size:0x4 scope:local align:4 data:float +@920 = .sdata2:0x803F0404; // type:object size:0x4 scope:local align:4 data:float +@777 = .sdata2:0x803F0408; // type:object size:0x4 scope:local align:4 data:float +@778 = .sdata2:0x803F040C; // type:object size:0x4 scope:local align:4 data:float +@888 = .sdata2:0x803F0410; // type:object size:0x4 scope:local align:4 data:float +@890 = .sdata2:0x803F0418; // type:object size:0x8 scope:local align:8 data:double +@1109 = .sdata2:0x803F0420; // type:object size:0x4 scope:local align:4 data:float +@1110 = .sdata2:0x803F0424; // type:object size:0x4 scope:local align:4 data:float +@1461 = .sdata2:0x803F0428; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F042C; // type:object size:0x4 scope:local align:4 data:float +@1478 = .sdata2:0x803F0430; // type:object size:0x4 scope:local align:4 data:float +@1482 = .sdata2:0x803F0434; // type:object size:0x4 scope:local align:4 data:float +@1484 = .sdata2:0x803F0438; // type:object size:0x4 scope:local align:4 data:float +@1662 = .sdata2:0x803F043C; // type:object size:0x4 scope:local align:4 data:float +@1858 = .sdata2:0x803F0440; // type:object size:0x4 scope:local align:4 data:float +@1860 = .sdata2:0x803F0448; // type:object size:0x8 scope:local align:8 data:double +@493 = .sdata2:0x803F0450; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x803F0454; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x803F0458; // type:object size:0x8 scope:local align:8 data:double +@654 = .sdata2:0x803F0460; // type:object size:0x8 scope:local align:8 data:double +@1234 = .sdata2:0x803F0468; // type:object size:0x4 scope:local align:4 data:float +@1254 = .sdata2:0x803F046C; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F0470; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F0474; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F0478; // type:object size:0x4 scope:local align:4 data:float +@1388 = .sdata2:0x803F0480; // type:object size:0x8 scope:local align:8 data:double +@770 = .sdata2:0x803F0488; // type:object size:0x4 scope:local align:4 data:float +@1314 = .sdata2:0x803F048C; // type:object size:0x4 scope:local align:4 data:float +@1315 = .sdata2:0x803F0490; // type:object size:0x4 scope:local align:4 data:float +@1316 = .sdata2:0x803F0498; // type:object size:0x8 scope:local align:8 data:double +@1317 = .sdata2:0x803F04A0; // type:object size:0x8 scope:local align:8 data:double +@1318 = .sdata2:0x803F04A8; // type:object size:0x4 scope:local align:4 data:float +@1320 = .sdata2:0x803F04B0; // type:object size:0x8 scope:local align:8 data:double +@1405 = .sdata2:0x803F04B8; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F04C0; // type:object size:0x8 scope:local align:8 data:double +@2012 = .sdata2:0x803F04C8; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F04CC; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F04D0; // type:object size:0x4 scope:local align:4 data:float +@2062 = .sdata2:0x803F04D4; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x803F04D8; // type:object size:0x4 scope:local align:4 data:float +@673 = .sdata2:0x803F04E0; // type:object size:0x4 scope:local align:4 data:float +@674 = .sdata2:0x803F04E4; // type:object size:0x4 scope:local align:4 data:float +@683 = .sdata2:0x803F04E8; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x803F04EC; // type:object size:0x4 scope:local align:4 data:float +@686 = .sdata2:0x803F04F0; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F04F8; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x803F0500; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F0504; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F0508; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F0510; // type:object size:0x8 scope:local align:8 data:double +@734 = .sdata2:0x803F0518; // type:object size:0x4 scope:local align:4 data:float +@736 = .sdata2:0x803F0520; // type:object size:0x8 scope:local align:8 data:double +@1371 = .sdata2:0x803F0528; // type:object size:0x4 scope:local align:4 data:float +@1376 = .sdata2:0x803F052C; // type:object size:0x4 scope:local align:4 data:float +@1466 = .sdata2:0x803F0530; // type:object size:0x4 scope:local align:4 data:float +@1467 = .sdata2:0x803F0534; // type:object size:0x4 scope:local align:4 data:float +@1468 = .sdata2:0x803F0538; // type:object size:0x4 scope:local align:4 data:float +@1501 = .sdata2:0x803F053C; // type:object size:0x4 scope:local align:4 data:float +@1502 = .sdata2:0x803F0540; // type:object size:0x4 scope:local align:4 data:float +@1543 = .sdata2:0x803F0544; // type:object size:0x4 scope:local align:4 data:float +@1544 = .sdata2:0x803F0548; // type:object size:0x4 scope:local align:4 data:float +@1545 = .sdata2:0x803F054C; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0550; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0554; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0558; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F055C; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0560; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0564; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F0568; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F056C; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F0570; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F0574; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F0578; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F057C; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F0580; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F0584; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F0588; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F058C; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F0590; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F0594; // type:object size:0x4 scope:local align:4 data:float +@1970 = .sdata2:0x803F0598; // type:object size:0x4 scope:local align:4 data:float +@1971 = .sdata2:0x803F059C; // type:object size:0x4 scope:local align:4 data:float +@1972 = .sdata2:0x803F05A0; // type:object size:0x4 scope:local align:4 data:float +@1973 = .sdata2:0x803F05A4; // type:object size:0x4 scope:local align:4 data:float +@1974 = .sdata2:0x803F05A8; // type:object size:0x4 scope:local align:4 data:float +@2284 = .sdata2:0x803F05AC; // type:object size:0x4 scope:local align:4 data:float +@2285 = .sdata2:0x803F05B0; // type:object size:0x4 scope:local align:4 data:float +@2566 = .sdata2:0x803F05B4; // type:object size:0x4 scope:local align:4 data:float +@2607 = .sdata2:0x803F05B8; // type:object size:0x8 scope:local align:8 data:double +@2608 = .sdata2:0x803F05C0; // type:object size:0x8 scope:local align:8 data:double +@2617 = .sdata2:0x803F05C8; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F05CC; // type:object size:0x4 scope:local align:4 data:float +@2864 = .sdata2:0x803F05D0; // type:object size:0x4 scope:local align:4 data:float +@2064 = .sdata2:0x803F05D8; // type:object size:0x4 scope:local align:4 data:float +@2065 = .sdata2:0x803F05DC; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F05E0; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F05E4; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F05E8; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F05EC; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F05F0; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F05F4; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F05F8; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F05FC; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F0600; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F0604; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F0608; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F060C; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F0610; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F0614; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F0618; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F061C; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F0620; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F0624; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F0628; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F062C; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F0630; // type:object size:0x4 scope:local align:4 data:float +@2093 = .sdata2:0x803F0634; // type:object size:0x4 scope:local align:4 data:float +@2094 = .sdata2:0x803F0638; // type:object size:0x4 scope:local align:4 data:float +@2433 = .sdata2:0x803F063C; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F0640; // type:object size:0x4 scope:local align:4 data:float +@2435 = .sdata2:0x803F0644; // type:object size:0x4 scope:local align:4 data:float +@2436 = .sdata2:0x803F0648; // type:object size:0x4 scope:local align:4 data:float +@2600 = .sdata2:0x803F064C; // type:object size:0x4 scope:local align:4 data:float +@2759 = .sdata2:0x803F0650; // type:object size:0x4 scope:local align:4 data:float +@2760 = .sdata2:0x803F0654; // type:object size:0x4 scope:local align:4 data:float +@2761 = .sdata2:0x803F0658; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x803F065C; // type:object size:0x4 scope:local align:4 data:float +@2845 = .sdata2:0x803F0660; // type:object size:0x8 scope:local align:8 data:double +@2968 = .sdata2:0x803F0668; // type:object size:0x4 scope:local align:4 data:float +@3144 = .sdata2:0x803F066C; // type:object size:0x4 scope:local align:4 data:float +@3145 = .sdata2:0x803F0670; // type:object size:0x4 scope:local align:4 data:float +@3261 = .sdata2:0x803F0674; // type:object size:0x4 scope:local align:4 data:float +@3262 = .sdata2:0x803F0678; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x803F067C; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x803F0680; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x803F0684; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F0688; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x803F0690; // type:object size:0x4 scope:local align:4 data:float +@1853 = .sdata2:0x803F0694; // type:object size:0x4 scope:local align:4 data:float +@1885 = .sdata2:0x803F0698; // type:object size:0x4 scope:local align:4 data:float +@1886 = .sdata2:0x803F069C; // type:object size:0x4 scope:local align:4 data:float +@1887 = .sdata2:0x803F06A0; // type:object size:0x4 scope:local align:4 data:float +@1889 = .sdata2:0x803F06A8; // type:object size:0x8 scope:local align:8 data:double +@1960 = .sdata2:0x803F06B0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F06B8; // type:object size:0x8 scope:local align:8 data:double +@1962 = .sdata2:0x803F06C0; // type:object size:0x8 scope:local align:8 data:double +@2051 = .sdata2:0x803F06C8; // type:object size:0x4 scope:local align:4 data:float +@2192 = .sdata2:0x803F06CC; // type:object size:0x4 scope:local align:4 data:float +@2193 = .sdata2:0x803F06D0; // type:object size:0x4 scope:local align:4 data:float +@2194 = .sdata2:0x803F06D4; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F06D8; // type:object size:0x4 scope:local align:4 data:float +@2310 = .sdata2:0x803F06DC; // type:object size:0x4 scope:local align:4 data:float +@2418 = .sdata2:0x803F06E0; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803F06E4; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F06E8; // type:object size:0x4 scope:local align:4 data:float +@3346 = .sdata2:0x803F06EC; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x803F06F0; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x803F06F4; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x803F06F8; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x803F06FC; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x803F0700; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x803F0704; // type:object size:0x4 scope:local align:4 data:float +@1192 = .sdata2:0x803F0708; // type:object size:0x8 scope:local align:8 data:double +@1213 = .sdata2:0x803F0710; // type:object size:0x4 scope:local align:4 data:float +@1659 = .sdata2:0x803F0718; // type:object size:0x4 scope:local align:4 data:float +@1997 = .sdata2:0x803F071C; // type:object size:0x4 scope:local align:4 data:float +@2174 = .sdata2:0x803F0720; // type:object size:0x4 scope:local align:4 data:float +@2175 = .sdata2:0x803F0724; // type:object size:0x4 scope:local align:4 data:float +@1732 = .sdata2:0x803F0728; // type:object size:0x4 scope:local align:4 data:float +@1804 = .sdata2:0x803F072C; // type:object size:0x4 scope:local align:4 data:float +@1806 = .sdata2:0x803F0730; // type:object size:0x4 scope:local align:4 data:float +@1840 = .sdata2:0x803F0734; // type:object size:0x4 scope:local align:4 data:float +@1870 = .sdata2:0x803F0738; // type:object size:0x4 scope:local align:4 data:float +@1871 = .sdata2:0x803F073C; // type:object size:0x4 scope:local align:4 data:float +@1872 = .sdata2:0x803F0740; // type:object size:0x4 scope:local align:4 data:float +@1874 = .sdata2:0x803F0748; // type:object size:0x8 scope:local align:8 data:double +@1967 = .sdata2:0x803F0750; // type:object size:0x4 scope:local align:4 data:float +@2051 = .sdata2:0x803F0754; // type:object size:0x4 scope:local align:4 data:float +@625 = .sdata2:0x803F0758; // type:object size:0x4 scope:local align:4 data:float +@626 = .sdata2:0x803F075C; // type:object size:0x4 scope:local align:4 data:float +@628 = .sdata2:0x803F0760; // type:object size:0x8 scope:local align:8 data:double +@600 = .sdata2:0x803F0768; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x803F0770; // type:object size:0x4 scope:local align:4 data:float +@637 = .sdata2:0x803F0774; // type:object size:0x4 scope:local align:4 data:float +@606 = .sdata2:0x803F0778; // type:object size:0x4 scope:local align:4 data:float +@607 = .sdata2:0x803F077C; // type:object size:0x4 scope:local align:4 data:float +@612 = .sdata2:0x803F0780; // type:object size:0x8 scope:local align:8 data:double +@637 = .sdata2:0x803F0788; // type:object size:0x4 scope:local align:4 data:float +@641 = .sdata2:0x803F078C; // type:object size:0x4 scope:local align:4 data:float +@642 = .sdata2:0x803F0790; // type:object size:0x4 scope:local align:4 data:float +@643 = .sdata2:0x803F0794; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x803F0798; // type:object size:0x4 scope:local align:4 data:float +@692 = .sdata2:0x803F079C; // type:object size:0x4 scope:local align:4 data:float +@672 = .sdata2:0x803F07A0; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata2:0x803F07A8; // type:object size:0x8 scope:local align:8 data:double +@736 = .sdata2:0x803F07B0; // type:object size:0x4 scope:local align:4 data:float +@883 = .sdata2:0x803F07B4; // type:object size:0x4 scope:local align:4 data:float +@884 = .sdata2:0x803F07B8; // type:object size:0x4 scope:local align:4 data:float +@886 = .sdata2:0x803F07C0; // type:object size:0x8 scope:local align:8 data:double +@887 = .sdata2:0x803F07C8; // type:object size:0x8 scope:local align:8 data:double +@1065 = .sdata2:0x803F07D0; // type:object size:0x4 scope:local align:4 data:4byte +@1079 = .sdata2:0x803F07D4; // type:object size:0x4 scope:local align:4 data:4byte +@725 = .sdata2:0x803F07D8; // type:object size:0x4 scope:local align:4 data:float +@726 = .sdata2:0x803F07DC; // type:object size:0x4 scope:local align:4 data:float +@613 = .sdata2:0x803F07E0; // type:object size:0x4 scope:local align:4 data:float +@615 = .sdata2:0x803F07E8; // type:object size:0x8 scope:local align:8 data:double +@648 = .sdata2:0x803F07F0; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F07F8; // type:object size:0x8 scope:local align:8 data:double +@879 = .sdata2:0x803F0800; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x803F0808; // type:object size:0x4 scope:local align:4 data:float +@604 = .sdata2:0x803F0810; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x803F0818; // type:object size:0x4 scope:local align:4 data:float +@623 = .sdata2:0x803F0820; // type:object size:0x8 scope:local align:8 data:double +@656 = .sdata2:0x803F0828; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x803F082C; // type:object size:0x4 scope:local align:4 data:float +@2232 = .sdata2:0x803F0830; // type:object size:0x4 scope:local align:4 data:float +@2233 = .sdata2:0x803F0834; // type:object size:0x4 scope:local align:4 data:float +@2238 = .sdata2:0x803F0838; // type:object size:0x4 scope:local align:4 data:float +@2239 = .sdata2:0x803F083C; // type:object size:0x4 scope:local align:4 data:float +@2240 = .sdata2:0x803F0840; // type:object size:0x4 scope:local align:4 data:float +@2242 = .sdata2:0x803F0848; // type:object size:0x8 scope:local align:8 data:double +@2312 = .sdata2:0x803F0850; // type:object size:0x4 scope:local align:4 data:float +@2438 = .sdata2:0x803F0854; // type:object size:0x4 scope:local align:4 data:float +@2439 = .sdata2:0x803F0858; // type:object size:0x4 scope:local align:4 data:float +@2440 = .sdata2:0x803F085C; // type:object size:0x4 scope:local align:4 data:float +@2441 = .sdata2:0x803F0860; // type:object size:0x4 scope:local align:4 data:float +@2453 = .sdata2:0x803F0864; // type:object size:0x4 scope:local align:4 data:float +@2454 = .sdata2:0x803F0868; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x803F086C; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x803F0870; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x803F0874; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x803F0878; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x803F0880; // type:object size:0x8 scope:local align:8 data:double +@2700 = .sdata2:0x803F0888; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x803F088C; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803F0890; // type:object size:0x4 scope:local align:4 data:float +@2739 = .sdata2:0x803F0894; // type:object size:0x4 scope:local align:4 data:float +@2740 = .sdata2:0x803F0898; // type:object size:0x4 scope:local align:4 data:float +@2804 = .sdata2:0x803F089C; // type:object size:0x4 scope:local align:4 data:float +@2805 = .sdata2:0x803F08A0; // type:object size:0x4 scope:local align:4 data:float +@2806 = .sdata2:0x803F08A4; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F08A8; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x803F08AC; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x803F08B0; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F08B4; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F08B8; // type:object size:0x4 scope:local align:4 data:float +@2891 = .sdata2:0x803F08BC; // type:object size:0x4 scope:local align:4 data:float +@2892 = .sdata2:0x803F08C0; // type:object size:0x4 scope:local align:4 data:float +@2893 = .sdata2:0x803F08C4; // type:object size:0x4 scope:local align:4 data:float +@2894 = .sdata2:0x803F08C8; // type:object size:0x4 scope:local align:4 data:float +@2895 = .sdata2:0x803F08CC; // type:object size:0x4 scope:local align:4 data:float +@2896 = .sdata2:0x803F08D0; // type:object size:0x4 scope:local align:4 data:float +@2960 = .sdata2:0x803F08D4; // type:object size:0x4 scope:local align:4 data:float +@2961 = .sdata2:0x803F08D8; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x803F08DC; // type:object size:0x4 scope:local align:4 data:float +@3059 = .sdata2:0x803F08E0; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x803F08E4; // type:object size:0x4 scope:local align:4 data:float +@1208 = .sdata2:0x803F08E8; // type:object size:0x4 scope:local align:4 data:float +@1209 = .sdata2:0x803F08EC; // type:object size:0x4 scope:local align:4 data:float +@1210 = .sdata2:0x803F08F0; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F08F4; // type:object size:0x4 scope:local align:4 data:float +@1212 = .sdata2:0x803F08F8; // type:object size:0x4 scope:local align:4 data:float +@1213 = .sdata2:0x803F08FC; // type:object size:0x4 scope:local align:4 data:float +@1214 = .sdata2:0x803F0900; // type:object size:0x4 scope:local align:4 data:float +@1215 = .sdata2:0x803F0904; // type:object size:0x4 scope:local align:4 data:float +@1216 = .sdata2:0x803F0908; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F090C; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F0910; // type:object size:0x8 scope:local align:8 data:double +@1229 = .sdata2:0x803F0918; // type:object size:0x4 scope:local align:4 data:float +@1754 = .sdata2:0x803F0920; // type:object size:0x4 scope:local align:4 data:float +@1756 = .sdata2:0x803F0924; // type:object size:0x4 scope:local align:4 data:float +@1757 = .sdata2:0x803F0928; // type:object size:0x4 scope:local align:4 data:float +@1758 = .sdata2:0x803F092C; // type:object size:0x4 scope:local align:4 data:float +@1766 = .sdata2:0x803F0930; // type:object size:0x4 scope:local align:4 data:float +@1767 = .sdata2:0x803F0934; // type:object size:0x4 scope:local align:4 data:float +@1768 = .sdata2:0x803F0938; // type:object size:0x4 scope:local align:4 data:float +@1771 = .sdata2:0x803F093C; // type:object size:0x4 scope:local align:4 data:float +@1773 = .sdata2:0x803F0940; // type:object size:0x4 scope:local align:4 data:float +@1774 = .sdata2:0x803F0944; // type:object size:0x4 scope:local align:4 data:float +@1775 = .sdata2:0x803F0948; // type:object size:0x4 scope:local align:4 data:float +@1776 = .sdata2:0x803F094C; // type:object size:0x4 scope:local align:4 data:float +@1787 = .sdata2:0x803F0950; // type:object size:0x8 scope:local align:8 data:double +@1859 = .sdata2:0x803F0958; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F095C; // type:object size:0x4 scope:local align:4 data:float +@2186 = .sdata2:0x803F0960; // type:object size:0x4 scope:local align:4 data:float +@2187 = .sdata2:0x803F0964; // type:object size:0x4 scope:local align:4 data:float +@2188 = .sdata2:0x803F0968; // type:object size:0x4 scope:local align:4 data:float +@2189 = .sdata2:0x803F096C; // type:object size:0x4 scope:local align:4 data:float +@2199 = .sdata2:0x803F0970; // type:object size:0x8 scope:local align:8 data:double +@2200 = .sdata2:0x803F0978; // type:object size:0x8 scope:local align:8 data:double +@2552 = .sdata2:0x803F0980; // type:object size:0x4 scope:local align:4 data:float +@2553 = .sdata2:0x803F0984; // type:object size:0x4 scope:local align:4 data:float +@2554 = .sdata2:0x803F0988; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x803F098C; // type:object size:0x4 scope:local align:4 data:float +@2959 = .sdata2:0x803F0990; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x803F0998; // type:object size:0x4 scope:local align:4 data:float +@660 = .sdata2:0x803F099C; // type:object size:0x4 scope:local align:4 data:float +@661 = .sdata2:0x803F09A0; // type:object size:0x4 scope:local align:4 data:float +@1361 = .sdata2:0x803F09A4; // type:object size:0x4 scope:local align:4 data:float +@1363 = .sdata2:0x803F09A8; // type:object size:0x8 scope:local align:8 data:double +@1482 = .sdata2:0x803F09B0; // type:object size:0x8 scope:local align:8 data:double +@1483 = .sdata2:0x803F09B8; // type:object size:0x8 scope:local align:8 data:double +@1484 = .sdata2:0x803F09C0; // type:object size:0x4 scope:local align:4 data:float +@1485 = .sdata2:0x803F09C4; // type:object size:0x4 scope:local align:4 data:float +@1486 = .sdata2:0x803F09C8; // type:object size:0x4 scope:local align:4 data:float +@1487 = .sdata2:0x803F09CC; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x803F09D0; // type:object size:0x4 scope:local align:4 data:float +@1489 = .sdata2:0x803F09D4; // type:object size:0x4 scope:local align:4 data:float +@1490 = .sdata2:0x803F09D8; // type:object size:0x4 scope:local align:4 data:float +@1491 = .sdata2:0x803F09DC; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x803F09E0; // type:object size:0x4 scope:local align:4 data:float +@1533 = .sdata2:0x803F09E4; // type:object size:0x4 scope:local align:4 data:float +@416 = .sdata2:0x803F09E8; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x803F09EC; // type:object size:0x4 scope:local align:4 data:float +@430 = .sdata2:0x803F09F0; // type:object size:0x4 scope:local align:4 data:float +@1153 = .sdata2:0x803F09F8; // type:object size:0x4 scope:local align:4 data:float +@1155 = .sdata2:0x803F09FC; // type:object size:0x4 scope:local align:4 data:float +@1156 = .sdata2:0x803F0A00; // type:object size:0x4 scope:local align:4 data:float +@1157 = .sdata2:0x803F0A04; // type:object size:0x4 scope:local align:4 data:float +@1158 = .sdata2:0x803F0A08; // type:object size:0x4 scope:local align:4 data:float +@1160 = .sdata2:0x803F0A10; // type:object size:0x8 scope:local align:8 data:double +@1259 = .sdata2:0x803F0A18; // type:object size:0x4 scope:local align:4 data:float +@1291 = .sdata2:0x803F0A1C; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F0A20; // type:object size:0x4 scope:local align:4 data:float +@1293 = .sdata2:0x803F0A24; // type:object size:0x4 scope:local align:4 data:float +@1311 = .sdata2:0x803F0A28; // type:object size:0x4 scope:local align:4 data:float +@1326 = .sdata2:0x803F0A2C; // type:object size:0x4 scope:local align:4 data:float +@1327 = .sdata2:0x803F0A30; // type:object size:0x4 scope:local align:4 data:float +@1328 = .sdata2:0x803F0A34; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x803F0A38; // type:object size:0x4 scope:local align:4 data:float +@1347 = .sdata2:0x803F0A3C; // type:object size:0x4 scope:local align:4 data:float +@1385 = .sdata2:0x803F0A40; // type:object size:0x4 scope:local align:4 data:float +@1386 = .sdata2:0x803F0A44; // type:object size:0x4 scope:local align:4 data:float +@1106 = .sdata2:0x803F0A48; // type:object size:0x4 scope:local align:4 data:float +@1107 = .sdata2:0x803F0A4C; // type:object size:0x4 scope:local align:4 data:float +@1141 = .sdata2:0x803F0A50; // type:object size:0x4 scope:local align:4 data:float +@1142 = .sdata2:0x803F0A54; // type:object size:0x4 scope:local align:4 data:float +@1143 = .sdata2:0x803F0A58; // type:object size:0x4 scope:local align:4 data:float +@1144 = .sdata2:0x803F0A5C; // type:object size:0x4 scope:local align:4 data:float +@1145 = .sdata2:0x803F0A60; // type:object size:0x4 scope:local align:4 data:float +@717 = .sdata2:0x803F0A68; // type:object size:0x4 scope:local align:4 data:float +@718 = .sdata2:0x803F0A6C; // type:object size:0x4 scope:local align:4 data:float +@903 = .sdata2:0x803F0A70; // type:object size:0x4 scope:local align:4 data:float +@905 = .sdata2:0x803F0A78; // type:object size:0x8 scope:local align:8 data:double +@962 = .sdata2:0x803F0A80; // type:object size:0x4 scope:local align:4 data:float +@963 = .sdata2:0x803F0A84; // type:object size:0x4 scope:local align:4 data:float +@964 = .sdata2:0x803F0A88; // type:object size:0x4 scope:local align:4 data:float +@965 = .sdata2:0x803F0A8C; // type:object size:0x4 scope:local align:4 data:float +@1303 = .sdata2:0x803F0A90; // type:object size:0x4 scope:local align:4 data:float +@1306 = .sdata2:0x803F0A98; // type:object size:0x8 scope:local align:8 data:double +@1546 = .sdata2:0x803F0AA0; // type:object size:0x4 scope:local align:4 data:float +@1547 = .sdata2:0x803F0AA4; // type:object size:0x4 scope:local align:4 data:float +@1797 = .sdata2:0x803F0AA8; // type:object size:0x4 scope:local align:4 data:float +@1640 = .sdata2:0x803F0AB0; // type:object size:0x4 scope:local align:4 data:float +@1641 = .sdata2:0x803F0AB4; // type:object size:0x4 scope:local align:4 data:float +@1647 = .sdata2:0x803F0AB8; // type:object size:0x8 scope:local align:8 data:double +@1648 = .sdata2:0x803F0AC0; // type:object size:0x8 scope:local align:8 data:double +@1700 = .sdata2:0x803F0AC8; // type:object size:0x4 scope:local align:4 data:float +@2105 = .sdata2:0x803F0ACC; // type:object size:0x4 scope:local align:4 data:float +@2106 = .sdata2:0x803F0AD0; // type:object size:0x4 scope:local align:4 data:float +@2195 = .sdata2:0x803F0AD8; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x803F0ADC; // type:object size:0x4 scope:local align:4 data:float +@2198 = .sdata2:0x803F0AE0; // type:object size:0x4 scope:local align:4 data:float +@2201 = .sdata2:0x803F0AE4; // type:object size:0x4 scope:local align:4 data:float +@2203 = .sdata2:0x803F0AE8; // type:object size:0x4 scope:local align:4 data:float +@2204 = .sdata2:0x803F0AEC; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F0AF0; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F0AF4; // type:object size:0x4 scope:local align:4 data:float +@2207 = .sdata2:0x803F0AF8; // type:object size:0x4 scope:local align:4 data:float +@2208 = .sdata2:0x803F0AFC; // type:object size:0x4 scope:local align:4 data:float +@2209 = .sdata2:0x803F0B00; // type:object size:0x4 scope:local align:4 data:float +@2210 = .sdata2:0x803F0B04; // type:object size:0x4 scope:local align:4 data:float +@2211 = .sdata2:0x803F0B08; // type:object size:0x4 scope:local align:4 data:float +@2212 = .sdata2:0x803F0B0C; // type:object size:0x4 scope:local align:4 data:float +@2213 = .sdata2:0x803F0B10; // type:object size:0x4 scope:local align:4 data:float +@2214 = .sdata2:0x803F0B14; // type:object size:0x4 scope:local align:4 data:float +@2215 = .sdata2:0x803F0B18; // type:object size:0x4 scope:local align:4 data:float +@2216 = .sdata2:0x803F0B1C; // type:object size:0x4 scope:local align:4 data:float +@2217 = .sdata2:0x803F0B20; // type:object size:0x4 scope:local align:4 data:float +@2218 = .sdata2:0x803F0B24; // type:object size:0x4 scope:local align:4 data:float +@2219 = .sdata2:0x803F0B28; // type:object size:0x4 scope:local align:4 data:float +@2220 = .sdata2:0x803F0B2C; // type:object size:0x4 scope:local align:4 data:float +@2221 = .sdata2:0x803F0B30; // type:object size:0x4 scope:local align:4 data:float +@2222 = .sdata2:0x803F0B34; // type:object size:0x4 scope:local align:4 data:float +@2223 = .sdata2:0x803F0B38; // type:object size:0x4 scope:local align:4 data:float +@2593 = .sdata2:0x803F0B3C; // type:object size:0x4 scope:local align:4 data:float +@2594 = .sdata2:0x803F0B40; // type:object size:0x4 scope:local align:4 data:float +@2595 = .sdata2:0x803F0B44; // type:object size:0x4 scope:local align:4 data:float +@2762 = .sdata2:0x803F0B48; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x803F0B4C; // type:object size:0x4 scope:local align:4 data:float +@2770 = .sdata2:0x803F0B50; // type:object size:0x8 scope:local align:8 data:double +@2771 = .sdata2:0x803F0B58; // type:object size:0x8 scope:local align:8 data:double +@3131 = .sdata2:0x803F0B60; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x803F0B64; // type:object size:0x4 scope:local align:4 data:float +@3133 = .sdata2:0x803F0B68; // type:object size:0x4 scope:local align:4 data:float +@3134 = .sdata2:0x803F0B6C; // type:object size:0x4 scope:local align:4 data:float +@3136 = .sdata2:0x803F0B70; // type:object size:0x8 scope:local align:8 data:double +@3730 = .sdata2:0x803F0B78; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x803F0B7C; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x803F0B80; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x803F0B84; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x803F0B88; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x803F0B8C; // type:object size:0x4 scope:local align:4 data:float +@792 = .sdata2:0x803F0B90; // type:object size:0x4 scope:local align:4 data:float +@793 = .sdata2:0x803F0B94; // type:object size:0x4 scope:local align:4 data:float +@794 = .sdata2:0x803F0B98; // type:object size:0x4 scope:local align:4 data:float +@795 = .sdata2:0x803F0B9C; // type:object size:0x4 scope:local align:4 data:float +@796 = .sdata2:0x803F0BA0; // type:object size:0x4 scope:local align:4 data:float +@797 = .sdata2:0x803F0BA4; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F0BA8; // type:object size:0x4 scope:local align:4 data:float +@799 = .sdata2:0x803F0BAC; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F0BB0; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803F0BB4; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F0BB8; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F0BBC; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F0BC0; // type:object size:0x4 scope:local align:4 data:float +@806 = .sdata2:0x803F0BC8; // type:object size:0x8 scope:local align:8 data:double +@907 = .sdata2:0x803F0BD0; // type:object size:0x4 scope:local align:4 data:float +@908 = .sdata2:0x803F0BD4; // type:object size:0x4 scope:local align:4 data:float +@909 = .sdata2:0x803F0BD8; // type:object size:0x4 scope:local align:4 data:float +@910 = .sdata2:0x803F0BDC; // type:object size:0x4 scope:local align:4 data:float +@911 = .sdata2:0x803F0BE0; // type:object size:0x4 scope:local align:4 data:float +@912 = .sdata2:0x803F0BE4; // type:object size:0x4 scope:local align:4 data:float +@913 = .sdata2:0x803F0BE8; // type:object size:0x4 scope:local align:4 data:float +@914 = .sdata2:0x803F0BEC; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x803F0BF0; // type:object size:0x4 scope:local align:4 data:float +@1932 = .sdata2:0x803F0BF4; // type:object size:0x4 scope:local align:4 data:float +@1934 = .sdata2:0x803F0BF8; // type:object size:0x4 scope:local align:4 data:float +@1937 = .sdata2:0x803F0BFC; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F0C00; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F0C04; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F0C08; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F0C0C; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F0C10; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F0C14; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0C18; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F0C1C; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F0C20; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F0C24; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F0C28; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0C2C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0C30; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F0C34; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0C38; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F0C3C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F0C40; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0C44; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0C48; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F0C50; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F0C54; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0C58; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0C5C; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0C60; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F0C64; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0C68; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F0C6C; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F0C70; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0C74; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0C78; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0C7C; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F0C80; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F0C84; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F0C88; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F0C8C; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F0C90; // type:object size:0x4 scope:local align:4 data:float +@1963 = .sdata2:0x803F0C94; // type:object size:0x4 scope:local align:4 data:float +@1964 = .sdata2:0x803F0C98; // type:object size:0x4 scope:local align:4 data:float +@1965 = .sdata2:0x803F0C9C; // type:object size:0x4 scope:local align:4 data:float +@1966 = .sdata2:0x803F0CA0; // type:object size:0x4 scope:local align:4 data:float +@1967 = .sdata2:0x803F0CA4; // type:object size:0x4 scope:local align:4 data:float +@1968 = .sdata2:0x803F0CA8; // type:object size:0x4 scope:local align:4 data:float +@1969 = .sdata2:0x803F0CAC; // type:object size:0x4 scope:local align:4 data:float +@2006 = .sdata2:0x803F0CB0; // type:object size:0x4 scope:local align:4 data:float +@2007 = .sdata2:0x803F0CB4; // type:object size:0x4 scope:local align:4 data:float +@2009 = .sdata2:0x803F0CB8; // type:object size:0x4 scope:local align:4 data:float +@2011 = .sdata2:0x803F0CBC; // type:object size:0x4 scope:local align:4 data:float +@2019 = .sdata2:0x803F0CC0; // type:object size:0x4 scope:local align:4 data:float +@2020 = .sdata2:0x803F0CC4; // type:object size:0x4 scope:local align:4 data:float +@2021 = .sdata2:0x803F0CC8; // type:object size:0x4 scope:local align:4 data:float +@2022 = .sdata2:0x803F0CCC; // type:object size:0x4 scope:local align:4 data:float +@2023 = .sdata2:0x803F0CD0; // type:object size:0x4 scope:local align:4 data:float +@2024 = .sdata2:0x803F0CD4; // type:object size:0x4 scope:local align:4 data:float +@2025 = .sdata2:0x803F0CD8; // type:object size:0x4 scope:local align:4 data:float +@2026 = .sdata2:0x803F0CDC; // type:object size:0x4 scope:local align:4 data:float +@2027 = .sdata2:0x803F0CE0; // type:object size:0x4 scope:local align:4 data:float +@2028 = .sdata2:0x803F0CE4; // type:object size:0x4 scope:local align:4 data:float +@2029 = .sdata2:0x803F0CE8; // type:object size:0x4 scope:local align:4 data:float +@2030 = .sdata2:0x803F0CEC; // type:object size:0x4 scope:local align:4 data:float +@2031 = .sdata2:0x803F0CF0; // type:object size:0x4 scope:local align:4 data:float +@2032 = .sdata2:0x803F0CF4; // type:object size:0x4 scope:local align:4 data:float +@2033 = .sdata2:0x803F0CF8; // type:object size:0x4 scope:local align:4 data:float +@2034 = .sdata2:0x803F0CFC; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x803F0D00; // type:object size:0x4 scope:local align:4 data:float +@2036 = .sdata2:0x803F0D04; // type:object size:0x4 scope:local align:4 data:float +@2037 = .sdata2:0x803F0D08; // type:object size:0x4 scope:local align:4 data:float +@2038 = .sdata2:0x803F0D0C; // type:object size:0x4 scope:local align:4 data:float +@2039 = .sdata2:0x803F0D10; // type:object size:0x4 scope:local align:4 data:float +@2040 = .sdata2:0x803F0D14; // type:object size:0x4 scope:local align:4 data:float +@2041 = .sdata2:0x803F0D18; // type:object size:0x4 scope:local align:4 data:float +@2489 = .sdata2:0x803F0D1C; // type:object size:0x4 scope:local align:4 data:float +@2490 = .sdata2:0x803F0D20; // type:object size:0x4 scope:local align:4 data:float +@2831 = .sdata2:0x803F0D24; // type:object size:0x4 scope:local align:4 data:float +@2832 = .sdata2:0x803F0D28; // type:object size:0x4 scope:local align:4 data:float +@2952 = .sdata2:0x803F0D2C; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F0D30; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F0D34; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F0D38; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F0D3C; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F0D40; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F0D44; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F0D48; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F0D4C; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F0D50; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F0D54; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F0D58; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F0D5C; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F0D60; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F0D64; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F0D68; // type:object size:0x4 scope:local align:4 data:float +@1918 = .sdata2:0x803F0D6C; // type:object size:0x4 scope:local align:4 data:float +@1919 = .sdata2:0x803F0D70; // type:object size:0x4 scope:local align:4 data:float +@1920 = .sdata2:0x803F0D74; // type:object size:0x4 scope:local align:4 data:float +@1921 = .sdata2:0x803F0D78; // type:object size:0x4 scope:local align:4 data:float +@1922 = .sdata2:0x803F0D7C; // type:object size:0x4 scope:local align:4 data:float +@1923 = .sdata2:0x803F0D80; // type:object size:0x4 scope:local align:4 data:float +@2241 = .sdata2:0x803F0D84; // type:object size:0x4 scope:local align:4 data:float +@2278 = .sdata2:0x803F0D88; // type:object size:0x4 scope:local align:4 data:float +@2280 = .sdata2:0x803F0D90; // type:object size:0x8 scope:local align:8 data:double +@2115 = .sdata2:0x803F0D98; // type:object size:0x4 scope:local align:4 data:float +@2116 = .sdata2:0x803F0D9C; // type:object size:0x4 scope:local align:4 data:float +@2119 = .sdata2:0x803F0DA0; // type:object size:0x4 scope:local align:4 data:float +@2121 = .sdata2:0x803F0DA4; // type:object size:0x4 scope:local align:4 data:float +@2123 = .sdata2:0x803F0DA8; // type:object size:0x4 scope:local align:4 data:float +@2125 = .sdata2:0x803F0DAC; // type:object size:0x4 scope:local align:4 data:float +@2126 = .sdata2:0x803F0DB0; // type:object size:0x4 scope:local align:4 data:float +@2127 = .sdata2:0x803F0DB4; // type:object size:0x4 scope:local align:4 data:float +@2128 = .sdata2:0x803F0DB8; // type:object size:0x4 scope:local align:4 data:float +@2129 = .sdata2:0x803F0DBC; // type:object size:0x4 scope:local align:4 data:float +@2130 = .sdata2:0x803F0DC0; // type:object size:0x4 scope:local align:4 data:float +@2131 = .sdata2:0x803F0DC4; // type:object size:0x4 scope:local align:4 data:float +@2132 = .sdata2:0x803F0DC8; // type:object size:0x4 scope:local align:4 data:float +@2133 = .sdata2:0x803F0DCC; // type:object size:0x4 scope:local align:4 data:float +@2134 = .sdata2:0x803F0DD0; // type:object size:0x4 scope:local align:4 data:float +@2135 = .sdata2:0x803F0DD4; // type:object size:0x4 scope:local align:4 data:float +@2136 = .sdata2:0x803F0DD8; // type:object size:0x4 scope:local align:4 data:float +@2137 = .sdata2:0x803F0DDC; // type:object size:0x4 scope:local align:4 data:float +@2138 = .sdata2:0x803F0DE0; // type:object size:0x4 scope:local align:4 data:float +@2139 = .sdata2:0x803F0DE4; // type:object size:0x4 scope:local align:4 data:float +@2140 = .sdata2:0x803F0DE8; // type:object size:0x4 scope:local align:4 data:float +@2141 = .sdata2:0x803F0DEC; // type:object size:0x4 scope:local align:4 data:float +@2142 = .sdata2:0x803F0DF0; // type:object size:0x4 scope:local align:4 data:float +@2431 = .sdata2:0x803F0DF4; // type:object size:0x4 scope:local align:4 data:float +@2432 = .sdata2:0x803F0DF8; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata2:0x803F0DFC; // type:object size:0x4 scope:local align:4 data:float +@2890 = .sdata2:0x803F0E00; // type:object size:0x4 scope:local align:4 data:float +@3162 = .sdata2:0x803F0E04; // type:object size:0x4 scope:local align:4 data:float +@3164 = .sdata2:0x803F0E08; // type:object size:0x8 scope:local align:8 data:double +@3471 = .sdata2:0x803F0E10; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x803F0E14; // type:object size:0x4 scope:local align:4 data:float +@1938 = .sdata2:0x803F0E18; // type:object size:0x4 scope:local align:4 data:float +@1939 = .sdata2:0x803F0E1C; // type:object size:0x4 scope:local align:4 data:float +@1941 = .sdata2:0x803F0E20; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F0E24; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F0E28; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F0E2C; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F0E30; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F0E34; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F0E38; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F0E3C; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F0E40; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F0E44; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F0E48; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F0E4C; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F0E50; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F0E54; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F0E58; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F0E5C; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F0E60; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F0E64; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F0E68; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F0E6C; // type:object size:0x4 scope:local align:4 data:float +@2337 = .sdata2:0x803F0E70; // type:object size:0x4 scope:local align:4 data:float +@2338 = .sdata2:0x803F0E74; // type:object size:0x4 scope:local align:4 data:float +@2434 = .sdata2:0x803F0E78; // type:object size:0x8 scope:local align:8 data:double +@2435 = .sdata2:0x803F0E80; // type:object size:0x8 scope:local align:8 data:double +@2482 = .sdata2:0x803F0E88; // type:object size:0x4 scope:local align:4 data:float +@1802 = .sdata2:0x803F0E90; // type:object size:0x4 scope:local align:4 data:float +@2066 = .sdata2:0x803F0E98; // type:object size:0x4 scope:local align:4 data:float +@2067 = .sdata2:0x803F0E9C; // type:object size:0x4 scope:local align:4 data:float +@2070 = .sdata2:0x803F0EA0; // type:object size:0x4 scope:local align:4 data:float +@2072 = .sdata2:0x803F0EA4; // type:object size:0x4 scope:local align:4 data:float +@2073 = .sdata2:0x803F0EA8; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x803F0EAC; // type:object size:0x4 scope:local align:4 data:float +@2075 = .sdata2:0x803F0EB0; // type:object size:0x4 scope:local align:4 data:float +@2076 = .sdata2:0x803F0EB4; // type:object size:0x4 scope:local align:4 data:float +@2077 = .sdata2:0x803F0EB8; // type:object size:0x4 scope:local align:4 data:float +@2078 = .sdata2:0x803F0EBC; // type:object size:0x4 scope:local align:4 data:float +@2079 = .sdata2:0x803F0EC0; // type:object size:0x4 scope:local align:4 data:float +@2080 = .sdata2:0x803F0EC4; // type:object size:0x4 scope:local align:4 data:float +@2081 = .sdata2:0x803F0EC8; // type:object size:0x4 scope:local align:4 data:float +@2082 = .sdata2:0x803F0ECC; // type:object size:0x4 scope:local align:4 data:float +@2083 = .sdata2:0x803F0ED0; // type:object size:0x4 scope:local align:4 data:float +@2084 = .sdata2:0x803F0ED4; // type:object size:0x4 scope:local align:4 data:float +@2085 = .sdata2:0x803F0ED8; // type:object size:0x4 scope:local align:4 data:float +@2086 = .sdata2:0x803F0EDC; // type:object size:0x4 scope:local align:4 data:float +@2087 = .sdata2:0x803F0EE0; // type:object size:0x4 scope:local align:4 data:float +@2088 = .sdata2:0x803F0EE4; // type:object size:0x4 scope:local align:4 data:float +@2089 = .sdata2:0x803F0EE8; // type:object size:0x4 scope:local align:4 data:float +@2090 = .sdata2:0x803F0EEC; // type:object size:0x4 scope:local align:4 data:float +@2091 = .sdata2:0x803F0EF0; // type:object size:0x4 scope:local align:4 data:float +@2092 = .sdata2:0x803F0EF4; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x803F0EF8; // type:object size:0x4 scope:local align:4 data:float +@2736 = .sdata2:0x803F0EFC; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x803F0F00; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x803F0F04; // type:object size:0x4 scope:local align:4 data:float +@3085 = .sdata2:0x803F0F08; // type:object size:0x4 scope:local align:4 data:float +@3086 = .sdata2:0x803F0F0C; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x803F0F10; // type:object size:0x4 scope:local align:4 data:float +@3120 = .sdata2:0x803F0F18; // type:object size:0x8 scope:local align:8 data:double +@3460 = .sdata2:0x803F0F20; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x803F0F24; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x803F0F28; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x803F0F2C; // type:object size:0x4 scope:local align:4 data:float +@723 = .sdata2:0x803F0F30; // type:object size:0x4 scope:local align:4 data:float +@724 = .sdata2:0x803F0F34; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F0F38; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x803F0F40; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x803F0F44; // type:object size:0x4 scope:local align:4 data:float +@783 = .sdata2:0x803F0F48; // type:object size:0x4 scope:local align:4 data:float +@784 = .sdata2:0x803F0F4C; // type:object size:0x4 scope:local align:4 data:float +@785 = .sdata2:0x803F0F50; // type:object size:0x4 scope:local align:4 data:float +@786 = .sdata2:0x803F0F54; // type:object size:0x4 scope:local align:4 data:float +@787 = .sdata2:0x803F0F58; // type:object size:0x4 scope:local align:4 data:float +@798 = .sdata2:0x803F0F60; // type:object size:0x8 scope:local align:8 data:double +@881 = .sdata2:0x803F0F68; // type:object size:0x4 scope:local align:4 data:float +@2807 = .sdata2:0x803F0F70; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x803F0F74; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x803F0F78; // type:object size:0x4 scope:local align:4 data:float +@2819 = .sdata2:0x803F0F7C; // type:object size:0x4 scope:local align:4 data:float +@2820 = .sdata2:0x803F0F80; // type:object size:0x4 scope:local align:4 data:float +@2821 = .sdata2:0x803F0F84; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x803F0F88; // type:object size:0x4 scope:local align:4 data:float +@2872 = .sdata2:0x803F0F90; // type:object size:0x8 scope:local align:8 data:double +@3072 = .sdata2:0x803F0F98; // type:object size:0x4 scope:local align:4 data:float +@3097 = .sdata2:0x803F0F9C; // type:object size:0x4 scope:local align:4 data:float +@3098 = .sdata2:0x803F0FA0; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x803F0FA4; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x803F0FA8; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x803F0FAC; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x803F0FB0; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x803F0FB4; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x803F0FB8; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x803F0FBC; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x803F0FC0; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x803F0FC4; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x803F0FC8; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x803F0FD0; // type:object size:0x8 scope:local align:8 data:double +@4097 = .sdata2:0x803F0FD8; // type:object size:0x8 scope:local align:8 data:double +@4098 = .sdata2:0x803F0FE0; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x803F0FE4; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x803F0FE8; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x803F0FEC; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x803F0FF0; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x803F0FF4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x803F0FF8; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata2:0x803F0FFC; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x803F1000; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x803F1004; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x803F1008; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x803F100C; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x803F1010; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x803F1014; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x803F1018; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x803F101C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x803F1020; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x803F1024; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x803F1028; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x803F102C; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x803F1030; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x803F1034; // type:object size:0x4 scope:local align:4 data:float +@5369 = .sdata2:0x803F1038; // type:object size:0x4 scope:local align:4 data:float +@5606 = .sdata2:0x803F103C; // type:object size:0x4 scope:local align:4 data:float +@6607 = .sdata2:0x803F1040; // type:object size:0x4 scope:local align:4 data:float +@6608 = .sdata2:0x803F1044; // type:object size:0x4 scope:local align:4 data:float +@6609 = .sdata2:0x803F1048; // type:object size:0x4 scope:local align:4 data:float +@6787 = .sdata2:0x803F104C; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x803F1050; // type:object size:0x4 scope:local align:4 data:float +@820 = .sdata2:0x803F1058; // type:object size:0x4 scope:local align:4 data:float +@821 = .sdata2:0x803F105C; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x803F1060; // type:object size:0x4 scope:local align:4 data:float +@823 = .sdata2:0x803F1064; // type:object size:0x4 scope:local align:4 data:float +@824 = .sdata2:0x803F1068; // type:object size:0x4 scope:local align:4 data:float +@1093 = .sdata2:0x803F106C; // type:object size:0x4 scope:local align:4 data:float +@1094 = .sdata2:0x803F1070; // type:object size:0x4 scope:local align:4 data:float +@1095 = .sdata2:0x803F1074; // type:object size:0x4 scope:local align:4 data:float +@1096 = .sdata2:0x803F1078; // type:object size:0x4 scope:local align:4 data:float +@1097 = .sdata2:0x803F107C; // type:object size:0x4 scope:local align:4 data:float +@1098 = .sdata2:0x803F1080; // type:object size:0x4 scope:local align:4 data:float +@1099 = .sdata2:0x803F1084; // type:object size:0x4 scope:local align:4 data:float +@1100 = .sdata2:0x803F1088; // type:object size:0x4 scope:local align:4 data:float +@1101 = .sdata2:0x803F108C; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata2:0x803F1090; // type:object size:0x8 scope:local align:8 data:double +@1106 = .sdata2:0x803F1098; // type:object size:0x8 scope:local align:8 data:double +@771 = .sdata2:0x803F10A0; // type:object size:0x4 scope:local align:4 data:float +@800 = .sdata2:0x803F10A4; // type:object size:0x4 scope:local align:4 data:float +@801 = .sdata2:0x803F10A8; // type:object size:0x4 scope:local align:4 data:float +@802 = .sdata2:0x803F10AC; // type:object size:0x4 scope:local align:4 data:float +@803 = .sdata2:0x803F10B0; // type:object size:0x4 scope:local align:4 data:float +@804 = .sdata2:0x803F10B4; // type:object size:0x4 scope:local align:4 data:float +@805 = .sdata2:0x803F10B8; // type:object size:0x4 scope:local align:4 data:float +@807 = .sdata2:0x803F10C0; // type:object size:0x8 scope:local align:8 data:double +@825 = .sdata2:0x803F10C8; // type:object size:0x4 scope:local align:4 data:float +@869 = .sdata2:0x803F10CC; // type:object size:0x4 scope:local align:4 data:float +@1011 = .sdata2:0x803F10D0; // type:object size:0x4 scope:local align:4 data:float +@1012 = .sdata2:0x803F10D4; // type:object size:0x4 scope:local align:4 data:float +@1013 = .sdata2:0x803F10D8; // type:object size:0x4 scope:local align:4 data:float +@1014 = .sdata2:0x803F10DC; // type:object size:0x4 scope:local align:4 data:float +@1015 = .sdata2:0x803F10E0; // type:object size:0x4 scope:local align:4 data:float +@1016 = .sdata2:0x803F10E4; // type:object size:0x4 scope:local align:4 data:float +@1017 = .sdata2:0x803F10E8; // type:object size:0x4 scope:local align:4 data:float +@1018 = .sdata2:0x803F10EC; // type:object size:0x4 scope:local align:4 data:float +@1019 = .sdata2:0x803F10F0; // type:object size:0x4 scope:local align:4 data:float +@1020 = .sdata2:0x803F10F4; // type:object size:0x4 scope:local align:4 data:float +@1021 = .sdata2:0x803F10F8; // type:object size:0x4 scope:local align:4 data:float +@1022 = .sdata2:0x803F10FC; // type:object size:0x4 scope:local align:4 data:float +@1023 = .sdata2:0x803F1100; // type:object size:0x4 scope:local align:4 data:float +@1024 = .sdata2:0x803F1104; // type:object size:0x4 scope:local align:4 data:float +@1025 = .sdata2:0x803F1108; // type:object size:0x4 scope:local align:4 data:float +@1026 = .sdata2:0x803F110C; // type:object size:0x4 scope:local align:4 data:float +@830 = .sdata2:0x803F1110; // type:object size:0x4 scope:local align:4 data:float +@831 = .sdata2:0x803F1114; // type:object size:0x4 scope:local align:4 data:float +@832 = .sdata2:0x803F1118; // type:object size:0x4 scope:local align:4 data:float +@876 = .sdata2:0x803F111C; // type:object size:0x4 scope:local align:4 data:float +@877 = .sdata2:0x803F1120; // type:object size:0x4 scope:local align:4 data:float +@878 = .sdata2:0x803F1124; // type:object size:0x4 scope:local align:4 data:float +@880 = .sdata2:0x803F1128; // type:object size:0x8 scope:local align:8 data:double +@739 = .sdata2:0x803F1130; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F1134; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F1138; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F113C; // type:object size:0x4 scope:local align:4 data:float +@1897 = .sdata2:0x803F1140; // type:object size:0x4 scope:local align:4 data:float +@1898 = .sdata2:0x803F1144; // type:object size:0x4 scope:local align:4 data:float +@1899 = .sdata2:0x803F1148; // type:object size:0x4 scope:local align:4 data:float +@1900 = .sdata2:0x803F114C; // type:object size:0x4 scope:local align:4 data:float +@1901 = .sdata2:0x803F1150; // type:object size:0x4 scope:local align:4 data:float +@1902 = .sdata2:0x803F1154; // type:object size:0x4 scope:local align:4 data:float +@1903 = .sdata2:0x803F1158; // type:object size:0x4 scope:local align:4 data:float +@1904 = .sdata2:0x803F115C; // type:object size:0x4 scope:local align:4 data:float +@1905 = .sdata2:0x803F1160; // type:object size:0x4 scope:local align:4 data:float +@1906 = .sdata2:0x803F1164; // type:object size:0x4 scope:local align:4 data:float +@1907 = .sdata2:0x803F1168; // type:object size:0x4 scope:local align:4 data:float +@1908 = .sdata2:0x803F116C; // type:object size:0x4 scope:local align:4 data:float +@1909 = .sdata2:0x803F1170; // type:object size:0x4 scope:local align:4 data:float +@1910 = .sdata2:0x803F1174; // type:object size:0x4 scope:local align:4 data:float +@1911 = .sdata2:0x803F1178; // type:object size:0x4 scope:local align:4 data:float +@1912 = .sdata2:0x803F117C; // type:object size:0x4 scope:local align:4 data:float +@1913 = .sdata2:0x803F1180; // type:object size:0x4 scope:local align:4 data:float +@1914 = .sdata2:0x803F1184; // type:object size:0x4 scope:local align:4 data:float +@1915 = .sdata2:0x803F1188; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x803F118C; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x803F1190; // type:object size:0x4 scope:local align:4 data:float +@2205 = .sdata2:0x803F1194; // type:object size:0x4 scope:local align:4 data:float +@2206 = .sdata2:0x803F1198; // type:object size:0x8 scope:local align:8 data:double +@1939 = .sdata2:0x803F11A0; // type:object size:0x4 scope:local align:4 data:float +@1940 = .sdata2:0x803F11A4; // type:object size:0x4 scope:local align:4 data:float +@1942 = .sdata2:0x803F11A8; // type:object size:0x4 scope:local align:4 data:float +@1943 = .sdata2:0x803F11AC; // type:object size:0x4 scope:local align:4 data:float +@1944 = .sdata2:0x803F11B0; // type:object size:0x4 scope:local align:4 data:float +@1945 = .sdata2:0x803F11B4; // type:object size:0x4 scope:local align:4 data:float +@1946 = .sdata2:0x803F11B8; // type:object size:0x4 scope:local align:4 data:float +@1947 = .sdata2:0x803F11BC; // type:object size:0x4 scope:local align:4 data:float +@1948 = .sdata2:0x803F11C0; // type:object size:0x4 scope:local align:4 data:float +@1949 = .sdata2:0x803F11C4; // type:object size:0x4 scope:local align:4 data:float +@1950 = .sdata2:0x803F11C8; // type:object size:0x4 scope:local align:4 data:float +@1951 = .sdata2:0x803F11CC; // type:object size:0x4 scope:local align:4 data:float +@1952 = .sdata2:0x803F11D0; // type:object size:0x4 scope:local align:4 data:float +@1953 = .sdata2:0x803F11D4; // type:object size:0x4 scope:local align:4 data:float +@1954 = .sdata2:0x803F11D8; // type:object size:0x4 scope:local align:4 data:float +@1955 = .sdata2:0x803F11DC; // type:object size:0x4 scope:local align:4 data:float +@1956 = .sdata2:0x803F11E0; // type:object size:0x4 scope:local align:4 data:float +@1957 = .sdata2:0x803F11E4; // type:object size:0x4 scope:local align:4 data:float +@1958 = .sdata2:0x803F11E8; // type:object size:0x4 scope:local align:4 data:float +@1959 = .sdata2:0x803F11EC; // type:object size:0x4 scope:local align:4 data:float +@1960 = .sdata2:0x803F11F0; // type:object size:0x4 scope:local align:4 data:float +@1961 = .sdata2:0x803F11F4; // type:object size:0x4 scope:local align:4 data:float +@1962 = .sdata2:0x803F11F8; // type:object size:0x4 scope:local align:4 data:float +@2101 = .sdata2:0x803F11FC; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x803F1200; // type:object size:0x4 scope:local align:4 data:float +@2630 = .sdata2:0x803F1208; // type:object size:0x8 scope:local align:8 data:double +@2689 = .sdata2:0x803F1210; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x803F1214; // type:object size:0x4 scope:local align:4 data:float +@1217 = .sdata2:0x803F1218; // type:object size:0x4 scope:local align:4 data:float +@1218 = .sdata2:0x803F121C; // type:object size:0x4 scope:local align:4 data:float +@1219 = .sdata2:0x803F1220; // type:object size:0x4 scope:local align:4 data:float +@1220 = .sdata2:0x803F1224; // type:object size:0x4 scope:local align:4 data:float +@1292 = .sdata2:0x803F1228; // type:object size:0x4 scope:local align:4 data:float +@1295 = .sdata2:0x803F1230; // type:object size:0x8 scope:local align:8 data:double +@1437 = .sdata2:0x803F1238; // type:object size:0x4 scope:local align:4 data:float +@677 = .sdata2:0x803F1240; // type:object size:0x4 scope:local align:4 data:float +@679 = .sdata2:0x803F1248; // type:object size:0x8 scope:local align:8 data:double +@688 = .sdata2:0x803F1250; // type:object size:0x4 scope:local align:4 data:float +@689 = .sdata2:0x803F1254; // type:object size:0x4 scope:local align:4 data:float +@696 = .sdata2:0x803F1258; // type:object size:0x4 scope:local align:4 data:float +@720 = .sdata2:0x803F125C; // type:object size:0x4 scope:local align:4 data:float +@721 = .sdata2:0x803F1260; // type:object size:0x4 scope:local align:4 data:float +@722 = .sdata2:0x803F1264; // type:object size:0x4 scope:local align:4 data:float +@744 = .sdata2:0x803F1268; // type:object size:0x4 scope:local align:4 data:float +@745 = .sdata2:0x803F126C; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F1270; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F1274; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F1278; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F127C; // type:object size:0x4 scope:local align:4 data:float +@816 = .sdata2:0x803F1280; // type:object size:0x8 scope:local align:8 data:double +@900 = .sdata2:0x803F1288; // type:object size:0x4 scope:local align:4 data:float +@901 = .sdata2:0x803F128C; // type:object size:0x4 scope:local align:4 data:float +@697 = .sdata2:0x803F1290; // type:object size:0x4 scope:local align:4 data:float +@698 = .sdata2:0x803F1294; // type:object size:0x4 scope:local align:4 data:float +@699 = .sdata2:0x803F1298; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x803F129C; // type:object size:0x4 scope:local align:4 data:float +@701 = .sdata2:0x803F12A0; // type:object size:0x4 scope:local align:4 data:float +@702 = .sdata2:0x803F12A4; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x803F12A8; // type:object size:0x4 scope:local align:4 data:float +@705 = .sdata2:0x803F12B0; // type:object size:0x8 scope:local align:8 data:double +@725 = .sdata2:0x803F12B8; // type:object size:0x4 scope:local align:4 data:float +@850 = .sdata2:0x803F12BC; // type:object size:0x4 scope:local align:4 data:float +@1116 = .sdata2:0x803F12C0; // type:object size:0x4 scope:local align:4 data:float +@1203 = .sdata2:0x803F12C4; // type:object size:0x4 scope:local align:4 data:float +@1211 = .sdata2:0x803F12C8; // type:object size:0x4 scope:local align:4 data:float +@1231 = .sdata2:0x803F12CC; // type:object size:0x4 scope:local align:4 data:float +@1232 = .sdata2:0x803F12D0; // type:object size:0x4 scope:local align:4 data:float +@1233 = .sdata2:0x803F12D4; // type:object size:0x4 scope:local align:4 data:float +@1351 = .sdata2:0x803F12D8; // type:object size:0x8 scope:local align:8 data:double +@763 = .sdata2:0x803F12E0; // type:object size:0x4 scope:local align:4 data:float +@764 = .sdata2:0x803F12E4; // type:object size:0x4 scope:local align:4 data:float +@769 = .sdata2:0x803F12E8; // type:object size:0x4 scope:local align:4 data:float +@770 = .sdata2:0x803F12EC; // type:object size:0x4 scope:local align:4 data:float +@771 = .sdata2:0x803F12F0; // type:object size:0x4 scope:local align:4 data:float +@827 = .sdata2:0x803F12F8; // type:object size:0x8 scope:local align:8 data:double +@890 = .sdata2:0x803F1300; // type:object size:0x4 scope:local align:4 data:float +@927 = .sdata2:0x803F1308; // type:object size:0x4 scope:local align:4 data:float +@928 = .sdata2:0x803F130C; // type:object size:0x4 scope:local align:4 data:float +@1183 = .sdata2:0x803F1310; // type:object size:0x4 scope:local align:4 data:float +@1199 = .sdata2:0x803F1314; // type:object size:0x4 scope:local align:4 data:float +@1223 = .sdata2:0x803F1318; // type:object size:0x4 scope:local align:4 data:float +@1224 = .sdata2:0x803F131C; // type:object size:0x4 scope:local align:4 data:float +@1225 = .sdata2:0x803F1320; // type:object size:0x4 scope:local align:4 data:float +@1228 = .sdata2:0x803F1328; // type:object size:0x8 scope:local align:8 data:double +@591 = .sdata2:0x803F1330; // type:object size:0x4 scope:local align:4 data:float +@592 = .sdata2:0x803F1334; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x803F1338; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x803F133C; // type:object size:0x4 scope:local align:4 data:float +@993 = .sdata2:0x803F1340; // type:object size:0x4 scope:local align:4 data:float +@994 = .sdata2:0x803F1344; // type:object size:0x4 scope:local align:4 data:float +@1032 = .sdata2:0x803F1348; // type:object size:0x4 scope:local align:4 data:float +@733 = .sdata2:0x803F1350; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x803F1354; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x803F1358; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x803F135C; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x803F1360; // type:object size:0x4 scope:local align:4 data:float +@1072 = .sdata2:0x803F1364; // type:object size:0x4 scope:local align:4 data:float +@1073 = .sdata2:0x803F1368; // type:object size:0x4 scope:local align:4 data:float +@1074 = .sdata2:0x803F136C; // type:object size:0x4 scope:local align:4 data:float +@1075 = .sdata2:0x803F1370; // type:object size:0x4 scope:local align:4 data:float +@1076 = .sdata2:0x803F1374; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x803F1378; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x803F137C; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x803F1380; // type:object size:0x4 scope:local align:4 data:float +@737 = .sdata2:0x803F1388; // type:object size:0x4 scope:local align:4 data:float +@738 = .sdata2:0x803F138C; // type:object size:0x4 scope:local align:4 data:float +@739 = .sdata2:0x803F1390; // type:object size:0x4 scope:local align:4 data:float +@740 = .sdata2:0x803F1394; // type:object size:0x4 scope:local align:4 data:float +@741 = .sdata2:0x803F1398; // type:object size:0x4 scope:local align:4 data:float +@742 = .sdata2:0x803F139C; // type:object size:0x4 scope:local align:4 data:float +@975 = .sdata2:0x803F13A0; // type:object size:0x4 scope:local align:4 data:float +@976 = .sdata2:0x803F13A4; // type:object size:0x4 scope:local align:4 data:float +@977 = .sdata2:0x803F13A8; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x803F13B0; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x803F13B8; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x803F13BC; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x803F13C0; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x803F13C4; // type:object size:0x4 scope:local align:4 data:float +@1091 = .sdata2:0x803F13C8; // type:object size:0x4 scope:local align:4 data:float +@94 = .sdata2:0x803F13D0; // type:object size:0x4 scope:local align:4 data:float +@95 = .sdata2:0x803F13D4; // type:object size:0x4 scope:local align:4 data:float +@214 = .sdata2:0x803F13D8; // type:object size:0x4 scope:local align:4 data:float +@217 = .sdata2:0x803F13DC; // type:object size:0x4 scope:local align:4 data:float +@218 = .sdata2:0x803F13E0; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x803F13E8; // type:object size:0x4 scope:local align:4 data:float +@98 = .sdata2:0x803F13EC; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x803F13F0; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x803F13F4; // type:object size:0x4 scope:local align:4 data:float +@103 = .sdata2:0x803F13F8; // type:object size:0x4 scope:local align:4 data:float +@104 = .sdata2:0x803F13FC; // type:object size:0x4 scope:local align:4 data:float +@116 = .sdata2:0x803F1400; // type:object size:0x4 scope:local align:4 data:float +@117 = .sdata2:0x803F1404; // type:object size:0x4 scope:local align:4 data:float +@121 = .sdata2:0x803F1408; // type:object size:0x4 scope:local align:4 data:4byte +@122 = .sdata2:0x803F140C; // type:object size:0x4 scope:local align:4 data:4byte +@123 = .sdata2:0x803F1410; // type:object size:0x4 scope:local align:4 data:4byte +@177 = .sdata2:0x803F1414; // type:object size:0x4 scope:local align:4 data:float +@178 = .sdata2:0x803F1418; // type:object size:0x4 scope:local align:4 data:float +@179 = .sdata2:0x803F141C; // type:object size:0x4 scope:local align:4 data:float +@181 = .sdata2:0x803F1420; // type:object size:0x8 scope:local align:8 data:double +@83 = .sdata2:0x803F1428; // type:object size:0x4 scope:local align:4 data:float +@121 = .sdata2:0x803F1430; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F1434; // type:object size:0x4 scope:local align:4 data:float +@165 = .sdata2:0x803F1438; // type:object size:0x8 scope:local align:8 data:double +@166 = .sdata2:0x803F1440; // type:object size:0x8 scope:local align:8 data:double +@167 = .sdata2:0x803F1448; // type:object size:0x4 scope:local align:4 data:float +@164 = .sdata2:0x803F1450; // type:object size:0x4 scope:local align:4 data:float +@166 = .sdata2:0x803F1458; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F1460; // type:object size:0x4 scope:local align:4 data:float +@193 = .sdata2:0x803F1464; // type:object size:0x4 scope:local align:4 data:float +@194 = .sdata2:0x803F1468; // type:object size:0x4 scope:local align:4 data:float +@195 = .sdata2:0x803F146C; // type:object size:0x4 scope:local align:4 data:float +@196 = .sdata2:0x803F1470; // type:object size:0x4 scope:local align:4 data:float +@197 = .sdata2:0x803F1474; // type:object size:0x4 scope:local align:4 data:float +@125 = .sdata2:0x803F1478; // type:object size:0x4 scope:local align:4 data:float +@126 = .sdata2:0x803F147C; // type:object size:0x4 scope:local align:4 data:float +@127 = .sdata2:0x803F1480; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x803F1488; // type:object size:0x4 scope:local align:4 data:float +@129 = .sdata2:0x803F1490; // type:object size:0x8 scope:local align:8 data:double +@130 = .sdata2:0x803F1498; // type:object size:0x4 scope:local align:4 data:float +@132 = .sdata2:0x803F14A0; // type:object size:0x8 scope:local align:8 data:double +@16 = .sdata2:0x803F14A8; // type:object size:0x4 scope:local align:4 data:float +@63 = .sdata2:0x803F14AC; // type:object size:0x4 scope:local align:4 data:float +@64 = .sdata2:0x803F14B0; // type:object size:0x4 scope:local align:4 data:float +@268 = .sdata2:0x803F14B8; // type:object size:0x8 scope:local align:8 data:double +@269 = .sdata2:0x803F14C0; // type:object size:0x8 scope:local align:8 data:double +@270 = .sdata2:0x803F14C8; // type:object size:0x8 scope:local align:8 data:double +@272 = .sdata2:0x803F14D0; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x803F14D8; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x803F14E0; // type:object size:0x8 scope:local align:8 data:double +@919 = .sdata2:0x803F14E8; // type:object size:0x8 scope:local align:8 data:double +@209 = .sdata2:0x803F14F0; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x803F14F8; // type:object size:0x8 scope:local align:8 data:double +@182 = .sdata2:0x803F1500; // type:object size:0x8 scope:local align:8 data:double +@183 = .sdata2:0x803F1508; // type:object size:0x8 scope:local align:8 data:double +@184 = .sdata2:0x803F1510; // type:object size:0x8 scope:local align:8 data:double +@185 = .sdata2:0x803F1518; // type:object size:0x8 scope:local align:8 data:double +@186 = .sdata2:0x803F1520; // type:object size:0x8 scope:local align:8 data:double +@187 = .sdata2:0x803F1528; // type:object size:0x8 scope:local align:8 data:double +@188 = .sdata2:0x803F1530; // type:object size:0x8 scope:local align:8 data:double +@189 = .sdata2:0x803F1538; // type:object size:0x8 scope:local align:8 data:double +@190 = .sdata2:0x803F1540; // type:object size:0x8 scope:local align:8 data:double +@191 = .sdata2:0x803F1548; // type:object size:0x8 scope:local align:8 data:double +@192 = .sdata2:0x803F1550; // type:object size:0x8 scope:local align:8 data:double +@375 = .sdata2:0x803F1558; // type:object size:0x8 scope:local align:8 data:double +@376 = .sdata2:0x803F1560; // type:object size:0x8 scope:local align:8 data:double +@377 = .sdata2:0x803F1568; // type:object size:0x8 scope:local align:8 data:double +@378 = .sdata2:0x803F1570; // type:object size:0x8 scope:local align:8 data:double +@379 = .sdata2:0x803F1578; // type:object size:0x8 scope:local align:8 data:double +@380 = .sdata2:0x803F1580; // type:object size:0x8 scope:local align:8 data:double +@381 = .sdata2:0x803F1588; // type:object size:0x8 scope:local align:8 data:double +@382 = .sdata2:0x803F1590; // type:object size:0x8 scope:local align:8 data:double +@383 = .sdata2:0x803F1598; // type:object size:0x8 scope:local align:8 data:double +@384 = .sdata2:0x803F15A0; // type:object size:0x8 scope:local align:8 data:double +@385 = .sdata2:0x803F15A8; // type:object size:0x8 scope:local align:8 data:double +@386 = .sdata2:0x803F15B0; // type:object size:0x8 scope:local align:8 data:double +@387 = .sdata2:0x803F15B8; // type:object size:0x8 scope:local align:8 data:double +@388 = .sdata2:0x803F15C0; // type:object size:0x8 scope:local align:8 data:double +@389 = .sdata2:0x803F15C8; // type:object size:0x8 scope:local align:8 data:double +@390 = .sdata2:0x803F15D0; // type:object size:0x8 scope:local align:8 data:double +@391 = .sdata2:0x803F15D8; // type:object size:0x8 scope:local align:8 data:double +@392 = .sdata2:0x803F15E0; // type:object size:0x8 scope:local align:8 data:double +@393 = .sdata2:0x803F15E8; // type:object size:0x8 scope:local align:8 data:double +@394 = .sdata2:0x803F15F0; // type:object size:0x8 scope:local align:8 data:double +@395 = .sdata2:0x803F15F8; // type:object size:0x8 scope:local align:8 data:double +@396 = .sdata2:0x803F1600; // type:object size:0x8 scope:local align:8 data:double +@397 = .sdata2:0x803F1608; // type:object size:0x8 scope:local align:8 data:double +@398 = .sdata2:0x803F1610; // type:object size:0x8 scope:local align:8 data:double +@399 = .sdata2:0x803F1618; // type:object size:0x8 scope:local align:8 data:double +@400 = .sdata2:0x803F1620; // type:object size:0x8 scope:local align:8 data:double +@401 = .sdata2:0x803F1628; // type:object size:0x8 scope:local align:8 data:double +@402 = .sdata2:0x803F1630; // type:object size:0x8 scope:local align:8 data:double +@403 = .sdata2:0x803F1638; // type:object size:0x8 scope:local align:8 data:double +@404 = .sdata2:0x803F1640; // type:object size:0x8 scope:local align:8 data:double +@405 = .sdata2:0x803F1648; // type:object size:0x8 scope:local align:8 data:double +@406 = .sdata2:0x803F1650; // type:object size:0x8 scope:local align:8 data:double +@407 = .sdata2:0x803F1658; // type:object size:0x8 scope:local align:8 data:double +@409 = .sdata2:0x803F1660; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x803F1668; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F1670; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x803F1678; // type:object size:0x8 scope:local align:8 data:double +@158 = .sdata2:0x803F1680; // type:object size:0x8 scope:local align:8 data:double +@159 = .sdata2:0x803F1688; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x803F1690; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x803F1698; // type:object size:0x8 scope:local align:8 data:double +@132 = .sdata2:0x803F16A0; // type:object size:0x8 scope:local align:8 data:double +@133 = .sdata2:0x803F16A8; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x803F16B0; // type:object size:0x8 scope:local align:8 data:double +@135 = .sdata2:0x803F16B8; // type:object size:0x8 scope:local align:8 data:double +@156 = .sdata2:0x803F16C0; // type:object size:0x4 scope:local align:4 data:float +@157 = .sdata2:0x803F16C4; // type:object size:0x4 scope:local align:4 data:float +@158 = .sdata2:0x803F16C8; // type:object size:0x4 scope:local align:4 data:float +@159 = .sdata2:0x803F16CC; // type:object size:0x4 scope:local align:4 data:float +@168 = .sdata2:0x803F16D0; // type:object size:0x4 scope:local align:4 data:float +@169 = .sdata2:0x803F16D4; // type:object size:0x4 scope:local align:4 data:float +@170 = .sdata2:0x803F16D8; // type:object size:0x4 scope:local align:4 data:float +@188 = .sdata2:0x803F16DC; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x803F16E0; // type:object size:0x4 scope:local align:4 data:float +@107 = .sdata2:0x803F16E4; // type:object size:0x4 scope:local align:4 data:float +@108 = .sdata2:0x803F16E8; // type:object size:0x4 scope:local align:4 data:float +@110 = .sdata2:0x803F16F0; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x803F16F8; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x803F1700; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x803F1708; // type:object size:0x8 scope:local align:8 data:double diff --git a/configure.py b/configure.py old mode 100644 new mode 100755 index 3cbc16e6..c30faff6 --- a/configure.py +++ b/configure.py @@ -1,1423 +1,1046 @@ -LIBS = [ +#!/usr/bin/env python3 + +### +# Generates build files for the project. +# This file also includes the project configuration, +# such as compiler flags and the object matching status. +# +# Usage: +# python3 configure.py +# ninja +# +# Append --help to see available options. +### + +import argparse +import sys +from pathlib import Path +from typing import Any, Dict, List +from tools.project import * + +# Game versions +DEFAULT_VERSION = 4 +VERSIONS = [ + "DPIJ01", # PikiDemo / Jitsuen-you Sample + "GPIJ01_01", # JPN Rev 1 + "GPIJ01_02", # JPN Rev 2 + "GPIE01_00", # USA Rev 0 + "GPIE01_01", # USA Rev 1 + "GPIP01_00", # PAL Rev 0 +] + +parser = argparse.ArgumentParser() +parser.add_argument( + "mode", + choices=["configure", "progress"], + default="configure", + help="script mode (default: configure)", + nargs="?", +) +parser.add_argument( + "-v", + "--version", + choices=VERSIONS, + type=str.upper, + default=VERSIONS[DEFAULT_VERSION], + help="version to build", +) +parser.add_argument( + "--build-dir", + metavar="DIR", + type=Path, + default=Path("build"), + help="base build directory (default: build)", +) +parser.add_argument( + "--binutils", + metavar="BINARY", + type=Path, + help="path to binutils (optional)", +) +parser.add_argument( + "--compilers", + metavar="DIR", + type=Path, + help="path to compilers (optional)", +) +parser.add_argument( + "--map", + action="store_true", + help="generate map file(s)", +) +parser.add_argument( + "--debug", + action="store_true", + help="build with debug info (non-matching)", +) +if not is_windows(): + parser.add_argument( + "--wrapper", + metavar="BINARY", + type=Path, + help="path to wibo or wine (optional)", + ) +parser.add_argument( + "--dtk", + metavar="BINARY | DIR", + type=Path, + help="path to decomp-toolkit binary or source (optional)", +) +parser.add_argument( + "--objdiff", + metavar="BINARY | DIR", + type=Path, + help="path to objdiff-cli binary or source (optional)", +) +parser.add_argument( + "--sjiswrap", + metavar="EXE", + type=Path, + help="path to sjiswrap.exe (optional)", +) +parser.add_argument( + "--verbose", + action="store_true", + help="print verbose output", +) +parser.add_argument( + "--non-matching", + dest="non_matching", + action="store_true", + help="builds equivalent (but non-matching) or modded objects", +) +args = parser.parse_args() + +config = ProjectConfig() +config.version = str(args.version) +version_num = VERSIONS.index(config.version) + +# Apply arguments +config.build_dir = args.build_dir +config.dtk_path = args.dtk +config.objdiff_path = args.objdiff +config.binutils_path = args.binutils +config.compilers_path = args.compilers +config.generate_map = args.map +config.non_matching = args.non_matching +config.sjiswrap_path = args.sjiswrap +if not is_windows(): + config.wrapper = args.wrapper +# Don't build asm unless we're --non-matching +if not config.non_matching: + config.asm_dir = None + +# Tool versions +config.binutils_tag = "2.42-1" +config.compilers_tag = "20240706" +config.dtk_tag = "v0.9.6" +config.objdiff_tag = "v2.0.0" +config.sjiswrap_tag = "v1.1.1" +config.wibo_tag = "0.6.11" + +# Project +config.config_path = Path("config") / config.version / "config.yml" +config.check_sha_path = Path("config") / config.version / "build.sha1" +config.asflags = [ + "-mgekko", + "--strip-local-absolute", + "-I include", + f"-I build/{config.version}/include", + f"--defsym version={version_num}", +] +config.ldflags = [ + "-fp hardware", + "-nodefaults", +] +if args.debug: + config.ldflags.append("-g") +if args.map: + config.ldflags.append("-mapunused") +# Use for any additional files that should cause a re-configure when modified +config.reconfig_deps = [] + +# Progress configuration +config.progress_all = False +config.progress_use_fancy = True +config.progress_code_fancy_frac = 30 +config.progress_code_fancy_item = "ship parts" +config.progress_data_fancy_frac = 100 +config.progress_data_fancy_item = "Pikmin" + +# Base flags, common to most GC/Wii games. +# Generally leave untouched, with overrides added below. +cflags_base = [ + "-nodefaults", + "-proc gekko", + "-align powerpc", + "-enum int", + "-fp hardware", + "-Cpp_exceptions off", + # "-W all", + "-O4,p", + "-inline auto", + '-pragma "cats off"', + '-pragma "warn_notinlined off"', + "-maxerrors 1", + "-nosyspath", + "-RTTI off", + "-fp_contract on", + "-str reuse", + "-multibyte", + "-i include", + "-i include/stl", + f"-i build/{config.version}/include", + f"-DVERSION={version_num}", +] + +# Debug flags +if args.debug: + cflags_base.extend(["-sym on", "-DDEBUG=1"]) +else: + cflags_base.append("-DNDEBUG=1") + +# JAudio flags +cflags_jaudio = [ + *cflags_base, + "-common on", + "-func_align 32", + "-lang c++", +] + +# Game code flags +cflags_pikmin = [ + *cflags_base, + "-fp_contract off", + "-common on", + "-RTTI on", +] + +config.linker_version = "GC/1.2.5" + + +# Helper function for Dolphin libraries +def DolphinLib(lib_name: str, objects: List[Object]) -> Dict[str, Any]: + mw_version = "GC/1.2.5" + if version_num == 0: + mw_version = "GC/1.2.5n" + return { + "lib": lib_name, + "mw_version": mw_version, + "cflags": cflags_base, + "progress_category": "sdk", + "objects": objects, + } + + +Matching = True # Object matches and should be linked +NonMatching = False # Object does not match and should not be linked +Equivalent = config.non_matching # Object should be linked when configured with --non-matching + +config.warn_missing_config = True +config.warn_missing_source = False +config.libs = [ { "lib": "sysBootup", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["sysBootup", True], + Object(Matching, "sysBootup.cpp"), ], }, { "lib": "jaudio", - "cflags": "$cflags_pikmin -func_align 32 -lang c++", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_jaudio, + "mw_version": "GC/1.2.5n", "objects": [ - ["jaudio/dummyprobe", True], - ["jaudio/memory", False], - ["jaudio/aictrl", False], - ["jaudio/sample", False], - ["jaudio/dummyrom", False], - ["jaudio/audiothread", False], - ["jaudio/audiothread_fakebss", False], - ["jaudio/streamctrl", False], - ["jaudio/dspbuf", False], - ["jaudio/cpubuf", False], - ["jaudio/playercall", False], - ["jaudio/dvdthread", False], - ["jaudio/audiomesg", False], - ["jaudio/rate", False], - ["jaudio/stackchecker", False], - ["jaudio/dspboot", False], - ["jaudio/dspproc", False], - ["jaudio/ipldec", False], - ["jaudio/dsp_cardunlock", False], - ["jaudio/driverinterface", False], - ["jaudio/dspdriver", False], - ["jaudio/dspinterface", False], - ["jaudio/fxinterface", False], - ["jaudio/bankread", False], - ["jaudio/waveread", False], - ["jaudio/connect", False], - ["jaudio/tables", False], - ["jaudio/bankdrv", False], - ["jaudio/random", False], - ["jaudio/aramcall", False], - ["jaudio/ja_calc", False], - ["jaudio/fat", False], - ["jaudio/cmdstack", False], - ["jaudio/virload", False], - ["jaudio/heapctrl", False], - ["jaudio/jammain_2", False], - ["jaudio/midplay", False], - ["jaudio/noteon", False], - ["jaudio/seqsetup", False], - ["jaudio/centcalc", False], - ["jaudio/jamosc", False], - ["jaudio/oneshot", False], - ["jaudio/interface", False], - ["jaudio/verysimple", False], - ["jaudio/app_inter", False], - ["jaudio/pikiinter", False], - ["jaudio/piki_player", False], - ["jaudio/piki_bgm", False], - ["jaudio/piki_scene", False], - ["jaudio/pikidemo", False], - ["jaudio/file_seq", False], - ["jaudio/cmdqueue", False], - ["jaudio/filter3d", True], - ["jaudio/syncstream", False], - ["jaudio/bankloader", False], - ["jaudio/interleave", False], - ["jaudio/pikiseq", False], - ["jaudio/hplaybss", False], - ["jaudio/hplaybss2", False], - ["jaudio/hvqm_play", False], + Object(Matching, "jaudio/dummyprobe.c"), + Object(NonMatching, "jaudio/memory.c"), + Object(NonMatching, "jaudio/aictrl.c"), + Object(NonMatching, "jaudio/sample.c"), + Object(NonMatching, "jaudio/dummyrom.c"), + Object(NonMatching, "jaudio/audiothread.c"), + Object(NonMatching, "jaudio/audiothread_fakebss.o"), + Object(NonMatching, "jaudio/streamctrl.c"), + Object(NonMatching, "jaudio/dspbuf.c"), + Object(NonMatching, "jaudio/cpubuf.c"), + Object(NonMatching, "jaudio/playercall.c"), + Object(NonMatching, "jaudio/dvdthread.c"), + Object(NonMatching, "jaudio/audiomesg.c"), + Object(NonMatching, "jaudio/rate.c"), + Object(NonMatching, "jaudio/stackchecker.c"), + Object(NonMatching, "jaudio/dspboot.c"), + Object(NonMatching, "jaudio/dspproc.c"), + Object(NonMatching, "jaudio/ipldec.c"), + Object(NonMatching, "jaudio/dsp_cardunlock.c"), + Object(NonMatching, "jaudio/driverinterface.c"), + Object(NonMatching, "jaudio/dspdriver.c"), + Object(NonMatching, "jaudio/dspinterface.c"), + Object(NonMatching, "jaudio/fxinterface.c"), + Object(NonMatching, "jaudio/bankread.c"), + Object(NonMatching, "jaudio/waveread.c"), + Object(NonMatching, "jaudio/connect.c"), + Object(NonMatching, "jaudio/tables.c"), + Object(NonMatching, "jaudio/bankdrv.c"), + Object(NonMatching, "jaudio/random.c"), + Object(NonMatching, "jaudio/aramcall.c"), + Object(NonMatching, "jaudio/ja_calc.c"), + Object(NonMatching, "jaudio/fat.c"), + Object(NonMatching, "jaudio/cmdstack.c"), + Object(NonMatching, "jaudio/virload.c"), + Object(NonMatching, "jaudio/heapctrl.c"), + Object(NonMatching, "jaudio/jammain_2.c"), + Object(NonMatching, "jaudio/midplay.c"), + Object(NonMatching, "jaudio/noteon.c"), + Object(NonMatching, "jaudio/seqsetup.c"), + Object(NonMatching, "jaudio/centcalc.c"), + Object(NonMatching, "jaudio/jamosc.c"), + Object(NonMatching, "jaudio/oneshot.c"), + Object(NonMatching, "jaudio/interface.c"), + Object(NonMatching, "jaudio/verysimple.c"), + Object(NonMatching, "jaudio/app_inter.c"), + Object(NonMatching, "jaudio/pikiinter.c"), + Object(NonMatching, "jaudio/piki_player.c"), + Object(NonMatching, "jaudio/piki_bgm.c"), + Object(NonMatching, "jaudio/piki_scene.c"), + Object(NonMatching, "jaudio/pikidemo.c"), + Object(NonMatching, "jaudio/file_seq.c"), + Object(NonMatching, "jaudio/cmdqueue.c"), + Object(Matching, "jaudio/filter3d.c"), + Object(NonMatching, "jaudio/syncstream.c"), + Object(NonMatching, "jaudio/bankloader.c"), + Object(NonMatching, "jaudio/interleave.c"), + Object(NonMatching, "jaudio/pikiseq.c"), + Object(NonMatching, "jaudio/hplaybss.c"), + Object(NonMatching, "jaudio/hplaybss2.c"), + Object(NonMatching, "jaudio/hvqm_play.c"), ], }, { "lib": "hvqm4dec", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, + "cflags": cflags_base, + "mw_version": "GC/1.2.5", "objects": [ - ["hvqm4dec/hvqm4dec", False], + Object(NonMatching, "hvqm4dec/hvqm4dec.c"), ], }, { "lib": "sysCommon", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["sysCommon/ayuStack", False], - ["sysCommon/baseApp", True], - ["sysCommon/stream", True], - ["sysCommon/streamBufferedInput", False], - ["sysCommon/string", True], - ["sysCommon/graphics", False], - ["sysCommon/grLight", False], - ["sysCommon/shapeBase", False], - ["sysCommon/shpLightFlares", False], - ["sysCommon/shpObjColl", True], - ["sysCommon/shpRoutes", False], - ["sysCommon/sysMath", False], - ["sysCommon/matMath", False], - ["sysCommon/stdSystem", False], - ["sysCommon/node", False], - ["sysCommon/timers", True], - ["sysCommon/controller", True], - ["sysCommon/cmdStream", True], - ["sysCommon/camera", False], - ["sysCommon/atx", True], - ["sysCommon/id32", True], + Object(NonMatching, "sysCommon/ayuStack.cpp"), + Object(Matching, "sysCommon/baseApp.cpp"), + Object(Matching, "sysCommon/stream.cpp"), + Object(NonMatching, "sysCommon/streamBufferedInput.cpp"), + Object(Matching, "sysCommon/string.cpp"), + Object(NonMatching, "sysCommon/graphics.cpp"), + Object(NonMatching, "sysCommon/grLight.cpp"), + Object(NonMatching, "sysCommon/shapeBase.cpp"), + Object(NonMatching, "sysCommon/shpLightFlares.cpp"), + Object(Matching, "sysCommon/shpObjColl.cpp"), + Object(NonMatching, "sysCommon/shpRoutes.cpp"), + Object(NonMatching, "sysCommon/sysMath.cpp"), + Object(NonMatching, "sysCommon/matMath.cpp"), + Object(NonMatching, "sysCommon/stdSystem.cpp"), + Object(NonMatching, "sysCommon/node.cpp"), + Object(Matching, "sysCommon/timers.cpp"), + Object(Matching, "sysCommon/controller.cpp"), + Object(Matching, "sysCommon/cmdStream.cpp"), + Object(NonMatching, "sysCommon/camera.cpp"), + Object(Matching, "sysCommon/atx.cpp"), + Object(Matching, "sysCommon/id32.cpp"), ], }, { "lib": "sysDolphin", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["sysDolphin/texture", False], - ["sysDolphin/system", False], - ["sysDolphin/sysNew", False], - ["sysDolphin/controllerMgr", False], - ["sysDolphin/dgxGraphics", False], - ["sysDolphin/gameApp", True], + Object(NonMatching, "sysDolphin/texture.cpp"), + Object(NonMatching, "sysDolphin/system.cpp"), + Object(NonMatching, "sysDolphin/sysNew.cpp"), + Object(NonMatching, "sysDolphin/controllerMgr.cpp"), + Object(NonMatching, "sysDolphin/dgxGraphics.cpp"), + Object(Matching, "sysDolphin/gameApp.cpp"), ], }, { "lib": "plugPikiColin", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["plugPikiColin/cardutil", False], - ["plugPikiColin/dynsimulator", False], - ["plugPikiColin/animMgr", False], - ["plugPikiColin/gameflow", False], - ["plugPikiColin/game", False], - ["plugPikiColin/gamePrefs", False], - ["plugPikiColin/gameSetup", False], - ["plugPikiColin/cardSelect", False], - ["plugPikiColin/mapSelect", False], - ["plugPikiColin/newPikiGame", False], - ["plugPikiColin/introGame", False], - ["plugPikiColin/gameExit", True], - ["plugPikiColin/gauges", False], - ["plugPikiColin/genMapObject", False], - ["plugPikiColin/gui", False], - ["plugPikiColin/parameters", False], - ["plugPikiColin/plugPiki", False], - ["plugPikiColin/titles", False], - ["plugPikiColin/ninLogo", False], - ["plugPikiColin/mapMgr", False], - ["plugPikiColin/dayMgr", False], - ["plugPikiColin/cinePlayer", False], - ["plugPikiColin/lightPool", False], - ["plugPikiColin/memoryCard", False], - ["plugPikiColin/moviePlayer", False], - ["plugPikiColin/movSample", False], + Object(NonMatching, "plugPikiColin/cardutil.cpp"), + Object(NonMatching, "plugPikiColin/dynsimulator.cpp"), + Object(NonMatching, "plugPikiColin/animMgr.cpp"), + Object(NonMatching, "plugPikiColin/gameflow.cpp"), + Object(NonMatching, "plugPikiColin/game.cpp"), + Object(NonMatching, "plugPikiColin/gamePrefs.cpp"), + Object(NonMatching, "plugPikiColin/gameSetup.cpp"), + Object(NonMatching, "plugPikiColin/cardSelect.cpp"), + Object(NonMatching, "plugPikiColin/mapSelect.cpp"), + Object(NonMatching, "plugPikiColin/newPikiGame.cpp"), + Object(NonMatching, "plugPikiColin/introGame.cpp"), + Object(Matching, "plugPikiColin/gameExit.cpp"), + Object(NonMatching, "plugPikiColin/gauges.cpp"), + Object(NonMatching, "plugPikiColin/genMapObject.cpp"), + Object(NonMatching, "plugPikiColin/gui.cpp"), + Object(NonMatching, "plugPikiColin/parameters.cpp"), + Object(NonMatching, "plugPikiColin/plugPiki.cpp"), + Object(NonMatching, "plugPikiColin/titles.cpp"), + Object(NonMatching, "plugPikiColin/ninLogo.cpp"), + Object(NonMatching, "plugPikiColin/mapMgr.cpp"), + Object(NonMatching, "plugPikiColin/dayMgr.cpp"), + Object(NonMatching, "plugPikiColin/cinePlayer.cpp"), + Object(NonMatching, "plugPikiColin/lightPool.cpp"), + Object(NonMatching, "plugPikiColin/memoryCard.cpp"), + Object(NonMatching, "plugPikiColin/moviePlayer.cpp"), + Object(NonMatching, "plugPikiColin/movSample.cpp"), ], }, { "lib": "plugPikiKando", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["plugPikiKando/omake", False], - ["plugPikiKando/radarInfo", False], - ["plugPikiKando/interactBattle", False], - ["plugPikiKando/interactGrab", False], - ["plugPikiKando/interactEtc", False], - ["plugPikiKando/interactPullout", False], - ["plugPikiKando/saiEvents", False], - ["plugPikiKando/simpleAI", False], - ["plugPikiKando/formationMgr", False], - ["plugPikiKando/globalShapes", True], - ["plugPikiKando/playerState", False], - ["plugPikiKando/gameDemo", False], - ["plugPikiKando/demoInvoker", False], - ["plugPikiKando/demoEvent", False], - ["plugPikiKando/resultFlag", False], - ["plugPikiKando/aiConstants", False], - ["plugPikiKando/kio", False], - ["plugPikiKando/keyConfig", False], - ["plugPikiKando/aiPerf", False], - ["plugPikiKando/courseDebug", False], - ["plugPikiKando/memStat", False], - ["plugPikiKando/collInfo", False], - ["plugPikiKando/complexCreature", False], - ["plugPikiKando/creature", False], - ["plugPikiKando/creatureCollision", False], - ["plugPikiKando/creatureCollPart", False], - ["plugPikiKando/creatureMove", False], - ["plugPikiKando/creatureStick", False], - ["plugPikiKando/dualCreature", False], - ["plugPikiKando/dynCreature", False], - ["plugPikiKando/eventListener", True], - ["plugPikiKando/fastGrid", False], - ["plugPikiKando/ropeCreature", False], - ["plugPikiKando/objectTypes", True], - ["plugPikiKando/pelletMgr", False], - ["plugPikiKando/animPellet", False], - ["plugPikiKando/genPellet", False], - ["plugPikiKando/pelletState", False], - ["plugPikiKando/workObject", False], - ["plugPikiKando/routeMgr", False], - ["plugPikiKando/seMgr", False], - ["plugPikiKando/seConstants", False], - ["plugPikiKando/soundMgr", False], - ["plugPikiKando/updateMgr", False], - ["plugPikiKando/cPlate", False], - ["plugPikiKando/aiStone", False], - ["plugPikiKando/aiActions", False], - ["plugPikiKando/aiAttack", False], - ["plugPikiKando/aiBore", False], - ["plugPikiKando/aiBoMake", False], - ["plugPikiKando/aiBou", False], - ["plugPikiKando/aiBridge", False], - ["plugPikiKando/aiBreakWall", False], - ["plugPikiKando/aiTransport", False], - ["plugPikiKando/aiKinoko", False], - ["plugPikiKando/aiChase", False], - ["plugPikiKando/aiCrowd", False], - ["plugPikiKando/aiDecoy", False], - ["plugPikiKando/aiEnter", False], - ["plugPikiKando/aiEscape", False], - ["plugPikiKando/aiExit", False], - ["plugPikiKando/aiMine", False], - ["plugPikiKando/aiFormation", False], - ["plugPikiKando/aiFree", False], - ["plugPikiKando/aiGoto", False], - ["plugPikiKando/aiGuard", False], - ["plugPikiKando/aiPick", False], - ["plugPikiKando/aiPickCreature", False], - ["plugPikiKando/aiPullout", False], - ["plugPikiKando/aiPush", False], - ["plugPikiKando/aiPut", False], - ["plugPikiKando/aiRandomBoid", False], - ["plugPikiKando/aiRescue", False], - ["plugPikiKando/aiRope", False], - ["plugPikiKando/aiShoot", False], - ["plugPikiKando/aiWatch", False], - ["plugPikiKando/aiWeed", False], - ["plugPikiKando/aiTable", False], - ["plugPikiKando/aiAction", False], - ["plugPikiKando/pikiInf", False], - ["plugPikiKando/piki", False], - ["plugPikiKando/odoMeter", True], - ["plugPikiKando/pikidoKill", False], - ["plugPikiKando/pikiMgr", False], - ["plugPikiKando/pikiState", False], - ["plugPikiKando/viewPiki", False], - ["plugPikiKando/conditions", True], - ["plugPikiKando/generator", False], - ["plugPikiKando/generatorCache", False], - ["plugPikiKando/objectMgr", False], - ["plugPikiKando/searchSystem", False], - ["plugPikiKando/smartPtr", True], - ["plugPikiKando/itemGem", False], - ["plugPikiKando/weedsItem", False], - ["plugPikiKando/kusaItem", False], - ["plugPikiKando/fishItem", False], - ["plugPikiKando/ufoItem", False], - ["plugPikiKando/ufoAnim", False], - ["plugPikiKando/bombItem", False], - ["plugPikiKando/goalItem", False], - ["plugPikiKando/pikiheadItem", False], - ["plugPikiKando/keyItem", False], - ["plugPikiKando/ropeItem", False], - ["plugPikiKando/seedItem", False], - ["plugPikiKando/genItem", False], - ["plugPikiKando/itemAI", False], - ["plugPikiKando/itemMgr", False], - ["plugPikiKando/itemObject", False], - ["plugPikiKando/mizuItem", False], - ["plugPikiKando/paniItemAnimator", False], - ["plugPikiKando/genNavi", False], - ["plugPikiKando/navi", False], - ["plugPikiKando/naviState", False], - ["plugPikiKando/naviDemoState", False], - ["plugPikiKando/gameCoreSection", False], - ["plugPikiKando/gmWin", False], - ["plugPikiKando/gameStat", False], - ["plugPikiKando/kmath", False], - ["plugPikiKando/uteffect", False], - ["plugPikiKando/kontroller", False], - ["plugPikiKando/mapcode", True], - ["plugPikiKando/utkando", False], - ["plugPikiKando/naviMgr", False], - ["plugPikiKando/genMapParts", False], - ["plugPikiKando/mapParts", False], - ["plugPikiKando/panipikianimator", False], - ["plugPikiKando/actor", False], - ["plugPikiKando/actorMgr", True], - ["plugPikiKando/genActor", False], - ["plugPikiKando/pikiInfo", True], - ["plugPikiKando/plantMgr", False], - ["plugPikiKando/paniPlantAnimator", False], + Object(NonMatching, "plugPikiKando/omake.cpp"), + Object(NonMatching, "plugPikiKando/radarInfo.cpp"), + Object(NonMatching, "plugPikiKando/interactBattle.cpp"), + Object(NonMatching, "plugPikiKando/interactGrab.cpp"), + Object(NonMatching, "plugPikiKando/interactEtc.cpp"), + Object(NonMatching, "plugPikiKando/interactPullout.cpp"), + Object(NonMatching, "plugPikiKando/saiEvents.cpp"), + Object(NonMatching, "plugPikiKando/simpleAI.cpp"), + Object(NonMatching, "plugPikiKando/formationMgr.cpp"), + Object(Matching, "plugPikiKando/globalShapes.cpp"), + Object(NonMatching, "plugPikiKando/playerState.cpp"), + Object(NonMatching, "plugPikiKando/gameDemo.cpp"), + Object(NonMatching, "plugPikiKando/demoInvoker.cpp"), + Object(NonMatching, "plugPikiKando/demoEvent.cpp"), + Object(NonMatching, "plugPikiKando/resultFlag.cpp"), + Object(NonMatching, "plugPikiKando/aiConstants.cpp"), + Object(NonMatching, "plugPikiKando/kio.cpp"), + Object(NonMatching, "plugPikiKando/keyConfig.cpp"), + Object(NonMatching, "plugPikiKando/aiPerf.cpp"), + Object(NonMatching, "plugPikiKando/courseDebug.cpp"), + Object(NonMatching, "plugPikiKando/memStat.cpp"), + Object(NonMatching, "plugPikiKando/collInfo.cpp"), + Object(NonMatching, "plugPikiKando/complexCreature.cpp"), + Object(NonMatching, "plugPikiKando/creature.cpp"), + Object(NonMatching, "plugPikiKando/creatureCollision.cpp"), + Object(NonMatching, "plugPikiKando/creatureCollPart.cpp"), + Object(NonMatching, "plugPikiKando/creatureMove.cpp"), + Object(NonMatching, "plugPikiKando/creatureStick.cpp"), + Object(NonMatching, "plugPikiKando/dualCreature.cpp"), + Object(NonMatching, "plugPikiKando/dynCreature.cpp"), + Object(Matching, "plugPikiKando/eventListener.cpp"), + Object(NonMatching, "plugPikiKando/fastGrid.cpp"), + Object(NonMatching, "plugPikiKando/ropeCreature.cpp"), + Object(Matching, "plugPikiKando/objectTypes.cpp"), + Object(NonMatching, "plugPikiKando/pelletMgr.cpp"), + Object(NonMatching, "plugPikiKando/animPellet.cpp"), + Object(NonMatching, "plugPikiKando/genPellet.cpp"), + Object(NonMatching, "plugPikiKando/pelletState.cpp"), + Object(NonMatching, "plugPikiKando/workObject.cpp"), + Object(NonMatching, "plugPikiKando/routeMgr.cpp"), + Object(NonMatching, "plugPikiKando/seMgr.cpp"), + Object(NonMatching, "plugPikiKando/seConstants.cpp"), + Object(NonMatching, "plugPikiKando/soundMgr.cpp"), + Object(NonMatching, "plugPikiKando/updateMgr.cpp"), + Object(NonMatching, "plugPikiKando/cPlate.cpp"), + Object(NonMatching, "plugPikiKando/aiStone.cpp"), + Object(NonMatching, "plugPikiKando/aiActions.cpp"), + Object(NonMatching, "plugPikiKando/aiAttack.cpp"), + Object(NonMatching, "plugPikiKando/aiBore.cpp"), + Object(NonMatching, "plugPikiKando/aiBoMake.cpp"), + Object(NonMatching, "plugPikiKando/aiBou.cpp"), + Object(NonMatching, "plugPikiKando/aiBridge.cpp"), + Object(NonMatching, "plugPikiKando/aiBreakWall.cpp"), + Object(NonMatching, "plugPikiKando/aiTransport.cpp"), + Object(NonMatching, "plugPikiKando/aiKinoko.cpp"), + Object(NonMatching, "plugPikiKando/aiChase.cpp"), + Object(NonMatching, "plugPikiKando/aiCrowd.cpp"), + Object(NonMatching, "plugPikiKando/aiDecoy.cpp"), + Object(NonMatching, "plugPikiKando/aiEnter.cpp"), + Object(NonMatching, "plugPikiKando/aiEscape.cpp"), + Object(NonMatching, "plugPikiKando/aiExit.cpp"), + Object(NonMatching, "plugPikiKando/aiMine.cpp"), + Object(NonMatching, "plugPikiKando/aiFormation.cpp"), + Object(NonMatching, "plugPikiKando/aiFree.cpp"), + Object(NonMatching, "plugPikiKando/aiGoto.cpp"), + Object(NonMatching, "plugPikiKando/aiGuard.cpp"), + Object(NonMatching, "plugPikiKando/aiPick.cpp"), + Object(NonMatching, "plugPikiKando/aiPickCreature.cpp"), + Object(NonMatching, "plugPikiKando/aiPullout.cpp"), + Object(NonMatching, "plugPikiKando/aiPush.cpp"), + Object(NonMatching, "plugPikiKando/aiPut.cpp"), + Object(NonMatching, "plugPikiKando/aiRandomBoid.cpp"), + Object(NonMatching, "plugPikiKando/aiRescue.cpp"), + Object(NonMatching, "plugPikiKando/aiRope.cpp"), + Object(NonMatching, "plugPikiKando/aiShoot.cpp"), + Object(NonMatching, "plugPikiKando/aiWatch.cpp"), + Object(NonMatching, "plugPikiKando/aiWeed.cpp"), + Object(NonMatching, "plugPikiKando/aiTable.cpp"), + Object(NonMatching, "plugPikiKando/aiAction.cpp"), + Object(NonMatching, "plugPikiKando/pikiInf.cpp"), + Object(NonMatching, "plugPikiKando/piki.cpp"), + Object(Matching, "plugPikiKando/odoMeter.cpp"), + Object(NonMatching, "plugPikiKando/pikidoKill.cpp"), + Object(NonMatching, "plugPikiKando/pikiMgr.cpp"), + Object(NonMatching, "plugPikiKando/pikiState.cpp"), + Object(NonMatching, "plugPikiKando/viewPiki.cpp"), + Object(Matching, "plugPikiKando/conditions.cpp"), + Object(NonMatching, "plugPikiKando/generator.cpp"), + Object(NonMatching, "plugPikiKando/generatorCache.cpp"), + Object(NonMatching, "plugPikiKando/objectMgr.cpp"), + Object(NonMatching, "plugPikiKando/searchSystem.cpp"), + Object(Matching, "plugPikiKando/smartPtr.cpp"), + Object(NonMatching, "plugPikiKando/itemGem.cpp"), + Object(NonMatching, "plugPikiKando/weedsItem.cpp"), + Object(NonMatching, "plugPikiKando/kusaItem.cpp"), + Object(NonMatching, "plugPikiKando/fishItem.cpp"), + Object(NonMatching, "plugPikiKando/ufoItem.cpp"), + Object(NonMatching, "plugPikiKando/ufoAnim.cpp"), + Object(NonMatching, "plugPikiKando/bombItem.cpp"), + Object(NonMatching, "plugPikiKando/goalItem.cpp"), + Object(NonMatching, "plugPikiKando/pikiheadItem.cpp"), + Object(NonMatching, "plugPikiKando/keyItem.cpp"), + Object(NonMatching, "plugPikiKando/ropeItem.cpp"), + Object(NonMatching, "plugPikiKando/seedItem.cpp"), + Object(NonMatching, "plugPikiKando/genItem.cpp"), + Object(NonMatching, "plugPikiKando/itemAI.cpp"), + Object(NonMatching, "plugPikiKando/itemMgr.cpp"), + Object(NonMatching, "plugPikiKando/itemObject.cpp"), + Object(NonMatching, "plugPikiKando/mizuItem.cpp"), + Object(NonMatching, "plugPikiKando/paniItemAnimator.cpp"), + Object(NonMatching, "plugPikiKando/genNavi.cpp"), + Object(NonMatching, "plugPikiKando/navi.cpp"), + Object(NonMatching, "plugPikiKando/naviState.cpp"), + Object(NonMatching, "plugPikiKando/naviDemoState.cpp"), + Object(NonMatching, "plugPikiKando/gameCoreSection.cpp"), + Object(NonMatching, "plugPikiKando/gmWin.cpp"), + Object(NonMatching, "plugPikiKando/gameStat.cpp"), + Object(NonMatching, "plugPikiKando/kmath.cpp"), + Object(NonMatching, "plugPikiKando/uteffect.cpp"), + Object(NonMatching, "plugPikiKando/kontroller.cpp"), + Object(Matching, "plugPikiKando/mapcode.cpp"), + Object(NonMatching, "plugPikiKando/utkando.cpp"), + Object(NonMatching, "plugPikiKando/naviMgr.cpp"), + Object(NonMatching, "plugPikiKando/genMapParts.cpp"), + Object(NonMatching, "plugPikiKando/mapParts.cpp"), + Object(NonMatching, "plugPikiKando/panipikianimator.cpp"), + Object(NonMatching, "plugPikiKando/actor.cpp"), + Object(Matching, "plugPikiKando/actorMgr.cpp"), + Object(NonMatching, "plugPikiKando/genActor.cpp"), + Object(Matching, "plugPikiKando/pikiInfo.cpp"), + Object(NonMatching, "plugPikiKando/plantMgr.cpp"), + Object(NonMatching, "plugPikiKando/paniPlantAnimator.cpp"), ], }, { "lib": "plugPikiNakata", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["plugPikiNakata/genteki", False], - ["plugPikiNakata/nakatacode", True], - ["plugPikiNakata/nlibfunction", False], - ["plugPikiNakata/nlibgeometry", False], - ["plugPikiNakata/nlibgeometry3d", False], - ["plugPikiNakata/nlibgraphics", False], - ["plugPikiNakata/nlibmath", False], - ["plugPikiNakata/nlibspline", False], - ["plugPikiNakata/nlibsystem", False], - ["plugPikiNakata/panianimator", False], - ["plugPikiNakata/panipikianimmgr", False], - ["plugPikiNakata/panitekianimator", False], - ["plugPikiNakata/panitestsection", False], - ["plugPikiNakata/paraparameters", False], - ["plugPikiNakata/pcamcamera", False], - ["plugPikiNakata/pcamcameramanager", False], - ["plugPikiNakata/pcammotionevents", False], - ["plugPikiNakata/pcamcameraparameters", False], - ["plugPikiNakata/peve", False], - ["plugPikiNakata/peveconditions", False], - ["plugPikiNakata/pevemotionevents", False], - ["plugPikiNakata/tai", False], - ["plugPikiNakata/taiattackactions", False], - ["plugPikiNakata/taibasicactions", False], - ["plugPikiNakata/taichappy", False], - ["plugPikiNakata/taicollec", False], - ["plugPikiNakata/taicollisionactions", False], - ["plugPikiNakata/taieffectactions", False], - ["plugPikiNakata/taiiwagen", False], - ["plugPikiNakata/taijudgementactions", False], - ["plugPikiNakata/taikinoko", False], - ["plugPikiNakata/taimessageactions", False], - ["plugPikiNakata/taimizinko", False], - ["plugPikiNakata/taimotionactions", False], - ["plugPikiNakata/taimoveactions", False], - ["plugPikiNakata/tainapkid", False], - ["plugPikiNakata/taiotimoti", False], - ["plugPikiNakata/taipalm", False], - ["plugPikiNakata/taireactionactions", False], - ["plugPikiNakata/taiswallow", False], - ["plugPikiNakata/taishell", False], - ["plugPikiNakata/taitimeractions", False], - ["plugPikiNakata/taiwaitactions", False], - ["plugPikiNakata/teki", False], - ["plugPikiNakata/tekianimationmanager", False], - ["plugPikiNakata/tekibteki", False], - ["plugPikiNakata/tekiconditions", False], - ["plugPikiNakata/tekievent", True], - ["plugPikiNakata/tekiinteraction", False], - ["plugPikiNakata/tekimgr", False], - ["plugPikiNakata/tekinakata", False], - ["plugPikiNakata/tekinteki", False], - ["plugPikiNakata/tekiparameters", False], - ["plugPikiNakata/tekipersonality", False], - ["plugPikiNakata/tekistrategy", True], + Object(NonMatching, "plugPikiNakata/genteki.cpp"), + Object(Matching, "plugPikiNakata/nakatacode.cpp"), + Object(NonMatching, "plugPikiNakata/nlibfunction.cpp"), + Object(NonMatching, "plugPikiNakata/nlibgeometry.cpp"), + Object(NonMatching, "plugPikiNakata/nlibgeometry3d.cpp"), + Object(NonMatching, "plugPikiNakata/nlibgraphics.cpp"), + Object(NonMatching, "plugPikiNakata/nlibmath.cpp"), + Object(NonMatching, "plugPikiNakata/nlibspline.cpp"), + Object(NonMatching, "plugPikiNakata/nlibsystem.cpp"), + Object(NonMatching, "plugPikiNakata/panianimator.cpp"), + Object(NonMatching, "plugPikiNakata/panipikianimmgr.cpp"), + Object(NonMatching, "plugPikiNakata/panitekianimator.cpp"), + Object(NonMatching, "plugPikiNakata/panitestsection.cpp"), + Object(NonMatching, "plugPikiNakata/paraparameters.cpp"), + Object(NonMatching, "plugPikiNakata/pcamcamera.cpp"), + Object(NonMatching, "plugPikiNakata/pcamcameramanager.cpp"), + Object(NonMatching, "plugPikiNakata/pcammotionevents.cpp"), + Object(NonMatching, "plugPikiNakata/pcamcameraparameters.cpp"), + Object(NonMatching, "plugPikiNakata/peve.cpp"), + Object(NonMatching, "plugPikiNakata/peveconditions.cpp"), + Object(NonMatching, "plugPikiNakata/pevemotionevents.cpp"), + Object(NonMatching, "plugPikiNakata/tai.cpp"), + Object(NonMatching, "plugPikiNakata/taiattackactions.cpp"), + Object(NonMatching, "plugPikiNakata/taibasicactions.cpp"), + Object(NonMatching, "plugPikiNakata/taichappy.cpp"), + Object(NonMatching, "plugPikiNakata/taicollec.cpp"), + Object(NonMatching, "plugPikiNakata/taicollisionactions.cpp"), + Object(NonMatching, "plugPikiNakata/taieffectactions.cpp"), + Object(NonMatching, "plugPikiNakata/taiiwagen.cpp"), + Object(NonMatching, "plugPikiNakata/taijudgementactions.cpp"), + Object(NonMatching, "plugPikiNakata/taikinoko.cpp"), + Object(NonMatching, "plugPikiNakata/taimessageactions.cpp"), + Object(NonMatching, "plugPikiNakata/taimizinko.cpp"), + Object(NonMatching, "plugPikiNakata/taimotionactions.cpp"), + Object(NonMatching, "plugPikiNakata/taimoveactions.cpp"), + Object(NonMatching, "plugPikiNakata/tainapkid.cpp"), + Object(NonMatching, "plugPikiNakata/taiotimoti.cpp"), + Object(NonMatching, "plugPikiNakata/taipalm.cpp"), + Object(NonMatching, "plugPikiNakata/taireactionactions.cpp"), + Object(NonMatching, "plugPikiNakata/taiswallow.cpp"), + Object(NonMatching, "plugPikiNakata/taishell.cpp"), + Object(NonMatching, "plugPikiNakata/taitimeractions.cpp"), + Object(NonMatching, "plugPikiNakata/taiwaitactions.cpp"), + Object(NonMatching, "plugPikiNakata/teki.cpp"), + Object(NonMatching, "plugPikiNakata/tekianimationmanager.cpp"), + Object(NonMatching, "plugPikiNakata/tekibteki.cpp"), + Object(NonMatching, "plugPikiNakata/tekiconditions.cpp"), + Object(Matching, "plugPikiNakata/tekievent.cpp"), + Object(NonMatching, "plugPikiNakata/tekiinteraction.cpp"), + Object(NonMatching, "plugPikiNakata/tekimgr.cpp"), + Object(NonMatching, "plugPikiNakata/tekinakata.cpp"), + Object(NonMatching, "plugPikiNakata/tekinteki.cpp"), + Object(NonMatching, "plugPikiNakata/tekiparameters.cpp"), + Object(NonMatching, "plugPikiNakata/tekipersonality.cpp"), + Object(NonMatching, "plugPikiNakata/tekistrategy.cpp"), ], }, { "lib": "plugPikiNishimura", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "host": True, "objects": [ - ["plugPikiNishimura/genBoss", False], - ["plugPikiNishimura/Boss", False], - ["plugPikiNishimura/BossAnimMgr", False], - ["plugPikiNishimura/BossCnd", False], - ["plugPikiNishimura/BossMgr", False], - ["plugPikiNishimura/BossShapeObj", False], - ["plugPikiNishimura/Spider", False], - ["plugPikiNishimura/SpiderAi", False], - ["plugPikiNishimura/SpiderLeg", False], - ["plugPikiNishimura/Snake", False], - ["plugPikiNishimura/SnakeAi", False], - ["plugPikiNishimura/SnakeBody", False], - ["plugPikiNishimura/Slime", False], - ["plugPikiNishimura/SlimeAi", False], - ["plugPikiNishimura/SlimeBody", False], - ["plugPikiNishimura/SlimeCreature", False], - ["plugPikiNishimura/King", False], - ["plugPikiNishimura/KingAi", False], - ["plugPikiNishimura/KingBody", False], - ["plugPikiNishimura/Kogane", False], - ["plugPikiNishimura/KoganeAi", False], - ["plugPikiNishimura/Pom", False], - ["plugPikiNishimura/PomAi", False], - ["plugPikiNishimura/KingBack", False], - ["plugPikiNishimura/Nucleus", False], - ["plugPikiNishimura/NucleusAi", False], - ["plugPikiNishimura/CoreNucleus", False], - ["plugPikiNishimura/CoreNucleusAi", False], - ["plugPikiNishimura/Mizu", False], - ["plugPikiNishimura/MizuAi", False], - ["plugPikiNishimura/nscalculation", False], - ["plugPikiNishimura/RumbleData", False], - ["plugPikiNishimura/HmRumbleMgr", False], - ["plugPikiNishimura/HmRumbleSample", True], + Object(NonMatching, "plugPikiNishimura/genBoss.cpp"), + Object(NonMatching, "plugPikiNishimura/Boss.cpp"), + Object(NonMatching, "plugPikiNishimura/BossAnimMgr.cpp"), + Object(NonMatching, "plugPikiNishimura/BossCnd.cpp"), + Object(NonMatching, "plugPikiNishimura/BossMgr.cpp"), + Object(NonMatching, "plugPikiNishimura/BossShapeObj.cpp"), + Object(NonMatching, "plugPikiNishimura/Spider.cpp"), + Object(NonMatching, "plugPikiNishimura/SpiderAi.cpp"), + Object(NonMatching, "plugPikiNishimura/SpiderLeg.cpp"), + Object(NonMatching, "plugPikiNishimura/Snake.cpp"), + Object(NonMatching, "plugPikiNishimura/SnakeAi.cpp"), + Object(NonMatching, "plugPikiNishimura/SnakeBody.cpp"), + Object(NonMatching, "plugPikiNishimura/Slime.cpp"), + Object(NonMatching, "plugPikiNishimura/SlimeAi.cpp"), + Object(NonMatching, "plugPikiNishimura/SlimeBody.cpp"), + Object(NonMatching, "plugPikiNishimura/SlimeCreature.cpp"), + Object(NonMatching, "plugPikiNishimura/King.cpp"), + Object(NonMatching, "plugPikiNishimura/KingAi.cpp"), + Object(NonMatching, "plugPikiNishimura/KingBody.cpp"), + Object(NonMatching, "plugPikiNishimura/Kogane.cpp"), + Object(NonMatching, "plugPikiNishimura/KoganeAi.cpp"), + Object(NonMatching, "plugPikiNishimura/Pom.cpp"), + Object(NonMatching, "plugPikiNishimura/PomAi.cpp"), + Object(NonMatching, "plugPikiNishimura/KingBack.cpp"), + Object(NonMatching, "plugPikiNishimura/Nucleus.cpp"), + Object(NonMatching, "plugPikiNishimura/NucleusAi.cpp"), + Object(NonMatching, "plugPikiNishimura/CoreNucleus.cpp"), + Object(NonMatching, "plugPikiNishimura/CoreNucleusAi.cpp"), + Object(NonMatching, "plugPikiNishimura/Mizu.cpp"), + Object(NonMatching, "plugPikiNishimura/MizuAi.cpp"), + Object(NonMatching, "plugPikiNishimura/nscalculation.cpp"), + Object(NonMatching, "plugPikiNishimura/RumbleData.cpp"), + Object(NonMatching, "plugPikiNishimura/HmRumbleMgr.cpp"), + Object(Matching, "plugPikiNishimura/HmRumbleSample.cpp"), ], }, { "lib": "plugPikiOgawa", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "host": True, "objects": [ - ["plugPikiOgawa/ogTest", False], - ["plugPikiOgawa/ogSub", False], - ["plugPikiOgawa/ogTitle", False], - ["plugPikiOgawa/ogPause", False], - ["plugPikiOgawa/ogTutorial", False], - ["plugPikiOgawa/ogTutorialData", True], - ["plugPikiOgawa/ogMap", False], - ["plugPikiOgawa/ogResult", False], - ["plugPikiOgawa/ogRader", False], - ["plugPikiOgawa/ogFileSelect", False], - ["plugPikiOgawa/ogMessage", False], - ["plugPikiOgawa/ogMemChk", False], - ["plugPikiOgawa/ogDiary", False], - ["plugPikiOgawa/ogMenu", False], - ["plugPikiOgawa/ogFileChkSel", False], - ["plugPikiOgawa/ogMakeDefault", False], - ["plugPikiOgawa/ogTotalScore", False], - ["plugPikiOgawa/ogSave", False], - ["plugPikiOgawa/ogNitaku", False], - ["plugPikiOgawa/ogFileCopy", False], - ["plugPikiOgawa/ogFileDelete", False], - ["plugPikiOgawa/ogGraph", False], - ["plugPikiOgawa/ogStart", False], - ["plugPikiOgawa/ogCallBack", False], + Object(NonMatching, "plugPikiOgawa/ogTest.cpp"), + Object(NonMatching, "plugPikiOgawa/ogSub.cpp"), + Object(NonMatching, "plugPikiOgawa/ogTitle.cpp"), + Object(NonMatching, "plugPikiOgawa/ogPause.cpp"), + Object(NonMatching, "plugPikiOgawa/ogTutorial.cpp"), + Object(Matching, "plugPikiOgawa/ogTutorialData.cpp"), + Object(NonMatching, "plugPikiOgawa/ogMap.cpp"), + Object(NonMatching, "plugPikiOgawa/ogResult.cpp"), + Object(NonMatching, "plugPikiOgawa/ogRader.cpp"), + Object(NonMatching, "plugPikiOgawa/ogFileSelect.cpp"), + Object(NonMatching, "plugPikiOgawa/ogMessage.cpp"), + Object(NonMatching, "plugPikiOgawa/ogMemChk.cpp"), + Object(NonMatching, "plugPikiOgawa/ogDiary.cpp"), + Object(NonMatching, "plugPikiOgawa/ogMenu.cpp"), + Object(NonMatching, "plugPikiOgawa/ogFileChkSel.cpp"), + Object(NonMatching, "plugPikiOgawa/ogMakeDefault.cpp"), + Object(NonMatching, "plugPikiOgawa/ogTotalScore.cpp"), + Object(NonMatching, "plugPikiOgawa/ogSave.cpp"), + Object(NonMatching, "plugPikiOgawa/ogNitaku.cpp"), + Object(NonMatching, "plugPikiOgawa/ogFileCopy.cpp"), + Object(NonMatching, "plugPikiOgawa/ogFileDelete.cpp"), + Object(NonMatching, "plugPikiOgawa/ogGraph.cpp"), + Object(NonMatching, "plugPikiOgawa/ogStart.cpp"), + Object(NonMatching, "plugPikiOgawa/ogCallBack.cpp"), ], }, { "lib": "plugPikiYamashita", - "cflags": "$cflags_pikmin", - "mw_version": "1.2.5n", - "host": True, + "cflags": cflags_pikmin, + "mw_version": "GC/1.2.5n", "objects": [ - ["plugPikiYamashita/gameCourseClear", False], - ["plugPikiYamashita/gameStageClear", False], - ["plugPikiYamashita/gameCredits", False], - ["plugPikiYamashita/zenMath", False], - ["plugPikiYamashita/effectMgr", False], - ["plugPikiYamashita/particleGenerator", False], - ["plugPikiYamashita/particleLoader", False], - ["plugPikiYamashita/solidField", True], - ["plugPikiYamashita/particleManager", False], - ["plugPikiYamashita/particleMdlManager", False], - ["plugPikiYamashita/bBoardColourAnim", False], - ["plugPikiYamashita/simpleParticle", False], - ["plugPikiYamashita/tekiyteki", False], - ["plugPikiYamashita/tekiyamashita", False], - ["plugPikiYamashita/TAIanimation", True], - ["plugPikiYamashita/TAItank", False], - ["plugPikiYamashita/TAImar", False], - ["plugPikiYamashita/TAIAreaction", False], - ["plugPikiYamashita/TAIAmove", False], - ["plugPikiYamashita/TAIAmotion", False], - ["plugPikiYamashita/TAIAjudge", False], - ["plugPikiYamashita/TAIAattack", False], - ["plugPikiYamashita/P2DGrafContext", False], - ["plugPikiYamashita/P2DOrthoGraph", False], - ["plugPikiYamashita/P2DPerspGraph", False], - ["plugPikiYamashita/P2DPane", False], - ["plugPikiYamashita/P2DPicture", False], - ["plugPikiYamashita/P2DScreen", False], - ["plugPikiYamashita/P2DStream", False], - ["plugPikiYamashita/PSUList", False], - ["plugPikiYamashita/PUTRect", False], - ["plugPikiYamashita/P2DWindow", False], - ["plugPikiYamashita/P2DTextBox", False], - ["plugPikiYamashita/P2DPrint", False], - ["plugPikiYamashita/P2DFont", False], - ["plugPikiYamashita/drawGameInfo", False], - ["plugPikiYamashita/zenGraphics", False], - ["plugPikiYamashita/drawContainer", False], - ["plugPikiYamashita/drawCommon", False], - ["plugPikiYamashita/zenController", False], - ["plugPikiYamashita/drawHurryUp", False], - ["plugPikiYamashita/texAnim", False], - ["plugPikiYamashita/drawAccount", False], - ["plugPikiYamashita/drawMenu", False], - ["plugPikiYamashita/TAIeffectAttack", False], - ["plugPikiYamashita/TAIbeatle", False], - ["plugPikiYamashita/menuPanelMgr", False], - ["plugPikiYamashita/TAIkabekuiA", False], - ["plugPikiYamashita/TAIkabekuiB", False], - ["plugPikiYamashita/TAIkabekuiC", False], - ["plugPikiYamashita/TAItamago", False], - ["plugPikiYamashita/TAIdororo", False], - ["plugPikiYamashita/TAIhibaA", False], - ["plugPikiYamashita/TAIAeffect", False], - ["plugPikiYamashita/TAImiurin", False], - ["plugPikiYamashita/ptclGenPack", True], - ["plugPikiYamashita/drawProgre", False], - ["plugPikiYamashita/spectrumCursorMgr", False], - ["plugPikiYamashita/drawWorldMap", False], - ["plugPikiYamashita/drawCountDown", False], - ["plugPikiYamashita/drawGameOver", False], - ["plugPikiYamashita/yai", False], - ["plugPikiYamashita/effectMgr2D", False], - ["plugPikiYamashita/drawWMPause", False], - ["plugPikiYamashita/TAIusuba", False], - ["plugPikiYamashita/TAIotama", False], - ["plugPikiYamashita/drawCMcourseSelect", False], - ["plugPikiYamashita/drawCMtitle", False], - ["plugPikiYamashita/drawCMscore", False], - ["plugPikiYamashita/drawCMbest", False], - ["plugPikiYamashita/drawCMresult", False], - ["plugPikiYamashita/drawMenuBase", False], - ["plugPikiYamashita/drawHiScore", False], - ["plugPikiYamashita/damageEffect", False], - ["plugPikiYamashita/alphaWipe", False], - ["plugPikiYamashita/drawUfoParts", False], - ["plugPikiYamashita/zenSys", False], - ["plugPikiYamashita/drawSaveMes", False], - ["plugPikiYamashita/drawSaveFailure", False], - ["plugPikiYamashita/drawFinalResult", False], - ["plugPikiYamashita/drawOptionSave", False], + Object(NonMatching, "plugPikiYamashita/gameCourseClear.cpp"), + Object(NonMatching, "plugPikiYamashita/gameStageClear.cpp"), + Object(NonMatching, "plugPikiYamashita/gameCredits.cpp"), + Object(NonMatching, "plugPikiYamashita/zenMath.cpp"), + Object(NonMatching, "plugPikiYamashita/effectMgr.cpp"), + Object(NonMatching, "plugPikiYamashita/particleGenerator.cpp"), + Object(NonMatching, "plugPikiYamashita/particleLoader.cpp"), + Object(Matching, "plugPikiYamashita/solidField.cpp"), + Object(NonMatching, "plugPikiYamashita/particleManager.cpp"), + Object(NonMatching, "plugPikiYamashita/particleMdlManager.cpp"), + Object(NonMatching, "plugPikiYamashita/bBoardColourAnim.cpp"), + Object(NonMatching, "plugPikiYamashita/simpleParticle.cpp"), + Object(NonMatching, "plugPikiYamashita/tekiyteki.cpp"), + Object(NonMatching, "plugPikiYamashita/tekiyamashita.cpp"), + Object(Matching, "plugPikiYamashita/TAIanimation.cpp"), + Object(NonMatching, "plugPikiYamashita/TAItank.cpp"), + Object(NonMatching, "plugPikiYamashita/TAImar.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAreaction.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAmove.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAmotion.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAjudge.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAattack.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DGrafContext.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DOrthoGraph.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DPerspGraph.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DPane.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DPicture.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DScreen.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DStream.cpp"), + Object(NonMatching, "plugPikiYamashita/PSUList.cpp"), + Object(NonMatching, "plugPikiYamashita/PUTRect.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DWindow.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DTextBox.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DPrint.cpp"), + Object(NonMatching, "plugPikiYamashita/P2DFont.cpp"), + Object(NonMatching, "plugPikiYamashita/drawGameInfo.cpp"), + Object(NonMatching, "plugPikiYamashita/zenGraphics.cpp"), + Object(NonMatching, "plugPikiYamashita/drawContainer.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCommon.cpp"), + Object(NonMatching, "plugPikiYamashita/zenController.cpp"), + Object(NonMatching, "plugPikiYamashita/drawHurryUp.cpp"), + Object(NonMatching, "plugPikiYamashita/texAnim.cpp"), + Object(NonMatching, "plugPikiYamashita/drawAccount.cpp"), + Object(NonMatching, "plugPikiYamashita/drawMenu.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIeffectAttack.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIbeatle.cpp"), + Object(NonMatching, "plugPikiYamashita/menuPanelMgr.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIkabekuiA.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIkabekuiB.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIkabekuiC.cpp"), + Object(NonMatching, "plugPikiYamashita/TAItamago.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIdororo.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIhibaA.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIAeffect.cpp"), + Object(NonMatching, "plugPikiYamashita/TAImiurin.cpp"), + Object(Matching, "plugPikiYamashita/ptclGenPack.cpp"), + Object(NonMatching, "plugPikiYamashita/drawProgre.cpp"), + Object(NonMatching, "plugPikiYamashita/spectrumCursorMgr.cpp"), + Object(NonMatching, "plugPikiYamashita/drawWorldMap.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCountDown.cpp"), + Object(NonMatching, "plugPikiYamashita/drawGameOver.cpp"), + Object(NonMatching, "plugPikiYamashita/yai.cpp"), + Object(NonMatching, "plugPikiYamashita/effectMgr2D.cpp"), + Object(NonMatching, "plugPikiYamashita/drawWMPause.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIusuba.cpp"), + Object(NonMatching, "plugPikiYamashita/TAIotama.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCMcourseSelect.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCMtitle.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCMscore.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCMbest.cpp"), + Object(NonMatching, "plugPikiYamashita/drawCMresult.cpp"), + Object(NonMatching, "plugPikiYamashita/drawMenuBase.cpp"), + Object(NonMatching, "plugPikiYamashita/drawHiScore.cpp"), + Object(NonMatching, "plugPikiYamashita/damageEffect.cpp"), + Object(NonMatching, "plugPikiYamashita/alphaWipe.cpp"), + Object(NonMatching, "plugPikiYamashita/drawUfoParts.cpp"), + Object(NonMatching, "plugPikiYamashita/zenSys.cpp"), + Object(NonMatching, "plugPikiYamashita/drawSaveMes.cpp"), + Object(NonMatching, "plugPikiYamashita/drawSaveFailure.cpp"), + Object(NonMatching, "plugPikiYamashita/drawFinalResult.cpp"), + Object(NonMatching, "plugPikiYamashita/drawOptionSave.cpp"), ], }, - { - "lib": "base", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, - "objects": [ - ["base/PPCArch", True], + DolphinLib( + "base", + [ + Object(Matching, "base/PPCArch.c"), ], - }, - { - "lib": "os", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["os/OS", False], - ["os/OSAlarm", False], - ["os/OSAlloc", True], - ["os/OSArena", True], - ["os/OSAudioSystem", False], - ["os/OSCache", False], - ["os/OSContext", False], - ["os/OSError", True], - ["os/OSExi", False], - ["os/OSFont", False], - ["os/OSInterrupt", False], - ["os/OSLink", True], - ["os/OSMessage", False], - ["os/OSMutex", False], - ["os/OSReboot", False], - ["os/OSReset", False], - ["os/OSResetSW", False], - ["os/OSRtc", False], - ["os/OSSerial", False], - ["os/OSSync", False], - ["os/OSThread", False], - ["os/OSTime", False], - ["os/OSUartExi", False], - ["os/__start", True], - ["os/__ppc_eabi_init", False], + ), + DolphinLib( + "os", + [ + Object(NonMatching, "os/OS.c"), + Object(NonMatching, "os/OSAlarm.c"), + Object(Matching, "os/OSAlloc.c"), + Object(Matching, "os/OSArena.c"), + Object(NonMatching, "os/OSAudioSystem.c"), + Object(NonMatching, "os/OSCache.c"), + Object(NonMatching, "os/OSContext.c"), + Object(Matching, "os/OSError.c"), + Object(NonMatching, "os/OSExi.c"), + Object(NonMatching, "os/OSFont.c"), + Object(NonMatching, "os/OSInterrupt.c"), + Object(Matching, "os/OSLink.c"), + Object(NonMatching, "os/OSMessage.c"), + Object(NonMatching, "os/OSMemory.c"), + Object(NonMatching, "os/OSMutex.c"), + Object(NonMatching, "os/OSReboot.c"), + Object(NonMatching, "os/OSReset.c"), + Object(NonMatching, "os/OSResetSW.c"), + Object(NonMatching, "os/OSRtc.c"), + Object(NonMatching, "os/OSSerial.c"), + Object(NonMatching, "os/OSSync.c"), + Object(NonMatching, "os/OSThread.c"), + Object(NonMatching, "os/OSTime.c"), + Object(NonMatching, "os/OSUartExi.c"), + Object(Matching, "os/__start.c"), + Object(NonMatching, "os/__ppc_eabi_init.cpp"), ], - }, - { - "lib": "db", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["db/db", True], - ], - }, - { - "lib": "mtx", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["mtx/mtx", False], - ["mtx/mtx44", False], - ["mtx/vec", False], - ], - }, - { - "lib": "dvd", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["dvd/dvdlow", False], - ["dvd/dvdfs", False], - ["dvd/dvd", False], - ["dvd/dvdqueue", False], - ["dvd/dvderror", False], - ["dvd/fstload", False], - ], - }, - { - "lib": "vi", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["vi/vi", False], - ], - }, - { - "lib": "pad", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["pad/Padclamp", False], - ["pad/Pad", False], - ], - }, - { - "lib": "ai", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["ai/ai", True], - ], - }, - { - "lib": "ar", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["ar/ar", False], - ["ar/arq", False], - ], - }, - { - "lib": "dsp", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["dsp/dsp", True], - ], - }, - { - "lib": "card", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["card/CARDBios", False], - ["card/CARDRdwr", False], - ["card/CARDBlock", False], - ["card/CARDDir", False], - ["card/CARDCheck", False], - ["card/CARDMount", False], - ["card/CARDFormat", False], - ["card/CARDOpen", False], - ["card/CARDCreate", False], - ["card/CARDRead", False], - ["card/CARDWrite", False], - ["card/CARDDelete", False], - ["card/CARDStat", False], - ["card/CARDRename", False], - ], - }, - { - "lib": "hio", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["hio/hio", False], - ], - }, - { - "lib": "gx", - "cflags": "$cflags_base", - "mw_version": "1.2.5", - "host": True, - "objects": [ - ["gx/GXInit", False], - ["gx/GXFifo", False], - ["gx/GXAttr", False], - ["gx/GXMisc", False], - ["gx/GXGeometry", False], - ["gx/GXFrameBuf", False], - ["gx/GXLight", False], - ["gx/GXTexture", False], - ["gx/GXBump", False], - ["gx/GXTev", False], - ["gx/GXPixel", False], - ["gx/GXStubs", True], - ["gx/GXDisplayList", False], - ["gx/GXTransform", False], - ], - }, + ), + DolphinLib( + "db", + [ + Object(NonMatching, "db/db.c"), + ] + ), + DolphinLib( + "mtx", + [ + Object(NonMatching, "mtx/mtx.c"), + Object(NonMatching, "mtx/mtx44.c"), + Object(NonMatching, "mtx/vec.c"), + ] + ), + DolphinLib( + "dvd", + [ + Object(NonMatching, "dvd/dvdlow.c"), + Object(NonMatching, "dvd/dvdfs.c"), + Object(NonMatching, "dvd/dvd.c"), + Object(NonMatching, "dvd/dvdqueue.c"), + Object(NonMatching, "dvd/dvderror.c"), + Object(NonMatching, "dvd/fstload.c"), + ] + ), + DolphinLib( + "vi", + [ + Object(NonMatching, "vi/vi.c"), + ] + ), + DolphinLib( + "pad", + [ + Object(NonMatching, "pad/Padclamp.c"), + Object(NonMatching, "pad/Pad.c"), + ] + ), + DolphinLib( + "ai", + [ + Object(NonMatching, "ai/ai.c"), + ] + ), + DolphinLib( + "ar", + [ + Object(NonMatching, "ar/ar.c"), + ] + ), + DolphinLib( + "arq", + [ + Object(NonMatching, "ar/arq.c"), + ] + ), + DolphinLib( + "dsp", + [ + Object(Matching, "dsp/dsp.c"), + ] + ), + DolphinLib( + "card", + [ + Object(NonMatching, "card/CARDBios.c"), + Object(NonMatching, "card/CARDRdwr.c"), + Object(NonMatching, "card/CARDBlock.c"), + Object(NonMatching, "card/CARDDir.c"), + Object(NonMatching, "card/CARDCheck.c"), + Object(NonMatching, "card/CARDMount.c"), + Object(NonMatching, "card/CARDFormat.c"), + Object(NonMatching, "card/CARDOpen.c"), + Object(NonMatching, "card/CARDCreate.c"), + Object(NonMatching, "card/CARDRead.c"), + Object(NonMatching, "card/CARDWrite.c"), + Object(NonMatching, "card/CARDDelete.c"), + Object(NonMatching, "card/CARDStat.c"), + Object(NonMatching, "card/CARDRename.c"), + ] + ), + DolphinLib( + "hio", + [ + Object(NonMatching, "hio/hio.c"), + ] + ), + DolphinLib( + "gx", + [ + Object(NonMatching, "gx/GXInit.c"), + Object(NonMatching, "gx/GXFifo.c"), + Object(NonMatching, "gx/GXAttr.c"), + Object(NonMatching, "gx/GXMisc.c"), + Object(NonMatching, "gx/GXGeometry.c"), + Object(NonMatching, "gx/GXFrameBuf.c"), + Object(NonMatching, "gx/GXLight.c"), + Object(NonMatching, "gx/GXTexture.c"), + Object(NonMatching, "gx/GXBump.c"), + Object(NonMatching, "gx/GXTev.c"), + Object(NonMatching, "gx/GXPixel.c"), + Object(Matching, "gx/GXStubs.c"), + Object(NonMatching, "gx/GXDisplayList.c"), + Object(NonMatching, "gx/GXTransform.c"), + Object(NonMatching, "gx/GXPerf.c"), + ] + ), { "lib": "Runtime.PPCEABI.H", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["Runtime/PPCEABI/H/__mem", False], - ["Runtime/PPCEABI/H/__va_arg", False], - ["Runtime/PPCEABI/H/global_destructor_chain", False], - ["Runtime/PPCEABI/H/CPlusLibPPC", False], - ["Runtime/PPCEABI/H/NMWException", False], - ["Runtime/PPCEABI/H/ptmf", True], - ["Runtime/PPCEABI/H/ExceptionPPC", False], - ["Runtime/PPCEABI/H/runtime", False], - ["Runtime/PPCEABI/H/__init_cpp_exceptions", False], + Object(NonMatching, "Runtime/PPCEABI/H/__mem.o"), + Object(NonMatching, "Runtime/PPCEABI/H/__va_arg.c"), + Object(NonMatching, "Runtime/PPCEABI/H/global_destructor_chain.c"), + Object(NonMatching, "Runtime/PPCEABI/H/CPlusLibPPC.cp"), + Object(NonMatching, "Runtime/PPCEABI/H/NMWException.cp"), + Object(Matching, "Runtime/PPCEABI/H/ptmf.c"), + Object(NonMatching, "Runtime/PPCEABI/H/ExceptionPPC.cp"), + Object(NonMatching, "Runtime/PPCEABI/H/runtime.c"), + Object(NonMatching, "Runtime/PPCEABI/H/__init_cpp_exceptions.cpp"), ], }, { "lib": "MSL_C.PPCEABI.bare.H", - "mw_version": "1.2.5", - "cflags": "$cflags_base -fp_contract on", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["MSL_C/PPCEABI/bare/H/abort_exit", False], - ["MSL_C/PPCEABI/bare/H/errno", True], - ["MSL_C/PPCEABI/bare/H/ansi_fp", False], - ["MSL_C/PPCEABI/bare/H/arith", True], - ["MSL_C/PPCEABI/bare/H/buffer_io", False], - ["MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi", True], - ["MSL_C/PPCEABI/bare/H/ctype", True], - ["MSL_C/PPCEABI/bare/H/ansi_files", False], - ["MSL_C/PPCEABI/bare/H/locale", False], - ["MSL_C/PPCEABI/bare/H/direct_io", False], - ["MSL_C/PPCEABI/bare/H/mbstring", False], - ["MSL_C/PPCEABI/bare/H/mem", False], - ["MSL_C/PPCEABI/bare/H/mem_funcs", False], - ["MSL_C/PPCEABI/bare/H/misc_io", True], - ["MSL_C/PPCEABI/bare/H/printf", False], - ["MSL_C/PPCEABI/bare/H/rand", True], - ["MSL_C/PPCEABI/bare/H/scanf", False], - ["MSL_C/PPCEABI/bare/H/string", False], - ["MSL_C/PPCEABI/bare/H/strtold", False], - ["MSL_C/PPCEABI/bare/H/strtoul", False], - ["MSL_C/PPCEABI/bare/H/uart_console_io", False], - ["MSL_C/PPCEABI/bare/H/wchar_io", True], - ["MSL_C/PPCEABI/bare/H/float", True], - ["MSL_C/PPCEABI/bare/H/e_asin", False], - ["MSL_C/PPCEABI/bare/H/e_atan2", False], - ["MSL_C/PPCEABI/bare/H/e_pow", True], - ["MSL_C/PPCEABI/bare/H/fminmaxdim", False], - ["MSL_C/PPCEABI/bare/H/s_atan", False], - ["MSL_C/PPCEABI/bare/H/s_copysign", True], - ["MSL_C/PPCEABI/bare/H/s_frexp", True], - ["MSL_C/PPCEABI/bare/H/s_ldexp", False], - ["MSL_C/PPCEABI/bare/H/w_atan2", False], - ["MSL_C/PPCEABI/bare/H/w_pow", False], - ["MSL_C/PPCEABI/bare/H/hyperbolicsf", True], - ["MSL_C/PPCEABI/bare/H/inverse_trig", False], - ["MSL_C/PPCEABI/bare/H/trigf", False], - ["MSL_C/PPCEABI/bare/H/math_inlines", False], - ["MSL_C/PPCEABI/bare/H/common_float_tables", False], + Object(NonMatching, "MSL_C/PPCEABI/bare/H/abort_exit.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/errno.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/ansi_fp.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/arith.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/buffer_io.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/ctype.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/ansi_files.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/locale.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/direct_io.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/mbstring.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/mem.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/mem_funcs.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/misc_io.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/printf.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/rand.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/scanf.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/string.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/strtold.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/strtoul.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/uart_console_io.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/wchar_io.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/float.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/e_asin.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/e_atan2.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/e_pow.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/fminmaxdim.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/s_atan.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/s_copysign.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/s_frexp.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/s_ldexp.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/w_atan2.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/w_pow.c"), + Object(Matching, "MSL_C/PPCEABI/bare/H/hyperbolicsf.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/inverse_trig.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/trigf.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/math_inlines.c"), + Object(NonMatching, "MSL_C/PPCEABI/bare/H/common_float_tables.c"), ], }, { "lib": "TRK_MINNOW_DOLPHIN", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["TRK_MINNOW_DOLPHIN/mainloop", False], - ["TRK_MINNOW_DOLPHIN/nubevent", False], - ["TRK_MINNOW_DOLPHIN/nubinit", False], - ["TRK_MINNOW_DOLPHIN/msg", False], - ["TRK_MINNOW_DOLPHIN/msgbuf", False], - ["TRK_MINNOW_DOLPHIN/serpoll", False], - ["TRK_MINNOW_DOLPHIN/usr_put", True], - ["TRK_MINNOW_DOLPHIN/dispatch", False], - ["TRK_MINNOW_DOLPHIN/msghndlr", False], - ["TRK_MINNOW_DOLPHIN/support", False], - ["TRK_MINNOW_DOLPHIN/mutex_TRK", True], - ["TRK_MINNOW_DOLPHIN/notify", False], - ["TRK_MINNOW_DOLPHIN/flush_cache", False], - ["TRK_MINNOW_DOLPHIN/mem_TRK", False], - ["TRK_MINNOW_DOLPHIN/__exception", False], - ["TRK_MINNOW_DOLPHIN/targimpl", False], - ["TRK_MINNOW_DOLPHIN/dolphin_trk", False], - ["TRK_MINNOW_DOLPHIN/mpc_7xx_603e", False], - ["TRK_MINNOW_DOLPHIN/main_TRK", False], - ["TRK_MINNOW_DOLPHIN/dolphin_trk_glue", False], - ["TRK_MINNOW_DOLPHIN/targcont", False], + Object(NonMatching, "TRK_MINNOW_DOLPHIN/mainloop.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/nubevent.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/nubinit.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/msg.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/msgbuf.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/serpoll.c"), + Object(Matching, "TRK_MINNOW_DOLPHIN/usr_put.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/dispatch.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/msghndlr.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/support.c"), + Object(Matching, "TRK_MINNOW_DOLPHIN/mutex_TRK.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/notify.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/flush_cache.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/mem_TRK.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/__exception.s"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/targimpl.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/dolphin_trk.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/main_TRK.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c"), + Object(NonMatching, "TRK_MINNOW_DOLPHIN/targcont.c"), ], }, { "lib": "amcExi2", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["amcExi2/AmcExi", False], - ["amcExi2/AmcExi2Comm", False], + Object(NonMatching, "amcExi2/AmcExi.c"), + Object(NonMatching, "amcExi2/AmcExi2Comm.c"), ], }, { "lib": "amcnotstub", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["amcnotstub/amcnotstub", True], + Object(Matching, "amcnotstub/amcnotstub.c"), ], }, { "lib": "OdemuExi2", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["OdemuExi2/DebuggerDriver", False], + Object(NonMatching, "OdemuExi2/DebuggerDriver.c"), ], }, { "lib": "odenotstub", - "mw_version": "1.2.5", - "cflags": "$cflags_base", - "host": True, + "mw_version": "GC/1.2.5", + "cflags": cflags_base, "objects": [ - ["odenotstub/odenotstub", True], + Object(Matching, "odenotstub/odenotstub.c"), ], }, ] +# Optional extra categories for progress tracking +# Adjust as desired for your project +config.progress_categories = [ + ProgressCategory("game", "Game Code"), + ProgressCategory("sdk", "SDK Code"), +] +config.progress_each_module = args.verbose -def main(): - import os - import io - import sys - import argparse - import json - - from pathlib import Path - from shutil import which - from tools import ninja_syntax - - if sys.version_info < (3, 8): - sys.exit("Python 3.8 or later required.") - - parser = argparse.ArgumentParser() - parser.add_argument( - "--version", - "-v", - dest="version", - default="usa.1", - help="version to build (usa.1, usa.0)", - ) - parser.add_argument( - "--map", - "-m", - dest="map", - action="store_true", - help="generate map file", - ) - parser.add_argument( - "--no-check", - dest="check", - action="store_false", - help="don't check hash of resulting dol", - ) - parser.add_argument( - "--no-static-libs", - dest="static_libs", - action="store_false", - help="don't build and use static libs", - ) - parser.add_argument( - "--powerpc", - dest="powerpc", - type=Path, - default=Path("tools/powerpc"), - help="path to powerpc-eabi tools", - ) - if os.name != "nt" and not "_NT-" in os.uname().sysname: - parser.add_argument( - "--wine", - dest="wine", - type=Path, - help="path to wine (or wibo)", - ) - parser.add_argument( - "--build-dtk", - dest="build_dtk", - type=Path, - help="path to decomp-toolkit source", - ) - parser.add_argument( - "--debug", - "-d", - dest="debug", - action="store_true", - help="build with debug info (non-matching)", - ) - parser.add_argument( - "--compilers", - dest="compilers", - type=Path, - default=Path("tools/mwcc_compiler"), - help="path to compilers", - ) - parser.add_argument( - "--build-dir", - dest="build_dir", - type=Path, - default=Path("build"), - help="base build directory", - ) - parser.add_argument( - "--context", - "-c", - dest="context", - action="store_true", - help="generate context files for decomp.me", - ) - args = parser.parse_args() - - # On Windows, we need this to use && in commands - chain = "cmd /c " if os.name == "nt" else "" - - out = io.StringIO() - n = ninja_syntax.Writer(out) - - n.variable("ninja_required_version", "1.3") - n.newline() - - n.comment("The arguments passed to configure.py, for rerunning it.") - configure_args = sys.argv[1:] - n.variable("configure_args", configure_args) - n.variable("python", f'"{sys.executable}"') - n.newline() - - ### - # Variables - ### - n.comment("Variables") - version = args.version.lower() - if args.version.lower() == "usa.1": - version_num = "2" - elif args.version.lower() == "usa.0": - version_num = "1" - else: - sys.exit(f'Invalid version "{args.version}"') - build_path = args.build_dir / f"pikmin.{version}" - - cflags_base = f"-Cpp_exceptions off -O4,p -fp hard -proc gekko -nodefaults -RTTI on -enum int -sdata 8 -sdata2 8 -str noreadonly -DVERNUM={version_num} -i include -i include/stl -inline auto" - if args.debug: - cflags_base += " -sym on -D_DEBUG" - else: - cflags_base += " -DNDEBUG -w off" - n.variable("cflags_base", cflags_base) - n.variable("cflags_pikmin", "$cflags_base -common on") - - asflags = f"-mgekko -I include --defsym version={version_num} -W --strip-local-absolute -gdwarf-2" - n.variable("asflags", asflags) - - ldflags = "-fp fmadd -nodefaults -lcf ldscript.lcf" - if args.map: - map_path = build_path / "build.map" - ldflags += f" -map {map_path} -mapunused" - if args.debug: - ldflags += " -g" - else: - ldflags += " -w off" - n.variable("ldflags", ldflags) - - mw_link_version = "1.2.5" - n.variable("mw_version", mw_link_version) - if os.name == "nt": - exe = ".exe" - wine = "" - else: - if "_NT-" in os.uname().sysname: - # MSYS2 - wine = "" - elif args.wine: - wine = f"{args.wine} " - elif which("wibo") is not None: - wine = "wibo " - else: - wine = "wine " - exe = "" - n.newline() - - ### - # Tooling - ### - tools_path = Path("tools") - - def path(input): - if input is None: - return None - elif isinstance(input, list): - return list(map(str, input)) - else: - return [str(input)] - - n.comment("decomp-toolkit") - if args.build_dtk: - dtk = tools_path / "release" / f"dtk{exe}" - n.rule( - name="cargo", - command="cargo build --release --manifest-path $in --bin $bin --target-dir $target", - description="CARGO $bin", - depfile=path(Path("$target") / "release" / "$bin.d"), - deps="gcc", - ) - n.build( - outputs=path(dtk), - rule="cargo", - inputs=path(args.build_dtk / "Cargo.toml"), - variables={ - "bin": "dtk", - "target": tools_path, - }, - ) - else: - dtk = tools_path / f"dtk{exe}" - download_dtk = tools_path / "download_dtk.py" - n.rule( - name="download_dtk", - command=f"$python {download_dtk} $in $out", - description="DOWNLOAD $out", - ) - n.build( - outputs=path(dtk), - rule="download_dtk", - inputs=path([tools_path / "dtk_version"]), - implicit=path([download_dtk]), - ) - n.newline() - - # FIXME: Manual downloads because ninja doesn't play nice with directories, - # replace with automated system like dtk uses if workaround is found - if args.powerpc == Path("tools/powerpc") and not Path("tools/powerpc").exists(): - import tools.download_ppc - - tools.download_ppc.main() - - if args.compilers == Path("tools/mwcc_compiler") and not Path("tools/mwcc_compiler").exists(): - import tools.download_mwcc - - tools.download_mwcc.main() - - ### - # Rules - ### - compiler_path = args.compilers / "$mw_version" - mwcc = compiler_path / "mwcceppc.exe" - mwld = compiler_path / "mwldeppc.exe" - gnu_as = args.powerpc / f"powerpc-eabi-as{exe}" - - mwcc_cmd = f"{chain}{wine}{mwcc} $cflags -MMD -c $in -o $basedir" - if args.context: - mwcc_cmd += " && $python tools/decompctx.py $cfile -r -q" - mwld_cmd = f"{wine}{mwld} $ldflags -o $out @$out.rsp" - as_cmd = ( - f"{chain}{gnu_as} $asflags -o $out $in -MD $out.d" - + f" && {dtk} elf fixup $out $out" - ) - ar_cmd = f"{dtk} ar create $out @$out.rsp" - - if os.name != "nt": - transform_dep = tools_path / "transform-dep.py" - transform_dep_cmd = f" && $python {transform_dep} $basefile.d $basefile.d" - mwcc_cmd += transform_dep_cmd - - n.comment("Link ELF file") - n.rule( - name="link", - command=mwld_cmd, - description="LINK $out", - rspfile="$out.rsp", - rspfile_content="$in_newline", - ) - n.newline() - - n.comment("MWCC build") - n.rule( - name="mwcc", - command=mwcc_cmd, - description="MWCC $out", - depfile="$basefile.d", - deps="gcc", - ) - n.newline() - - n.comment("Assemble asm") - n.rule( - name="as", - command=as_cmd, - description="AS $out", - depfile="$out.d", - deps="gcc", - ) - n.newline() - - n.comment("Create static library") - n.rule( - name="ar", - command=ar_cmd, - description="AR $out", - rspfile="$out.rsp", - rspfile_content="$in_newline", - ) - n.newline() - - n.comment("Host build") - n.variable("host_cflags", "-I include -Wno-trigraphs") - n.variable( - "host_cppflags", - "-std=c++98 -I include -fno-exceptions -fno-rtti -D_CRT_SECURE_NO_WARNINGS -Wno-trigraphs -Wno-c++11-extensions", - ) - n.rule( - name="host_cc", - command="clang $host_cflags -c -o $out $in", - description="CC $out", - ) - n.rule( - name="host_cpp", - command="clang++ $host_cppflags -c -o $out $in", - description="CXX $out", - ) - n.newline() - - ### - # Rules for source files - ### - n.comment("Source files") - src_path = Path("src") - asm_path = Path("asm") - build_src_path = build_path / "src" - build_host_path = build_path / "host" - build_asm_path = build_path / "asm" - build_lib_path = build_path / "lib" - - objdiff_config = { - "min_version": "0.4.3", - "custom_make": "ninja", - "build_target": True, - "watch_patterns": [ - "*.c", - "*.cp", - "*.cpp", - "*.h", - "*.hpp", - "*.py", - ], - "units": [], - } - - source_inputs = [] - host_source_inputs = [] - link_inputs = [] - used_compiler_versions = set() - for lib in LIBS: - inputs = [] - if "lib" in lib: - lib_name = lib["lib"] - n.comment(f"{lib_name}.a") - else: - n.comment("Loose files") - - for object in lib["objects"]: - completed = False - options = { - "add_to_all": True, - "mw_version": None, - "cflags": None, - } - if type(object) is list: - if len(object) > 1: - completed = object[1] - if len(object) > 2: - options.update(object[2]) - object = object[0] - - cflags = options["cflags"] or lib["cflags"] - mw_version = options["mw_version"] or lib["mw_version"] - used_compiler_versions.add(mw_version) - - # objdiff config - unit_config = { - "name": object, - "complete": completed, - } - - c_file = None - if os.path.exists(src_path / f"{object}.cpp"): - c_file = src_path / f"{object}.cpp" - elif os.path.exists(src_path / f"{object}.cp"): - c_file = src_path / f"{object}.cp" - elif os.path.exists(src_path / f"{object}.c"): - c_file = src_path / f"{object}.c" - elif os.path.exists(src_path / f"{object}.C"): - c_file = src_path / f"{object}.C" - elif os.path.exists(src_path / f"{object}.s"): # specifically for __exception.s - n.build( - outputs=path(build_src_path / f"{object}.o"), - rule="as", - inputs=path(src_path / f"{object}.s"), - implicit=path(dtk), - ) - if c_file is not None: - n.build( - outputs=path(build_src_path / f"{object}.o"), - rule="mwcc", - inputs=path(c_file), - variables={ - "mw_version": mw_version, - "cflags": options["cflags"] or lib["cflags"], - "basedir": os.path.dirname(build_src_path / f"{object}"), - "basefile": path(build_src_path / f"{object}"), - "cfile": path(c_file), - }, - implicit_outputs = None if not args.context else (str(c_file) + ".ctx") - ) - if lib["host"]: - n.build( - outputs=path(build_host_path / f"{object}.o"), - rule="host_cc" if c_file.suffix == ".c" else "host_cpp", - inputs=path(c_file), - variables={ - "basedir": os.path.dirname(build_host_path / object), - "basefile": path(build_host_path / object), - }, - ) - if options["add_to_all"]: - host_source_inputs.append(build_host_path / f"{object}.o") - if options["add_to_all"]: - source_inputs.append(build_src_path / f"{object}.o") - unit_config["base_path"] = str(build_src_path / f"{object}.o") - if os.path.exists(asm_path / f"{object}.s"): - n.build( - outputs=path(build_asm_path / f"{object}.o"), - rule="as", - inputs=path(asm_path / f"{object}.s"), - implicit=path(dtk), - ) - unit_config["target_path"] = str(build_asm_path / f"{object}.o") - objdiff_config["units"].append(unit_config) - if completed: - inputs.append(build_src_path / f"{object}.o") - else: - inputs.append(build_asm_path / f"{object}.o") - if args.static_libs and "lib" in lib: - lib_name = lib["lib"] - n.build( - outputs=path(build_lib_path / f"{lib_name}.a"), - rule="ar", - inputs=path(inputs), - implicit=path(dtk), - ) - link_inputs.append(build_lib_path / f"{lib_name}.a") - else: - link_inputs.extend(inputs) - n.newline() - - # Check if all compiler versions exist - for mw_version in used_compiler_versions: - mw_path = args.compilers / mw_version / "mwcceppc.exe" - if not os.path.exists(mw_path): - print(f"Compiler {mw_path} does not exist") - exit(1) - - # Check if linker exists - mw_path = args.compilers / mw_link_version / "mwldeppc.exe" - if not os.path.exists(mw_path): - print(f"Linker {mw_path} does not exist") - exit(1) - - ### - # Link - ### - n.comment("Link") - if args.map: - n.build( - outputs=path(build_path / "main.elf"), - rule="link", - inputs=path(link_inputs), - implicit_outputs=path(map_path), - ) - else: - n.build( - outputs=path(build_path / "main.elf"), - rule="link", - inputs=path(link_inputs), - ) - n.newline() - - ### - # Helper rule for building all source files - ### - n.comment("Build all source files") - n.build( - outputs="all_source", - rule="phony", - inputs=path(source_inputs), - ) - n.newline() - - ### - # Helper rule for building all source files, with a host compiler - ### - n.comment("Build all source files with a host compiler") - n.build( - outputs="all_source_host", - rule="phony", - inputs=path(host_source_inputs), - ) - n.newline() - - ### - # Generate DOL - ### - n.comment("Generate DOL") - n.rule( - name="elf2dol", - command=f"{dtk} elf2dol $in $out", - description="DOL $out", - ) - n.build( - outputs=path(build_path / "main.dol"), - rule="elf2dol", - inputs=path(build_path / "main.elf"), - implicit=path(dtk), - ) - n.newline() - - ### - # Check DOL hash - ### - if args.check: - n.comment("Check DOL hash") - n.rule( - name="check", - command=f"{dtk} shasum -c $in -o $out", - description="CHECK $in", - ) - n.build( - outputs=path(build_path / "main.dol.ok"), - rule="check", - inputs=f"sha1/pikmin.{version}.sha1", - implicit=path([build_path / "main.dol", dtk]), - ) - n.newline() - - ### - # Progress script - ### - if args.map: - n.comment("Check progress") - calc_progress = tools_path / "calcprogress.py" - n.rule( - name="progress", - command=f"$python {calc_progress} $in -o $out", - description="PROGRESS $in", - ) - n.build( - outputs=path(build_path / "main.dol.progress"), - rule="progress", - inputs=path([build_path / "main.dol", map_path]), - implicit=path([calc_progress, build_path / "main.dol.ok"]), - ) - n.newline() - - ### - # Regenerate on change - ### - n.comment("Reconfigure on change") - n.rule( - name="configure", - command="$python configure.py $configure_args", - generator=True, - ) - n.build( - outputs="build.ninja", - rule="configure", - implicit=path(["configure.py", tools_path / "ninja_syntax.py"]), - ) - n.newline() - - ### - # Default rule - ### - n.comment("Default rule") - if args.check: - dol_out = build_path / "main.dol.ok" - else: - dol_out = build_path / "main.dol" - if args.map: - n.default(path([dol_out, build_path / "main.dol.progress"])) - else: - n.default(path([dol_out])) - - ### - # Write build.ninja - ### - with open("build.ninja", "w") as f: - f.write(out.getvalue()) - n.close() - - ### - # Write objdiff config - ### - with open("objdiff.json", "w") as w: - json.dump(objdiff_config, w, indent=4) - - -if __name__ == "__main__": - main() +if args.mode == "configure": + # Write build.ninja and objdiff.json + generate_build(config) +elif args.mode == "progress": + # Print progress and write progress.json + calculate_progress(config) +else: + sys.exit("Unknown mode: " + args.mode) diff --git a/include/.gitignore b/include/.gitignore deleted file mode 100644 index 56834577..00000000 --- a/include/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.s diff --git a/include/Generator.h b/include/Generator.h index 22c61b66..9b0ebec2 100644 --- a/include/Generator.h +++ b/include/Generator.h @@ -204,7 +204,7 @@ struct GenObjectActor : public GenObject { */ struct GenObjectBoss : public GenObject { inline GenObjectBoss() - : GenObject('boss', "ƒ{ƒX‚ð¶‚Þ") // 'generate a boss' + : GenObject('boss', "ボスを生む") // 'generate a boss' { } @@ -285,7 +285,7 @@ struct GenObjectMapObject : public GenObject { */ struct GenObjectMapParts : public GenObject { inline GenObjectMapParts() - : GenObject('mpar', "ƒ}ƒbƒvƒp[ƒc‚ð¶‚Þ") // 'generate map parts' + : GenObject('mpar', "マップパーツを生む") // 'generate map parts' { } @@ -456,7 +456,7 @@ struct GenType : public GenBase { */ struct GenTypeAtOnce : public GenType { inline GenTypeAtOnce() - : GenType('aton', "ʼn‚©‚ç‘S•”¶‚Þ") // 'generate everything from the beginning' + : GenType('aton', "最åˆã‹ã‚‰å…¨éƒ¨ç”Ÿã‚€") // 'generate everything from the beginning' , mMaxCount(this, 1, 0, 0, "p00", nullptr) { } @@ -477,7 +477,7 @@ struct GenTypeAtOnce : public GenType { */ struct GenTypeInitRand : public GenType { inline GenTypeInitRand() - : GenType('irnd', "ʼn‚©‚綂Þiƒ‰ƒ“ƒ_ƒ€j") // 'generate from the beginning (random)' + : GenType('irnd', "最åˆã‹ã‚‰ç”Ÿã‚€ï¼ˆãƒ©ãƒ³ãƒ€ãƒ ï¼‰") // 'generate from the beginning (random)' , _38(this, 1, 0, 0, "p00", nullptr) , mMaxCount(this, 5, 0, 0, "p01", nullptr) { @@ -500,7 +500,7 @@ struct GenTypeInitRand : public GenType { */ struct GenTypeOne : public GenType { inline GenTypeOne() - : GenType('1one', "‚P‚‚¾‚¯‚¤‚Þ") // 'just one thing' + : GenType('1one', "1ã¤ã ã‘ã†ã‚€") // 'just one thing' , _38(this, 0, 0, 0, "p00", nullptr) , _48(this, 0, 0, 0, "p01", nullptr) , _58(this, 0, 0, 0, "p02", nullptr) diff --git a/include/Stream.h b/include/Stream.h index 378eee8d..2a3fab75 100644 --- a/include/Stream.h +++ b/include/Stream.h @@ -34,6 +34,8 @@ struct Stream { virtual void close(); // _4C virtual bool getClosing() { return false; } // _50 (weak) virtual void flush() { } // _54 (weak) + + void print(char*, ...); }; /** diff --git a/include/macros.inc b/include/macros.inc deleted file mode 100644 index ea238495..00000000 --- a/include/macros.inc +++ /dev/null @@ -1,217 +0,0 @@ -/* -Code sections: - .init: 0x00000100 0x80003100 0x800054C0 - .text: 0x000024C0 0x80005560 0x80221F60 -Data sections: - extab: 0x0021EEC0 0x800054C0 0x80005500 - extabindex: 0x0021EF00 0x80005500 0x80005560 - .ctors: 0x0021EF60 0x80221F60 0x80221FC0 - .dtors: 0x0021EFC0 0x80221FC0 0x80221FE0 - .rodata: 0x0021EFE0 0x80221FE0 0x80222DC0 - .data: 0x0021FDC0 0x80222DC0 0x802E9640 - .sdata: 0x002E6640 0x803DCD20 0x803E7820 - .sdata2: 0x002F1140 0x803E8200 0x803EC840 -BSS section: - .bss: 0x00000000 0x802E9640 0x803E81E5 - .sbss: -Entry Point: 0x80003100 -*/ -# PowerPC Register Constants -# General Purpose Registers (GPRs) -.set r0, 0 -.set r1, 1 -.set r2, 2 -.set r3, 3 -.set r4, 4 -.set r5, 5 -.set r6, 6 -.set r7, 7 -.set r8, 8 -.set r9, 9 -.set r10, 10 -.set r11, 11 -.set r12, 12 -.set r13, 13 -.set r14, 14 -.set r15, 15 -.set r16, 16 -.set r17, 17 -.set r18, 18 -.set r19, 19 -.set r20, 20 -.set r21, 21 -.set r22, 22 -.set r23, 23 -.set r24, 24 -.set r25, 25 -.set r26, 26 -.set r27, 27 -.set r28, 28 -.set r29, 29 -.set r30, 30 -.set r31, 31 - -# Floating Point Registers (FPRs) -.set f0, 0 -.set f1, 1 -.set f2, 2 -.set f3, 3 -.set f4, 4 -.set f5, 5 -.set f6, 6 -.set f7, 7 -.set f8, 8 -.set f9, 9 -.set f10, 10 -.set f11, 11 -.set f12, 12 -.set f13, 13 -.set f14, 14 -.set f15, 15 -.set f16, 16 -.set f17, 17 -.set f18, 18 -.set f19, 19 -.set f20, 20 -.set f21, 21 -.set f22, 22 -.set f23, 23 -.set f24, 24 -.set f25, 25 -.set f26, 26 -.set f27, 27 -.set f28, 28 -.set f29, 29 -.set f30, 30 -.set f31, 31 - -# Graphics Quantization Registers (GQRs) -.set qr0, 0 -.set qr1, 1 -.set qr2, 2 -.set qr3, 3 -.set qr4, 4 -.set qr5, 5 -.set qr6, 6 -.set qr7, 7 - -# Special Purpose Registers (SPRs) -.set XER, 1 -.set LR, 8 -.set CTR, 9 -.set DSISR, 18 -.set DAR, 19 -.set DEC, 22 -.set SDR1, 25 -.set SRR0, 26 -.set SRR1, 27 -.set SPRG0, 272 -.set SPRG1, 273 -.set SPRG2, 274 -.set SPRG3, 275 -.set EAR, 282 -.set PVR, 287 -.set IBAT0U, 528 -.set IBAT0L, 529 -.set IBAT1U, 530 -.set IBAT1L, 531 -.set IBAT2U, 532 -.set IBAT2L, 533 -.set IBAT3U, 534 -.set IBAT3L, 535 -.set DBAT0U, 536 -.set DBAT0L, 537 -.set DBAT1U, 538 -.set DBAT1L, 539 -.set DBAT2U, 540 -.set DBAT2L, 541 -.set DBAT3U, 542 -.set DBAT3L, 543 -.set GQR0, 912 -.set GQR1, 913 -.set GQR2, 914 -.set GQR3, 915 -.set GQR4, 916 -.set GQR5, 917 -.set GQR6, 918 -.set GQR7, 919 -.set HID2, 920 -.set WPAR, 921 -.set DMA_U, 922 -.set DMA_L, 923 -.set UMMCR0, 936 -.set UPMC1, 937 -.set UPMC2, 938 -.set USIA, 939 -.set UMMCR1, 940 -.set UPMC3, 941 -.set UPMC4, 942 -.set USDA, 943 -.set MMCR0, 952 -.set PMC1, 953 -.set PMC2, 954 -.set SIA, 955 -.set MMCR1, 956 -.set PMC3, 957 -.set PMC4, 958 -.set SDA, 959 -.set HID0, 1008 -.set HID1, 1009 -.set IABR, 1010 -.set DABR, 1013 -.set L2CR, 1017 -.set ICTC, 1019 -.set THRM1, 1020 -.set THRM2, 1021 -.set THRM3, 1022 - -# Defines a sized symbol with function type. -# Usage: -# .fn my_function, local -# /* asm here */ -# .endfn my_function -.macro .fn name, visibility=global -.\visibility "\name" -.type "\name", @function -"\name": -.endm - -.macro .endfn name -.size "\name", . - "\name" -.endm - -# Defines a sized symbol with object type. -# Usage: -# .obj my_object, local -# /* data here */ -# .endobj my_object -.macro .obj name, visibility=global -.\visibility "\name" -.type "\name", @object -"\name": -.endm - -.macro .endobj name -.size "\name", . - "\name" -.endm - -# Defines a sized symbol without a type. -# Usage: -# .sym my_sym, local -# /* anything here */ -# .endsym my_sym -.macro .sym name, visibility=global -.\visibility "\name" -"\name": -.endm - -.macro .endsym name -.size "\name", . - "\name" -.endm - -# Generates a relative relocation against a symbol. -# Usage: -# .rel my_function, .L_label -.macro .rel name, label -.4byte "\name" + ("\label" - "\name") -.endm diff --git a/include_link.mk b/include_link.mk deleted file mode 100644 index 8db87a4c..00000000 --- a/include_link.mk +++ /dev/null @@ -1,31 +0,0 @@ -# libraries --include src/jaudio/Makefile --include src/hvqm4dec/Makefile --include src/sysCommon/Makefile --include src/sysDolphin/Makefile --include src/plugPikiColin/Makefile --include src/plugPikiKando/Makefile --include src/plugPikiNakata/Makefile --include src/plugPikiNishimura/Makefile --include src/plugPikiOgawa/Makefile --include src/plugPikiYamashita/Makefile --include src/base/Makefile --include src/os/Makefile --include src/db/Makefile --include src/mtx/Makefile --include src/dvd/Makefile --include src/vi/Makefile --include src/pad/Makefile --include src/ai/Makefile --include src/ar/Makefile --include src/dsp/Makefile --include src/card/Makefile --include src/hio/Makefile --include src/gx/Makefile --include src/Runtime/PPCEABI/H/Makefile --include src/MSL_C/PPCEABI/bare/H/Makefile --include src/TRK_MINNOW_DOLPHIN/Makefile --include src/amcExi2/Makefile --include src/amcnotstub/Makefile --include src/OdemuExi2/Makefile --include src/odenotstub/Makefile diff --git a/ldscript.lcf b/ldscript.lcf deleted file mode 100644 index c9cac9e3..00000000 --- a/ldscript.lcf +++ /dev/null @@ -1,33 +0,0 @@ -MEMORY { -text : origin = 0x80003100 -} -SECTIONS { -GROUP: { - .init ALIGN(0x20) : {} - ._extab ALIGN(0x20) : {} - ._exidx ALIGN(0x20) : {} - .text ALIGN(0x20) : {} - .ctors ALIGN(0x20) : {} - .dtors ALIGN(0x20) : {} - .rodata ALIGN(0x20) : {} - .data ALIGN(0x20) : {} - .bss ALIGN(0x20) : {} - .sdata ALIGN(0x20) : {} - .sbss ALIGN(0x20) : {} - .sdata2 ALIGN(0x20): {} - .sbss2 ALIGN(0x20) : {} - .stack ALIGN(0x100) : {} -} > text - _stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 65536 + 0x7) & ~0x7; - _stack_end = _f_sbss2 + SIZEOF(.sbss2); - _db_stack_addr = (_stack_addr + 0x2000); - _db_stack_end = _stack_addr; - __ArenaLo = (_db_stack_addr + 0x1f) & ~0x1f; - __ArenaHi = 0x81700000; -} - -FORCEFILES { - uart_console_io.o - ExceptionPPC.o - __init_cpp_exceptions.o -} diff --git a/obj_files.mk b/obj_files.mk deleted file mode 100644 index 121df167..00000000 --- a/obj_files.mk +++ /dev/null @@ -1,44 +0,0 @@ -# Linker order for every file, passed to the Metrowerks linker. - -SYSBOOTUP :=\ - $(BUILD_DIR)/src/sysBootup.o\ - -JAUDIO :=\ - $(BUILD_DIR)/src/jaudio/jaudio.o\ - -HVQM4DEC :=\ - $(BUILD_DIR)/src/hvqm4dec/hvqm4dec.a\ - -SYS :=\ - $(BUILD_DIR)/src/sysCommon/sysCommon.a\ - $(BUILD_DIR)/src/sysDolphin/sysDolphin.a\ - -PLUGPIKI :=\ - $(BUILD_DIR)/src/plugPikiColin/plugPikiColin.a\ - $(BUILD_DIR)/src/plugPikiKando/plugPikiKando.a\ - $(BUILD_DIR)/src/plugPikiNakata/plugPikiNakata.a\ - $(BUILD_DIR)/src/plugPikiNishimura/plugPikiNishimura.a\ - $(BUILD_DIR)/src/plugPikiOgawa/plugPikiOgawa.a\ - $(BUILD_DIR)/src/plugPikiYamashita/plugPikiYamashita.a\ - -DOLPHIN :=\ - $(BUILD_DIR)/src/base/base.a\ - $(BUILD_DIR)/src/os/os.a\ - $(BUILD_DIR)/src/db/db.a\ - $(BUILD_DIR)/src/mtx/mtx.a\ - $(BUILD_DIR)/src/dvd/dvd.a\ - $(BUILD_DIR)/src/vi/vi.a\ - $(BUILD_DIR)/src/pad/pad.a\ - $(BUILD_DIR)/src/ai/ai.a\ - $(BUILD_DIR)/src/ar/ar.a\ - $(BUILD_DIR)/src/dsp/dsp.a\ - $(BUILD_DIR)/src/card/card.a\ - $(BUILD_DIR)/src/hio/hio.a\ - $(BUILD_DIR)/src/gx/gx.a\ - $(BUILD_DIR)/src/Runtime/PPCEABI/H/Runtime.PPCEABI.H.a\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/MSL_C.PPCEABI.bare.H.a\ - $(BUILD_DIR)/src/TRK_MINNOW_DOLPHIN/TRK_MINNOW_DOLPHIN.a\ - $(BUILD_DIR)/src/amcExi2/amcExi2.a\ - $(BUILD_DIR)/src/amcnotstub/amcnotstub.a\ - $(BUILD_DIR)/src/OdemuExi2/OdemuExi2.a\ - $(BUILD_DIR)/src/odenotstub/odenotstub.a\ diff --git a/sha1/pikmin.usa.1.sha1 b/sha1/pikmin.usa.1.sha1 deleted file mode 100644 index 7ff30ca8..00000000 --- a/sha1/pikmin.usa.1.sha1 +++ /dev/null @@ -1 +0,0 @@ -02204260B7EFE8742D34572E58BA3DFECD92E4E9 build/pikmin.usa.1/main.dol \ No newline at end of file diff --git a/src/MSL_C/PPCEABI/bare/H/Makefile b/src/MSL_C/PPCEABI/bare/H/Makefile deleted file mode 100644 index 67a59178..00000000 --- a/src/MSL_C/PPCEABI/bare/H/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -MSL_C_FILES:=\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/abort_exit.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/errno.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/ansi_fp.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/arith.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/buffer_io.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/critical_regions.ppc_eabi.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/ctype.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/ansi_files.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/locale.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/direct_io.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/mbstring.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/mem.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/mem_funcs.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/misc_io.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/printf.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/rand.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/scanf.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/string.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/strtold.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/strtoul.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/uart_console_io.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/wchar_io.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/float.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/e_asin.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/e_atan2.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/e_pow.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/fminmaxdim.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/s_atan.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/s_copysign.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/s_frexp.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/s_ldexp.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/w_atan2.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/w_pow.o\ - $(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/hyperbolicsf.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/inverse_trig.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/trigf.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/math_inlines.o\ - $(BUILD_DIR)/asm/MSL_C/PPCEABI/bare/H/common_float_tables.o\ - -$(MSL_C_FILES): CFLAGS += -common off -fp_contract on -$(MSL_C_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(MSL_C_FILES:.o=.d) - -$(BUILD_DIR)/src/MSL_C/PPCEABI/bare/H/MSL_C.PPCEABI.bare.H.a: $(MSL_C_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(MSL_C_FILES) > build/MSL_C_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/MSL_C_ofiles diff --git a/src/OdemuExi2/Makefile b/src/OdemuExi2/Makefile deleted file mode 100644 index 36f987ca..00000000 --- a/src/OdemuExi2/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -ODEMUEXI2_FILES:=\ - $(BUILD_DIR)/asm/OdemuExi2/DebuggerDriver.o\ - -$(ODEMUEXI2_FILES): CFLAGS += -common off -$(ODEMUEXI2_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(ODEMUEXI2_FILES:.o=.d) - -$(BUILD_DIR)/src/OdemuExi2/OdemuExi2.a: $(ODEMUEXI2_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(ODEMUEXI2_FILES) > build/ODEMUEXI2_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/ODEMUEXI2_ofiles diff --git a/src/Runtime/PPCEABI/H/Makefile b/src/Runtime/PPCEABI/H/Makefile deleted file mode 100644 index 04c36a89..00000000 --- a/src/Runtime/PPCEABI/H/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -RUNTIME_FILES:=\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/__mem.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/__va_arg.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/global_destructor_chain.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/CPlusLibPPC.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/NMWException.o\ - $(BUILD_DIR)/src/Runtime/PPCEABI/H/ptmf.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/ExceptionPPC.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/runtime.o\ - $(BUILD_DIR)/asm/Runtime/PPCEABI/H/__init_cpp_exceptions.o\ - -$(RUNTIME_FILES): CFLAGS += -common off -$(RUNTIME_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(RUNTIME_FILES:.o=.d) - -$(BUILD_DIR)/src/Runtime/PPCEABI/H/Runtime.PPCEABI.H.a: $(RUNTIME_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(RUNTIME_FILES) > build/RUNTIME_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/RUNTIME_ofiles diff --git a/src/TRK_MINNOW_DOLPHIN/Makefile b/src/TRK_MINNOW_DOLPHIN/Makefile deleted file mode 100644 index a076c74b..00000000 --- a/src/TRK_MINNOW_DOLPHIN/Makefile +++ /dev/null @@ -1,33 +0,0 @@ -TRK_MINNOW_DOLPHIN_FILES:=\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/mainloop.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/nubevent.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/nubinit.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/msg.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/msgbuf.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/serpoll.o\ - $(BUILD_DIR)/src/TRK_MINNOW_DOLPHIN/usr_put.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/dispatch.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/msghndlr.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/support.o\ - $(BUILD_DIR)/src/TRK_MINNOW_DOLPHIN/mutex_TRK.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/notify.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/flush_cache.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/mem_TRK.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/__exception.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/targimpl.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/dolphin_trk.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/mpc_7xx_603e.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/main_TRK.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.o\ - $(BUILD_DIR)/asm/TRK_MINNOW_DOLPHIN/targcont.o\ - -$(TRK_MINNOW_DOLPHIN_FILES): CFLAGS += -common off -$(TRK_MINNOW_DOLPHIN_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(TRK_MINNOW_DOLPHIN_FILES:.o=.d) - -$(BUILD_DIR)/src/TRK_MINNOW_DOLPHIN/TRK_MINNOW_DOLPHIN.a: $(TRK_MINNOW_DOLPHIN_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(TRK_MINNOW_DOLPHIN_FILES) > build/TRK_MINNOW_DOLPHIN_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/TRK_MINNOW_DOLPHIN_ofiles diff --git a/src/ai/Makefile b/src/ai/Makefile deleted file mode 100644 index 94143e11..00000000 --- a/src/ai/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -AI_FILES:=\ - $(BUILD_DIR)/asm/ai/ai.o\ - -$(AI_FILES): CFLAGS += -common off -$(AI_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(AI_FILES:.o=.d) - -$(BUILD_DIR)/src/ai/ai.a: $(AI_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(AI_FILES) > build/AI_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/AI_ofiles diff --git a/src/amcExi2/Makefile b/src/amcExi2/Makefile deleted file mode 100644 index f399d0ad..00000000 --- a/src/amcExi2/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -AMCEXI2_FILES:=\ - $(BUILD_DIR)/asm/amcExi2/AmcExi.o\ - $(BUILD_DIR)/asm/amcExi2/AmcExi2Comm.o\ - -$(AMCEXI2_FILES): CFLAGS += -common off -$(AMCEXI2_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(AMCEXI2_FILES:.o=.d) - -$(BUILD_DIR)/src/amcExi2/amcExi2.a: $(AMCEXI2_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(AMCEXI2_FILES) > build/AMCEXI2_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/AMCEXI2_ofiles diff --git a/src/amcnotstub/Makefile b/src/amcnotstub/Makefile deleted file mode 100644 index 6a0f1fea..00000000 --- a/src/amcnotstub/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -AMCNOTSTUB_FILES:=\ - $(BUILD_DIR)/src/amcnotstub/amcnotstub.o\ - -$(AMCNOTSTUB_FILES): CFLAGS += -common off -$(AMCNOTSTUB_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(AMCNOTSTUB_FILES:.o=.d) - -$(BUILD_DIR)/src/amcnotstub/amcnotstub.a: $(AMCNOTSTUB_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(AMCNOTSTUB_FILES) > build/AMCNOTSTUB_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/AMCNOTSTUB_ofiles diff --git a/src/ar/Makefile b/src/ar/Makefile deleted file mode 100644 index c093dca9..00000000 --- a/src/ar/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -AR_FILES:=\ - $(BUILD_DIR)/asm/ar/ar.o\ - $(BUILD_DIR)/asm/ar/arq.o\ - -$(AR_FILES): CFLAGS += -common off -$(AR_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(AR_FILES:.o=.d) - -$(BUILD_DIR)/src/ar/ar.a: $(AR_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(AR_FILES) > build/AR_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/AR_ofiles diff --git a/src/base/Makefile b/src/base/Makefile deleted file mode 100644 index cce476a2..00000000 --- a/src/base/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -BASE_FILES:=\ - $(BUILD_DIR)/src/base/PPCArch.o\ - -$(BASE_FILES): CFLAGS += -common off -$(BASE_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(BASE_FILES:.o=.d) - -$(BUILD_DIR)/src/base/base.a: $(BASE_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(BASE_FILES) > build/BASE_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/BASE_ofiles diff --git a/src/card/Makefile b/src/card/Makefile deleted file mode 100644 index b0645211..00000000 --- a/src/card/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -CARD_FILES:=\ - $(BUILD_DIR)/asm/card/CARDBios.o\ - $(BUILD_DIR)/asm/card/CARDRdwr.o\ - $(BUILD_DIR)/asm/card/CARDBlock.o\ - $(BUILD_DIR)/asm/card/CARDDir.o\ - $(BUILD_DIR)/asm/card/CARDCheck.o\ - $(BUILD_DIR)/asm/card/CARDMount.o\ - $(BUILD_DIR)/asm/card/CARDFormat.o\ - $(BUILD_DIR)/asm/card/CARDOpen.o\ - $(BUILD_DIR)/asm/card/CARDCreate.o\ - $(BUILD_DIR)/asm/card/CARDRead.o\ - $(BUILD_DIR)/asm/card/CARDWrite.o\ - $(BUILD_DIR)/asm/card/CARDDelete.o\ - $(BUILD_DIR)/asm/card/CARDStat.o\ - $(BUILD_DIR)/asm/card/CARDRename.o\ - -$(CARD_FILES): CFLAGS += -common off -$(CARD_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(CARD_FILES:.o=.d) - -$(BUILD_DIR)/src/card/card.a: $(CARD_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(CARD_FILES) > build/CARD_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/CARD_ofiles diff --git a/src/db/Makefile b/src/db/Makefile deleted file mode 100644 index 4d58a08a..00000000 --- a/src/db/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -DB_FILES:=\ - $(BUILD_DIR)/asm/db/db.o\ - -$(DB_FILES): CFLAGS += -common off -$(DB_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(DB_FILES:.o=.d) - -$(BUILD_DIR)/src/db/db.a: $(DB_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(DB_FILES) > build/DB_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/DB_ofiles diff --git a/src/dsp/Makefile b/src/dsp/Makefile deleted file mode 100644 index 57e47d06..00000000 --- a/src/dsp/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -DSP_FILES:=\ - $(BUILD_DIR)/src/dsp/dsp.o\ - -$(DSP_FILES): CFLAGS += -common off -$(DSP_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(DSP_FILES:.o=.d) - -$(BUILD_DIR)/src/dsp/dsp.a: $(DSP_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(DSP_FILES) > build/DSP_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/DSP_ofiles diff --git a/src/dvd/Makefile b/src/dvd/Makefile deleted file mode 100644 index 6b03554c..00000000 --- a/src/dvd/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -DVD_FILES:=\ - $(BUILD_DIR)/asm/dvd/dvdlow.o\ - $(BUILD_DIR)/asm/dvd/dvdfs.o\ - $(BUILD_DIR)/asm/dvd/dvd.o\ - $(BUILD_DIR)/asm/dvd/dvdqueue.o\ - $(BUILD_DIR)/asm/dvd/dvderror.o\ - $(BUILD_DIR)/asm/dvd/fstload.o\ - -$(DVD_FILES): CFLAGS += -common off -$(DVD_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(DVD_FILES:.o=.d) - -$(BUILD_DIR)/src/dvd/dvd.a: $(DVD_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(DVD_FILES) > build/DVD_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/DVD_ofiles diff --git a/src/gx/Makefile b/src/gx/Makefile deleted file mode 100644 index 992dc0af..00000000 --- a/src/gx/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -GX_FILES:=\ - $(BUILD_DIR)/asm/gx/GXInit.o\ - $(BUILD_DIR)/asm/gx/GXFifo.o\ - $(BUILD_DIR)/asm/gx/GXAttr.o\ - $(BUILD_DIR)/asm/gx/GXMisc.o\ - $(BUILD_DIR)/asm/gx/GXGeometry.o\ - $(BUILD_DIR)/asm/gx/GXFrameBuf.o\ - $(BUILD_DIR)/asm/gx/GXLight.o\ - $(BUILD_DIR)/asm/gx/GXTexture.o\ - $(BUILD_DIR)/asm/gx/GXBump.o\ - $(BUILD_DIR)/asm/gx/GXTev.o\ - $(BUILD_DIR)/asm/gx/GXPixel.o\ - $(BUILD_DIR)/src/gx/GXStubs.o\ - $(BUILD_DIR)/asm/gx/GXDisplayList.o\ - $(BUILD_DIR)/asm/gx/GXTransform.o\ - -$(GX_FILES): CFLAGS += -common off -$(GX_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(GX_FILES:.o=.d) - -$(BUILD_DIR)/src/gx/gx.a: $(GX_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(GX_FILES) > build/GX_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/GX_ofiles diff --git a/src/hio/Makefile b/src/hio/Makefile deleted file mode 100644 index acfae59f..00000000 --- a/src/hio/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -HIO_FILES:=\ - $(BUILD_DIR)/asm/hio/hio.o\ - -$(HIO_FILES): CFLAGS += -common off -$(HIO_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(HIO_FILES:.o=.d) - -$(BUILD_DIR)/src/hio/hio.a: $(HIO_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(HIO_FILES) > build/HIO_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/HIO_ofiles diff --git a/src/hvqm4dec/Makefile b/src/hvqm4dec/Makefile deleted file mode 100644 index b929808c..00000000 --- a/src/hvqm4dec/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -HVQM4DEC_FILES:=\ - $(BUILD_DIR)/asm/hvqm4dec/hvqm4dec.o\ - -$(HVQM4DEC_FILES): CFLAGS += -common off -$(HVQM4DEC_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(HVQM4DEC_FILES:.o=.d) - -$(BUILD_DIR)/src/hvqm4dec/hvqm4dec.a: $(HVQM4DEC_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(HVQM4DEC_FILES) > build/HVQM4DEC_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/HVQM4DEC_ofiles diff --git a/src/jaudio/Makefile b/src/jaudio/Makefile deleted file mode 100644 index 9cc41d26..00000000 --- a/src/jaudio/Makefile +++ /dev/null @@ -1,72 +0,0 @@ -JAUDIO_FILES:=\ - $(BUILD_DIR)/src/jaudio/dummyprobe.o\ - $(BUILD_DIR)/asm/jaudio/memory.o\ - $(BUILD_DIR)/asm/jaudio/aictrl.o\ - $(BUILD_DIR)/asm/jaudio/sample.o\ - $(BUILD_DIR)/asm/jaudio/dummyrom.o\ - $(BUILD_DIR)/asm/jaudio/audiothread.o\ - $(BUILD_DIR)/asm/jaudio/audiothread_fakebss.o\ - $(BUILD_DIR)/asm/jaudio/streamctrl.o\ - $(BUILD_DIR)/asm/jaudio/dspbuf.o\ - $(BUILD_DIR)/asm/jaudio/cpubuf.o\ - $(BUILD_DIR)/asm/jaudio/playercall.o\ - $(BUILD_DIR)/asm/jaudio/dvdthread.o\ - $(BUILD_DIR)/asm/jaudio/audiomesg.o\ - $(BUILD_DIR)/asm/jaudio/rate.o\ - $(BUILD_DIR)/asm/jaudio/stackchecker.o\ - $(BUILD_DIR)/asm/jaudio/dspboot.o\ - $(BUILD_DIR)/asm/jaudio/dspproc.o\ - $(BUILD_DIR)/asm/jaudio/ipldec.o\ - $(BUILD_DIR)/asm/jaudio/dsp_cardunlock.o\ - $(BUILD_DIR)/asm/jaudio/driverinterface.o\ - $(BUILD_DIR)/asm/jaudio/dspdriver.o\ - $(BUILD_DIR)/asm/jaudio/dspinterface.o\ - $(BUILD_DIR)/asm/jaudio/fxinterface.o\ - $(BUILD_DIR)/asm/jaudio/bankread.o\ - $(BUILD_DIR)/asm/jaudio/waveread.o\ - $(BUILD_DIR)/asm/jaudio/connect.o\ - $(BUILD_DIR)/asm/jaudio/tables.o\ - $(BUILD_DIR)/asm/jaudio/bankdrv.o\ - $(BUILD_DIR)/asm/jaudio/random.o\ - $(BUILD_DIR)/asm/jaudio/aramcall.o\ - $(BUILD_DIR)/asm/jaudio/ja_calc.o\ - $(BUILD_DIR)/asm/jaudio/fat.o\ - $(BUILD_DIR)/asm/jaudio/cmdstack.o\ - $(BUILD_DIR)/asm/jaudio/virload.o\ - $(BUILD_DIR)/asm/jaudio/heapctrl.o\ - $(BUILD_DIR)/asm/jaudio/jammain_2.o\ - $(BUILD_DIR)/asm/jaudio/midplay.o\ - $(BUILD_DIR)/asm/jaudio/noteon.o\ - $(BUILD_DIR)/asm/jaudio/seqsetup.o\ - $(BUILD_DIR)/asm/jaudio/centcalc.o\ - $(BUILD_DIR)/asm/jaudio/jamosc.o\ - $(BUILD_DIR)/asm/jaudio/oneshot.o\ - $(BUILD_DIR)/asm/jaudio/interface.o\ - $(BUILD_DIR)/asm/jaudio/verysimple.o\ - $(BUILD_DIR)/asm/jaudio/app_inter.o\ - $(BUILD_DIR)/asm/jaudio/pikiinter.o\ - $(BUILD_DIR)/asm/jaudio/piki_player.o\ - $(BUILD_DIR)/asm/jaudio/piki_bgm.o\ - $(BUILD_DIR)/asm/jaudio/piki_scene.o\ - $(BUILD_DIR)/asm/jaudio/pikidemo.o\ - $(BUILD_DIR)/asm/jaudio/file_seq.o\ - $(BUILD_DIR)/asm/jaudio/cmdqueue.o\ - $(BUILD_DIR)/src/jaudio/filter3d.o\ - $(BUILD_DIR)/asm/jaudio/syncstream.o\ - $(BUILD_DIR)/asm/jaudio/bankloader.o\ - $(BUILD_DIR)/asm/jaudio/interleave.o\ - $(BUILD_DIR)/asm/jaudio/pikiseq.o\ - $(BUILD_DIR)/asm/jaudio/hplaybss.o\ - $(BUILD_DIR)/asm/jaudio/hplaybss2.o\ - $(BUILD_DIR)/asm/jaudio/hvqm_play.o\ - -$(JAUDIO_FILES): CFLAGS += -common off -func_align 32 -lang c++ -$(JAUDIO_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(JAUDIO_FILES:.o=.d) - -$(BUILD_DIR)/src/jaudio/jaudio.o: $(JAUDIO_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(JAUDIO_FILES) > build/JAUDIO_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/JAUDIO_ofiles diff --git a/src/jaudio/dummyprobe.c b/src/jaudio/dummyprobe.c index 54e7ff41..9289fefb 100644 --- a/src/jaudio/dummyprobe.c +++ b/src/jaudio/dummyprobe.c @@ -19,10 +19,5 @@ void Probe_Finish(void) { return; } * Address: ........ * Size: 000050 */ -/* -void Console_printf(void) -{ - // UNUSED FUNCTION -} -*/ +void Console_printf(char*, ...) { return; } } diff --git a/src/mtx/Makefile b/src/mtx/Makefile deleted file mode 100644 index 7943dbe0..00000000 --- a/src/mtx/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -MTX_FILES:=\ - $(BUILD_DIR)/asm/mtx/mtx.o\ - $(BUILD_DIR)/asm/mtx/mtx44.o\ - $(BUILD_DIR)/asm/mtx/vec.o\ - -$(MTX_FILES): CFLAGS += -common off -$(MTX_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(MTX_FILES:.o=.d) - -$(BUILD_DIR)/src/mtx/mtx.a: $(MTX_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(MTX_FILES) > build/MTX_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/MTX_ofiles diff --git a/src/odenotstub/Makefile b/src/odenotstub/Makefile deleted file mode 100644 index f8c34342..00000000 --- a/src/odenotstub/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -ODENOTSTUB_FILES:=\ - $(BUILD_DIR)/src/odenotstub/odenotstub.o\ - -$(ODENOTSTUB_FILES): CFLAGS += -common off -$(ODENOTSTUB_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(ODENOTSTUB_FILES:.o=.d) - -$(BUILD_DIR)/src/odenotstub/odenotstub.a: $(ODENOTSTUB_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(ODENOTSTUB_FILES) > build/ODENOTSTUB_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/ODENOTSTUB_ofiles diff --git a/src/os/Makefile b/src/os/Makefile deleted file mode 100644 index 21540c56..00000000 --- a/src/os/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -OS_FILES:=\ - $(BUILD_DIR)/asm/os/OS.o\ - $(BUILD_DIR)/asm/os/OSAlarm.o\ - $(BUILD_DIR)/src/os/OSAlloc.o\ - $(BUILD_DIR)/src/os/OSArena.o\ - $(BUILD_DIR)/asm/os/OSAudioSystem.o\ - $(BUILD_DIR)/asm/os/OSCache.o\ - $(BUILD_DIR)/asm/os/OSContext.o\ - $(BUILD_DIR)/src/os/OSError.o\ - $(BUILD_DIR)/asm/os/OSExi.o\ - $(BUILD_DIR)/asm/os/OSFont.o\ - $(BUILD_DIR)/asm/os/OSInterrupt.o\ - $(BUILD_DIR)/src/os/OSLink.o\ - $(BUILD_DIR)/asm/os/OSMessage.o\ - $(BUILD_DIR)/asm/os/OSMutex.o\ - $(BUILD_DIR)/asm/os/OSReboot.o\ - $(BUILD_DIR)/asm/os/OSReset.o\ - $(BUILD_DIR)/asm/os/OSResetSW.o\ - $(BUILD_DIR)/asm/os/OSRtc.o\ - $(BUILD_DIR)/asm/os/OSSerial.o\ - $(BUILD_DIR)/asm/os/OSSync.o\ - $(BUILD_DIR)/asm/os/OSThread.o\ - $(BUILD_DIR)/asm/os/OSTime.o\ - $(BUILD_DIR)/asm/os/OSUartExi.o\ - $(BUILD_DIR)/src/os/__start.o\ - $(BUILD_DIR)/asm/os/__ppc_eabi_init.o\ - -$(OS_FILES): CFLAGS += -common off -$(OS_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(OS_FILES:.o=.d) - -$(BUILD_DIR)/src/os/os.a: $(OS_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(OS_FILES) > build/OS_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/OS_ofiles diff --git a/src/os/__start.c b/src/os/__start.c index cc6c1f68..101d37b8 100644 --- a/src/os/__start.c +++ b/src/os/__start.c @@ -2,6 +2,14 @@ #pragma section code_type ".init" +static void __check_pad3(void) +{ + if ((Pad3Button & 0x0eef) == 0x0eef) { + OSResetSystem(OS_RESET_RESTART, 0, FALSE); + } + return; +} + WEAKFUNC ASM void __start(void) { #ifdef __MWERKS__ // clang-format off @@ -75,6 +83,19 @@ _no_args: _end_of_parseargs: bl DBInit bl OSInit +#if VERSION == 0 + lis r4, 0x8000 + addi r4, r4, 0x30e6 + lhz r3, 0x0(r4) + andi. r5, r3, 0x8000 + beq _check_pad + andi. r3, r3, 0x7fff + cmplwi r3, 0x1 + bne _end +_check_pad: + bl __check_pad3 +_end: +#endif bl __init_user mr r3, r14 mr r4, r15 diff --git a/src/pad/Makefile b/src/pad/Makefile deleted file mode 100644 index 25cc39a6..00000000 --- a/src/pad/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -PAD_FILES:=\ - $(BUILD_DIR)/asm/pad/Padclamp.o\ - $(BUILD_DIR)/asm/pad/Pad.o\ - -$(PAD_FILES): CFLAGS += -common off -$(PAD_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(PAD_FILES:.o=.d) - -$(BUILD_DIR)/src/pad/pad.a: $(PAD_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(PAD_FILES) > build/PAD_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/PAD_ofiles diff --git a/src/plugPikiColin/Makefile b/src/plugPikiColin/Makefile deleted file mode 100644 index 204e8b73..00000000 --- a/src/plugPikiColin/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -COLIN_FILES:=\ - $(BUILD_DIR)/asm/plugPikiColin/cardutil.o\ - $(BUILD_DIR)/asm/plugPikiColin/dynsimulator.o\ - $(BUILD_DIR)/asm/plugPikiColin/animMgr.o\ - $(BUILD_DIR)/asm/plugPikiColin/gameflow.o\ - $(BUILD_DIR)/asm/plugPikiColin/game.o\ - $(BUILD_DIR)/asm/plugPikiColin/gamePrefs.o\ - $(BUILD_DIR)/asm/plugPikiColin/gameSetup.o\ - $(BUILD_DIR)/asm/plugPikiColin/cardSelect.o\ - $(BUILD_DIR)/asm/plugPikiColin/mapSelect.o\ - $(BUILD_DIR)/asm/plugPikiColin/newPikiGame.o\ - $(BUILD_DIR)/asm/plugPikiColin/introGame.o\ - $(BUILD_DIR)/src/plugPikiColin/gameExit.o\ - $(BUILD_DIR)/asm/plugPikiColin/gauges.o\ - $(BUILD_DIR)/asm/plugPikiColin/genMapObject.o\ - $(BUILD_DIR)/asm/plugPikiColin/gui.o\ - $(BUILD_DIR)/asm/plugPikiColin/parameters.o\ - $(BUILD_DIR)/asm/plugPikiColin/plugPiki.o\ - $(BUILD_DIR)/asm/plugPikiColin/titles.o\ - $(BUILD_DIR)/asm/plugPikiColin/ninLogo.o\ - $(BUILD_DIR)/asm/plugPikiColin/mapMgr.o\ - $(BUILD_DIR)/asm/plugPikiColin/dayMgr.o\ - $(BUILD_DIR)/asm/plugPikiColin/cinePlayer.o\ - $(BUILD_DIR)/asm/plugPikiColin/lightPool.o\ - $(BUILD_DIR)/asm/plugPikiColin/memoryCard.o\ - $(BUILD_DIR)/asm/plugPikiColin/moviePlayer.o\ - $(BUILD_DIR)/asm/plugPikiColin/movSample.o\ - -$(COLIN_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(COLIN_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiColin/plugPikiColin.a: $(COLIN_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(COLIN_FILES) > build/COLIN_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/COLIN_ofiles diff --git a/src/plugPikiKando/Makefile b/src/plugPikiKando/Makefile deleted file mode 100644 index 07e3ead4..00000000 --- a/src/plugPikiKando/Makefile +++ /dev/null @@ -1,143 +0,0 @@ -KANDO_FILES:=\ - $(BUILD_DIR)/asm/plugPikiKando/omake.o\ - $(BUILD_DIR)/asm/plugPikiKando/radarInfo.o\ - $(BUILD_DIR)/asm/plugPikiKando/interactBattle.o\ - $(BUILD_DIR)/asm/plugPikiKando/interactGrab.o\ - $(BUILD_DIR)/asm/plugPikiKando/interactEtc.o\ - $(BUILD_DIR)/asm/plugPikiKando/interactPullout.o\ - $(BUILD_DIR)/asm/plugPikiKando/saiEvents.o\ - $(BUILD_DIR)/asm/plugPikiKando/simpleAI.o\ - $(BUILD_DIR)/asm/plugPikiKando/formationMgr.o\ - $(BUILD_DIR)/src/plugPikiKando/globalShapes.o\ - $(BUILD_DIR)/asm/plugPikiKando/playerState.o\ - $(BUILD_DIR)/asm/plugPikiKando/gameDemo.o\ - $(BUILD_DIR)/asm/plugPikiKando/demoInvoker.o\ - $(BUILD_DIR)/asm/plugPikiKando/demoEvent.o\ - $(BUILD_DIR)/asm/plugPikiKando/resultFlag.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiConstants.o\ - $(BUILD_DIR)/asm/plugPikiKando/kio.o\ - $(BUILD_DIR)/asm/plugPikiKando/keyConfig.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPerf.o\ - $(BUILD_DIR)/asm/plugPikiKando/courseDebug.o\ - $(BUILD_DIR)/asm/plugPikiKando/memStat.o\ - $(BUILD_DIR)/asm/plugPikiKando/collInfo.o\ - $(BUILD_DIR)/asm/plugPikiKando/complexCreature.o\ - $(BUILD_DIR)/asm/plugPikiKando/creature.o\ - $(BUILD_DIR)/asm/plugPikiKando/creatureCollision.o\ - $(BUILD_DIR)/asm/plugPikiKando/creatureCollPart.o\ - $(BUILD_DIR)/asm/plugPikiKando/creatureMove.o\ - $(BUILD_DIR)/asm/plugPikiKando/creatureStick.o\ - $(BUILD_DIR)/asm/plugPikiKando/dualCreature.o\ - $(BUILD_DIR)/asm/plugPikiKando/dynCreature.o\ - $(BUILD_DIR)/src/plugPikiKando/eventListener.o\ - $(BUILD_DIR)/asm/plugPikiKando/fastGrid.o\ - $(BUILD_DIR)/asm/plugPikiKando/ropeCreature.o\ - $(BUILD_DIR)/src/plugPikiKando/objectTypes.o\ - $(BUILD_DIR)/asm/plugPikiKando/pelletMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/animPellet.o\ - $(BUILD_DIR)/asm/plugPikiKando/genPellet.o\ - $(BUILD_DIR)/asm/plugPikiKando/pelletState.o\ - $(BUILD_DIR)/asm/plugPikiKando/workObject.o\ - $(BUILD_DIR)/asm/plugPikiKando/routeMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/seMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/seConstants.o\ - $(BUILD_DIR)/asm/plugPikiKando/soundMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/updateMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/cPlate.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiStone.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiActions.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiAttack.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiBore.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiBoMake.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiBou.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiBridge.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiBreakWall.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiTransport.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiKinoko.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiChase.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiCrowd.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiDecoy.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiEnter.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiEscape.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiExit.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiMine.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiFormation.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiFree.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiGoto.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiGuard.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPick.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPickCreature.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPullout.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPush.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiPut.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiRandomBoid.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiRescue.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiRope.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiShoot.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiWatch.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiWeed.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiTable.o\ - $(BUILD_DIR)/asm/plugPikiKando/aiAction.o\ - $(BUILD_DIR)/asm/plugPikiKando/pikiInf.o\ - $(BUILD_DIR)/asm/plugPikiKando/piki.o\ - $(BUILD_DIR)/src/plugPikiKando/odoMeter.o\ - $(BUILD_DIR)/asm/plugPikiKando/pikidoKill.o\ - $(BUILD_DIR)/asm/plugPikiKando/pikiMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/pikiState.o\ - $(BUILD_DIR)/asm/plugPikiKando/viewPiki.o\ - $(BUILD_DIR)/src/plugPikiKando/conditions.o\ - $(BUILD_DIR)/asm/plugPikiKando/generator.o\ - $(BUILD_DIR)/asm/plugPikiKando/generatorCache.o\ - $(BUILD_DIR)/asm/plugPikiKando/objectMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/searchSystem.o\ - $(BUILD_DIR)/src/plugPikiKando/smartPtr.o\ - $(BUILD_DIR)/asm/plugPikiKando/itemGem.o\ - $(BUILD_DIR)/asm/plugPikiKando/weedsItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/kusaItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/fishItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/ufoItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/ufoAnim.o\ - $(BUILD_DIR)/asm/plugPikiKando/bombItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/goalItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/pikiheadItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/keyItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/ropeItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/seedItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/genItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/itemAI.o\ - $(BUILD_DIR)/asm/plugPikiKando/itemMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/itemObject.o\ - $(BUILD_DIR)/asm/plugPikiKando/mizuItem.o\ - $(BUILD_DIR)/asm/plugPikiKando/paniItemAnimator.o\ - $(BUILD_DIR)/asm/plugPikiKando/genNavi.o\ - $(BUILD_DIR)/asm/plugPikiKando/navi.o\ - $(BUILD_DIR)/asm/plugPikiKando/naviState.o\ - $(BUILD_DIR)/asm/plugPikiKando/naviDemoState.o\ - $(BUILD_DIR)/asm/plugPikiKando/gameCoreSection.o\ - $(BUILD_DIR)/asm/plugPikiKando/gmWin.o\ - $(BUILD_DIR)/asm/plugPikiKando/gameStat.o\ - $(BUILD_DIR)/asm/plugPikiKando/kmath.o\ - $(BUILD_DIR)/asm/plugPikiKando/uteffect.o\ - $(BUILD_DIR)/asm/plugPikiKando/kontroller.o\ - $(BUILD_DIR)/src/plugPikiKando/mapcode.o\ - $(BUILD_DIR)/asm/plugPikiKando/utkando.o\ - $(BUILD_DIR)/asm/plugPikiKando/naviMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/genMapParts.o\ - $(BUILD_DIR)/asm/plugPikiKando/mapParts.o\ - $(BUILD_DIR)/asm/plugPikiKando/panipikianimator.o\ - $(BUILD_DIR)/asm/plugPikiKando/actor.o\ - $(BUILD_DIR)/src/plugPikiKando/actorMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/genActor.o\ - $(BUILD_DIR)/src/plugPikiKando/pikiInfo.o\ - $(BUILD_DIR)/asm/plugPikiKando/plantMgr.o\ - $(BUILD_DIR)/asm/plugPikiKando/paniPlantAnimator.o\ - -$(KANDO_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(KANDO_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiKando/plugPikiKando.a: $(KANDO_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(KANDO_FILES) > build/KANDO_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/KANDO_ofiles diff --git a/src/plugPikiNakata/Makefile b/src/plugPikiNakata/Makefile deleted file mode 100644 index bd0e03a3..00000000 --- a/src/plugPikiNakata/Makefile +++ /dev/null @@ -1,66 +0,0 @@ -NAKATA_FILES:=\ - $(BUILD_DIR)/asm/plugPikiNakata/genteki.o\ - $(BUILD_DIR)/src/plugPikiNakata/nakatacode.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibfunction.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibgeometry.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibgeometry3d.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibgraphics.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibmath.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibspline.o\ - $(BUILD_DIR)/asm/plugPikiNakata/nlibsystem.o\ - $(BUILD_DIR)/asm/plugPikiNakata/panianimator.o\ - $(BUILD_DIR)/asm/plugPikiNakata/panipikianimmgr.o\ - $(BUILD_DIR)/asm/plugPikiNakata/panitekianimator.o\ - $(BUILD_DIR)/asm/plugPikiNakata/panitestsection.o\ - $(BUILD_DIR)/asm/plugPikiNakata/paraparameters.o\ - $(BUILD_DIR)/asm/plugPikiNakata/pcamcamera.o\ - $(BUILD_DIR)/asm/plugPikiNakata/pcamcameramanager.o\ - $(BUILD_DIR)/asm/plugPikiNakata/pcammotionevents.o\ - $(BUILD_DIR)/asm/plugPikiNakata/pcamcameraparameters.o\ - $(BUILD_DIR)/asm/plugPikiNakata/peve.o\ - $(BUILD_DIR)/asm/plugPikiNakata/peveconditions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/pevemotionevents.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tai.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taiattackactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taibasicactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taichappy.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taicollec.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taicollisionactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taieffectactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taiiwagen.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taijudgementactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taikinoko.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taimessageactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taimizinko.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taimotionactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taimoveactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tainapkid.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taiotimoti.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taipalm.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taireactionactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taiswallow.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taishell.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taitimeractions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/taiwaitactions.o\ - $(BUILD_DIR)/asm/plugPikiNakata/teki.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekianimationmanager.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekibteki.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekiconditions.o\ - $(BUILD_DIR)/src/plugPikiNakata/tekievent.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekiinteraction.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekimgr.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekinakata.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekinteki.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekiparameters.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekipersonality.o\ - $(BUILD_DIR)/asm/plugPikiNakata/tekistrategy.o\ - -$(NAKATA_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(NAKATA_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiNakata/plugPikiNakata.a: $(NAKATA_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(NAKATA_FILES) > build/NAKATA_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/NAKATA_ofiles diff --git a/src/plugPikiNishimura/Makefile b/src/plugPikiNishimura/Makefile deleted file mode 100644 index 7f71b373..00000000 --- a/src/plugPikiNishimura/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -NISHIMURA_FILES:=\ - $(BUILD_DIR)/asm/plugPikiNishimura/genBoss.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Boss.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/BossAnimMgr.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/BossCnd.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/BossMgr.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/BossShapeObj.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Spider.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SpiderAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SpiderLeg.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Snake.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SnakeAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SnakeBody.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Slime.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SlimeAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SlimeBody.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/SlimeCreature.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/King.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/KingAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/KingBody.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Kogane.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/KoganeAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Pom.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/PomAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/KingBack.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Nucleus.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/NucleusAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/CoreNucleus.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/CoreNucleusAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/Mizu.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/MizuAi.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/nscalculation.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/RumbleData.o\ - $(BUILD_DIR)/asm/plugPikiNishimura/HmRumbleMgr.o\ - $(BUILD_DIR)/src/plugPikiNishimura/HmRumbleSample.o\ - -$(NISHIMURA_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(NISHIMURA_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiNishimura/plugPikiNishimura.a: $(NISHIMURA_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(NISHIMURA_FILES) > build/NISHIMURA_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/NISHIMURA_ofiles diff --git a/src/plugPikiOgawa/Makefile b/src/plugPikiOgawa/Makefile deleted file mode 100644 index 22d769cc..00000000 --- a/src/plugPikiOgawa/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -OGAWA_FILES:=\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogTest.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogSub.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogTitle.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogPause.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogTutorial.o\ - $(BUILD_DIR)/src/plugPikiOgawa/ogTutorialData.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogMap.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogResult.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogRader.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogFileSelect.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogMessage.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogMemChk.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogDiary.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogMenu.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogFileChkSel.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogMakeDefault.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogTotalScore.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogSave.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogNitaku.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogFileCopy.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogFileDelete.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogGraph.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogStart.o\ - $(BUILD_DIR)/asm/plugPikiOgawa/ogCallBack.o\ - -$(OGAWA_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(OGAWA_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiOgawa/plugPikiOgawa.a: $(OGAWA_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(OGAWA_FILES) > build/OGAWA_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/OGAWA_ofiles diff --git a/src/plugPikiYamashita/Makefile b/src/plugPikiYamashita/Makefile deleted file mode 100644 index 60214f2e..00000000 --- a/src/plugPikiYamashita/Makefile +++ /dev/null @@ -1,92 +0,0 @@ -YAMASHITA_FILES:=\ - $(BUILD_DIR)/asm/plugPikiYamashita/gameCourseClear.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/gameStageClear.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/gameCredits.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/zenMath.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/effectMgr.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/particleGenerator.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/particleLoader.o\ - $(BUILD_DIR)/src/plugPikiYamashita/solidField.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/particleManager.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/particleMdlManager.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/bBoardColourAnim.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/simpleParticle.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/tekiyteki.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/tekiyamashita.o\ - $(BUILD_DIR)/src/plugPikiYamashita/TAIanimation.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAItank.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAImar.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAreaction.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAmove.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAmotion.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAjudge.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAattack.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DGrafContext.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DOrthoGraph.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DPerspGraph.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DPane.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DPicture.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DScreen.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DStream.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/PSUList.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/PUTRect.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DWindow.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DTextBox.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DPrint.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/P2DFont.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawGameInfo.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/zenGraphics.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawContainer.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCommon.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/zenController.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawHurryUp.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/texAnim.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawAccount.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawMenu.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIeffectAttack.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIbeatle.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/menuPanelMgr.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIkabekuiA.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIkabekuiB.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIkabekuiC.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAItamago.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIdororo.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIhibaA.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIAeffect.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAImiurin.o\ - $(BUILD_DIR)/src/plugPikiYamashita/ptclGenPack.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawProgre.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/spectrumCursorMgr.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawWorldMap.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCountDown.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawGameOver.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/yai.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/effectMgr2D.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawWMPause.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIusuba.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/TAIotama.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCMcourseSelect.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCMtitle.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCMscore.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCMbest.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawCMresult.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawMenuBase.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawHiScore.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/damageEffect.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/alphaWipe.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawUfoParts.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/zenSys.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawSaveMes.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawSaveFailure.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawFinalResult.o\ - $(BUILD_DIR)/asm/plugPikiYamashita/drawOptionSave.o\ - -$(YAMASHITA_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(YAMASHITA_FILES:.o=.d) - -$(BUILD_DIR)/src/plugPikiYamashita/plugPikiYamashita.a: $(YAMASHITA_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(YAMASHITA_FILES) > build/YAMASHITA_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/YAMASHITA_ofiles diff --git a/src/sysCommon/Makefile b/src/sysCommon/Makefile deleted file mode 100644 index 16f91bec..00000000 --- a/src/sysCommon/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -SYSCOMMON_FILES:=\ - $(BUILD_DIR)/asm/sysCommon/ayuStack.o\ - $(BUILD_DIR)/src/sysCommon/baseApp.o\ - $(BUILD_DIR)/src/sysCommon/stream.o\ - $(BUILD_DIR)/asm/sysCommon/streamBufferedInput.o\ - $(BUILD_DIR)/src/sysCommon/string.o\ - $(BUILD_DIR)/asm/sysCommon/graphics.o\ - $(BUILD_DIR)/asm/sysCommon/grLight.o\ - $(BUILD_DIR)/asm/sysCommon/shapeBase.o\ - $(BUILD_DIR)/asm/sysCommon/shpLightFlares.o\ - $(BUILD_DIR)/asm/sysCommon/shpObjColl.o\ - $(BUILD_DIR)/asm/sysCommon/shpRoutes.o\ - $(BUILD_DIR)/asm/sysCommon/sysMath.o\ - $(BUILD_DIR)/asm/sysCommon/matMath.o\ - $(BUILD_DIR)/asm/sysCommon/stdSystem.o\ - $(BUILD_DIR)/asm/sysCommon/node.o\ - $(BUILD_DIR)/src/sysCommon/timers.o\ - $(BUILD_DIR)/src/sysCommon/controller.o\ - $(BUILD_DIR)/src/sysCommon/cmdStream.o\ - $(BUILD_DIR)/asm/sysCommon/camera.o\ - $(BUILD_DIR)/src/sysCommon/atx.o\ - $(BUILD_DIR)/src/sysCommon/id32.o\ - -$(SYSCOMMON_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(SYSCOMMON_FILES:.o=.d) - -$(BUILD_DIR)/src/sysCommon/sysCommon.a: $(SYSCOMMON_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(SYSCOMMON_FILES) > build/SYSCOMMON_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/SYSCOMMON_ofiles diff --git a/src/sysCommon/stream.cpp b/src/sysCommon/stream.cpp index b84d46e2..ee1df79d 100644 --- a/src/sysCommon/stream.cpp +++ b/src/sysCommon/stream.cpp @@ -175,10 +175,10 @@ void Stream::writeString(String& s) * Address: ........ * Size: 0000C4 */ -// void Stream::print(char*, ...) -// { -// // UNUSED FUNCTION -// } +void Stream::print(char*, ...) +{ + // UNUSED FUNCTION +} /* * --INFO-- diff --git a/src/sysDolphin/Makefile b/src/sysDolphin/Makefile deleted file mode 100644 index 96bb9317..00000000 --- a/src/sysDolphin/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -SYSDOLPHIN_FILES:=\ - $(BUILD_DIR)/asm/sysDolphin/texture.o\ - $(BUILD_DIR)/asm/sysDolphin/system.o\ - $(BUILD_DIR)/asm/sysDolphin/sysNew.o\ - $(BUILD_DIR)/asm/sysDolphin/controllerMgr.o\ - $(BUILD_DIR)/asm/sysDolphin/dgxGraphics.o\ - $(BUILD_DIR)/src/sysDolphin/gameApp.o\ - -$(SYSDOLPHIN_FILES): MWCC_VERSION := 1.2.5n - -DEPENDS += $(SYSDOLPHIN_FILES:.o=.d) - -$(BUILD_DIR)/src/sysDolphin/sysDolphin.a: $(SYSDOLPHIN_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(SYSDOLPHIN_FILES) > build/SYSDOLPHIN_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/SYSDOLPHIN_ofiles diff --git a/src/vi/Makefile b/src/vi/Makefile deleted file mode 100644 index b7abf5b6..00000000 --- a/src/vi/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -VI_FILES:=\ - $(BUILD_DIR)/asm/vi/vi.o\ - -$(VI_FILES): CFLAGS += -common off -$(VI_FILES): MWCC_VERSION := 1.2.5 - -DEPENDS += $(VI_FILES:.o=.d) - -$(BUILD_DIR)/src/vi/vi.a: $(VI_FILES) - @echo Linking... $@ - $(QUIET) mkdir -p $(dir $@) - @echo $(VI_FILES) > build/VI_ofiles - $(QUIET) $(LD) -library $(LIBRARY_LDFLAGS) -o $@ -lcf ldscript.lcf @build/VI_ofiles diff --git a/tools/.gitignore b/tools/.gitignore deleted file mode 100644 index e5c234b0..00000000 --- a/tools/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Build artifacts -*.exe -elf2dol diff --git a/tools/mwcc_compiler/.gitkeep b/tools/__init__.py similarity index 100% rename from tools/mwcc_compiler/.gitkeep rename to tools/__init__.py diff --git a/tools/asmsplit.py b/tools/asmsplit.py deleted file mode 100644 index 132b8db5..00000000 --- a/tools/asmsplit.py +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env python -# -# Usage: ./asmsplit.py MAPFILE < ASMFILE - -import os -import re -import sys - -basedir = 'asm/' -macros = 'macros.inc' - -filenames = {} -lastfile = None - -with open(sys.argv[1]) as mapfile: - for mapline in mapfile: - match = re.match(' [0-9a-f]{8} [0-9a-f]{6} ([0-9a-f]{8}) [ 0-9][0-9] [^ ]+ \t(.+)', mapline) - if match and match.group(2) != lastfile: - lastfile = match.group(2) - addr = int(match.group(1), 16) - fname = basedir + '/'.join(map(lambda s: os.path.splitext(s)[0], match.group(2).strip().split(' '))) + '.s' - filenames[addr] = fname - -curfile = open(macros, 'w') -curaddr = 0 -section = '' -remainder = None - -while asmline := remainder or sys.stdin.readline(): - remainder = None - trim = asmline.strip() - if trim.startswith('.section'): - curaddr = int(trim[-23:-13], 0) - section = asmline - curfile.close() - else: - if trim != "": - if curfile.closed: - fname = filenames[curaddr] - if os.path.exists(fname): - curfile = open(fname, 'a') - curfile.write('\n') - else: - os.makedirs(os.path.dirname(fname), exist_ok = True) - curfile = open(fname, 'x') - curfile.write('.include "' + macros + '"\n\n') - - curfile.write(section) - - if trim.startswith('.skip'): - curaddr += int(trim[6:], 0) - elif trim.startswith('.incbin'): - f, a, s = asmline.split(', ') - a = int(a, 0) - s = int(s, 0) - if s < 0: raise ValueError() - elif s == 0: continue - - k = 1 - while (curaddr + k) not in filenames and k < s: k += 1 - curaddr += k - - if k < s: - asmline = f + ', 0x' + format(a, 'X') + ', 0x' + format(k, 'X') + '\n' - remainder = f + ', 0x' + format(a + k, 'X') + ', 0x' + format(s - k, 'X') + '\n' - - elif not trim.startswith('.global') and not trim.endswith(':'): - curaddr += 4 - - if not curfile.closed: curfile.write(asmline) - - if curaddr in filenames and filenames[curaddr] != curfile.name: - curfile.close() diff --git a/tools/calcprogress.py b/tools/calcprogress.py deleted file mode 100644 index f0fde3a5..00000000 --- a/tools/calcprogress.py +++ /dev/null @@ -1,343 +0,0 @@ -#!/usr/bin/env python3 - -################################################################################ -# Description # -################################################################################ -# calcprogress: Used to calculate the progress of the Pikmin decomp. # -# stores to CSV so that it can be used for a webpage display. # -# # -# Usage: No arguments needed # -################################################################################ - - -############################################### -# # -# Imports # -# # -############################################### - -import os -import sys -import struct -import re -import math -import csv -import json -import argparse -from datetime import datetime - -############################################### -# # -# Constants # -# # -############################################### - -MEM1_HI = 0x81200000 -MEM1_LO = 0x80004000 - -MW_WII_SYMBOL_REGEX = r"^\s*"\ - r"(?P\w{8})\s+"\ - r"(?P\w{6})\s+"\ - r"(?P\w{8})\s+"\ - r"(?P\w{8})\s+"\ - r"(\w{1,2})\s+"\ - r"(?P[0-9A-Za-z_<>$@.*]*)\s*"\ - r"(?P[\S ]*)" - -MW_GC_SYMBOL_REGEX = r"^\s*"\ - r"(?P\w{8})\s+"\ - r"(?P\w{6})\s+"\ - r"(?P\w{8})\s+"\ - r"(\w{1,2})\s+"\ - r"(?P[0-9A-Za-z_<>$@.*]*)\s*"\ - r"(?P[\S ]*)" - -REGEX_TO_USE = MW_GC_SYMBOL_REGEX - -TEXT_SECTIONS = ["init", "text"] -DATA_SECTIONS = [ - "rodata", "data", "bss", "sdata", "sbss", "sdata2", "sbss2", - "ctors", "_ctors", "dtors", "ctors$99", "_ctors$99", "ctors$00", "dtors$99", - "extab_", "extabindex_", "_extab", "_exidx", "extab", "extabindex" -] - -# DOL info -TEXT_SECTION_COUNT = 7 -DATA_SECTION_COUNT = 11 - -SECTION_TEXT = 0 -SECTION_DATA = 1 - -# Progress flavor -CODE_FRAC = 30 # total code "item" amount -DATA_FRAC = 100 # total data "item" amount -CODE_ITEM = "ship parts" # code flavor item -DATA_ITEM = "Pikmin" # data flavor item - -CSV_FILE_NAME = 'progress.csv' -CSV_FILE_PATH = f'./tools/{CSV_FILE_NAME}' - -############################################### -# # -# Entrypoint # -# # -############################################### - - -def update_csv( - code_count, - decomp_code_size, - code_completion_percentage, - data_count, - decomp_data_size, - data_completion_percentage, - sentence, -): - does_file_exist = False - are_there_changes = True - - try: - with open(CSV_FILE_PATH, 'r') as file: - reader = csv.reader(file) - does_file_exist = True - - latest_row = list(reader)[-1] - latest_code_size = int(latest_row[1]) # code_completion_in_bytes - latest_data_size = int(latest_row[4]) # data_completion_in_bytes - are_there_changes = not ( - decomp_code_size == latest_code_size and decomp_data_size == latest_data_size - ) - - print(f"Successfully read {CSV_FILE_PATH}!") - except: - print(f'Failed to read {CSV_FILE_PATH}!') - - if not are_there_changes: - print("No changes detected. Exiting...") - return - - col_one = f"code_count_in_{CODE_ITEM.lower()}" - col_two = "code_completion_in_bytes" - col_three = "code_completion_in_percentage" - col_four = f"data_count_in_{DATA_ITEM.lower()}" - col_five = "data_completion_in_bytes" - col_six = "data_completion_in_percentage" - col_seven = "sentence" - col_eight = "created_at" - headers = [ - col_one, - col_two, - col_three, - col_four, - col_five, - col_six, - col_seven, - col_eight, - ] - - try: - with open(CSV_FILE_PATH, 'a', newline='') as file: - writer = csv.DictWriter(file, fieldnames=headers) - # only add headers if this is the first iteration of the file - if not does_file_exist: - writer.writeheader() - writer.writerow({ - col_one: code_count, - col_two: decomp_code_size, - col_three: code_completion_percentage, - col_four: data_count, - col_five: decomp_data_size, - col_six: data_completion_percentage, - col_seven: sentence, - col_eight: datetime.now(), - }) - print(f"Successfully wrote to {CSV_FILE_PATH}!") - except: - print(f"Failed to write to {CSV_FILE_PATH}!") - -def countDigits(n): - if n > 0: - digits = int(math.log10(n))+1 - elif n == 0: - digits = 1 - else: - digits = int(math.log10(-n))+2 # +1 if you don't count the '-' - return digits - -if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Calculate progress.") - parser.add_argument("dol", help="Path to DOL") - parser.add_argument("map", help="Path to map") - parser.add_argument("-o", "--output", help="JSON output file") - args = parser.parse_args() - - # Sum up DOL section sizes - dol_handle = open(sys.argv[1], "rb") - - # Seek to virtual addresses - dol_handle.seek(0x48) - - # Read virtual addresses - text_starts = list() - for i in range(TEXT_SECTION_COUNT): - text_starts.append(int.from_bytes(dol_handle.read(4), byteorder='big')) - data_starts = list() - for i in range(DATA_SECTION_COUNT): - data_starts.append(int.from_bytes(dol_handle.read(4), byteorder='big')) - - # Read lengths - text_sizes = list() - for i in range(TEXT_SECTION_COUNT): - text_sizes.append(int.from_bytes(dol_handle.read(4), byteorder='big')) - data_sizes = list() - for i in range(DATA_SECTION_COUNT): - data_sizes.append(int.from_bytes(dol_handle.read(4), byteorder='big')) - - # BSS address + length - bss_start = int.from_bytes(dol_handle.read(4), byteorder='big') - bss_size = int.from_bytes(dol_handle.read(4), byteorder='big') - bss_end = bss_start + bss_size - - dol_code_size = 0 - dol_data_size = 0 - for i in range(DATA_SECTION_COUNT): - # Ignore sections inside BSS - if (data_starts[i] >= bss_start) and (data_starts[i] + data_sizes[i] <= bss_end): - continue - dol_data_size += data_sizes[i] - - dol_data_size += bss_size - - for i in text_sizes: - dol_code_size += i - - # Open map file - mapfile = open(sys.argv[2], "r") - symbols = mapfile.readlines() - - decomp_code_size = 0 - decomp_data_size = 0 - section_type = None - - # Find first section - first_section = 0 - while (symbols[first_section].startswith(".") == False and "section layout" not in symbols[first_section]): - first_section += 1 - assert(first_section < len(symbols)), "Map file contains no sections!!!" - - cur_object = None - cur_size = 0 - j = 0 - for i in range(first_section, len(symbols)): - # New section - if (symbols[i].startswith(".") == True or "section layout" in symbols[i]): - # Grab section name (i.e. ".init section layout" -> "init") - sectionName = re.search(r"\.*(?P\w+)\s", symbols[i]).group("Name") - # Determine type of section - section_type = SECTION_DATA if (sectionName in DATA_SECTIONS) else SECTION_TEXT - # Parse symbols until we hit the next section declaration - else: - if "UNUSED" in symbols[i]: - continue - if "entry of" in symbols[i]: - if j == i - 1: - if section_type == SECTION_TEXT: - decomp_code_size -= cur_size - else: - decomp_data_size -= cur_size - cur_size = 0 - #print(f"Line* {j}: {symbols[j]}") - #print(f"Line {i}: {symbols[i]}") - continue - assert(section_type != None), f"Symbol found outside of a section!!!\n{symbols[i]}" - match_obj = re.search(REGEX_TO_USE, symbols[i]) - # Should be a symbol in ASM (so we discard it) - if (match_obj == None): - #print(f"Line {i}: {symbols[i]}") - continue - #print(match_obj.group("Object")) - # Has the object file changed? - last_object = cur_object - cur_object = match_obj.group("Object").strip() - if last_object != cur_object or cur_object.endswith(" (asm)"): - continue - # Is the symbol a file-wide section? - symb = match_obj.group("Symbol") - if (symb.startswith("*fill*")) or (symb.startswith(".") and symb[1:] in TEXT_SECTIONS or symb[1:] in DATA_SECTIONS): - continue - # Subtract size of symbols ending in ".o", as they're assembly. - if match_obj.group("Object").endswith(".o") == True: - if j == i - 1: - if section_type == SECTION_TEXT: - decomp_code_size -= cur_size - else: - decomp_data_size -= cur_size - cur_size = 0 - #print(f"Line* {j}: {symbols[j]}") - #print(f"Line {i}: {symbols[i]}") - continue - # For sections that don't start with "." - if (symb in DATA_SECTIONS): - continue - # If not, we accumulate the file size - cur_size = int(match_obj.group("Size"), 16) - j = i - if (section_type == SECTION_TEXT): - decomp_code_size += cur_size - else: - decomp_data_size += cur_size - - # Calculate percentages - codeCompletionPcnt = (decomp_code_size / dol_code_size) # code completion percent - dataCompletionPcnt = (decomp_data_size / dol_data_size) # data completion percent - bytesPerCodeItem = dol_code_size / CODE_FRAC # bytes per code item - bytesPerDataItem = dol_data_size / DATA_FRAC # bytes per data item - - codeCount = math.floor(decomp_code_size / bytesPerCodeItem) - dataCount = math.floor(decomp_data_size / bytesPerDataItem) - - # Math for aligning percentage prints - codeDigitsD = (countDigits(decomp_code_size)) - dataDigitsD = (countDigits(decomp_data_size)) - codeDigits = (countDigits(dol_code_size)) - dataDigits = (countDigits(dol_data_size)) - maxDigitsD = (max(codeDigitsD, dataDigitsD)) - maxDigits = (max(codeDigits, dataDigits)) - codeStrA = "\tCode sections: " - codeStrB = f"{decomp_code_size} / " - codeStrC = f"{dol_code_size} bytes in src ({codeCompletionPcnt:%})" - dataStrA = "\tData sections: " - dataStrB = f"{decomp_data_size} / " - dataStrC = f"{dol_data_size} bytes in src ({dataCompletionPcnt:%})" - - # Print progress - print("Progress:") - print(f"{codeStrA + ' ' * (maxDigitsD-codeDigitsD) + codeStrB + ' ' * (maxDigits-codeDigits) + codeStrC}") - # print(f"\tCode sections: {decomp_code_size} / {dol_code_size} bytes in src ({codeCompletionPcnt:%})") - print(f"{dataStrA + ' ' * (maxDigitsD-dataDigitsD) + dataStrB + ' ' * (maxDigits-dataDigits) + dataStrC}") - # print(f"\tData sections: {decomp_data_size} / {dol_data_size} bytes in src ({dataCompletionPcnt:%})") - - sentence = f"\nYou have {codeCount} out of {CODE_FRAC} {CODE_ITEM} and {dataCount} out of {DATA_FRAC} {DATA_ITEM}." - print(sentence) - - if args.output: - data = { - "dol": { - "code": decomp_code_size, - "code/total": dol_code_size, - "data": decomp_data_size, - "data/total": dol_data_size, - } - } - with open(args.output, "w") as f: - json.dump(data, f) - - update_csv( - code_count=codeCount, - decomp_code_size=decomp_code_size, - code_completion_percentage=codeCompletionPcnt, - data_count=dataCount, - decomp_data_size=decomp_data_size, - data_completion_percentage=dataCompletionPcnt, - sentence=sentence - ) diff --git a/tools/decompctx.py b/tools/decompctx.py new file mode 100644 index 00000000..194701b9 --- /dev/null +++ b/tools/decompctx.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python3 + +### +# Generates a ctx.c file, usable for "Context" on https://decomp.me. +# +# Usage: +# python3 tools/decompctx.py src/file.cpp +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import argparse +import os +import re +from typing import List + +script_dir = os.path.dirname(os.path.realpath(__file__)) +root_dir = os.path.abspath(os.path.join(script_dir, "..")) +src_dir = os.path.join(root_dir, "src") +include_dirs = [ + os.path.join(root_dir, "include"), + os.path.join(root_dir, "include/stl"), +] + +include_pattern = re.compile(r'^#\s*include\s*[<"](.+?)[>"]$') +guard_pattern = re.compile(r"^#\s*ifndef\s+(.*)$") + +defines = set() + + +def import_h_file(in_file: str, r_path: str, deps: List[str]) -> str: + rel_path = os.path.join(root_dir, r_path, in_file) + if os.path.exists(rel_path): + return import_c_file(rel_path, deps) + for include_dir in include_dirs: + inc_path = os.path.join(include_dir, in_file) + if os.path.exists(inc_path): + return import_c_file(inc_path, deps) + else: + print("Failed to locate", in_file) + return "" + + +def import_c_file(in_file: str, deps: List[str]) -> str: + in_file = os.path.relpath(in_file, root_dir) + deps.append(in_file) + out_text = "" + + try: + with open(in_file, encoding="utf-8") as file: + out_text += process_file(in_file, list(file), deps) + except Exception: + with open(in_file) as file: + out_text += process_file(in_file, list(file), deps) + return out_text + + +def process_file(in_file: str, lines: List[str], deps: List[str]) -> str: + out_text = "" + for idx, line in enumerate(lines): + guard_match = guard_pattern.match(line.strip()) + if idx == 0: + if guard_match: + if guard_match[1] in defines: + break + defines.add(guard_match[1]) + print("Processing file", in_file) + include_match = include_pattern.match(line.strip()) + if include_match and not include_match[1].endswith(".s"): + out_text += f'/* "{in_file}" line {idx} "{include_match[1]}" */\n' + out_text += import_h_file(include_match[1], os.path.dirname(in_file), deps) + out_text += f'/* end "{include_match[1]}" */\n' + else: + out_text += line + + return out_text + + +def sanitize_path(path: str) -> str: + return path.replace("\\", "/").replace(" ", "\\ ") + + +def main(): + parser = argparse.ArgumentParser( + description="""Create a context file which can be used for decomp.me""" + ) + parser.add_argument( + "c_file", + help="""File from which to create context""", + ) + parser.add_argument( + "-o", + "--output", + help="""Output file""", + default="ctx.c", + ) + parser.add_argument( + "-d", + "--depfile", + help="""Dependency file""", + ) + args = parser.parse_args() + + deps = [] + output = import_c_file(args.c_file, deps) + + with open(os.path.join(root_dir, args.output), "w", encoding="utf-8") as f: + f.write(output) + + if args.depfile: + with open(os.path.join(root_dir, args.depfile), "w", encoding="utf-8") as f: + f.write(sanitize_path(args.output) + ":") + for dep in deps: + path = sanitize_path(dep) + f.write(f" \\\n\t{path}") + + +if __name__ == "__main__": + main() diff --git a/tools/doldisasm.py b/tools/doldisasm.py deleted file mode 100644 index ea081567..00000000 --- a/tools/doldisasm.py +++ /dev/null @@ -1,686 +0,0 @@ -#!/usr/bin/env python -# -# GameCube .dol file disassembler -# Usage: doldisasm.py DOL_FILE > assembly_file.s -# - -from capstone import * -from capstone.ppc import * -import re -import sys - -substitutions = ( - ('<', '$$0'), - ('>', '$$1'), - ('@', '$$2'), - ('\\', '$$3'), - (',', '$$4'), - ('-', '$$5') -) - -def format(symbol): - for sub in substitutions: - symbol = symbol.replace(sub[0], sub[1]) - - return symbol - -def decodeformat(symbol): - for sub in substitutions: - symbol = symbol.replace(sub[1], sub[0]) - - return symbol - -r13_addr = None -r2_addr = None - -labels = set() -labelNames = {} - -#argshift = 1 - -#if sys.argv[argshift] == '-m': -with open('pik1excised.map', 'r') as mapfile: - for line in mapfile: - match = re.match(' [0-9a-f]{8} [0-9a-f]{6} ([0-9a-f]{8}) [ 0-9][0-9] ([^ 0-9.][^ ]*)', line) - if match: - addr = int(match.group(1), 16) - name = format(match.group(2)) - labels.add(addr) - labelNames[addr] = name - -#argshift += 2 - -argshift = 1 #This is just to auto-find the mapfile. I prefer to drag and drop the dol onto this script. - -with open(sys.argv[argshift], 'rb') as dolfile: - filecontent = bytearray(dolfile.read()) - -def read_u8(offset): - return filecontent[offset] - -def read_u32(offset): - return (filecontent[offset + 0] << 24) | (filecontent[offset + 1] << 16) | (filecontent[offset + 2] << 8) | filecontent[offset + 3] - -def sign_extend_16(value): - if value > 0 and (value & 0x8000): - value -= 0x10000 - return value - -def sign_extend_12(value): - if value > 0 and (value & 0x800): - value -= 0x1000 - return value - -textOffsets = [] -textAddresses = [] -textSizes = [] - -dataOffsets = [] -dataAddresses = [] -dataSizes = [] - -for i in range(0, 7): - textOffsets.append(read_u32(0x00 + 4 * i)) - textAddresses.append(read_u32(0x48 + 4 * i)) - textSizes.append(read_u32(0x90 + 4 * i)) - -for i in range(0, 11): - dataOffsets.append(read_u32(0x1C + 4 * i)) - dataAddresses.append(read_u32(0x64 + 4 * i)) - dataSizes.append(read_u32(0xAC + 4 * i)) - -bssAddress = read_u32(0xD8) -bssSize = read_u32(0xDC) -entryPoint = read_u32(0xE0) - -origStdout = sys.stdout -with open('asm\disasm.s', 'w') as out: - sys.stdout = out - - print('/*') - print('Code sections:') - for i in range(0, 7): - if textOffsets[i] != 0 and textAddresses[i] != 0 and textSizes[i] != 0: - print('\t.text%i:\t0x%08X\t0x%08X\t0x%08X' % (i, textOffsets[i], textAddresses[i], textAddresses[i] + textSizes[i])) - print('Data sections:') - for i in range(0, 11): - if dataOffsets[i] != 0 and dataAddresses[i] != 0 and dataSizes[i] != 0: - print('\t.data%i:\t0x%08X\t0x%08X\t0x%08X' % (i, dataOffsets[i], dataAddresses[i], dataAddresses[i] + dataSizes[i])) - print('BSS section:') - print('\t.bss:\t0x%08X\t0x%08X\t0x%08X' % (0, bssAddress, bssAddress + bssSize)) - print('Entry Point: 0x%08X' % entryPoint) - print('*/') - - # Add entry point - labels.add(entryPoint) - labelNames[entryPoint] = '__start' - - def addr_to_label(addr): - if addr in labels: - if addr in labelNames: - return labelNames[addr] - else: - return "lbl_%08X" % addr - else: - return "0x%08X" % addr - - def add_label(addr, name): - labels.add(addr) - if name != None and not addr in labelNames: - labelNames[addr] = name - - def is_label_candidate(addr): - for i in range(0, 7): - if addr >= textAddresses[i] and addr < textAddresses[i] + textSizes[i] and (addr & 3) == 0: - return True - for i in range(0, 11): - if addr >= dataAddresses[i] and addr < dataAddresses[i] + dataSizes[i]: - return True - if addr >= bssAddress and addr < bssAddress + bssSize: - return True - return False - - # TODO: find all of them - loadStoreInsns = { - PPC_INS_LWZ, - PPC_INS_LMW, - PPC_INS_LHA, - PPC_INS_LHAU, - PPC_INS_LHZ, - PPC_INS_LHZU, - PPC_INS_LBZ, - PPC_INS_LBZU, - PPC_INS_LFD, - PPC_INS_LFDU, - PPC_INS_LFS, - PPC_INS_LFSU, - PPC_INS_STW, - PPC_INS_STWU, - PPC_INS_STMW, - PPC_INS_STH, - PPC_INS_STHU, - PPC_INS_STB, - PPC_INS_STBU, - PPC_INS_STFS, - PPC_INS_STFSU, - PPC_INS_STFD, - PPC_INS_STDU, - } - - # Returns true if the instruction is a load or store with the given register as a base - def is_load_store_reg_offset(insn, reg): - return insn.id in loadStoreInsns and (reg == None or insn.operands[1].mem.base == reg) - - cs = Cs(CS_ARCH_PPC, CS_MODE_32 | CS_MODE_BIG_ENDIAN) - cs.detail = True - cs.imm_unsigned = False - - blacklistedInsns = { - # Unsupported instructions - PPC_INS_VMSUMSHM, PPC_INS_VMHADDSHS, PPC_INS_XXSLDWI, PPC_INS_VSEL, - PPC_INS_XVSUBSP, PPC_INS_XXSEL, PPC_INS_XVMULSP, PPC_INS_XVDIVSP, - PPC_INS_VADDUHM, PPC_INS_XXPERMDI, PPC_INS_XVMADDASP, PPC_INS_XVMADDMSP, - PPC_INS_XVCMPGTSP, PPC_INS_XXMRGHD, PPC_INS_XSMSUBMDP, PPC_INS_XSTDIVDP, - PPC_INS_XVADDSP, PPC_INS_XVCMPEQSP, PPC_INS_XVMSUBASP, PPC_INS_XVCMPGESP, - PPC_INS_VMRGHB, PPC_INS_XXSPLTW, - - # Found during disassemble attempts - PPC_INS_XVCMPEQDP, PPC_INS_XVCMPEQDP, PPC_INS_XVMADDADP, PPC_INS_XVMADDMDP, - PPC_INS_VPKUHUM, PPC_INS_XSMADDMDP, PPC_INS_XSMADDADP, PPC_INS_XSCMPUDP, - PPC_INS_XSMSUBADP, PPC_INS_XSCMPODP, PPC_INS_XSCMPUDP, PPC_INS_XVMSUBMSP, - PPC_INS_XVMSUBMDP, PPC_INS_XVCMPGEDP, PPC_INS_XVMSUBADP, PPC_INS_XVCMPGTDP, - PPC_INS_XVMSUBADP, PPC_INS_XVNMSUBMSP, - - # Instructions that Capstone gets wrong - PPC_INS_MFESR, PPC_INS_MFDEAR, PPC_INS_MTESR, PPC_INS_MTDEAR, PPC_INS_MFICCR, PPC_INS_MFASR, - # Sus - PPC_INS_ATTN - } - - # Calls callback for every instruction in the specified code section - def disasm_iter(offset, address, size, callback): - if size == 0: - return - start = address - end = address + size - while address < end: - code = filecontent[offset + (address-start) : offset + size] - for insn in cs.disasm(code, address): - address = insn.address - if insn.id in blacklistedInsns: - callback(address, offset + address - start, None, insn.bytes) - else: - callback(address, offset + address - start, insn, insn.bytes) - address += 4 - if address < end: - o = offset + address - start - callback(address, offset + address - start, None, filecontent[o : o + 4]) - address += 4 - - lisInsns = {} # register : insn - - splitDataLoads = {} # address of load insn (both high and low) : data - - linkedInsns = {} # addr of lis insn : ori/addi insn - - # Returns true if the instruction writes to the specified register - def reg_modified(insn, reg): - if insn.op[0].type == PPC_OP_REG and insn.op[0].reg == reg: - return True - else: - return False - - # Computes the combined value from a lis, addi/ori instruction pairr - def combine_split_load_value(hiLoadInsn, loLoadInsn): - assert hiLoadInsn.id == PPC_INS_LIS - #assert loLoadInsn.id in {PPC_INS_ADDI, PPC_INS_ORI} - #assert loLoadInsn.operands[1].reg == hiLoadInsn.operands[0].reg - # hiLoadInsn must be "lis rX, hiPart" - value = hiLoadInsn.operands[1].imm << 16 - # loLoadInsn must be "addi rY, rX, loPart" - if loLoadInsn.id == PPC_INS_ORI: - value |= loLoadInsn.operands[2].imm - elif loLoadInsn.id == PPC_INS_ADDI: - value += sign_extend_16(loLoadInsn.operands[2].imm) - elif is_load_store_reg_offset(loLoadInsn, hiLoadInsn.operands[0].reg): - value += sign_extend_16(loLoadInsn.operands[1].mem.disp) - else: - assert False - return value - - def is_store_insn(insn): - # TODO: all store instructions - return insn.id in {PPC_INS_STW} - - # Get labels - def get_label_callback(address, offset, insn, bytes): - global r13_addr - global r2_addr - if insn == None: - return - #print("%s %s" % (insn.mnemonic, insn.op_str)) - # if branch instruction - if insn.id in {PPC_INS_B, PPC_INS_BL, PPC_INS_BC, PPC_INS_BDZ, PPC_INS_BDNZ}: - lisInsns.clear() - for op in insn.operands: - if op.type == PPC_OP_IMM: - #print("label 0x%08X" % op.imm) - labels.add(op.imm) - if insn.id == PPC_INS_BL: - #labelNames[op.imm] = 'func_%08X' % op.imm - add_label(op.imm, 'func_%08X' % op.imm) - - # Detect split load (high part) - # this is 'lis rX, hipart' - if insn.id == PPC_INS_LIS: - # Record instruction that loads into register with 'lis' - lisInsns[insn.operands[0].reg] = insn - # Detect split load (low part) - # this is either 'addi/ori rY, rX, lopart' or 'load/store rY, lopart(rX)' - elif (insn.id in {PPC_INS_ADDI, PPC_INS_ORI} and insn.operands[1].reg in lisInsns) \ - or (is_load_store_reg_offset(insn, None) and insn.operands[1].mem.base in lisInsns): - hiLoadInsn = lisInsns[insn.operands[1].reg] - # Compute combined value - value = combine_split_load_value(hiLoadInsn, insn) - if is_label_candidate(value): - labels.add(value) - # Record linked instruction - linkedInsns[hiLoadInsn.address] = insn - splitDataLoads[hiLoadInsn.address] = value - splitDataLoads[insn.address] = value - lisInsns.pop(insn.operands[1].reg, None) - # detect r2/r13 initialization - if insn.id == PPC_INS_ORI and insn.operands[0].reg == insn.operands[1].reg: - if r2_addr == None and insn.operands[0].reg == PPC_REG_R2: - r2_addr = value - #print('# DEBUG: set r2 to 0x%08X' % value) - elif r13_addr == None and insn.operands[0].reg == PPC_REG_R13: - r13_addr = value - #print('# DEBUG: set r13 to 0x%08X' % value) - # Remove record if register is overwritten - elif (not is_store_insn(insn)) and len(insn.operands) >= 1 and insn.operands[0].type == PPC_OP_REG: - lisInsns.pop(insn.operands[0].reg, None) - - # Handle r13 offset values - if r13_addr != None: - if insn.id == PPC_INS_ADDI and insn.operands[1].value.reg == PPC_REG_R13: # r13 offset - value = r13_addr + sign_extend_16(insn.operands[2].imm) - if is_label_candidate(value): - labels.add(value) - #labelNames[value] = 'r13_%08X' % value - if is_load_store_reg_offset(insn, PPC_REG_R13): - value = r13_addr + sign_extend_16(insn.operands[1].mem.disp) - if is_label_candidate(value): - labels.add(value) - #labelNames[value] = 'r13_%08X' % value - - # Handle r2 offset values - if r2_addr != None: - if insn.id == PPC_INS_ADDI and insn.operands[1].value.reg == PPC_REG_R2: # r13 offset - value = r2_addr + sign_extend_16(insn.operands[2].imm) - if is_label_candidate(value): - labels.add(value) - #labelNames[value] = 'r2_%08X' % value - if is_load_store_reg_offset(insn, PPC_REG_R2): - value = r2_addr + sign_extend_16(insn.operands[1].mem.disp) - if is_label_candidate(value): - labels.add(value) - #labelNames[value] = 'r2_%08X' % value - - for i in range(0, 7): - if textSizes[i] != 0: - disasm_iter(textOffsets[i], textAddresses[i], textSizes[i], get_label_callback) - - # Write macros - print('# PowerPC Register Constants') - for i in range(0, 32): - print(".set r%i, %i" % (i, i)) - for i in range(0, 32): - print(".set f%i, %i" % (i, i)) - for i in range(0, 8): - print(".set qr%i, %i" % (i, i)) - if r13_addr != None: - print('# Small Data Area (read/write) Base') - print(".set _SDA_BASE_, 0x%08X" % r13_addr) - if r2_addr != None: - print('# Small Data Area (read only) Base') - print(".set _SDA2_BASE_, 0x%08X" % r2_addr) - print('') - - # Converts the instruction to a string, fixing various issues with Capstone - def insn_to_text(insn, raw): - # Probably data, not a real instruction - if insn.id == PPC_INS_BDNZ and (insn.bytes[0] & 1): - return None - if insn.id in {PPC_INS_B, PPC_INS_BL, PPC_INS_BDZ, PPC_INS_BDNZ}: - return "%s %s" % (insn.mnemonic, addr_to_label(insn.operands[0].imm)) - elif insn.id == PPC_INS_BC: - branchPred = '+' if (insn.bytes[1] & 0x20) else '' - if insn.operands[0].type == PPC_OP_IMM: - return "%s%s %s" % (insn.mnemonic, branchPred, addr_to_label(insn.operands[0].imm)) - elif insn.operands[1].type == PPC_OP_IMM: - return "%s%s %s, %s" % (insn.mnemonic, branchPred, insn.reg_name(insn.operands[0].value.reg), addr_to_label(insn.operands[1].imm)) - # Handle split loads (high part) - if insn.address in splitDataLoads and insn.id == PPC_INS_LIS: - loLoadInsn = linkedInsns[insn.address] - #assert loLoadInsn.id in {PPC_INS_ADDI, PPC_INS_ORI} - value = splitDataLoads[insn.address] - suffix = 'h' if loLoadInsn.id == PPC_INS_ORI else 'ha' - return '%s %s, %s@%s' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), addr_to_label(value), suffix) - # Handle split loads (low part) - elif insn.address in splitDataLoads and insn.id in {PPC_INS_ADDI, PPC_INS_ORI}: - value = splitDataLoads[insn.address] - return '%s %s, %s, %s@l' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].reg), addr_to_label(value)) - elif insn.address in splitDataLoads and is_load_store_reg_offset(insn, None): - value = splitDataLoads[insn.address] - return '%s %s, %s@l(%s)' % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), addr_to_label(value), insn.reg_name(insn.operands[1].mem.base)) - - # r13 offset loads - if r13_addr != None: - if insn.id == PPC_INS_ADDI and insn.operands[1].reg == PPC_REG_R13: - value = r13_addr + sign_extend_16(insn.operands[2].imm) - if value in labels: - return "%s %s, %s, %s@sda21" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].reg), addr_to_label(value)) - if is_load_store_reg_offset(insn, PPC_REG_R13): - value = r13_addr + sign_extend_16(insn.operands[1].mem.disp) - if value in labels: - return "%s %s, %s@sda21(%s)" % (insn.mnemonic, insn.reg_name(insn.operands[0].value.reg), addr_to_label(value), insn.reg_name(insn.operands[1].mem.base)) - - # r2 offset loads - if r2_addr != None: - if insn.id == PPC_INS_ADDI and insn.operands[1].reg == PPC_REG_R2: - value = r2_addr + sign_extend_16(insn.operands[2].imm) - if value in labels: - return "%s %s, %s, %s@sda21" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].reg), addr_to_label(value)) - if is_load_store_reg_offset(insn, PPC_REG_R2): - value = r2_addr + sign_extend_16(insn.operands[1].mem.disp) - if value in labels: - return "%s %s, %s@sda21(%s)" % (insn.mnemonic, insn.reg_name(insn.operands[0].value.reg), addr_to_label(value), insn.reg_name(insn.operands[1].mem.base)) - - # Sign-extend immediate values because Capstone is an idiot and doesn't do that automatically - if insn.id in {PPC_INS_ADDI, PPC_INS_ADDIC, PPC_INS_SUBFIC, PPC_INS_MULLI} and (insn.operands[2].imm & 0x8000): - return "%s %s, %s, %i" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.reg_name(insn.operands[1].value.reg), insn.operands[2].imm - 0x10000) - elif (insn.id == PPC_INS_LI or insn.id == PPC_INS_CMPWI) and (insn.operands[1].imm & 0x8000): - return "%s %s, %i" % (insn.mnemonic, insn.reg_name(insn.operands[0].reg), insn.operands[1].imm - 0x10000) - # cntlz -> cntlzw - elif insn.id == PPC_INS_CNTLZW: - return "cntlzw %s" % insn.op_str - elif insn.id == PPC_INS_MTICCR: - return 'mtictc %s' % insn.op_str - # Dunno why GNU assembler doesn't accept this - elif insn.id == PPC_INS_LMW and insn.operands[0].reg == PPC_REG_R0: - return '.4byte 0x%08X /* illegal %s %s */' % (raw, insn.mnemonic, insn.op_str) - return '%s %s' % (insn.mnemonic, insn.op_str) - - def disasm_ps(inst): - RA = ((inst >> 16) & 0x1f) - RB = ((inst >> 11) & 0x1f) - FA = ((inst >> 16) & 0x1f) - FB = ((inst >> 11) & 0x1f) - FC = ((inst >> 6) & 0x1f) - FD = ((inst >> 21) & 0x1f) - FS = ((inst >> 21) & 0x1f) - IX = ((inst >> 7) & 0x7) - WX = ((inst >> 10) & 0x1) - - opcode = (inst >> 1) & 0x1F - if opcode == 6: # doesn't seem to be used - mnemonic = 'psq_lux' if inst & 0x40 else 'psq_lx' - return '%s f%i, r%i, r%i, %i, qr%i' % (mnemonic, FD, RA, RB, WX, IX) - if opcode == 7: - mnemonic = 'psq_stux' if inst & 0x40 else 'psq_stx' - return '%s f%i, r%i, r%i, %i, qr%i' % (mnemonic, FS, RA, RB, WX, IX) - if opcode == 18: - return 'ps_div f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 20: - return 'ps_sub f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 21: - return 'ps_add f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 23: - return 'ps_sel f%i, f%i, f%i' % (FD, FA, FC) - if opcode == 24: - return 'ps_res f%i, f%i' % (FD, FB) - if opcode == 25: - return 'ps_mul f%i, f%i, f%i' % (FD, FA, FC) - if opcode == 26: - return 'ps_rsqrte f%i, f%i' % (FD, FB) - if opcode == 28: - return 'ps_msub f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 29: - return 'ps_madd f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 30: - return 'ps_nmsub f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 31: - return 'ps_nmadd f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 10: - return 'ps_sum0 f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 11: - return 'ps_sum1 f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 12: - return 'ps_muls0 f%i, f%i, f%i' % (FD, FA, FC) - if opcode == 13: - return 'ps_muls1 f%i, f%i, f%i' % (FD, FA, FC) - if opcode == 14: - return 'ps_madds0 f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - if opcode == 15: - return 'ps_madds1 f%i, f%i, f%i, f%i' % (FD, FA, FC, FB) - - opcode = (inst >> 1) & 0x3FF - if opcode == 40: - return 'ps_neg f%i, f%i' % (FD, FB) - if opcode == 72: - return 'ps_mr f%i, f%i' % (FD, FB) - if opcode == 136: - return 'ps_nabs f%i, f%i' % (FD, FB) - if opcode == 264: - return 'ps_abs f%i, f%i' % (FD, FB) - if opcode in {0, 32, 64, 96}: - mnemonics = ['ps_cmpu0', 'ps_cmpo0', 'ps_cmpu1', 'ps_cmpo1'] - mnemonic = mnemonics[(inst >> 6) & 3] - i = (inst & 0x03800000) >> 23 - return '%s cr%i, f%i, f%i' % (mnemonic, i, FA, FB) - if opcode == 528: - return 'ps_merge00 f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 560: - return 'ps_merge01 f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 592: - return 'ps_merge10 f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 624: - return 'ps_merge11 f%i, f%i, f%i' % (FD, FA, FB) - if opcode == 1014: - if not (inst & 0x03e00000): - if (inst & 1) == 0: - return 'dcbz_l r%i, r%i' % ((inst & 0x001f0000) >> 16, (inst & 0x0000f800) >> 11) - return None - - def disasm_ps_mem(inst, idx): - RA = ((inst >> 16) & 0x1f) - RS = ((inst >> 21) & 0x1f) - I = ((inst >> 12) & 0x7) - W = ((inst >> 15) & 0x1) - disp = sign_extend_12(inst & 0xFFF) - if idx == 56: - mnemonic = 'psq_l' - if idx == 57: - mnemonic = 'psq_lu' - if idx == 60: - mnemonic = 'psq_st' - if idx == 61: - mnemonic = 'psq_stu' - return '%s f%i, %i(r%i), %i, qr%i' % (mnemonic, RS, disp, RA, W, I) - - def disasm_fcmp(inst): - crd = (inst & 0x03800000) >> 23 - a = (inst & 0x001f0000) >> 16 - b = (inst & 0x0000f800) >> 11 - return 'fcmpo cr%i, f%i, f%i' % (crd, a, b) - - def disasm_mspr(inst, mode): - if (inst & 1): - return None - d = (inst & 0x03e00000) >> 21 - a = (inst & 0x001f0000) >> 16 - b = (inst & 0x0000f800) >>11 - spr = (b << 5) + a - if mode: - return 'mtspr 0x%X, r%i' % (spr, d) - else: - return 'mfspr r%i, 0x%X' % (d, spr) - - def disasm_mcrxr(inst): - if (inst & 0x007ff801): - return None - crd = (inst & 0x03800000) >> 23 - return 'mcrxr cr%i' % crd - - # Disassemble code - def disassemble_callback(address, offset, insn, bytes): - # Output label (if any) - if address in labels: - if address in labelNames: - print("\n.global %s" % addr_to_label(address)) - print("%s:" % addr_to_label(address)) - prefixComment = '/* %08X %08X %02X %02X %02X %02X */' % (address, offset, bytes[0], bytes[1], bytes[2], bytes[3]) - asm = None - raw = read_u32(offset) - if insn != None: - asm = insn_to_text(insn, raw) - else: # Capstone couldn't disassemble it - idx = (raw & 0xfc000000) >> 26 - idx2 = (raw & 0x000007fe) >> 1 - # mtspr - if idx == 31 and idx2 == 467: - asm = disasm_mspr(raw, 1) - # mfspr - elif idx == 31 and idx2 == 339: - asm = disasm_mspr(raw, 0) - # mcrxr - elif idx == 31 and idx2 == 512: - asm = disasm_mcrxr(raw) - # fcmpo - elif idx == 63 and idx2 == 32: - asm = disasm_fcmp(raw) - # Paired singles - elif idx == 4: - asm = disasm_ps(raw) - elif idx in {56, 57, 60, 61}: - asm = disasm_ps_mem(raw, idx) - if asm == None: - asm = '.4byte 0x%08X /* unknown instruction */' % raw - print('%s\t%s' % (prefixComment, asm)) - - for i in range(0, 7): - if textSizes[i] != 0: - print("\n.section .text%i, \"ax\" # 0x%08X - 0x%08X" % (i, textAddresses[i], textAddresses[i] + textSizes[i])) - disasm_iter(textOffsets[i], textAddresses[i], textSizes[i], disassemble_callback) - - # Disassemble data - for i in range(0, 11): - offset = dataOffsets[i] - address = dataAddresses[i] - size = dataSizes[i] - start = address - end = start + size - if size == 0: - continue - print("\n.section .data%i, \"wa\" # 0x%08X - 0x%08X" % (i, start, end)) - # Get a sorted list of labels in this data section - sectionLabels = [] - for l in labels: - if l >= start and l < end: - sectionLabels.append(l) - sectionLabels.sort() - # Split incbins by labels - j = 0 - while address < end: - if j < len(sectionLabels): - incbinSize = sectionLabels[j] - address - if incbinSize != 0: - print("\t.incbin \"baserom.dol\", 0x%X, 0x%X" % (offset, incbinSize)) - l = addr_to_label(sectionLabels[j]) - print(".global %s\n%s:" % (l, l)) - j += 1 - else: - incbinSize = end - address - if incbinSize != 0: - print("\t.incbin \"baserom.dol\", 0x%X, 0x%X" % (offset, incbinSize)) - offset += incbinSize - address += incbinSize - # Remove labels to avoid duplicates in case of overlap with other sections - for l in sectionLabels: - labels.remove(l) - - # Disassemble bss - start = bssAddress - end = bssAddress + bssSize - address = bssAddress - print("\n.section .bss, \"wa\" # 0x%08X - 0x%08X" % (start, end)) - # Get a sorted list of labels in this bss section - sectionLabels = [] - for l in labels: - if l >= start and l < end: - sectionLabels.append(l) - sectionLabels.sort() - # Split incbins by labels - j = 0 - while address < end: - if j < len(sectionLabels): - gapSize = sectionLabels[j] - address - if gapSize != 0: - print("\t.skip 0x%X" % gapSize) - l = addr_to_label(sectionLabels[j]) - print(".global %s\n%s:" % (l, l)) - j += 1 - else: - gapSize = end - address - if gapSize != 0: - print("\t.skip 0x%X" % gapSize) - address += gapSize - -# Output linker script -origStdout = sys.stdout -with open('ldscript.ld', 'w') as out: - sys.stdout = out - print("ENTRY(__start)") - if r13_addr != None: - print("_SDA_BASE_ = 0x%08X;" % r13_addr) - if r2_addr != None: - print("_SDA2_BASE_ = 0x%08X;" % r2_addr) - print("PHDRS\n{") - for i in range(0, 7): - if textSizes[i] != 0: - print(" text%i PT_LOAD;" % i) - for i in range(0, 11): - if dataSizes[i] != 0: - print(" data%i PT_LOAD;" % i) - print(" bss PT_LOAD;") - print("}") - print("SECTIONS\n{") - for i in range(0, 7): - if textSizes[i] != 0: - print(" .text%i 0x%08X : { *(.text%i) } : text%i" % (i, textAddresses[i], i, i)) - for i in range(0, 11): - if dataSizes[i] != 0: - print(" .data%i 0x%08X : { *(.data%i) } : data%i" % (i, dataAddresses[i], i, i)) - print(" .bss 0x%08X (NOLOAD) : { *(.bss) } : bss" % bssAddress) - print("}") - sys.stdout = origStdout - -# Output linker script (Metrowerks) -origStdout = sys.stdout -with open('ldscript.lcf', 'w') as out: - sys.stdout = out - if r13_addr != None: - print("_SDA_BASE_ = 0x%08X;" % r13_addr) - if r2_addr != None: - print("_SDA2_BASE_ = 0x%08X;" % r2_addr) - print("SECTIONS\n{") - for i in range(0, 7): - if textSizes[i] != 0: - print(" .text%i BIND(0x%08X) : { *(.text%i) }" % (i, textAddresses[i], i)) - for i in range(0, 11): - if dataSizes[i] != 0: - print(" .data%i BIND(0x%08X) : { *(.data%i) }" % (i, dataAddresses[i], i)) - print(" .bss BIND(0x%08X) : { *(.bss) }" % bssAddress) - print("}") - sys.stdout = origStdout diff --git a/tools/download_dtk.py b/tools/download_dtk.py deleted file mode 100644 index ae97da20..00000000 --- a/tools/download_dtk.py +++ /dev/null @@ -1,50 +0,0 @@ -import argparse -import urllib.request -import sys -import os -import stat -import platform -from pathlib import Path - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -REPO = "https://github.com/encounter/decomp-toolkit" - - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument("tag_file", help="file containing GitHub tag") - parser.add_argument("output", type=Path, help="output file path") - args = parser.parse_args() - - with open(args.tag_file, "r") as f: - tag = f.readline().rstrip() - - uname = platform.uname() - suffix = "" - system = uname.system.lower() - if system == "darwin": - system = "macos" - elif system == "windows": - suffix = ".exe" - arch = uname.machine.lower() - if arch == "amd64": - arch = "x86_64" - - url = f"{REPO}/releases/download/{tag}/dtk-{system}-{arch}{suffix}" - output = args.output - # print(f"Downloading {url} to {output}") - urllib.request.urlretrieve(url, output) - - st = os.stat(output) - os.chmod(output, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_mwcc.py b/tools/download_mwcc.py deleted file mode 100644 index 259f0186..00000000 --- a/tools/download_mwcc.py +++ /dev/null @@ -1,45 +0,0 @@ -import urllib.request -import sys -import os -import stat -import tempfile -import shutil -import zipfile - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -HARDLINK = "https://files.decomp.dev/compilers_20230715.zip" - - -def main() -> None: - output = f"{os.path.dirname(__file__)}/mwcc_compiler" - - with tempfile.TemporaryDirectory() as tmp_dir: - tmp_zip = f"{tmp_dir}/mwcc_compiler.zip" - tmp_gc = f"{tmp_dir}/GC" - - request = urllib.request.Request( - url=HARDLINK, - headers={"User-Agent": "Mozilla/5.0"}, - ) - - with urllib.request.urlopen(request) as src, open(tmp_zip, "wb") as dst: - shutil.copyfileobj(src, dst) - - with zipfile.ZipFile(tmp_zip) as zip_file: - zip_file.extractall(tmp_dir) - - shutil.move(tmp_gc, output) - - st = os.stat(output) - os.chmod(output, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_ppc.py b/tools/download_ppc.py deleted file mode 100644 index e8b3c777..00000000 --- a/tools/download_ppc.py +++ /dev/null @@ -1,49 +0,0 @@ -import urllib.request -import sys -import os -import stat -import platform -import tempfile -import zipfile - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -REPO = "https://github.com/encounter/gc-wii-binutils" - - -def main() -> None: - output = f"{os.path.dirname(__file__)}/powerpc" - - uname = platform.uname() - system = uname.system.lower() - arch = uname.machine.lower() - if system == "darwin": - system = "macos" - arch = "universal" - if arch == "amd64": - arch = "x86_64" - if arch == "x86_32": - arch = "i686" - - with tempfile.TemporaryDirectory() as tmp_dir: - tmp_zip = f"{tmp_dir}/powerpc.zip" - url = f"{REPO}/releases/latest/download/{system}-{arch}.zip" - - urllib.request.urlretrieve(url, tmp_zip) - with zipfile.ZipFile(tmp_zip) as zip_file: - zip_file.extractall(output) - - for filename in os.listdir(output): - f = os.path.join(output, filename) - st = os.stat(f) - os.chmod(f, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_tool.py b/tools/download_tool.py new file mode 100644 index 00000000..69ef96a7 --- /dev/null +++ b/tools/download_tool.py @@ -0,0 +1,124 @@ +#!/usr/bin/env python3 + +### +# Downloads various tools from GitHub releases. +# +# Usage: +# python3 tools/download_tool.py wibo build/tools/wibo --tag 1.0.0 +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import argparse +import io +import os +import platform +import shutil +import stat +import urllib.request +import zipfile +from typing import Callable, Dict +from pathlib import Path + + +def binutils_url(tag): + uname = platform.uname() + system = uname.system.lower() + arch = uname.machine.lower() + if system == "darwin": + system = "macos" + arch = "universal" + elif arch == "amd64": + arch = "x86_64" + + repo = "https://github.com/encounter/gc-wii-binutils" + return f"{repo}/releases/download/{tag}/{system}-{arch}.zip" + + +def compilers_url(tag: str) -> str: + return f"https://files.decomp.dev/compilers_{tag}.zip" + + +def dtk_url(tag: str) -> str: + uname = platform.uname() + suffix = "" + system = uname.system.lower() + if system == "darwin": + system = "macos" + elif system == "windows": + suffix = ".exe" + arch = uname.machine.lower() + if arch == "amd64": + arch = "x86_64" + + repo = "https://github.com/encounter/decomp-toolkit" + return f"{repo}/releases/download/{tag}/dtk-{system}-{arch}{suffix}" + +def objdiff_cli_url(tag: str) -> str: + uname = platform.uname() + suffix = "" + system = uname.system.lower() + if system == "darwin": + system = "macos" + elif system == "windows": + suffix = ".exe" + arch = uname.machine.lower() + if arch == "amd64": + arch = "x86_64" + + repo = "https://github.com/encounter/objdiff" + return f"{repo}/releases/download/{tag}/objdiff-cli-{system}-{arch}{suffix}" + + +def sjiswrap_url(tag: str) -> str: + repo = "https://github.com/encounter/sjiswrap" + return f"{repo}/releases/download/{tag}/sjiswrap-windows-x86.exe" + + +def wibo_url(tag: str) -> str: + repo = "https://github.com/decompals/wibo" + return f"{repo}/releases/download/{tag}/wibo" + + +TOOLS: Dict[str, Callable[[str], str]] = { + "binutils": binutils_url, + "compilers": compilers_url, + "dtk": dtk_url, + "objdiff-cli": objdiff_cli_url, + "sjiswrap": sjiswrap_url, + "wibo": wibo_url, +} + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("tool", help="Tool name") + parser.add_argument("output", type=Path, help="output file path") + parser.add_argument("--tag", help="GitHub tag", required=True) + args = parser.parse_args() + + url = TOOLS[args.tool](args.tag) + output = Path(args.output) + + print(f"Downloading {url} to {output}") + req = urllib.request.Request(url, headers={"User-Agent": "Mozilla/5.0"}) + with urllib.request.urlopen(req) as response: + if url.endswith(".zip"): + data = io.BytesIO(response.read()) + with zipfile.ZipFile(data) as f: + f.extractall(output) + # Make all files executable + for root, _, files in os.walk(output): + for name in files: + os.chmod(os.path.join(root, name), 0o755) + output.touch(mode=0o755) # Update dir modtime + else: + with open(output, "wb") as f: + shutil.copyfileobj(response, f) + st = os.stat(output) + os.chmod(output, st.st_mode | stat.S_IEXEC) + + +if __name__ == "__main__": + main() diff --git a/tools/dtk_version b/tools/dtk_version deleted file mode 100644 index 576b7771..00000000 --- a/tools/dtk_version +++ /dev/null @@ -1 +0,0 @@ -v0.2.3 diff --git a/tools/ninja_syntax.py b/tools/ninja_syntax.py index ca73b5ba..7306ee1d 100644 --- a/tools/ninja_syntax.py +++ b/tools/ninja_syntax.py @@ -1,5 +1,3 @@ -#!/usr/bin/python - # Copyright 2011 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -23,82 +21,129 @@ use Python. import re import textwrap +import os +from io import StringIO +from pathlib import Path +from typing import Dict, List, Match, Optional, Tuple, Union + +NinjaPath = Union[str, Path] +NinjaPaths = Union[ + List[str], + List[Path], + List[NinjaPath], + List[Optional[str]], + List[Optional[Path]], + List[Optional[NinjaPath]], +] +NinjaPathOrPaths = Union[NinjaPath, NinjaPaths] + + +def escape_path(word: str) -> str: + return word.replace("$ ", "$$ ").replace(" ", "$ ").replace(":", "$:") -def escape_path(word): - return word.replace('$ ', '$$ ').replace(' ', '$ ').replace(':', '$:') class Writer(object): - def __init__(self, output, width=78): + def __init__(self, output: StringIO, width: int = 78) -> None: self.output = output self.width = width - def newline(self): - self.output.write('\n') + def newline(self) -> None: + self.output.write("\n") - def comment(self, text): - for line in textwrap.wrap(text, self.width - 2, break_long_words=False, - break_on_hyphens=False): - self.output.write('# ' + line + '\n') + def comment(self, text: str) -> None: + for line in textwrap.wrap( + text, self.width - 2, break_long_words=False, break_on_hyphens=False + ): + self.output.write("# " + line + "\n") - def variable(self, key, value, indent=0): - if value is None: - return - if isinstance(value, list): - value = ' '.join(filter(None, value)) # Filter out empty strings. - self._line('%s = %s' % (key, value), indent) + def variable( + self, + key: str, + value: Optional[NinjaPathOrPaths], + indent: int = 0, + ) -> None: + value = " ".join(serialize_paths(value)) + self._line("%s = %s" % (key, value), indent) - def pool(self, name, depth): - self._line('pool %s' % name) - self.variable('depth', depth, indent=1) + def pool(self, name: str, depth: int) -> None: + self._line("pool %s" % name) + self.variable("depth", str(depth), indent=1) - def rule(self, name, command, description=None, depfile=None, - generator=False, pool=None, restat=False, rspfile=None, - rspfile_content=None, deps=None): - self._line('rule %s' % name) - self.variable('command', command, indent=1) + def rule( + self, + name: str, + command: str, + description: Optional[str] = None, + depfile: Optional[NinjaPath] = None, + generator: bool = False, + pool: Optional[str] = None, + restat: bool = False, + rspfile: Optional[NinjaPath] = None, + rspfile_content: Optional[NinjaPath] = None, + deps: Optional[NinjaPathOrPaths] = None, + ) -> None: + self._line("rule %s" % name) + self.variable("command", command, indent=1) if description: - self.variable('description', description, indent=1) + self.variable("description", description, indent=1) if depfile: - self.variable('depfile', depfile, indent=1) + self.variable("depfile", depfile, indent=1) if generator: - self.variable('generator', '1', indent=1) + self.variable("generator", "1", indent=1) if pool: - self.variable('pool', pool, indent=1) + self.variable("pool", pool, indent=1) if restat: - self.variable('restat', '1', indent=1) + self.variable("restat", "1", indent=1) if rspfile: - self.variable('rspfile', rspfile, indent=1) + self.variable("rspfile", rspfile, indent=1) if rspfile_content: - self.variable('rspfile_content', rspfile_content, indent=1) + self.variable("rspfile_content", rspfile_content, indent=1) if deps: - self.variable('deps', deps, indent=1) + self.variable("deps", deps, indent=1) - def build(self, outputs, rule, inputs=None, implicit=None, order_only=None, - variables=None, implicit_outputs=None, pool=None, dyndep=None): - outputs = as_list(outputs) + def build( + self, + outputs: NinjaPathOrPaths, + rule: str, + inputs: Optional[NinjaPathOrPaths] = None, + implicit: Optional[NinjaPathOrPaths] = None, + order_only: Optional[NinjaPathOrPaths] = None, + variables: Optional[ + Union[ + List[Tuple[str, Optional[NinjaPathOrPaths]]], + Dict[str, Optional[NinjaPathOrPaths]], + ] + ] = None, + implicit_outputs: Optional[NinjaPathOrPaths] = None, + pool: Optional[str] = None, + dyndep: Optional[NinjaPath] = None, + ) -> List[str]: + outputs = serialize_paths(outputs) out_outputs = [escape_path(x) for x in outputs] - all_inputs = [escape_path(x) for x in as_list(inputs)] + all_inputs = [escape_path(x) for x in serialize_paths(inputs)] if implicit: - implicit = [escape_path(x) for x in as_list(implicit)] - all_inputs.append('|') - all_inputs.extend(implicit) + implicit = [escape_path(x) for x in serialize_paths(implicit)] + all_inputs.append("|") + all_inputs.extend(map(str, implicit)) if order_only: - order_only = [escape_path(x) for x in as_list(order_only)] - all_inputs.append('||') - all_inputs.extend(order_only) + order_only = [escape_path(x) for x in serialize_paths(order_only)] + all_inputs.append("||") + all_inputs.extend(map(str, order_only)) if implicit_outputs: - implicit_outputs = [escape_path(x) - for x in as_list(implicit_outputs)] - out_outputs.append('|') - out_outputs.extend(implicit_outputs) + implicit_outputs = [ + escape_path(x) for x in serialize_paths(implicit_outputs) + ] + out_outputs.append("|") + out_outputs.extend(map(str, implicit_outputs)) - self._line('build %s: %s' % (' '.join(out_outputs), - ' '.join([rule] + all_inputs))) + self._line( + "build %s: %s" % (" ".join(out_outputs), " ".join([rule] + all_inputs)) + ) if pool is not None: - self._line(' pool = %s' % pool) + self._line(" pool = %s" % pool) if dyndep is not None: - self._line(' dyndep = %s' % dyndep) + self._line(" dyndep = %s" % serialize_path(dyndep)) if variables: if isinstance(variables, dict): @@ -111,89 +156,99 @@ class Writer(object): return outputs - def include(self, path): - self._line('include %s' % path) + def include(self, path: str) -> None: + self._line("include %s" % path) - def subninja(self, path): - self._line('subninja %s' % path) + def subninja(self, path: str) -> None: + self._line("subninja %s" % path) - def default(self, paths): - self._line('default %s' % ' '.join(as_list(paths))) + def default(self, paths: NinjaPathOrPaths) -> None: + self._line("default %s" % " ".join(serialize_paths(paths))) - def _count_dollars_before_index(self, s, i): + def _count_dollars_before_index(self, s: str, i: int) -> int: """Returns the number of '$' characters right in front of s[i].""" dollar_count = 0 dollar_index = i - 1 - while dollar_index > 0 and s[dollar_index] == '$': + while dollar_index > 0 and s[dollar_index] == "$": dollar_count += 1 dollar_index -= 1 return dollar_count - def _line(self, text, indent=0): + def _line(self, text: str, indent: int = 0) -> None: """Write 'text' word-wrapped at self.width characters.""" - leading_space = ' ' * indent + leading_space = " " * indent while len(leading_space) + len(text) > self.width: # The text is too wide; wrap if possible. # Find the rightmost space that would obey our width constraint and # that's not an escaped space. - available_space = self.width - len(leading_space) - len(' $') + available_space = self.width - len(leading_space) - len(" $") space = available_space while True: - space = text.rfind(' ', 0, space) - if (space < 0 or - self._count_dollars_before_index(text, space) % 2 == 0): + space = text.rfind(" ", 0, space) + if space < 0 or self._count_dollars_before_index(text, space) % 2 == 0: break if space < 0: # No such space; just use the first unescaped space we can find. space = available_space - 1 while True: - space = text.find(' ', space + 1) - if (space < 0 or - self._count_dollars_before_index(text, space) % 2 == 0): + space = text.find(" ", space + 1) + if ( + space < 0 + or self._count_dollars_before_index(text, space) % 2 == 0 + ): break if space < 0: # Give up on breaking. break - self.output.write(leading_space + text[0:space] + ' $\n') - text = text[space+1:] + self.output.write(leading_space + text[0:space] + " $\n") + text = text[space + 1 :] # Subsequent lines are continuations, so indent them. - leading_space = ' ' * (indent+2) + leading_space = " " * (indent + 2) - self.output.write(leading_space + text + '\n') + self.output.write(leading_space + text + "\n") - def close(self): + def close(self) -> None: self.output.close() -def as_list(input): - if input is None: - return [] +def serialize_path(input: Optional[NinjaPath]) -> str: + if not input: + return "" + if isinstance(input, Path): + return str(input).replace("/", os.sep) + else: + return str(input) + + +def serialize_paths(input: Optional[NinjaPathOrPaths]) -> List[str]: if isinstance(input, list): - return input - return [input] + return [serialize_path(path) for path in input if path] + return [serialize_path(input)] if input else [] -def escape(string): +def escape(string: str) -> str: """Escape a string such that it can be embedded into a Ninja file without further interpretation.""" - assert '\n' not in string, 'Ninja syntax does not allow newlines' + assert "\n" not in string, "Ninja syntax does not allow newlines" # We only have one special metacharacter: '$'. - return string.replace('$', '$$') + return string.replace("$", "$$") -def expand(string, vars, local_vars={}): +def expand(string: str, vars: Dict[str, str], local_vars: Dict[str, str] = {}) -> str: """Expand a string containing $vars as Ninja would. Note: doesn't handle the full Ninja variable syntax, but it's enough to make configure.py's use of it work. """ - def exp(m): + + def exp(m: Match[str]) -> str: var = m.group(1) - if var == '$': - return '$' - return local_vars.get(var, vars.get(var, '')) - return re.sub(r'\$(\$|\w*)', exp, string) + if var == "$": + return "$" + return local_vars.get(var, vars.get(var, "")) + + return re.sub(r"\$(\$|\w*)", exp, string) diff --git a/tools/project.py b/tools/project.py new file mode 100644 index 00000000..2e7ad6ba --- /dev/null +++ b/tools/project.py @@ -0,0 +1,1498 @@ +### +# decomp-toolkit project generator +# Generates build.ninja and objdiff.json. +# +# This generator is intentionally project-agnostic +# and shared between multiple projects. Any configuration +# specific to a project should be added to `configure.py`. +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import io +import json +import math +import os +import platform +import sys +from pathlib import Path +from typing import Any, Dict, List, Optional, Set, Tuple, Union, cast + +from . import ninja_syntax +from .ninja_syntax import serialize_path + +if sys.platform == "cygwin": + sys.exit( + f"Cygwin/MSYS2 is not supported." + f"\nPlease use native Windows Python instead." + f"\n(Current path: {sys.executable})" + ) + +Library = Dict[str, Any] + + +class Object: + def __init__(self, completed: bool, name: str, **options: Any) -> None: + self.name = name + self.completed = completed + self.options: Dict[str, Any] = { + "add_to_all": None, + "asflags": None, + "asm_dir": None, + "cflags": None, + "extra_asflags": None, + "extra_cflags": None, + "host": None, + "lib": None, + "mw_version": None, + "progress_category": None, + "shift_jis": None, + "source": name, + "src_dir": None, + } + self.options.update(options) + + # Internal + self.src_path: Optional[Path] = None + self.asm_path: Optional[Path] = None + self.src_obj_path: Optional[Path] = None + self.asm_obj_path: Optional[Path] = None + self.host_obj_path: Optional[Path] = None + self.ctx_path: Optional[Path] = None + + def resolve(self, config: "ProjectConfig", lib: Library) -> "Object": + # Use object options, then library options + obj = Object(self.completed, self.name, **lib) + for key, value in self.options.items(): + if value is not None or key not in obj.options: + obj.options[key] = value + + # Use default options from config + def set_default(key: str, value: Any) -> None: + if obj.options[key] is None: + obj.options[key] = value + + set_default("add_to_all", True) + set_default("asflags", config.asflags) + set_default("asm_dir", config.asm_dir) + set_default("host", False) + set_default("mw_version", config.linker_version) + set_default("shift_jis", config.shift_jis) + set_default("src_dir", config.src_dir) + + # Resolve paths + build_dir = config.out_path() + obj.src_path = Path(obj.options["src_dir"]) / obj.options["source"] + if obj.options["asm_dir"] is not None: + obj.asm_path = ( + Path(obj.options["asm_dir"]) / obj.options["source"] + ).with_suffix(".s") + base_name = Path(self.name).with_suffix("") + obj.src_obj_path = build_dir / "src" / f"{base_name}.o" + obj.asm_obj_path = build_dir / "mod" / f"{base_name}.o" + obj.host_obj_path = build_dir / "host" / f"{base_name}.o" + obj.ctx_path = build_dir / "src" / f"{base_name}.ctx" + return obj + + +class ProgressCategory: + def __init__(self, id: str, name: str) -> None: + self.id = id + self.name = name + + +class ProjectConfig: + def __init__(self) -> None: + # Paths + self.build_dir: Path = Path("build") # Output build files + self.src_dir: Path = Path("src") # C/C++/asm source files + self.tools_dir: Path = Path("tools") # Python scripts + self.asm_dir: Optional[Path] = Path( + "asm" + ) # Override incomplete objects (for modding) + + # Tooling + self.binutils_tag: Optional[str] = None # Git tag + self.binutils_path: Optional[Path] = None # If None, download + self.dtk_tag: Optional[str] = None # Git tag + self.dtk_path: Optional[Path] = None # If None, download + self.compilers_tag: Optional[str] = None # 1 + self.compilers_path: Optional[Path] = None # If None, download + self.wibo_tag: Optional[str] = None # Git tag + self.wrapper: Optional[Path] = None # If None, download wibo on Linux + self.sjiswrap_tag: Optional[str] = None # Git tag + self.sjiswrap_path: Optional[Path] = None # If None, download + self.objdiff_tag: Optional[str] = None # Git tag + self.objdiff_path: Optional[Path] = None # If None, download + + # Project config + self.non_matching: bool = False + self.build_rels: bool = True # Build REL files + self.check_sha_path: Optional[Path] = None # Path to version.sha1 + self.config_path: Optional[Path] = None # Path to config.yml + self.generate_map: bool = False # Generate map file(s) + self.asflags: Optional[List[str]] = None # Assembler flags + self.ldflags: Optional[List[str]] = None # Linker flags + self.libs: Optional[List[Library]] = None # List of libraries + self.linker_version: Optional[str] = None # mwld version + self.version: Optional[str] = None # Version name + self.warn_missing_config: bool = False # Warn on missing unit configuration + self.warn_missing_source: bool = False # Warn on missing source file + self.rel_strip_partial: bool = True # Generate PLFs with -strip_partial + self.rel_empty_file: Optional[str] = ( + None # Object name for generating empty RELs + ) + self.shift_jis = ( + True # Convert source files from UTF-8 to Shift JIS automatically + ) + self.reconfig_deps: Optional[List[Path]] = ( + None # Additional re-configuration dependency files + ) + self.custom_build_rules: Optional[List[Dict[str, Any]]] = ( + None # Custom ninja build rules + ) + self.custom_build_steps: Optional[Dict[str, List[Dict[str, Any]]]] = ( + None # Custom build steps, types are ["pre-compile", "post-compile", "post-link", "post-build"] + ) + + # Progress output, progress.json and report.json config + self.progress_all: bool = True # Include combined "all" category + self.progress_modules: bool = True # Include combined "modules" category + self.progress_each_module: bool = ( + False # Include individual modules, disable for large numbers of modules + ) + self.progress_categories: List[ProgressCategory] = [] # Additional categories + + # Progress fancy printing + self.progress_use_fancy: bool = False + self.progress_code_fancy_frac: int = 0 + self.progress_code_fancy_item: str = "" + self.progress_data_fancy_frac: int = 0 + self.progress_data_fancy_item: str = "" + + def validate(self) -> None: + required_attrs = [ + "build_dir", + "src_dir", + "tools_dir", + "check_sha_path", + "config_path", + "ldflags", + "linker_version", + "libs", + "version", + ] + for attr in required_attrs: + if getattr(self, attr) is None: + sys.exit(f"ProjectConfig.{attr} missing") + + # Creates a map of object names to Object instances + # Options are fully resolved from the library and object + def objects(self) -> Dict[str, Object]: + out = {} + for lib in self.libs or {}: + objects: List[Object] = lib["objects"] + for obj in objects: + if obj.name in out: + sys.exit(f"Duplicate object name {obj.name}") + out[obj.name] = obj.resolve(self, lib) + return out + + def out_path(self) -> Path: + return self.build_dir / str(self.version) + + +def is_windows() -> bool: + return os.name == "nt" + + +# On Windows, we need this to use && in commands +CHAIN = "cmd /c " if is_windows() else "" +# Native executable extension +EXE = ".exe" if is_windows() else "" + + +def make_flags_str(cflags: Union[str, List[str]]) -> str: + if isinstance(cflags, list): + return " ".join(cflags) + else: + return cflags + + +# Load decomp-toolkit generated config.json +def load_build_config( + config: ProjectConfig, build_config_path: Path +) -> Optional[Dict[str, Any]]: + if not build_config_path.is_file(): + return None + + def versiontuple(v: str) -> Tuple[int, ...]: + return tuple(map(int, (v.split(".")))) + + f = open(build_config_path, "r", encoding="utf-8") + build_config: Dict[str, Any] = json.load(f) + config_version = build_config.get("version") + if config_version is None: + # Invalid config.json + f.close() + os.remove(build_config_path) + return None + + dtk_version = str(config.dtk_tag)[1:] # Strip v + if versiontuple(config_version) < versiontuple(dtk_version): + # Outdated config.json + f.close() + os.remove(build_config_path) + return None + + f.close() + return build_config + + +# Generate build.ninja and objdiff.json +def generate_build(config: ProjectConfig) -> None: + config.validate() + objects = config.objects() + build_config = load_build_config(config, config.out_path() / "config.json") + generate_build_ninja(config, objects, build_config) + generate_objdiff_config(config, objects, build_config) + + +# Generate build.ninja +def generate_build_ninja( + config: ProjectConfig, + objects: Dict[str, Object], + build_config: Optional[Dict[str, Any]], +) -> None: + out = io.StringIO() + n = ninja_syntax.Writer(out) + n.variable("ninja_required_version", "1.3") + n.newline() + + configure_script = Path(os.path.relpath(os.path.abspath(sys.argv[0]))) + python_lib = Path(os.path.relpath(__file__)) + python_lib_dir = python_lib.parent + n.comment("The arguments passed to configure.py, for rerunning it.") + n.variable("configure_args", sys.argv[1:]) + n.variable("python", f'"{sys.executable}"') + n.newline() + + ### + # Variables + ### + n.comment("Variables") + n.variable("ldflags", " ".join(config.ldflags or [])) + if config.linker_version is None: + sys.exit("ProjectConfig.linker_version missing") + n.variable("mw_version", Path(config.linker_version)) + n.newline() + + ### + # Tooling + ### + n.comment("Tooling") + + build_path = config.out_path() + progress_path = build_path / "progress.json" + report_path = build_path / "report.json" + build_tools_path = config.build_dir / "tools" + download_tool = config.tools_dir / "download_tool.py" + n.rule( + name="download_tool", + command=f"$python {download_tool} $tool $out --tag $tag", + description="TOOL $out", + ) + + decompctx = config.tools_dir / "decompctx.py" + n.rule( + name="decompctx", + command=f"$python {decompctx} $in -o $out -d $out.d", + description="CTX $in", + depfile="$out.d", + deps="gcc", + ) + + cargo_rule_written = False + + def write_cargo_rule(): + nonlocal cargo_rule_written + if not cargo_rule_written: + n.pool("cargo", 1) + n.rule( + name="cargo", + command="cargo build --release --manifest-path $in --bin $bin --target-dir $target", + description="CARGO $bin", + pool="cargo", + depfile=Path("$target") / "release" / "$bin.d", + deps="gcc", + ) + cargo_rule_written = True + + if config.dtk_path is not None and config.dtk_path.is_file(): + dtk = config.dtk_path + elif config.dtk_path is not None: + dtk = build_tools_path / "release" / f"dtk{EXE}" + write_cargo_rule() + n.build( + outputs=dtk, + rule="cargo", + inputs=config.dtk_path / "Cargo.toml", + implicit=config.dtk_path / "Cargo.lock", + variables={ + "bin": "dtk", + "target": build_tools_path, + }, + ) + elif config.dtk_tag: + dtk = build_tools_path / f"dtk{EXE}" + n.build( + outputs=dtk, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "dtk", + "tag": config.dtk_tag, + }, + ) + else: + sys.exit("ProjectConfig.dtk_tag missing") + + if config.objdiff_path is not None and config.objdiff_path.is_file(): + objdiff = config.objdiff_path + elif config.objdiff_path is not None: + objdiff = build_tools_path / "release" / f"objdiff-cli{EXE}" + write_cargo_rule() + n.build( + outputs=objdiff, + rule="cargo", + inputs=config.objdiff_path / "Cargo.toml", + implicit=config.objdiff_path / "Cargo.lock", + variables={ + "bin": "objdiff-cli", + "target": build_tools_path, + }, + ) + elif config.objdiff_tag: + objdiff = build_tools_path / f"objdiff-cli{EXE}" + n.build( + outputs=objdiff, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "objdiff-cli", + "tag": config.objdiff_tag, + }, + ) + else: + sys.exit("ProjectConfig.objdiff_tag missing") + + if config.sjiswrap_path: + sjiswrap = config.sjiswrap_path + elif config.sjiswrap_tag: + sjiswrap = build_tools_path / "sjiswrap.exe" + n.build( + outputs=sjiswrap, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "sjiswrap", + "tag": config.sjiswrap_tag, + }, + ) + else: + sys.exit("ProjectConfig.sjiswrap_tag missing") + + # Only add an implicit dependency on wibo if we download it + wrapper = config.wrapper + wrapper_implicit: Optional[Path] = None + if ( + config.wibo_tag is not None + and sys.platform == "linux" + and platform.machine() in ("i386", "x86_64") + and config.wrapper is None + ): + wrapper = build_tools_path / "wibo" + wrapper_implicit = wrapper + n.build( + outputs=wrapper, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "wibo", + "tag": config.wibo_tag, + }, + ) + if not is_windows() and wrapper is None: + wrapper = Path("wine") + wrapper_cmd = f"{wrapper} " if wrapper else "" + + compilers_implicit: Optional[Path] = None + if config.compilers_path: + compilers = config.compilers_path + elif config.compilers_tag: + compilers = config.build_dir / "compilers" + compilers_implicit = compilers + n.build( + outputs=compilers, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "compilers", + "tag": config.compilers_tag, + }, + ) + else: + sys.exit("ProjectConfig.compilers_tag missing") + + binutils_implicit = None + if config.binutils_path: + binutils = config.binutils_path + elif config.binutils_tag: + binutils = config.build_dir / "binutils" + binutils_implicit = binutils + n.build( + outputs=binutils, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "binutils", + "tag": config.binutils_tag, + }, + ) + else: + sys.exit("ProjectConfig.binutils_tag missing") + + n.newline() + + ### + # Helper rule for downloading all tools + ### + n.comment("Download all tools") + n.build( + outputs="tools", + rule="phony", + inputs=[dtk, sjiswrap, wrapper, compilers, binutils, objdiff], + ) + n.newline() + + ### + # Build rules + ### + compiler_path = compilers / "$mw_version" + + # MWCC + mwcc = compiler_path / "mwcceppc.exe" + mwcc_cmd = f"{wrapper_cmd}{mwcc} $cflags -MMD -c $in -o $basedir" + mwcc_implicit: List[Optional[Path]] = [compilers_implicit or mwcc, wrapper_implicit] + + # MWCC with UTF-8 to Shift JIS wrapper + mwcc_sjis_cmd = f"{wrapper_cmd}{sjiswrap} {mwcc} $cflags -MMD -c $in -o $basedir" + mwcc_sjis_implicit: List[Optional[Path]] = [*mwcc_implicit, sjiswrap] + + # MWLD + mwld = compiler_path / "mwldeppc.exe" + mwld_cmd = f"{wrapper_cmd}{mwld} $ldflags -o $out @$out.rsp" + mwld_implicit: List[Optional[Path]] = [compilers_implicit or mwld, wrapper_implicit] + + # GNU as + gnu_as = binutils / f"powerpc-eabi-as{EXE}" + gnu_as_cmd = ( + f"{CHAIN}{gnu_as} $asflags -o $out $in -MD $out.d" + + f" && {dtk} elf fixup $out $out" + ) + gnu_as_implicit = [binutils_implicit or gnu_as, dtk] + + if os.name != "nt": + transform_dep = config.tools_dir / "transform_dep.py" + mwcc_cmd += f" && $python {transform_dep} $basefile.d $basefile.d" + mwcc_sjis_cmd += f" && $python {transform_dep} $basefile.d $basefile.d" + mwcc_implicit.append(transform_dep) + mwcc_sjis_implicit.append(transform_dep) + + n.comment("Link ELF file") + n.rule( + name="link", + command=mwld_cmd, + description="LINK $out", + rspfile="$out.rsp", + rspfile_content="$in_newline", + ) + n.newline() + + n.comment("Generate DOL") + n.rule( + name="elf2dol", + command=f"{dtk} elf2dol $in $out", + description="DOL $out", + ) + n.newline() + + n.comment("MWCC build") + n.rule( + name="mwcc", + command=mwcc_cmd, + description="MWCC $out", + depfile="$basefile.d", + deps="gcc", + ) + n.newline() + + n.comment("MWCC build (with UTF-8 to Shift JIS wrapper)") + n.rule( + name="mwcc_sjis", + command=mwcc_sjis_cmd, + description="MWCC $out", + depfile="$basefile.d", + deps="gcc", + ) + n.newline() + + n.comment("Assemble asm") + n.rule( + name="as", + command=gnu_as_cmd, + description="AS $out", + depfile="$out.d", + deps="gcc", + ) + n.newline() + + if len(config.custom_build_rules or {}) > 0: + n.comment("Custom project build rules (pre/post-processing)") + for rule in config.custom_build_rules or {}: + n.rule( + name=cast(str, rule.get("name")), + command=cast(str, rule.get("command")), + description=rule.get("description", None), + depfile=rule.get("depfile", None), + generator=rule.get("generator", False), + pool=rule.get("pool", None), + restat=rule.get("restat", False), + rspfile=rule.get("rspfile", None), + rspfile_content=rule.get("rspfile_content", None), + deps=rule.get("deps", None), + ) + n.newline() + + def write_custom_step(step: str) -> List[str | Path]: + implicit: List[str | Path] = [] + if config.custom_build_steps and step in config.custom_build_steps: + n.comment(f"Custom build steps ({step})") + for custom_step in config.custom_build_steps[step]: + outputs = cast(List[str | Path], custom_step.get("outputs")) + + if isinstance(outputs, list): + implicit.extend(outputs) + else: + implicit.append(outputs) + + n.build( + outputs=outputs, + rule=cast(str, custom_step.get("rule")), + inputs=custom_step.get("inputs", None), + implicit=custom_step.get("implicit", None), + order_only=custom_step.get("order_only", None), + variables=custom_step.get("variables", None), + implicit_outputs=custom_step.get("implicit_outputs", None), + pool=custom_step.get("pool", None), + dyndep=custom_step.get("dyndep", None), + ) + n.newline() + return implicit + + n.comment("Host build") + n.variable("host_cflags", "-I include -Wno-trigraphs") + n.variable( + "host_cppflags", + "-std=c++98 -I include -fno-exceptions -fno-rtti -D_CRT_SECURE_NO_WARNINGS -Wno-trigraphs -Wno-c++11-extensions", + ) + n.rule( + name="host_cc", + command="clang $host_cflags -c -o $out $in", + description="CC $out", + ) + n.rule( + name="host_cpp", + command="clang++ $host_cppflags -c -o $out $in", + description="CXX $out", + ) + n.newline() + + # Add all build steps needed before we compile (e.g. processing assets) + precompile_implicit = write_custom_step("pre-compile") + + ### + # Source files + ### + n.comment("Source files") + + def map_path(path: Path) -> Path: + return path.parent / (path.name + ".MAP") + + class LinkStep: + def __init__(self, config: Dict[str, Any]) -> None: + self.name: str = config["name"] + self.module_id: int = config["module_id"] + self.ldscript: Optional[Path] = Path(config["ldscript"]) + self.entry = config["entry"] + self.inputs: List[str] = [] + + def add(self, obj: Path) -> None: + self.inputs.append(serialize_path(obj)) + + def output(self) -> Path: + if self.module_id == 0: + return build_path / f"{self.name}.dol" + else: + return build_path / self.name / f"{self.name}.rel" + + def partial_output(self) -> Path: + if self.module_id == 0: + return build_path / f"{self.name}.elf" + else: + return build_path / self.name / f"{self.name}.plf" + + def write(self, n: ninja_syntax.Writer) -> None: + n.comment(f"Link {self.name}") + if self.module_id == 0: + elf_path = build_path / f"{self.name}.elf" + dol_path = build_path / f"{self.name}.dol" + elf_ldflags = f"$ldflags -lcf {serialize_path(self.ldscript)}" + if config.generate_map: + elf_map = map_path(elf_path) + elf_ldflags += f" -map {serialize_path(elf_map)}" + else: + elf_map = None + n.build( + outputs=elf_path, + rule="link", + inputs=self.inputs, + implicit=[ + *precompile_implicit, + self.ldscript, + *mwld_implicit, + *postcompile_implicit, + ], + implicit_outputs=elf_map, + variables={"ldflags": elf_ldflags}, + ) + else: + preplf_path = build_path / self.name / f"{self.name}.preplf" + plf_path = build_path / self.name / f"{self.name}.plf" + preplf_ldflags = "$ldflags -sdata 0 -sdata2 0 -r" + plf_ldflags = f"$ldflags -sdata 0 -sdata2 0 -r1 -lcf {serialize_path(self.ldscript)}" + if self.entry: + plf_ldflags += f" -m {self.entry}" + # -strip_partial is only valid with -m + if config.rel_strip_partial: + plf_ldflags += " -strip_partial" + if config.generate_map: + preplf_map = map_path(preplf_path) + preplf_ldflags += f" -map {serialize_path(preplf_map)}" + plf_map = map_path(plf_path) + plf_ldflags += f" -map {serialize_path(plf_map)}" + else: + preplf_map = None + plf_map = None + n.build( + outputs=preplf_path, + rule="link", + inputs=self.inputs, + implicit=mwld_implicit, + implicit_outputs=preplf_map, + variables={"ldflags": preplf_ldflags}, + ) + n.build( + outputs=plf_path, + rule="link", + inputs=self.inputs, + implicit=[self.ldscript, preplf_path, *mwld_implicit], + implicit_outputs=plf_map, + variables={"ldflags": plf_ldflags}, + ) + n.newline() + + link_outputs: List[Path] = [] + if build_config: + link_steps: List[LinkStep] = [] + used_compiler_versions: Set[str] = set() + source_inputs: List[Path] = [] + host_source_inputs: List[Path] = [] + source_added: Set[Path] = set() + + def c_build(obj: Object, src_path: Path) -> Optional[Path]: + cflags_str = make_flags_str(obj.options["cflags"]) + if obj.options["extra_cflags"] is not None: + extra_cflags_str = make_flags_str(obj.options["extra_cflags"]) + cflags_str += " " + extra_cflags_str + used_compiler_versions.add(obj.options["mw_version"]) + + # Avoid creating duplicate build rules + if obj.src_obj_path is None or obj.src_obj_path in source_added: + return obj.src_obj_path + source_added.add(obj.src_obj_path) + + # Add MWCC build rule + lib_name = obj.options["lib"] + n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})") + n.build( + outputs=obj.src_obj_path, + rule="mwcc_sjis" if obj.options["shift_jis"] else "mwcc", + inputs=src_path, + variables={ + "mw_version": Path(obj.options["mw_version"]), + "cflags": cflags_str, + "basedir": os.path.dirname(obj.src_obj_path), + "basefile": obj.src_obj_path.with_suffix(""), + }, + implicit=( + mwcc_sjis_implicit if obj.options["shift_jis"] else mwcc_implicit + ), + ) + + # Add ctx build rule + if obj.ctx_path is not None: + n.build( + outputs=obj.ctx_path, + rule="decompctx", + inputs=src_path, + implicit=decompctx, + ) + + # Add host build rule + if obj.options["host"] and obj.host_obj_path is not None: + n.build( + outputs=obj.host_obj_path, + rule="host_cc" if src_path.suffix == ".c" else "host_cpp", + inputs=src_path, + variables={ + "basedir": os.path.dirname(obj.host_obj_path), + "basefile": obj.host_obj_path.with_suffix(""), + }, + ) + if obj.options["add_to_all"]: + host_source_inputs.append(obj.host_obj_path) + n.newline() + + if obj.options["add_to_all"]: + source_inputs.append(obj.src_obj_path) + + return obj.src_obj_path + + def asm_build( + obj: Object, src_path: Path, obj_path: Optional[Path] + ) -> Optional[Path]: + if obj.options["asflags"] is None: + sys.exit("ProjectConfig.asflags missing") + asflags_str = make_flags_str(obj.options["asflags"]) + if obj.options["extra_asflags"] is not None: + extra_asflags_str = make_flags_str(obj.options["extra_asflags"]) + asflags_str += " " + extra_asflags_str + + # Avoid creating duplicate build rules + if obj_path is None or obj_path in source_added: + return obj_path + source_added.add(obj_path) + + # Add assembler build rule + lib_name = obj.options["lib"] + n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})") + n.build( + outputs=obj_path, + rule="as", + inputs=src_path, + variables={"asflags": asflags_str}, + implicit=gnu_as_implicit, + ) + n.newline() + + if obj.options["add_to_all"]: + source_inputs.append(obj_path) + + return obj_path + + def add_unit(build_obj, link_step: LinkStep): + obj_path, obj_name = build_obj["object"], build_obj["name"] + obj = objects.get(obj_name) + if obj is None: + if config.warn_missing_config and not build_obj["autogenerated"]: + print(f"Missing configuration for {obj_name}") + link_step.add(obj_path) + return + + link_built_obj = obj.completed + built_obj_path: Optional[Path] = None + if obj.src_path is not None and obj.src_path.exists(): + if obj.src_path.suffix in (".c", ".cp", ".cpp"): + # Add MWCC & host build rules + built_obj_path = c_build(obj, obj.src_path) + elif obj.src_path.suffix == ".s": + # Add assembler build rule + built_obj_path = asm_build(obj, obj.src_path, obj.src_obj_path) + else: + sys.exit(f"Unknown source file type {obj.src_path}") + else: + if config.warn_missing_source or obj.completed: + print(f"Missing source file {obj.src_path}") + link_built_obj = False + + # Assembly overrides + if obj.asm_path is not None and obj.asm_path.exists(): + link_built_obj = True + built_obj_path = asm_build(obj, obj.asm_path, obj.asm_obj_path) + + if link_built_obj and built_obj_path is not None: + # Use the source-built object + link_step.add(built_obj_path) + elif obj_path is not None: + # Use the original (extracted) object + link_step.add(obj_path) + else: + lib_name = obj.options["lib"] + sys.exit( + f"Missing object for {obj_name}: {obj.src_path} {lib_name} {obj}" + ) + + # Add DOL link step + link_step = LinkStep(build_config) + for unit in build_config["units"]: + add_unit(unit, link_step) + link_steps.append(link_step) + + if config.build_rels: + # Add REL link steps + for module in build_config["modules"]: + module_link_step = LinkStep(module) + for unit in module["units"]: + add_unit(unit, module_link_step) + # Add empty object to empty RELs + if len(module_link_step.inputs) == 0: + if config.rel_empty_file is None: + sys.exit("ProjectConfig.rel_empty_file missing") + add_unit( + { + "object": None, + "name": config.rel_empty_file, + "autogenerated": True, + }, + module_link_step, + ) + link_steps.append(module_link_step) + n.newline() + + # Check if all compiler versions exist + for mw_version in used_compiler_versions: + mw_path = compilers / mw_version / "mwcceppc.exe" + if config.compilers_path and not os.path.exists(mw_path): + sys.exit(f"Compiler {mw_path} does not exist") + + # Check if linker exists + mw_path = compilers / str(config.linker_version) / "mwldeppc.exe" + if config.compilers_path and not os.path.exists(mw_path): + sys.exit(f"Linker {mw_path} does not exist") + + # Add all build steps needed before we link and after compiling objects + postcompile_implicit = write_custom_step("post-compile") + + ### + # Link + ### + for step in link_steps: + step.write(n) + link_outputs.append(step.output()) + n.newline() + + # Add all build steps needed after linking and before GC/Wii native format generation + postlink_implicit = write_custom_step("post-link") + + ### + # Generate DOL + ### + n.build( + outputs=link_steps[0].output(), + rule="elf2dol", + inputs=link_steps[0].partial_output(), + implicit=[*postlink_implicit, dtk], + ) + + ### + # Generate RELs + ### + n.comment("Generate REL(s)") + flags = "-w" + if len(build_config["links"]) > 1: + flags += " -q" + n.rule( + name="makerel", + command=f"{dtk} rel make {flags} -c $config $names @$rspfile", + description="REL", + rspfile="$rspfile", + rspfile_content="$in_newline", + ) + generated_rels: List[str] = [] + for idx, link in enumerate(build_config["links"]): + # Map module names to link steps + link_steps_local = list( + filter( + lambda step: step.name in link["modules"], + link_steps, + ) + ) + link_steps_local.sort(key=lambda step: step.module_id) + # RELs can be the output of multiple link steps, + # so we need to filter out duplicates + rels_to_generate = list( + filter( + lambda step: step.module_id != 0 + and step.name not in generated_rels, + link_steps_local, + ) + ) + if len(rels_to_generate) == 0: + continue + generated_rels.extend(map(lambda step: step.name, rels_to_generate)) + rel_outputs = list( + map( + lambda step: step.output(), + rels_to_generate, + ) + ) + rel_names = list( + map( + lambda step: step.name, + link_steps_local, + ) + ) + rel_names_arg = " ".join(map(lambda name: f"-n {name}", rel_names)) + n.build( + outputs=rel_outputs, + rule="makerel", + inputs=list(map(lambda step: step.partial_output(), link_steps_local)), + implicit=[dtk, config.config_path], + variables={ + "config": config.config_path, + "rspfile": config.out_path() / f"rel{idx}.rsp", + "names": rel_names_arg, + }, + ) + n.newline() + + # Add all build steps needed post-build (re-building archives and such) + postbuild_implicit = write_custom_step("post-build") + + ### + # Helper rule for building all source files + ### + n.comment("Build all source files") + n.build( + outputs="all_source", + rule="phony", + inputs=source_inputs, + ) + n.newline() + + ### + # Helper rule for building all source files, with a host compiler + ### + n.comment("Build all source files with a host compiler") + n.build( + outputs="all_source_host", + rule="phony", + inputs=host_source_inputs, + ) + n.newline() + + ### + # Check hash + ### + n.comment("Check hash") + ok_path = build_path / "ok" + quiet = "-q " if len(link_steps) > 3 else "" + n.rule( + name="check", + command=f"{dtk} shasum {quiet} -c $in -o $out", + description="CHECK $in", + ) + n.build( + outputs=ok_path, + rule="check", + inputs=config.check_sha_path, + implicit=[dtk, *link_outputs, *postbuild_implicit], + ) + n.newline() + + ### + # Calculate progress + ### + n.comment("Calculate progress") + n.rule( + name="progress", + command=f"$python {configure_script} $configure_args progress", + description="PROGRESS", + ) + n.build( + outputs=progress_path, + rule="progress", + implicit=[ok_path, configure_script, python_lib, config.config_path], + ) + + ### + # Generate progress report + ### + n.comment("Generate progress report") + n.rule( + name="report", + command=f"{objdiff} report generate -o $out", + description="REPORT", + ) + report_implicit: List[str | Path] = [objdiff, "all_source"] + n.build( + outputs=report_path, + rule="report", + implicit=report_implicit, + ) + + ### + # Helper tools + ### + # TODO: make these rules work for RELs too + dol_link_step = link_steps[0] + dol_elf_path = dol_link_step.partial_output() + n.comment("Check for mismatching symbols") + n.rule( + name="dol_diff", + command=f"{dtk} -L error dol diff $in", + description=f"DIFF {dol_elf_path}", + ) + n.build( + inputs=[config.config_path, dol_elf_path], + outputs="dol_diff", + rule="dol_diff", + ) + n.build( + outputs="diff", + rule="phony", + inputs="dol_diff", + ) + n.newline() + + n.comment("Apply symbols from linked ELF") + n.rule( + name="dol_apply", + command=f"{dtk} dol apply $in", + description=f"APPLY {dol_elf_path}", + ) + n.build( + inputs=[config.config_path, dol_elf_path], + outputs="dol_apply", + rule="dol_apply", + implicit=[ok_path], + ) + n.build( + outputs="apply", + rule="phony", + inputs="dol_apply", + ) + n.newline() + + ### + # Split DOL + ### + build_config_path = build_path / "config.json" + n.comment("Split DOL into relocatable objects") + n.rule( + name="split", + command=f"{dtk} dol split $in $out_dir", + description="SPLIT $in", + depfile="$out_dir/dep", + deps="gcc", + ) + n.build( + inputs=config.config_path, + outputs=build_config_path, + rule="split", + implicit=dtk, + variables={"out_dir": build_path}, + ) + n.newline() + + ### + # Regenerate on change + ### + n.comment("Reconfigure on change") + n.rule( + name="configure", + command=f"$python {configure_script} $configure_args", + generator=True, + description=f"RUN {configure_script}", + ) + n.build( + outputs="build.ninja", + rule="configure", + implicit=[ + build_config_path, + configure_script, + python_lib, + python_lib_dir / "ninja_syntax.py", + *(config.reconfig_deps or []), + ], + ) + n.newline() + + ### + # Default rule + ### + n.comment("Default rule") + if build_config: + if config.non_matching: + n.default(link_outputs) + else: + n.default(progress_path) + else: + n.default(build_config_path) + + # Write build.ninja + with open("build.ninja", "w", encoding="utf-8") as f: + f.write(out.getvalue()) + out.close() + + +# Generate objdiff.json +def generate_objdiff_config( + config: ProjectConfig, + objects: Dict[str, Object], + build_config: Optional[Dict[str, Any]], +) -> None: + if build_config is None: + return + + objdiff_config: Dict[str, Any] = { + "min_version": "2.0.0-beta.5", + "custom_make": "ninja", + "build_target": False, + "watch_patterns": [ + "*.c", + "*.cp", + "*.cpp", + "*.h", + "*.hpp", + "*.inc", + "*.py", + "*.yml", + "*.txt", + "*.json", + ], + "units": [], + "progress_categories": [], + } + + # decomp.me compiler name mapping + # Commented out versions have not been added to decomp.me yet + COMPILER_MAP = { + "GC/1.0": "mwcc_233_144", + "GC/1.1": "mwcc_233_159", + "GC/1.2.5": "mwcc_233_163", + "GC/1.2.5e": "mwcc_233_163e", + "GC/1.2.5n": "mwcc_233_163n", + "GC/1.3": "mwcc_242_53", + "GC/1.3.2": "mwcc_242_81", + "GC/1.3.2r": "mwcc_242_81r", + "GC/2.0": "mwcc_247_92", + "GC/2.5": "mwcc_247_105", + "GC/2.6": "mwcc_247_107", + "GC/2.7": "mwcc_247_108", + "GC/3.0a3": "mwcc_41_51213", + "GC/3.0a3.2": "mwcc_41_60126", + "GC/3.0a3.3": "mwcc_41_60209", + "GC/3.0a3.4": "mwcc_42_60308", + "GC/3.0a5": "mwcc_42_60422", + "GC/3.0a5.2": "mwcc_41_60831", + "GC/3.0": "mwcc_41_60831", + "Wii/1.0RC1": "mwcc_42_140", + "Wii/0x4201_127": "mwcc_42_142", + "Wii/1.0a": "mwcc_42_142", + "Wii/1.0": "mwcc_43_145", + "Wii/1.1": "mwcc_43_151", + "Wii/1.3": "mwcc_43_172", + "Wii/1.5": "mwcc_43_188", + "Wii/1.6": "mwcc_43_202", + "Wii/1.7": "mwcc_43_213", + } + + def add_unit( + build_obj: Dict[str, Any], module_name: str, progress_categories: List[str] + ) -> None: + obj_path, obj_name = build_obj["object"], build_obj["name"] + base_object = Path(obj_name).with_suffix("") + unit_config: Dict[str, Any] = { + "name": Path(module_name) / base_object, + "target_path": obj_path, + "metadata": { + "auto_generated": build_obj["autogenerated"], + "progress_categories": progress_categories, + }, + } + + obj = objects.get(obj_name) + if obj is None: + objdiff_config["units"].append(unit_config) + return + + src_exists = obj.src_path is not None and obj.src_path.exists() + if src_exists: + unit_config["base_path"] = obj.src_obj_path + + cflags = obj.options["cflags"] + reverse_fn_order = False + if type(cflags) is list: + for flag in cflags: + if not flag.startswith("-inline "): + continue + for value in flag.split(" ")[1].split(","): + if value == "deferred": + reverse_fn_order = True + elif value == "nodeferred": + reverse_fn_order = False + + # Filter out include directories + def keep_flag(flag): + return not flag.startswith("-i ") and not flag.startswith("-I ") + + cflags = list(filter(keep_flag, cflags)) + + # Add appropriate lang flag + if obj.src_path is not None and not any( + flag.startswith("-lang") for flag in cflags + ): + if obj.src_path.suffix in (".cp", ".cpp"): + cflags.insert(0, "-lang=c++") + else: + cflags.insert(0, "-lang=c") + + compiler_version = COMPILER_MAP.get(obj.options["mw_version"]) + if compiler_version is None: + print(f"Missing scratch compiler mapping for {obj.options['mw_version']}") + else: + cflags_str = make_flags_str(cflags) + if obj.options["extra_cflags"] is not None: + extra_cflags_str = make_flags_str(obj.options["extra_cflags"]) + cflags_str += " " + extra_cflags_str + unit_config["scratch"] = { + "platform": "gc_wii", + "compiler": compiler_version, + "c_flags": cflags_str, + } + if src_exists: + unit_config["scratch"].update( + { + "ctx_path": obj.ctx_path, + "build_ctx": True, + } + ) + category_opt: List[str] | str = obj.options["progress_category"] + if isinstance(category_opt, list): + progress_categories.extend(category_opt) + elif category_opt is not None: + progress_categories.append(category_opt) + unit_config["metadata"].update( + { + "complete": obj.completed, + "reverse_fn_order": reverse_fn_order, + "source_path": obj.src_path, + "progress_categories": progress_categories, + } + ) + objdiff_config["units"].append(unit_config) + + # Add DOL units + for unit in build_config["units"]: + progress_categories = [] + # Only include a "dol" category if there are any modules + # Otherwise it's redundant with the global report measures + if len(build_config["modules"]) > 0: + progress_categories.append("dol") + add_unit(unit, build_config["name"], progress_categories) + + # Add REL units + for module in build_config["modules"]: + for unit in module["units"]: + progress_categories = [] + if config.progress_modules: + progress_categories.append("modules") + if config.progress_each_module: + progress_categories.append(module["name"]) + add_unit(unit, module["name"], progress_categories) + + # Add progress categories + def add_category(id: str, name: str): + objdiff_config["progress_categories"].append( + { + "id": id, + "name": name, + } + ) + + if len(build_config["modules"]) > 0: + add_category("dol", "DOL") + if config.progress_modules: + add_category("modules", "Modules") + if config.progress_each_module: + for module in build_config["modules"]: + add_category(module["name"], module["name"]) + for category in config.progress_categories: + add_category(category.id, category.name) + + # Write objdiff.json + with open("objdiff.json", "w", encoding="utf-8") as w: + + def unix_path(input: Any) -> str: + return str(input).replace(os.sep, "/") if input else "" + + json.dump(objdiff_config, w, indent=4, default=unix_path) + + +# Calculate, print and write progress to progress.json +def calculate_progress(config: ProjectConfig) -> None: + config.validate() + objects = config.objects() + out_path = config.out_path() + build_config = load_build_config(config, out_path / "config.json") + if build_config is None: + return + + class ProgressUnit: + def __init__(self, name: str) -> None: + self.name: str = name + self.code_total: int = 0 + self.code_fancy_frac: int = config.progress_code_fancy_frac + self.code_fancy_item: str = config.progress_code_fancy_item + self.code_progress: int = 0 + self.data_total: int = 0 + self.data_fancy_frac: int = config.progress_data_fancy_frac + self.data_fancy_item: str = config.progress_data_fancy_item + self.data_progress: int = 0 + self.objects_progress: int = 0 + self.objects_total: int = 0 + self.objects: Set[Object] = set() + + def add(self, build_obj: Dict[str, Any]) -> None: + self.code_total += build_obj["code_size"] + self.data_total += build_obj["data_size"] + + # Avoid counting the same object in different modules twice + include_object = build_obj["name"] not in self.objects + if include_object: + self.objects.add(build_obj["name"]) + self.objects_total += 1 + + if build_obj["autogenerated"]: + # Skip autogenerated objects + return + + obj = objects.get(build_obj["name"]) + if obj is None or not obj.completed: + return + + self.code_progress += build_obj["code_size"] + self.data_progress += build_obj["data_size"] + if include_object: + self.objects_progress += 1 + + def code_frac(self) -> float: + if self.code_total == 0: + return 1.0 + return self.code_progress / self.code_total + + def data_frac(self) -> float: + if self.data_total == 0: + return 1.0 + return self.data_progress / self.data_total + + progress_units: Dict[str, ProgressUnit] = {} + if config.progress_all: + progress_units["all"] = ProgressUnit("All") + progress_units["dol"] = ProgressUnit("DOL") + if len(build_config["modules"]) > 0: + if config.progress_modules: + progress_units["modules"] = ProgressUnit("Modules") + if len(config.progress_categories) > 0: + for category in config.progress_categories: + progress_units[category.id] = ProgressUnit(category.name) + if config.progress_each_module: + for module in build_config["modules"]: + progress_units[module["name"]] = ProgressUnit(module["name"]) + + def add_unit(id: str, unit: Dict[str, Any]) -> None: + progress = progress_units.get(id) + if progress is not None: + progress.add(unit) + + # Add DOL units + for unit in build_config["units"]: + add_unit("all", unit) + add_unit("dol", unit) + obj = objects.get(unit["name"]) + if obj is not None: + category_opt = obj.options["progress_category"] + if isinstance(category_opt, list): + for id in category_opt: + add_unit(id, unit) + elif category_opt is not None: + add_unit(category_opt, unit) + + # Add REL units + for module in build_config["modules"]: + for unit in module["units"]: + add_unit("all", unit) + add_unit("modules", unit) + add_unit(module["name"], unit) + obj = objects.get(unit["name"]) + if obj is not None: + category_opt = obj.options["progress_category"] + if isinstance(category_opt, list): + for id in category_opt: + add_unit(id, unit) + elif category_opt is not None: + add_unit(category_opt, unit) + + # Print human-readable progress + print("Progress:") + + for unit in progress_units.values(): + if unit.objects_total == 0: + continue + + code_frac = unit.code_frac() + data_frac = unit.data_frac() + print( + f" {unit.name}: {code_frac:.2%} code, {data_frac:.2%} data ({unit.objects_progress} / {unit.objects_total} files)" + ) + print(f" Code: {unit.code_progress} / {unit.code_total} bytes") + print(f" Data: {unit.data_progress} / {unit.data_total} bytes") + if config.progress_use_fancy: + print( + "\nYou have {} out of {} {} and {} out of {} {}.".format( + math.floor(code_frac * unit.code_fancy_frac), + unit.code_fancy_frac, + unit.code_fancy_item, + math.floor(data_frac * unit.data_fancy_frac), + unit.data_fancy_frac, + unit.data_fancy_item, + ) + ) + + # Generate and write progress.json + progress_json: Dict[str, Any] = {} + for id, unit in progress_units.items(): + if unit.objects_total == 0: + continue + progress_json[id] = { + "code": unit.code_progress, + "code/total": unit.code_total, + "data": unit.data_progress, + "data/total": unit.data_total, + } + + with open(out_path / "progress.json", "w", encoding="utf-8") as w: + json.dump(progress_json, w, indent=4) diff --git a/tools/ptr_checker.py b/tools/ptr_checker.py deleted file mode 100644 index 76a57f89..00000000 --- a/tools/ptr_checker.py +++ /dev/null @@ -1,206 +0,0 @@ -#!/usr/bin/env python3 - -# ==================================== -# Ptr checker v0.0.9 (by RevoSucks) -# ==================================== -# WARNING, seriously, get a puke bucket. This is just a file i am writing for my own sole use. -# If you want to use it, I have some advice for you: D.O.N.T. -# It stands for dooooooonnnnnn't use it. Ever. - -# ------------------ -# Imports -# ------------------ -import os, fnmatch, math - -# ------------------ -# Defines -# ------------------ - -# Path to baserom.dol -baserom_path = "baserom.dol" -map_path = "build/pikmin.usa.1/pikmin1.map" - -# ------------------ -# Methods -# ------------------ - -# Return a list of searchable '.s' files in a given folder recursively. -def findExt(folder): - matches = [] - for root, dirnames, filenames in os.walk(folder): - for filename in filenames: - if filename.endswith('.s'): - matches.append(os.path.join(root, filename)) - #print(matches) - return matches - -# Name is passed in as the address initially. If we cannot find it, return the string of the address. -def getMatchingTextSymbolFromAddress(name): - # Strip the 0x from the start. - #print("DEBUG: ", str(hex(name))[2:].zfill(8)) - result = str(hex(name))[2:].zfill(8) - matches = [result, '(entry of '] - # First open the .map file. - map = open(map_path, 'r') - Lines = map.readlines() - # Parse over the map until a match is found. - for line in Lines: - # Does the line have the 2 expected strings? - if all(x in line for x in matches): - # We found the line. - #print("Match found! Line: ", line) - # Split the name out and return it. - return line.split(' ')[5] - # We're done, close it. - map.close() - return hex(name) - -# Build a list of the pointers and scan each word. -def dumpVirtualTable(line): - # Init the table. - table = "" - # Open baserom.dol for processing. - f = open(baserom_path, 'rb') - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - #print("ADDR: ", address) - #print("SIZE: ", size) - f.seek(int(address, 16)) - entries = int(size, 16) / 4 - while entries != 0: - entry = int.from_bytes(f.read(4), byteorder='big') - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = str(getMatchingTextSymbolFromAddress(entry)) - else: - str_to_print = str(hex(entry)) - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -def isBaseromEntrySus(line): - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if (entry & 0xFF000000) == 0x80000000 and entry != 0x80000000: - print("Suspicious Ptr: ", str(hex(entry))) - return True - entries -= 1 - return False - -# Same as isBaseromEntrySus but check for rodata str. Man this file is a mess. -def isBaseromEntrySus_ShouldDump(line): - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if (entry & 0xFF000000) == 0x80000000 and entry != 0x80000000: - text_sym = getMatchingTextSymbolFromAddress(entry) - if text_sym != str(hex(entry)): - if text_sym[:2] == "$$": - return True - entries -= 1 - return False - -def isBaseromEntryPurePtrTable(line): - table = "" - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - # If any values are neither 0 nor a - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = getMatchingTextSymbolFromAddress(entry) - print("DEBUG: ", str_to_print) - elif entry == 0xFFFFFFFF: - str_to_print = "-1" - else: - return line # Not a pure pure table. Keep the entry. - if str_to_print[:2] == "0x": - return line # Not a pure pure table. Keep the entry. - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -def dumpActorTable(line): - table = "" - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - # If any values are neither 0 nor a - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = getMatchingTextSymbolFromAddress(entry) - print("DEBUG: ", str_to_print) - elif entry == 0xFFFFFFFF: - str_to_print = "-1" - else: - str_to_print = str(entry) - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -# ----------------------------------- -# Config -# ----------------------------------- -print_baserom_calls = True -# ----------------------------------- - -# ------------------ -# Main code -# ------------------ - -asm_files = findExt("asm") -#asm_files = ['/c/sms/asm/NPC/NpcInitData.s'] - -print("Checking all files for possible ptrs...") - -# Using readlines() -for i in asm_files: - file1 = open(i, 'r') - Lines = file1.readlines() - file1.close() - file1 = open(i, 'w') - count = 0 - line_array = [] #array of current line and last two lines - line_array.append("") - line_array.append("") - line_array.append("") - file_sus = False - for line in Lines: - line_array[0] = line_array[1] - line_array[1] = line_array[2] - line_array[2] = line - # Do something with the line here. Does the line belong to a baserom.dol call for a __vt__? - if "__RTTI__" in line_array[1] and "baserom.dol" in line: - file1.write(dumpVirtualTable(line)) - else: - file1.write(line) - if file_sus == True: - print("Sus: ", i, "Count: ", count, "\n") - file1.close() - -print("Done") -#print(os.getcwd()) diff --git a/tools/resolveLinkerErrors.py b/tools/resolveLinkerErrors.py deleted file mode 100644 index 7081235c..00000000 --- a/tools/resolveLinkerErrors.py +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env python3 - -# very experimental python script that goes through a linker error file and resolves any undefined labels while splitting - -with open("errors.txt", "r") as f: - lines = f.readlines() - -lbls = [] - -undefcount = 0 - -for line in lines: - if "undefined" in line: - undefcount = undefcount + 1 - splitLine = line.split(" ") - - for spl in splitLine: - if spl.startswith("\'lbl_"): - localstr = spl.strip("\n") - localstr = localstr.strip("\'lbl_") - lbls.append(localstr) - -with open("asm/data.s", "r") as asm: - asms = asm.readlines() - -prevLine = "" -output = [] - -for l in asms: - l = l.strip("\n") - - for lbl in lbls: - if l.startswith("/* " + lbl): - output.append("lbl_" + lbl + ":\n") - - #if prevLine.startswith("func_"): - # prevLine = l - # output.append(l + "\n") - # continue - #else: - # for lbl in lbls: - # lstr = l.strip(":") - # if lstr == lbl: - # output.append(f".global {lbl}\n") - # prevLine = l - # break - - output.append(l + "\n") - prevLine = l - -with open("output.asm", "w") as w: - for o in output: - w.write(o) diff --git a/tools/transform-dep.py b/tools/transform-dep.py deleted file mode 100644 index 5807ab1f..00000000 --- a/tools/transform-dep.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python3 -# borrowed from prime-decomp -import argparse -import os -from platform import uname -from typing import List - -if os.name != 'nt': - wineprefix = os.environ.get('WINEPREFIX', os.path.join(os.environ['HOME'], '.wine')) - winedevices = os.path.join(wineprefix, 'dosdevices') - - -def in_wsl() -> bool: - # wsl1 has Microsoft, wsl2 has microsoft-standard - release = uname().release - return 'microsoft-standard' in release or 'Microsoft' in release - - -def convert_path(path: str) -> str: - # lowercase drive letter - path = path[0].lower() + path[1:] - if os.name == 'nt': - return path.replace('\\', '/') - elif path[0] == 'z': - # shortcut for z: - return path[2:].replace('\\', '/') - elif in_wsl(): - if path.startswith(r'\\wsl'): - # first part could be wsl$ or wsl.localhost - pos = path.find('\\', 2) - pos = path.find('\\', pos + 1) - path = path[pos:] - return path.replace('\\', '/') - else: - path = path[0:1] + path[2:] - return os.path.join('/mnt', path.replace('\\', '/')) - else: - # use $WINEPREFIX/dosdevices to resolve path - return os.path.realpath(os.path.join(winedevices, path.replace('\\', '/'))) - - -def import_d_file(in_file: str) -> str: - out_lines: List[str] = [] - - with open(in_file, 'r') as file: - it = iter(file) - line = next(it) - if line.endswith(' \\\n'): - out_lines.append(line[:-3].replace('\\', '/') + " \\\n") - else: - out_lines.append(line.replace('\\', '/')) - - return ''.join(out_lines) - - -def main(): - parser = argparse.ArgumentParser( - description="""Transform a .d file from Wine paths to normal paths""" - ) - parser.add_argument( - "d_file", - help="""Dependency file in""", - ) - parser.add_argument( - "d_file_out", - help="""Dependency file out""", - ) - args = parser.parse_args() - - output = import_d_file(args.d_file) - - with open(args.d_file_out, "w", encoding="UTF-8") as f: - f.write(output) - - -if __name__ == "__main__": - main() diff --git a/tools/transform-win.py b/tools/transform-win.py deleted file mode 100644 index 938dd8e8..00000000 --- a/tools/transform-win.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env python3 -import argparse - -def import_d_file(in_file) -> str: - out_text = '' - - with open(in_file) as file: - for idx, line in enumerate(file): - if idx != 0: - path_found_pos = line.find("include") - line = "\t" + line[path_found_pos:] - if line.endswith(' \\\n'): - out_text += line[:-3].replace('\\', '/') + " \\\n" - else: - out_text += line.replace('\\', '/') - else: - if line.endswith(' \\\n'): - out_text += line[:-3].replace('\\', '/') + " \\\n" - else: - out_text += line.replace('\\', '/') - - return out_text - -def main(): - parser = argparse.ArgumentParser( - description="""Transform a .d file from Wine paths to normal paths""" - ) - parser.add_argument( - "d_file", - help="""Dependency file in""", - ) - parser.add_argument( - "d_file_out", - help="""Dependency file out""", - ) - args = parser.parse_args() - - output = import_d_file(args.d_file) - - with open(args.d_file_out, "w", encoding="UTF-8") as f: - f.write(output) - - -if __name__ == "__main__": - main() diff --git a/tools/transform_dep.py b/tools/transform_dep.py new file mode 100755 index 00000000..124de04b --- /dev/null +++ b/tools/transform_dep.py @@ -0,0 +1,84 @@ +#!/usr/bin/env python3 + +### +# Transforms .d files, converting Windows paths to Unix paths. +# Allows usage of the mwcc -MMD flag on platforms other than Windows. +# +# Usage: +# python3 tools/transform_dep.py build/src/file.d build/src/file.d +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import argparse +import os +from platform import uname + +wineprefix = os.path.join(os.environ["HOME"], ".wine") +if "WINEPREFIX" in os.environ: + wineprefix = os.environ["WINEPREFIX"] +winedevices = os.path.join(wineprefix, "dosdevices") + + +def in_wsl() -> bool: + return "microsoft-standard" in uname().release + + +def import_d_file(in_file: str) -> str: + out_text = "" + + with open(in_file) as file: + for idx, line in enumerate(file): + if idx == 0: + if line.endswith(" \\\n"): + out_text += line[:-3].replace("\\", "/") + " \\\n" + else: + out_text += line.replace("\\", "/") + else: + suffix = "" + if line.endswith(" \\\n"): + suffix = " \\" + path = line.lstrip()[:-3] + else: + path = line.strip() + # lowercase drive letter + path = path[0].lower() + path[1:] + if path[0] == "z": + # shortcut for z: + path = path[2:].replace("\\", "/") + elif in_wsl(): + path = path[0:1] + path[2:] + path = os.path.join("/mnt", path.replace("\\", "/")) + else: + # use $WINEPREFIX/dosdevices to resolve path + path = os.path.realpath( + os.path.join(winedevices, path.replace("\\", "/")) + ) + out_text += "\t" + path + suffix + "\n" + + return out_text + + +def main() -> None: + parser = argparse.ArgumentParser( + description="""Transform a .d file from Wine paths to normal paths""" + ) + parser.add_argument( + "d_file", + help="""Dependency file in""", + ) + parser.add_argument( + "d_file_out", + help="""Dependency file out""", + ) + args = parser.parse_args() + + output = import_d_file(args.d_file) + + with open(args.d_file_out, "w", encoding="UTF-8") as f: + f.write(output) + + +if __name__ == "__main__": + main() diff --git a/tools/upload-progress.py b/tools/upload-progress.py deleted file mode 100644 index 7ebd2678..00000000 --- a/tools/upload-progress.py +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import json -import os -import subprocess -from pprint import pprint - -import requests - - -def get_git_commit_timestamp() -> int: - return int(subprocess.check_output(['git', 'show', '-s', '--format=%ct']).decode('ascii').rstrip()) - - -def get_git_commit_sha() -> str: - return subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode('ascii').strip() - - -def generate_url(args: argparse.Namespace) -> str: - url_components = [args.base_url.rstrip('/'), 'data'] - - for arg in [args.project, args.version.replace('.', '-')]: - if arg != "": - url_components.append(arg) - - return str.join('/', url_components) + '/' - - -if __name__ == '__main__': - parser = argparse.ArgumentParser(description="Upload progress information.") - parser.add_argument("-b", "--base_url", help="API base URL", required=True) - parser.add_argument("-a", "--api_key", help="API key (env var PROGRESS_API_KEY)") - parser.add_argument("-p", "--project", help="Project slug", required=True) - parser.add_argument("-v", "--version", help="Version slug", required=True) - parser.add_argument("input", help="Progress JSON input") - - args = parser.parse_args() - api_key = args.api_key or os.environ.get("PROGRESS_API_KEY") - if not api_key: - raise "API key required" - url = generate_url(args) - - entries = [] - with open(args.input, "r") as f: - data = json.load(f) - entries.append({ - "timestamp": get_git_commit_timestamp(), - "git_hash": get_git_commit_sha(), - "categories": data, - }) - - print("Publishing entries to", url) - pprint(entries) - data = { - "api_key": api_key, - "entries": entries, - } - r = requests.post(url, json=data) - r.raise_for_status() - print("Done!") diff --git a/tools/upload_progress.py b/tools/upload_progress.py new file mode 100755 index 00000000..dc61d156 --- /dev/null +++ b/tools/upload_progress.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 + +### +# Uploads progress information to https://github.com/decompals/frogress. +# +# Usage: +# python3 tools/upload_progress.py -b https://progress.decomp.club/ -p [project] -v [version] build/[version]/progress.json +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import argparse +import json +import os +import requests +import subprocess +import sys + + +def get_git_commit_timestamp() -> int: + return int( + subprocess.check_output(["git", "show", "-s", "--format=%ct"]) + .decode("ascii") + .rstrip() + ) + + +def get_git_commit_sha() -> str: + return subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii").strip() + + +def generate_url(args: argparse.Namespace) -> str: + url_components = [args.base_url.rstrip("/"), "data"] + + for arg in [args.project, args.version]: + if arg != "": + url_components.append(arg) + + return str.join("/", url_components) + "/" + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Upload progress information.") + parser.add_argument("-b", "--base_url", help="API base URL", required=True) + parser.add_argument("-a", "--api_key", help="API key (env var PROGRESS_API_KEY)") + parser.add_argument("-p", "--project", help="Project slug", required=True) + parser.add_argument("-v", "--version", help="Version slug", required=True) + parser.add_argument("input", help="Progress JSON input") + + args = parser.parse_args() + api_key = args.api_key or os.environ.get("PROGRESS_API_KEY") + if not api_key: + raise KeyError("API key required") + url = generate_url(args) + + entries = [] + with open(args.input, "r") as f: + data = json.load(f) + entries.append( + { + "timestamp": get_git_commit_timestamp(), + "git_hash": get_git_commit_sha(), + "categories": data, + } + ) + + print("Publishing entry to", url) + json.dump(entries[0], sys.stdout, indent=4) + print() + r = requests.post( + url, + json={ + "api_key": api_key, + "entries": entries, + }, + ) + r.raise_for_status() + print("Done!")